drm/i915: Detect and clear unclaimed access on resume
[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
f1f644dc 88static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 89 struct intel_crtc_state *pipe_config);
18442d08 90static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 91 struct intel_crtc_state *pipe_config);
f1f644dc 92
eb1bfe80
JB
93static int intel_framebuffer_init(struct drm_device *dev,
94 struct intel_framebuffer *ifb,
95 struct drm_mode_fb_cmd2 *mode_cmd,
96 struct drm_i915_gem_object *obj);
5b18e57c
DV
97static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
98static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
29407aab 99static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
100 struct intel_link_m_n *m_n,
101 struct intel_link_m_n *m2_n2);
29407aab 102static void ironlake_set_pipeconf(struct drm_crtc *crtc);
229fca97
DV
103static void haswell_set_pipeconf(struct drm_crtc *crtc);
104static void intel_set_pipe_csc(struct drm_crtc *crtc);
d288f65f 105static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 106 const struct intel_crtc_state *pipe_config);
d288f65f 107static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 108 const struct intel_crtc_state *pipe_config);
613d2b27
ML
109static void intel_begin_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
110static void intel_finish_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
549e2bfb
CK
111static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
112 struct intel_crtc_state *crtc_state);
5ab7b0b7
ID
113static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
114 int num_connectors);
bfd16b2a
ML
115static void skylake_pfit_enable(struct intel_crtc *crtc);
116static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force);
117static void ironlake_pfit_enable(struct intel_crtc *crtc);
043e9bda 118static void intel_modeset_setup_hw_state(struct drm_device *dev);
200757f5 119static void intel_pre_disable_primary(struct drm_crtc *crtc);
e7457a9a 120
79e53945 121typedef struct {
0206e353 122 int min, max;
79e53945
JB
123} intel_range_t;
124
125typedef struct {
0206e353
AJ
126 int dot_limit;
127 int p2_slow, p2_fast;
79e53945
JB
128} intel_p2_t;
129
d4906093
ML
130typedef struct intel_limit intel_limit_t;
131struct intel_limit {
0206e353
AJ
132 intel_range_t dot, vco, n, m, m1, m2, p, p1;
133 intel_p2_t p2;
d4906093 134};
79e53945 135
bfa7df01
VS
136/* returns HPLL frequency in kHz */
137static int valleyview_get_vco(struct drm_i915_private *dev_priv)
138{
139 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
140
141 /* Obtain SKU information */
142 mutex_lock(&dev_priv->sb_lock);
143 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
144 CCK_FUSE_HPLL_FREQ_MASK;
145 mutex_unlock(&dev_priv->sb_lock);
146
147 return vco_freq[hpll_freq] * 1000;
148}
149
150static int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
151 const char *name, u32 reg)
152{
153 u32 val;
154 int divider;
155
156 if (dev_priv->hpll_freq == 0)
157 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
158
159 mutex_lock(&dev_priv->sb_lock);
160 val = vlv_cck_read(dev_priv, reg);
161 mutex_unlock(&dev_priv->sb_lock);
162
163 divider = val & CCK_FREQUENCY_VALUES;
164
165 WARN((val & CCK_FREQUENCY_STATUS) !=
166 (divider << CCK_FREQUENCY_STATUS_SHIFT),
167 "%s change in progress\n", name);
168
169 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
170}
171
d2acd215
DV
172int
173intel_pch_rawclk(struct drm_device *dev)
174{
175 struct drm_i915_private *dev_priv = dev->dev_private;
176
177 WARN_ON(!HAS_PCH_SPLIT(dev));
178
179 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
180}
181
79e50a4f
JN
182/* hrawclock is 1/4 the FSB frequency */
183int intel_hrawclk(struct drm_device *dev)
184{
185 struct drm_i915_private *dev_priv = dev->dev_private;
186 uint32_t clkcfg;
187
188 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
666a4537 189 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
79e50a4f
JN
190 return 200;
191
192 clkcfg = I915_READ(CLKCFG);
193 switch (clkcfg & CLKCFG_FSB_MASK) {
194 case CLKCFG_FSB_400:
195 return 100;
196 case CLKCFG_FSB_533:
197 return 133;
198 case CLKCFG_FSB_667:
199 return 166;
200 case CLKCFG_FSB_800:
201 return 200;
202 case CLKCFG_FSB_1067:
203 return 266;
204 case CLKCFG_FSB_1333:
205 return 333;
206 /* these two are just a guess; one of them might be right */
207 case CLKCFG_FSB_1600:
208 case CLKCFG_FSB_1600_ALT:
209 return 400;
210 default:
211 return 133;
212 }
213}
214
bfa7df01
VS
215static void intel_update_czclk(struct drm_i915_private *dev_priv)
216{
666a4537 217 if (!(IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)))
bfa7df01
VS
218 return;
219
220 dev_priv->czclk_freq = vlv_get_cck_clock_hpll(dev_priv, "czclk",
221 CCK_CZ_CLOCK_CONTROL);
222
223 DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv->czclk_freq);
224}
225
021357ac
CW
226static inline u32 /* units of 100MHz */
227intel_fdi_link_freq(struct drm_device *dev)
228{
8b99e68c
CW
229 if (IS_GEN5(dev)) {
230 struct drm_i915_private *dev_priv = dev->dev_private;
231 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
232 } else
233 return 27;
021357ac
CW
234}
235
5d536e28 236static const intel_limit_t intel_limits_i8xx_dac = {
0206e353 237 .dot = { .min = 25000, .max = 350000 },
9c333719 238 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 239 .n = { .min = 2, .max = 16 },
0206e353
AJ
240 .m = { .min = 96, .max = 140 },
241 .m1 = { .min = 18, .max = 26 },
242 .m2 = { .min = 6, .max = 16 },
243 .p = { .min = 4, .max = 128 },
244 .p1 = { .min = 2, .max = 33 },
273e27ca
EA
245 .p2 = { .dot_limit = 165000,
246 .p2_slow = 4, .p2_fast = 2 },
e4b36699
KP
247};
248
5d536e28
DV
249static const intel_limit_t intel_limits_i8xx_dvo = {
250 .dot = { .min = 25000, .max = 350000 },
9c333719 251 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 252 .n = { .min = 2, .max = 16 },
5d536e28
DV
253 .m = { .min = 96, .max = 140 },
254 .m1 = { .min = 18, .max = 26 },
255 .m2 = { .min = 6, .max = 16 },
256 .p = { .min = 4, .max = 128 },
257 .p1 = { .min = 2, .max = 33 },
258 .p2 = { .dot_limit = 165000,
259 .p2_slow = 4, .p2_fast = 4 },
260};
261
e4b36699 262static const intel_limit_t intel_limits_i8xx_lvds = {
0206e353 263 .dot = { .min = 25000, .max = 350000 },
9c333719 264 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 265 .n = { .min = 2, .max = 16 },
0206e353
AJ
266 .m = { .min = 96, .max = 140 },
267 .m1 = { .min = 18, .max = 26 },
268 .m2 = { .min = 6, .max = 16 },
269 .p = { .min = 4, .max = 128 },
270 .p1 = { .min = 1, .max = 6 },
273e27ca
EA
271 .p2 = { .dot_limit = 165000,
272 .p2_slow = 14, .p2_fast = 7 },
e4b36699 273};
273e27ca 274
e4b36699 275static const intel_limit_t intel_limits_i9xx_sdvo = {
0206e353
AJ
276 .dot = { .min = 20000, .max = 400000 },
277 .vco = { .min = 1400000, .max = 2800000 },
278 .n = { .min = 1, .max = 6 },
279 .m = { .min = 70, .max = 120 },
4f7dfb67
PJ
280 .m1 = { .min = 8, .max = 18 },
281 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
282 .p = { .min = 5, .max = 80 },
283 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
284 .p2 = { .dot_limit = 200000,
285 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
286};
287
288static const intel_limit_t intel_limits_i9xx_lvds = {
0206e353
AJ
289 .dot = { .min = 20000, .max = 400000 },
290 .vco = { .min = 1400000, .max = 2800000 },
291 .n = { .min = 1, .max = 6 },
292 .m = { .min = 70, .max = 120 },
53a7d2d1
PJ
293 .m1 = { .min = 8, .max = 18 },
294 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
295 .p = { .min = 7, .max = 98 },
296 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
297 .p2 = { .dot_limit = 112000,
298 .p2_slow = 14, .p2_fast = 7 },
e4b36699
KP
299};
300
273e27ca 301
e4b36699 302static const intel_limit_t intel_limits_g4x_sdvo = {
273e27ca
EA
303 .dot = { .min = 25000, .max = 270000 },
304 .vco = { .min = 1750000, .max = 3500000},
305 .n = { .min = 1, .max = 4 },
306 .m = { .min = 104, .max = 138 },
307 .m1 = { .min = 17, .max = 23 },
308 .m2 = { .min = 5, .max = 11 },
309 .p = { .min = 10, .max = 30 },
310 .p1 = { .min = 1, .max = 3},
311 .p2 = { .dot_limit = 270000,
312 .p2_slow = 10,
313 .p2_fast = 10
044c7c41 314 },
e4b36699
KP
315};
316
317static const intel_limit_t intel_limits_g4x_hdmi = {
273e27ca
EA
318 .dot = { .min = 22000, .max = 400000 },
319 .vco = { .min = 1750000, .max = 3500000},
320 .n = { .min = 1, .max = 4 },
321 .m = { .min = 104, .max = 138 },
322 .m1 = { .min = 16, .max = 23 },
323 .m2 = { .min = 5, .max = 11 },
324 .p = { .min = 5, .max = 80 },
325 .p1 = { .min = 1, .max = 8},
326 .p2 = { .dot_limit = 165000,
327 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
328};
329
330static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
273e27ca
EA
331 .dot = { .min = 20000, .max = 115000 },
332 .vco = { .min = 1750000, .max = 3500000 },
333 .n = { .min = 1, .max = 3 },
334 .m = { .min = 104, .max = 138 },
335 .m1 = { .min = 17, .max = 23 },
336 .m2 = { .min = 5, .max = 11 },
337 .p = { .min = 28, .max = 112 },
338 .p1 = { .min = 2, .max = 8 },
339 .p2 = { .dot_limit = 0,
340 .p2_slow = 14, .p2_fast = 14
044c7c41 341 },
e4b36699
KP
342};
343
344static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
273e27ca
EA
345 .dot = { .min = 80000, .max = 224000 },
346 .vco = { .min = 1750000, .max = 3500000 },
347 .n = { .min = 1, .max = 3 },
348 .m = { .min = 104, .max = 138 },
349 .m1 = { .min = 17, .max = 23 },
350 .m2 = { .min = 5, .max = 11 },
351 .p = { .min = 14, .max = 42 },
352 .p1 = { .min = 2, .max = 6 },
353 .p2 = { .dot_limit = 0,
354 .p2_slow = 7, .p2_fast = 7
044c7c41 355 },
e4b36699
KP
356};
357
f2b115e6 358static const intel_limit_t intel_limits_pineview_sdvo = {
0206e353
AJ
359 .dot = { .min = 20000, .max = 400000},
360 .vco = { .min = 1700000, .max = 3500000 },
273e27ca 361 /* Pineview's Ncounter is a ring counter */
0206e353
AJ
362 .n = { .min = 3, .max = 6 },
363 .m = { .min = 2, .max = 256 },
273e27ca 364 /* Pineview only has one combined m divider, which we treat as m2. */
0206e353
AJ
365 .m1 = { .min = 0, .max = 0 },
366 .m2 = { .min = 0, .max = 254 },
367 .p = { .min = 5, .max = 80 },
368 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
369 .p2 = { .dot_limit = 200000,
370 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
371};
372
f2b115e6 373static const intel_limit_t intel_limits_pineview_lvds = {
0206e353
AJ
374 .dot = { .min = 20000, .max = 400000 },
375 .vco = { .min = 1700000, .max = 3500000 },
376 .n = { .min = 3, .max = 6 },
377 .m = { .min = 2, .max = 256 },
378 .m1 = { .min = 0, .max = 0 },
379 .m2 = { .min = 0, .max = 254 },
380 .p = { .min = 7, .max = 112 },
381 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
382 .p2 = { .dot_limit = 112000,
383 .p2_slow = 14, .p2_fast = 14 },
e4b36699
KP
384};
385
273e27ca
EA
386/* Ironlake / Sandybridge
387 *
388 * We calculate clock using (register_value + 2) for N/M1/M2, so here
389 * the range value for them is (actual_value - 2).
390 */
b91ad0ec 391static const intel_limit_t intel_limits_ironlake_dac = {
273e27ca
EA
392 .dot = { .min = 25000, .max = 350000 },
393 .vco = { .min = 1760000, .max = 3510000 },
394 .n = { .min = 1, .max = 5 },
395 .m = { .min = 79, .max = 127 },
396 .m1 = { .min = 12, .max = 22 },
397 .m2 = { .min = 5, .max = 9 },
398 .p = { .min = 5, .max = 80 },
399 .p1 = { .min = 1, .max = 8 },
400 .p2 = { .dot_limit = 225000,
401 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
402};
403
b91ad0ec 404static const intel_limit_t intel_limits_ironlake_single_lvds = {
273e27ca
EA
405 .dot = { .min = 25000, .max = 350000 },
406 .vco = { .min = 1760000, .max = 3510000 },
407 .n = { .min = 1, .max = 3 },
408 .m = { .min = 79, .max = 118 },
409 .m1 = { .min = 12, .max = 22 },
410 .m2 = { .min = 5, .max = 9 },
411 .p = { .min = 28, .max = 112 },
412 .p1 = { .min = 2, .max = 8 },
413 .p2 = { .dot_limit = 225000,
414 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
415};
416
417static const intel_limit_t intel_limits_ironlake_dual_lvds = {
273e27ca
EA
418 .dot = { .min = 25000, .max = 350000 },
419 .vco = { .min = 1760000, .max = 3510000 },
420 .n = { .min = 1, .max = 3 },
421 .m = { .min = 79, .max = 127 },
422 .m1 = { .min = 12, .max = 22 },
423 .m2 = { .min = 5, .max = 9 },
424 .p = { .min = 14, .max = 56 },
425 .p1 = { .min = 2, .max = 8 },
426 .p2 = { .dot_limit = 225000,
427 .p2_slow = 7, .p2_fast = 7 },
b91ad0ec
ZW
428};
429
273e27ca 430/* LVDS 100mhz refclk limits. */
b91ad0ec 431static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
273e27ca
EA
432 .dot = { .min = 25000, .max = 350000 },
433 .vco = { .min = 1760000, .max = 3510000 },
434 .n = { .min = 1, .max = 2 },
435 .m = { .min = 79, .max = 126 },
436 .m1 = { .min = 12, .max = 22 },
437 .m2 = { .min = 5, .max = 9 },
438 .p = { .min = 28, .max = 112 },
0206e353 439 .p1 = { .min = 2, .max = 8 },
273e27ca
EA
440 .p2 = { .dot_limit = 225000,
441 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
442};
443
444static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
273e27ca
EA
445 .dot = { .min = 25000, .max = 350000 },
446 .vco = { .min = 1760000, .max = 3510000 },
447 .n = { .min = 1, .max = 3 },
448 .m = { .min = 79, .max = 126 },
449 .m1 = { .min = 12, .max = 22 },
450 .m2 = { .min = 5, .max = 9 },
451 .p = { .min = 14, .max = 42 },
0206e353 452 .p1 = { .min = 2, .max = 6 },
273e27ca
EA
453 .p2 = { .dot_limit = 225000,
454 .p2_slow = 7, .p2_fast = 7 },
4547668a
ZY
455};
456
dc730512 457static const intel_limit_t intel_limits_vlv = {
f01b7962
VS
458 /*
459 * These are the data rate limits (measured in fast clocks)
460 * since those are the strictest limits we have. The fast
461 * clock and actual rate limits are more relaxed, so checking
462 * them would make no difference.
463 */
464 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
75e53986 465 .vco = { .min = 4000000, .max = 6000000 },
a0c4da24 466 .n = { .min = 1, .max = 7 },
a0c4da24
JB
467 .m1 = { .min = 2, .max = 3 },
468 .m2 = { .min = 11, .max = 156 },
b99ab663 469 .p1 = { .min = 2, .max = 3 },
5fdc9c49 470 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
a0c4da24
JB
471};
472
ef9348c8
CML
473static const intel_limit_t intel_limits_chv = {
474 /*
475 * These are the data rate limits (measured in fast clocks)
476 * since those are the strictest limits we have. The fast
477 * clock and actual rate limits are more relaxed, so checking
478 * them would make no difference.
479 */
480 .dot = { .min = 25000 * 5, .max = 540000 * 5},
17fe1021 481 .vco = { .min = 4800000, .max = 6480000 },
ef9348c8
CML
482 .n = { .min = 1, .max = 1 },
483 .m1 = { .min = 2, .max = 2 },
484 .m2 = { .min = 24 << 22, .max = 175 << 22 },
485 .p1 = { .min = 2, .max = 4 },
486 .p2 = { .p2_slow = 1, .p2_fast = 14 },
487};
488
5ab7b0b7
ID
489static const intel_limit_t intel_limits_bxt = {
490 /* FIXME: find real dot limits */
491 .dot = { .min = 0, .max = INT_MAX },
e6292556 492 .vco = { .min = 4800000, .max = 6700000 },
5ab7b0b7
ID
493 .n = { .min = 1, .max = 1 },
494 .m1 = { .min = 2, .max = 2 },
495 /* FIXME: find real m2 limits */
496 .m2 = { .min = 2 << 22, .max = 255 << 22 },
497 .p1 = { .min = 2, .max = 4 },
498 .p2 = { .p2_slow = 1, .p2_fast = 20 },
499};
500
cdba954e
ACO
501static bool
502needs_modeset(struct drm_crtc_state *state)
503{
fc596660 504 return drm_atomic_crtc_needs_modeset(state);
cdba954e
ACO
505}
506
e0638cdf
PZ
507/**
508 * Returns whether any output on the specified pipe is of the specified type
509 */
4093561b 510bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
e0638cdf 511{
409ee761 512 struct drm_device *dev = crtc->base.dev;
e0638cdf
PZ
513 struct intel_encoder *encoder;
514
409ee761 515 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
e0638cdf
PZ
516 if (encoder->type == type)
517 return true;
518
519 return false;
520}
521
d0737e1d
ACO
522/**
523 * Returns whether any output on the specified pipe will have the specified
524 * type after a staged modeset is complete, i.e., the same as
525 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
526 * encoder->crtc.
527 */
a93e255f
ACO
528static bool intel_pipe_will_have_type(const struct intel_crtc_state *crtc_state,
529 int type)
d0737e1d 530{
a93e255f 531 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 532 struct drm_connector *connector;
a93e255f 533 struct drm_connector_state *connector_state;
d0737e1d 534 struct intel_encoder *encoder;
a93e255f
ACO
535 int i, num_connectors = 0;
536
da3ced29 537 for_each_connector_in_state(state, connector, connector_state, i) {
a93e255f
ACO
538 if (connector_state->crtc != crtc_state->base.crtc)
539 continue;
540
541 num_connectors++;
d0737e1d 542
a93e255f
ACO
543 encoder = to_intel_encoder(connector_state->best_encoder);
544 if (encoder->type == type)
d0737e1d 545 return true;
a93e255f
ACO
546 }
547
548 WARN_ON(num_connectors == 0);
d0737e1d
ACO
549
550 return false;
551}
552
a93e255f
ACO
553static const intel_limit_t *
554intel_ironlake_limit(struct intel_crtc_state *crtc_state, int refclk)
2c07245f 555{
a93e255f 556 struct drm_device *dev = crtc_state->base.crtc->dev;
2c07245f 557 const intel_limit_t *limit;
b91ad0ec 558
a93e255f 559 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
1974cad0 560 if (intel_is_dual_link_lvds(dev)) {
1b894b59 561 if (refclk == 100000)
b91ad0ec
ZW
562 limit = &intel_limits_ironlake_dual_lvds_100m;
563 else
564 limit = &intel_limits_ironlake_dual_lvds;
565 } else {
1b894b59 566 if (refclk == 100000)
b91ad0ec
ZW
567 limit = &intel_limits_ironlake_single_lvds_100m;
568 else
569 limit = &intel_limits_ironlake_single_lvds;
570 }
c6bb3538 571 } else
b91ad0ec 572 limit = &intel_limits_ironlake_dac;
2c07245f
ZW
573
574 return limit;
575}
576
a93e255f
ACO
577static const intel_limit_t *
578intel_g4x_limit(struct intel_crtc_state *crtc_state)
044c7c41 579{
a93e255f 580 struct drm_device *dev = crtc_state->base.crtc->dev;
044c7c41
ML
581 const intel_limit_t *limit;
582
a93e255f 583 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
1974cad0 584 if (intel_is_dual_link_lvds(dev))
e4b36699 585 limit = &intel_limits_g4x_dual_channel_lvds;
044c7c41 586 else
e4b36699 587 limit = &intel_limits_g4x_single_channel_lvds;
a93e255f
ACO
588 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI) ||
589 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
e4b36699 590 limit = &intel_limits_g4x_hdmi;
a93e255f 591 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO)) {
e4b36699 592 limit = &intel_limits_g4x_sdvo;
044c7c41 593 } else /* The option is for other outputs */
e4b36699 594 limit = &intel_limits_i9xx_sdvo;
044c7c41
ML
595
596 return limit;
597}
598
a93e255f
ACO
599static const intel_limit_t *
600intel_limit(struct intel_crtc_state *crtc_state, int refclk)
79e53945 601{
a93e255f 602 struct drm_device *dev = crtc_state->base.crtc->dev;
79e53945
JB
603 const intel_limit_t *limit;
604
5ab7b0b7
ID
605 if (IS_BROXTON(dev))
606 limit = &intel_limits_bxt;
607 else if (HAS_PCH_SPLIT(dev))
a93e255f 608 limit = intel_ironlake_limit(crtc_state, refclk);
2c07245f 609 else if (IS_G4X(dev)) {
a93e255f 610 limit = intel_g4x_limit(crtc_state);
f2b115e6 611 } else if (IS_PINEVIEW(dev)) {
a93e255f 612 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
f2b115e6 613 limit = &intel_limits_pineview_lvds;
2177832f 614 else
f2b115e6 615 limit = &intel_limits_pineview_sdvo;
ef9348c8
CML
616 } else if (IS_CHERRYVIEW(dev)) {
617 limit = &intel_limits_chv;
a0c4da24 618 } else if (IS_VALLEYVIEW(dev)) {
dc730512 619 limit = &intel_limits_vlv;
a6c45cf0 620 } else if (!IS_GEN2(dev)) {
a93e255f 621 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
a6c45cf0
CW
622 limit = &intel_limits_i9xx_lvds;
623 else
624 limit = &intel_limits_i9xx_sdvo;
79e53945 625 } else {
a93e255f 626 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
e4b36699 627 limit = &intel_limits_i8xx_lvds;
a93e255f 628 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
e4b36699 629 limit = &intel_limits_i8xx_dvo;
5d536e28
DV
630 else
631 limit = &intel_limits_i8xx_dac;
79e53945
JB
632 }
633 return limit;
634}
635
dccbea3b
ID
636/*
637 * Platform specific helpers to calculate the port PLL loopback- (clock.m),
638 * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast
639 * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic.
640 * The helpers' return value is the rate of the clock that is fed to the
641 * display engine's pipe which can be the above fast dot clock rate or a
642 * divided-down version of it.
643 */
f2b115e6 644/* m1 is reserved as 0 in Pineview, n is a ring counter */
dccbea3b 645static int pnv_calc_dpll_params(int refclk, intel_clock_t *clock)
79e53945 646{
2177832f
SL
647 clock->m = clock->m2 + 2;
648 clock->p = clock->p1 * clock->p2;
ed5ca77e 649 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 650 return 0;
fb03ac01
VS
651 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
652 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
653
654 return clock->dot;
2177832f
SL
655}
656
7429e9d4
DV
657static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
658{
659 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
660}
661
dccbea3b 662static int i9xx_calc_dpll_params(int refclk, intel_clock_t *clock)
2177832f 663{
7429e9d4 664 clock->m = i9xx_dpll_compute_m(clock);
79e53945 665 clock->p = clock->p1 * clock->p2;
ed5ca77e 666 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
dccbea3b 667 return 0;
fb03ac01
VS
668 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
669 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
670
671 return clock->dot;
79e53945
JB
672}
673
dccbea3b 674static int vlv_calc_dpll_params(int refclk, intel_clock_t *clock)
589eca67
ID
675{
676 clock->m = clock->m1 * clock->m2;
677 clock->p = clock->p1 * clock->p2;
678 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 679 return 0;
589eca67
ID
680 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
681 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
682
683 return clock->dot / 5;
589eca67
ID
684}
685
dccbea3b 686int chv_calc_dpll_params(int refclk, intel_clock_t *clock)
ef9348c8
CML
687{
688 clock->m = clock->m1 * clock->m2;
689 clock->p = clock->p1 * clock->p2;
690 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 691 return 0;
ef9348c8
CML
692 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
693 clock->n << 22);
694 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
695
696 return clock->dot / 5;
ef9348c8
CML
697}
698
7c04d1d9 699#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
79e53945
JB
700/**
701 * Returns whether the given set of divisors are valid for a given refclk with
702 * the given connectors.
703 */
704
1b894b59
CW
705static bool intel_PLL_is_valid(struct drm_device *dev,
706 const intel_limit_t *limit,
707 const intel_clock_t *clock)
79e53945 708{
f01b7962
VS
709 if (clock->n < limit->n.min || limit->n.max < clock->n)
710 INTELPllInvalid("n out of range\n");
79e53945 711 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
0206e353 712 INTELPllInvalid("p1 out of range\n");
79e53945 713 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
0206e353 714 INTELPllInvalid("m2 out of range\n");
79e53945 715 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
0206e353 716 INTELPllInvalid("m1 out of range\n");
f01b7962 717
666a4537
WB
718 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) &&
719 !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev))
f01b7962
VS
720 if (clock->m1 <= clock->m2)
721 INTELPllInvalid("m1 <= m2\n");
722
666a4537 723 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev)) {
f01b7962
VS
724 if (clock->p < limit->p.min || limit->p.max < clock->p)
725 INTELPllInvalid("p out of range\n");
726 if (clock->m < limit->m.min || limit->m.max < clock->m)
727 INTELPllInvalid("m out of range\n");
728 }
729
79e53945 730 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
0206e353 731 INTELPllInvalid("vco out of range\n");
79e53945
JB
732 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
733 * connector, etc., rather than just a single range.
734 */
735 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
0206e353 736 INTELPllInvalid("dot out of range\n");
79e53945
JB
737
738 return true;
739}
740
3b1429d9
VS
741static int
742i9xx_select_p2_div(const intel_limit_t *limit,
743 const struct intel_crtc_state *crtc_state,
744 int target)
79e53945 745{
3b1429d9 746 struct drm_device *dev = crtc_state->base.crtc->dev;
79e53945 747
a93e255f 748 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
79e53945 749 /*
a210b028
DV
750 * For LVDS just rely on its current settings for dual-channel.
751 * We haven't figured out how to reliably set up different
752 * single/dual channel state, if we even can.
79e53945 753 */
1974cad0 754 if (intel_is_dual_link_lvds(dev))
3b1429d9 755 return limit->p2.p2_fast;
79e53945 756 else
3b1429d9 757 return limit->p2.p2_slow;
79e53945
JB
758 } else {
759 if (target < limit->p2.dot_limit)
3b1429d9 760 return limit->p2.p2_slow;
79e53945 761 else
3b1429d9 762 return limit->p2.p2_fast;
79e53945 763 }
3b1429d9
VS
764}
765
766static bool
767i9xx_find_best_dpll(const intel_limit_t *limit,
768 struct intel_crtc_state *crtc_state,
769 int target, int refclk, intel_clock_t *match_clock,
770 intel_clock_t *best_clock)
771{
772 struct drm_device *dev = crtc_state->base.crtc->dev;
773 intel_clock_t clock;
774 int err = target;
79e53945 775
0206e353 776 memset(best_clock, 0, sizeof(*best_clock));
79e53945 777
3b1429d9
VS
778 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
779
42158660
ZY
780 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
781 clock.m1++) {
782 for (clock.m2 = limit->m2.min;
783 clock.m2 <= limit->m2.max; clock.m2++) {
c0efc387 784 if (clock.m2 >= clock.m1)
42158660
ZY
785 break;
786 for (clock.n = limit->n.min;
787 clock.n <= limit->n.max; clock.n++) {
788 for (clock.p1 = limit->p1.min;
789 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
790 int this_err;
791
dccbea3b 792 i9xx_calc_dpll_params(refclk, &clock);
ac58c3f0
DV
793 if (!intel_PLL_is_valid(dev, limit,
794 &clock))
795 continue;
796 if (match_clock &&
797 clock.p != match_clock->p)
798 continue;
799
800 this_err = abs(clock.dot - target);
801 if (this_err < err) {
802 *best_clock = clock;
803 err = this_err;
804 }
805 }
806 }
807 }
808 }
809
810 return (err != target);
811}
812
813static bool
a93e255f
ACO
814pnv_find_best_dpll(const intel_limit_t *limit,
815 struct intel_crtc_state *crtc_state,
ee9300bb
DV
816 int target, int refclk, intel_clock_t *match_clock,
817 intel_clock_t *best_clock)
79e53945 818{
3b1429d9 819 struct drm_device *dev = crtc_state->base.crtc->dev;
79e53945 820 intel_clock_t clock;
79e53945
JB
821 int err = target;
822
0206e353 823 memset(best_clock, 0, sizeof(*best_clock));
79e53945 824
3b1429d9
VS
825 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
826
42158660
ZY
827 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
828 clock.m1++) {
829 for (clock.m2 = limit->m2.min;
830 clock.m2 <= limit->m2.max; clock.m2++) {
42158660
ZY
831 for (clock.n = limit->n.min;
832 clock.n <= limit->n.max; clock.n++) {
833 for (clock.p1 = limit->p1.min;
834 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
835 int this_err;
836
dccbea3b 837 pnv_calc_dpll_params(refclk, &clock);
1b894b59
CW
838 if (!intel_PLL_is_valid(dev, limit,
839 &clock))
79e53945 840 continue;
cec2f356
SP
841 if (match_clock &&
842 clock.p != match_clock->p)
843 continue;
79e53945
JB
844
845 this_err = abs(clock.dot - target);
846 if (this_err < err) {
847 *best_clock = clock;
848 err = this_err;
849 }
850 }
851 }
852 }
853 }
854
855 return (err != target);
856}
857
d4906093 858static bool
a93e255f
ACO
859g4x_find_best_dpll(const intel_limit_t *limit,
860 struct intel_crtc_state *crtc_state,
ee9300bb
DV
861 int target, int refclk, intel_clock_t *match_clock,
862 intel_clock_t *best_clock)
d4906093 863{
3b1429d9 864 struct drm_device *dev = crtc_state->base.crtc->dev;
d4906093
ML
865 intel_clock_t clock;
866 int max_n;
3b1429d9 867 bool found = false;
6ba770dc
AJ
868 /* approximately equals target * 0.00585 */
869 int err_most = (target >> 8) + (target >> 9);
d4906093
ML
870
871 memset(best_clock, 0, sizeof(*best_clock));
3b1429d9
VS
872
873 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
874
d4906093 875 max_n = limit->n.max;
f77f13e2 876 /* based on hardware requirement, prefer smaller n to precision */
d4906093 877 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
f77f13e2 878 /* based on hardware requirement, prefere larger m1,m2 */
d4906093
ML
879 for (clock.m1 = limit->m1.max;
880 clock.m1 >= limit->m1.min; clock.m1--) {
881 for (clock.m2 = limit->m2.max;
882 clock.m2 >= limit->m2.min; clock.m2--) {
883 for (clock.p1 = limit->p1.max;
884 clock.p1 >= limit->p1.min; clock.p1--) {
885 int this_err;
886
dccbea3b 887 i9xx_calc_dpll_params(refclk, &clock);
1b894b59
CW
888 if (!intel_PLL_is_valid(dev, limit,
889 &clock))
d4906093 890 continue;
1b894b59
CW
891
892 this_err = abs(clock.dot - target);
d4906093
ML
893 if (this_err < err_most) {
894 *best_clock = clock;
895 err_most = this_err;
896 max_n = clock.n;
897 found = true;
898 }
899 }
900 }
901 }
902 }
2c07245f
ZW
903 return found;
904}
905
d5dd62bd
ID
906/*
907 * Check if the calculated PLL configuration is more optimal compared to the
908 * best configuration and error found so far. Return the calculated error.
909 */
910static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
911 const intel_clock_t *calculated_clock,
912 const intel_clock_t *best_clock,
913 unsigned int best_error_ppm,
914 unsigned int *error_ppm)
915{
9ca3ba01
ID
916 /*
917 * For CHV ignore the error and consider only the P value.
918 * Prefer a bigger P value based on HW requirements.
919 */
920 if (IS_CHERRYVIEW(dev)) {
921 *error_ppm = 0;
922
923 return calculated_clock->p > best_clock->p;
924 }
925
24be4e46
ID
926 if (WARN_ON_ONCE(!target_freq))
927 return false;
928
d5dd62bd
ID
929 *error_ppm = div_u64(1000000ULL *
930 abs(target_freq - calculated_clock->dot),
931 target_freq);
932 /*
933 * Prefer a better P value over a better (smaller) error if the error
934 * is small. Ensure this preference for future configurations too by
935 * setting the error to 0.
936 */
937 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
938 *error_ppm = 0;
939
940 return true;
941 }
942
943 return *error_ppm + 10 < best_error_ppm;
944}
945
a0c4da24 946static bool
a93e255f
ACO
947vlv_find_best_dpll(const intel_limit_t *limit,
948 struct intel_crtc_state *crtc_state,
ee9300bb
DV
949 int target, int refclk, intel_clock_t *match_clock,
950 intel_clock_t *best_clock)
a0c4da24 951{
a93e255f 952 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 953 struct drm_device *dev = crtc->base.dev;
6b4bf1c4 954 intel_clock_t clock;
69e4f900 955 unsigned int bestppm = 1000000;
27e639bf
VS
956 /* min update 19.2 MHz */
957 int max_n = min(limit->n.max, refclk / 19200);
49e497ef 958 bool found = false;
a0c4da24 959
6b4bf1c4
VS
960 target *= 5; /* fast clock */
961
962 memset(best_clock, 0, sizeof(*best_clock));
a0c4da24
JB
963
964 /* based on hardware requirement, prefer smaller n to precision */
27e639bf 965 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
811bbf05 966 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
889059d8 967 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
c1a9ae43 968 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
6b4bf1c4 969 clock.p = clock.p1 * clock.p2;
a0c4da24 970 /* based on hardware requirement, prefer bigger m1,m2 values */
6b4bf1c4 971 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
d5dd62bd 972 unsigned int ppm;
69e4f900 973
6b4bf1c4
VS
974 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
975 refclk * clock.m1);
976
dccbea3b 977 vlv_calc_dpll_params(refclk, &clock);
43b0ac53 978
f01b7962
VS
979 if (!intel_PLL_is_valid(dev, limit,
980 &clock))
43b0ac53
VS
981 continue;
982
d5dd62bd
ID
983 if (!vlv_PLL_is_optimal(dev, target,
984 &clock,
985 best_clock,
986 bestppm, &ppm))
987 continue;
6b4bf1c4 988
d5dd62bd
ID
989 *best_clock = clock;
990 bestppm = ppm;
991 found = true;
a0c4da24
JB
992 }
993 }
994 }
995 }
a0c4da24 996
49e497ef 997 return found;
a0c4da24 998}
a4fc5ed6 999
ef9348c8 1000static bool
a93e255f
ACO
1001chv_find_best_dpll(const intel_limit_t *limit,
1002 struct intel_crtc_state *crtc_state,
ef9348c8
CML
1003 int target, int refclk, intel_clock_t *match_clock,
1004 intel_clock_t *best_clock)
1005{
a93e255f 1006 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 1007 struct drm_device *dev = crtc->base.dev;
9ca3ba01 1008 unsigned int best_error_ppm;
ef9348c8
CML
1009 intel_clock_t clock;
1010 uint64_t m2;
1011 int found = false;
1012
1013 memset(best_clock, 0, sizeof(*best_clock));
9ca3ba01 1014 best_error_ppm = 1000000;
ef9348c8
CML
1015
1016 /*
1017 * Based on hardware doc, the n always set to 1, and m1 always
1018 * set to 2. If requires to support 200Mhz refclk, we need to
1019 * revisit this because n may not 1 anymore.
1020 */
1021 clock.n = 1, clock.m1 = 2;
1022 target *= 5; /* fast clock */
1023
1024 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
1025 for (clock.p2 = limit->p2.p2_fast;
1026 clock.p2 >= limit->p2.p2_slow;
1027 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
9ca3ba01 1028 unsigned int error_ppm;
ef9348c8
CML
1029
1030 clock.p = clock.p1 * clock.p2;
1031
1032 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
1033 clock.n) << 22, refclk * clock.m1);
1034
1035 if (m2 > INT_MAX/clock.m1)
1036 continue;
1037
1038 clock.m2 = m2;
1039
dccbea3b 1040 chv_calc_dpll_params(refclk, &clock);
ef9348c8
CML
1041
1042 if (!intel_PLL_is_valid(dev, limit, &clock))
1043 continue;
1044
9ca3ba01
ID
1045 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
1046 best_error_ppm, &error_ppm))
1047 continue;
1048
1049 *best_clock = clock;
1050 best_error_ppm = error_ppm;
1051 found = true;
ef9348c8
CML
1052 }
1053 }
1054
1055 return found;
1056}
1057
5ab7b0b7
ID
1058bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
1059 intel_clock_t *best_clock)
1060{
1061 int refclk = i9xx_get_refclk(crtc_state, 0);
1062
1063 return chv_find_best_dpll(intel_limit(crtc_state, refclk), crtc_state,
1064 target_clock, refclk, NULL, best_clock);
1065}
1066
20ddf665
VS
1067bool intel_crtc_active(struct drm_crtc *crtc)
1068{
1069 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1070
1071 /* Be paranoid as we can arrive here with only partial
1072 * state retrieved from the hardware during setup.
1073 *
241bfc38 1074 * We can ditch the adjusted_mode.crtc_clock check as soon
20ddf665
VS
1075 * as Haswell has gained clock readout/fastboot support.
1076 *
66e514c1 1077 * We can ditch the crtc->primary->fb check as soon as we can
20ddf665 1078 * properly reconstruct framebuffers.
c3d1f436
MR
1079 *
1080 * FIXME: The intel_crtc->active here should be switched to
1081 * crtc->state->active once we have proper CRTC states wired up
1082 * for atomic.
20ddf665 1083 */
c3d1f436 1084 return intel_crtc->active && crtc->primary->state->fb &&
6e3c9717 1085 intel_crtc->config->base.adjusted_mode.crtc_clock;
20ddf665
VS
1086}
1087
a5c961d1
PZ
1088enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1089 enum pipe pipe)
1090{
1091 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1092 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1093
6e3c9717 1094 return intel_crtc->config->cpu_transcoder;
a5c961d1
PZ
1095}
1096
fbf49ea2
VS
1097static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1098{
1099 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 1100 i915_reg_t reg = PIPEDSL(pipe);
fbf49ea2
VS
1101 u32 line1, line2;
1102 u32 line_mask;
1103
1104 if (IS_GEN2(dev))
1105 line_mask = DSL_LINEMASK_GEN2;
1106 else
1107 line_mask = DSL_LINEMASK_GEN3;
1108
1109 line1 = I915_READ(reg) & line_mask;
6adfb1ef 1110 msleep(5);
fbf49ea2
VS
1111 line2 = I915_READ(reg) & line_mask;
1112
1113 return line1 == line2;
1114}
1115
ab7ad7f6
KP
1116/*
1117 * intel_wait_for_pipe_off - wait for pipe to turn off
575f7ab7 1118 * @crtc: crtc whose pipe to wait for
9d0498a2
JB
1119 *
1120 * After disabling a pipe, we can't wait for vblank in the usual way,
1121 * spinning on the vblank interrupt status bit, since we won't actually
1122 * see an interrupt when the pipe is disabled.
1123 *
ab7ad7f6
KP
1124 * On Gen4 and above:
1125 * wait for the pipe register state bit to turn off
1126 *
1127 * Otherwise:
1128 * wait for the display line value to settle (it usually
1129 * ends up stopping at the start of the next frame).
58e10eb9 1130 *
9d0498a2 1131 */
575f7ab7 1132static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
9d0498a2 1133{
575f7ab7 1134 struct drm_device *dev = crtc->base.dev;
9d0498a2 1135 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 1136 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 1137 enum pipe pipe = crtc->pipe;
ab7ad7f6
KP
1138
1139 if (INTEL_INFO(dev)->gen >= 4) {
f0f59a00 1140 i915_reg_t reg = PIPECONF(cpu_transcoder);
ab7ad7f6
KP
1141
1142 /* Wait for the Pipe State to go off */
58e10eb9
CW
1143 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1144 100))
284637d9 1145 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1146 } else {
ab7ad7f6 1147 /* Wait for the display line to settle */
fbf49ea2 1148 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
284637d9 1149 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1150 }
79e53945
JB
1151}
1152
b24e7179
JB
1153static const char *state_string(bool enabled)
1154{
1155 return enabled ? "on" : "off";
1156}
1157
1158/* Only for pre-ILK configs */
55607e8a
DV
1159void assert_pll(struct drm_i915_private *dev_priv,
1160 enum pipe pipe, bool state)
b24e7179 1161{
b24e7179
JB
1162 u32 val;
1163 bool cur_state;
1164
649636ef 1165 val = I915_READ(DPLL(pipe));
b24e7179 1166 cur_state = !!(val & DPLL_VCO_ENABLE);
e2c719b7 1167 I915_STATE_WARN(cur_state != state,
b24e7179
JB
1168 "PLL state assertion failure (expected %s, current %s)\n",
1169 state_string(state), state_string(cur_state));
1170}
b24e7179 1171
23538ef1
JN
1172/* XXX: the dsi pll is shared between MIPI DSI ports */
1173static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1174{
1175 u32 val;
1176 bool cur_state;
1177
a580516d 1178 mutex_lock(&dev_priv->sb_lock);
23538ef1 1179 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
a580516d 1180 mutex_unlock(&dev_priv->sb_lock);
23538ef1
JN
1181
1182 cur_state = val & DSI_PLL_VCO_EN;
e2c719b7 1183 I915_STATE_WARN(cur_state != state,
23538ef1
JN
1184 "DSI PLL state assertion failure (expected %s, current %s)\n",
1185 state_string(state), state_string(cur_state));
1186}
1187#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1188#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1189
55607e8a 1190struct intel_shared_dpll *
e2b78267
DV
1191intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
1192{
1193 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1194
6e3c9717 1195 if (crtc->config->shared_dpll < 0)
e2b78267
DV
1196 return NULL;
1197
6e3c9717 1198 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
e2b78267
DV
1199}
1200
040484af 1201/* For ILK+ */
55607e8a
DV
1202void assert_shared_dpll(struct drm_i915_private *dev_priv,
1203 struct intel_shared_dpll *pll,
1204 bool state)
040484af 1205{
040484af 1206 bool cur_state;
5358901f 1207 struct intel_dpll_hw_state hw_state;
040484af 1208
92b27b08 1209 if (WARN (!pll,
46edb027 1210 "asserting DPLL %s with no DPLL\n", state_string(state)))
ee7b9f93 1211 return;
ee7b9f93 1212
5358901f 1213 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
e2c719b7 1214 I915_STATE_WARN(cur_state != state,
5358901f
DV
1215 "%s assertion failure (expected %s, current %s)\n",
1216 pll->name, state_string(state), state_string(cur_state));
040484af 1217}
040484af
JB
1218
1219static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1220 enum pipe pipe, bool state)
1221{
040484af 1222 bool cur_state;
ad80a810
PZ
1223 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1224 pipe);
040484af 1225
affa9354
PZ
1226 if (HAS_DDI(dev_priv->dev)) {
1227 /* DDI does not have a specific FDI_TX register */
649636ef 1228 u32 val = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
ad80a810 1229 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
bf507ef7 1230 } else {
649636ef 1231 u32 val = I915_READ(FDI_TX_CTL(pipe));
bf507ef7
ED
1232 cur_state = !!(val & FDI_TX_ENABLE);
1233 }
e2c719b7 1234 I915_STATE_WARN(cur_state != state,
040484af
JB
1235 "FDI TX state assertion failure (expected %s, current %s)\n",
1236 state_string(state), state_string(cur_state));
1237}
1238#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1239#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1240
1241static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1242 enum pipe pipe, bool state)
1243{
040484af
JB
1244 u32 val;
1245 bool cur_state;
1246
649636ef 1247 val = I915_READ(FDI_RX_CTL(pipe));
d63fa0dc 1248 cur_state = !!(val & FDI_RX_ENABLE);
e2c719b7 1249 I915_STATE_WARN(cur_state != state,
040484af
JB
1250 "FDI RX state assertion failure (expected %s, current %s)\n",
1251 state_string(state), state_string(cur_state));
1252}
1253#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1254#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1255
1256static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1257 enum pipe pipe)
1258{
040484af
JB
1259 u32 val;
1260
1261 /* ILK FDI PLL is always enabled */
3d13ef2e 1262 if (INTEL_INFO(dev_priv->dev)->gen == 5)
040484af
JB
1263 return;
1264
bf507ef7 1265 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
affa9354 1266 if (HAS_DDI(dev_priv->dev))
bf507ef7
ED
1267 return;
1268
649636ef 1269 val = I915_READ(FDI_TX_CTL(pipe));
e2c719b7 1270 I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
040484af
JB
1271}
1272
55607e8a
DV
1273void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1274 enum pipe pipe, bool state)
040484af 1275{
040484af 1276 u32 val;
55607e8a 1277 bool cur_state;
040484af 1278
649636ef 1279 val = I915_READ(FDI_RX_CTL(pipe));
55607e8a 1280 cur_state = !!(val & FDI_RX_PLL_ENABLE);
e2c719b7 1281 I915_STATE_WARN(cur_state != state,
55607e8a
DV
1282 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1283 state_string(state), state_string(cur_state));
040484af
JB
1284}
1285
b680c37a
DV
1286void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1287 enum pipe pipe)
ea0760cf 1288{
bedd4dba 1289 struct drm_device *dev = dev_priv->dev;
f0f59a00 1290 i915_reg_t pp_reg;
ea0760cf
JB
1291 u32 val;
1292 enum pipe panel_pipe = PIPE_A;
0de3b485 1293 bool locked = true;
ea0760cf 1294
bedd4dba
JN
1295 if (WARN_ON(HAS_DDI(dev)))
1296 return;
1297
1298 if (HAS_PCH_SPLIT(dev)) {
1299 u32 port_sel;
1300
ea0760cf 1301 pp_reg = PCH_PP_CONTROL;
bedd4dba
JN
1302 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1303
1304 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1305 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1306 panel_pipe = PIPE_B;
1307 /* XXX: else fix for eDP */
666a4537 1308 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
bedd4dba
JN
1309 /* presumably write lock depends on pipe, not port select */
1310 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1311 panel_pipe = pipe;
ea0760cf
JB
1312 } else {
1313 pp_reg = PP_CONTROL;
bedd4dba
JN
1314 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1315 panel_pipe = PIPE_B;
ea0760cf
JB
1316 }
1317
1318 val = I915_READ(pp_reg);
1319 if (!(val & PANEL_POWER_ON) ||
ec49ba2d 1320 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
ea0760cf
JB
1321 locked = false;
1322
e2c719b7 1323 I915_STATE_WARN(panel_pipe == pipe && locked,
ea0760cf 1324 "panel assertion failure, pipe %c regs locked\n",
9db4a9c7 1325 pipe_name(pipe));
ea0760cf
JB
1326}
1327
93ce0ba6
JN
1328static void assert_cursor(struct drm_i915_private *dev_priv,
1329 enum pipe pipe, bool state)
1330{
1331 struct drm_device *dev = dev_priv->dev;
1332 bool cur_state;
1333
d9d82081 1334 if (IS_845G(dev) || IS_I865G(dev))
0b87c24e 1335 cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
d9d82081 1336 else
5efb3e28 1337 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
93ce0ba6 1338
e2c719b7 1339 I915_STATE_WARN(cur_state != state,
93ce0ba6
JN
1340 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1341 pipe_name(pipe), state_string(state), state_string(cur_state));
1342}
1343#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1344#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1345
b840d907
JB
1346void assert_pipe(struct drm_i915_private *dev_priv,
1347 enum pipe pipe, bool state)
b24e7179 1348{
63d7bbe9 1349 bool cur_state;
702e7a56
PZ
1350 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1351 pipe);
b24e7179 1352
b6b5d049
VS
1353 /* if we need the pipe quirk it must be always on */
1354 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1355 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
8e636784
DV
1356 state = true;
1357
f458ebbc 1358 if (!intel_display_power_is_enabled(dev_priv,
b97186f0 1359 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
69310161
PZ
1360 cur_state = false;
1361 } else {
649636ef 1362 u32 val = I915_READ(PIPECONF(cpu_transcoder));
69310161
PZ
1363 cur_state = !!(val & PIPECONF_ENABLE);
1364 }
1365
e2c719b7 1366 I915_STATE_WARN(cur_state != state,
63d7bbe9 1367 "pipe %c assertion failure (expected %s, current %s)\n",
9db4a9c7 1368 pipe_name(pipe), state_string(state), state_string(cur_state));
b24e7179
JB
1369}
1370
931872fc
CW
1371static void assert_plane(struct drm_i915_private *dev_priv,
1372 enum plane plane, bool state)
b24e7179 1373{
b24e7179 1374 u32 val;
931872fc 1375 bool cur_state;
b24e7179 1376
649636ef 1377 val = I915_READ(DSPCNTR(plane));
931872fc 1378 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
e2c719b7 1379 I915_STATE_WARN(cur_state != state,
931872fc
CW
1380 "plane %c assertion failure (expected %s, current %s)\n",
1381 plane_name(plane), state_string(state), state_string(cur_state));
b24e7179
JB
1382}
1383
931872fc
CW
1384#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1385#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1386
b24e7179
JB
1387static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1388 enum pipe pipe)
1389{
653e1026 1390 struct drm_device *dev = dev_priv->dev;
649636ef 1391 int i;
b24e7179 1392
653e1026
VS
1393 /* Primary planes are fixed to pipes on gen4+ */
1394 if (INTEL_INFO(dev)->gen >= 4) {
649636ef 1395 u32 val = I915_READ(DSPCNTR(pipe));
e2c719b7 1396 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
28c05794
AJ
1397 "plane %c assertion failure, should be disabled but not\n",
1398 plane_name(pipe));
19ec1358 1399 return;
28c05794 1400 }
19ec1358 1401
b24e7179 1402 /* Need to check both planes against the pipe */
055e393f 1403 for_each_pipe(dev_priv, i) {
649636ef
VS
1404 u32 val = I915_READ(DSPCNTR(i));
1405 enum pipe cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
b24e7179 1406 DISPPLANE_SEL_PIPE_SHIFT;
e2c719b7 1407 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
9db4a9c7
JB
1408 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1409 plane_name(i), pipe_name(pipe));
b24e7179
JB
1410 }
1411}
1412
19332d7a
JB
1413static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1414 enum pipe pipe)
1415{
20674eef 1416 struct drm_device *dev = dev_priv->dev;
649636ef 1417 int sprite;
19332d7a 1418
7feb8b88 1419 if (INTEL_INFO(dev)->gen >= 9) {
3bdcfc0c 1420 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1421 u32 val = I915_READ(PLANE_CTL(pipe, sprite));
e2c719b7 1422 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
7feb8b88
DL
1423 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1424 sprite, pipe_name(pipe));
1425 }
666a4537 1426 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
3bdcfc0c 1427 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1428 u32 val = I915_READ(SPCNTR(pipe, sprite));
e2c719b7 1429 I915_STATE_WARN(val & SP_ENABLE,
20674eef 1430 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1fe47785 1431 sprite_name(pipe, sprite), pipe_name(pipe));
20674eef
VS
1432 }
1433 } else if (INTEL_INFO(dev)->gen >= 7) {
649636ef 1434 u32 val = I915_READ(SPRCTL(pipe));
e2c719b7 1435 I915_STATE_WARN(val & SPRITE_ENABLE,
06da8da2 1436 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef
VS
1437 plane_name(pipe), pipe_name(pipe));
1438 } else if (INTEL_INFO(dev)->gen >= 5) {
649636ef 1439 u32 val = I915_READ(DVSCNTR(pipe));
e2c719b7 1440 I915_STATE_WARN(val & DVS_ENABLE,
06da8da2 1441 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef 1442 plane_name(pipe), pipe_name(pipe));
19332d7a
JB
1443 }
1444}
1445
08c71e5e
VS
1446static void assert_vblank_disabled(struct drm_crtc *crtc)
1447{
e2c719b7 1448 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
08c71e5e
VS
1449 drm_crtc_vblank_put(crtc);
1450}
1451
89eff4be 1452static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
92f2584a
JB
1453{
1454 u32 val;
1455 bool enabled;
1456
e2c719b7 1457 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
9d82aa17 1458
92f2584a
JB
1459 val = I915_READ(PCH_DREF_CONTROL);
1460 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1461 DREF_SUPERSPREAD_SOURCE_MASK));
e2c719b7 1462 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
92f2584a
JB
1463}
1464
ab9412ba
DV
1465static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1466 enum pipe pipe)
92f2584a 1467{
92f2584a
JB
1468 u32 val;
1469 bool enabled;
1470
649636ef 1471 val = I915_READ(PCH_TRANSCONF(pipe));
92f2584a 1472 enabled = !!(val & TRANS_ENABLE);
e2c719b7 1473 I915_STATE_WARN(enabled,
9db4a9c7
JB
1474 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1475 pipe_name(pipe));
92f2584a
JB
1476}
1477
4e634389
KP
1478static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1479 enum pipe pipe, u32 port_sel, u32 val)
f0575e92
KP
1480{
1481 if ((val & DP_PORT_EN) == 0)
1482 return false;
1483
1484 if (HAS_PCH_CPT(dev_priv->dev)) {
f0f59a00 1485 u32 trans_dp_ctl = I915_READ(TRANS_DP_CTL(pipe));
f0575e92
KP
1486 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1487 return false;
44f37d1f
CML
1488 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1489 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1490 return false;
f0575e92
KP
1491 } else {
1492 if ((val & DP_PIPE_MASK) != (pipe << 30))
1493 return false;
1494 }
1495 return true;
1496}
1497
1519b995
KP
1498static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1499 enum pipe pipe, u32 val)
1500{
dc0fa718 1501 if ((val & SDVO_ENABLE) == 0)
1519b995
KP
1502 return false;
1503
1504 if (HAS_PCH_CPT(dev_priv->dev)) {
dc0fa718 1505 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
1519b995 1506 return false;
44f37d1f
CML
1507 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1508 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1509 return false;
1519b995 1510 } else {
dc0fa718 1511 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
1519b995
KP
1512 return false;
1513 }
1514 return true;
1515}
1516
1517static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1518 enum pipe pipe, u32 val)
1519{
1520 if ((val & LVDS_PORT_EN) == 0)
1521 return false;
1522
1523 if (HAS_PCH_CPT(dev_priv->dev)) {
1524 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1525 return false;
1526 } else {
1527 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1528 return false;
1529 }
1530 return true;
1531}
1532
1533static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1534 enum pipe pipe, u32 val)
1535{
1536 if ((val & ADPA_DAC_ENABLE) == 0)
1537 return false;
1538 if (HAS_PCH_CPT(dev_priv->dev)) {
1539 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1540 return false;
1541 } else {
1542 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1543 return false;
1544 }
1545 return true;
1546}
1547
291906f1 1548static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
f0f59a00
VS
1549 enum pipe pipe, i915_reg_t reg,
1550 u32 port_sel)
291906f1 1551{
47a05eca 1552 u32 val = I915_READ(reg);
e2c719b7 1553 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
291906f1 1554 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1555 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1556
e2c719b7 1557 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
75c5da27 1558 && (val & DP_PIPEB_SELECT),
de9a35ab 1559 "IBX PCH dp port still using transcoder B\n");
291906f1
JB
1560}
1561
1562static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
f0f59a00 1563 enum pipe pipe, i915_reg_t reg)
291906f1 1564{
47a05eca 1565 u32 val = I915_READ(reg);
e2c719b7 1566 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
23c99e77 1567 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1568 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1569
e2c719b7 1570 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
75c5da27 1571 && (val & SDVO_PIPE_B_SELECT),
de9a35ab 1572 "IBX PCH hdmi port still using transcoder B\n");
291906f1
JB
1573}
1574
1575static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1576 enum pipe pipe)
1577{
291906f1 1578 u32 val;
291906f1 1579
f0575e92
KP
1580 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1581 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1582 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
291906f1 1583
649636ef 1584 val = I915_READ(PCH_ADPA);
e2c719b7 1585 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
291906f1 1586 "PCH VGA enabled on transcoder %c, should be disabled\n",
9db4a9c7 1587 pipe_name(pipe));
291906f1 1588
649636ef 1589 val = I915_READ(PCH_LVDS);
e2c719b7 1590 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
291906f1 1591 "PCH LVDS enabled on transcoder %c, should be disabled\n",
9db4a9c7 1592 pipe_name(pipe));
291906f1 1593
e2debe91
PZ
1594 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1595 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1596 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
291906f1
JB
1597}
1598
d288f65f 1599static void vlv_enable_pll(struct intel_crtc *crtc,
5cec258b 1600 const struct intel_crtc_state *pipe_config)
87442f73 1601{
426115cf
DV
1602 struct drm_device *dev = crtc->base.dev;
1603 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 1604 i915_reg_t reg = DPLL(crtc->pipe);
d288f65f 1605 u32 dpll = pipe_config->dpll_hw_state.dpll;
87442f73 1606
426115cf 1607 assert_pipe_disabled(dev_priv, crtc->pipe);
87442f73 1608
87442f73 1609 /* PLL is protected by panel, make sure we can write it */
6a9e7363 1610 if (IS_MOBILE(dev_priv->dev))
426115cf 1611 assert_panel_unlocked(dev_priv, crtc->pipe);
87442f73 1612
426115cf
DV
1613 I915_WRITE(reg, dpll);
1614 POSTING_READ(reg);
1615 udelay(150);
1616
1617 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1618 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1619
d288f65f 1620 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
426115cf 1621 POSTING_READ(DPLL_MD(crtc->pipe));
87442f73
DV
1622
1623 /* We do this three times for luck */
426115cf 1624 I915_WRITE(reg, dpll);
87442f73
DV
1625 POSTING_READ(reg);
1626 udelay(150); /* wait for warmup */
426115cf 1627 I915_WRITE(reg, dpll);
87442f73
DV
1628 POSTING_READ(reg);
1629 udelay(150); /* wait for warmup */
426115cf 1630 I915_WRITE(reg, dpll);
87442f73
DV
1631 POSTING_READ(reg);
1632 udelay(150); /* wait for warmup */
1633}
1634
d288f65f 1635static void chv_enable_pll(struct intel_crtc *crtc,
5cec258b 1636 const struct intel_crtc_state *pipe_config)
9d556c99
CML
1637{
1638 struct drm_device *dev = crtc->base.dev;
1639 struct drm_i915_private *dev_priv = dev->dev_private;
1640 int pipe = crtc->pipe;
1641 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9d556c99
CML
1642 u32 tmp;
1643
1644 assert_pipe_disabled(dev_priv, crtc->pipe);
1645
a580516d 1646 mutex_lock(&dev_priv->sb_lock);
9d556c99
CML
1647
1648 /* Enable back the 10bit clock to display controller */
1649 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1650 tmp |= DPIO_DCLKP_EN;
1651 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1652
54433e91
VS
1653 mutex_unlock(&dev_priv->sb_lock);
1654
9d556c99
CML
1655 /*
1656 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1657 */
1658 udelay(1);
1659
1660 /* Enable PLL */
d288f65f 1661 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
9d556c99
CML
1662
1663 /* Check PLL is locked */
a11b0703 1664 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
9d556c99
CML
1665 DRM_ERROR("PLL %d failed to lock\n", pipe);
1666
a11b0703 1667 /* not sure when this should be written */
d288f65f 1668 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
a11b0703 1669 POSTING_READ(DPLL_MD(pipe));
9d556c99
CML
1670}
1671
1c4e0274
VS
1672static int intel_num_dvo_pipes(struct drm_device *dev)
1673{
1674 struct intel_crtc *crtc;
1675 int count = 0;
1676
1677 for_each_intel_crtc(dev, crtc)
3538b9df 1678 count += crtc->base.state->active &&
409ee761 1679 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
1c4e0274
VS
1680
1681 return count;
1682}
1683
66e3d5c0 1684static void i9xx_enable_pll(struct intel_crtc *crtc)
63d7bbe9 1685{
66e3d5c0
DV
1686 struct drm_device *dev = crtc->base.dev;
1687 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 1688 i915_reg_t reg = DPLL(crtc->pipe);
6e3c9717 1689 u32 dpll = crtc->config->dpll_hw_state.dpll;
63d7bbe9 1690
66e3d5c0 1691 assert_pipe_disabled(dev_priv, crtc->pipe);
58c6eaa2 1692
63d7bbe9 1693 /* No really, not for ILK+ */
3d13ef2e 1694 BUG_ON(INTEL_INFO(dev)->gen >= 5);
63d7bbe9
JB
1695
1696 /* PLL is protected by panel, make sure we can write it */
66e3d5c0
DV
1697 if (IS_MOBILE(dev) && !IS_I830(dev))
1698 assert_panel_unlocked(dev_priv, crtc->pipe);
63d7bbe9 1699
1c4e0274
VS
1700 /* Enable DVO 2x clock on both PLLs if necessary */
1701 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1702 /*
1703 * It appears to be important that we don't enable this
1704 * for the current pipe before otherwise configuring the
1705 * PLL. No idea how this should be handled if multiple
1706 * DVO outputs are enabled simultaneosly.
1707 */
1708 dpll |= DPLL_DVO_2X_MODE;
1709 I915_WRITE(DPLL(!crtc->pipe),
1710 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1711 }
66e3d5c0 1712
c2b63374
VS
1713 /*
1714 * Apparently we need to have VGA mode enabled prior to changing
1715 * the P1/P2 dividers. Otherwise the DPLL will keep using the old
1716 * dividers, even though the register value does change.
1717 */
1718 I915_WRITE(reg, 0);
1719
8e7a65aa
VS
1720 I915_WRITE(reg, dpll);
1721
66e3d5c0
DV
1722 /* Wait for the clocks to stabilize. */
1723 POSTING_READ(reg);
1724 udelay(150);
1725
1726 if (INTEL_INFO(dev)->gen >= 4) {
1727 I915_WRITE(DPLL_MD(crtc->pipe),
6e3c9717 1728 crtc->config->dpll_hw_state.dpll_md);
66e3d5c0
DV
1729 } else {
1730 /* The pixel multiplier can only be updated once the
1731 * DPLL is enabled and the clocks are stable.
1732 *
1733 * So write it again.
1734 */
1735 I915_WRITE(reg, dpll);
1736 }
63d7bbe9
JB
1737
1738 /* We do this three times for luck */
66e3d5c0 1739 I915_WRITE(reg, dpll);
63d7bbe9
JB
1740 POSTING_READ(reg);
1741 udelay(150); /* wait for warmup */
66e3d5c0 1742 I915_WRITE(reg, dpll);
63d7bbe9
JB
1743 POSTING_READ(reg);
1744 udelay(150); /* wait for warmup */
66e3d5c0 1745 I915_WRITE(reg, dpll);
63d7bbe9
JB
1746 POSTING_READ(reg);
1747 udelay(150); /* wait for warmup */
1748}
1749
1750/**
50b44a44 1751 * i9xx_disable_pll - disable a PLL
63d7bbe9
JB
1752 * @dev_priv: i915 private structure
1753 * @pipe: pipe PLL to disable
1754 *
1755 * Disable the PLL for @pipe, making sure the pipe is off first.
1756 *
1757 * Note! This is for pre-ILK only.
1758 */
1c4e0274 1759static void i9xx_disable_pll(struct intel_crtc *crtc)
63d7bbe9 1760{
1c4e0274
VS
1761 struct drm_device *dev = crtc->base.dev;
1762 struct drm_i915_private *dev_priv = dev->dev_private;
1763 enum pipe pipe = crtc->pipe;
1764
1765 /* Disable DVO 2x clock on both PLLs if necessary */
1766 if (IS_I830(dev) &&
409ee761 1767 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
3538b9df 1768 !intel_num_dvo_pipes(dev)) {
1c4e0274
VS
1769 I915_WRITE(DPLL(PIPE_B),
1770 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1771 I915_WRITE(DPLL(PIPE_A),
1772 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1773 }
1774
b6b5d049
VS
1775 /* Don't disable pipe or pipe PLLs if needed */
1776 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1777 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
63d7bbe9
JB
1778 return;
1779
1780 /* Make sure the pipe isn't still relying on us */
1781 assert_pipe_disabled(dev_priv, pipe);
1782
b8afb911 1783 I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS);
50b44a44 1784 POSTING_READ(DPLL(pipe));
63d7bbe9
JB
1785}
1786
f6071166
JB
1787static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1788{
b8afb911 1789 u32 val;
f6071166
JB
1790
1791 /* Make sure the pipe isn't still relying on us */
1792 assert_pipe_disabled(dev_priv, pipe);
1793
e5cbfbfb
ID
1794 /*
1795 * Leave integrated clock source and reference clock enabled for pipe B.
1796 * The latter is needed for VGA hotplug / manual detection.
1797 */
b8afb911 1798 val = DPLL_VGA_MODE_DIS;
f6071166 1799 if (pipe == PIPE_B)
60bfe44f 1800 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REF_CLK_ENABLE_VLV;
f6071166
JB
1801 I915_WRITE(DPLL(pipe), val);
1802 POSTING_READ(DPLL(pipe));
076ed3b2
CML
1803
1804}
1805
1806static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1807{
d752048d 1808 enum dpio_channel port = vlv_pipe_to_channel(pipe);
076ed3b2
CML
1809 u32 val;
1810
a11b0703
VS
1811 /* Make sure the pipe isn't still relying on us */
1812 assert_pipe_disabled(dev_priv, pipe);
076ed3b2 1813
a11b0703 1814 /* Set PLL en = 0 */
60bfe44f
VS
1815 val = DPLL_SSC_REF_CLK_CHV |
1816 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
a11b0703
VS
1817 if (pipe != PIPE_A)
1818 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1819 I915_WRITE(DPLL(pipe), val);
1820 POSTING_READ(DPLL(pipe));
d752048d 1821
a580516d 1822 mutex_lock(&dev_priv->sb_lock);
d752048d
VS
1823
1824 /* Disable 10bit clock to display controller */
1825 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1826 val &= ~DPIO_DCLKP_EN;
1827 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1828
a580516d 1829 mutex_unlock(&dev_priv->sb_lock);
f6071166
JB
1830}
1831
e4607fcf 1832void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
9b6de0a1
VS
1833 struct intel_digital_port *dport,
1834 unsigned int expected_mask)
89b667f8
JB
1835{
1836 u32 port_mask;
f0f59a00 1837 i915_reg_t dpll_reg;
89b667f8 1838
e4607fcf
CML
1839 switch (dport->port) {
1840 case PORT_B:
89b667f8 1841 port_mask = DPLL_PORTB_READY_MASK;
00fc31b7 1842 dpll_reg = DPLL(0);
e4607fcf
CML
1843 break;
1844 case PORT_C:
89b667f8 1845 port_mask = DPLL_PORTC_READY_MASK;
00fc31b7 1846 dpll_reg = DPLL(0);
9b6de0a1 1847 expected_mask <<= 4;
00fc31b7
CML
1848 break;
1849 case PORT_D:
1850 port_mask = DPLL_PORTD_READY_MASK;
1851 dpll_reg = DPIO_PHY_STATUS;
e4607fcf
CML
1852 break;
1853 default:
1854 BUG();
1855 }
89b667f8 1856
9b6de0a1
VS
1857 if (wait_for((I915_READ(dpll_reg) & port_mask) == expected_mask, 1000))
1858 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1859 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
89b667f8
JB
1860}
1861
b14b1055
DV
1862static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1863{
1864 struct drm_device *dev = crtc->base.dev;
1865 struct drm_i915_private *dev_priv = dev->dev_private;
1866 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1867
be19f0ff
CW
1868 if (WARN_ON(pll == NULL))
1869 return;
1870
3e369b76 1871 WARN_ON(!pll->config.crtc_mask);
b14b1055
DV
1872 if (pll->active == 0) {
1873 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1874 WARN_ON(pll->on);
1875 assert_shared_dpll_disabled(dev_priv, pll);
1876
1877 pll->mode_set(dev_priv, pll);
1878 }
1879}
1880
92f2584a 1881/**
85b3894f 1882 * intel_enable_shared_dpll - enable PCH PLL
92f2584a
JB
1883 * @dev_priv: i915 private structure
1884 * @pipe: pipe PLL to enable
1885 *
1886 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1887 * drives the transcoder clock.
1888 */
85b3894f 1889static void intel_enable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1890{
3d13ef2e
DL
1891 struct drm_device *dev = crtc->base.dev;
1892 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1893 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
92f2584a 1894
87a875bb 1895 if (WARN_ON(pll == NULL))
48da64a8
CW
1896 return;
1897
3e369b76 1898 if (WARN_ON(pll->config.crtc_mask == 0))
48da64a8 1899 return;
ee7b9f93 1900
74dd6928 1901 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
46edb027 1902 pll->name, pll->active, pll->on,
e2b78267 1903 crtc->base.base.id);
92f2584a 1904
cdbd2316
DV
1905 if (pll->active++) {
1906 WARN_ON(!pll->on);
e9d6944e 1907 assert_shared_dpll_enabled(dev_priv, pll);
ee7b9f93
JB
1908 return;
1909 }
f4a091c7 1910 WARN_ON(pll->on);
ee7b9f93 1911
bd2bb1b9
PZ
1912 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1913
46edb027 1914 DRM_DEBUG_KMS("enabling %s\n", pll->name);
e7b903d2 1915 pll->enable(dev_priv, pll);
ee7b9f93 1916 pll->on = true;
92f2584a
JB
1917}
1918
f6daaec2 1919static void intel_disable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1920{
3d13ef2e
DL
1921 struct drm_device *dev = crtc->base.dev;
1922 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1923 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
4c609cb8 1924
92f2584a 1925 /* PCH only available on ILK+ */
80aa9312
JB
1926 if (INTEL_INFO(dev)->gen < 5)
1927 return;
1928
eddfcbcd
ML
1929 if (pll == NULL)
1930 return;
92f2584a 1931
eddfcbcd 1932 if (WARN_ON(!(pll->config.crtc_mask & (1 << drm_crtc_index(&crtc->base)))))
48da64a8 1933 return;
7a419866 1934
46edb027
DV
1935 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1936 pll->name, pll->active, pll->on,
e2b78267 1937 crtc->base.base.id);
7a419866 1938
48da64a8 1939 if (WARN_ON(pll->active == 0)) {
e9d6944e 1940 assert_shared_dpll_disabled(dev_priv, pll);
48da64a8
CW
1941 return;
1942 }
1943
e9d6944e 1944 assert_shared_dpll_enabled(dev_priv, pll);
f4a091c7 1945 WARN_ON(!pll->on);
cdbd2316 1946 if (--pll->active)
7a419866 1947 return;
ee7b9f93 1948
46edb027 1949 DRM_DEBUG_KMS("disabling %s\n", pll->name);
e7b903d2 1950 pll->disable(dev_priv, pll);
ee7b9f93 1951 pll->on = false;
bd2bb1b9
PZ
1952
1953 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
92f2584a
JB
1954}
1955
b8a4f404
PZ
1956static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1957 enum pipe pipe)
040484af 1958{
23670b32 1959 struct drm_device *dev = dev_priv->dev;
7c26e5c6 1960 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e2b78267 1961 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
f0f59a00
VS
1962 i915_reg_t reg;
1963 uint32_t val, pipeconf_val;
040484af
JB
1964
1965 /* PCH only available on ILK+ */
55522f37 1966 BUG_ON(!HAS_PCH_SPLIT(dev));
040484af
JB
1967
1968 /* Make sure PCH DPLL is enabled */
e72f9fbf 1969 assert_shared_dpll_enabled(dev_priv,
e9d6944e 1970 intel_crtc_to_shared_dpll(intel_crtc));
040484af
JB
1971
1972 /* FDI must be feeding us bits for PCH ports */
1973 assert_fdi_tx_enabled(dev_priv, pipe);
1974 assert_fdi_rx_enabled(dev_priv, pipe);
1975
23670b32
DV
1976 if (HAS_PCH_CPT(dev)) {
1977 /* Workaround: Set the timing override bit before enabling the
1978 * pch transcoder. */
1979 reg = TRANS_CHICKEN2(pipe);
1980 val = I915_READ(reg);
1981 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1982 I915_WRITE(reg, val);
59c859d6 1983 }
23670b32 1984
ab9412ba 1985 reg = PCH_TRANSCONF(pipe);
040484af 1986 val = I915_READ(reg);
5f7f726d 1987 pipeconf_val = I915_READ(PIPECONF(pipe));
e9bcff5c
JB
1988
1989 if (HAS_PCH_IBX(dev_priv->dev)) {
1990 /*
c5de7c6f
VS
1991 * Make the BPC in transcoder be consistent with
1992 * that in pipeconf reg. For HDMI we must use 8bpc
1993 * here for both 8bpc and 12bpc.
e9bcff5c 1994 */
dfd07d72 1995 val &= ~PIPECONF_BPC_MASK;
c5de7c6f
VS
1996 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_HDMI))
1997 val |= PIPECONF_8BPC;
1998 else
1999 val |= pipeconf_val & PIPECONF_BPC_MASK;
e9bcff5c 2000 }
5f7f726d
PZ
2001
2002 val &= ~TRANS_INTERLACE_MASK;
2003 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
7c26e5c6 2004 if (HAS_PCH_IBX(dev_priv->dev) &&
409ee761 2005 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
7c26e5c6
PZ
2006 val |= TRANS_LEGACY_INTERLACED_ILK;
2007 else
2008 val |= TRANS_INTERLACED;
5f7f726d
PZ
2009 else
2010 val |= TRANS_PROGRESSIVE;
2011
040484af
JB
2012 I915_WRITE(reg, val | TRANS_ENABLE);
2013 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
4bb6f1f3 2014 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
040484af
JB
2015}
2016
8fb033d7 2017static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
937bb610 2018 enum transcoder cpu_transcoder)
040484af 2019{
8fb033d7 2020 u32 val, pipeconf_val;
8fb033d7
PZ
2021
2022 /* PCH only available on ILK+ */
55522f37 2023 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
8fb033d7 2024
8fb033d7 2025 /* FDI must be feeding us bits for PCH ports */
1a240d4d 2026 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
937bb610 2027 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
8fb033d7 2028
223a6fdf 2029 /* Workaround: set timing override bit. */
36c0d0cf 2030 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 2031 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 2032 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
223a6fdf 2033
25f3ef11 2034 val = TRANS_ENABLE;
937bb610 2035 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
8fb033d7 2036
9a76b1c6
PZ
2037 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
2038 PIPECONF_INTERLACED_ILK)
a35f2679 2039 val |= TRANS_INTERLACED;
8fb033d7
PZ
2040 else
2041 val |= TRANS_PROGRESSIVE;
2042
ab9412ba
DV
2043 I915_WRITE(LPT_TRANSCONF, val);
2044 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
937bb610 2045 DRM_ERROR("Failed to enable PCH transcoder\n");
8fb033d7
PZ
2046}
2047
b8a4f404
PZ
2048static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
2049 enum pipe pipe)
040484af 2050{
23670b32 2051 struct drm_device *dev = dev_priv->dev;
f0f59a00
VS
2052 i915_reg_t reg;
2053 uint32_t val;
040484af
JB
2054
2055 /* FDI relies on the transcoder */
2056 assert_fdi_tx_disabled(dev_priv, pipe);
2057 assert_fdi_rx_disabled(dev_priv, pipe);
2058
291906f1
JB
2059 /* Ports must be off as well */
2060 assert_pch_ports_disabled(dev_priv, pipe);
2061
ab9412ba 2062 reg = PCH_TRANSCONF(pipe);
040484af
JB
2063 val = I915_READ(reg);
2064 val &= ~TRANS_ENABLE;
2065 I915_WRITE(reg, val);
2066 /* wait for PCH transcoder off, transcoder state */
2067 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
4bb6f1f3 2068 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
23670b32 2069
c465613b 2070 if (HAS_PCH_CPT(dev)) {
23670b32
DV
2071 /* Workaround: Clear the timing override chicken bit again. */
2072 reg = TRANS_CHICKEN2(pipe);
2073 val = I915_READ(reg);
2074 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
2075 I915_WRITE(reg, val);
2076 }
040484af
JB
2077}
2078
ab4d966c 2079static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
8fb033d7 2080{
8fb033d7
PZ
2081 u32 val;
2082
ab9412ba 2083 val = I915_READ(LPT_TRANSCONF);
8fb033d7 2084 val &= ~TRANS_ENABLE;
ab9412ba 2085 I915_WRITE(LPT_TRANSCONF, val);
8fb033d7 2086 /* wait for PCH transcoder off, transcoder state */
ab9412ba 2087 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
8a52fd9f 2088 DRM_ERROR("Failed to disable PCH transcoder\n");
223a6fdf
PZ
2089
2090 /* Workaround: clear timing override bit. */
36c0d0cf 2091 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 2092 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 2093 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
040484af
JB
2094}
2095
b24e7179 2096/**
309cfea8 2097 * intel_enable_pipe - enable a pipe, asserting requirements
0372264a 2098 * @crtc: crtc responsible for the pipe
b24e7179 2099 *
0372264a 2100 * Enable @crtc's pipe, making sure that various hardware specific requirements
b24e7179 2101 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
b24e7179 2102 */
e1fdc473 2103static void intel_enable_pipe(struct intel_crtc *crtc)
b24e7179 2104{
0372264a
PZ
2105 struct drm_device *dev = crtc->base.dev;
2106 struct drm_i915_private *dev_priv = dev->dev_private;
2107 enum pipe pipe = crtc->pipe;
1a70a728 2108 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
1a240d4d 2109 enum pipe pch_transcoder;
f0f59a00 2110 i915_reg_t reg;
b24e7179
JB
2111 u32 val;
2112
9e2ee2dd
VS
2113 DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe));
2114
58c6eaa2 2115 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2116 assert_cursor_disabled(dev_priv, pipe);
58c6eaa2
DV
2117 assert_sprites_disabled(dev_priv, pipe);
2118
681e5811 2119 if (HAS_PCH_LPT(dev_priv->dev))
cc391bbb
PZ
2120 pch_transcoder = TRANSCODER_A;
2121 else
2122 pch_transcoder = pipe;
2123
b24e7179
JB
2124 /*
2125 * A pipe without a PLL won't actually be able to drive bits from
2126 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2127 * need the check.
2128 */
50360403 2129 if (HAS_GMCH_DISPLAY(dev_priv->dev))
a65347ba 2130 if (crtc->config->has_dsi_encoder)
23538ef1
JN
2131 assert_dsi_pll_enabled(dev_priv);
2132 else
2133 assert_pll_enabled(dev_priv, pipe);
040484af 2134 else {
6e3c9717 2135 if (crtc->config->has_pch_encoder) {
040484af 2136 /* if driving the PCH, we need FDI enabled */
cc391bbb 2137 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
1a240d4d
DV
2138 assert_fdi_tx_pll_enabled(dev_priv,
2139 (enum pipe) cpu_transcoder);
040484af
JB
2140 }
2141 /* FIXME: assert CPU port conditions for SNB+ */
2142 }
b24e7179 2143
702e7a56 2144 reg = PIPECONF(cpu_transcoder);
b24e7179 2145 val = I915_READ(reg);
7ad25d48 2146 if (val & PIPECONF_ENABLE) {
b6b5d049
VS
2147 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2148 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
00d70b15 2149 return;
7ad25d48 2150 }
00d70b15
CW
2151
2152 I915_WRITE(reg, val | PIPECONF_ENABLE);
851855d8 2153 POSTING_READ(reg);
b24e7179
JB
2154}
2155
2156/**
309cfea8 2157 * intel_disable_pipe - disable a pipe, asserting requirements
575f7ab7 2158 * @crtc: crtc whose pipes is to be disabled
b24e7179 2159 *
575f7ab7
VS
2160 * Disable the pipe of @crtc, making sure that various hardware
2161 * specific requirements are met, if applicable, e.g. plane
2162 * disabled, panel fitter off, etc.
b24e7179
JB
2163 *
2164 * Will wait until the pipe has shut down before returning.
2165 */
575f7ab7 2166static void intel_disable_pipe(struct intel_crtc *crtc)
b24e7179 2167{
575f7ab7 2168 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
6e3c9717 2169 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 2170 enum pipe pipe = crtc->pipe;
f0f59a00 2171 i915_reg_t reg;
b24e7179
JB
2172 u32 val;
2173
9e2ee2dd
VS
2174 DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe));
2175
b24e7179
JB
2176 /*
2177 * Make sure planes won't keep trying to pump pixels to us,
2178 * or we might hang the display.
2179 */
2180 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2181 assert_cursor_disabled(dev_priv, pipe);
19332d7a 2182 assert_sprites_disabled(dev_priv, pipe);
b24e7179 2183
702e7a56 2184 reg = PIPECONF(cpu_transcoder);
b24e7179 2185 val = I915_READ(reg);
00d70b15
CW
2186 if ((val & PIPECONF_ENABLE) == 0)
2187 return;
2188
67adc644
VS
2189 /*
2190 * Double wide has implications for planes
2191 * so best keep it disabled when not needed.
2192 */
6e3c9717 2193 if (crtc->config->double_wide)
67adc644
VS
2194 val &= ~PIPECONF_DOUBLE_WIDE;
2195
2196 /* Don't disable pipe or pipe PLLs if needed */
b6b5d049
VS
2197 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2198 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
67adc644
VS
2199 val &= ~PIPECONF_ENABLE;
2200
2201 I915_WRITE(reg, val);
2202 if ((val & PIPECONF_ENABLE) == 0)
2203 intel_wait_for_pipe_off(crtc);
b24e7179
JB
2204}
2205
693db184
CW
2206static bool need_vtd_wa(struct drm_device *dev)
2207{
2208#ifdef CONFIG_INTEL_IOMMU
2209 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2210 return true;
2211#endif
2212 return false;
2213}
2214
50470bb0 2215unsigned int
6761dd31 2216intel_tile_height(struct drm_device *dev, uint32_t pixel_format,
fe47ea0c 2217 uint64_t fb_format_modifier, unsigned int plane)
a57ce0b2 2218{
6761dd31
TU
2219 unsigned int tile_height;
2220 uint32_t pixel_bytes;
a57ce0b2 2221
b5d0e9bf
DL
2222 switch (fb_format_modifier) {
2223 case DRM_FORMAT_MOD_NONE:
2224 tile_height = 1;
2225 break;
2226 case I915_FORMAT_MOD_X_TILED:
2227 tile_height = IS_GEN2(dev) ? 16 : 8;
2228 break;
2229 case I915_FORMAT_MOD_Y_TILED:
2230 tile_height = 32;
2231 break;
2232 case I915_FORMAT_MOD_Yf_TILED:
fe47ea0c 2233 pixel_bytes = drm_format_plane_cpp(pixel_format, plane);
6761dd31 2234 switch (pixel_bytes) {
b5d0e9bf 2235 default:
6761dd31 2236 case 1:
b5d0e9bf
DL
2237 tile_height = 64;
2238 break;
6761dd31
TU
2239 case 2:
2240 case 4:
b5d0e9bf
DL
2241 tile_height = 32;
2242 break;
6761dd31 2243 case 8:
b5d0e9bf
DL
2244 tile_height = 16;
2245 break;
6761dd31 2246 case 16:
b5d0e9bf
DL
2247 WARN_ONCE(1,
2248 "128-bit pixels are not supported for display!");
2249 tile_height = 16;
2250 break;
2251 }
2252 break;
2253 default:
2254 MISSING_CASE(fb_format_modifier);
2255 tile_height = 1;
2256 break;
2257 }
091df6cb 2258
6761dd31
TU
2259 return tile_height;
2260}
2261
2262unsigned int
2263intel_fb_align_height(struct drm_device *dev, unsigned int height,
2264 uint32_t pixel_format, uint64_t fb_format_modifier)
2265{
2266 return ALIGN(height, intel_tile_height(dev, pixel_format,
fe47ea0c 2267 fb_format_modifier, 0));
a57ce0b2
JB
2268}
2269
75c82a53 2270static void
f64b98cd
TU
2271intel_fill_fb_ggtt_view(struct i915_ggtt_view *view, struct drm_framebuffer *fb,
2272 const struct drm_plane_state *plane_state)
2273{
a6d09186 2274 struct intel_rotation_info *info = &view->params.rotation_info;
84fe03f7 2275 unsigned int tile_height, tile_pitch;
50470bb0 2276
f64b98cd
TU
2277 *view = i915_ggtt_view_normal;
2278
50470bb0 2279 if (!plane_state)
75c82a53 2280 return;
50470bb0 2281
121920fa 2282 if (!intel_rotation_90_or_270(plane_state->rotation))
75c82a53 2283 return;
50470bb0 2284
9abc4648 2285 *view = i915_ggtt_view_rotated;
50470bb0
TU
2286
2287 info->height = fb->height;
2288 info->pixel_format = fb->pixel_format;
2289 info->pitch = fb->pitches[0];
89e3e142 2290 info->uv_offset = fb->offsets[1];
50470bb0
TU
2291 info->fb_modifier = fb->modifier[0];
2292
84fe03f7 2293 tile_height = intel_tile_height(fb->dev, fb->pixel_format,
fe47ea0c 2294 fb->modifier[0], 0);
84fe03f7
TU
2295 tile_pitch = PAGE_SIZE / tile_height;
2296 info->width_pages = DIV_ROUND_UP(fb->pitches[0], tile_pitch);
2297 info->height_pages = DIV_ROUND_UP(fb->height, tile_height);
2298 info->size = info->width_pages * info->height_pages * PAGE_SIZE;
2299
89e3e142
TU
2300 if (info->pixel_format == DRM_FORMAT_NV12) {
2301 tile_height = intel_tile_height(fb->dev, fb->pixel_format,
2302 fb->modifier[0], 1);
2303 tile_pitch = PAGE_SIZE / tile_height;
2304 info->width_pages_uv = DIV_ROUND_UP(fb->pitches[0], tile_pitch);
2305 info->height_pages_uv = DIV_ROUND_UP(fb->height / 2,
2306 tile_height);
2307 info->size_uv = info->width_pages_uv * info->height_pages_uv *
2308 PAGE_SIZE;
2309 }
f64b98cd
TU
2310}
2311
4e9a86b6
VS
2312static unsigned int intel_linear_alignment(struct drm_i915_private *dev_priv)
2313{
2314 if (INTEL_INFO(dev_priv)->gen >= 9)
2315 return 256 * 1024;
985b8bb4 2316 else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) ||
666a4537 2317 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4e9a86b6
VS
2318 return 128 * 1024;
2319 else if (INTEL_INFO(dev_priv)->gen >= 4)
2320 return 4 * 1024;
2321 else
44c5905e 2322 return 0;
4e9a86b6
VS
2323}
2324
127bd2ac 2325int
850c4cdc
TU
2326intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2327 struct drm_framebuffer *fb,
7580d774 2328 const struct drm_plane_state *plane_state)
6b95a207 2329{
850c4cdc 2330 struct drm_device *dev = fb->dev;
ce453d81 2331 struct drm_i915_private *dev_priv = dev->dev_private;
850c4cdc 2332 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2333 struct i915_ggtt_view view;
6b95a207
KH
2334 u32 alignment;
2335 int ret;
2336
ebcdd39e
MR
2337 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2338
7b911adc
TU
2339 switch (fb->modifier[0]) {
2340 case DRM_FORMAT_MOD_NONE:
4e9a86b6 2341 alignment = intel_linear_alignment(dev_priv);
6b95a207 2342 break;
7b911adc 2343 case I915_FORMAT_MOD_X_TILED:
1fada4cc
DL
2344 if (INTEL_INFO(dev)->gen >= 9)
2345 alignment = 256 * 1024;
2346 else {
2347 /* pin() will align the object as required by fence */
2348 alignment = 0;
2349 }
6b95a207 2350 break;
7b911adc 2351 case I915_FORMAT_MOD_Y_TILED:
1327b9a1
DL
2352 case I915_FORMAT_MOD_Yf_TILED:
2353 if (WARN_ONCE(INTEL_INFO(dev)->gen < 9,
2354 "Y tiling bo slipped through, driver bug!\n"))
2355 return -EINVAL;
2356 alignment = 1 * 1024 * 1024;
2357 break;
6b95a207 2358 default:
7b911adc
TU
2359 MISSING_CASE(fb->modifier[0]);
2360 return -EINVAL;
6b95a207
KH
2361 }
2362
75c82a53 2363 intel_fill_fb_ggtt_view(&view, fb, plane_state);
f64b98cd 2364
693db184
CW
2365 /* Note that the w/a also requires 64 PTE of padding following the
2366 * bo. We currently fill all unused PTE with the shadow page and so
2367 * we should always have valid PTE following the scanout preventing
2368 * the VT-d warning.
2369 */
2370 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2371 alignment = 256 * 1024;
2372
d6dd6843
PZ
2373 /*
2374 * Global gtt pte registers are special registers which actually forward
2375 * writes to a chunk of system memory. Which means that there is no risk
2376 * that the register values disappear as soon as we call
2377 * intel_runtime_pm_put(), so it is correct to wrap only the
2378 * pin/unpin/fence and not more.
2379 */
2380 intel_runtime_pm_get(dev_priv);
2381
7580d774
ML
2382 ret = i915_gem_object_pin_to_display_plane(obj, alignment,
2383 &view);
48b956c5 2384 if (ret)
b26a6b35 2385 goto err_pm;
6b95a207
KH
2386
2387 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2388 * fence, whereas 965+ only requires a fence if using
2389 * framebuffer compression. For simplicity, we always install
2390 * a fence as the cost is not that onerous.
2391 */
9807216f
VK
2392 if (view.type == I915_GGTT_VIEW_NORMAL) {
2393 ret = i915_gem_object_get_fence(obj);
2394 if (ret == -EDEADLK) {
2395 /*
2396 * -EDEADLK means there are no free fences
2397 * no pending flips.
2398 *
2399 * This is propagated to atomic, but it uses
2400 * -EDEADLK to force a locking recovery, so
2401 * change the returned error to -EBUSY.
2402 */
2403 ret = -EBUSY;
2404 goto err_unpin;
2405 } else if (ret)
2406 goto err_unpin;
1690e1eb 2407
9807216f
VK
2408 i915_gem_object_pin_fence(obj);
2409 }
6b95a207 2410
d6dd6843 2411 intel_runtime_pm_put(dev_priv);
6b95a207 2412 return 0;
48b956c5
CW
2413
2414err_unpin:
f64b98cd 2415 i915_gem_object_unpin_from_display_plane(obj, &view);
b26a6b35 2416err_pm:
d6dd6843 2417 intel_runtime_pm_put(dev_priv);
48b956c5 2418 return ret;
6b95a207
KH
2419}
2420
82bc3b2d
TU
2421static void intel_unpin_fb_obj(struct drm_framebuffer *fb,
2422 const struct drm_plane_state *plane_state)
1690e1eb 2423{
82bc3b2d 2424 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2425 struct i915_ggtt_view view;
82bc3b2d 2426
ebcdd39e
MR
2427 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2428
75c82a53 2429 intel_fill_fb_ggtt_view(&view, fb, plane_state);
f64b98cd 2430
9807216f
VK
2431 if (view.type == I915_GGTT_VIEW_NORMAL)
2432 i915_gem_object_unpin_fence(obj);
2433
f64b98cd 2434 i915_gem_object_unpin_from_display_plane(obj, &view);
1690e1eb
CW
2435}
2436
c2c75131
DV
2437/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2438 * is assumed to be a power-of-two. */
4e9a86b6
VS
2439unsigned long intel_gen4_compute_page_offset(struct drm_i915_private *dev_priv,
2440 int *x, int *y,
bc752862
CW
2441 unsigned int tiling_mode,
2442 unsigned int cpp,
2443 unsigned int pitch)
c2c75131 2444{
bc752862
CW
2445 if (tiling_mode != I915_TILING_NONE) {
2446 unsigned int tile_rows, tiles;
c2c75131 2447
bc752862
CW
2448 tile_rows = *y / 8;
2449 *y %= 8;
c2c75131 2450
bc752862
CW
2451 tiles = *x / (512/cpp);
2452 *x %= 512/cpp;
2453
2454 return tile_rows * pitch * 8 + tiles * 4096;
2455 } else {
4e9a86b6 2456 unsigned int alignment = intel_linear_alignment(dev_priv) - 1;
bc752862
CW
2457 unsigned int offset;
2458
2459 offset = *y * pitch + *x * cpp;
4e9a86b6
VS
2460 *y = (offset & alignment) / pitch;
2461 *x = ((offset & alignment) - *y * pitch) / cpp;
2462 return offset & ~alignment;
bc752862 2463 }
c2c75131
DV
2464}
2465
b35d63fa 2466static int i9xx_format_to_fourcc(int format)
46f297fb
JB
2467{
2468 switch (format) {
2469 case DISPPLANE_8BPP:
2470 return DRM_FORMAT_C8;
2471 case DISPPLANE_BGRX555:
2472 return DRM_FORMAT_XRGB1555;
2473 case DISPPLANE_BGRX565:
2474 return DRM_FORMAT_RGB565;
2475 default:
2476 case DISPPLANE_BGRX888:
2477 return DRM_FORMAT_XRGB8888;
2478 case DISPPLANE_RGBX888:
2479 return DRM_FORMAT_XBGR8888;
2480 case DISPPLANE_BGRX101010:
2481 return DRM_FORMAT_XRGB2101010;
2482 case DISPPLANE_RGBX101010:
2483 return DRM_FORMAT_XBGR2101010;
2484 }
2485}
2486
bc8d7dff
DL
2487static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2488{
2489 switch (format) {
2490 case PLANE_CTL_FORMAT_RGB_565:
2491 return DRM_FORMAT_RGB565;
2492 default:
2493 case PLANE_CTL_FORMAT_XRGB_8888:
2494 if (rgb_order) {
2495 if (alpha)
2496 return DRM_FORMAT_ABGR8888;
2497 else
2498 return DRM_FORMAT_XBGR8888;
2499 } else {
2500 if (alpha)
2501 return DRM_FORMAT_ARGB8888;
2502 else
2503 return DRM_FORMAT_XRGB8888;
2504 }
2505 case PLANE_CTL_FORMAT_XRGB_2101010:
2506 if (rgb_order)
2507 return DRM_FORMAT_XBGR2101010;
2508 else
2509 return DRM_FORMAT_XRGB2101010;
2510 }
2511}
2512
5724dbd1 2513static bool
f6936e29
DV
2514intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2515 struct intel_initial_plane_config *plane_config)
46f297fb
JB
2516{
2517 struct drm_device *dev = crtc->base.dev;
3badb49f 2518 struct drm_i915_private *dev_priv = to_i915(dev);
46f297fb
JB
2519 struct drm_i915_gem_object *obj = NULL;
2520 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2d14030b 2521 struct drm_framebuffer *fb = &plane_config->fb->base;
f37b5c2b
DV
2522 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2523 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2524 PAGE_SIZE);
2525
2526 size_aligned -= base_aligned;
46f297fb 2527
ff2652ea
CW
2528 if (plane_config->size == 0)
2529 return false;
2530
3badb49f
PZ
2531 /* If the FB is too big, just don't use it since fbdev is not very
2532 * important and we should probably use that space with FBC or other
2533 * features. */
2534 if (size_aligned * 2 > dev_priv->gtt.stolen_usable_size)
2535 return false;
2536
f37b5c2b
DV
2537 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2538 base_aligned,
2539 base_aligned,
2540 size_aligned);
46f297fb 2541 if (!obj)
484b41dd 2542 return false;
46f297fb 2543
49af449b
DL
2544 obj->tiling_mode = plane_config->tiling;
2545 if (obj->tiling_mode == I915_TILING_X)
6bf129df 2546 obj->stride = fb->pitches[0];
46f297fb 2547
6bf129df
DL
2548 mode_cmd.pixel_format = fb->pixel_format;
2549 mode_cmd.width = fb->width;
2550 mode_cmd.height = fb->height;
2551 mode_cmd.pitches[0] = fb->pitches[0];
18c5247e
DV
2552 mode_cmd.modifier[0] = fb->modifier[0];
2553 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
46f297fb
JB
2554
2555 mutex_lock(&dev->struct_mutex);
6bf129df 2556 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
484b41dd 2557 &mode_cmd, obj)) {
46f297fb
JB
2558 DRM_DEBUG_KMS("intel fb init failed\n");
2559 goto out_unref_obj;
2560 }
46f297fb 2561 mutex_unlock(&dev->struct_mutex);
484b41dd 2562
f6936e29 2563 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
484b41dd 2564 return true;
46f297fb
JB
2565
2566out_unref_obj:
2567 drm_gem_object_unreference(&obj->base);
2568 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2569 return false;
2570}
2571
afd65eb4
MR
2572/* Update plane->state->fb to match plane->fb after driver-internal updates */
2573static void
2574update_state_fb(struct drm_plane *plane)
2575{
2576 if (plane->fb == plane->state->fb)
2577 return;
2578
2579 if (plane->state->fb)
2580 drm_framebuffer_unreference(plane->state->fb);
2581 plane->state->fb = plane->fb;
2582 if (plane->state->fb)
2583 drm_framebuffer_reference(plane->state->fb);
2584}
2585
5724dbd1 2586static void
f6936e29
DV
2587intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2588 struct intel_initial_plane_config *plane_config)
484b41dd
JB
2589{
2590 struct drm_device *dev = intel_crtc->base.dev;
d9ceb816 2591 struct drm_i915_private *dev_priv = dev->dev_private;
484b41dd
JB
2592 struct drm_crtc *c;
2593 struct intel_crtc *i;
2ff8fde1 2594 struct drm_i915_gem_object *obj;
88595ac9 2595 struct drm_plane *primary = intel_crtc->base.primary;
be5651f2 2596 struct drm_plane_state *plane_state = primary->state;
200757f5
MR
2597 struct drm_crtc_state *crtc_state = intel_crtc->base.state;
2598 struct intel_plane *intel_plane = to_intel_plane(primary);
0a8d8a86
MR
2599 struct intel_plane_state *intel_state =
2600 to_intel_plane_state(plane_state);
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
0a8d8a86
MR
2662 intel_state->src.x1 = plane_state->src_x;
2663 intel_state->src.y1 = plane_state->src_y;
2664 intel_state->src.x2 = plane_state->src_x + plane_state->src_w;
2665 intel_state->src.y2 = plane_state->src_y + plane_state->src_h;
2666 intel_state->dst.x1 = plane_state->crtc_x;
2667 intel_state->dst.y1 = plane_state->crtc_y;
2668 intel_state->dst.x2 = plane_state->crtc_x + plane_state->crtc_w;
2669 intel_state->dst.y2 = plane_state->crtc_y + plane_state->crtc_h;
2670
88595ac9
DV
2671 obj = intel_fb_obj(fb);
2672 if (obj->tiling_mode != I915_TILING_NONE)
2673 dev_priv->preserve_bios_swizzle = true;
2674
be5651f2
ML
2675 drm_framebuffer_reference(fb);
2676 primary->fb = primary->state->fb = fb;
36750f28 2677 primary->crtc = primary->state->crtc = &intel_crtc->base;
36750f28 2678 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
a9ff8714 2679 obj->frontbuffer_bits |= to_intel_plane(primary)->frontbuffer_bit;
46f297fb
JB
2680}
2681
a8d201af
ML
2682static void i9xx_update_primary_plane(struct drm_plane *primary,
2683 const struct intel_crtc_state *crtc_state,
2684 const struct intel_plane_state *plane_state)
81255565 2685{
a8d201af 2686 struct drm_device *dev = primary->dev;
81255565 2687 struct drm_i915_private *dev_priv = dev->dev_private;
a8d201af
ML
2688 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2689 struct drm_framebuffer *fb = plane_state->base.fb;
2690 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
81255565 2691 int plane = intel_crtc->plane;
e506a0c6 2692 unsigned long linear_offset;
a8d201af
ML
2693 int x = plane_state->src.x1 >> 16;
2694 int y = plane_state->src.y1 >> 16;
81255565 2695 u32 dspcntr;
f0f59a00 2696 i915_reg_t reg = DSPCNTR(plane);
48404c1e 2697 int pixel_size;
f45651ba 2698
c9ba6fad
VS
2699 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2700
f45651ba
VS
2701 dspcntr = DISPPLANE_GAMMA_ENABLE;
2702
fdd508a6 2703 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2704
2705 if (INTEL_INFO(dev)->gen < 4) {
2706 if (intel_crtc->pipe == PIPE_B)
2707 dspcntr |= DISPPLANE_SEL_PIPE_B;
2708
2709 /* pipesrc and dspsize control the size that is scaled from,
2710 * which should always be the user's requested size.
2711 */
2712 I915_WRITE(DSPSIZE(plane),
a8d201af
ML
2713 ((crtc_state->pipe_src_h - 1) << 16) |
2714 (crtc_state->pipe_src_w - 1));
f45651ba 2715 I915_WRITE(DSPPOS(plane), 0);
c14b0485
VS
2716 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2717 I915_WRITE(PRIMSIZE(plane),
a8d201af
ML
2718 ((crtc_state->pipe_src_h - 1) << 16) |
2719 (crtc_state->pipe_src_w - 1));
c14b0485
VS
2720 I915_WRITE(PRIMPOS(plane), 0);
2721 I915_WRITE(PRIMCNSTALPHA(plane), 0);
f45651ba 2722 }
81255565 2723
57779d06
VS
2724 switch (fb->pixel_format) {
2725 case DRM_FORMAT_C8:
81255565
JB
2726 dspcntr |= DISPPLANE_8BPP;
2727 break;
57779d06 2728 case DRM_FORMAT_XRGB1555:
57779d06 2729 dspcntr |= DISPPLANE_BGRX555;
81255565 2730 break;
57779d06
VS
2731 case DRM_FORMAT_RGB565:
2732 dspcntr |= DISPPLANE_BGRX565;
2733 break;
2734 case DRM_FORMAT_XRGB8888:
57779d06
VS
2735 dspcntr |= DISPPLANE_BGRX888;
2736 break;
2737 case DRM_FORMAT_XBGR8888:
57779d06
VS
2738 dspcntr |= DISPPLANE_RGBX888;
2739 break;
2740 case DRM_FORMAT_XRGB2101010:
57779d06
VS
2741 dspcntr |= DISPPLANE_BGRX101010;
2742 break;
2743 case DRM_FORMAT_XBGR2101010:
57779d06 2744 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
2745 break;
2746 default:
baba133a 2747 BUG();
81255565 2748 }
57779d06 2749
f45651ba
VS
2750 if (INTEL_INFO(dev)->gen >= 4 &&
2751 obj->tiling_mode != I915_TILING_NONE)
2752 dspcntr |= DISPPLANE_TILED;
81255565 2753
de1aa629
VS
2754 if (IS_G4X(dev))
2755 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2756
b9897127 2757 linear_offset = y * fb->pitches[0] + x * pixel_size;
81255565 2758
c2c75131
DV
2759 if (INTEL_INFO(dev)->gen >= 4) {
2760 intel_crtc->dspaddr_offset =
4e9a86b6
VS
2761 intel_gen4_compute_page_offset(dev_priv,
2762 &x, &y, obj->tiling_mode,
b9897127 2763 pixel_size,
bc752862 2764 fb->pitches[0]);
c2c75131
DV
2765 linear_offset -= intel_crtc->dspaddr_offset;
2766 } else {
e506a0c6 2767 intel_crtc->dspaddr_offset = linear_offset;
c2c75131 2768 }
e506a0c6 2769
a8d201af 2770 if (plane_state->base.rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2771 dspcntr |= DISPPLANE_ROTATE_180;
2772
a8d201af
ML
2773 x += (crtc_state->pipe_src_w - 1);
2774 y += (crtc_state->pipe_src_h - 1);
48404c1e
SJ
2775
2776 /* Finding the last pixel of the last line of the display
2777 data and adding to linear_offset*/
2778 linear_offset +=
a8d201af
ML
2779 (crtc_state->pipe_src_h - 1) * fb->pitches[0] +
2780 (crtc_state->pipe_src_w - 1) * pixel_size;
48404c1e
SJ
2781 }
2782
2db3366b
PZ
2783 intel_crtc->adjusted_x = x;
2784 intel_crtc->adjusted_y = y;
2785
48404c1e
SJ
2786 I915_WRITE(reg, dspcntr);
2787
01f2c773 2788 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
a6c45cf0 2789 if (INTEL_INFO(dev)->gen >= 4) {
85ba7b7d
DV
2790 I915_WRITE(DSPSURF(plane),
2791 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
5eddb70b 2792 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 2793 I915_WRITE(DSPLINOFF(plane), linear_offset);
5eddb70b 2794 } else
f343c5f6 2795 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
5eddb70b 2796 POSTING_READ(reg);
17638cd6
JB
2797}
2798
a8d201af
ML
2799static void i9xx_disable_primary_plane(struct drm_plane *primary,
2800 struct drm_crtc *crtc)
17638cd6
JB
2801{
2802 struct drm_device *dev = crtc->dev;
2803 struct drm_i915_private *dev_priv = dev->dev_private;
2804 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
17638cd6 2805 int plane = intel_crtc->plane;
f45651ba 2806
a8d201af
ML
2807 I915_WRITE(DSPCNTR(plane), 0);
2808 if (INTEL_INFO(dev_priv)->gen >= 4)
fdd508a6 2809 I915_WRITE(DSPSURF(plane), 0);
a8d201af
ML
2810 else
2811 I915_WRITE(DSPADDR(plane), 0);
2812 POSTING_READ(DSPCNTR(plane));
2813}
c9ba6fad 2814
a8d201af
ML
2815static void ironlake_update_primary_plane(struct drm_plane *primary,
2816 const struct intel_crtc_state *crtc_state,
2817 const struct intel_plane_state *plane_state)
2818{
2819 struct drm_device *dev = primary->dev;
2820 struct drm_i915_private *dev_priv = dev->dev_private;
2821 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2822 struct drm_framebuffer *fb = plane_state->base.fb;
2823 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
2824 int plane = intel_crtc->plane;
2825 unsigned long linear_offset;
2826 u32 dspcntr;
2827 i915_reg_t reg = DSPCNTR(plane);
2828 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2829 int x = plane_state->src.x1 >> 16;
2830 int y = plane_state->src.y1 >> 16;
c9ba6fad 2831
f45651ba 2832 dspcntr = DISPPLANE_GAMMA_ENABLE;
fdd508a6 2833 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2834
2835 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2836 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
17638cd6 2837
57779d06
VS
2838 switch (fb->pixel_format) {
2839 case DRM_FORMAT_C8:
17638cd6
JB
2840 dspcntr |= DISPPLANE_8BPP;
2841 break;
57779d06
VS
2842 case DRM_FORMAT_RGB565:
2843 dspcntr |= DISPPLANE_BGRX565;
17638cd6 2844 break;
57779d06 2845 case DRM_FORMAT_XRGB8888:
57779d06
VS
2846 dspcntr |= DISPPLANE_BGRX888;
2847 break;
2848 case DRM_FORMAT_XBGR8888:
57779d06
VS
2849 dspcntr |= DISPPLANE_RGBX888;
2850 break;
2851 case DRM_FORMAT_XRGB2101010:
57779d06
VS
2852 dspcntr |= DISPPLANE_BGRX101010;
2853 break;
2854 case DRM_FORMAT_XBGR2101010:
57779d06 2855 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
2856 break;
2857 default:
baba133a 2858 BUG();
17638cd6
JB
2859 }
2860
2861 if (obj->tiling_mode != I915_TILING_NONE)
2862 dspcntr |= DISPPLANE_TILED;
17638cd6 2863
f45651ba 2864 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
1f5d76db 2865 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
17638cd6 2866
b9897127 2867 linear_offset = y * fb->pitches[0] + x * pixel_size;
c2c75131 2868 intel_crtc->dspaddr_offset =
4e9a86b6
VS
2869 intel_gen4_compute_page_offset(dev_priv,
2870 &x, &y, obj->tiling_mode,
b9897127 2871 pixel_size,
bc752862 2872 fb->pitches[0]);
c2c75131 2873 linear_offset -= intel_crtc->dspaddr_offset;
a8d201af 2874 if (plane_state->base.rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2875 dspcntr |= DISPPLANE_ROTATE_180;
2876
2877 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
a8d201af
ML
2878 x += (crtc_state->pipe_src_w - 1);
2879 y += (crtc_state->pipe_src_h - 1);
48404c1e
SJ
2880
2881 /* Finding the last pixel of the last line of the display
2882 data and adding to linear_offset*/
2883 linear_offset +=
a8d201af
ML
2884 (crtc_state->pipe_src_h - 1) * fb->pitches[0] +
2885 (crtc_state->pipe_src_w - 1) * pixel_size;
48404c1e
SJ
2886 }
2887 }
2888
2db3366b
PZ
2889 intel_crtc->adjusted_x = x;
2890 intel_crtc->adjusted_y = y;
2891
48404c1e 2892 I915_WRITE(reg, dspcntr);
17638cd6 2893
01f2c773 2894 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
85ba7b7d
DV
2895 I915_WRITE(DSPSURF(plane),
2896 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
b3dc685e 2897 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
bc1c91eb
DL
2898 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2899 } else {
2900 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2901 I915_WRITE(DSPLINOFF(plane), linear_offset);
2902 }
17638cd6 2903 POSTING_READ(reg);
17638cd6
JB
2904}
2905
b321803d
DL
2906u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2907 uint32_t pixel_format)
2908{
2909 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2910
2911 /*
2912 * The stride is either expressed as a multiple of 64 bytes
2913 * chunks for linear buffers or in number of tiles for tiled
2914 * buffers.
2915 */
2916 switch (fb_modifier) {
2917 case DRM_FORMAT_MOD_NONE:
2918 return 64;
2919 case I915_FORMAT_MOD_X_TILED:
2920 if (INTEL_INFO(dev)->gen == 2)
2921 return 128;
2922 return 512;
2923 case I915_FORMAT_MOD_Y_TILED:
2924 /* No need to check for old gens and Y tiling since this is
2925 * about the display engine and those will be blocked before
2926 * we get here.
2927 */
2928 return 128;
2929 case I915_FORMAT_MOD_Yf_TILED:
2930 if (bits_per_pixel == 8)
2931 return 64;
2932 else
2933 return 128;
2934 default:
2935 MISSING_CASE(fb_modifier);
2936 return 64;
2937 }
2938}
2939
44eb0cb9
MK
2940u32 intel_plane_obj_offset(struct intel_plane *intel_plane,
2941 struct drm_i915_gem_object *obj,
2942 unsigned int plane)
121920fa 2943{
ce7f1728 2944 struct i915_ggtt_view view;
dedf278c 2945 struct i915_vma *vma;
44eb0cb9 2946 u64 offset;
121920fa 2947
ce7f1728
DV
2948 intel_fill_fb_ggtt_view(&view, intel_plane->base.fb,
2949 intel_plane->base.state);
121920fa 2950
ce7f1728 2951 vma = i915_gem_obj_to_ggtt_view(obj, &view);
dedf278c 2952 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
ce7f1728 2953 view.type))
dedf278c
TU
2954 return -1;
2955
44eb0cb9 2956 offset = vma->node.start;
dedf278c
TU
2957
2958 if (plane == 1) {
a6d09186 2959 offset += vma->ggtt_view.params.rotation_info.uv_start_page *
dedf278c
TU
2960 PAGE_SIZE;
2961 }
2962
44eb0cb9
MK
2963 WARN_ON(upper_32_bits(offset));
2964
2965 return lower_32_bits(offset);
121920fa
TU
2966}
2967
e435d6e5
ML
2968static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
2969{
2970 struct drm_device *dev = intel_crtc->base.dev;
2971 struct drm_i915_private *dev_priv = dev->dev_private;
2972
2973 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
2974 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
2975 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
e435d6e5
ML
2976}
2977
a1b2278e
CK
2978/*
2979 * This function detaches (aka. unbinds) unused scalers in hardware
2980 */
0583236e 2981static void skl_detach_scalers(struct intel_crtc *intel_crtc)
a1b2278e 2982{
a1b2278e
CK
2983 struct intel_crtc_scaler_state *scaler_state;
2984 int i;
2985
a1b2278e
CK
2986 scaler_state = &intel_crtc->config->scaler_state;
2987
2988 /* loop through and disable scalers that aren't in use */
2989 for (i = 0; i < intel_crtc->num_scalers; i++) {
e435d6e5
ML
2990 if (!scaler_state->scalers[i].in_use)
2991 skl_detach_scaler(intel_crtc, i);
a1b2278e
CK
2992 }
2993}
2994
6156a456 2995u32 skl_plane_ctl_format(uint32_t pixel_format)
70d21f0e 2996{
6156a456 2997 switch (pixel_format) {
d161cf7a 2998 case DRM_FORMAT_C8:
c34ce3d1 2999 return PLANE_CTL_FORMAT_INDEXED;
70d21f0e 3000 case DRM_FORMAT_RGB565:
c34ce3d1 3001 return PLANE_CTL_FORMAT_RGB_565;
70d21f0e 3002 case DRM_FORMAT_XBGR8888:
c34ce3d1 3003 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
6156a456 3004 case DRM_FORMAT_XRGB8888:
c34ce3d1 3005 return PLANE_CTL_FORMAT_XRGB_8888;
6156a456
CK
3006 /*
3007 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
3008 * to be already pre-multiplied. We need to add a knob (or a different
3009 * DRM_FORMAT) for user-space to configure that.
3010 */
f75fb42a 3011 case DRM_FORMAT_ABGR8888:
c34ce3d1 3012 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
6156a456 3013 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
6156a456 3014 case DRM_FORMAT_ARGB8888:
c34ce3d1 3015 return PLANE_CTL_FORMAT_XRGB_8888 |
6156a456 3016 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
70d21f0e 3017 case DRM_FORMAT_XRGB2101010:
c34ce3d1 3018 return PLANE_CTL_FORMAT_XRGB_2101010;
70d21f0e 3019 case DRM_FORMAT_XBGR2101010:
c34ce3d1 3020 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
6156a456 3021 case DRM_FORMAT_YUYV:
c34ce3d1 3022 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
6156a456 3023 case DRM_FORMAT_YVYU:
c34ce3d1 3024 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
6156a456 3025 case DRM_FORMAT_UYVY:
c34ce3d1 3026 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
6156a456 3027 case DRM_FORMAT_VYUY:
c34ce3d1 3028 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
70d21f0e 3029 default:
4249eeef 3030 MISSING_CASE(pixel_format);
70d21f0e 3031 }
8cfcba41 3032
c34ce3d1 3033 return 0;
6156a456 3034}
70d21f0e 3035
6156a456
CK
3036u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
3037{
6156a456 3038 switch (fb_modifier) {
30af77c4 3039 case DRM_FORMAT_MOD_NONE:
70d21f0e 3040 break;
30af77c4 3041 case I915_FORMAT_MOD_X_TILED:
c34ce3d1 3042 return PLANE_CTL_TILED_X;
b321803d 3043 case I915_FORMAT_MOD_Y_TILED:
c34ce3d1 3044 return PLANE_CTL_TILED_Y;
b321803d 3045 case I915_FORMAT_MOD_Yf_TILED:
c34ce3d1 3046 return PLANE_CTL_TILED_YF;
70d21f0e 3047 default:
6156a456 3048 MISSING_CASE(fb_modifier);
70d21f0e 3049 }
8cfcba41 3050
c34ce3d1 3051 return 0;
6156a456 3052}
70d21f0e 3053
6156a456
CK
3054u32 skl_plane_ctl_rotation(unsigned int rotation)
3055{
3b7a5119 3056 switch (rotation) {
6156a456
CK
3057 case BIT(DRM_ROTATE_0):
3058 break;
1e8df167
SJ
3059 /*
3060 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
3061 * while i915 HW rotation is clockwise, thats why this swapping.
3062 */
3b7a5119 3063 case BIT(DRM_ROTATE_90):
1e8df167 3064 return PLANE_CTL_ROTATE_270;
3b7a5119 3065 case BIT(DRM_ROTATE_180):
c34ce3d1 3066 return PLANE_CTL_ROTATE_180;
3b7a5119 3067 case BIT(DRM_ROTATE_270):
1e8df167 3068 return PLANE_CTL_ROTATE_90;
6156a456
CK
3069 default:
3070 MISSING_CASE(rotation);
3071 }
3072
c34ce3d1 3073 return 0;
6156a456
CK
3074}
3075
a8d201af
ML
3076static void skylake_update_primary_plane(struct drm_plane *plane,
3077 const struct intel_crtc_state *crtc_state,
3078 const struct intel_plane_state *plane_state)
6156a456 3079{
a8d201af 3080 struct drm_device *dev = plane->dev;
6156a456 3081 struct drm_i915_private *dev_priv = dev->dev_private;
a8d201af
ML
3082 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3083 struct drm_framebuffer *fb = plane_state->base.fb;
3084 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
6156a456
CK
3085 int pipe = intel_crtc->pipe;
3086 u32 plane_ctl, stride_div, stride;
3087 u32 tile_height, plane_offset, plane_size;
a8d201af 3088 unsigned int rotation = plane_state->base.rotation;
6156a456 3089 int x_offset, y_offset;
44eb0cb9 3090 u32 surf_addr;
a8d201af
ML
3091 int scaler_id = plane_state->scaler_id;
3092 int src_x = plane_state->src.x1 >> 16;
3093 int src_y = plane_state->src.y1 >> 16;
3094 int src_w = drm_rect_width(&plane_state->src) >> 16;
3095 int src_h = drm_rect_height(&plane_state->src) >> 16;
3096 int dst_x = plane_state->dst.x1;
3097 int dst_y = plane_state->dst.y1;
3098 int dst_w = drm_rect_width(&plane_state->dst);
3099 int dst_h = drm_rect_height(&plane_state->dst);
70d21f0e 3100
6156a456
CK
3101 plane_ctl = PLANE_CTL_ENABLE |
3102 PLANE_CTL_PIPE_GAMMA_ENABLE |
3103 PLANE_CTL_PIPE_CSC_ENABLE;
3104
3105 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3106 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
3107 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
6156a456
CK
3108 plane_ctl |= skl_plane_ctl_rotation(rotation);
3109
b321803d
DL
3110 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
3111 fb->pixel_format);
dedf278c 3112 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0);
3b7a5119 3113
a42e5a23
PZ
3114 WARN_ON(drm_rect_width(&plane_state->src) == 0);
3115
3b7a5119
SJ
3116 if (intel_rotation_90_or_270(rotation)) {
3117 /* stride = Surface height in tiles */
2614f17d 3118 tile_height = intel_tile_height(dev, fb->pixel_format,
fe47ea0c 3119 fb->modifier[0], 0);
3b7a5119 3120 stride = DIV_ROUND_UP(fb->height, tile_height);
a8d201af
ML
3121 x_offset = stride * tile_height - src_y - src_h;
3122 y_offset = src_x;
6156a456 3123 plane_size = (src_w - 1) << 16 | (src_h - 1);
3b7a5119
SJ
3124 } else {
3125 stride = fb->pitches[0] / stride_div;
a8d201af
ML
3126 x_offset = src_x;
3127 y_offset = src_y;
6156a456 3128 plane_size = (src_h - 1) << 16 | (src_w - 1);
3b7a5119
SJ
3129 }
3130 plane_offset = y_offset << 16 | x_offset;
b321803d 3131
2db3366b
PZ
3132 intel_crtc->adjusted_x = x_offset;
3133 intel_crtc->adjusted_y = y_offset;
3134
70d21f0e 3135 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
3b7a5119
SJ
3136 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3137 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3138 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
6156a456
CK
3139
3140 if (scaler_id >= 0) {
3141 uint32_t ps_ctrl = 0;
3142
3143 WARN_ON(!dst_w || !dst_h);
3144 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3145 crtc_state->scaler_state.scalers[scaler_id].mode;
3146 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3147 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3148 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3149 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3150 I915_WRITE(PLANE_POS(pipe, 0), 0);
3151 } else {
3152 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3153 }
3154
121920fa 3155 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
70d21f0e
DL
3156
3157 POSTING_READ(PLANE_SURF(pipe, 0));
3158}
3159
a8d201af
ML
3160static void skylake_disable_primary_plane(struct drm_plane *primary,
3161 struct drm_crtc *crtc)
17638cd6
JB
3162{
3163 struct drm_device *dev = crtc->dev;
3164 struct drm_i915_private *dev_priv = dev->dev_private;
a8d201af 3165 int pipe = to_intel_crtc(crtc)->pipe;
17638cd6 3166
0e631adc
PZ
3167 if (dev_priv->fbc.deactivate)
3168 dev_priv->fbc.deactivate(dev_priv);
81255565 3169
a8d201af
ML
3170 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3171 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3172 POSTING_READ(PLANE_SURF(pipe, 0));
3173}
29b9bde6 3174
a8d201af
ML
3175/* Assume fb object is pinned & idle & fenced and just update base pointers */
3176static int
3177intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3178 int x, int y, enum mode_set_atomic state)
3179{
3180 /* Support for kgdboc is disabled, this needs a major rework. */
3181 DRM_ERROR("legacy panic handler not supported any more.\n");
3182
3183 return -ENODEV;
81255565
JB
3184}
3185
7514747d 3186static void intel_complete_page_flips(struct drm_device *dev)
96a02917 3187{
96a02917
VS
3188 struct drm_crtc *crtc;
3189
70e1e0ec 3190 for_each_crtc(dev, crtc) {
96a02917
VS
3191 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3192 enum plane plane = intel_crtc->plane;
3193
3194 intel_prepare_page_flip(dev, plane);
3195 intel_finish_page_flip_plane(dev, plane);
3196 }
7514747d
VS
3197}
3198
3199static void intel_update_primary_planes(struct drm_device *dev)
3200{
7514747d 3201 struct drm_crtc *crtc;
96a02917 3202
70e1e0ec 3203 for_each_crtc(dev, crtc) {
11c22da6
ML
3204 struct intel_plane *plane = to_intel_plane(crtc->primary);
3205 struct intel_plane_state *plane_state;
96a02917 3206
11c22da6 3207 drm_modeset_lock_crtc(crtc, &plane->base);
11c22da6
ML
3208 plane_state = to_intel_plane_state(plane->base.state);
3209
a8d201af
ML
3210 if (plane_state->visible)
3211 plane->update_plane(&plane->base,
3212 to_intel_crtc_state(crtc->state),
3213 plane_state);
11c22da6
ML
3214
3215 drm_modeset_unlock_crtc(crtc);
96a02917
VS
3216 }
3217}
3218
7514747d
VS
3219void intel_prepare_reset(struct drm_device *dev)
3220{
3221 /* no reset support for gen2 */
3222 if (IS_GEN2(dev))
3223 return;
3224
3225 /* reset doesn't touch the display */
3226 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
3227 return;
3228
3229 drm_modeset_lock_all(dev);
f98ce92f
VS
3230 /*
3231 * Disabling the crtcs gracefully seems nicer. Also the
3232 * g33 docs say we should at least disable all the planes.
3233 */
6b72d486 3234 intel_display_suspend(dev);
7514747d
VS
3235}
3236
3237void intel_finish_reset(struct drm_device *dev)
3238{
3239 struct drm_i915_private *dev_priv = to_i915(dev);
3240
3241 /*
3242 * Flips in the rings will be nuked by the reset,
3243 * so complete all pending flips so that user space
3244 * will get its events and not get stuck.
3245 */
3246 intel_complete_page_flips(dev);
3247
3248 /* no reset support for gen2 */
3249 if (IS_GEN2(dev))
3250 return;
3251
3252 /* reset doesn't touch the display */
3253 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
3254 /*
3255 * Flips in the rings have been nuked by the reset,
3256 * so update the base address of all primary
3257 * planes to the the last fb to make sure we're
3258 * showing the correct fb after a reset.
11c22da6
ML
3259 *
3260 * FIXME: Atomic will make this obsolete since we won't schedule
3261 * CS-based flips (which might get lost in gpu resets) any more.
7514747d
VS
3262 */
3263 intel_update_primary_planes(dev);
3264 return;
3265 }
3266
3267 /*
3268 * The display has been reset as well,
3269 * so need a full re-initialization.
3270 */
3271 intel_runtime_pm_disable_interrupts(dev_priv);
3272 intel_runtime_pm_enable_interrupts(dev_priv);
3273
3274 intel_modeset_init_hw(dev);
3275
3276 spin_lock_irq(&dev_priv->irq_lock);
3277 if (dev_priv->display.hpd_irq_setup)
3278 dev_priv->display.hpd_irq_setup(dev);
3279 spin_unlock_irq(&dev_priv->irq_lock);
3280
043e9bda 3281 intel_display_resume(dev);
7514747d
VS
3282
3283 intel_hpd_init(dev_priv);
3284
3285 drm_modeset_unlock_all(dev);
3286}
3287
7d5e3799
CW
3288static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3289{
3290 struct drm_device *dev = crtc->dev;
3291 struct drm_i915_private *dev_priv = dev->dev_private;
3292 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7d5e3799
CW
3293 bool pending;
3294
3295 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3296 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3297 return false;
3298
5e2d7afc 3299 spin_lock_irq(&dev->event_lock);
7d5e3799 3300 pending = to_intel_crtc(crtc)->unpin_work != NULL;
5e2d7afc 3301 spin_unlock_irq(&dev->event_lock);
7d5e3799
CW
3302
3303 return pending;
3304}
3305
bfd16b2a
ML
3306static void intel_update_pipe_config(struct intel_crtc *crtc,
3307 struct intel_crtc_state *old_crtc_state)
e30e8f75
GP
3308{
3309 struct drm_device *dev = crtc->base.dev;
3310 struct drm_i915_private *dev_priv = dev->dev_private;
bfd16b2a
ML
3311 struct intel_crtc_state *pipe_config =
3312 to_intel_crtc_state(crtc->base.state);
e30e8f75 3313
bfd16b2a
ML
3314 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3315 crtc->base.mode = crtc->base.state->mode;
3316
3317 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3318 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3319 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
e30e8f75 3320
44522d85
ML
3321 if (HAS_DDI(dev))
3322 intel_set_pipe_csc(&crtc->base);
3323
e30e8f75
GP
3324 /*
3325 * Update pipe size and adjust fitter if needed: the reason for this is
3326 * that in compute_mode_changes we check the native mode (not the pfit
3327 * mode) to see if we can flip rather than do a full mode set. In the
3328 * fastboot case, we'll flip, but if we don't update the pipesrc and
3329 * pfit state, we'll end up with a big fb scanned out into the wrong
3330 * sized surface.
e30e8f75
GP
3331 */
3332
e30e8f75 3333 I915_WRITE(PIPESRC(crtc->pipe),
bfd16b2a
ML
3334 ((pipe_config->pipe_src_w - 1) << 16) |
3335 (pipe_config->pipe_src_h - 1));
3336
3337 /* on skylake this is done by detaching scalers */
3338 if (INTEL_INFO(dev)->gen >= 9) {
3339 skl_detach_scalers(crtc);
3340
3341 if (pipe_config->pch_pfit.enabled)
3342 skylake_pfit_enable(crtc);
3343 } else if (HAS_PCH_SPLIT(dev)) {
3344 if (pipe_config->pch_pfit.enabled)
3345 ironlake_pfit_enable(crtc);
3346 else if (old_crtc_state->pch_pfit.enabled)
3347 ironlake_pfit_disable(crtc, true);
e30e8f75 3348 }
e30e8f75
GP
3349}
3350
5e84e1a4
ZW
3351static void intel_fdi_normal_train(struct drm_crtc *crtc)
3352{
3353 struct drm_device *dev = crtc->dev;
3354 struct drm_i915_private *dev_priv = dev->dev_private;
3355 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3356 int pipe = intel_crtc->pipe;
f0f59a00
VS
3357 i915_reg_t reg;
3358 u32 temp;
5e84e1a4
ZW
3359
3360 /* enable normal train */
3361 reg = FDI_TX_CTL(pipe);
3362 temp = I915_READ(reg);
61e499bf 3363 if (IS_IVYBRIDGE(dev)) {
357555c0
JB
3364 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3365 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
3366 } else {
3367 temp &= ~FDI_LINK_TRAIN_NONE;
3368 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 3369 }
5e84e1a4
ZW
3370 I915_WRITE(reg, temp);
3371
3372 reg = FDI_RX_CTL(pipe);
3373 temp = I915_READ(reg);
3374 if (HAS_PCH_CPT(dev)) {
3375 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3376 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3377 } else {
3378 temp &= ~FDI_LINK_TRAIN_NONE;
3379 temp |= FDI_LINK_TRAIN_NONE;
3380 }
3381 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3382
3383 /* wait one idle pattern time */
3384 POSTING_READ(reg);
3385 udelay(1000);
357555c0
JB
3386
3387 /* IVB wants error correction enabled */
3388 if (IS_IVYBRIDGE(dev))
3389 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3390 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
3391}
3392
8db9d77b
ZW
3393/* The FDI link training functions for ILK/Ibexpeak. */
3394static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3395{
3396 struct drm_device *dev = crtc->dev;
3397 struct drm_i915_private *dev_priv = dev->dev_private;
3398 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3399 int pipe = intel_crtc->pipe;
f0f59a00
VS
3400 i915_reg_t reg;
3401 u32 temp, tries;
8db9d77b 3402
1c8562f6 3403 /* FDI needs bits from pipe first */
0fc932b8 3404 assert_pipe_enabled(dev_priv, pipe);
0fc932b8 3405
e1a44743
AJ
3406 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3407 for train result */
5eddb70b
CW
3408 reg = FDI_RX_IMR(pipe);
3409 temp = I915_READ(reg);
e1a44743
AJ
3410 temp &= ~FDI_RX_SYMBOL_LOCK;
3411 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3412 I915_WRITE(reg, temp);
3413 I915_READ(reg);
e1a44743
AJ
3414 udelay(150);
3415
8db9d77b 3416 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3417 reg = FDI_TX_CTL(pipe);
3418 temp = I915_READ(reg);
627eb5a3 3419 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3420 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3421 temp &= ~FDI_LINK_TRAIN_NONE;
3422 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 3423 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3424
5eddb70b
CW
3425 reg = FDI_RX_CTL(pipe);
3426 temp = I915_READ(reg);
8db9d77b
ZW
3427 temp &= ~FDI_LINK_TRAIN_NONE;
3428 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
3429 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3430
3431 POSTING_READ(reg);
8db9d77b
ZW
3432 udelay(150);
3433
5b2adf89 3434 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
3435 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3436 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3437 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 3438
5eddb70b 3439 reg = FDI_RX_IIR(pipe);
e1a44743 3440 for (tries = 0; tries < 5; tries++) {
5eddb70b 3441 temp = I915_READ(reg);
8db9d77b
ZW
3442 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3443
3444 if ((temp & FDI_RX_BIT_LOCK)) {
3445 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 3446 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
3447 break;
3448 }
8db9d77b 3449 }
e1a44743 3450 if (tries == 5)
5eddb70b 3451 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3452
3453 /* Train 2 */
5eddb70b
CW
3454 reg = FDI_TX_CTL(pipe);
3455 temp = I915_READ(reg);
8db9d77b
ZW
3456 temp &= ~FDI_LINK_TRAIN_NONE;
3457 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3458 I915_WRITE(reg, temp);
8db9d77b 3459
5eddb70b
CW
3460 reg = FDI_RX_CTL(pipe);
3461 temp = I915_READ(reg);
8db9d77b
ZW
3462 temp &= ~FDI_LINK_TRAIN_NONE;
3463 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3464 I915_WRITE(reg, temp);
8db9d77b 3465
5eddb70b
CW
3466 POSTING_READ(reg);
3467 udelay(150);
8db9d77b 3468
5eddb70b 3469 reg = FDI_RX_IIR(pipe);
e1a44743 3470 for (tries = 0; tries < 5; tries++) {
5eddb70b 3471 temp = I915_READ(reg);
8db9d77b
ZW
3472 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3473
3474 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 3475 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
3476 DRM_DEBUG_KMS("FDI train 2 done.\n");
3477 break;
3478 }
8db9d77b 3479 }
e1a44743 3480 if (tries == 5)
5eddb70b 3481 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3482
3483 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 3484
8db9d77b
ZW
3485}
3486
0206e353 3487static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
3488 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3489 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3490 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3491 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3492};
3493
3494/* The FDI link training functions for SNB/Cougarpoint. */
3495static void gen6_fdi_link_train(struct drm_crtc *crtc)
3496{
3497 struct drm_device *dev = crtc->dev;
3498 struct drm_i915_private *dev_priv = dev->dev_private;
3499 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3500 int pipe = intel_crtc->pipe;
f0f59a00
VS
3501 i915_reg_t reg;
3502 u32 temp, i, retry;
8db9d77b 3503
e1a44743
AJ
3504 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3505 for train result */
5eddb70b
CW
3506 reg = FDI_RX_IMR(pipe);
3507 temp = I915_READ(reg);
e1a44743
AJ
3508 temp &= ~FDI_RX_SYMBOL_LOCK;
3509 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3510 I915_WRITE(reg, temp);
3511
3512 POSTING_READ(reg);
e1a44743
AJ
3513 udelay(150);
3514
8db9d77b 3515 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3516 reg = FDI_TX_CTL(pipe);
3517 temp = I915_READ(reg);
627eb5a3 3518 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3519 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3520 temp &= ~FDI_LINK_TRAIN_NONE;
3521 temp |= FDI_LINK_TRAIN_PATTERN_1;
3522 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3523 /* SNB-B */
3524 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 3525 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3526
d74cf324
DV
3527 I915_WRITE(FDI_RX_MISC(pipe),
3528 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3529
5eddb70b
CW
3530 reg = FDI_RX_CTL(pipe);
3531 temp = I915_READ(reg);
8db9d77b
ZW
3532 if (HAS_PCH_CPT(dev)) {
3533 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3534 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3535 } else {
3536 temp &= ~FDI_LINK_TRAIN_NONE;
3537 temp |= FDI_LINK_TRAIN_PATTERN_1;
3538 }
5eddb70b
CW
3539 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3540
3541 POSTING_READ(reg);
8db9d77b
ZW
3542 udelay(150);
3543
0206e353 3544 for (i = 0; i < 4; i++) {
5eddb70b
CW
3545 reg = FDI_TX_CTL(pipe);
3546 temp = I915_READ(reg);
8db9d77b
ZW
3547 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3548 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3549 I915_WRITE(reg, temp);
3550
3551 POSTING_READ(reg);
8db9d77b
ZW
3552 udelay(500);
3553
fa37d39e
SP
3554 for (retry = 0; retry < 5; retry++) {
3555 reg = FDI_RX_IIR(pipe);
3556 temp = I915_READ(reg);
3557 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3558 if (temp & FDI_RX_BIT_LOCK) {
3559 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3560 DRM_DEBUG_KMS("FDI train 1 done.\n");
3561 break;
3562 }
3563 udelay(50);
8db9d77b 3564 }
fa37d39e
SP
3565 if (retry < 5)
3566 break;
8db9d77b
ZW
3567 }
3568 if (i == 4)
5eddb70b 3569 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3570
3571 /* Train 2 */
5eddb70b
CW
3572 reg = FDI_TX_CTL(pipe);
3573 temp = I915_READ(reg);
8db9d77b
ZW
3574 temp &= ~FDI_LINK_TRAIN_NONE;
3575 temp |= FDI_LINK_TRAIN_PATTERN_2;
3576 if (IS_GEN6(dev)) {
3577 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3578 /* SNB-B */
3579 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3580 }
5eddb70b 3581 I915_WRITE(reg, temp);
8db9d77b 3582
5eddb70b
CW
3583 reg = FDI_RX_CTL(pipe);
3584 temp = I915_READ(reg);
8db9d77b
ZW
3585 if (HAS_PCH_CPT(dev)) {
3586 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3587 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3588 } else {
3589 temp &= ~FDI_LINK_TRAIN_NONE;
3590 temp |= FDI_LINK_TRAIN_PATTERN_2;
3591 }
5eddb70b
CW
3592 I915_WRITE(reg, temp);
3593
3594 POSTING_READ(reg);
8db9d77b
ZW
3595 udelay(150);
3596
0206e353 3597 for (i = 0; i < 4; i++) {
5eddb70b
CW
3598 reg = FDI_TX_CTL(pipe);
3599 temp = I915_READ(reg);
8db9d77b
ZW
3600 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3601 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3602 I915_WRITE(reg, temp);
3603
3604 POSTING_READ(reg);
8db9d77b
ZW
3605 udelay(500);
3606
fa37d39e
SP
3607 for (retry = 0; retry < 5; retry++) {
3608 reg = FDI_RX_IIR(pipe);
3609 temp = I915_READ(reg);
3610 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3611 if (temp & FDI_RX_SYMBOL_LOCK) {
3612 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3613 DRM_DEBUG_KMS("FDI train 2 done.\n");
3614 break;
3615 }
3616 udelay(50);
8db9d77b 3617 }
fa37d39e
SP
3618 if (retry < 5)
3619 break;
8db9d77b
ZW
3620 }
3621 if (i == 4)
5eddb70b 3622 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3623
3624 DRM_DEBUG_KMS("FDI train done.\n");
3625}
3626
357555c0
JB
3627/* Manual link training for Ivy Bridge A0 parts */
3628static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3629{
3630 struct drm_device *dev = crtc->dev;
3631 struct drm_i915_private *dev_priv = dev->dev_private;
3632 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3633 int pipe = intel_crtc->pipe;
f0f59a00
VS
3634 i915_reg_t reg;
3635 u32 temp, i, j;
357555c0
JB
3636
3637 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3638 for train result */
3639 reg = FDI_RX_IMR(pipe);
3640 temp = I915_READ(reg);
3641 temp &= ~FDI_RX_SYMBOL_LOCK;
3642 temp &= ~FDI_RX_BIT_LOCK;
3643 I915_WRITE(reg, temp);
3644
3645 POSTING_READ(reg);
3646 udelay(150);
3647
01a415fd
DV
3648 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3649 I915_READ(FDI_RX_IIR(pipe)));
3650
139ccd3f
JB
3651 /* Try each vswing and preemphasis setting twice before moving on */
3652 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3653 /* disable first in case we need to retry */
3654 reg = FDI_TX_CTL(pipe);
3655 temp = I915_READ(reg);
3656 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3657 temp &= ~FDI_TX_ENABLE;
3658 I915_WRITE(reg, temp);
357555c0 3659
139ccd3f
JB
3660 reg = FDI_RX_CTL(pipe);
3661 temp = I915_READ(reg);
3662 temp &= ~FDI_LINK_TRAIN_AUTO;
3663 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3664 temp &= ~FDI_RX_ENABLE;
3665 I915_WRITE(reg, temp);
357555c0 3666
139ccd3f 3667 /* enable CPU FDI TX and PCH FDI RX */
357555c0
JB
3668 reg = FDI_TX_CTL(pipe);
3669 temp = I915_READ(reg);
139ccd3f 3670 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3671 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
139ccd3f 3672 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
357555c0 3673 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
139ccd3f
JB
3674 temp |= snb_b_fdi_train_param[j/2];
3675 temp |= FDI_COMPOSITE_SYNC;
3676 I915_WRITE(reg, temp | FDI_TX_ENABLE);
357555c0 3677
139ccd3f
JB
3678 I915_WRITE(FDI_RX_MISC(pipe),
3679 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
357555c0 3680
139ccd3f 3681 reg = FDI_RX_CTL(pipe);
357555c0 3682 temp = I915_READ(reg);
139ccd3f
JB
3683 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3684 temp |= FDI_COMPOSITE_SYNC;
3685 I915_WRITE(reg, temp | FDI_RX_ENABLE);
357555c0 3686
139ccd3f
JB
3687 POSTING_READ(reg);
3688 udelay(1); /* should be 0.5us */
357555c0 3689
139ccd3f
JB
3690 for (i = 0; i < 4; i++) {
3691 reg = FDI_RX_IIR(pipe);
3692 temp = I915_READ(reg);
3693 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3694
139ccd3f
JB
3695 if (temp & FDI_RX_BIT_LOCK ||
3696 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3697 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3698 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3699 i);
3700 break;
3701 }
3702 udelay(1); /* should be 0.5us */
3703 }
3704 if (i == 4) {
3705 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3706 continue;
3707 }
357555c0 3708
139ccd3f 3709 /* Train 2 */
357555c0
JB
3710 reg = FDI_TX_CTL(pipe);
3711 temp = I915_READ(reg);
139ccd3f
JB
3712 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3713 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3714 I915_WRITE(reg, temp);
3715
3716 reg = FDI_RX_CTL(pipe);
3717 temp = I915_READ(reg);
3718 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3719 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
357555c0
JB
3720 I915_WRITE(reg, temp);
3721
3722 POSTING_READ(reg);
139ccd3f 3723 udelay(2); /* should be 1.5us */
357555c0 3724
139ccd3f
JB
3725 for (i = 0; i < 4; i++) {
3726 reg = FDI_RX_IIR(pipe);
3727 temp = I915_READ(reg);
3728 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3729
139ccd3f
JB
3730 if (temp & FDI_RX_SYMBOL_LOCK ||
3731 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3732 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3733 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3734 i);
3735 goto train_done;
3736 }
3737 udelay(2); /* should be 1.5us */
357555c0 3738 }
139ccd3f
JB
3739 if (i == 4)
3740 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
357555c0 3741 }
357555c0 3742
139ccd3f 3743train_done:
357555c0
JB
3744 DRM_DEBUG_KMS("FDI train done.\n");
3745}
3746
88cefb6c 3747static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 3748{
88cefb6c 3749 struct drm_device *dev = intel_crtc->base.dev;
2c07245f 3750 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 3751 int pipe = intel_crtc->pipe;
f0f59a00
VS
3752 i915_reg_t reg;
3753 u32 temp;
c64e311e 3754
c98e9dcf 3755 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
3756 reg = FDI_RX_CTL(pipe);
3757 temp = I915_READ(reg);
627eb5a3 3758 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
6e3c9717 3759 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
dfd07d72 3760 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
3761 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3762
3763 POSTING_READ(reg);
c98e9dcf
JB
3764 udelay(200);
3765
3766 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
3767 temp = I915_READ(reg);
3768 I915_WRITE(reg, temp | FDI_PCDCLK);
3769
3770 POSTING_READ(reg);
c98e9dcf
JB
3771 udelay(200);
3772
20749730
PZ
3773 /* Enable CPU FDI TX PLL, always on for Ironlake */
3774 reg = FDI_TX_CTL(pipe);
3775 temp = I915_READ(reg);
3776 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3777 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 3778
20749730
PZ
3779 POSTING_READ(reg);
3780 udelay(100);
6be4a607 3781 }
0e23b99d
JB
3782}
3783
88cefb6c
DV
3784static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3785{
3786 struct drm_device *dev = intel_crtc->base.dev;
3787 struct drm_i915_private *dev_priv = dev->dev_private;
3788 int pipe = intel_crtc->pipe;
f0f59a00
VS
3789 i915_reg_t reg;
3790 u32 temp;
88cefb6c
DV
3791
3792 /* Switch from PCDclk to Rawclk */
3793 reg = FDI_RX_CTL(pipe);
3794 temp = I915_READ(reg);
3795 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3796
3797 /* Disable CPU FDI TX PLL */
3798 reg = FDI_TX_CTL(pipe);
3799 temp = I915_READ(reg);
3800 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3801
3802 POSTING_READ(reg);
3803 udelay(100);
3804
3805 reg = FDI_RX_CTL(pipe);
3806 temp = I915_READ(reg);
3807 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3808
3809 /* Wait for the clocks to turn off. */
3810 POSTING_READ(reg);
3811 udelay(100);
3812}
3813
0fc932b8
JB
3814static void ironlake_fdi_disable(struct drm_crtc *crtc)
3815{
3816 struct drm_device *dev = crtc->dev;
3817 struct drm_i915_private *dev_priv = dev->dev_private;
3818 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3819 int pipe = intel_crtc->pipe;
f0f59a00
VS
3820 i915_reg_t reg;
3821 u32 temp;
0fc932b8
JB
3822
3823 /* disable CPU FDI tx and PCH FDI rx */
3824 reg = FDI_TX_CTL(pipe);
3825 temp = I915_READ(reg);
3826 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3827 POSTING_READ(reg);
3828
3829 reg = FDI_RX_CTL(pipe);
3830 temp = I915_READ(reg);
3831 temp &= ~(0x7 << 16);
dfd07d72 3832 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3833 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3834
3835 POSTING_READ(reg);
3836 udelay(100);
3837
3838 /* Ironlake workaround, disable clock pointer after downing FDI */
eba905b2 3839 if (HAS_PCH_IBX(dev))
6f06ce18 3840 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
0fc932b8
JB
3841
3842 /* still set train pattern 1 */
3843 reg = FDI_TX_CTL(pipe);
3844 temp = I915_READ(reg);
3845 temp &= ~FDI_LINK_TRAIN_NONE;
3846 temp |= FDI_LINK_TRAIN_PATTERN_1;
3847 I915_WRITE(reg, temp);
3848
3849 reg = FDI_RX_CTL(pipe);
3850 temp = I915_READ(reg);
3851 if (HAS_PCH_CPT(dev)) {
3852 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3853 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3854 } else {
3855 temp &= ~FDI_LINK_TRAIN_NONE;
3856 temp |= FDI_LINK_TRAIN_PATTERN_1;
3857 }
3858 /* BPC in FDI rx is consistent with that in PIPECONF */
3859 temp &= ~(0x07 << 16);
dfd07d72 3860 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3861 I915_WRITE(reg, temp);
3862
3863 POSTING_READ(reg);
3864 udelay(100);
3865}
3866
5dce5b93
CW
3867bool intel_has_pending_fb_unpin(struct drm_device *dev)
3868{
3869 struct intel_crtc *crtc;
3870
3871 /* Note that we don't need to be called with mode_config.lock here
3872 * as our list of CRTC objects is static for the lifetime of the
3873 * device and so cannot disappear as we iterate. Similarly, we can
3874 * happily treat the predicates as racy, atomic checks as userspace
3875 * cannot claim and pin a new fb without at least acquring the
3876 * struct_mutex and so serialising with us.
3877 */
d3fcc808 3878 for_each_intel_crtc(dev, crtc) {
5dce5b93
CW
3879 if (atomic_read(&crtc->unpin_work_count) == 0)
3880 continue;
3881
3882 if (crtc->unpin_work)
3883 intel_wait_for_vblank(dev, crtc->pipe);
3884
3885 return true;
3886 }
3887
3888 return false;
3889}
3890
d6bbafa1
CW
3891static void page_flip_completed(struct intel_crtc *intel_crtc)
3892{
3893 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3894 struct intel_unpin_work *work = intel_crtc->unpin_work;
3895
3896 /* ensure that the unpin work is consistent wrt ->pending. */
3897 smp_rmb();
3898 intel_crtc->unpin_work = NULL;
3899
3900 if (work->event)
3901 drm_send_vblank_event(intel_crtc->base.dev,
3902 intel_crtc->pipe,
3903 work->event);
3904
3905 drm_crtc_vblank_put(&intel_crtc->base);
3906
3907 wake_up_all(&dev_priv->pending_flip_queue);
3908 queue_work(dev_priv->wq, &work->work);
3909
3910 trace_i915_flip_complete(intel_crtc->plane,
3911 work->pending_flip_obj);
3912}
3913
5008e874 3914static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
e6c3a2a6 3915{
0f91128d 3916 struct drm_device *dev = crtc->dev;
5bb61643 3917 struct drm_i915_private *dev_priv = dev->dev_private;
5008e874 3918 long ret;
e6c3a2a6 3919
2c10d571 3920 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
5008e874
ML
3921
3922 ret = wait_event_interruptible_timeout(
3923 dev_priv->pending_flip_queue,
3924 !intel_crtc_has_pending_flip(crtc),
3925 60*HZ);
3926
3927 if (ret < 0)
3928 return ret;
3929
3930 if (ret == 0) {
9c787942 3931 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2c10d571 3932
5e2d7afc 3933 spin_lock_irq(&dev->event_lock);
9c787942
CW
3934 if (intel_crtc->unpin_work) {
3935 WARN_ONCE(1, "Removing stuck page flip\n");
3936 page_flip_completed(intel_crtc);
3937 }
5e2d7afc 3938 spin_unlock_irq(&dev->event_lock);
9c787942 3939 }
5bb61643 3940
5008e874 3941 return 0;
e6c3a2a6
CW
3942}
3943
060f02d8
VS
3944static void lpt_disable_iclkip(struct drm_i915_private *dev_priv)
3945{
3946 u32 temp;
3947
3948 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3949
3950 mutex_lock(&dev_priv->sb_lock);
3951
3952 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
3953 temp |= SBI_SSCCTL_DISABLE;
3954 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
3955
3956 mutex_unlock(&dev_priv->sb_lock);
3957}
3958
e615efe4
ED
3959/* Program iCLKIP clock to the desired frequency */
3960static void lpt_program_iclkip(struct drm_crtc *crtc)
3961{
3962 struct drm_device *dev = crtc->dev;
3963 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 3964 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
e615efe4
ED
3965 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3966 u32 temp;
3967
060f02d8 3968 lpt_disable_iclkip(dev_priv);
e615efe4
ED
3969
3970 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
12d7ceed 3971 if (clock == 20000) {
e615efe4
ED
3972 auxdiv = 1;
3973 divsel = 0x41;
3974 phaseinc = 0x20;
3975 } else {
3976 /* The iCLK virtual clock root frequency is in MHz,
241bfc38
DL
3977 * but the adjusted_mode->crtc_clock in in KHz. To get the
3978 * divisors, it is necessary to divide one by another, so we
e615efe4
ED
3979 * convert the virtual clock precision to KHz here for higher
3980 * precision.
3981 */
3982 u32 iclk_virtual_root_freq = 172800 * 1000;
3983 u32 iclk_pi_range = 64;
3984 u32 desired_divisor, msb_divisor_value, pi_value;
3985
a2572f5c 3986 desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq, clock);
e615efe4
ED
3987 msb_divisor_value = desired_divisor / iclk_pi_range;
3988 pi_value = desired_divisor % iclk_pi_range;
3989
3990 auxdiv = 0;
3991 divsel = msb_divisor_value - 2;
3992 phaseinc = pi_value;
3993 }
3994
3995 /* This should not happen with any sane values */
3996 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3997 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3998 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3999 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
4000
4001 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
12d7ceed 4002 clock,
e615efe4
ED
4003 auxdiv,
4004 divsel,
4005 phasedir,
4006 phaseinc);
4007
060f02d8
VS
4008 mutex_lock(&dev_priv->sb_lock);
4009
e615efe4 4010 /* Program SSCDIVINTPHASE6 */
988d6ee8 4011 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
4012 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
4013 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
4014 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
4015 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
4016 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
4017 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 4018 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
4019
4020 /* Program SSCAUXDIV */
988d6ee8 4021 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
4022 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4023 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 4024 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
4025
4026 /* Enable modulator and associated divider */
988d6ee8 4027 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 4028 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 4029 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4 4030
060f02d8
VS
4031 mutex_unlock(&dev_priv->sb_lock);
4032
e615efe4
ED
4033 /* Wait for initialization time */
4034 udelay(24);
4035
4036 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
4037}
4038
275f01b2
DV
4039static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4040 enum pipe pch_transcoder)
4041{
4042 struct drm_device *dev = crtc->base.dev;
4043 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 4044 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
275f01b2
DV
4045
4046 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4047 I915_READ(HTOTAL(cpu_transcoder)));
4048 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4049 I915_READ(HBLANK(cpu_transcoder)));
4050 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4051 I915_READ(HSYNC(cpu_transcoder)));
4052
4053 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4054 I915_READ(VTOTAL(cpu_transcoder)));
4055 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4056 I915_READ(VBLANK(cpu_transcoder)));
4057 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4058 I915_READ(VSYNC(cpu_transcoder)));
4059 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4060 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4061}
4062
003632d9 4063static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
1fbc0d78
DV
4064{
4065 struct drm_i915_private *dev_priv = dev->dev_private;
4066 uint32_t temp;
4067
4068 temp = I915_READ(SOUTH_CHICKEN1);
003632d9 4069 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
1fbc0d78
DV
4070 return;
4071
4072 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4073 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4074
003632d9
ACO
4075 temp &= ~FDI_BC_BIFURCATION_SELECT;
4076 if (enable)
4077 temp |= FDI_BC_BIFURCATION_SELECT;
4078
4079 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
1fbc0d78
DV
4080 I915_WRITE(SOUTH_CHICKEN1, temp);
4081 POSTING_READ(SOUTH_CHICKEN1);
4082}
4083
4084static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4085{
4086 struct drm_device *dev = intel_crtc->base.dev;
1fbc0d78
DV
4087
4088 switch (intel_crtc->pipe) {
4089 case PIPE_A:
4090 break;
4091 case PIPE_B:
6e3c9717 4092 if (intel_crtc->config->fdi_lanes > 2)
003632d9 4093 cpt_set_fdi_bc_bifurcation(dev, false);
1fbc0d78 4094 else
003632d9 4095 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
4096
4097 break;
4098 case PIPE_C:
003632d9 4099 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
4100
4101 break;
4102 default:
4103 BUG();
4104 }
4105}
4106
c48b5305
VS
4107/* Return which DP Port should be selected for Transcoder DP control */
4108static enum port
4109intel_trans_dp_port_sel(struct drm_crtc *crtc)
4110{
4111 struct drm_device *dev = crtc->dev;
4112 struct intel_encoder *encoder;
4113
4114 for_each_encoder_on_crtc(dev, crtc, encoder) {
4115 if (encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
4116 encoder->type == INTEL_OUTPUT_EDP)
4117 return enc_to_dig_port(&encoder->base)->port;
4118 }
4119
4120 return -1;
4121}
4122
f67a559d
JB
4123/*
4124 * Enable PCH resources required for PCH ports:
4125 * - PCH PLLs
4126 * - FDI training & RX/TX
4127 * - update transcoder timings
4128 * - DP transcoding bits
4129 * - transcoder
4130 */
4131static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
4132{
4133 struct drm_device *dev = crtc->dev;
4134 struct drm_i915_private *dev_priv = dev->dev_private;
4135 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4136 int pipe = intel_crtc->pipe;
f0f59a00 4137 u32 temp;
2c07245f 4138
ab9412ba 4139 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 4140
1fbc0d78
DV
4141 if (IS_IVYBRIDGE(dev))
4142 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4143
cd986abb
DV
4144 /* Write the TU size bits before fdi link training, so that error
4145 * detection works. */
4146 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4147 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4148
3860b2ec
VS
4149 /*
4150 * Sometimes spurious CPU pipe underruns happen during FDI
4151 * training, at least with VGA+HDMI cloning. Suppress them.
4152 */
4153 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4154
c98e9dcf 4155 /* For PCH output, training FDI link */
674cf967 4156 dev_priv->display.fdi_link_train(crtc);
2c07245f 4157
3ad8a208
DV
4158 /* We need to program the right clock selection before writing the pixel
4159 * mutliplier into the DPLL. */
303b81e0 4160 if (HAS_PCH_CPT(dev)) {
ee7b9f93 4161 u32 sel;
4b645f14 4162
c98e9dcf 4163 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
4164 temp |= TRANS_DPLL_ENABLE(pipe);
4165 sel = TRANS_DPLLB_SEL(pipe);
6e3c9717 4166 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
ee7b9f93
JB
4167 temp |= sel;
4168 else
4169 temp &= ~sel;
c98e9dcf 4170 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 4171 }
5eddb70b 4172
3ad8a208
DV
4173 /* XXX: pch pll's can be enabled any time before we enable the PCH
4174 * transcoder, and we actually should do this to not upset any PCH
4175 * transcoder that already use the clock when we share it.
4176 *
4177 * Note that enable_shared_dpll tries to do the right thing, but
4178 * get_shared_dpll unconditionally resets the pll - we need that to have
4179 * the right LVDS enable sequence. */
85b3894f 4180 intel_enable_shared_dpll(intel_crtc);
3ad8a208 4181
d9b6cb56
JB
4182 /* set transcoder timing, panel must allow it */
4183 assert_panel_unlocked(dev_priv, pipe);
275f01b2 4184 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 4185
303b81e0 4186 intel_fdi_normal_train(crtc);
5e84e1a4 4187
3860b2ec
VS
4188 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4189
c98e9dcf 4190 /* For PCH DP, enable TRANS_DP_CTL */
6e3c9717 4191 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
9c4edaee
VS
4192 const struct drm_display_mode *adjusted_mode =
4193 &intel_crtc->config->base.adjusted_mode;
dfd07d72 4194 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
f0f59a00 4195 i915_reg_t reg = TRANS_DP_CTL(pipe);
5eddb70b
CW
4196 temp = I915_READ(reg);
4197 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
4198 TRANS_DP_SYNC_MASK |
4199 TRANS_DP_BPC_MASK);
e3ef4479 4200 temp |= TRANS_DP_OUTPUT_ENABLE;
9325c9f0 4201 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf 4202
9c4edaee 4203 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 4204 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
9c4edaee 4205 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 4206 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
4207
4208 switch (intel_trans_dp_port_sel(crtc)) {
c48b5305 4209 case PORT_B:
5eddb70b 4210 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf 4211 break;
c48b5305 4212 case PORT_C:
5eddb70b 4213 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf 4214 break;
c48b5305 4215 case PORT_D:
5eddb70b 4216 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
4217 break;
4218 default:
e95d41e1 4219 BUG();
32f9d658 4220 }
2c07245f 4221
5eddb70b 4222 I915_WRITE(reg, temp);
6be4a607 4223 }
b52eb4dc 4224
b8a4f404 4225 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
4226}
4227
1507e5bd
PZ
4228static void lpt_pch_enable(struct drm_crtc *crtc)
4229{
4230 struct drm_device *dev = crtc->dev;
4231 struct drm_i915_private *dev_priv = dev->dev_private;
4232 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 4233 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
1507e5bd 4234
ab9412ba 4235 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 4236
8c52b5e8 4237 lpt_program_iclkip(crtc);
1507e5bd 4238
0540e488 4239 /* Set transcoder timing. */
275f01b2 4240 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 4241
937bb610 4242 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
4243}
4244
190f68c5
ACO
4245struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
4246 struct intel_crtc_state *crtc_state)
ee7b9f93 4247{
e2b78267 4248 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
8bd31e67 4249 struct intel_shared_dpll *pll;
de419ab6 4250 struct intel_shared_dpll_config *shared_dpll;
e2b78267 4251 enum intel_dpll_id i;
00490c22 4252 int max = dev_priv->num_shared_dpll;
ee7b9f93 4253
de419ab6
ML
4254 shared_dpll = intel_atomic_get_shared_dpll_state(crtc_state->base.state);
4255
98b6bd99
DV
4256 if (HAS_PCH_IBX(dev_priv->dev)) {
4257 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
d94ab068 4258 i = (enum intel_dpll_id) crtc->pipe;
e72f9fbf 4259 pll = &dev_priv->shared_dplls[i];
98b6bd99 4260
46edb027
DV
4261 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4262 crtc->base.base.id, pll->name);
98b6bd99 4263
de419ab6 4264 WARN_ON(shared_dpll[i].crtc_mask);
f2a69f44 4265
98b6bd99
DV
4266 goto found;
4267 }
4268
bcddf610
S
4269 if (IS_BROXTON(dev_priv->dev)) {
4270 /* PLL is attached to port in bxt */
4271 struct intel_encoder *encoder;
4272 struct intel_digital_port *intel_dig_port;
4273
4274 encoder = intel_ddi_get_crtc_new_encoder(crtc_state);
4275 if (WARN_ON(!encoder))
4276 return NULL;
4277
4278 intel_dig_port = enc_to_dig_port(&encoder->base);
4279 /* 1:1 mapping between ports and PLLs */
4280 i = (enum intel_dpll_id)intel_dig_port->port;
4281 pll = &dev_priv->shared_dplls[i];
4282 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4283 crtc->base.base.id, pll->name);
de419ab6 4284 WARN_ON(shared_dpll[i].crtc_mask);
bcddf610
S
4285
4286 goto found;
00490c22
ML
4287 } else if (INTEL_INFO(dev_priv)->gen < 9 && HAS_DDI(dev_priv))
4288 /* Do not consider SPLL */
4289 max = 2;
bcddf610 4290
00490c22 4291 for (i = 0; i < max; i++) {
e72f9fbf 4292 pll = &dev_priv->shared_dplls[i];
ee7b9f93
JB
4293
4294 /* Only want to check enabled timings first */
de419ab6 4295 if (shared_dpll[i].crtc_mask == 0)
ee7b9f93
JB
4296 continue;
4297
190f68c5 4298 if (memcmp(&crtc_state->dpll_hw_state,
de419ab6
ML
4299 &shared_dpll[i].hw_state,
4300 sizeof(crtc_state->dpll_hw_state)) == 0) {
8bd31e67 4301 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
1e6f2ddc 4302 crtc->base.base.id, pll->name,
de419ab6 4303 shared_dpll[i].crtc_mask,
8bd31e67 4304 pll->active);
ee7b9f93
JB
4305 goto found;
4306 }
4307 }
4308
4309 /* Ok no matching timings, maybe there's a free one? */
e72f9fbf
DV
4310 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4311 pll = &dev_priv->shared_dplls[i];
de419ab6 4312 if (shared_dpll[i].crtc_mask == 0) {
46edb027
DV
4313 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4314 crtc->base.base.id, pll->name);
ee7b9f93
JB
4315 goto found;
4316 }
4317 }
4318
4319 return NULL;
4320
4321found:
de419ab6
ML
4322 if (shared_dpll[i].crtc_mask == 0)
4323 shared_dpll[i].hw_state =
4324 crtc_state->dpll_hw_state;
f2a69f44 4325
190f68c5 4326 crtc_state->shared_dpll = i;
46edb027
DV
4327 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4328 pipe_name(crtc->pipe));
ee7b9f93 4329
de419ab6 4330 shared_dpll[i].crtc_mask |= 1 << crtc->pipe;
e04c7350 4331
ee7b9f93
JB
4332 return pll;
4333}
4334
de419ab6 4335static void intel_shared_dpll_commit(struct drm_atomic_state *state)
8bd31e67 4336{
de419ab6
ML
4337 struct drm_i915_private *dev_priv = to_i915(state->dev);
4338 struct intel_shared_dpll_config *shared_dpll;
8bd31e67
ACO
4339 struct intel_shared_dpll *pll;
4340 enum intel_dpll_id i;
4341
de419ab6
ML
4342 if (!to_intel_atomic_state(state)->dpll_set)
4343 return;
8bd31e67 4344
de419ab6 4345 shared_dpll = to_intel_atomic_state(state)->shared_dpll;
8bd31e67
ACO
4346 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4347 pll = &dev_priv->shared_dplls[i];
de419ab6 4348 pll->config = shared_dpll[i];
8bd31e67
ACO
4349 }
4350}
4351
a1520318 4352static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57
JB
4353{
4354 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 4355 i915_reg_t dslreg = PIPEDSL(pipe);
d4270e57
JB
4356 u32 temp;
4357
4358 temp = I915_READ(dslreg);
4359 udelay(500);
4360 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 4361 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 4362 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
4363 }
4364}
4365
86adf9d7
ML
4366static int
4367skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4368 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4369 int src_w, int src_h, int dst_w, int dst_h)
a1b2278e 4370{
86adf9d7
ML
4371 struct intel_crtc_scaler_state *scaler_state =
4372 &crtc_state->scaler_state;
4373 struct intel_crtc *intel_crtc =
4374 to_intel_crtc(crtc_state->base.crtc);
a1b2278e 4375 int need_scaling;
6156a456
CK
4376
4377 need_scaling = intel_rotation_90_or_270(rotation) ?
4378 (src_h != dst_w || src_w != dst_h):
4379 (src_w != dst_w || src_h != dst_h);
a1b2278e
CK
4380
4381 /*
4382 * if plane is being disabled or scaler is no more required or force detach
4383 * - free scaler binded to this plane/crtc
4384 * - in order to do this, update crtc->scaler_usage
4385 *
4386 * Here scaler state in crtc_state is set free so that
4387 * scaler can be assigned to other user. Actual register
4388 * update to free the scaler is done in plane/panel-fit programming.
4389 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4390 */
86adf9d7 4391 if (force_detach || !need_scaling) {
a1b2278e 4392 if (*scaler_id >= 0) {
86adf9d7 4393 scaler_state->scaler_users &= ~(1 << scaler_user);
a1b2278e
CK
4394 scaler_state->scalers[*scaler_id].in_use = 0;
4395
86adf9d7
ML
4396 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4397 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4398 intel_crtc->pipe, scaler_user, *scaler_id,
a1b2278e
CK
4399 scaler_state->scaler_users);
4400 *scaler_id = -1;
4401 }
4402 return 0;
4403 }
4404
4405 /* range checks */
4406 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4407 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4408
4409 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4410 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
86adf9d7 4411 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
a1b2278e 4412 "size is out of scaler range\n",
86adf9d7 4413 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
a1b2278e
CK
4414 return -EINVAL;
4415 }
4416
86adf9d7
ML
4417 /* mark this plane as a scaler user in crtc_state */
4418 scaler_state->scaler_users |= (1 << scaler_user);
4419 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4420 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4421 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4422 scaler_state->scaler_users);
4423
4424 return 0;
4425}
4426
4427/**
4428 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4429 *
4430 * @state: crtc's scaler state
86adf9d7
ML
4431 *
4432 * Return
4433 * 0 - scaler_usage updated successfully
4434 * error - requested scaling cannot be supported or other error condition
4435 */
e435d6e5 4436int skl_update_scaler_crtc(struct intel_crtc_state *state)
86adf9d7
ML
4437{
4438 struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc);
7c5f93b0 4439 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
86adf9d7
ML
4440
4441 DRM_DEBUG_KMS("Updating scaler for [CRTC:%i] scaler_user index %u.%u\n",
4442 intel_crtc->base.base.id, intel_crtc->pipe, SKL_CRTC_INDEX);
4443
e435d6e5 4444 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
86adf9d7
ML
4445 &state->scaler_state.scaler_id, DRM_ROTATE_0,
4446 state->pipe_src_w, state->pipe_src_h,
aad941d5 4447 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
86adf9d7
ML
4448}
4449
4450/**
4451 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4452 *
4453 * @state: crtc's scaler state
86adf9d7
ML
4454 * @plane_state: atomic plane state to update
4455 *
4456 * Return
4457 * 0 - scaler_usage updated successfully
4458 * error - requested scaling cannot be supported or other error condition
4459 */
da20eabd
ML
4460static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4461 struct intel_plane_state *plane_state)
86adf9d7
ML
4462{
4463
4464 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
da20eabd
ML
4465 struct intel_plane *intel_plane =
4466 to_intel_plane(plane_state->base.plane);
86adf9d7
ML
4467 struct drm_framebuffer *fb = plane_state->base.fb;
4468 int ret;
4469
4470 bool force_detach = !fb || !plane_state->visible;
4471
4472 DRM_DEBUG_KMS("Updating scaler for [PLANE:%d] scaler_user index %u.%u\n",
4473 intel_plane->base.base.id, intel_crtc->pipe,
4474 drm_plane_index(&intel_plane->base));
4475
4476 ret = skl_update_scaler(crtc_state, force_detach,
4477 drm_plane_index(&intel_plane->base),
4478 &plane_state->scaler_id,
4479 plane_state->base.rotation,
4480 drm_rect_width(&plane_state->src) >> 16,
4481 drm_rect_height(&plane_state->src) >> 16,
4482 drm_rect_width(&plane_state->dst),
4483 drm_rect_height(&plane_state->dst));
4484
4485 if (ret || plane_state->scaler_id < 0)
4486 return ret;
4487
a1b2278e 4488 /* check colorkey */
818ed961 4489 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
86adf9d7 4490 DRM_DEBUG_KMS("[PLANE:%d] scaling with color key not allowed",
818ed961 4491 intel_plane->base.base.id);
a1b2278e
CK
4492 return -EINVAL;
4493 }
4494
4495 /* Check src format */
86adf9d7
ML
4496 switch (fb->pixel_format) {
4497 case DRM_FORMAT_RGB565:
4498 case DRM_FORMAT_XBGR8888:
4499 case DRM_FORMAT_XRGB8888:
4500 case DRM_FORMAT_ABGR8888:
4501 case DRM_FORMAT_ARGB8888:
4502 case DRM_FORMAT_XRGB2101010:
4503 case DRM_FORMAT_XBGR2101010:
4504 case DRM_FORMAT_YUYV:
4505 case DRM_FORMAT_YVYU:
4506 case DRM_FORMAT_UYVY:
4507 case DRM_FORMAT_VYUY:
4508 break;
4509 default:
4510 DRM_DEBUG_KMS("[PLANE:%d] FB:%d unsupported scaling format 0x%x\n",
4511 intel_plane->base.base.id, fb->base.id, fb->pixel_format);
4512 return -EINVAL;
a1b2278e
CK
4513 }
4514
a1b2278e
CK
4515 return 0;
4516}
4517
e435d6e5
ML
4518static void skylake_scaler_disable(struct intel_crtc *crtc)
4519{
4520 int i;
4521
4522 for (i = 0; i < crtc->num_scalers; i++)
4523 skl_detach_scaler(crtc, i);
4524}
4525
4526static void skylake_pfit_enable(struct intel_crtc *crtc)
bd2e244f
JB
4527{
4528 struct drm_device *dev = crtc->base.dev;
4529 struct drm_i915_private *dev_priv = dev->dev_private;
4530 int pipe = crtc->pipe;
a1b2278e
CK
4531 struct intel_crtc_scaler_state *scaler_state =
4532 &crtc->config->scaler_state;
4533
4534 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4535
6e3c9717 4536 if (crtc->config->pch_pfit.enabled) {
a1b2278e
CK
4537 int id;
4538
4539 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4540 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4541 return;
4542 }
4543
4544 id = scaler_state->scaler_id;
4545 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4546 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4547 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4548 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4549
4550 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
bd2e244f
JB
4551 }
4552}
4553
b074cec8
JB
4554static void ironlake_pfit_enable(struct intel_crtc *crtc)
4555{
4556 struct drm_device *dev = crtc->base.dev;
4557 struct drm_i915_private *dev_priv = dev->dev_private;
4558 int pipe = crtc->pipe;
4559
6e3c9717 4560 if (crtc->config->pch_pfit.enabled) {
b074cec8
JB
4561 /* Force use of hard-coded filter coefficients
4562 * as some pre-programmed values are broken,
4563 * e.g. x201.
4564 */
4565 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4566 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4567 PF_PIPE_SEL_IVB(pipe));
4568 else
4569 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
6e3c9717
ACO
4570 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4571 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
d4270e57
JB
4572 }
4573}
4574
20bc8673 4575void hsw_enable_ips(struct intel_crtc *crtc)
d77e4531 4576{
cea165c3
VS
4577 struct drm_device *dev = crtc->base.dev;
4578 struct drm_i915_private *dev_priv = dev->dev_private;
d77e4531 4579
6e3c9717 4580 if (!crtc->config->ips_enabled)
d77e4531
PZ
4581 return;
4582
cea165c3
VS
4583 /* We can only enable IPS after we enable a plane and wait for a vblank */
4584 intel_wait_for_vblank(dev, crtc->pipe);
4585
d77e4531 4586 assert_plane_enabled(dev_priv, crtc->plane);
cea165c3 4587 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4588 mutex_lock(&dev_priv->rps.hw_lock);
4589 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4590 mutex_unlock(&dev_priv->rps.hw_lock);
4591 /* Quoting Art Runyan: "its not safe to expect any particular
4592 * value in IPS_CTL bit 31 after enabling IPS through the
e59150dc
JB
4593 * mailbox." Moreover, the mailbox may return a bogus state,
4594 * so we need to just enable it and continue on.
2a114cc1
BW
4595 */
4596 } else {
4597 I915_WRITE(IPS_CTL, IPS_ENABLE);
4598 /* The bit only becomes 1 in the next vblank, so this wait here
4599 * is essentially intel_wait_for_vblank. If we don't have this
4600 * and don't wait for vblanks until the end of crtc_enable, then
4601 * the HW state readout code will complain that the expected
4602 * IPS_CTL value is not the one we read. */
4603 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4604 DRM_ERROR("Timed out waiting for IPS enable\n");
4605 }
d77e4531
PZ
4606}
4607
20bc8673 4608void hsw_disable_ips(struct intel_crtc *crtc)
d77e4531
PZ
4609{
4610 struct drm_device *dev = crtc->base.dev;
4611 struct drm_i915_private *dev_priv = dev->dev_private;
4612
6e3c9717 4613 if (!crtc->config->ips_enabled)
d77e4531
PZ
4614 return;
4615
4616 assert_plane_enabled(dev_priv, crtc->plane);
23d0b130 4617 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4618 mutex_lock(&dev_priv->rps.hw_lock);
4619 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4620 mutex_unlock(&dev_priv->rps.hw_lock);
23d0b130
BW
4621 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4622 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4623 DRM_ERROR("Timed out waiting for IPS disable\n");
e59150dc 4624 } else {
2a114cc1 4625 I915_WRITE(IPS_CTL, 0);
e59150dc
JB
4626 POSTING_READ(IPS_CTL);
4627 }
d77e4531
PZ
4628
4629 /* We need to wait for a vblank before we can disable the plane. */
4630 intel_wait_for_vblank(dev, crtc->pipe);
4631}
4632
4633/** Loads the palette/gamma unit for the CRTC with the prepared values */
4634static void intel_crtc_load_lut(struct drm_crtc *crtc)
4635{
4636 struct drm_device *dev = crtc->dev;
4637 struct drm_i915_private *dev_priv = dev->dev_private;
4638 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4639 enum pipe pipe = intel_crtc->pipe;
d77e4531
PZ
4640 int i;
4641 bool reenable_ips = false;
4642
4643 /* The clocks have to be on to load the palette. */
53d9f4e9 4644 if (!crtc->state->active)
d77e4531
PZ
4645 return;
4646
50360403 4647 if (HAS_GMCH_DISPLAY(dev_priv->dev)) {
a65347ba 4648 if (intel_crtc->config->has_dsi_encoder)
d77e4531
PZ
4649 assert_dsi_pll_enabled(dev_priv);
4650 else
4651 assert_pll_enabled(dev_priv, pipe);
4652 }
4653
d77e4531
PZ
4654 /* Workaround : Do not read or write the pipe palette/gamma data while
4655 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4656 */
6e3c9717 4657 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
d77e4531
PZ
4658 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4659 GAMMA_MODE_MODE_SPLIT)) {
4660 hsw_disable_ips(intel_crtc);
4661 reenable_ips = true;
4662 }
4663
4664 for (i = 0; i < 256; i++) {
f0f59a00 4665 i915_reg_t palreg;
f65a9c5b
VS
4666
4667 if (HAS_GMCH_DISPLAY(dev))
4668 palreg = PALETTE(pipe, i);
4669 else
4670 palreg = LGC_PALETTE(pipe, i);
4671
4672 I915_WRITE(palreg,
d77e4531
PZ
4673 (intel_crtc->lut_r[i] << 16) |
4674 (intel_crtc->lut_g[i] << 8) |
4675 intel_crtc->lut_b[i]);
4676 }
4677
4678 if (reenable_ips)
4679 hsw_enable_ips(intel_crtc);
4680}
4681
7cac945f 4682static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
d3eedb1a 4683{
7cac945f 4684 if (intel_crtc->overlay) {
d3eedb1a
VS
4685 struct drm_device *dev = intel_crtc->base.dev;
4686 struct drm_i915_private *dev_priv = dev->dev_private;
4687
4688 mutex_lock(&dev->struct_mutex);
4689 dev_priv->mm.interruptible = false;
4690 (void) intel_overlay_switch_off(intel_crtc->overlay);
4691 dev_priv->mm.interruptible = true;
4692 mutex_unlock(&dev->struct_mutex);
4693 }
4694
4695 /* Let userspace switch the overlay on again. In most cases userspace
4696 * has to recompute where to put it anyway.
4697 */
4698}
4699
87d4300a
ML
4700/**
4701 * intel_post_enable_primary - Perform operations after enabling primary plane
4702 * @crtc: the CRTC whose primary plane was just enabled
4703 *
4704 * Performs potentially sleeping operations that must be done after the primary
4705 * plane is enabled, such as updating FBC and IPS. Note that this may be
4706 * called due to an explicit primary plane update, or due to an implicit
4707 * re-enable that is caused when a sprite plane is updated to no longer
4708 * completely hide the primary plane.
4709 */
4710static void
4711intel_post_enable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4712{
4713 struct drm_device *dev = crtc->dev;
87d4300a 4714 struct drm_i915_private *dev_priv = dev->dev_private;
a5c4d7bc
VS
4715 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4716 int pipe = intel_crtc->pipe;
a5c4d7bc 4717
87d4300a
ML
4718 /*
4719 * FIXME IPS should be fine as long as one plane is
4720 * enabled, but in practice it seems to have problems
4721 * when going from primary only to sprite only and vice
4722 * versa.
4723 */
a5c4d7bc
VS
4724 hsw_enable_ips(intel_crtc);
4725
f99d7069 4726 /*
87d4300a
ML
4727 * Gen2 reports pipe underruns whenever all planes are disabled.
4728 * So don't enable underrun reporting before at least some planes
4729 * are enabled.
4730 * FIXME: Need to fix the logic to work when we turn off all planes
4731 * but leave the pipe running.
f99d7069 4732 */
87d4300a
ML
4733 if (IS_GEN2(dev))
4734 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4735
aca7b684
VS
4736 /* Underruns don't always raise interrupts, so check manually. */
4737 intel_check_cpu_fifo_underruns(dev_priv);
4738 intel_check_pch_fifo_underruns(dev_priv);
a5c4d7bc
VS
4739}
4740
87d4300a
ML
4741/**
4742 * intel_pre_disable_primary - Perform operations before disabling primary plane
4743 * @crtc: the CRTC whose primary plane is to be disabled
4744 *
4745 * Performs potentially sleeping operations that must be done before the
4746 * primary plane is disabled, such as updating FBC and IPS. Note that this may
4747 * be called due to an explicit primary plane update, or due to an implicit
4748 * disable that is caused when a sprite plane completely hides the primary
4749 * plane.
4750 */
4751static void
4752intel_pre_disable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4753{
4754 struct drm_device *dev = crtc->dev;
4755 struct drm_i915_private *dev_priv = dev->dev_private;
4756 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4757 int pipe = intel_crtc->pipe;
a5c4d7bc 4758
87d4300a
ML
4759 /*
4760 * Gen2 reports pipe underruns whenever all planes are disabled.
4761 * So diasble underrun reporting before all the planes get disabled.
4762 * FIXME: Need to fix the logic to work when we turn off all planes
4763 * but leave the pipe running.
4764 */
4765 if (IS_GEN2(dev))
4766 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
a5c4d7bc 4767
87d4300a
ML
4768 /*
4769 * Vblank time updates from the shadow to live plane control register
4770 * are blocked if the memory self-refresh mode is active at that
4771 * moment. So to make sure the plane gets truly disabled, disable
4772 * first the self-refresh mode. The self-refresh enable bit in turn
4773 * will be checked/applied by the HW only at the next frame start
4774 * event which is after the vblank start event, so we need to have a
4775 * wait-for-vblank between disabling the plane and the pipe.
4776 */
262cd2e1 4777 if (HAS_GMCH_DISPLAY(dev)) {
87d4300a 4778 intel_set_memory_cxsr(dev_priv, false);
262cd2e1
VS
4779 dev_priv->wm.vlv.cxsr = false;
4780 intel_wait_for_vblank(dev, pipe);
4781 }
87d4300a 4782
87d4300a
ML
4783 /*
4784 * FIXME IPS should be fine as long as one plane is
4785 * enabled, but in practice it seems to have problems
4786 * when going from primary only to sprite only and vice
4787 * versa.
4788 */
a5c4d7bc 4789 hsw_disable_ips(intel_crtc);
87d4300a
ML
4790}
4791
ac21b225
ML
4792static void intel_post_plane_update(struct intel_crtc *crtc)
4793{
4794 struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
92826fcd
ML
4795 struct intel_crtc_state *pipe_config =
4796 to_intel_crtc_state(crtc->base.state);
ac21b225 4797 struct drm_device *dev = crtc->base.dev;
ac21b225
ML
4798
4799 if (atomic->wait_vblank)
4800 intel_wait_for_vblank(dev, crtc->pipe);
4801
4802 intel_frontbuffer_flip(dev, atomic->fb_bits);
4803
ab1d3a0e 4804 crtc->wm.cxsr_allowed = true;
852eb00d 4805
b9001114 4806 if (pipe_config->wm_changed && pipe_config->base.active)
f015c551
VS
4807 intel_update_watermarks(&crtc->base);
4808
c80ac854 4809 if (atomic->update_fbc)
754d1133 4810 intel_fbc_update(crtc);
ac21b225
ML
4811
4812 if (atomic->post_enable_primary)
4813 intel_post_enable_primary(&crtc->base);
4814
ac21b225
ML
4815 memset(atomic, 0, sizeof(*atomic));
4816}
4817
4818static void intel_pre_plane_update(struct intel_crtc *crtc)
4819{
4820 struct drm_device *dev = crtc->base.dev;
eddfcbcd 4821 struct drm_i915_private *dev_priv = dev->dev_private;
ac21b225 4822 struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
ab1d3a0e
ML
4823 struct intel_crtc_state *pipe_config =
4824 to_intel_crtc_state(crtc->base.state);
ac21b225 4825
c80ac854 4826 if (atomic->disable_fbc)
d029bcad 4827 intel_fbc_deactivate(crtc);
ac21b225 4828
066cf55b
RV
4829 if (crtc->atomic.disable_ips)
4830 hsw_disable_ips(crtc);
4831
ac21b225
ML
4832 if (atomic->pre_disable_primary)
4833 intel_pre_disable_primary(&crtc->base);
852eb00d 4834
ab1d3a0e 4835 if (pipe_config->disable_cxsr) {
852eb00d
VS
4836 crtc->wm.cxsr_allowed = false;
4837 intel_set_memory_cxsr(dev_priv, false);
4838 }
92826fcd 4839
396e33ae
MR
4840 /*
4841 * IVB workaround: must disable low power watermarks for at least
4842 * one frame before enabling scaling. LP watermarks can be re-enabled
4843 * when scaling is disabled.
4844 *
4845 * WaCxSRDisabledForSpriteScaling:ivb
4846 */
4847 if (pipe_config->disable_lp_wm) {
4848 ilk_disable_lp_wm(dev);
4849 intel_wait_for_vblank(dev, crtc->pipe);
4850 }
4851
4852 /*
4853 * If we're doing a modeset, we're done. No need to do any pre-vblank
4854 * watermark programming here.
4855 */
4856 if (needs_modeset(&pipe_config->base))
4857 return;
4858
4859 /*
4860 * For platforms that support atomic watermarks, program the
4861 * 'intermediate' watermarks immediately. On pre-gen9 platforms, these
4862 * will be the intermediate values that are safe for both pre- and
4863 * post- vblank; when vblank happens, the 'active' values will be set
4864 * to the final 'target' values and we'll do this again to get the
4865 * optimal watermarks. For gen9+ platforms, the values we program here
4866 * will be the final target values which will get automatically latched
4867 * at vblank time; no further programming will be necessary.
4868 *
4869 * If a platform hasn't been transitioned to atomic watermarks yet,
4870 * we'll continue to update watermarks the old way, if flags tell
4871 * us to.
4872 */
4873 if (dev_priv->display.initial_watermarks != NULL)
4874 dev_priv->display.initial_watermarks(pipe_config);
4875 else if (pipe_config->wm_changed)
92826fcd 4876 intel_update_watermarks(&crtc->base);
ac21b225
ML
4877}
4878
d032ffa0 4879static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
87d4300a
ML
4880{
4881 struct drm_device *dev = crtc->dev;
4882 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
d032ffa0 4883 struct drm_plane *p;
87d4300a
ML
4884 int pipe = intel_crtc->pipe;
4885
7cac945f 4886 intel_crtc_dpms_overlay_disable(intel_crtc);
27321ae8 4887
d032ffa0
ML
4888 drm_for_each_plane_mask(p, dev, plane_mask)
4889 to_intel_plane(p)->disable_plane(p, crtc);
f98551ae 4890
f99d7069
DV
4891 /*
4892 * FIXME: Once we grow proper nuclear flip support out of this we need
4893 * to compute the mask of flip planes precisely. For the time being
4894 * consider this a flip to a NULL plane.
4895 */
4896 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
a5c4d7bc
VS
4897}
4898
f67a559d
JB
4899static void ironlake_crtc_enable(struct drm_crtc *crtc)
4900{
4901 struct drm_device *dev = crtc->dev;
4902 struct drm_i915_private *dev_priv = dev->dev_private;
4903 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4904 struct intel_encoder *encoder;
f67a559d 4905 int pipe = intel_crtc->pipe;
f67a559d 4906
53d9f4e9 4907 if (WARN_ON(intel_crtc->active))
f67a559d
JB
4908 return;
4909
81b088ca
VS
4910 if (intel_crtc->config->has_pch_encoder)
4911 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
4912
6e3c9717 4913 if (intel_crtc->config->has_pch_encoder)
b14b1055
DV
4914 intel_prepare_shared_dpll(intel_crtc);
4915
6e3c9717 4916 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 4917 intel_dp_set_m_n(intel_crtc, M1_N1);
29407aab
DV
4918
4919 intel_set_pipe_timings(intel_crtc);
4920
6e3c9717 4921 if (intel_crtc->config->has_pch_encoder) {
29407aab 4922 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4923 &intel_crtc->config->fdi_m_n, NULL);
29407aab
DV
4924 }
4925
4926 ironlake_set_pipeconf(crtc);
4927
f67a559d 4928 intel_crtc->active = true;
8664281b 4929
a72e4c9f 4930 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
8664281b 4931
f6736a1a 4932 for_each_encoder_on_crtc(dev, crtc, encoder)
952735ee
DV
4933 if (encoder->pre_enable)
4934 encoder->pre_enable(encoder);
f67a559d 4935
6e3c9717 4936 if (intel_crtc->config->has_pch_encoder) {
fff367c7
DV
4937 /* Note: FDI PLL enabling _must_ be done before we enable the
4938 * cpu pipes, hence this is separate from all the other fdi/pch
4939 * enabling. */
88cefb6c 4940 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
4941 } else {
4942 assert_fdi_tx_disabled(dev_priv, pipe);
4943 assert_fdi_rx_disabled(dev_priv, pipe);
4944 }
f67a559d 4945
b074cec8 4946 ironlake_pfit_enable(intel_crtc);
f67a559d 4947
9c54c0dd
JB
4948 /*
4949 * On ILK+ LUT must be loaded before the pipe is running but with
4950 * clocks enabled
4951 */
4952 intel_crtc_load_lut(crtc);
4953
f37fcc2a 4954 intel_update_watermarks(crtc);
e1fdc473 4955 intel_enable_pipe(intel_crtc);
f67a559d 4956
6e3c9717 4957 if (intel_crtc->config->has_pch_encoder)
f67a559d 4958 ironlake_pch_enable(crtc);
c98e9dcf 4959
f9b61ff6
DV
4960 assert_vblank_disabled(crtc);
4961 drm_crtc_vblank_on(crtc);
4962
fa5c73b1
DV
4963 for_each_encoder_on_crtc(dev, crtc, encoder)
4964 encoder->enable(encoder);
61b77ddd
DV
4965
4966 if (HAS_PCH_CPT(dev))
a1520318 4967 cpt_verify_modeset(dev, intel_crtc->pipe);
37ca8d4c
VS
4968
4969 /* Must wait for vblank to avoid spurious PCH FIFO underruns */
4970 if (intel_crtc->config->has_pch_encoder)
4971 intel_wait_for_vblank(dev, pipe);
4972 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
d029bcad
PZ
4973
4974 intel_fbc_enable(intel_crtc);
6be4a607
JB
4975}
4976
42db64ef
PZ
4977/* IPS only exists on ULT machines and is tied to pipe A. */
4978static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4979{
f5adf94e 4980 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
42db64ef
PZ
4981}
4982
4f771f10
PZ
4983static void haswell_crtc_enable(struct drm_crtc *crtc)
4984{
4985 struct drm_device *dev = crtc->dev;
4986 struct drm_i915_private *dev_priv = dev->dev_private;
4987 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4988 struct intel_encoder *encoder;
99d736a2
ML
4989 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
4990 struct intel_crtc_state *pipe_config =
4991 to_intel_crtc_state(crtc->state);
4f771f10 4992
53d9f4e9 4993 if (WARN_ON(intel_crtc->active))
4f771f10
PZ
4994 return;
4995
81b088ca
VS
4996 if (intel_crtc->config->has_pch_encoder)
4997 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4998 false);
4999
df8ad70c
DV
5000 if (intel_crtc_to_shared_dpll(intel_crtc))
5001 intel_enable_shared_dpll(intel_crtc);
5002
6e3c9717 5003 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 5004 intel_dp_set_m_n(intel_crtc, M1_N1);
229fca97
DV
5005
5006 intel_set_pipe_timings(intel_crtc);
5007
6e3c9717
ACO
5008 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
5009 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
5010 intel_crtc->config->pixel_multiplier - 1);
ebb69c95
CT
5011 }
5012
6e3c9717 5013 if (intel_crtc->config->has_pch_encoder) {
229fca97 5014 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 5015 &intel_crtc->config->fdi_m_n, NULL);
229fca97
DV
5016 }
5017
5018 haswell_set_pipeconf(crtc);
5019
5020 intel_set_pipe_csc(crtc);
5021
4f771f10 5022 intel_crtc->active = true;
8664281b 5023
6b698516
DV
5024 if (intel_crtc->config->has_pch_encoder)
5025 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5026 else
5027 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5028
7d4aefd0 5029 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10
PZ
5030 if (encoder->pre_enable)
5031 encoder->pre_enable(encoder);
7d4aefd0 5032 }
4f771f10 5033
d2d65408 5034 if (intel_crtc->config->has_pch_encoder)
4fe9467d 5035 dev_priv->display.fdi_link_train(crtc);
4fe9467d 5036
a65347ba 5037 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5038 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 5039
1c132b44 5040 if (INTEL_INFO(dev)->gen >= 9)
e435d6e5 5041 skylake_pfit_enable(intel_crtc);
ff6d9f55 5042 else
1c132b44 5043 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
5044
5045 /*
5046 * On ILK+ LUT must be loaded before the pipe is running but with
5047 * clocks enabled
5048 */
5049 intel_crtc_load_lut(crtc);
5050
1f544388 5051 intel_ddi_set_pipe_settings(crtc);
a65347ba 5052 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5053 intel_ddi_enable_transcoder_func(crtc);
4f771f10 5054
f37fcc2a 5055 intel_update_watermarks(crtc);
e1fdc473 5056 intel_enable_pipe(intel_crtc);
42db64ef 5057
6e3c9717 5058 if (intel_crtc->config->has_pch_encoder)
1507e5bd 5059 lpt_pch_enable(crtc);
4f771f10 5060
a65347ba 5061 if (intel_crtc->config->dp_encoder_is_mst)
0e32b39c
DA
5062 intel_ddi_set_vc_payload_alloc(crtc, true);
5063
f9b61ff6
DV
5064 assert_vblank_disabled(crtc);
5065 drm_crtc_vblank_on(crtc);
5066
8807e55b 5067 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10 5068 encoder->enable(encoder);
8807e55b
JN
5069 intel_opregion_notify_encoder(encoder, true);
5070 }
4f771f10 5071
6b698516
DV
5072 if (intel_crtc->config->has_pch_encoder) {
5073 intel_wait_for_vblank(dev, pipe);
5074 intel_wait_for_vblank(dev, pipe);
5075 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
d2d65408
VS
5076 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5077 true);
6b698516 5078 }
d2d65408 5079
e4916946
PZ
5080 /* If we change the relative order between pipe/planes enabling, we need
5081 * to change the workaround. */
99d736a2
ML
5082 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
5083 if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) {
5084 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5085 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5086 }
d029bcad
PZ
5087
5088 intel_fbc_enable(intel_crtc);
4f771f10
PZ
5089}
5090
bfd16b2a 5091static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
3f8dce3a
DV
5092{
5093 struct drm_device *dev = crtc->base.dev;
5094 struct drm_i915_private *dev_priv = dev->dev_private;
5095 int pipe = crtc->pipe;
5096
5097 /* To avoid upsetting the power well on haswell only disable the pfit if
5098 * it's in use. The hw state code will make sure we get this right. */
bfd16b2a 5099 if (force || crtc->config->pch_pfit.enabled) {
3f8dce3a
DV
5100 I915_WRITE(PF_CTL(pipe), 0);
5101 I915_WRITE(PF_WIN_POS(pipe), 0);
5102 I915_WRITE(PF_WIN_SZ(pipe), 0);
5103 }
5104}
5105
6be4a607
JB
5106static void ironlake_crtc_disable(struct drm_crtc *crtc)
5107{
5108 struct drm_device *dev = crtc->dev;
5109 struct drm_i915_private *dev_priv = dev->dev_private;
5110 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 5111 struct intel_encoder *encoder;
6be4a607 5112 int pipe = intel_crtc->pipe;
b52eb4dc 5113
37ca8d4c
VS
5114 if (intel_crtc->config->has_pch_encoder)
5115 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
5116
ea9d758d
DV
5117 for_each_encoder_on_crtc(dev, crtc, encoder)
5118 encoder->disable(encoder);
5119
f9b61ff6
DV
5120 drm_crtc_vblank_off(crtc);
5121 assert_vblank_disabled(crtc);
5122
3860b2ec
VS
5123 /*
5124 * Sometimes spurious CPU pipe underruns happen when the
5125 * pipe is already disabled, but FDI RX/TX is still enabled.
5126 * Happens at least with VGA+HDMI cloning. Suppress them.
5127 */
5128 if (intel_crtc->config->has_pch_encoder)
5129 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5130
575f7ab7 5131 intel_disable_pipe(intel_crtc);
32f9d658 5132
bfd16b2a 5133 ironlake_pfit_disable(intel_crtc, false);
2c07245f 5134
3860b2ec 5135 if (intel_crtc->config->has_pch_encoder) {
5a74f70a 5136 ironlake_fdi_disable(crtc);
3860b2ec
VS
5137 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5138 }
5a74f70a 5139
bf49ec8c
DV
5140 for_each_encoder_on_crtc(dev, crtc, encoder)
5141 if (encoder->post_disable)
5142 encoder->post_disable(encoder);
2c07245f 5143
6e3c9717 5144 if (intel_crtc->config->has_pch_encoder) {
d925c59a 5145 ironlake_disable_pch_transcoder(dev_priv, pipe);
6be4a607 5146
d925c59a 5147 if (HAS_PCH_CPT(dev)) {
f0f59a00
VS
5148 i915_reg_t reg;
5149 u32 temp;
5150
d925c59a
DV
5151 /* disable TRANS_DP_CTL */
5152 reg = TRANS_DP_CTL(pipe);
5153 temp = I915_READ(reg);
5154 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5155 TRANS_DP_PORT_SEL_MASK);
5156 temp |= TRANS_DP_PORT_SEL_NONE;
5157 I915_WRITE(reg, temp);
5158
5159 /* disable DPLL_SEL */
5160 temp = I915_READ(PCH_DPLL_SEL);
11887397 5161 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 5162 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 5163 }
e3421a18 5164
d925c59a
DV
5165 ironlake_fdi_pll_disable(intel_crtc);
5166 }
81b088ca
VS
5167
5168 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
d029bcad
PZ
5169
5170 intel_fbc_disable_crtc(intel_crtc);
6be4a607 5171}
1b3c7a47 5172
4f771f10 5173static void haswell_crtc_disable(struct drm_crtc *crtc)
ee7b9f93 5174{
4f771f10
PZ
5175 struct drm_device *dev = crtc->dev;
5176 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93 5177 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4f771f10 5178 struct intel_encoder *encoder;
6e3c9717 5179 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee7b9f93 5180
d2d65408
VS
5181 if (intel_crtc->config->has_pch_encoder)
5182 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5183 false);
5184
8807e55b
JN
5185 for_each_encoder_on_crtc(dev, crtc, encoder) {
5186 intel_opregion_notify_encoder(encoder, false);
4f771f10 5187 encoder->disable(encoder);
8807e55b 5188 }
4f771f10 5189
f9b61ff6
DV
5190 drm_crtc_vblank_off(crtc);
5191 assert_vblank_disabled(crtc);
5192
575f7ab7 5193 intel_disable_pipe(intel_crtc);
4f771f10 5194
6e3c9717 5195 if (intel_crtc->config->dp_encoder_is_mst)
a4bf214f
VS
5196 intel_ddi_set_vc_payload_alloc(crtc, false);
5197
a65347ba 5198 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5199 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 5200
1c132b44 5201 if (INTEL_INFO(dev)->gen >= 9)
e435d6e5 5202 skylake_scaler_disable(intel_crtc);
ff6d9f55 5203 else
bfd16b2a 5204 ironlake_pfit_disable(intel_crtc, false);
4f771f10 5205
a65347ba 5206 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5207 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10 5208
97b040aa
ID
5209 for_each_encoder_on_crtc(dev, crtc, encoder)
5210 if (encoder->post_disable)
5211 encoder->post_disable(encoder);
81b088ca 5212
92966a37
VS
5213 if (intel_crtc->config->has_pch_encoder) {
5214 lpt_disable_pch_transcoder(dev_priv);
503a74e9 5215 lpt_disable_iclkip(dev_priv);
92966a37
VS
5216 intel_ddi_fdi_disable(crtc);
5217
81b088ca
VS
5218 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5219 true);
92966a37 5220 }
d029bcad
PZ
5221
5222 intel_fbc_disable_crtc(intel_crtc);
4f771f10
PZ
5223}
5224
2dd24552
JB
5225static void i9xx_pfit_enable(struct intel_crtc *crtc)
5226{
5227 struct drm_device *dev = crtc->base.dev;
5228 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 5229 struct intel_crtc_state *pipe_config = crtc->config;
2dd24552 5230
681a8504 5231 if (!pipe_config->gmch_pfit.control)
2dd24552
JB
5232 return;
5233
2dd24552 5234 /*
c0b03411
DV
5235 * The panel fitter should only be adjusted whilst the pipe is disabled,
5236 * according to register description and PRM.
2dd24552 5237 */
c0b03411
DV
5238 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5239 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 5240
b074cec8
JB
5241 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5242 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
5243
5244 /* Border color in case we don't scale up to the full screen. Black by
5245 * default, change to something else for debugging. */
5246 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
5247}
5248
d05410f9
DA
5249static enum intel_display_power_domain port_to_power_domain(enum port port)
5250{
5251 switch (port) {
5252 case PORT_A:
6331a704 5253 return POWER_DOMAIN_PORT_DDI_A_LANES;
d05410f9 5254 case PORT_B:
6331a704 5255 return POWER_DOMAIN_PORT_DDI_B_LANES;
d05410f9 5256 case PORT_C:
6331a704 5257 return POWER_DOMAIN_PORT_DDI_C_LANES;
d05410f9 5258 case PORT_D:
6331a704 5259 return POWER_DOMAIN_PORT_DDI_D_LANES;
d8e19f99 5260 case PORT_E:
6331a704 5261 return POWER_DOMAIN_PORT_DDI_E_LANES;
d05410f9 5262 default:
b9fec167 5263 MISSING_CASE(port);
d05410f9
DA
5264 return POWER_DOMAIN_PORT_OTHER;
5265 }
5266}
5267
25f78f58
VS
5268static enum intel_display_power_domain port_to_aux_power_domain(enum port port)
5269{
5270 switch (port) {
5271 case PORT_A:
5272 return POWER_DOMAIN_AUX_A;
5273 case PORT_B:
5274 return POWER_DOMAIN_AUX_B;
5275 case PORT_C:
5276 return POWER_DOMAIN_AUX_C;
5277 case PORT_D:
5278 return POWER_DOMAIN_AUX_D;
5279 case PORT_E:
5280 /* FIXME: Check VBT for actual wiring of PORT E */
5281 return POWER_DOMAIN_AUX_D;
5282 default:
b9fec167 5283 MISSING_CASE(port);
25f78f58
VS
5284 return POWER_DOMAIN_AUX_A;
5285 }
5286}
5287
319be8ae
ID
5288enum intel_display_power_domain
5289intel_display_port_power_domain(struct intel_encoder *intel_encoder)
5290{
5291 struct drm_device *dev = intel_encoder->base.dev;
5292 struct intel_digital_port *intel_dig_port;
5293
5294 switch (intel_encoder->type) {
5295 case INTEL_OUTPUT_UNKNOWN:
5296 /* Only DDI platforms should ever use this output type */
5297 WARN_ON_ONCE(!HAS_DDI(dev));
5298 case INTEL_OUTPUT_DISPLAYPORT:
5299 case INTEL_OUTPUT_HDMI:
5300 case INTEL_OUTPUT_EDP:
5301 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
d05410f9 5302 return port_to_power_domain(intel_dig_port->port);
0e32b39c
DA
5303 case INTEL_OUTPUT_DP_MST:
5304 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5305 return port_to_power_domain(intel_dig_port->port);
319be8ae
ID
5306 case INTEL_OUTPUT_ANALOG:
5307 return POWER_DOMAIN_PORT_CRT;
5308 case INTEL_OUTPUT_DSI:
5309 return POWER_DOMAIN_PORT_DSI;
5310 default:
5311 return POWER_DOMAIN_PORT_OTHER;
5312 }
5313}
5314
25f78f58
VS
5315enum intel_display_power_domain
5316intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder)
5317{
5318 struct drm_device *dev = intel_encoder->base.dev;
5319 struct intel_digital_port *intel_dig_port;
5320
5321 switch (intel_encoder->type) {
5322 case INTEL_OUTPUT_UNKNOWN:
651174a4
ID
5323 case INTEL_OUTPUT_HDMI:
5324 /*
5325 * Only DDI platforms should ever use these output types.
5326 * We can get here after the HDMI detect code has already set
5327 * the type of the shared encoder. Since we can't be sure
5328 * what's the status of the given connectors, play safe and
5329 * run the DP detection too.
5330 */
25f78f58
VS
5331 WARN_ON_ONCE(!HAS_DDI(dev));
5332 case INTEL_OUTPUT_DISPLAYPORT:
5333 case INTEL_OUTPUT_EDP:
5334 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
5335 return port_to_aux_power_domain(intel_dig_port->port);
5336 case INTEL_OUTPUT_DP_MST:
5337 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5338 return port_to_aux_power_domain(intel_dig_port->port);
5339 default:
b9fec167 5340 MISSING_CASE(intel_encoder->type);
25f78f58
VS
5341 return POWER_DOMAIN_AUX_A;
5342 }
5343}
5344
319be8ae 5345static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
77d22dca 5346{
319be8ae
ID
5347 struct drm_device *dev = crtc->dev;
5348 struct intel_encoder *intel_encoder;
5349 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5350 enum pipe pipe = intel_crtc->pipe;
77d22dca 5351 unsigned long mask;
1a70a728 5352 enum transcoder transcoder = intel_crtc->config->cpu_transcoder;
77d22dca 5353
292b990e
ML
5354 if (!crtc->state->active)
5355 return 0;
5356
77d22dca
ID
5357 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5358 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
6e3c9717
ACO
5359 if (intel_crtc->config->pch_pfit.enabled ||
5360 intel_crtc->config->pch_pfit.force_thru)
77d22dca
ID
5361 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5362
319be8ae
ID
5363 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5364 mask |= BIT(intel_display_port_power_domain(intel_encoder));
5365
77d22dca
ID
5366 return mask;
5367}
5368
292b990e 5369static unsigned long modeset_get_crtc_power_domains(struct drm_crtc *crtc)
77d22dca 5370{
292b990e
ML
5371 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5372 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5373 enum intel_display_power_domain domain;
5374 unsigned long domains, new_domains, old_domains;
77d22dca 5375
292b990e
ML
5376 old_domains = intel_crtc->enabled_power_domains;
5377 intel_crtc->enabled_power_domains = new_domains = get_crtc_power_domains(crtc);
77d22dca 5378
292b990e
ML
5379 domains = new_domains & ~old_domains;
5380
5381 for_each_power_domain(domain, domains)
5382 intel_display_power_get(dev_priv, domain);
5383
5384 return old_domains & ~new_domains;
5385}
5386
5387static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5388 unsigned long domains)
5389{
5390 enum intel_display_power_domain domain;
5391
5392 for_each_power_domain(domain, domains)
5393 intel_display_power_put(dev_priv, domain);
5394}
77d22dca 5395
292b990e
ML
5396static void modeset_update_crtc_power_domains(struct drm_atomic_state *state)
5397{
1a617b77 5398 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
292b990e
ML
5399 struct drm_device *dev = state->dev;
5400 struct drm_i915_private *dev_priv = dev->dev_private;
5401 unsigned long put_domains[I915_MAX_PIPES] = {};
5402 struct drm_crtc_state *crtc_state;
5403 struct drm_crtc *crtc;
5404 int i;
77d22dca 5405
292b990e
ML
5406 for_each_crtc_in_state(state, crtc, crtc_state, i) {
5407 if (needs_modeset(crtc->state))
5408 put_domains[to_intel_crtc(crtc)->pipe] =
5409 modeset_get_crtc_power_domains(crtc);
77d22dca
ID
5410 }
5411
1a617b77
ML
5412 if (dev_priv->display.modeset_commit_cdclk &&
5413 intel_state->dev_cdclk != dev_priv->cdclk_freq)
5414 dev_priv->display.modeset_commit_cdclk(state);
50f6e502 5415
292b990e
ML
5416 for (i = 0; i < I915_MAX_PIPES; i++)
5417 if (put_domains[i])
5418 modeset_put_power_domains(dev_priv, put_domains[i]);
77d22dca
ID
5419}
5420
adafdc6f
MK
5421static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5422{
5423 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5424
5425 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5426 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5427 return max_cdclk_freq;
5428 else if (IS_CHERRYVIEW(dev_priv))
5429 return max_cdclk_freq*95/100;
5430 else if (INTEL_INFO(dev_priv)->gen < 4)
5431 return 2*max_cdclk_freq*90/100;
5432 else
5433 return max_cdclk_freq*90/100;
5434}
5435
560a7ae4
DL
5436static void intel_update_max_cdclk(struct drm_device *dev)
5437{
5438 struct drm_i915_private *dev_priv = dev->dev_private;
5439
ef11bdb3 5440 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
560a7ae4
DL
5441 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
5442
5443 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
5444 dev_priv->max_cdclk_freq = 675000;
5445 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
5446 dev_priv->max_cdclk_freq = 540000;
5447 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
5448 dev_priv->max_cdclk_freq = 450000;
5449 else
5450 dev_priv->max_cdclk_freq = 337500;
5451 } else if (IS_BROADWELL(dev)) {
5452 /*
5453 * FIXME with extra cooling we can allow
5454 * 540 MHz for ULX and 675 Mhz for ULT.
5455 * How can we know if extra cooling is
5456 * available? PCI ID, VTB, something else?
5457 */
5458 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5459 dev_priv->max_cdclk_freq = 450000;
5460 else if (IS_BDW_ULX(dev))
5461 dev_priv->max_cdclk_freq = 450000;
5462 else if (IS_BDW_ULT(dev))
5463 dev_priv->max_cdclk_freq = 540000;
5464 else
5465 dev_priv->max_cdclk_freq = 675000;
0904deaf
MK
5466 } else if (IS_CHERRYVIEW(dev)) {
5467 dev_priv->max_cdclk_freq = 320000;
560a7ae4
DL
5468 } else if (IS_VALLEYVIEW(dev)) {
5469 dev_priv->max_cdclk_freq = 400000;
5470 } else {
5471 /* otherwise assume cdclk is fixed */
5472 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5473 }
5474
adafdc6f
MK
5475 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5476
560a7ae4
DL
5477 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5478 dev_priv->max_cdclk_freq);
adafdc6f
MK
5479
5480 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5481 dev_priv->max_dotclk_freq);
560a7ae4
DL
5482}
5483
5484static void intel_update_cdclk(struct drm_device *dev)
5485{
5486 struct drm_i915_private *dev_priv = dev->dev_private;
5487
5488 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
5489 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5490 dev_priv->cdclk_freq);
5491
5492 /*
5493 * Program the gmbus_freq based on the cdclk frequency.
5494 * BSpec erroneously claims we should aim for 4MHz, but
5495 * in fact 1MHz is the correct frequency.
5496 */
666a4537 5497 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
560a7ae4
DL
5498 /*
5499 * Program the gmbus_freq based on the cdclk frequency.
5500 * BSpec erroneously claims we should aim for 4MHz, but
5501 * in fact 1MHz is the correct frequency.
5502 */
5503 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
5504 }
5505
5506 if (dev_priv->max_cdclk_freq == 0)
5507 intel_update_max_cdclk(dev);
5508}
5509
70d0c574 5510static void broxton_set_cdclk(struct drm_device *dev, int frequency)
f8437dd1
VK
5511{
5512 struct drm_i915_private *dev_priv = dev->dev_private;
5513 uint32_t divider;
5514 uint32_t ratio;
5515 uint32_t current_freq;
5516 int ret;
5517
5518 /* frequency = 19.2MHz * ratio / 2 / div{1,1.5,2,4} */
5519 switch (frequency) {
5520 case 144000:
5521 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
5522 ratio = BXT_DE_PLL_RATIO(60);
5523 break;
5524 case 288000:
5525 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
5526 ratio = BXT_DE_PLL_RATIO(60);
5527 break;
5528 case 384000:
5529 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
5530 ratio = BXT_DE_PLL_RATIO(60);
5531 break;
5532 case 576000:
5533 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5534 ratio = BXT_DE_PLL_RATIO(60);
5535 break;
5536 case 624000:
5537 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5538 ratio = BXT_DE_PLL_RATIO(65);
5539 break;
5540 case 19200:
5541 /*
5542 * Bypass frequency with DE PLL disabled. Init ratio, divider
5543 * to suppress GCC warning.
5544 */
5545 ratio = 0;
5546 divider = 0;
5547 break;
5548 default:
5549 DRM_ERROR("unsupported CDCLK freq %d", frequency);
5550
5551 return;
5552 }
5553
5554 mutex_lock(&dev_priv->rps.hw_lock);
5555 /* Inform power controller of upcoming frequency change */
5556 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5557 0x80000000);
5558 mutex_unlock(&dev_priv->rps.hw_lock);
5559
5560 if (ret) {
5561 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
5562 ret, frequency);
5563 return;
5564 }
5565
5566 current_freq = I915_READ(CDCLK_CTL) & CDCLK_FREQ_DECIMAL_MASK;
5567 /* convert from .1 fixpoint MHz with -1MHz offset to kHz */
5568 current_freq = current_freq * 500 + 1000;
5569
5570 /*
5571 * DE PLL has to be disabled when
5572 * - setting to 19.2MHz (bypass, PLL isn't used)
5573 * - before setting to 624MHz (PLL needs toggling)
5574 * - before setting to any frequency from 624MHz (PLL needs toggling)
5575 */
5576 if (frequency == 19200 || frequency == 624000 ||
5577 current_freq == 624000) {
5578 I915_WRITE(BXT_DE_PLL_ENABLE, ~BXT_DE_PLL_PLL_ENABLE);
5579 /* Timeout 200us */
5580 if (wait_for(!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK),
5581 1))
5582 DRM_ERROR("timout waiting for DE PLL unlock\n");
5583 }
5584
5585 if (frequency != 19200) {
5586 uint32_t val;
5587
5588 val = I915_READ(BXT_DE_PLL_CTL);
5589 val &= ~BXT_DE_PLL_RATIO_MASK;
5590 val |= ratio;
5591 I915_WRITE(BXT_DE_PLL_CTL, val);
5592
5593 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5594 /* Timeout 200us */
5595 if (wait_for(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK, 1))
5596 DRM_ERROR("timeout waiting for DE PLL lock\n");
5597
5598 val = I915_READ(CDCLK_CTL);
5599 val &= ~BXT_CDCLK_CD2X_DIV_SEL_MASK;
5600 val |= divider;
5601 /*
5602 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5603 * enable otherwise.
5604 */
5605 val &= ~BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5606 if (frequency >= 500000)
5607 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5608
5609 val &= ~CDCLK_FREQ_DECIMAL_MASK;
5610 /* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5611 val |= (frequency - 1000) / 500;
5612 I915_WRITE(CDCLK_CTL, val);
5613 }
5614
5615 mutex_lock(&dev_priv->rps.hw_lock);
5616 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5617 DIV_ROUND_UP(frequency, 25000));
5618 mutex_unlock(&dev_priv->rps.hw_lock);
5619
5620 if (ret) {
5621 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
5622 ret, frequency);
5623 return;
5624 }
5625
a47871bd 5626 intel_update_cdclk(dev);
f8437dd1
VK
5627}
5628
5629void broxton_init_cdclk(struct drm_device *dev)
5630{
5631 struct drm_i915_private *dev_priv = dev->dev_private;
5632 uint32_t val;
5633
5634 /*
5635 * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT
5636 * or else the reset will hang because there is no PCH to respond.
5637 * Move the handshake programming to initialization sequence.
5638 * Previously was left up to BIOS.
5639 */
5640 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5641 val &= ~RESET_PCH_HANDSHAKE_ENABLE;
5642 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
5643
5644 /* Enable PG1 for cdclk */
5645 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5646
5647 /* check if cd clock is enabled */
5648 if (I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_PLL_ENABLE) {
5649 DRM_DEBUG_KMS("Display already initialized\n");
5650 return;
5651 }
5652
5653 /*
5654 * FIXME:
5655 * - The initial CDCLK needs to be read from VBT.
5656 * Need to make this change after VBT has changes for BXT.
5657 * - check if setting the max (or any) cdclk freq is really necessary
5658 * here, it belongs to modeset time
5659 */
5660 broxton_set_cdclk(dev, 624000);
5661
5662 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
22e02c0b
VS
5663 POSTING_READ(DBUF_CTL);
5664
f8437dd1
VK
5665 udelay(10);
5666
5667 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5668 DRM_ERROR("DBuf power enable timeout!\n");
5669}
5670
5671void broxton_uninit_cdclk(struct drm_device *dev)
5672{
5673 struct drm_i915_private *dev_priv = dev->dev_private;
5674
5675 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
22e02c0b
VS
5676 POSTING_READ(DBUF_CTL);
5677
f8437dd1
VK
5678 udelay(10);
5679
5680 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5681 DRM_ERROR("DBuf power disable timeout!\n");
5682
5683 /* Set minimum (bypass) frequency, in effect turning off the DE PLL */
5684 broxton_set_cdclk(dev, 19200);
5685
5686 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5687}
5688
5d96d8af
DL
5689static const struct skl_cdclk_entry {
5690 unsigned int freq;
5691 unsigned int vco;
5692} skl_cdclk_frequencies[] = {
5693 { .freq = 308570, .vco = 8640 },
5694 { .freq = 337500, .vco = 8100 },
5695 { .freq = 432000, .vco = 8640 },
5696 { .freq = 450000, .vco = 8100 },
5697 { .freq = 540000, .vco = 8100 },
5698 { .freq = 617140, .vco = 8640 },
5699 { .freq = 675000, .vco = 8100 },
5700};
5701
5702static unsigned int skl_cdclk_decimal(unsigned int freq)
5703{
5704 return (freq - 1000) / 500;
5705}
5706
5707static unsigned int skl_cdclk_get_vco(unsigned int freq)
5708{
5709 unsigned int i;
5710
5711 for (i = 0; i < ARRAY_SIZE(skl_cdclk_frequencies); i++) {
5712 const struct skl_cdclk_entry *e = &skl_cdclk_frequencies[i];
5713
5714 if (e->freq == freq)
5715 return e->vco;
5716 }
5717
5718 return 8100;
5719}
5720
5721static void
5722skl_dpll0_enable(struct drm_i915_private *dev_priv, unsigned int required_vco)
5723{
5724 unsigned int min_freq;
5725 u32 val;
5726
5727 /* select the minimum CDCLK before enabling DPLL 0 */
5728 val = I915_READ(CDCLK_CTL);
5729 val &= ~CDCLK_FREQ_SEL_MASK | ~CDCLK_FREQ_DECIMAL_MASK;
5730 val |= CDCLK_FREQ_337_308;
5731
5732 if (required_vco == 8640)
5733 min_freq = 308570;
5734 else
5735 min_freq = 337500;
5736
5737 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_freq);
5738
5739 I915_WRITE(CDCLK_CTL, val);
5740 POSTING_READ(CDCLK_CTL);
5741
5742 /*
5743 * We always enable DPLL0 with the lowest link rate possible, but still
5744 * taking into account the VCO required to operate the eDP panel at the
5745 * desired frequency. The usual DP link rates operate with a VCO of
5746 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
5747 * The modeset code is responsible for the selection of the exact link
5748 * rate later on, with the constraint of choosing a frequency that
5749 * works with required_vco.
5750 */
5751 val = I915_READ(DPLL_CTRL1);
5752
5753 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
5754 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
5755 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
5756 if (required_vco == 8640)
5757 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
5758 SKL_DPLL0);
5759 else
5760 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
5761 SKL_DPLL0);
5762
5763 I915_WRITE(DPLL_CTRL1, val);
5764 POSTING_READ(DPLL_CTRL1);
5765
5766 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
5767
5768 if (wait_for(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK, 5))
5769 DRM_ERROR("DPLL0 not locked\n");
5770}
5771
5772static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
5773{
5774 int ret;
5775 u32 val;
5776
5777 /* inform PCU we want to change CDCLK */
5778 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
5779 mutex_lock(&dev_priv->rps.hw_lock);
5780 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
5781 mutex_unlock(&dev_priv->rps.hw_lock);
5782
5783 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
5784}
5785
5786static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
5787{
5788 unsigned int i;
5789
5790 for (i = 0; i < 15; i++) {
5791 if (skl_cdclk_pcu_ready(dev_priv))
5792 return true;
5793 udelay(10);
5794 }
5795
5796 return false;
5797}
5798
5799static void skl_set_cdclk(struct drm_i915_private *dev_priv, unsigned int freq)
5800{
560a7ae4 5801 struct drm_device *dev = dev_priv->dev;
5d96d8af
DL
5802 u32 freq_select, pcu_ack;
5803
5804 DRM_DEBUG_DRIVER("Changing CDCLK to %dKHz\n", freq);
5805
5806 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
5807 DRM_ERROR("failed to inform PCU about cdclk change\n");
5808 return;
5809 }
5810
5811 /* set CDCLK_CTL */
5812 switch(freq) {
5813 case 450000:
5814 case 432000:
5815 freq_select = CDCLK_FREQ_450_432;
5816 pcu_ack = 1;
5817 break;
5818 case 540000:
5819 freq_select = CDCLK_FREQ_540;
5820 pcu_ack = 2;
5821 break;
5822 case 308570:
5823 case 337500:
5824 default:
5825 freq_select = CDCLK_FREQ_337_308;
5826 pcu_ack = 0;
5827 break;
5828 case 617140:
5829 case 675000:
5830 freq_select = CDCLK_FREQ_675_617;
5831 pcu_ack = 3;
5832 break;
5833 }
5834
5835 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(freq));
5836 POSTING_READ(CDCLK_CTL);
5837
5838 /* inform PCU of the change */
5839 mutex_lock(&dev_priv->rps.hw_lock);
5840 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
5841 mutex_unlock(&dev_priv->rps.hw_lock);
560a7ae4
DL
5842
5843 intel_update_cdclk(dev);
5d96d8af
DL
5844}
5845
5846void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
5847{
5848 /* disable DBUF power */
5849 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
5850 POSTING_READ(DBUF_CTL);
5851
5852 udelay(10);
5853
5854 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5855 DRM_ERROR("DBuf power disable timeout\n");
5856
ab96c1ee
ID
5857 /* disable DPLL0 */
5858 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
5859 if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1))
5860 DRM_ERROR("Couldn't disable DPLL0\n");
5d96d8af
DL
5861}
5862
5863void skl_init_cdclk(struct drm_i915_private *dev_priv)
5864{
5d96d8af
DL
5865 unsigned int required_vco;
5866
39d9b85a
GW
5867 /* DPLL0 not enabled (happens on early BIOS versions) */
5868 if (!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_ENABLE)) {
5869 /* enable DPLL0 */
5870 required_vco = skl_cdclk_get_vco(dev_priv->skl_boot_cdclk);
5871 skl_dpll0_enable(dev_priv, required_vco);
5d96d8af
DL
5872 }
5873
5d96d8af
DL
5874 /* set CDCLK to the frequency the BIOS chose */
5875 skl_set_cdclk(dev_priv, dev_priv->skl_boot_cdclk);
5876
5877 /* enable DBUF power */
5878 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
5879 POSTING_READ(DBUF_CTL);
5880
5881 udelay(10);
5882
5883 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5884 DRM_ERROR("DBuf power enable timeout\n");
5885}
5886
c73666f3
SK
5887int skl_sanitize_cdclk(struct drm_i915_private *dev_priv)
5888{
5889 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
5890 uint32_t cdctl = I915_READ(CDCLK_CTL);
5891 int freq = dev_priv->skl_boot_cdclk;
5892
f1b391a5
SK
5893 /*
5894 * check if the pre-os intialized the display
5895 * There is SWF18 scratchpad register defined which is set by the
5896 * pre-os which can be used by the OS drivers to check the status
5897 */
5898 if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0)
5899 goto sanitize;
5900
c73666f3
SK
5901 /* Is PLL enabled and locked ? */
5902 if (!((lcpll1 & LCPLL_PLL_ENABLE) && (lcpll1 & LCPLL_PLL_LOCK)))
5903 goto sanitize;
5904
5905 /* DPLL okay; verify the cdclock
5906 *
5907 * Noticed in some instances that the freq selection is correct but
5908 * decimal part is programmed wrong from BIOS where pre-os does not
5909 * enable display. Verify the same as well.
5910 */
5911 if (cdctl == ((cdctl & CDCLK_FREQ_SEL_MASK) | skl_cdclk_decimal(freq)))
5912 /* All well; nothing to sanitize */
5913 return false;
5914sanitize:
5915 /*
5916 * As of now initialize with max cdclk till
5917 * we get dynamic cdclk support
5918 * */
5919 dev_priv->skl_boot_cdclk = dev_priv->max_cdclk_freq;
5920 skl_init_cdclk(dev_priv);
5921
5922 /* we did have to sanitize */
5923 return true;
5924}
5925
30a970c6
JB
5926/* Adjust CDclk dividers to allow high res or save power if possible */
5927static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5928{
5929 struct drm_i915_private *dev_priv = dev->dev_private;
5930 u32 val, cmd;
5931
164dfd28
VK
5932 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5933 != dev_priv->cdclk_freq);
d60c4473 5934
dfcab17e 5935 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
30a970c6 5936 cmd = 2;
dfcab17e 5937 else if (cdclk == 266667)
30a970c6
JB
5938 cmd = 1;
5939 else
5940 cmd = 0;
5941
5942 mutex_lock(&dev_priv->rps.hw_lock);
5943 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5944 val &= ~DSPFREQGUAR_MASK;
5945 val |= (cmd << DSPFREQGUAR_SHIFT);
5946 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5947 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5948 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5949 50)) {
5950 DRM_ERROR("timed out waiting for CDclk change\n");
5951 }
5952 mutex_unlock(&dev_priv->rps.hw_lock);
5953
54433e91
VS
5954 mutex_lock(&dev_priv->sb_lock);
5955
dfcab17e 5956 if (cdclk == 400000) {
6bcda4f0 5957 u32 divider;
30a970c6 5958
6bcda4f0 5959 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
30a970c6 5960
30a970c6
JB
5961 /* adjust cdclk divider */
5962 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
87d5d259 5963 val &= ~CCK_FREQUENCY_VALUES;
30a970c6
JB
5964 val |= divider;
5965 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
a877e801
VS
5966
5967 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
87d5d259 5968 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
a877e801
VS
5969 50))
5970 DRM_ERROR("timed out waiting for CDclk change\n");
30a970c6
JB
5971 }
5972
30a970c6
JB
5973 /* adjust self-refresh exit latency value */
5974 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5975 val &= ~0x7f;
5976
5977 /*
5978 * For high bandwidth configs, we set a higher latency in the bunit
5979 * so that the core display fetch happens in time to avoid underruns.
5980 */
dfcab17e 5981 if (cdclk == 400000)
30a970c6
JB
5982 val |= 4500 / 250; /* 4.5 usec */
5983 else
5984 val |= 3000 / 250; /* 3.0 usec */
5985 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
54433e91 5986
a580516d 5987 mutex_unlock(&dev_priv->sb_lock);
30a970c6 5988
b6283055 5989 intel_update_cdclk(dev);
30a970c6
JB
5990}
5991
383c5a6a
VS
5992static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5993{
5994 struct drm_i915_private *dev_priv = dev->dev_private;
5995 u32 val, cmd;
5996
164dfd28
VK
5997 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5998 != dev_priv->cdclk_freq);
383c5a6a
VS
5999
6000 switch (cdclk) {
383c5a6a
VS
6001 case 333333:
6002 case 320000:
383c5a6a 6003 case 266667:
383c5a6a 6004 case 200000:
383c5a6a
VS
6005 break;
6006 default:
5f77eeb0 6007 MISSING_CASE(cdclk);
383c5a6a
VS
6008 return;
6009 }
6010
9d0d3fda
VS
6011 /*
6012 * Specs are full of misinformation, but testing on actual
6013 * hardware has shown that we just need to write the desired
6014 * CCK divider into the Punit register.
6015 */
6016 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
6017
383c5a6a
VS
6018 mutex_lock(&dev_priv->rps.hw_lock);
6019 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
6020 val &= ~DSPFREQGUAR_MASK_CHV;
6021 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
6022 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
6023 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
6024 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
6025 50)) {
6026 DRM_ERROR("timed out waiting for CDclk change\n");
6027 }
6028 mutex_unlock(&dev_priv->rps.hw_lock);
6029
b6283055 6030 intel_update_cdclk(dev);
383c5a6a
VS
6031}
6032
30a970c6
JB
6033static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
6034 int max_pixclk)
6035{
6bcda4f0 6036 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
6cca3195 6037 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
29dc7ef3 6038
30a970c6
JB
6039 /*
6040 * Really only a few cases to deal with, as only 4 CDclks are supported:
6041 * 200MHz
6042 * 267MHz
29dc7ef3 6043 * 320/333MHz (depends on HPLL freq)
6cca3195
VS
6044 * 400MHz (VLV only)
6045 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
6046 * of the lower bin and adjust if needed.
e37c67a1
VS
6047 *
6048 * We seem to get an unstable or solid color picture at 200MHz.
6049 * Not sure what's wrong. For now use 200MHz only when all pipes
6050 * are off.
30a970c6 6051 */
6cca3195
VS
6052 if (!IS_CHERRYVIEW(dev_priv) &&
6053 max_pixclk > freq_320*limit/100)
dfcab17e 6054 return 400000;
6cca3195 6055 else if (max_pixclk > 266667*limit/100)
29dc7ef3 6056 return freq_320;
e37c67a1 6057 else if (max_pixclk > 0)
dfcab17e 6058 return 266667;
e37c67a1
VS
6059 else
6060 return 200000;
30a970c6
JB
6061}
6062
f8437dd1
VK
6063static int broxton_calc_cdclk(struct drm_i915_private *dev_priv,
6064 int max_pixclk)
6065{
6066 /*
6067 * FIXME:
6068 * - remove the guardband, it's not needed on BXT
6069 * - set 19.2MHz bypass frequency if there are no active pipes
6070 */
6071 if (max_pixclk > 576000*9/10)
6072 return 624000;
6073 else if (max_pixclk > 384000*9/10)
6074 return 576000;
6075 else if (max_pixclk > 288000*9/10)
6076 return 384000;
6077 else if (max_pixclk > 144000*9/10)
6078 return 288000;
6079 else
6080 return 144000;
6081}
6082
a821fc46
ACO
6083/* Compute the max pixel clock for new configuration. Uses atomic state if
6084 * that's non-NULL, look at current state otherwise. */
6085static int intel_mode_max_pixclk(struct drm_device *dev,
6086 struct drm_atomic_state *state)
30a970c6 6087{
565602d7
ML
6088 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
6089 struct drm_i915_private *dev_priv = dev->dev_private;
6090 struct drm_crtc *crtc;
6091 struct drm_crtc_state *crtc_state;
6092 unsigned max_pixclk = 0, i;
6093 enum pipe pipe;
30a970c6 6094
565602d7
ML
6095 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
6096 sizeof(intel_state->min_pixclk));
304603f4 6097
565602d7
ML
6098 for_each_crtc_in_state(state, crtc, crtc_state, i) {
6099 int pixclk = 0;
6100
6101 if (crtc_state->enable)
6102 pixclk = crtc_state->adjusted_mode.crtc_clock;
304603f4 6103
565602d7 6104 intel_state->min_pixclk[i] = pixclk;
30a970c6
JB
6105 }
6106
565602d7
ML
6107 if (!intel_state->active_crtcs)
6108 return 0;
6109
6110 for_each_pipe(dev_priv, pipe)
6111 max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk);
6112
30a970c6
JB
6113 return max_pixclk;
6114}
6115
27c329ed 6116static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
30a970c6 6117{
27c329ed
ML
6118 struct drm_device *dev = state->dev;
6119 struct drm_i915_private *dev_priv = dev->dev_private;
6120 int max_pixclk = intel_mode_max_pixclk(dev, state);
1a617b77
ML
6121 struct intel_atomic_state *intel_state =
6122 to_intel_atomic_state(state);
30a970c6 6123
304603f4
ACO
6124 if (max_pixclk < 0)
6125 return max_pixclk;
30a970c6 6126
1a617b77 6127 intel_state->cdclk = intel_state->dev_cdclk =
27c329ed 6128 valleyview_calc_cdclk(dev_priv, max_pixclk);
0a9ab303 6129
1a617b77
ML
6130 if (!intel_state->active_crtcs)
6131 intel_state->dev_cdclk = valleyview_calc_cdclk(dev_priv, 0);
6132
27c329ed
ML
6133 return 0;
6134}
304603f4 6135
27c329ed
ML
6136static int broxton_modeset_calc_cdclk(struct drm_atomic_state *state)
6137{
6138 struct drm_device *dev = state->dev;
6139 struct drm_i915_private *dev_priv = dev->dev_private;
6140 int max_pixclk = intel_mode_max_pixclk(dev, state);
1a617b77
ML
6141 struct intel_atomic_state *intel_state =
6142 to_intel_atomic_state(state);
85a96e7a 6143
27c329ed
ML
6144 if (max_pixclk < 0)
6145 return max_pixclk;
85a96e7a 6146
1a617b77 6147 intel_state->cdclk = intel_state->dev_cdclk =
27c329ed 6148 broxton_calc_cdclk(dev_priv, max_pixclk);
85a96e7a 6149
1a617b77
ML
6150 if (!intel_state->active_crtcs)
6151 intel_state->dev_cdclk = broxton_calc_cdclk(dev_priv, 0);
6152
27c329ed 6153 return 0;
30a970c6
JB
6154}
6155
1e69cd74
VS
6156static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
6157{
6158 unsigned int credits, default_credits;
6159
6160 if (IS_CHERRYVIEW(dev_priv))
6161 default_credits = PFI_CREDIT(12);
6162 else
6163 default_credits = PFI_CREDIT(8);
6164
bfa7df01 6165 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
1e69cd74
VS
6166 /* CHV suggested value is 31 or 63 */
6167 if (IS_CHERRYVIEW(dev_priv))
fcc0008f 6168 credits = PFI_CREDIT_63;
1e69cd74
VS
6169 else
6170 credits = PFI_CREDIT(15);
6171 } else {
6172 credits = default_credits;
6173 }
6174
6175 /*
6176 * WA - write default credits before re-programming
6177 * FIXME: should we also set the resend bit here?
6178 */
6179 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6180 default_credits);
6181
6182 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6183 credits | PFI_CREDIT_RESEND);
6184
6185 /*
6186 * FIXME is this guaranteed to clear
6187 * immediately or should we poll for it?
6188 */
6189 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6190}
6191
27c329ed 6192static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
30a970c6 6193{
a821fc46 6194 struct drm_device *dev = old_state->dev;
30a970c6 6195 struct drm_i915_private *dev_priv = dev->dev_private;
1a617b77
ML
6196 struct intel_atomic_state *old_intel_state =
6197 to_intel_atomic_state(old_state);
6198 unsigned req_cdclk = old_intel_state->dev_cdclk;
30a970c6 6199
27c329ed
ML
6200 /*
6201 * FIXME: We can end up here with all power domains off, yet
6202 * with a CDCLK frequency other than the minimum. To account
6203 * for this take the PIPE-A power domain, which covers the HW
6204 * blocks needed for the following programming. This can be
6205 * removed once it's guaranteed that we get here either with
6206 * the minimum CDCLK set, or the required power domains
6207 * enabled.
6208 */
6209 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
738c05c0 6210
27c329ed
ML
6211 if (IS_CHERRYVIEW(dev))
6212 cherryview_set_cdclk(dev, req_cdclk);
6213 else
6214 valleyview_set_cdclk(dev, req_cdclk);
738c05c0 6215
27c329ed 6216 vlv_program_pfi_credits(dev_priv);
1e69cd74 6217
27c329ed 6218 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
30a970c6
JB
6219}
6220
89b667f8
JB
6221static void valleyview_crtc_enable(struct drm_crtc *crtc)
6222{
6223 struct drm_device *dev = crtc->dev;
a72e4c9f 6224 struct drm_i915_private *dev_priv = to_i915(dev);
89b667f8
JB
6225 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6226 struct intel_encoder *encoder;
6227 int pipe = intel_crtc->pipe;
89b667f8 6228
53d9f4e9 6229 if (WARN_ON(intel_crtc->active))
89b667f8
JB
6230 return;
6231
6e3c9717 6232 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 6233 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6234
6235 intel_set_pipe_timings(intel_crtc);
6236
c14b0485
VS
6237 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
6238 struct drm_i915_private *dev_priv = dev->dev_private;
6239
6240 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6241 I915_WRITE(CHV_CANVAS(pipe), 0);
6242 }
6243
5b18e57c
DV
6244 i9xx_set_pipeconf(intel_crtc);
6245
89b667f8 6246 intel_crtc->active = true;
89b667f8 6247
a72e4c9f 6248 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6249
89b667f8
JB
6250 for_each_encoder_on_crtc(dev, crtc, encoder)
6251 if (encoder->pre_pll_enable)
6252 encoder->pre_pll_enable(encoder);
6253
a65347ba 6254 if (!intel_crtc->config->has_dsi_encoder) {
c0b4c660
VS
6255 if (IS_CHERRYVIEW(dev)) {
6256 chv_prepare_pll(intel_crtc, intel_crtc->config);
6e3c9717 6257 chv_enable_pll(intel_crtc, intel_crtc->config);
c0b4c660
VS
6258 } else {
6259 vlv_prepare_pll(intel_crtc, intel_crtc->config);
6e3c9717 6260 vlv_enable_pll(intel_crtc, intel_crtc->config);
c0b4c660 6261 }
9d556c99 6262 }
89b667f8
JB
6263
6264 for_each_encoder_on_crtc(dev, crtc, encoder)
6265 if (encoder->pre_enable)
6266 encoder->pre_enable(encoder);
6267
2dd24552
JB
6268 i9xx_pfit_enable(intel_crtc);
6269
63cbb074
VS
6270 intel_crtc_load_lut(crtc);
6271
e1fdc473 6272 intel_enable_pipe(intel_crtc);
be6a6f8e 6273
4b3a9526
VS
6274 assert_vblank_disabled(crtc);
6275 drm_crtc_vblank_on(crtc);
6276
f9b61ff6
DV
6277 for_each_encoder_on_crtc(dev, crtc, encoder)
6278 encoder->enable(encoder);
89b667f8
JB
6279}
6280
f13c2ef3
DV
6281static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6282{
6283 struct drm_device *dev = crtc->base.dev;
6284 struct drm_i915_private *dev_priv = dev->dev_private;
6285
6e3c9717
ACO
6286 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6287 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
f13c2ef3
DV
6288}
6289
0b8765c6 6290static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
6291{
6292 struct drm_device *dev = crtc->dev;
a72e4c9f 6293 struct drm_i915_private *dev_priv = to_i915(dev);
79e53945 6294 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 6295 struct intel_encoder *encoder;
79e53945 6296 int pipe = intel_crtc->pipe;
79e53945 6297
53d9f4e9 6298 if (WARN_ON(intel_crtc->active))
f7abfe8b
CW
6299 return;
6300
f13c2ef3
DV
6301 i9xx_set_pll_dividers(intel_crtc);
6302
6e3c9717 6303 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 6304 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6305
6306 intel_set_pipe_timings(intel_crtc);
6307
5b18e57c
DV
6308 i9xx_set_pipeconf(intel_crtc);
6309
f7abfe8b 6310 intel_crtc->active = true;
6b383a7f 6311
4a3436e8 6312 if (!IS_GEN2(dev))
a72e4c9f 6313 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6314
9d6d9f19
MK
6315 for_each_encoder_on_crtc(dev, crtc, encoder)
6316 if (encoder->pre_enable)
6317 encoder->pre_enable(encoder);
6318
f6736a1a
DV
6319 i9xx_enable_pll(intel_crtc);
6320
2dd24552
JB
6321 i9xx_pfit_enable(intel_crtc);
6322
63cbb074
VS
6323 intel_crtc_load_lut(crtc);
6324
f37fcc2a 6325 intel_update_watermarks(crtc);
e1fdc473 6326 intel_enable_pipe(intel_crtc);
be6a6f8e 6327
4b3a9526
VS
6328 assert_vblank_disabled(crtc);
6329 drm_crtc_vblank_on(crtc);
6330
f9b61ff6
DV
6331 for_each_encoder_on_crtc(dev, crtc, encoder)
6332 encoder->enable(encoder);
d029bcad
PZ
6333
6334 intel_fbc_enable(intel_crtc);
0b8765c6 6335}
79e53945 6336
87476d63
DV
6337static void i9xx_pfit_disable(struct intel_crtc *crtc)
6338{
6339 struct drm_device *dev = crtc->base.dev;
6340 struct drm_i915_private *dev_priv = dev->dev_private;
87476d63 6341
6e3c9717 6342 if (!crtc->config->gmch_pfit.control)
328d8e82 6343 return;
87476d63 6344
328d8e82 6345 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 6346
328d8e82
DV
6347 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6348 I915_READ(PFIT_CONTROL));
6349 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
6350}
6351
0b8765c6
JB
6352static void i9xx_crtc_disable(struct drm_crtc *crtc)
6353{
6354 struct drm_device *dev = crtc->dev;
6355 struct drm_i915_private *dev_priv = dev->dev_private;
6356 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 6357 struct intel_encoder *encoder;
0b8765c6 6358 int pipe = intel_crtc->pipe;
ef9c3aee 6359
6304cd91
VS
6360 /*
6361 * On gen2 planes are double buffered but the pipe isn't, so we must
6362 * wait for planes to fully turn off before disabling the pipe.
564ed191
ID
6363 * We also need to wait on all gmch platforms because of the
6364 * self-refresh mode constraint explained above.
6304cd91 6365 */
564ed191 6366 intel_wait_for_vblank(dev, pipe);
6304cd91 6367
4b3a9526
VS
6368 for_each_encoder_on_crtc(dev, crtc, encoder)
6369 encoder->disable(encoder);
6370
f9b61ff6
DV
6371 drm_crtc_vblank_off(crtc);
6372 assert_vblank_disabled(crtc);
6373
575f7ab7 6374 intel_disable_pipe(intel_crtc);
24a1f16d 6375
87476d63 6376 i9xx_pfit_disable(intel_crtc);
24a1f16d 6377
89b667f8
JB
6378 for_each_encoder_on_crtc(dev, crtc, encoder)
6379 if (encoder->post_disable)
6380 encoder->post_disable(encoder);
6381
a65347ba 6382 if (!intel_crtc->config->has_dsi_encoder) {
076ed3b2
CML
6383 if (IS_CHERRYVIEW(dev))
6384 chv_disable_pll(dev_priv, pipe);
6385 else if (IS_VALLEYVIEW(dev))
6386 vlv_disable_pll(dev_priv, pipe);
6387 else
1c4e0274 6388 i9xx_disable_pll(intel_crtc);
076ed3b2 6389 }
0b8765c6 6390
d6db995f
VS
6391 for_each_encoder_on_crtc(dev, crtc, encoder)
6392 if (encoder->post_pll_disable)
6393 encoder->post_pll_disable(encoder);
6394
4a3436e8 6395 if (!IS_GEN2(dev))
a72e4c9f 6396 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
d029bcad
PZ
6397
6398 intel_fbc_disable_crtc(intel_crtc);
0b8765c6
JB
6399}
6400
b17d48e2
ML
6401static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
6402{
6403 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6404 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6405 enum intel_display_power_domain domain;
6406 unsigned long domains;
6407
6408 if (!intel_crtc->active)
6409 return;
6410
a539205a 6411 if (to_intel_plane_state(crtc->primary->state)->visible) {
fc32b1fd
ML
6412 WARN_ON(intel_crtc->unpin_work);
6413
a539205a 6414 intel_pre_disable_primary(crtc);
54a41961
ML
6415
6416 intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary));
6417 to_intel_plane_state(crtc->primary->state)->visible = false;
a539205a
ML
6418 }
6419
b17d48e2 6420 dev_priv->display.crtc_disable(crtc);
37d9078b
MR
6421 intel_crtc->active = false;
6422 intel_update_watermarks(crtc);
1f7457b1 6423 intel_disable_shared_dpll(intel_crtc);
b17d48e2
ML
6424
6425 domains = intel_crtc->enabled_power_domains;
6426 for_each_power_domain(domain, domains)
6427 intel_display_power_put(dev_priv, domain);
6428 intel_crtc->enabled_power_domains = 0;
565602d7
ML
6429
6430 dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe);
6431 dev_priv->min_pixclk[intel_crtc->pipe] = 0;
b17d48e2
ML
6432}
6433
6b72d486
ML
6434/*
6435 * turn all crtc's off, but do not adjust state
6436 * This has to be paired with a call to intel_modeset_setup_hw_state.
6437 */
70e0bd74 6438int intel_display_suspend(struct drm_device *dev)
ee7b9f93 6439{
70e0bd74
ML
6440 struct drm_mode_config *config = &dev->mode_config;
6441 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
6442 struct drm_atomic_state *state;
6b72d486 6443 struct drm_crtc *crtc;
70e0bd74
ML
6444 unsigned crtc_mask = 0;
6445 int ret = 0;
6446
6447 if (WARN_ON(!ctx))
6448 return 0;
6449
6450 lockdep_assert_held(&ctx->ww_ctx);
6451 state = drm_atomic_state_alloc(dev);
6452 if (WARN_ON(!state))
6453 return -ENOMEM;
6454
6455 state->acquire_ctx = ctx;
6456 state->allow_modeset = true;
6457
6458 for_each_crtc(dev, crtc) {
6459 struct drm_crtc_state *crtc_state =
6460 drm_atomic_get_crtc_state(state, crtc);
6b72d486 6461
70e0bd74
ML
6462 ret = PTR_ERR_OR_ZERO(crtc_state);
6463 if (ret)
6464 goto free;
6465
6466 if (!crtc_state->active)
6467 continue;
6468
6469 crtc_state->active = false;
6470 crtc_mask |= 1 << drm_crtc_index(crtc);
6471 }
6472
6473 if (crtc_mask) {
74c090b1 6474 ret = drm_atomic_commit(state);
70e0bd74
ML
6475
6476 if (!ret) {
6477 for_each_crtc(dev, crtc)
6478 if (crtc_mask & (1 << drm_crtc_index(crtc)))
6479 crtc->state->active = true;
6480
6481 return ret;
6482 }
6483 }
6484
6485free:
6486 if (ret)
6487 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
6488 drm_atomic_state_free(state);
6489 return ret;
ee7b9f93
JB
6490}
6491
ea5b213a 6492void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 6493{
4ef69c7a 6494 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 6495
ea5b213a
CW
6496 drm_encoder_cleanup(encoder);
6497 kfree(intel_encoder);
7e7d76c3
JB
6498}
6499
0a91ca29
DV
6500/* Cross check the actual hw state with our own modeset state tracking (and it's
6501 * internal consistency). */
b980514c 6502static void intel_connector_check_state(struct intel_connector *connector)
79e53945 6503{
35dd3c64
ML
6504 struct drm_crtc *crtc = connector->base.state->crtc;
6505
6506 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6507 connector->base.base.id,
6508 connector->base.name);
6509
0a91ca29 6510 if (connector->get_hw_state(connector)) {
e85376cb 6511 struct intel_encoder *encoder = connector->encoder;
35dd3c64 6512 struct drm_connector_state *conn_state = connector->base.state;
0a91ca29 6513
35dd3c64
ML
6514 I915_STATE_WARN(!crtc,
6515 "connector enabled without attached crtc\n");
0a91ca29 6516
35dd3c64
ML
6517 if (!crtc)
6518 return;
6519
6520 I915_STATE_WARN(!crtc->state->active,
6521 "connector is active, but attached crtc isn't\n");
6522
e85376cb 6523 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
35dd3c64
ML
6524 return;
6525
e85376cb 6526 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
35dd3c64
ML
6527 "atomic encoder doesn't match attached encoder\n");
6528
e85376cb 6529 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
35dd3c64
ML
6530 "attached encoder crtc differs from connector crtc\n");
6531 } else {
4d688a2a
ML
6532 I915_STATE_WARN(crtc && crtc->state->active,
6533 "attached crtc is active, but connector isn't\n");
35dd3c64
ML
6534 I915_STATE_WARN(!crtc && connector->base.state->best_encoder,
6535 "best encoder set without crtc!\n");
0a91ca29 6536 }
79e53945
JB
6537}
6538
08d9bc92
ACO
6539int intel_connector_init(struct intel_connector *connector)
6540{
6541 struct drm_connector_state *connector_state;
6542
6543 connector_state = kzalloc(sizeof *connector_state, GFP_KERNEL);
6544 if (!connector_state)
6545 return -ENOMEM;
6546
6547 connector->base.state = connector_state;
6548 return 0;
6549}
6550
6551struct intel_connector *intel_connector_alloc(void)
6552{
6553 struct intel_connector *connector;
6554
6555 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6556 if (!connector)
6557 return NULL;
6558
6559 if (intel_connector_init(connector) < 0) {
6560 kfree(connector);
6561 return NULL;
6562 }
6563
6564 return connector;
6565}
6566
f0947c37
DV
6567/* Simple connector->get_hw_state implementation for encoders that support only
6568 * one connector and no cloning and hence the encoder state determines the state
6569 * of the connector. */
6570bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 6571{
24929352 6572 enum pipe pipe = 0;
f0947c37 6573 struct intel_encoder *encoder = connector->encoder;
ea5b213a 6574
f0947c37 6575 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
6576}
6577
6d293983 6578static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
d272ddfa 6579{
6d293983
ACO
6580 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6581 return crtc_state->fdi_lanes;
d272ddfa
VS
6582
6583 return 0;
6584}
6585
6d293983 6586static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
5cec258b 6587 struct intel_crtc_state *pipe_config)
1857e1da 6588{
6d293983
ACO
6589 struct drm_atomic_state *state = pipe_config->base.state;
6590 struct intel_crtc *other_crtc;
6591 struct intel_crtc_state *other_crtc_state;
6592
1857e1da
DV
6593 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6594 pipe_name(pipe), pipe_config->fdi_lanes);
6595 if (pipe_config->fdi_lanes > 4) {
6596 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6597 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6598 return -EINVAL;
1857e1da
DV
6599 }
6600
bafb6553 6601 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
1857e1da
DV
6602 if (pipe_config->fdi_lanes > 2) {
6603 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6604 pipe_config->fdi_lanes);
6d293983 6605 return -EINVAL;
1857e1da 6606 } else {
6d293983 6607 return 0;
1857e1da
DV
6608 }
6609 }
6610
6611 if (INTEL_INFO(dev)->num_pipes == 2)
6d293983 6612 return 0;
1857e1da
DV
6613
6614 /* Ivybridge 3 pipe is really complicated */
6615 switch (pipe) {
6616 case PIPE_A:
6d293983 6617 return 0;
1857e1da 6618 case PIPE_B:
6d293983
ACO
6619 if (pipe_config->fdi_lanes <= 2)
6620 return 0;
6621
6622 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6623 other_crtc_state =
6624 intel_atomic_get_crtc_state(state, other_crtc);
6625 if (IS_ERR(other_crtc_state))
6626 return PTR_ERR(other_crtc_state);
6627
6628 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
1857e1da
DV
6629 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6630 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6631 return -EINVAL;
1857e1da 6632 }
6d293983 6633 return 0;
1857e1da 6634 case PIPE_C:
251cc67c
VS
6635 if (pipe_config->fdi_lanes > 2) {
6636 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6637 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6638 return -EINVAL;
251cc67c 6639 }
6d293983
ACO
6640
6641 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6642 other_crtc_state =
6643 intel_atomic_get_crtc_state(state, other_crtc);
6644 if (IS_ERR(other_crtc_state))
6645 return PTR_ERR(other_crtc_state);
6646
6647 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
1857e1da 6648 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
6d293983 6649 return -EINVAL;
1857e1da 6650 }
6d293983 6651 return 0;
1857e1da
DV
6652 default:
6653 BUG();
6654 }
6655}
6656
e29c22c0
DV
6657#define RETRY 1
6658static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5cec258b 6659 struct intel_crtc_state *pipe_config)
877d48d5 6660{
1857e1da 6661 struct drm_device *dev = intel_crtc->base.dev;
7c5f93b0 6662 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
6d293983
ACO
6663 int lane, link_bw, fdi_dotclock, ret;
6664 bool needs_recompute = false;
877d48d5 6665
e29c22c0 6666retry:
877d48d5
DV
6667 /* FDI is a binary signal running at ~2.7GHz, encoding
6668 * each output octet as 10 bits. The actual frequency
6669 * is stored as a divider into a 100MHz clock, and the
6670 * mode pixel clock is stored in units of 1KHz.
6671 * Hence the bw of each lane in terms of the mode signal
6672 * is:
6673 */
6674 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
6675
241bfc38 6676 fdi_dotclock = adjusted_mode->crtc_clock;
877d48d5 6677
2bd89a07 6678 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
6679 pipe_config->pipe_bpp);
6680
6681 pipe_config->fdi_lanes = lane;
6682
2bd89a07 6683 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 6684 link_bw, &pipe_config->fdi_m_n);
1857e1da 6685
6d293983
ACO
6686 ret = ironlake_check_fdi_lanes(intel_crtc->base.dev,
6687 intel_crtc->pipe, pipe_config);
6688 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
e29c22c0
DV
6689 pipe_config->pipe_bpp -= 2*3;
6690 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6691 pipe_config->pipe_bpp);
6692 needs_recompute = true;
6693 pipe_config->bw_constrained = true;
6694
6695 goto retry;
6696 }
6697
6698 if (needs_recompute)
6699 return RETRY;
6700
6d293983 6701 return ret;
877d48d5
DV
6702}
6703
8cfb3407
VS
6704static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
6705 struct intel_crtc_state *pipe_config)
6706{
6707 if (pipe_config->pipe_bpp > 24)
6708 return false;
6709
6710 /* HSW can handle pixel rate up to cdclk? */
6711 if (IS_HASWELL(dev_priv->dev))
6712 return true;
6713
6714 /*
b432e5cf
VS
6715 * We compare against max which means we must take
6716 * the increased cdclk requirement into account when
6717 * calculating the new cdclk.
6718 *
6719 * Should measure whether using a lower cdclk w/o IPS
8cfb3407
VS
6720 */
6721 return ilk_pipe_pixel_rate(pipe_config) <=
6722 dev_priv->max_cdclk_freq * 95 / 100;
6723}
6724
42db64ef 6725static void hsw_compute_ips_config(struct intel_crtc *crtc,
5cec258b 6726 struct intel_crtc_state *pipe_config)
42db64ef 6727{
8cfb3407
VS
6728 struct drm_device *dev = crtc->base.dev;
6729 struct drm_i915_private *dev_priv = dev->dev_private;
6730
d330a953 6731 pipe_config->ips_enabled = i915.enable_ips &&
8cfb3407
VS
6732 hsw_crtc_supports_ips(crtc) &&
6733 pipe_config_supports_ips(dev_priv, pipe_config);
42db64ef
PZ
6734}
6735
39acb4aa
VS
6736static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc)
6737{
6738 const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6739
6740 /* GDG double wide on either pipe, otherwise pipe A only */
6741 return INTEL_INFO(dev_priv)->gen < 4 &&
6742 (crtc->pipe == PIPE_A || IS_I915G(dev_priv));
6743}
6744
a43f6e0f 6745static int intel_crtc_compute_config(struct intel_crtc *crtc,
5cec258b 6746 struct intel_crtc_state *pipe_config)
79e53945 6747{
a43f6e0f 6748 struct drm_device *dev = crtc->base.dev;
8bd31e67 6749 struct drm_i915_private *dev_priv = dev->dev_private;
7c5f93b0 6750 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
89749350 6751
ad3a4479 6752 /* FIXME should check pixel clock limits on all platforms */
cf532bb2 6753 if (INTEL_INFO(dev)->gen < 4) {
39acb4aa 6754 int clock_limit = dev_priv->max_cdclk_freq * 9 / 10;
cf532bb2
VS
6755
6756 /*
39acb4aa 6757 * Enable double wide mode when the dot clock
cf532bb2 6758 * is > 90% of the (display) core speed.
cf532bb2 6759 */
39acb4aa
VS
6760 if (intel_crtc_supports_double_wide(crtc) &&
6761 adjusted_mode->crtc_clock > clock_limit) {
ad3a4479 6762 clock_limit *= 2;
cf532bb2 6763 pipe_config->double_wide = true;
ad3a4479
VS
6764 }
6765
39acb4aa
VS
6766 if (adjusted_mode->crtc_clock > clock_limit) {
6767 DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n",
6768 adjusted_mode->crtc_clock, clock_limit,
6769 yesno(pipe_config->double_wide));
e29c22c0 6770 return -EINVAL;
39acb4aa 6771 }
2c07245f 6772 }
89749350 6773
1d1d0e27
VS
6774 /*
6775 * Pipe horizontal size must be even in:
6776 * - DVO ganged mode
6777 * - LVDS dual channel mode
6778 * - Double wide pipe
6779 */
a93e255f 6780 if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) &&
1d1d0e27
VS
6781 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6782 pipe_config->pipe_src_w &= ~1;
6783
8693a824
DL
6784 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6785 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42
CW
6786 */
6787 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
aad941d5 6788 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
e29c22c0 6789 return -EINVAL;
44f46b42 6790
f5adf94e 6791 if (HAS_IPS(dev))
a43f6e0f
DV
6792 hsw_compute_ips_config(crtc, pipe_config);
6793
877d48d5 6794 if (pipe_config->has_pch_encoder)
a43f6e0f 6795 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 6796
cf5a15be 6797 return 0;
79e53945
JB
6798}
6799
1652d19e
VS
6800static int skylake_get_display_clock_speed(struct drm_device *dev)
6801{
6802 struct drm_i915_private *dev_priv = to_i915(dev);
6803 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
6804 uint32_t cdctl = I915_READ(CDCLK_CTL);
6805 uint32_t linkrate;
6806
414355a7 6807 if (!(lcpll1 & LCPLL_PLL_ENABLE))
1652d19e 6808 return 24000; /* 24MHz is the cd freq with NSSC ref */
1652d19e
VS
6809
6810 if ((cdctl & CDCLK_FREQ_SEL_MASK) == CDCLK_FREQ_540)
6811 return 540000;
6812
6813 linkrate = (I915_READ(DPLL_CTRL1) &
71cd8423 6814 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) >> 1;
1652d19e 6815
71cd8423
DL
6816 if (linkrate == DPLL_CTRL1_LINK_RATE_2160 ||
6817 linkrate == DPLL_CTRL1_LINK_RATE_1080) {
1652d19e
VS
6818 /* vco 8640 */
6819 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6820 case CDCLK_FREQ_450_432:
6821 return 432000;
6822 case CDCLK_FREQ_337_308:
6823 return 308570;
6824 case CDCLK_FREQ_675_617:
6825 return 617140;
6826 default:
6827 WARN(1, "Unknown cd freq selection\n");
6828 }
6829 } else {
6830 /* vco 8100 */
6831 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6832 case CDCLK_FREQ_450_432:
6833 return 450000;
6834 case CDCLK_FREQ_337_308:
6835 return 337500;
6836 case CDCLK_FREQ_675_617:
6837 return 675000;
6838 default:
6839 WARN(1, "Unknown cd freq selection\n");
6840 }
6841 }
6842
6843 /* error case, do as if DPLL0 isn't enabled */
6844 return 24000;
6845}
6846
acd3f3d3
BP
6847static int broxton_get_display_clock_speed(struct drm_device *dev)
6848{
6849 struct drm_i915_private *dev_priv = to_i915(dev);
6850 uint32_t cdctl = I915_READ(CDCLK_CTL);
6851 uint32_t pll_ratio = I915_READ(BXT_DE_PLL_CTL) & BXT_DE_PLL_RATIO_MASK;
6852 uint32_t pll_enab = I915_READ(BXT_DE_PLL_ENABLE);
6853 int cdclk;
6854
6855 if (!(pll_enab & BXT_DE_PLL_PLL_ENABLE))
6856 return 19200;
6857
6858 cdclk = 19200 * pll_ratio / 2;
6859
6860 switch (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) {
6861 case BXT_CDCLK_CD2X_DIV_SEL_1:
6862 return cdclk; /* 576MHz or 624MHz */
6863 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
6864 return cdclk * 2 / 3; /* 384MHz */
6865 case BXT_CDCLK_CD2X_DIV_SEL_2:
6866 return cdclk / 2; /* 288MHz */
6867 case BXT_CDCLK_CD2X_DIV_SEL_4:
6868 return cdclk / 4; /* 144MHz */
6869 }
6870
6871 /* error case, do as if DE PLL isn't enabled */
6872 return 19200;
6873}
6874
1652d19e
VS
6875static int broadwell_get_display_clock_speed(struct drm_device *dev)
6876{
6877 struct drm_i915_private *dev_priv = dev->dev_private;
6878 uint32_t lcpll = I915_READ(LCPLL_CTL);
6879 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6880
6881 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6882 return 800000;
6883 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6884 return 450000;
6885 else if (freq == LCPLL_CLK_FREQ_450)
6886 return 450000;
6887 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6888 return 540000;
6889 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6890 return 337500;
6891 else
6892 return 675000;
6893}
6894
6895static int haswell_get_display_clock_speed(struct drm_device *dev)
6896{
6897 struct drm_i915_private *dev_priv = dev->dev_private;
6898 uint32_t lcpll = I915_READ(LCPLL_CTL);
6899 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6900
6901 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6902 return 800000;
6903 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6904 return 450000;
6905 else if (freq == LCPLL_CLK_FREQ_450)
6906 return 450000;
6907 else if (IS_HSW_ULT(dev))
6908 return 337500;
6909 else
6910 return 540000;
79e53945
JB
6911}
6912
25eb05fc
JB
6913static int valleyview_get_display_clock_speed(struct drm_device *dev)
6914{
bfa7df01
VS
6915 return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk",
6916 CCK_DISPLAY_CLOCK_CONTROL);
25eb05fc
JB
6917}
6918
b37a6434
VS
6919static int ilk_get_display_clock_speed(struct drm_device *dev)
6920{
6921 return 450000;
6922}
6923
e70236a8
JB
6924static int i945_get_display_clock_speed(struct drm_device *dev)
6925{
6926 return 400000;
6927}
79e53945 6928
e70236a8 6929static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 6930{
e907f170 6931 return 333333;
e70236a8 6932}
79e53945 6933
e70236a8
JB
6934static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6935{
6936 return 200000;
6937}
79e53945 6938
257a7ffc
DV
6939static int pnv_get_display_clock_speed(struct drm_device *dev)
6940{
6941 u16 gcfgc = 0;
6942
6943 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6944
6945 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6946 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
e907f170 6947 return 266667;
257a7ffc 6948 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
e907f170 6949 return 333333;
257a7ffc 6950 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
e907f170 6951 return 444444;
257a7ffc
DV
6952 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6953 return 200000;
6954 default:
6955 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6956 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
e907f170 6957 return 133333;
257a7ffc 6958 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
e907f170 6959 return 166667;
257a7ffc
DV
6960 }
6961}
6962
e70236a8
JB
6963static int i915gm_get_display_clock_speed(struct drm_device *dev)
6964{
6965 u16 gcfgc = 0;
79e53945 6966
e70236a8
JB
6967 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6968
6969 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
e907f170 6970 return 133333;
e70236a8
JB
6971 else {
6972 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6973 case GC_DISPLAY_CLOCK_333_MHZ:
e907f170 6974 return 333333;
e70236a8
JB
6975 default:
6976 case GC_DISPLAY_CLOCK_190_200_MHZ:
6977 return 190000;
79e53945 6978 }
e70236a8
JB
6979 }
6980}
6981
6982static int i865_get_display_clock_speed(struct drm_device *dev)
6983{
e907f170 6984 return 266667;
e70236a8
JB
6985}
6986
1b1d2716 6987static int i85x_get_display_clock_speed(struct drm_device *dev)
e70236a8
JB
6988{
6989 u16 hpllcc = 0;
1b1d2716 6990
65cd2b3f
VS
6991 /*
6992 * 852GM/852GMV only supports 133 MHz and the HPLLCC
6993 * encoding is different :(
6994 * FIXME is this the right way to detect 852GM/852GMV?
6995 */
6996 if (dev->pdev->revision == 0x1)
6997 return 133333;
6998
1b1d2716
VS
6999 pci_bus_read_config_word(dev->pdev->bus,
7000 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
7001
e70236a8
JB
7002 /* Assume that the hardware is in the high speed state. This
7003 * should be the default.
7004 */
7005 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
7006 case GC_CLOCK_133_200:
1b1d2716 7007 case GC_CLOCK_133_200_2:
e70236a8
JB
7008 case GC_CLOCK_100_200:
7009 return 200000;
7010 case GC_CLOCK_166_250:
7011 return 250000;
7012 case GC_CLOCK_100_133:
e907f170 7013 return 133333;
1b1d2716
VS
7014 case GC_CLOCK_133_266:
7015 case GC_CLOCK_133_266_2:
7016 case GC_CLOCK_166_266:
7017 return 266667;
e70236a8 7018 }
79e53945 7019
e70236a8
JB
7020 /* Shouldn't happen */
7021 return 0;
7022}
79e53945 7023
e70236a8
JB
7024static int i830_get_display_clock_speed(struct drm_device *dev)
7025{
e907f170 7026 return 133333;
79e53945
JB
7027}
7028
34edce2f
VS
7029static unsigned int intel_hpll_vco(struct drm_device *dev)
7030{
7031 struct drm_i915_private *dev_priv = dev->dev_private;
7032 static const unsigned int blb_vco[8] = {
7033 [0] = 3200000,
7034 [1] = 4000000,
7035 [2] = 5333333,
7036 [3] = 4800000,
7037 [4] = 6400000,
7038 };
7039 static const unsigned int pnv_vco[8] = {
7040 [0] = 3200000,
7041 [1] = 4000000,
7042 [2] = 5333333,
7043 [3] = 4800000,
7044 [4] = 2666667,
7045 };
7046 static const unsigned int cl_vco[8] = {
7047 [0] = 3200000,
7048 [1] = 4000000,
7049 [2] = 5333333,
7050 [3] = 6400000,
7051 [4] = 3333333,
7052 [5] = 3566667,
7053 [6] = 4266667,
7054 };
7055 static const unsigned int elk_vco[8] = {
7056 [0] = 3200000,
7057 [1] = 4000000,
7058 [2] = 5333333,
7059 [3] = 4800000,
7060 };
7061 static const unsigned int ctg_vco[8] = {
7062 [0] = 3200000,
7063 [1] = 4000000,
7064 [2] = 5333333,
7065 [3] = 6400000,
7066 [4] = 2666667,
7067 [5] = 4266667,
7068 };
7069 const unsigned int *vco_table;
7070 unsigned int vco;
7071 uint8_t tmp = 0;
7072
7073 /* FIXME other chipsets? */
7074 if (IS_GM45(dev))
7075 vco_table = ctg_vco;
7076 else if (IS_G4X(dev))
7077 vco_table = elk_vco;
7078 else if (IS_CRESTLINE(dev))
7079 vco_table = cl_vco;
7080 else if (IS_PINEVIEW(dev))
7081 vco_table = pnv_vco;
7082 else if (IS_G33(dev))
7083 vco_table = blb_vco;
7084 else
7085 return 0;
7086
7087 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
7088
7089 vco = vco_table[tmp & 0x7];
7090 if (vco == 0)
7091 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
7092 else
7093 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
7094
7095 return vco;
7096}
7097
7098static int gm45_get_display_clock_speed(struct drm_device *dev)
7099{
7100 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7101 uint16_t tmp = 0;
7102
7103 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7104
7105 cdclk_sel = (tmp >> 12) & 0x1;
7106
7107 switch (vco) {
7108 case 2666667:
7109 case 4000000:
7110 case 5333333:
7111 return cdclk_sel ? 333333 : 222222;
7112 case 3200000:
7113 return cdclk_sel ? 320000 : 228571;
7114 default:
7115 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
7116 return 222222;
7117 }
7118}
7119
7120static int i965gm_get_display_clock_speed(struct drm_device *dev)
7121{
7122 static const uint8_t div_3200[] = { 16, 10, 8 };
7123 static const uint8_t div_4000[] = { 20, 12, 10 };
7124 static const uint8_t div_5333[] = { 24, 16, 14 };
7125 const uint8_t *div_table;
7126 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7127 uint16_t tmp = 0;
7128
7129 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7130
7131 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
7132
7133 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7134 goto fail;
7135
7136 switch (vco) {
7137 case 3200000:
7138 div_table = div_3200;
7139 break;
7140 case 4000000:
7141 div_table = div_4000;
7142 break;
7143 case 5333333:
7144 div_table = div_5333;
7145 break;
7146 default:
7147 goto fail;
7148 }
7149
7150 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7151
caf4e252 7152fail:
34edce2f
VS
7153 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
7154 return 200000;
7155}
7156
7157static int g33_get_display_clock_speed(struct drm_device *dev)
7158{
7159 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
7160 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
7161 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
7162 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
7163 const uint8_t *div_table;
7164 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7165 uint16_t tmp = 0;
7166
7167 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7168
7169 cdclk_sel = (tmp >> 4) & 0x7;
7170
7171 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7172 goto fail;
7173
7174 switch (vco) {
7175 case 3200000:
7176 div_table = div_3200;
7177 break;
7178 case 4000000:
7179 div_table = div_4000;
7180 break;
7181 case 4800000:
7182 div_table = div_4800;
7183 break;
7184 case 5333333:
7185 div_table = div_5333;
7186 break;
7187 default:
7188 goto fail;
7189 }
7190
7191 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7192
caf4e252 7193fail:
34edce2f
VS
7194 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7195 return 190476;
7196}
7197
2c07245f 7198static void
a65851af 7199intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 7200{
a65851af
VS
7201 while (*num > DATA_LINK_M_N_MASK ||
7202 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
7203 *num >>= 1;
7204 *den >>= 1;
7205 }
7206}
7207
a65851af
VS
7208static void compute_m_n(unsigned int m, unsigned int n,
7209 uint32_t *ret_m, uint32_t *ret_n)
7210{
7211 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7212 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7213 intel_reduce_m_n_ratio(ret_m, ret_n);
7214}
7215
e69d0bc1
DV
7216void
7217intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7218 int pixel_clock, int link_clock,
7219 struct intel_link_m_n *m_n)
2c07245f 7220{
e69d0bc1 7221 m_n->tu = 64;
a65851af
VS
7222
7223 compute_m_n(bits_per_pixel * pixel_clock,
7224 link_clock * nlanes * 8,
7225 &m_n->gmch_m, &m_n->gmch_n);
7226
7227 compute_m_n(pixel_clock, link_clock,
7228 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
7229}
7230
a7615030
CW
7231static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7232{
d330a953
JN
7233 if (i915.panel_use_ssc >= 0)
7234 return i915.panel_use_ssc != 0;
41aa3448 7235 return dev_priv->vbt.lvds_use_ssc
435793df 7236 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
7237}
7238
a93e255f
ACO
7239static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
7240 int num_connectors)
c65d77d8 7241{
a93e255f 7242 struct drm_device *dev = crtc_state->base.crtc->dev;
c65d77d8
JB
7243 struct drm_i915_private *dev_priv = dev->dev_private;
7244 int refclk;
7245
a93e255f
ACO
7246 WARN_ON(!crtc_state->base.state);
7247
666a4537 7248 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev) || IS_BROXTON(dev)) {
9a0ea498 7249 refclk = 100000;
a93e255f 7250 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
c65d77d8 7251 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b
VS
7252 refclk = dev_priv->vbt.lvds_ssc_freq;
7253 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
c65d77d8
JB
7254 } else if (!IS_GEN2(dev)) {
7255 refclk = 96000;
7256 } else {
7257 refclk = 48000;
7258 }
7259
7260 return refclk;
7261}
7262
7429e9d4 7263static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
c65d77d8 7264{
7df00d7a 7265 return (1 << dpll->n) << 16 | dpll->m2;
7429e9d4 7266}
f47709a9 7267
7429e9d4
DV
7268static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7269{
7270 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
c65d77d8
JB
7271}
7272
f47709a9 7273static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
190f68c5 7274 struct intel_crtc_state *crtc_state,
a7516a05
JB
7275 intel_clock_t *reduced_clock)
7276{
f47709a9 7277 struct drm_device *dev = crtc->base.dev;
a7516a05
JB
7278 u32 fp, fp2 = 0;
7279
7280 if (IS_PINEVIEW(dev)) {
190f68c5 7281 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7282 if (reduced_clock)
7429e9d4 7283 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 7284 } else {
190f68c5 7285 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7286 if (reduced_clock)
7429e9d4 7287 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
7288 }
7289
190f68c5 7290 crtc_state->dpll_hw_state.fp0 = fp;
a7516a05 7291
f47709a9 7292 crtc->lowfreq_avail = false;
a93e255f 7293 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ab585dea 7294 reduced_clock) {
190f68c5 7295 crtc_state->dpll_hw_state.fp1 = fp2;
f47709a9 7296 crtc->lowfreq_avail = true;
a7516a05 7297 } else {
190f68c5 7298 crtc_state->dpll_hw_state.fp1 = fp;
a7516a05
JB
7299 }
7300}
7301
5e69f97f
CML
7302static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7303 pipe)
89b667f8
JB
7304{
7305 u32 reg_val;
7306
7307 /*
7308 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7309 * and set it to a reasonable value instead.
7310 */
ab3c759a 7311 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8
JB
7312 reg_val &= 0xffffff00;
7313 reg_val |= 0x00000030;
ab3c759a 7314 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7315
ab3c759a 7316 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7317 reg_val &= 0x8cffffff;
7318 reg_val = 0x8c000000;
ab3c759a 7319 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8 7320
ab3c759a 7321 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8 7322 reg_val &= 0xffffff00;
ab3c759a 7323 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7324
ab3c759a 7325 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7326 reg_val &= 0x00ffffff;
7327 reg_val |= 0xb0000000;
ab3c759a 7328 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8
JB
7329}
7330
b551842d
DV
7331static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7332 struct intel_link_m_n *m_n)
7333{
7334 struct drm_device *dev = crtc->base.dev;
7335 struct drm_i915_private *dev_priv = dev->dev_private;
7336 int pipe = crtc->pipe;
7337
e3b95f1e
DV
7338 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7339 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7340 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7341 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
7342}
7343
7344static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
7345 struct intel_link_m_n *m_n,
7346 struct intel_link_m_n *m2_n2)
b551842d
DV
7347{
7348 struct drm_device *dev = crtc->base.dev;
7349 struct drm_i915_private *dev_priv = dev->dev_private;
7350 int pipe = crtc->pipe;
6e3c9717 7351 enum transcoder transcoder = crtc->config->cpu_transcoder;
b551842d
DV
7352
7353 if (INTEL_INFO(dev)->gen >= 5) {
7354 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7355 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7356 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7357 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
f769cd24
VK
7358 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7359 * for gen < 8) and if DRRS is supported (to make sure the
7360 * registers are not unnecessarily accessed).
7361 */
44395bfe 7362 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
6e3c9717 7363 crtc->config->has_drrs) {
f769cd24
VK
7364 I915_WRITE(PIPE_DATA_M2(transcoder),
7365 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7366 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7367 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7368 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7369 }
b551842d 7370 } else {
e3b95f1e
DV
7371 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7372 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7373 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7374 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
7375 }
7376}
7377
fe3cd48d 7378void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
03afc4a2 7379{
fe3cd48d
R
7380 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7381
7382 if (m_n == M1_N1) {
7383 dp_m_n = &crtc->config->dp_m_n;
7384 dp_m2_n2 = &crtc->config->dp_m2_n2;
7385 } else if (m_n == M2_N2) {
7386
7387 /*
7388 * M2_N2 registers are not supported. Hence m2_n2 divider value
7389 * needs to be programmed into M1_N1.
7390 */
7391 dp_m_n = &crtc->config->dp_m2_n2;
7392 } else {
7393 DRM_ERROR("Unsupported divider value\n");
7394 return;
7395 }
7396
6e3c9717
ACO
7397 if (crtc->config->has_pch_encoder)
7398 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
03afc4a2 7399 else
fe3cd48d 7400 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
03afc4a2
DV
7401}
7402
251ac862
DV
7403static void vlv_compute_dpll(struct intel_crtc *crtc,
7404 struct intel_crtc_state *pipe_config)
bdd4b6a6
DV
7405{
7406 u32 dpll, dpll_md;
7407
7408 /*
7409 * Enable DPIO clock input. We should never disable the reference
7410 * clock for pipe B, since VGA hotplug / manual detection depends
7411 * on it.
7412 */
60bfe44f
VS
7413 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REF_CLK_ENABLE_VLV |
7414 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_REF_CLK_VLV;
bdd4b6a6
DV
7415 /* We should never disable this, set it here for state tracking */
7416 if (crtc->pipe == PIPE_B)
7417 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7418 dpll |= DPLL_VCO_ENABLE;
d288f65f 7419 pipe_config->dpll_hw_state.dpll = dpll;
bdd4b6a6 7420
d288f65f 7421 dpll_md = (pipe_config->pixel_multiplier - 1)
bdd4b6a6 7422 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
d288f65f 7423 pipe_config->dpll_hw_state.dpll_md = dpll_md;
bdd4b6a6
DV
7424}
7425
d288f65f 7426static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7427 const struct intel_crtc_state *pipe_config)
a0c4da24 7428{
f47709a9 7429 struct drm_device *dev = crtc->base.dev;
a0c4da24 7430 struct drm_i915_private *dev_priv = dev->dev_private;
f47709a9 7431 int pipe = crtc->pipe;
bdd4b6a6 7432 u32 mdiv;
a0c4da24 7433 u32 bestn, bestm1, bestm2, bestp1, bestp2;
bdd4b6a6 7434 u32 coreclk, reg_val;
a0c4da24 7435
a580516d 7436 mutex_lock(&dev_priv->sb_lock);
09153000 7437
d288f65f
VS
7438 bestn = pipe_config->dpll.n;
7439 bestm1 = pipe_config->dpll.m1;
7440 bestm2 = pipe_config->dpll.m2;
7441 bestp1 = pipe_config->dpll.p1;
7442 bestp2 = pipe_config->dpll.p2;
a0c4da24 7443
89b667f8
JB
7444 /* See eDP HDMI DPIO driver vbios notes doc */
7445
7446 /* PLL B needs special handling */
bdd4b6a6 7447 if (pipe == PIPE_B)
5e69f97f 7448 vlv_pllb_recal_opamp(dev_priv, pipe);
89b667f8
JB
7449
7450 /* Set up Tx target for periodic Rcomp update */
ab3c759a 7451 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
89b667f8
JB
7452
7453 /* Disable target IRef on PLL */
ab3c759a 7454 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
89b667f8 7455 reg_val &= 0x00ffffff;
ab3c759a 7456 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
89b667f8
JB
7457
7458 /* Disable fast lock */
ab3c759a 7459 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
89b667f8
JB
7460
7461 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
7462 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7463 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7464 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 7465 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
7466
7467 /*
7468 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7469 * but we don't support that).
7470 * Note: don't use the DAC post divider as it seems unstable.
7471 */
7472 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ab3c759a 7473 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7474
a0c4da24 7475 mdiv |= DPIO_ENABLE_CALIBRATION;
ab3c759a 7476 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7477
89b667f8 7478 /* Set HBR and RBR LPF coefficients */
d288f65f 7479 if (pipe_config->port_clock == 162000 ||
409ee761
ACO
7480 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
7481 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
ab3c759a 7482 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
885b0120 7483 0x009f0003);
89b667f8 7484 else
ab3c759a 7485 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
89b667f8
JB
7486 0x00d0000f);
7487
681a8504 7488 if (pipe_config->has_dp_encoder) {
89b667f8 7489 /* Use SSC source */
bdd4b6a6 7490 if (pipe == PIPE_A)
ab3c759a 7491 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7492 0x0df40000);
7493 else
ab3c759a 7494 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7495 0x0df70000);
7496 } else { /* HDMI or VGA */
7497 /* Use bend source */
bdd4b6a6 7498 if (pipe == PIPE_A)
ab3c759a 7499 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7500 0x0df70000);
7501 else
ab3c759a 7502 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7503 0x0df40000);
7504 }
a0c4da24 7505
ab3c759a 7506 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
89b667f8 7507 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
409ee761
ACO
7508 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
7509 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
89b667f8 7510 coreclk |= 0x01000000;
ab3c759a 7511 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
a0c4da24 7512
ab3c759a 7513 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
a580516d 7514 mutex_unlock(&dev_priv->sb_lock);
a0c4da24
JB
7515}
7516
251ac862
DV
7517static void chv_compute_dpll(struct intel_crtc *crtc,
7518 struct intel_crtc_state *pipe_config)
1ae0d137 7519{
60bfe44f
VS
7520 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
7521 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
1ae0d137
VS
7522 DPLL_VCO_ENABLE;
7523 if (crtc->pipe != PIPE_A)
d288f65f 7524 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
1ae0d137 7525
d288f65f
VS
7526 pipe_config->dpll_hw_state.dpll_md =
7527 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
1ae0d137
VS
7528}
7529
d288f65f 7530static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7531 const struct intel_crtc_state *pipe_config)
9d556c99
CML
7532{
7533 struct drm_device *dev = crtc->base.dev;
7534 struct drm_i915_private *dev_priv = dev->dev_private;
7535 int pipe = crtc->pipe;
f0f59a00 7536 i915_reg_t dpll_reg = DPLL(crtc->pipe);
9d556c99 7537 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9cbe40c1 7538 u32 loopfilter, tribuf_calcntr;
9d556c99 7539 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
a945ce7e 7540 u32 dpio_val;
9cbe40c1 7541 int vco;
9d556c99 7542
d288f65f
VS
7543 bestn = pipe_config->dpll.n;
7544 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7545 bestm1 = pipe_config->dpll.m1;
7546 bestm2 = pipe_config->dpll.m2 >> 22;
7547 bestp1 = pipe_config->dpll.p1;
7548 bestp2 = pipe_config->dpll.p2;
9cbe40c1 7549 vco = pipe_config->dpll.vco;
a945ce7e 7550 dpio_val = 0;
9cbe40c1 7551 loopfilter = 0;
9d556c99
CML
7552
7553 /*
7554 * Enable Refclk and SSC
7555 */
a11b0703 7556 I915_WRITE(dpll_reg,
d288f65f 7557 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
a11b0703 7558
a580516d 7559 mutex_lock(&dev_priv->sb_lock);
9d556c99 7560
9d556c99
CML
7561 /* p1 and p2 divider */
7562 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7563 5 << DPIO_CHV_S1_DIV_SHIFT |
7564 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7565 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7566 1 << DPIO_CHV_K_DIV_SHIFT);
7567
7568 /* Feedback post-divider - m2 */
7569 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7570
7571 /* Feedback refclk divider - n and m1 */
7572 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7573 DPIO_CHV_M1_DIV_BY_2 |
7574 1 << DPIO_CHV_N_DIV_SHIFT);
7575
7576 /* M2 fraction division */
25a25dfc 7577 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
9d556c99
CML
7578
7579 /* M2 fraction division enable */
a945ce7e
VP
7580 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7581 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7582 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7583 if (bestm2_frac)
7584 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7585 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
9d556c99 7586
de3a0fde
VP
7587 /* Program digital lock detect threshold */
7588 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7589 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7590 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7591 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7592 if (!bestm2_frac)
7593 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7594 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7595
9d556c99 7596 /* Loop filter */
9cbe40c1
VP
7597 if (vco == 5400000) {
7598 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7599 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7600 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7601 tribuf_calcntr = 0x9;
7602 } else if (vco <= 6200000) {
7603 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7604 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7605 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7606 tribuf_calcntr = 0x9;
7607 } else if (vco <= 6480000) {
7608 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7609 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7610 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7611 tribuf_calcntr = 0x8;
7612 } else {
7613 /* Not supported. Apply the same limits as in the max case */
7614 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7615 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7616 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7617 tribuf_calcntr = 0;
7618 }
9d556c99
CML
7619 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7620
968040b2 7621 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
9cbe40c1
VP
7622 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7623 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7624 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7625
9d556c99
CML
7626 /* AFC Recal */
7627 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7628 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7629 DPIO_AFC_RECAL);
7630
a580516d 7631 mutex_unlock(&dev_priv->sb_lock);
9d556c99
CML
7632}
7633
d288f65f
VS
7634/**
7635 * vlv_force_pll_on - forcibly enable just the PLL
7636 * @dev_priv: i915 private structure
7637 * @pipe: pipe PLL to enable
7638 * @dpll: PLL configuration
7639 *
7640 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7641 * in cases where we need the PLL enabled even when @pipe is not going to
7642 * be enabled.
7643 */
7644void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7645 const struct dpll *dpll)
7646{
7647 struct intel_crtc *crtc =
7648 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
5cec258b 7649 struct intel_crtc_state pipe_config = {
a93e255f 7650 .base.crtc = &crtc->base,
d288f65f
VS
7651 .pixel_multiplier = 1,
7652 .dpll = *dpll,
7653 };
7654
7655 if (IS_CHERRYVIEW(dev)) {
251ac862 7656 chv_compute_dpll(crtc, &pipe_config);
d288f65f
VS
7657 chv_prepare_pll(crtc, &pipe_config);
7658 chv_enable_pll(crtc, &pipe_config);
7659 } else {
251ac862 7660 vlv_compute_dpll(crtc, &pipe_config);
d288f65f
VS
7661 vlv_prepare_pll(crtc, &pipe_config);
7662 vlv_enable_pll(crtc, &pipe_config);
7663 }
7664}
7665
7666/**
7667 * vlv_force_pll_off - forcibly disable just the PLL
7668 * @dev_priv: i915 private structure
7669 * @pipe: pipe PLL to disable
7670 *
7671 * Disable the PLL for @pipe. To be used in cases where we need
7672 * the PLL enabled even when @pipe is not going to be enabled.
7673 */
7674void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7675{
7676 if (IS_CHERRYVIEW(dev))
7677 chv_disable_pll(to_i915(dev), pipe);
7678 else
7679 vlv_disable_pll(to_i915(dev), pipe);
7680}
7681
251ac862
DV
7682static void i9xx_compute_dpll(struct intel_crtc *crtc,
7683 struct intel_crtc_state *crtc_state,
7684 intel_clock_t *reduced_clock,
7685 int num_connectors)
eb1cbe48 7686{
f47709a9 7687 struct drm_device *dev = crtc->base.dev;
eb1cbe48 7688 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48
DV
7689 u32 dpll;
7690 bool is_sdvo;
190f68c5 7691 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 7692
190f68c5 7693 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 7694
a93e255f
ACO
7695 is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7696 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI);
eb1cbe48
DV
7697
7698 dpll = DPLL_VGA_MODE_DIS;
7699
a93e255f 7700 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
7701 dpll |= DPLLB_MODE_LVDS;
7702 else
7703 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 7704
ef1b460d 7705 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
190f68c5 7706 dpll |= (crtc_state->pixel_multiplier - 1)
198a037f 7707 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 7708 }
198a037f
DV
7709
7710 if (is_sdvo)
4a33e48d 7711 dpll |= DPLL_SDVO_HIGH_SPEED;
198a037f 7712
190f68c5 7713 if (crtc_state->has_dp_encoder)
4a33e48d 7714 dpll |= DPLL_SDVO_HIGH_SPEED;
eb1cbe48
DV
7715
7716 /* compute bitmask from p1 value */
7717 if (IS_PINEVIEW(dev))
7718 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7719 else {
7720 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7721 if (IS_G4X(dev) && reduced_clock)
7722 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7723 }
7724 switch (clock->p2) {
7725 case 5:
7726 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7727 break;
7728 case 7:
7729 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7730 break;
7731 case 10:
7732 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7733 break;
7734 case 14:
7735 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7736 break;
7737 }
7738 if (INTEL_INFO(dev)->gen >= 4)
7739 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7740
190f68c5 7741 if (crtc_state->sdvo_tv_clock)
eb1cbe48 7742 dpll |= PLL_REF_INPUT_TVCLKINBC;
a93e255f 7743 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
7744 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7745 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7746 else
7747 dpll |= PLL_REF_INPUT_DREFCLK;
7748
7749 dpll |= DPLL_VCO_ENABLE;
190f68c5 7750 crtc_state->dpll_hw_state.dpll = dpll;
8bcc2795 7751
eb1cbe48 7752 if (INTEL_INFO(dev)->gen >= 4) {
190f68c5 7753 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
ef1b460d 7754 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
190f68c5 7755 crtc_state->dpll_hw_state.dpll_md = dpll_md;
eb1cbe48
DV
7756 }
7757}
7758
251ac862
DV
7759static void i8xx_compute_dpll(struct intel_crtc *crtc,
7760 struct intel_crtc_state *crtc_state,
7761 intel_clock_t *reduced_clock,
7762 int num_connectors)
eb1cbe48 7763{
f47709a9 7764 struct drm_device *dev = crtc->base.dev;
eb1cbe48 7765 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48 7766 u32 dpll;
190f68c5 7767 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 7768
190f68c5 7769 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 7770
eb1cbe48
DV
7771 dpll = DPLL_VGA_MODE_DIS;
7772
a93e255f 7773 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
7774 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7775 } else {
7776 if (clock->p1 == 2)
7777 dpll |= PLL_P1_DIVIDE_BY_TWO;
7778 else
7779 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7780 if (clock->p2 == 4)
7781 dpll |= PLL_P2_DIVIDE_BY_4;
7782 }
7783
a93e255f 7784 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
4a33e48d
DV
7785 dpll |= DPLL_DVO_2X_MODE;
7786
a93e255f 7787 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
7788 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7789 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7790 else
7791 dpll |= PLL_REF_INPUT_DREFCLK;
7792
7793 dpll |= DPLL_VCO_ENABLE;
190f68c5 7794 crtc_state->dpll_hw_state.dpll = dpll;
eb1cbe48
DV
7795}
7796
8a654f3b 7797static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c
PZ
7798{
7799 struct drm_device *dev = intel_crtc->base.dev;
7800 struct drm_i915_private *dev_priv = dev->dev_private;
7801 enum pipe pipe = intel_crtc->pipe;
6e3c9717 7802 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
7c5f93b0 7803 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1caea6e9
VS
7804 uint32_t crtc_vtotal, crtc_vblank_end;
7805 int vsyncshift = 0;
4d8a62ea
DV
7806
7807 /* We need to be careful not to changed the adjusted mode, for otherwise
7808 * the hw state checker will get angry at the mismatch. */
7809 crtc_vtotal = adjusted_mode->crtc_vtotal;
7810 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c 7811
609aeaca 7812 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
b0e77b9c 7813 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
7814 crtc_vtotal -= 1;
7815 crtc_vblank_end -= 1;
609aeaca 7816
409ee761 7817 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
609aeaca
VS
7818 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7819 else
7820 vsyncshift = adjusted_mode->crtc_hsync_start -
7821 adjusted_mode->crtc_htotal / 2;
1caea6e9
VS
7822 if (vsyncshift < 0)
7823 vsyncshift += adjusted_mode->crtc_htotal;
b0e77b9c
PZ
7824 }
7825
7826 if (INTEL_INFO(dev)->gen > 3)
fe2b8f9d 7827 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 7828
fe2b8f9d 7829 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
7830 (adjusted_mode->crtc_hdisplay - 1) |
7831 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 7832 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
7833 (adjusted_mode->crtc_hblank_start - 1) |
7834 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 7835 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
7836 (adjusted_mode->crtc_hsync_start - 1) |
7837 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7838
fe2b8f9d 7839 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 7840 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 7841 ((crtc_vtotal - 1) << 16));
fe2b8f9d 7842 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 7843 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 7844 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 7845 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
7846 (adjusted_mode->crtc_vsync_start - 1) |
7847 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7848
b5e508d4
PZ
7849 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7850 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7851 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7852 * bits. */
7853 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7854 (pipe == PIPE_B || pipe == PIPE_C))
7855 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7856
b0e77b9c
PZ
7857 /* pipesrc controls the size that is scaled from, which should
7858 * always be the user's requested size.
7859 */
7860 I915_WRITE(PIPESRC(pipe),
6e3c9717
ACO
7861 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7862 (intel_crtc->config->pipe_src_h - 1));
b0e77b9c
PZ
7863}
7864
1bd1bd80 7865static void intel_get_pipe_timings(struct intel_crtc *crtc,
5cec258b 7866 struct intel_crtc_state *pipe_config)
1bd1bd80
DV
7867{
7868 struct drm_device *dev = crtc->base.dev;
7869 struct drm_i915_private *dev_priv = dev->dev_private;
7870 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7871 uint32_t tmp;
7872
7873 tmp = I915_READ(HTOTAL(cpu_transcoder));
2d112de7
ACO
7874 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7875 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7876 tmp = I915_READ(HBLANK(cpu_transcoder));
2d112de7
ACO
7877 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7878 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7879 tmp = I915_READ(HSYNC(cpu_transcoder));
2d112de7
ACO
7880 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7881 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
7882
7883 tmp = I915_READ(VTOTAL(cpu_transcoder));
2d112de7
ACO
7884 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7885 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7886 tmp = I915_READ(VBLANK(cpu_transcoder));
2d112de7
ACO
7887 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7888 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7889 tmp = I915_READ(VSYNC(cpu_transcoder));
2d112de7
ACO
7890 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7891 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
7892
7893 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
2d112de7
ACO
7894 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7895 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7896 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
1bd1bd80
DV
7897 }
7898
7899 tmp = I915_READ(PIPESRC(crtc->pipe));
37327abd
VS
7900 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7901 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7902
2d112de7
ACO
7903 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7904 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
1bd1bd80
DV
7905}
7906
f6a83288 7907void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5cec258b 7908 struct intel_crtc_state *pipe_config)
babea61d 7909{
2d112de7
ACO
7910 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7911 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7912 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7913 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
babea61d 7914
2d112de7
ACO
7915 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7916 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7917 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7918 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
babea61d 7919
2d112de7 7920 mode->flags = pipe_config->base.adjusted_mode.flags;
cd13f5ab 7921 mode->type = DRM_MODE_TYPE_DRIVER;
babea61d 7922
2d112de7
ACO
7923 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7924 mode->flags |= pipe_config->base.adjusted_mode.flags;
cd13f5ab
ML
7925
7926 mode->hsync = drm_mode_hsync(mode);
7927 mode->vrefresh = drm_mode_vrefresh(mode);
7928 drm_mode_set_name(mode);
babea61d
JB
7929}
7930
84b046f3
DV
7931static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7932{
7933 struct drm_device *dev = intel_crtc->base.dev;
7934 struct drm_i915_private *dev_priv = dev->dev_private;
7935 uint32_t pipeconf;
7936
9f11a9e4 7937 pipeconf = 0;
84b046f3 7938
b6b5d049
VS
7939 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7940 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7941 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
67c72a12 7942
6e3c9717 7943 if (intel_crtc->config->double_wide)
cf532bb2 7944 pipeconf |= PIPECONF_DOUBLE_WIDE;
84b046f3 7945
ff9ce46e 7946 /* only g4x and later have fancy bpc/dither controls */
666a4537 7947 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
ff9ce46e 7948 /* Bspec claims that we can't use dithering for 30bpp pipes. */
6e3c9717 7949 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
ff9ce46e 7950 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 7951 PIPECONF_DITHER_TYPE_SP;
84b046f3 7952
6e3c9717 7953 switch (intel_crtc->config->pipe_bpp) {
ff9ce46e
DV
7954 case 18:
7955 pipeconf |= PIPECONF_6BPC;
7956 break;
7957 case 24:
7958 pipeconf |= PIPECONF_8BPC;
7959 break;
7960 case 30:
7961 pipeconf |= PIPECONF_10BPC;
7962 break;
7963 default:
7964 /* Case prevented by intel_choose_pipe_bpp_dither. */
7965 BUG();
84b046f3
DV
7966 }
7967 }
7968
7969 if (HAS_PIPE_CXSR(dev)) {
7970 if (intel_crtc->lowfreq_avail) {
7971 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7972 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7973 } else {
7974 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
84b046f3
DV
7975 }
7976 }
7977
6e3c9717 7978 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
efc2cfff 7979 if (INTEL_INFO(dev)->gen < 4 ||
409ee761 7980 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
efc2cfff
VS
7981 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7982 else
7983 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7984 } else
84b046f3
DV
7985 pipeconf |= PIPECONF_PROGRESSIVE;
7986
666a4537
WB
7987 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
7988 intel_crtc->config->limited_color_range)
9f11a9e4 7989 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
9c8e09b7 7990
84b046f3
DV
7991 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7992 POSTING_READ(PIPECONF(intel_crtc->pipe));
7993}
7994
190f68c5
ACO
7995static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
7996 struct intel_crtc_state *crtc_state)
79e53945 7997{
c7653199 7998 struct drm_device *dev = crtc->base.dev;
79e53945 7999 struct drm_i915_private *dev_priv = dev->dev_private;
c751ce4f 8000 int refclk, num_connectors = 0;
c329a4ec
DV
8001 intel_clock_t clock;
8002 bool ok;
d4906093 8003 const intel_limit_t *limit;
55bb9992 8004 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 8005 struct drm_connector *connector;
55bb9992
ACO
8006 struct drm_connector_state *connector_state;
8007 int i;
79e53945 8008
dd3cd74a
ACO
8009 memset(&crtc_state->dpll_hw_state, 0,
8010 sizeof(crtc_state->dpll_hw_state));
8011
a65347ba
JN
8012 if (crtc_state->has_dsi_encoder)
8013 return 0;
43565a06 8014
a65347ba
JN
8015 for_each_connector_in_state(state, connector, connector_state, i) {
8016 if (connector_state->crtc == &crtc->base)
8017 num_connectors++;
79e53945
JB
8018 }
8019
190f68c5 8020 if (!crtc_state->clock_set) {
a93e255f 8021 refclk = i9xx_get_refclk(crtc_state, num_connectors);
79e53945 8022
e9fd1c02
JN
8023 /*
8024 * Returns a set of divisors for the desired target clock with
8025 * the given refclk, or FALSE. The returned values represent
8026 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
8027 * 2) / p1 / p2.
8028 */
a93e255f
ACO
8029 limit = intel_limit(crtc_state, refclk);
8030 ok = dev_priv->display.find_dpll(limit, crtc_state,
190f68c5 8031 crtc_state->port_clock,
e9fd1c02 8032 refclk, NULL, &clock);
f2335330 8033 if (!ok) {
e9fd1c02
JN
8034 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8035 return -EINVAL;
8036 }
79e53945 8037
f2335330 8038 /* Compat-code for transition, will disappear. */
190f68c5
ACO
8039 crtc_state->dpll.n = clock.n;
8040 crtc_state->dpll.m1 = clock.m1;
8041 crtc_state->dpll.m2 = clock.m2;
8042 crtc_state->dpll.p1 = clock.p1;
8043 crtc_state->dpll.p2 = clock.p2;
f47709a9 8044 }
7026d4ac 8045
e9fd1c02 8046 if (IS_GEN2(dev)) {
c329a4ec 8047 i8xx_compute_dpll(crtc, crtc_state, NULL,
251ac862 8048 num_connectors);
9d556c99 8049 } else if (IS_CHERRYVIEW(dev)) {
251ac862 8050 chv_compute_dpll(crtc, crtc_state);
e9fd1c02 8051 } else if (IS_VALLEYVIEW(dev)) {
251ac862 8052 vlv_compute_dpll(crtc, crtc_state);
e9fd1c02 8053 } else {
c329a4ec 8054 i9xx_compute_dpll(crtc, crtc_state, NULL,
251ac862 8055 num_connectors);
e9fd1c02 8056 }
79e53945 8057
c8f7a0db 8058 return 0;
f564048e
EA
8059}
8060
2fa2fe9a 8061static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5cec258b 8062 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
8063{
8064 struct drm_device *dev = crtc->base.dev;
8065 struct drm_i915_private *dev_priv = dev->dev_private;
8066 uint32_t tmp;
8067
dc9e7dec
VS
8068 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
8069 return;
8070
2fa2fe9a 8071 tmp = I915_READ(PFIT_CONTROL);
06922821
DV
8072 if (!(tmp & PFIT_ENABLE))
8073 return;
2fa2fe9a 8074
06922821 8075 /* Check whether the pfit is attached to our pipe. */
2fa2fe9a
DV
8076 if (INTEL_INFO(dev)->gen < 4) {
8077 if (crtc->pipe != PIPE_B)
8078 return;
2fa2fe9a
DV
8079 } else {
8080 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
8081 return;
8082 }
8083
06922821 8084 pipe_config->gmch_pfit.control = tmp;
2fa2fe9a
DV
8085 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
8086 if (INTEL_INFO(dev)->gen < 5)
8087 pipe_config->gmch_pfit.lvds_border_bits =
8088 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
8089}
8090
acbec814 8091static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8092 struct intel_crtc_state *pipe_config)
acbec814
JB
8093{
8094 struct drm_device *dev = crtc->base.dev;
8095 struct drm_i915_private *dev_priv = dev->dev_private;
8096 int pipe = pipe_config->cpu_transcoder;
8097 intel_clock_t clock;
8098 u32 mdiv;
662c6ecb 8099 int refclk = 100000;
acbec814 8100
f573de5a
SK
8101 /* In case of MIPI DPLL will not even be used */
8102 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
8103 return;
8104
a580516d 8105 mutex_lock(&dev_priv->sb_lock);
ab3c759a 8106 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
a580516d 8107 mutex_unlock(&dev_priv->sb_lock);
acbec814
JB
8108
8109 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
8110 clock.m2 = mdiv & DPIO_M2DIV_MASK;
8111 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
8112 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
8113 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
8114
dccbea3b 8115 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
acbec814
JB
8116}
8117
5724dbd1
DL
8118static void
8119i9xx_get_initial_plane_config(struct intel_crtc *crtc,
8120 struct intel_initial_plane_config *plane_config)
1ad292b5
JB
8121{
8122 struct drm_device *dev = crtc->base.dev;
8123 struct drm_i915_private *dev_priv = dev->dev_private;
8124 u32 val, base, offset;
8125 int pipe = crtc->pipe, plane = crtc->plane;
8126 int fourcc, pixel_format;
6761dd31 8127 unsigned int aligned_height;
b113d5ee 8128 struct drm_framebuffer *fb;
1b842c89 8129 struct intel_framebuffer *intel_fb;
1ad292b5 8130
42a7b088
DL
8131 val = I915_READ(DSPCNTR(plane));
8132 if (!(val & DISPLAY_PLANE_ENABLE))
8133 return;
8134
d9806c9f 8135 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 8136 if (!intel_fb) {
1ad292b5
JB
8137 DRM_DEBUG_KMS("failed to alloc fb\n");
8138 return;
8139 }
8140
1b842c89
DL
8141 fb = &intel_fb->base;
8142
18c5247e
DV
8143 if (INTEL_INFO(dev)->gen >= 4) {
8144 if (val & DISPPLANE_TILED) {
49af449b 8145 plane_config->tiling = I915_TILING_X;
18c5247e
DV
8146 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8147 }
8148 }
1ad292b5
JB
8149
8150 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 8151 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
8152 fb->pixel_format = fourcc;
8153 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
1ad292b5
JB
8154
8155 if (INTEL_INFO(dev)->gen >= 4) {
49af449b 8156 if (plane_config->tiling)
1ad292b5
JB
8157 offset = I915_READ(DSPTILEOFF(plane));
8158 else
8159 offset = I915_READ(DSPLINOFF(plane));
8160 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8161 } else {
8162 base = I915_READ(DSPADDR(plane));
8163 }
8164 plane_config->base = base;
8165
8166 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
8167 fb->width = ((val >> 16) & 0xfff) + 1;
8168 fb->height = ((val >> 0) & 0xfff) + 1;
1ad292b5
JB
8169
8170 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 8171 fb->pitches[0] = val & 0xffffffc0;
1ad292b5 8172
b113d5ee 8173 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
8174 fb->pixel_format,
8175 fb->modifier[0]);
1ad292b5 8176
f37b5c2b 8177 plane_config->size = fb->pitches[0] * aligned_height;
1ad292b5 8178
2844a921
DL
8179 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8180 pipe_name(pipe), plane, fb->width, fb->height,
8181 fb->bits_per_pixel, base, fb->pitches[0],
8182 plane_config->size);
1ad292b5 8183
2d14030b 8184 plane_config->fb = intel_fb;
1ad292b5
JB
8185}
8186
70b23a98 8187static void chv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8188 struct intel_crtc_state *pipe_config)
70b23a98
VS
8189{
8190 struct drm_device *dev = crtc->base.dev;
8191 struct drm_i915_private *dev_priv = dev->dev_private;
8192 int pipe = pipe_config->cpu_transcoder;
8193 enum dpio_channel port = vlv_pipe_to_channel(pipe);
8194 intel_clock_t clock;
0d7b6b11 8195 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
70b23a98
VS
8196 int refclk = 100000;
8197
a580516d 8198 mutex_lock(&dev_priv->sb_lock);
70b23a98
VS
8199 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8200 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8201 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8202 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
0d7b6b11 8203 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
a580516d 8204 mutex_unlock(&dev_priv->sb_lock);
70b23a98
VS
8205
8206 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
0d7b6b11
ID
8207 clock.m2 = (pll_dw0 & 0xff) << 22;
8208 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8209 clock.m2 |= pll_dw2 & 0x3fffff;
70b23a98
VS
8210 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8211 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8212 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8213
dccbea3b 8214 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
70b23a98
VS
8215}
8216
0e8ffe1b 8217static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
5cec258b 8218 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
8219{
8220 struct drm_device *dev = crtc->base.dev;
8221 struct drm_i915_private *dev_priv = dev->dev_private;
8222 uint32_t tmp;
8223
f458ebbc
DV
8224 if (!intel_display_power_is_enabled(dev_priv,
8225 POWER_DOMAIN_PIPE(crtc->pipe)))
b5482bd0
ID
8226 return false;
8227
e143a21c 8228 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 8229 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 8230
0e8ffe1b
DV
8231 tmp = I915_READ(PIPECONF(crtc->pipe));
8232 if (!(tmp & PIPECONF_ENABLE))
8233 return false;
8234
666a4537 8235 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
42571aef
VS
8236 switch (tmp & PIPECONF_BPC_MASK) {
8237 case PIPECONF_6BPC:
8238 pipe_config->pipe_bpp = 18;
8239 break;
8240 case PIPECONF_8BPC:
8241 pipe_config->pipe_bpp = 24;
8242 break;
8243 case PIPECONF_10BPC:
8244 pipe_config->pipe_bpp = 30;
8245 break;
8246 default:
8247 break;
8248 }
8249 }
8250
666a4537
WB
8251 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
8252 (tmp & PIPECONF_COLOR_RANGE_SELECT))
b5a9fa09
DV
8253 pipe_config->limited_color_range = true;
8254
282740f7
VS
8255 if (INTEL_INFO(dev)->gen < 4)
8256 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8257
1bd1bd80
DV
8258 intel_get_pipe_timings(crtc, pipe_config);
8259
2fa2fe9a
DV
8260 i9xx_get_pfit_config(crtc, pipe_config);
8261
6c49f241
DV
8262 if (INTEL_INFO(dev)->gen >= 4) {
8263 tmp = I915_READ(DPLL_MD(crtc->pipe));
8264 pipe_config->pixel_multiplier =
8265 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8266 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8bcc2795 8267 pipe_config->dpll_hw_state.dpll_md = tmp;
6c49f241
DV
8268 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
8269 tmp = I915_READ(DPLL(crtc->pipe));
8270 pipe_config->pixel_multiplier =
8271 ((tmp & SDVO_MULTIPLIER_MASK)
8272 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8273 } else {
8274 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8275 * port and will be fixed up in the encoder->get_config
8276 * function. */
8277 pipe_config->pixel_multiplier = 1;
8278 }
8bcc2795 8279 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
666a4537 8280 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
1c4e0274
VS
8281 /*
8282 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8283 * on 830. Filter it out here so that we don't
8284 * report errors due to that.
8285 */
8286 if (IS_I830(dev))
8287 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8288
8bcc2795
DV
8289 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8290 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
165e901c
VS
8291 } else {
8292 /* Mask out read-only status bits. */
8293 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8294 DPLL_PORTC_READY_MASK |
8295 DPLL_PORTB_READY_MASK);
8bcc2795 8296 }
6c49f241 8297
70b23a98
VS
8298 if (IS_CHERRYVIEW(dev))
8299 chv_crtc_clock_get(crtc, pipe_config);
8300 else if (IS_VALLEYVIEW(dev))
acbec814
JB
8301 vlv_crtc_clock_get(crtc, pipe_config);
8302 else
8303 i9xx_crtc_clock_get(crtc, pipe_config);
18442d08 8304
0f64614d
VS
8305 /*
8306 * Normally the dotclock is filled in by the encoder .get_config()
8307 * but in case the pipe is enabled w/o any ports we need a sane
8308 * default.
8309 */
8310 pipe_config->base.adjusted_mode.crtc_clock =
8311 pipe_config->port_clock / pipe_config->pixel_multiplier;
8312
0e8ffe1b
DV
8313 return true;
8314}
8315
dde86e2d 8316static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67
JB
8317{
8318 struct drm_i915_private *dev_priv = dev->dev_private;
13d83a67 8319 struct intel_encoder *encoder;
74cfd7ac 8320 u32 val, final;
13d83a67 8321 bool has_lvds = false;
199e5d79 8322 bool has_cpu_edp = false;
199e5d79 8323 bool has_panel = false;
99eb6a01
KP
8324 bool has_ck505 = false;
8325 bool can_ssc = false;
13d83a67
JB
8326
8327 /* We need to take the global config into account */
b2784e15 8328 for_each_intel_encoder(dev, encoder) {
199e5d79
KP
8329 switch (encoder->type) {
8330 case INTEL_OUTPUT_LVDS:
8331 has_panel = true;
8332 has_lvds = true;
8333 break;
8334 case INTEL_OUTPUT_EDP:
8335 has_panel = true;
2de6905f 8336 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
8337 has_cpu_edp = true;
8338 break;
6847d71b
PZ
8339 default:
8340 break;
13d83a67
JB
8341 }
8342 }
8343
99eb6a01 8344 if (HAS_PCH_IBX(dev)) {
41aa3448 8345 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
8346 can_ssc = has_ck505;
8347 } else {
8348 has_ck505 = false;
8349 can_ssc = true;
8350 }
8351
2de6905f
ID
8352 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
8353 has_panel, has_lvds, has_ck505);
13d83a67
JB
8354
8355 /* Ironlake: try to setup display ref clock before DPLL
8356 * enabling. This is only under driver's control after
8357 * PCH B stepping, previous chipset stepping should be
8358 * ignoring this setting.
8359 */
74cfd7ac
CW
8360 val = I915_READ(PCH_DREF_CONTROL);
8361
8362 /* As we must carefully and slowly disable/enable each source in turn,
8363 * compute the final state we want first and check if we need to
8364 * make any changes at all.
8365 */
8366 final = val;
8367 final &= ~DREF_NONSPREAD_SOURCE_MASK;
8368 if (has_ck505)
8369 final |= DREF_NONSPREAD_CK505_ENABLE;
8370 else
8371 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8372
8373 final &= ~DREF_SSC_SOURCE_MASK;
8374 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
8375 final &= ~DREF_SSC1_ENABLE;
8376
8377 if (has_panel) {
8378 final |= DREF_SSC_SOURCE_ENABLE;
8379
8380 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8381 final |= DREF_SSC1_ENABLE;
8382
8383 if (has_cpu_edp) {
8384 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8385 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
8386 else
8387 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
8388 } else
8389 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8390 } else {
8391 final |= DREF_SSC_SOURCE_DISABLE;
8392 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8393 }
8394
8395 if (final == val)
8396 return;
8397
13d83a67 8398 /* Always enable nonspread source */
74cfd7ac 8399 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 8400
99eb6a01 8401 if (has_ck505)
74cfd7ac 8402 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 8403 else
74cfd7ac 8404 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 8405
199e5d79 8406 if (has_panel) {
74cfd7ac
CW
8407 val &= ~DREF_SSC_SOURCE_MASK;
8408 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 8409
199e5d79 8410 /* SSC must be turned on before enabling the CPU output */
99eb6a01 8411 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 8412 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 8413 val |= DREF_SSC1_ENABLE;
e77166b5 8414 } else
74cfd7ac 8415 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
8416
8417 /* Get SSC going before enabling the outputs */
74cfd7ac 8418 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8419 POSTING_READ(PCH_DREF_CONTROL);
8420 udelay(200);
8421
74cfd7ac 8422 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
8423
8424 /* Enable CPU source on CPU attached eDP */
199e5d79 8425 if (has_cpu_edp) {
99eb6a01 8426 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 8427 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 8428 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
eba905b2 8429 } else
74cfd7ac 8430 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 8431 } else
74cfd7ac 8432 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 8433
74cfd7ac 8434 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8435 POSTING_READ(PCH_DREF_CONTROL);
8436 udelay(200);
8437 } else {
8438 DRM_DEBUG_KMS("Disabling SSC entirely\n");
8439
74cfd7ac 8440 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
8441
8442 /* Turn off CPU output */
74cfd7ac 8443 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 8444
74cfd7ac 8445 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8446 POSTING_READ(PCH_DREF_CONTROL);
8447 udelay(200);
8448
8449 /* Turn off the SSC source */
74cfd7ac
CW
8450 val &= ~DREF_SSC_SOURCE_MASK;
8451 val |= DREF_SSC_SOURCE_DISABLE;
199e5d79
KP
8452
8453 /* Turn off SSC1 */
74cfd7ac 8454 val &= ~DREF_SSC1_ENABLE;
199e5d79 8455
74cfd7ac 8456 I915_WRITE(PCH_DREF_CONTROL, val);
13d83a67
JB
8457 POSTING_READ(PCH_DREF_CONTROL);
8458 udelay(200);
8459 }
74cfd7ac
CW
8460
8461 BUG_ON(val != final);
13d83a67
JB
8462}
8463
f31f2d55 8464static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
dde86e2d 8465{
f31f2d55 8466 uint32_t tmp;
dde86e2d 8467
0ff066a9
PZ
8468 tmp = I915_READ(SOUTH_CHICKEN2);
8469 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
8470 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 8471
0ff066a9
PZ
8472 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
8473 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
8474 DRM_ERROR("FDI mPHY reset assert timeout\n");
dde86e2d 8475
0ff066a9
PZ
8476 tmp = I915_READ(SOUTH_CHICKEN2);
8477 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
8478 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 8479
0ff066a9
PZ
8480 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
8481 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
8482 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
f31f2d55
PZ
8483}
8484
8485/* WaMPhyProgramming:hsw */
8486static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
8487{
8488 uint32_t tmp;
dde86e2d
PZ
8489
8490 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
8491 tmp &= ~(0xFF << 24);
8492 tmp |= (0x12 << 24);
8493 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
8494
dde86e2d
PZ
8495 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
8496 tmp |= (1 << 11);
8497 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
8498
8499 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
8500 tmp |= (1 << 11);
8501 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
8502
dde86e2d
PZ
8503 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
8504 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8505 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
8506
8507 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
8508 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8509 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
8510
0ff066a9
PZ
8511 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
8512 tmp &= ~(7 << 13);
8513 tmp |= (5 << 13);
8514 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
dde86e2d 8515
0ff066a9
PZ
8516 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8517 tmp &= ~(7 << 13);
8518 tmp |= (5 << 13);
8519 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
dde86e2d
PZ
8520
8521 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8522 tmp &= ~0xFF;
8523 tmp |= 0x1C;
8524 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8525
8526 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8527 tmp &= ~0xFF;
8528 tmp |= 0x1C;
8529 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8530
8531 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8532 tmp &= ~(0xFF << 16);
8533 tmp |= (0x1C << 16);
8534 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8535
8536 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8537 tmp &= ~(0xFF << 16);
8538 tmp |= (0x1C << 16);
8539 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8540
0ff066a9
PZ
8541 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8542 tmp |= (1 << 27);
8543 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
dde86e2d 8544
0ff066a9
PZ
8545 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8546 tmp |= (1 << 27);
8547 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
dde86e2d 8548
0ff066a9
PZ
8549 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
8550 tmp &= ~(0xF << 28);
8551 tmp |= (4 << 28);
8552 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
dde86e2d 8553
0ff066a9
PZ
8554 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8555 tmp &= ~(0xF << 28);
8556 tmp |= (4 << 28);
8557 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
f31f2d55
PZ
8558}
8559
2fa86a1f
PZ
8560/* Implements 3 different sequences from BSpec chapter "Display iCLK
8561 * Programming" based on the parameters passed:
8562 * - Sequence to enable CLKOUT_DP
8563 * - Sequence to enable CLKOUT_DP without spread
8564 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8565 */
8566static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8567 bool with_fdi)
f31f2d55
PZ
8568{
8569 struct drm_i915_private *dev_priv = dev->dev_private;
2fa86a1f
PZ
8570 uint32_t reg, tmp;
8571
8572 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8573 with_spread = true;
c2699524 8574 if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n"))
2fa86a1f 8575 with_fdi = false;
f31f2d55 8576
a580516d 8577 mutex_lock(&dev_priv->sb_lock);
f31f2d55
PZ
8578
8579 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8580 tmp &= ~SBI_SSCCTL_DISABLE;
8581 tmp |= SBI_SSCCTL_PATHALT;
8582 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8583
8584 udelay(24);
8585
2fa86a1f
PZ
8586 if (with_spread) {
8587 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8588 tmp &= ~SBI_SSCCTL_PATHALT;
8589 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
f31f2d55 8590
2fa86a1f
PZ
8591 if (with_fdi) {
8592 lpt_reset_fdi_mphy(dev_priv);
8593 lpt_program_fdi_mphy(dev_priv);
8594 }
8595 }
dde86e2d 8596
c2699524 8597 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
2fa86a1f
PZ
8598 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8599 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8600 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
c00db246 8601
a580516d 8602 mutex_unlock(&dev_priv->sb_lock);
dde86e2d
PZ
8603}
8604
47701c3b
PZ
8605/* Sequence to disable CLKOUT_DP */
8606static void lpt_disable_clkout_dp(struct drm_device *dev)
8607{
8608 struct drm_i915_private *dev_priv = dev->dev_private;
8609 uint32_t reg, tmp;
8610
a580516d 8611 mutex_lock(&dev_priv->sb_lock);
47701c3b 8612
c2699524 8613 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
47701c3b
PZ
8614 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8615 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8616 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8617
8618 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8619 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8620 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8621 tmp |= SBI_SSCCTL_PATHALT;
8622 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8623 udelay(32);
8624 }
8625 tmp |= SBI_SSCCTL_DISABLE;
8626 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8627 }
8628
a580516d 8629 mutex_unlock(&dev_priv->sb_lock);
47701c3b
PZ
8630}
8631
f7be2c21
VS
8632#define BEND_IDX(steps) ((50 + (steps)) / 5)
8633
8634static const uint16_t sscdivintphase[] = {
8635 [BEND_IDX( 50)] = 0x3B23,
8636 [BEND_IDX( 45)] = 0x3B23,
8637 [BEND_IDX( 40)] = 0x3C23,
8638 [BEND_IDX( 35)] = 0x3C23,
8639 [BEND_IDX( 30)] = 0x3D23,
8640 [BEND_IDX( 25)] = 0x3D23,
8641 [BEND_IDX( 20)] = 0x3E23,
8642 [BEND_IDX( 15)] = 0x3E23,
8643 [BEND_IDX( 10)] = 0x3F23,
8644 [BEND_IDX( 5)] = 0x3F23,
8645 [BEND_IDX( 0)] = 0x0025,
8646 [BEND_IDX( -5)] = 0x0025,
8647 [BEND_IDX(-10)] = 0x0125,
8648 [BEND_IDX(-15)] = 0x0125,
8649 [BEND_IDX(-20)] = 0x0225,
8650 [BEND_IDX(-25)] = 0x0225,
8651 [BEND_IDX(-30)] = 0x0325,
8652 [BEND_IDX(-35)] = 0x0325,
8653 [BEND_IDX(-40)] = 0x0425,
8654 [BEND_IDX(-45)] = 0x0425,
8655 [BEND_IDX(-50)] = 0x0525,
8656};
8657
8658/*
8659 * Bend CLKOUT_DP
8660 * steps -50 to 50 inclusive, in steps of 5
8661 * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz)
8662 * change in clock period = -(steps / 10) * 5.787 ps
8663 */
8664static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps)
8665{
8666 uint32_t tmp;
8667 int idx = BEND_IDX(steps);
8668
8669 if (WARN_ON(steps % 5 != 0))
8670 return;
8671
8672 if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase)))
8673 return;
8674
8675 mutex_lock(&dev_priv->sb_lock);
8676
8677 if (steps % 10 != 0)
8678 tmp = 0xAAAAAAAB;
8679 else
8680 tmp = 0x00000000;
8681 intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK);
8682
8683 tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK);
8684 tmp &= 0xffff0000;
8685 tmp |= sscdivintphase[idx];
8686 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK);
8687
8688 mutex_unlock(&dev_priv->sb_lock);
8689}
8690
8691#undef BEND_IDX
8692
bf8fa3d3
PZ
8693static void lpt_init_pch_refclk(struct drm_device *dev)
8694{
bf8fa3d3
PZ
8695 struct intel_encoder *encoder;
8696 bool has_vga = false;
8697
b2784e15 8698 for_each_intel_encoder(dev, encoder) {
bf8fa3d3
PZ
8699 switch (encoder->type) {
8700 case INTEL_OUTPUT_ANALOG:
8701 has_vga = true;
8702 break;
6847d71b
PZ
8703 default:
8704 break;
bf8fa3d3
PZ
8705 }
8706 }
8707
f7be2c21
VS
8708 if (has_vga) {
8709 lpt_bend_clkout_dp(to_i915(dev), 0);
47701c3b 8710 lpt_enable_clkout_dp(dev, true, true);
f7be2c21 8711 } else {
47701c3b 8712 lpt_disable_clkout_dp(dev);
f7be2c21 8713 }
bf8fa3d3
PZ
8714}
8715
dde86e2d
PZ
8716/*
8717 * Initialize reference clocks when the driver loads
8718 */
8719void intel_init_pch_refclk(struct drm_device *dev)
8720{
8721 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8722 ironlake_init_pch_refclk(dev);
8723 else if (HAS_PCH_LPT(dev))
8724 lpt_init_pch_refclk(dev);
8725}
8726
55bb9992 8727static int ironlake_get_refclk(struct intel_crtc_state *crtc_state)
d9d444cb 8728{
55bb9992 8729 struct drm_device *dev = crtc_state->base.crtc->dev;
d9d444cb 8730 struct drm_i915_private *dev_priv = dev->dev_private;
55bb9992 8731 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 8732 struct drm_connector *connector;
55bb9992 8733 struct drm_connector_state *connector_state;
d9d444cb 8734 struct intel_encoder *encoder;
55bb9992 8735 int num_connectors = 0, i;
d9d444cb
JB
8736 bool is_lvds = false;
8737
da3ced29 8738 for_each_connector_in_state(state, connector, connector_state, i) {
55bb9992
ACO
8739 if (connector_state->crtc != crtc_state->base.crtc)
8740 continue;
8741
8742 encoder = to_intel_encoder(connector_state->best_encoder);
8743
d9d444cb
JB
8744 switch (encoder->type) {
8745 case INTEL_OUTPUT_LVDS:
8746 is_lvds = true;
8747 break;
6847d71b
PZ
8748 default:
8749 break;
d9d444cb
JB
8750 }
8751 num_connectors++;
8752 }
8753
8754 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b 8755 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
41aa3448 8756 dev_priv->vbt.lvds_ssc_freq);
e91e941b 8757 return dev_priv->vbt.lvds_ssc_freq;
d9d444cb
JB
8758 }
8759
8760 return 120000;
8761}
8762
6ff93609 8763static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 8764{
c8203565 8765 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
79e53945
JB
8766 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8767 int pipe = intel_crtc->pipe;
c8203565
PZ
8768 uint32_t val;
8769
78114071 8770 val = 0;
c8203565 8771
6e3c9717 8772 switch (intel_crtc->config->pipe_bpp) {
c8203565 8773 case 18:
dfd07d72 8774 val |= PIPECONF_6BPC;
c8203565
PZ
8775 break;
8776 case 24:
dfd07d72 8777 val |= PIPECONF_8BPC;
c8203565
PZ
8778 break;
8779 case 30:
dfd07d72 8780 val |= PIPECONF_10BPC;
c8203565
PZ
8781 break;
8782 case 36:
dfd07d72 8783 val |= PIPECONF_12BPC;
c8203565
PZ
8784 break;
8785 default:
cc769b62
PZ
8786 /* Case prevented by intel_choose_pipe_bpp_dither. */
8787 BUG();
c8203565
PZ
8788 }
8789
6e3c9717 8790 if (intel_crtc->config->dither)
c8203565
PZ
8791 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8792
6e3c9717 8793 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
8794 val |= PIPECONF_INTERLACED_ILK;
8795 else
8796 val |= PIPECONF_PROGRESSIVE;
8797
6e3c9717 8798 if (intel_crtc->config->limited_color_range)
3685a8f3 8799 val |= PIPECONF_COLOR_RANGE_SELECT;
3685a8f3 8800
c8203565
PZ
8801 I915_WRITE(PIPECONF(pipe), val);
8802 POSTING_READ(PIPECONF(pipe));
8803}
8804
86d3efce
VS
8805/*
8806 * Set up the pipe CSC unit.
8807 *
8808 * Currently only full range RGB to limited range RGB conversion
8809 * is supported, but eventually this should handle various
8810 * RGB<->YCbCr scenarios as well.
8811 */
50f3b016 8812static void intel_set_pipe_csc(struct drm_crtc *crtc)
86d3efce
VS
8813{
8814 struct drm_device *dev = crtc->dev;
8815 struct drm_i915_private *dev_priv = dev->dev_private;
8816 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8817 int pipe = intel_crtc->pipe;
8818 uint16_t coeff = 0x7800; /* 1.0 */
8819
8820 /*
8821 * TODO: Check what kind of values actually come out of the pipe
8822 * with these coeff/postoff values and adjust to get the best
8823 * accuracy. Perhaps we even need to take the bpc value into
8824 * consideration.
8825 */
8826
6e3c9717 8827 if (intel_crtc->config->limited_color_range)
86d3efce
VS
8828 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
8829
8830 /*
8831 * GY/GU and RY/RU should be the other way around according
8832 * to BSpec, but reality doesn't agree. Just set them up in
8833 * a way that results in the correct picture.
8834 */
8835 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
8836 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
8837
8838 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
8839 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
8840
8841 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
8842 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
8843
8844 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
8845 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
8846 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
8847
8848 if (INTEL_INFO(dev)->gen > 6) {
8849 uint16_t postoff = 0;
8850
6e3c9717 8851 if (intel_crtc->config->limited_color_range)
32cf0cb0 8852 postoff = (16 * (1 << 12) / 255) & 0x1fff;
86d3efce
VS
8853
8854 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
8855 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
8856 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
8857
8858 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
8859 } else {
8860 uint32_t mode = CSC_MODE_YUV_TO_RGB;
8861
6e3c9717 8862 if (intel_crtc->config->limited_color_range)
86d3efce
VS
8863 mode |= CSC_BLACK_SCREEN_OFFSET;
8864
8865 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
8866 }
8867}
8868
6ff93609 8869static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38 8870{
756f85cf
PZ
8871 struct drm_device *dev = crtc->dev;
8872 struct drm_i915_private *dev_priv = dev->dev_private;
ee2b0b38 8873 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
756f85cf 8874 enum pipe pipe = intel_crtc->pipe;
6e3c9717 8875 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee2b0b38
PZ
8876 uint32_t val;
8877
3eff4faa 8878 val = 0;
ee2b0b38 8879
6e3c9717 8880 if (IS_HASWELL(dev) && intel_crtc->config->dither)
ee2b0b38
PZ
8881 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8882
6e3c9717 8883 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
8884 val |= PIPECONF_INTERLACED_ILK;
8885 else
8886 val |= PIPECONF_PROGRESSIVE;
8887
702e7a56
PZ
8888 I915_WRITE(PIPECONF(cpu_transcoder), val);
8889 POSTING_READ(PIPECONF(cpu_transcoder));
3eff4faa
DV
8890
8891 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
8892 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
756f85cf 8893
3cdf122c 8894 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
756f85cf
PZ
8895 val = 0;
8896
6e3c9717 8897 switch (intel_crtc->config->pipe_bpp) {
756f85cf
PZ
8898 case 18:
8899 val |= PIPEMISC_DITHER_6_BPC;
8900 break;
8901 case 24:
8902 val |= PIPEMISC_DITHER_8_BPC;
8903 break;
8904 case 30:
8905 val |= PIPEMISC_DITHER_10_BPC;
8906 break;
8907 case 36:
8908 val |= PIPEMISC_DITHER_12_BPC;
8909 break;
8910 default:
8911 /* Case prevented by pipe_config_set_bpp. */
8912 BUG();
8913 }
8914
6e3c9717 8915 if (intel_crtc->config->dither)
756f85cf
PZ
8916 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8917
8918 I915_WRITE(PIPEMISC(pipe), val);
8919 }
ee2b0b38
PZ
8920}
8921
6591c6e4 8922static bool ironlake_compute_clocks(struct drm_crtc *crtc,
190f68c5 8923 struct intel_crtc_state *crtc_state,
6591c6e4
PZ
8924 intel_clock_t *clock,
8925 bool *has_reduced_clock,
8926 intel_clock_t *reduced_clock)
8927{
8928 struct drm_device *dev = crtc->dev;
8929 struct drm_i915_private *dev_priv = dev->dev_private;
6591c6e4 8930 int refclk;
d4906093 8931 const intel_limit_t *limit;
c329a4ec 8932 bool ret;
79e53945 8933
55bb9992 8934 refclk = ironlake_get_refclk(crtc_state);
79e53945 8935
d4906093
ML
8936 /*
8937 * Returns a set of divisors for the desired target clock with the given
8938 * refclk, or FALSE. The returned values represent the clock equation:
8939 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
8940 */
a93e255f
ACO
8941 limit = intel_limit(crtc_state, refclk);
8942 ret = dev_priv->display.find_dpll(limit, crtc_state,
190f68c5 8943 crtc_state->port_clock,
ee9300bb 8944 refclk, NULL, clock);
6591c6e4
PZ
8945 if (!ret)
8946 return false;
cda4b7d3 8947
6591c6e4
PZ
8948 return true;
8949}
8950
d4b1931c
PZ
8951int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
8952{
8953 /*
8954 * Account for spread spectrum to avoid
8955 * oversubscribing the link. Max center spread
8956 * is 2.5%; use 5% for safety's sake.
8957 */
8958 u32 bps = target_clock * bpp * 21 / 20;
619d4d04 8959 return DIV_ROUND_UP(bps, link_bw * 8);
d4b1931c
PZ
8960}
8961
7429e9d4 8962static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
6cf86a5e 8963{
7429e9d4 8964 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
f48d8f23
PZ
8965}
8966
de13a2e3 8967static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
190f68c5 8968 struct intel_crtc_state *crtc_state,
7429e9d4 8969 u32 *fp,
9a7c7890 8970 intel_clock_t *reduced_clock, u32 *fp2)
79e53945 8971{
de13a2e3 8972 struct drm_crtc *crtc = &intel_crtc->base;
79e53945
JB
8973 struct drm_device *dev = crtc->dev;
8974 struct drm_i915_private *dev_priv = dev->dev_private;
55bb9992 8975 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 8976 struct drm_connector *connector;
55bb9992
ACO
8977 struct drm_connector_state *connector_state;
8978 struct intel_encoder *encoder;
de13a2e3 8979 uint32_t dpll;
55bb9992 8980 int factor, num_connectors = 0, i;
09ede541 8981 bool is_lvds = false, is_sdvo = false;
79e53945 8982
da3ced29 8983 for_each_connector_in_state(state, connector, connector_state, i) {
55bb9992
ACO
8984 if (connector_state->crtc != crtc_state->base.crtc)
8985 continue;
8986
8987 encoder = to_intel_encoder(connector_state->best_encoder);
8988
8989 switch (encoder->type) {
79e53945
JB
8990 case INTEL_OUTPUT_LVDS:
8991 is_lvds = true;
8992 break;
8993 case INTEL_OUTPUT_SDVO:
7d57382e 8994 case INTEL_OUTPUT_HDMI:
79e53945 8995 is_sdvo = true;
79e53945 8996 break;
6847d71b
PZ
8997 default:
8998 break;
79e53945 8999 }
43565a06 9000
c751ce4f 9001 num_connectors++;
79e53945 9002 }
79e53945 9003
c1858123 9004 /* Enable autotuning of the PLL clock (if permissible) */
8febb297
EA
9005 factor = 21;
9006 if (is_lvds) {
9007 if ((intel_panel_use_ssc(dev_priv) &&
e91e941b 9008 dev_priv->vbt.lvds_ssc_freq == 100000) ||
f0b44056 9009 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
8febb297 9010 factor = 25;
190f68c5 9011 } else if (crtc_state->sdvo_tv_clock)
8febb297 9012 factor = 20;
c1858123 9013
190f68c5 9014 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
7d0ac5b7 9015 *fp |= FP_CB_TUNE;
2c07245f 9016
9a7c7890
DV
9017 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
9018 *fp2 |= FP_CB_TUNE;
9019
5eddb70b 9020 dpll = 0;
2c07245f 9021
a07d6787
EA
9022 if (is_lvds)
9023 dpll |= DPLLB_MODE_LVDS;
9024 else
9025 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 9026
190f68c5 9027 dpll |= (crtc_state->pixel_multiplier - 1)
ef1b460d 9028 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f
DV
9029
9030 if (is_sdvo)
4a33e48d 9031 dpll |= DPLL_SDVO_HIGH_SPEED;
190f68c5 9032 if (crtc_state->has_dp_encoder)
4a33e48d 9033 dpll |= DPLL_SDVO_HIGH_SPEED;
79e53945 9034
a07d6787 9035 /* compute bitmask from p1 value */
190f68c5 9036 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 9037 /* also FPA1 */
190f68c5 9038 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 9039
190f68c5 9040 switch (crtc_state->dpll.p2) {
a07d6787
EA
9041 case 5:
9042 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
9043 break;
9044 case 7:
9045 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
9046 break;
9047 case 10:
9048 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
9049 break;
9050 case 14:
9051 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
9052 break;
79e53945
JB
9053 }
9054
b4c09f3b 9055 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
43565a06 9056 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
9057 else
9058 dpll |= PLL_REF_INPUT_DREFCLK;
9059
959e16d6 9060 return dpll | DPLL_VCO_ENABLE;
de13a2e3
PZ
9061}
9062
190f68c5
ACO
9063static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
9064 struct intel_crtc_state *crtc_state)
de13a2e3 9065{
c7653199 9066 struct drm_device *dev = crtc->base.dev;
de13a2e3 9067 intel_clock_t clock, reduced_clock;
cbbab5bd 9068 u32 dpll = 0, fp = 0, fp2 = 0;
e2f12b07 9069 bool ok, has_reduced_clock = false;
8b47047b 9070 bool is_lvds = false;
e2b78267 9071 struct intel_shared_dpll *pll;
de13a2e3 9072
dd3cd74a
ACO
9073 memset(&crtc_state->dpll_hw_state, 0,
9074 sizeof(crtc_state->dpll_hw_state));
9075
7905df29 9076 is_lvds = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS);
79e53945 9077
5dc5298b
PZ
9078 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
9079 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
a07d6787 9080
190f68c5 9081 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
de13a2e3 9082 &has_reduced_clock, &reduced_clock);
190f68c5 9083 if (!ok && !crtc_state->clock_set) {
de13a2e3
PZ
9084 DRM_ERROR("Couldn't find PLL settings for mode!\n");
9085 return -EINVAL;
79e53945 9086 }
f47709a9 9087 /* Compat-code for transition, will disappear. */
190f68c5
ACO
9088 if (!crtc_state->clock_set) {
9089 crtc_state->dpll.n = clock.n;
9090 crtc_state->dpll.m1 = clock.m1;
9091 crtc_state->dpll.m2 = clock.m2;
9092 crtc_state->dpll.p1 = clock.p1;
9093 crtc_state->dpll.p2 = clock.p2;
f47709a9 9094 }
79e53945 9095
5dc5298b 9096 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
190f68c5
ACO
9097 if (crtc_state->has_pch_encoder) {
9098 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
cbbab5bd 9099 if (has_reduced_clock)
7429e9d4 9100 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
cbbab5bd 9101
190f68c5 9102 dpll = ironlake_compute_dpll(crtc, crtc_state,
cbbab5bd
DV
9103 &fp, &reduced_clock,
9104 has_reduced_clock ? &fp2 : NULL);
9105
190f68c5
ACO
9106 crtc_state->dpll_hw_state.dpll = dpll;
9107 crtc_state->dpll_hw_state.fp0 = fp;
66e985c0 9108 if (has_reduced_clock)
190f68c5 9109 crtc_state->dpll_hw_state.fp1 = fp2;
66e985c0 9110 else
190f68c5 9111 crtc_state->dpll_hw_state.fp1 = fp;
66e985c0 9112
190f68c5 9113 pll = intel_get_shared_dpll(crtc, crtc_state);
ee7b9f93 9114 if (pll == NULL) {
84f44ce7 9115 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
c7653199 9116 pipe_name(crtc->pipe));
4b645f14
JB
9117 return -EINVAL;
9118 }
3fb37703 9119 }
79e53945 9120
ab585dea 9121 if (is_lvds && has_reduced_clock)
c7653199 9122 crtc->lowfreq_avail = true;
bcd644e0 9123 else
c7653199 9124 crtc->lowfreq_avail = false;
e2b78267 9125
c8f7a0db 9126 return 0;
79e53945
JB
9127}
9128
eb14cb74
VS
9129static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
9130 struct intel_link_m_n *m_n)
9131{
9132 struct drm_device *dev = crtc->base.dev;
9133 struct drm_i915_private *dev_priv = dev->dev_private;
9134 enum pipe pipe = crtc->pipe;
9135
9136 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
9137 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
9138 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
9139 & ~TU_SIZE_MASK;
9140 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
9141 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
9142 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9143}
9144
9145static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
9146 enum transcoder transcoder,
b95af8be
VK
9147 struct intel_link_m_n *m_n,
9148 struct intel_link_m_n *m2_n2)
72419203
DV
9149{
9150 struct drm_device *dev = crtc->base.dev;
9151 struct drm_i915_private *dev_priv = dev->dev_private;
eb14cb74 9152 enum pipe pipe = crtc->pipe;
72419203 9153
eb14cb74
VS
9154 if (INTEL_INFO(dev)->gen >= 5) {
9155 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
9156 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
9157 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
9158 & ~TU_SIZE_MASK;
9159 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
9160 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
9161 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
b95af8be
VK
9162 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
9163 * gen < 8) and if DRRS is supported (to make sure the
9164 * registers are not unnecessarily read).
9165 */
9166 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
6e3c9717 9167 crtc->config->has_drrs) {
b95af8be
VK
9168 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
9169 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
9170 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
9171 & ~TU_SIZE_MASK;
9172 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
9173 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
9174 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9175 }
eb14cb74
VS
9176 } else {
9177 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
9178 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
9179 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
9180 & ~TU_SIZE_MASK;
9181 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
9182 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
9183 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9184 }
9185}
9186
9187void intel_dp_get_m_n(struct intel_crtc *crtc,
5cec258b 9188 struct intel_crtc_state *pipe_config)
eb14cb74 9189{
681a8504 9190 if (pipe_config->has_pch_encoder)
eb14cb74
VS
9191 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
9192 else
9193 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be
VK
9194 &pipe_config->dp_m_n,
9195 &pipe_config->dp_m2_n2);
eb14cb74 9196}
72419203 9197
eb14cb74 9198static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
5cec258b 9199 struct intel_crtc_state *pipe_config)
eb14cb74
VS
9200{
9201 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be 9202 &pipe_config->fdi_m_n, NULL);
72419203
DV
9203}
9204
bd2e244f 9205static void skylake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9206 struct intel_crtc_state *pipe_config)
bd2e244f
JB
9207{
9208 struct drm_device *dev = crtc->base.dev;
9209 struct drm_i915_private *dev_priv = dev->dev_private;
a1b2278e
CK
9210 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9211 uint32_t ps_ctrl = 0;
9212 int id = -1;
9213 int i;
bd2e244f 9214
a1b2278e
CK
9215 /* find scaler attached to this pipe */
9216 for (i = 0; i < crtc->num_scalers; i++) {
9217 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9218 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9219 id = i;
9220 pipe_config->pch_pfit.enabled = true;
9221 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9222 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9223 break;
9224 }
9225 }
bd2e244f 9226
a1b2278e
CK
9227 scaler_state->scaler_id = id;
9228 if (id >= 0) {
9229 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9230 } else {
9231 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
bd2e244f
JB
9232 }
9233}
9234
5724dbd1
DL
9235static void
9236skylake_get_initial_plane_config(struct intel_crtc *crtc,
9237 struct intel_initial_plane_config *plane_config)
bc8d7dff
DL
9238{
9239 struct drm_device *dev = crtc->base.dev;
9240 struct drm_i915_private *dev_priv = dev->dev_private;
40f46283 9241 u32 val, base, offset, stride_mult, tiling;
bc8d7dff
DL
9242 int pipe = crtc->pipe;
9243 int fourcc, pixel_format;
6761dd31 9244 unsigned int aligned_height;
bc8d7dff 9245 struct drm_framebuffer *fb;
1b842c89 9246 struct intel_framebuffer *intel_fb;
bc8d7dff 9247
d9806c9f 9248 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9249 if (!intel_fb) {
bc8d7dff
DL
9250 DRM_DEBUG_KMS("failed to alloc fb\n");
9251 return;
9252 }
9253
1b842c89
DL
9254 fb = &intel_fb->base;
9255
bc8d7dff 9256 val = I915_READ(PLANE_CTL(pipe, 0));
42a7b088
DL
9257 if (!(val & PLANE_CTL_ENABLE))
9258 goto error;
9259
bc8d7dff
DL
9260 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9261 fourcc = skl_format_to_fourcc(pixel_format,
9262 val & PLANE_CTL_ORDER_RGBX,
9263 val & PLANE_CTL_ALPHA_MASK);
9264 fb->pixel_format = fourcc;
9265 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9266
40f46283
DL
9267 tiling = val & PLANE_CTL_TILED_MASK;
9268 switch (tiling) {
9269 case PLANE_CTL_TILED_LINEAR:
9270 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9271 break;
9272 case PLANE_CTL_TILED_X:
9273 plane_config->tiling = I915_TILING_X;
9274 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9275 break;
9276 case PLANE_CTL_TILED_Y:
9277 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9278 break;
9279 case PLANE_CTL_TILED_YF:
9280 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9281 break;
9282 default:
9283 MISSING_CASE(tiling);
9284 goto error;
9285 }
9286
bc8d7dff
DL
9287 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9288 plane_config->base = base;
9289
9290 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9291
9292 val = I915_READ(PLANE_SIZE(pipe, 0));
9293 fb->height = ((val >> 16) & 0xfff) + 1;
9294 fb->width = ((val >> 0) & 0x1fff) + 1;
9295
9296 val = I915_READ(PLANE_STRIDE(pipe, 0));
40f46283
DL
9297 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
9298 fb->pixel_format);
bc8d7dff
DL
9299 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9300
9301 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9302 fb->pixel_format,
9303 fb->modifier[0]);
bc8d7dff 9304
f37b5c2b 9305 plane_config->size = fb->pitches[0] * aligned_height;
bc8d7dff
DL
9306
9307 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9308 pipe_name(pipe), fb->width, fb->height,
9309 fb->bits_per_pixel, base, fb->pitches[0],
9310 plane_config->size);
9311
2d14030b 9312 plane_config->fb = intel_fb;
bc8d7dff
DL
9313 return;
9314
9315error:
9316 kfree(fb);
9317}
9318
2fa2fe9a 9319static void ironlake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9320 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
9321{
9322 struct drm_device *dev = crtc->base.dev;
9323 struct drm_i915_private *dev_priv = dev->dev_private;
9324 uint32_t tmp;
9325
9326 tmp = I915_READ(PF_CTL(crtc->pipe));
9327
9328 if (tmp & PF_ENABLE) {
fd4daa9c 9329 pipe_config->pch_pfit.enabled = true;
2fa2fe9a
DV
9330 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9331 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
9332
9333 /* We currently do not free assignements of panel fitters on
9334 * ivb/hsw (since we don't use the higher upscaling modes which
9335 * differentiates them) so just WARN about this case for now. */
9336 if (IS_GEN7(dev)) {
9337 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9338 PF_PIPE_SEL_IVB(crtc->pipe));
9339 }
2fa2fe9a 9340 }
79e53945
JB
9341}
9342
5724dbd1
DL
9343static void
9344ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9345 struct intel_initial_plane_config *plane_config)
4c6baa59
JB
9346{
9347 struct drm_device *dev = crtc->base.dev;
9348 struct drm_i915_private *dev_priv = dev->dev_private;
9349 u32 val, base, offset;
aeee5a49 9350 int pipe = crtc->pipe;
4c6baa59 9351 int fourcc, pixel_format;
6761dd31 9352 unsigned int aligned_height;
b113d5ee 9353 struct drm_framebuffer *fb;
1b842c89 9354 struct intel_framebuffer *intel_fb;
4c6baa59 9355
42a7b088
DL
9356 val = I915_READ(DSPCNTR(pipe));
9357 if (!(val & DISPLAY_PLANE_ENABLE))
9358 return;
9359
d9806c9f 9360 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9361 if (!intel_fb) {
4c6baa59
JB
9362 DRM_DEBUG_KMS("failed to alloc fb\n");
9363 return;
9364 }
9365
1b842c89
DL
9366 fb = &intel_fb->base;
9367
18c5247e
DV
9368 if (INTEL_INFO(dev)->gen >= 4) {
9369 if (val & DISPPLANE_TILED) {
49af449b 9370 plane_config->tiling = I915_TILING_X;
18c5247e
DV
9371 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9372 }
9373 }
4c6baa59
JB
9374
9375 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 9376 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
9377 fb->pixel_format = fourcc;
9378 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
4c6baa59 9379
aeee5a49 9380 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
4c6baa59 9381 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
aeee5a49 9382 offset = I915_READ(DSPOFFSET(pipe));
4c6baa59 9383 } else {
49af449b 9384 if (plane_config->tiling)
aeee5a49 9385 offset = I915_READ(DSPTILEOFF(pipe));
4c6baa59 9386 else
aeee5a49 9387 offset = I915_READ(DSPLINOFF(pipe));
4c6baa59
JB
9388 }
9389 plane_config->base = base;
9390
9391 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
9392 fb->width = ((val >> 16) & 0xfff) + 1;
9393 fb->height = ((val >> 0) & 0xfff) + 1;
4c6baa59
JB
9394
9395 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 9396 fb->pitches[0] = val & 0xffffffc0;
4c6baa59 9397
b113d5ee 9398 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9399 fb->pixel_format,
9400 fb->modifier[0]);
4c6baa59 9401
f37b5c2b 9402 plane_config->size = fb->pitches[0] * aligned_height;
4c6baa59 9403
2844a921
DL
9404 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9405 pipe_name(pipe), fb->width, fb->height,
9406 fb->bits_per_pixel, base, fb->pitches[0],
9407 plane_config->size);
b113d5ee 9408
2d14030b 9409 plane_config->fb = intel_fb;
4c6baa59
JB
9410}
9411
0e8ffe1b 9412static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
5cec258b 9413 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
9414{
9415 struct drm_device *dev = crtc->base.dev;
9416 struct drm_i915_private *dev_priv = dev->dev_private;
9417 uint32_t tmp;
9418
f458ebbc
DV
9419 if (!intel_display_power_is_enabled(dev_priv,
9420 POWER_DOMAIN_PIPE(crtc->pipe)))
930e8c9e
PZ
9421 return false;
9422
e143a21c 9423 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 9424 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 9425
0e8ffe1b
DV
9426 tmp = I915_READ(PIPECONF(crtc->pipe));
9427 if (!(tmp & PIPECONF_ENABLE))
9428 return false;
9429
42571aef
VS
9430 switch (tmp & PIPECONF_BPC_MASK) {
9431 case PIPECONF_6BPC:
9432 pipe_config->pipe_bpp = 18;
9433 break;
9434 case PIPECONF_8BPC:
9435 pipe_config->pipe_bpp = 24;
9436 break;
9437 case PIPECONF_10BPC:
9438 pipe_config->pipe_bpp = 30;
9439 break;
9440 case PIPECONF_12BPC:
9441 pipe_config->pipe_bpp = 36;
9442 break;
9443 default:
9444 break;
9445 }
9446
b5a9fa09
DV
9447 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9448 pipe_config->limited_color_range = true;
9449
ab9412ba 9450 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
66e985c0
DV
9451 struct intel_shared_dpll *pll;
9452
88adfff1
DV
9453 pipe_config->has_pch_encoder = true;
9454
627eb5a3
DV
9455 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9456 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9457 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
9458
9459 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241 9460
c0d43d62 9461 if (HAS_PCH_IBX(dev_priv->dev)) {
d94ab068
DV
9462 pipe_config->shared_dpll =
9463 (enum intel_dpll_id) crtc->pipe;
c0d43d62
DV
9464 } else {
9465 tmp = I915_READ(PCH_DPLL_SEL);
9466 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
9467 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
9468 else
9469 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
9470 }
66e985c0
DV
9471
9472 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9473
9474 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9475 &pipe_config->dpll_hw_state));
c93f54cf
DV
9476
9477 tmp = pipe_config->dpll_hw_state.dpll;
9478 pipe_config->pixel_multiplier =
9479 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9480 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
18442d08
VS
9481
9482 ironlake_pch_clock_get(crtc, pipe_config);
6c49f241
DV
9483 } else {
9484 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
9485 }
9486
1bd1bd80
DV
9487 intel_get_pipe_timings(crtc, pipe_config);
9488
2fa2fe9a
DV
9489 ironlake_get_pfit_config(crtc, pipe_config);
9490
0e8ffe1b
DV
9491 return true;
9492}
9493
be256dc7
PZ
9494static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9495{
9496 struct drm_device *dev = dev_priv->dev;
be256dc7 9497 struct intel_crtc *crtc;
be256dc7 9498
d3fcc808 9499 for_each_intel_crtc(dev, crtc)
e2c719b7 9500 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
be256dc7
PZ
9501 pipe_name(crtc->pipe));
9502
e2c719b7
RC
9503 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
9504 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
01403de3
VS
9505 I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
9506 I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
e2c719b7
RC
9507 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
9508 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
be256dc7 9509 "CPU PWM1 enabled\n");
c5107b87 9510 if (IS_HASWELL(dev))
e2c719b7 9511 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
c5107b87 9512 "CPU PWM2 enabled\n");
e2c719b7 9513 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
be256dc7 9514 "PCH PWM1 enabled\n");
e2c719b7 9515 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
be256dc7 9516 "Utility pin enabled\n");
e2c719b7 9517 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
be256dc7 9518
9926ada1
PZ
9519 /*
9520 * In theory we can still leave IRQs enabled, as long as only the HPD
9521 * interrupts remain enabled. We used to check for that, but since it's
9522 * gen-specific and since we only disable LCPLL after we fully disable
9523 * the interrupts, the check below should be enough.
9524 */
e2c719b7 9525 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
be256dc7
PZ
9526}
9527
9ccd5aeb
PZ
9528static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
9529{
9530 struct drm_device *dev = dev_priv->dev;
9531
9532 if (IS_HASWELL(dev))
9533 return I915_READ(D_COMP_HSW);
9534 else
9535 return I915_READ(D_COMP_BDW);
9536}
9537
3c4c9b81
PZ
9538static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
9539{
9540 struct drm_device *dev = dev_priv->dev;
9541
9542 if (IS_HASWELL(dev)) {
9543 mutex_lock(&dev_priv->rps.hw_lock);
9544 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
9545 val))
f475dadf 9546 DRM_ERROR("Failed to write to D_COMP\n");
3c4c9b81
PZ
9547 mutex_unlock(&dev_priv->rps.hw_lock);
9548 } else {
9ccd5aeb
PZ
9549 I915_WRITE(D_COMP_BDW, val);
9550 POSTING_READ(D_COMP_BDW);
3c4c9b81 9551 }
be256dc7
PZ
9552}
9553
9554/*
9555 * This function implements pieces of two sequences from BSpec:
9556 * - Sequence for display software to disable LCPLL
9557 * - Sequence for display software to allow package C8+
9558 * The steps implemented here are just the steps that actually touch the LCPLL
9559 * register. Callers should take care of disabling all the display engine
9560 * functions, doing the mode unset, fixing interrupts, etc.
9561 */
6ff58d53
PZ
9562static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9563 bool switch_to_fclk, bool allow_power_down)
be256dc7
PZ
9564{
9565 uint32_t val;
9566
9567 assert_can_disable_lcpll(dev_priv);
9568
9569 val = I915_READ(LCPLL_CTL);
9570
9571 if (switch_to_fclk) {
9572 val |= LCPLL_CD_SOURCE_FCLK;
9573 I915_WRITE(LCPLL_CTL, val);
9574
9575 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9576 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9577 DRM_ERROR("Switching to FCLK failed\n");
9578
9579 val = I915_READ(LCPLL_CTL);
9580 }
9581
9582 val |= LCPLL_PLL_DISABLE;
9583 I915_WRITE(LCPLL_CTL, val);
9584 POSTING_READ(LCPLL_CTL);
9585
9586 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
9587 DRM_ERROR("LCPLL still locked\n");
9588
9ccd5aeb 9589 val = hsw_read_dcomp(dev_priv);
be256dc7 9590 val |= D_COMP_COMP_DISABLE;
3c4c9b81 9591 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
9592 ndelay(100);
9593
9ccd5aeb
PZ
9594 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9595 1))
be256dc7
PZ
9596 DRM_ERROR("D_COMP RCOMP still in progress\n");
9597
9598 if (allow_power_down) {
9599 val = I915_READ(LCPLL_CTL);
9600 val |= LCPLL_POWER_DOWN_ALLOW;
9601 I915_WRITE(LCPLL_CTL, val);
9602 POSTING_READ(LCPLL_CTL);
9603 }
9604}
9605
9606/*
9607 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9608 * source.
9609 */
6ff58d53 9610static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
be256dc7
PZ
9611{
9612 uint32_t val;
9613
9614 val = I915_READ(LCPLL_CTL);
9615
9616 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9617 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9618 return;
9619
a8a8bd54
PZ
9620 /*
9621 * Make sure we're not on PC8 state before disabling PC8, otherwise
9622 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
a8a8bd54 9623 */
59bad947 9624 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
215733fa 9625
be256dc7
PZ
9626 if (val & LCPLL_POWER_DOWN_ALLOW) {
9627 val &= ~LCPLL_POWER_DOWN_ALLOW;
9628 I915_WRITE(LCPLL_CTL, val);
35d8f2eb 9629 POSTING_READ(LCPLL_CTL);
be256dc7
PZ
9630 }
9631
9ccd5aeb 9632 val = hsw_read_dcomp(dev_priv);
be256dc7
PZ
9633 val |= D_COMP_COMP_FORCE;
9634 val &= ~D_COMP_COMP_DISABLE;
3c4c9b81 9635 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
9636
9637 val = I915_READ(LCPLL_CTL);
9638 val &= ~LCPLL_PLL_DISABLE;
9639 I915_WRITE(LCPLL_CTL, val);
9640
9641 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
9642 DRM_ERROR("LCPLL not locked yet\n");
9643
9644 if (val & LCPLL_CD_SOURCE_FCLK) {
9645 val = I915_READ(LCPLL_CTL);
9646 val &= ~LCPLL_CD_SOURCE_FCLK;
9647 I915_WRITE(LCPLL_CTL, val);
9648
9649 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9650 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9651 DRM_ERROR("Switching back to LCPLL failed\n");
9652 }
215733fa 9653
59bad947 9654 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
b6283055 9655 intel_update_cdclk(dev_priv->dev);
be256dc7
PZ
9656}
9657
765dab67
PZ
9658/*
9659 * Package states C8 and deeper are really deep PC states that can only be
9660 * reached when all the devices on the system allow it, so even if the graphics
9661 * device allows PC8+, it doesn't mean the system will actually get to these
9662 * states. Our driver only allows PC8+ when going into runtime PM.
9663 *
9664 * The requirements for PC8+ are that all the outputs are disabled, the power
9665 * well is disabled and most interrupts are disabled, and these are also
9666 * requirements for runtime PM. When these conditions are met, we manually do
9667 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9668 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9669 * hang the machine.
9670 *
9671 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9672 * the state of some registers, so when we come back from PC8+ we need to
9673 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9674 * need to take care of the registers kept by RC6. Notice that this happens even
9675 * if we don't put the device in PCI D3 state (which is what currently happens
9676 * because of the runtime PM support).
9677 *
9678 * For more, read "Display Sequences for Package C8" on the hardware
9679 * documentation.
9680 */
a14cb6fc 9681void hsw_enable_pc8(struct drm_i915_private *dev_priv)
c67a470b 9682{
c67a470b
PZ
9683 struct drm_device *dev = dev_priv->dev;
9684 uint32_t val;
9685
c67a470b
PZ
9686 DRM_DEBUG_KMS("Enabling package C8+\n");
9687
c2699524 9688 if (HAS_PCH_LPT_LP(dev)) {
c67a470b
PZ
9689 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9690 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9691 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9692 }
9693
9694 lpt_disable_clkout_dp(dev);
c67a470b
PZ
9695 hsw_disable_lcpll(dev_priv, true, true);
9696}
9697
a14cb6fc 9698void hsw_disable_pc8(struct drm_i915_private *dev_priv)
c67a470b
PZ
9699{
9700 struct drm_device *dev = dev_priv->dev;
9701 uint32_t val;
9702
c67a470b
PZ
9703 DRM_DEBUG_KMS("Disabling package C8+\n");
9704
9705 hsw_restore_lcpll(dev_priv);
c67a470b
PZ
9706 lpt_init_pch_refclk(dev);
9707
c2699524 9708 if (HAS_PCH_LPT_LP(dev)) {
c67a470b
PZ
9709 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9710 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
9711 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9712 }
9713
9714 intel_prepare_ddi(dev);
c67a470b
PZ
9715}
9716
27c329ed 9717static void broxton_modeset_commit_cdclk(struct drm_atomic_state *old_state)
f8437dd1 9718{
a821fc46 9719 struct drm_device *dev = old_state->dev;
1a617b77
ML
9720 struct intel_atomic_state *old_intel_state =
9721 to_intel_atomic_state(old_state);
9722 unsigned int req_cdclk = old_intel_state->dev_cdclk;
f8437dd1 9723
27c329ed 9724 broxton_set_cdclk(dev, req_cdclk);
f8437dd1
VK
9725}
9726
b432e5cf 9727/* compute the max rate for new configuration */
27c329ed 9728static int ilk_max_pixel_rate(struct drm_atomic_state *state)
b432e5cf 9729{
565602d7
ML
9730 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
9731 struct drm_i915_private *dev_priv = state->dev->dev_private;
9732 struct drm_crtc *crtc;
9733 struct drm_crtc_state *cstate;
27c329ed 9734 struct intel_crtc_state *crtc_state;
565602d7
ML
9735 unsigned max_pixel_rate = 0, i;
9736 enum pipe pipe;
b432e5cf 9737
565602d7
ML
9738 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
9739 sizeof(intel_state->min_pixclk));
27c329ed 9740
565602d7
ML
9741 for_each_crtc_in_state(state, crtc, cstate, i) {
9742 int pixel_rate;
27c329ed 9743
565602d7
ML
9744 crtc_state = to_intel_crtc_state(cstate);
9745 if (!crtc_state->base.enable) {
9746 intel_state->min_pixclk[i] = 0;
b432e5cf 9747 continue;
565602d7 9748 }
b432e5cf 9749
27c329ed 9750 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
b432e5cf
VS
9751
9752 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
565602d7 9753 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
b432e5cf
VS
9754 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
9755
565602d7 9756 intel_state->min_pixclk[i] = pixel_rate;
b432e5cf
VS
9757 }
9758
565602d7
ML
9759 if (!intel_state->active_crtcs)
9760 return 0;
9761
9762 for_each_pipe(dev_priv, pipe)
9763 max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate);
9764
b432e5cf
VS
9765 return max_pixel_rate;
9766}
9767
9768static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
9769{
9770 struct drm_i915_private *dev_priv = dev->dev_private;
9771 uint32_t val, data;
9772 int ret;
9773
9774 if (WARN((I915_READ(LCPLL_CTL) &
9775 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
9776 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
9777 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
9778 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
9779 "trying to change cdclk frequency with cdclk not enabled\n"))
9780 return;
9781
9782 mutex_lock(&dev_priv->rps.hw_lock);
9783 ret = sandybridge_pcode_write(dev_priv,
9784 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
9785 mutex_unlock(&dev_priv->rps.hw_lock);
9786 if (ret) {
9787 DRM_ERROR("failed to inform pcode about cdclk change\n");
9788 return;
9789 }
9790
9791 val = I915_READ(LCPLL_CTL);
9792 val |= LCPLL_CD_SOURCE_FCLK;
9793 I915_WRITE(LCPLL_CTL, val);
9794
9795 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9796 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9797 DRM_ERROR("Switching to FCLK failed\n");
9798
9799 val = I915_READ(LCPLL_CTL);
9800 val &= ~LCPLL_CLK_FREQ_MASK;
9801
9802 switch (cdclk) {
9803 case 450000:
9804 val |= LCPLL_CLK_FREQ_450;
9805 data = 0;
9806 break;
9807 case 540000:
9808 val |= LCPLL_CLK_FREQ_54O_BDW;
9809 data = 1;
9810 break;
9811 case 337500:
9812 val |= LCPLL_CLK_FREQ_337_5_BDW;
9813 data = 2;
9814 break;
9815 case 675000:
9816 val |= LCPLL_CLK_FREQ_675_BDW;
9817 data = 3;
9818 break;
9819 default:
9820 WARN(1, "invalid cdclk frequency\n");
9821 return;
9822 }
9823
9824 I915_WRITE(LCPLL_CTL, val);
9825
9826 val = I915_READ(LCPLL_CTL);
9827 val &= ~LCPLL_CD_SOURCE_FCLK;
9828 I915_WRITE(LCPLL_CTL, val);
9829
9830 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9831 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9832 DRM_ERROR("Switching back to LCPLL failed\n");
9833
9834 mutex_lock(&dev_priv->rps.hw_lock);
9835 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
9836 mutex_unlock(&dev_priv->rps.hw_lock);
9837
9838 intel_update_cdclk(dev);
9839
9840 WARN(cdclk != dev_priv->cdclk_freq,
9841 "cdclk requested %d kHz but got %d kHz\n",
9842 cdclk, dev_priv->cdclk_freq);
9843}
9844
27c329ed 9845static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
b432e5cf 9846{
27c329ed 9847 struct drm_i915_private *dev_priv = to_i915(state->dev);
1a617b77 9848 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
27c329ed 9849 int max_pixclk = ilk_max_pixel_rate(state);
b432e5cf
VS
9850 int cdclk;
9851
9852 /*
9853 * FIXME should also account for plane ratio
9854 * once 64bpp pixel formats are supported.
9855 */
27c329ed 9856 if (max_pixclk > 540000)
b432e5cf 9857 cdclk = 675000;
27c329ed 9858 else if (max_pixclk > 450000)
b432e5cf 9859 cdclk = 540000;
27c329ed 9860 else if (max_pixclk > 337500)
b432e5cf
VS
9861 cdclk = 450000;
9862 else
9863 cdclk = 337500;
9864
b432e5cf 9865 if (cdclk > dev_priv->max_cdclk_freq) {
63ba534e
ML
9866 DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9867 cdclk, dev_priv->max_cdclk_freq);
9868 return -EINVAL;
b432e5cf
VS
9869 }
9870
1a617b77
ML
9871 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
9872 if (!intel_state->active_crtcs)
9873 intel_state->dev_cdclk = 337500;
b432e5cf
VS
9874
9875 return 0;
9876}
9877
27c329ed 9878static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
b432e5cf 9879{
27c329ed 9880 struct drm_device *dev = old_state->dev;
1a617b77
ML
9881 struct intel_atomic_state *old_intel_state =
9882 to_intel_atomic_state(old_state);
9883 unsigned req_cdclk = old_intel_state->dev_cdclk;
b432e5cf 9884
27c329ed 9885 broadwell_set_cdclk(dev, req_cdclk);
b432e5cf
VS
9886}
9887
190f68c5
ACO
9888static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9889 struct intel_crtc_state *crtc_state)
09b4ddf9 9890{
190f68c5 9891 if (!intel_ddi_pll_select(crtc, crtc_state))
6441ab5f 9892 return -EINVAL;
716c2e55 9893
c7653199 9894 crtc->lowfreq_avail = false;
644cef34 9895
c8f7a0db 9896 return 0;
79e53945
JB
9897}
9898
3760b59c
S
9899static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9900 enum port port,
9901 struct intel_crtc_state *pipe_config)
9902{
9903 switch (port) {
9904 case PORT_A:
9905 pipe_config->ddi_pll_sel = SKL_DPLL0;
9906 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9907 break;
9908 case PORT_B:
9909 pipe_config->ddi_pll_sel = SKL_DPLL1;
9910 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9911 break;
9912 case PORT_C:
9913 pipe_config->ddi_pll_sel = SKL_DPLL2;
9914 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9915 break;
9916 default:
9917 DRM_ERROR("Incorrect port type\n");
9918 }
9919}
9920
96b7dfb7
S
9921static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9922 enum port port,
5cec258b 9923 struct intel_crtc_state *pipe_config)
96b7dfb7 9924{
3148ade7 9925 u32 temp, dpll_ctl1;
96b7dfb7
S
9926
9927 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9928 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9929
9930 switch (pipe_config->ddi_pll_sel) {
3148ade7
DL
9931 case SKL_DPLL0:
9932 /*
9933 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
9934 * of the shared DPLL framework and thus needs to be read out
9935 * separately
9936 */
9937 dpll_ctl1 = I915_READ(DPLL_CTRL1);
9938 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
9939 break;
96b7dfb7
S
9940 case SKL_DPLL1:
9941 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9942 break;
9943 case SKL_DPLL2:
9944 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9945 break;
9946 case SKL_DPLL3:
9947 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9948 break;
96b7dfb7
S
9949 }
9950}
9951
7d2c8175
DL
9952static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9953 enum port port,
5cec258b 9954 struct intel_crtc_state *pipe_config)
7d2c8175
DL
9955{
9956 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9957
9958 switch (pipe_config->ddi_pll_sel) {
9959 case PORT_CLK_SEL_WRPLL1:
9960 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
9961 break;
9962 case PORT_CLK_SEL_WRPLL2:
9963 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
9964 break;
00490c22
ML
9965 case PORT_CLK_SEL_SPLL:
9966 pipe_config->shared_dpll = DPLL_ID_SPLL;
79bd23da 9967 break;
7d2c8175
DL
9968 }
9969}
9970
26804afd 9971static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
5cec258b 9972 struct intel_crtc_state *pipe_config)
26804afd
DV
9973{
9974 struct drm_device *dev = crtc->base.dev;
9975 struct drm_i915_private *dev_priv = dev->dev_private;
d452c5b6 9976 struct intel_shared_dpll *pll;
26804afd
DV
9977 enum port port;
9978 uint32_t tmp;
9979
9980 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
9981
9982 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
9983
ef11bdb3 9984 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
96b7dfb7 9985 skylake_get_ddi_pll(dev_priv, port, pipe_config);
3760b59c
S
9986 else if (IS_BROXTON(dev))
9987 bxt_get_ddi_pll(dev_priv, port, pipe_config);
96b7dfb7
S
9988 else
9989 haswell_get_ddi_pll(dev_priv, port, pipe_config);
9cd86933 9990
d452c5b6
DV
9991 if (pipe_config->shared_dpll >= 0) {
9992 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9993
9994 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9995 &pipe_config->dpll_hw_state));
9996 }
9997
26804afd
DV
9998 /*
9999 * Haswell has only FDI/PCH transcoder A. It is which is connected to
10000 * DDI E. So just check whether this pipe is wired to DDI E and whether
10001 * the PCH transcoder is on.
10002 */
ca370455
DL
10003 if (INTEL_INFO(dev)->gen < 9 &&
10004 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
26804afd
DV
10005 pipe_config->has_pch_encoder = true;
10006
10007 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
10008 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
10009 FDI_DP_PORT_WIDTH_SHIFT) + 1;
10010
10011 ironlake_get_fdi_m_n_config(crtc, pipe_config);
10012 }
10013}
10014
0e8ffe1b 10015static bool haswell_get_pipe_config(struct intel_crtc *crtc,
5cec258b 10016 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
10017{
10018 struct drm_device *dev = crtc->base.dev;
10019 struct drm_i915_private *dev_priv = dev->dev_private;
2fa2fe9a 10020 enum intel_display_power_domain pfit_domain;
0e8ffe1b
DV
10021 uint32_t tmp;
10022
f458ebbc 10023 if (!intel_display_power_is_enabled(dev_priv,
b5482bd0
ID
10024 POWER_DOMAIN_PIPE(crtc->pipe)))
10025 return false;
10026
e143a21c 10027 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62
DV
10028 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
10029
eccb140b
DV
10030 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
10031 if (tmp & TRANS_DDI_FUNC_ENABLE) {
10032 enum pipe trans_edp_pipe;
10033 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
10034 default:
10035 WARN(1, "unknown pipe linked to edp transcoder\n");
10036 case TRANS_DDI_EDP_INPUT_A_ONOFF:
10037 case TRANS_DDI_EDP_INPUT_A_ON:
10038 trans_edp_pipe = PIPE_A;
10039 break;
10040 case TRANS_DDI_EDP_INPUT_B_ONOFF:
10041 trans_edp_pipe = PIPE_B;
10042 break;
10043 case TRANS_DDI_EDP_INPUT_C_ONOFF:
10044 trans_edp_pipe = PIPE_C;
10045 break;
10046 }
10047
10048 if (trans_edp_pipe == crtc->pipe)
10049 pipe_config->cpu_transcoder = TRANSCODER_EDP;
10050 }
10051
f458ebbc 10052 if (!intel_display_power_is_enabled(dev_priv,
eccb140b 10053 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
2bfce950
PZ
10054 return false;
10055
eccb140b 10056 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
0e8ffe1b
DV
10057 if (!(tmp & PIPECONF_ENABLE))
10058 return false;
10059
26804afd 10060 haswell_get_ddi_port_state(crtc, pipe_config);
627eb5a3 10061
1bd1bd80
DV
10062 intel_get_pipe_timings(crtc, pipe_config);
10063
a1b2278e
CK
10064 if (INTEL_INFO(dev)->gen >= 9) {
10065 skl_init_scalers(dev, crtc, pipe_config);
10066 }
10067
2fa2fe9a 10068 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
af99ceda
CK
10069
10070 if (INTEL_INFO(dev)->gen >= 9) {
10071 pipe_config->scaler_state.scaler_id = -1;
10072 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
10073 }
10074
bd2e244f 10075 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
1c132b44 10076 if (INTEL_INFO(dev)->gen >= 9)
bd2e244f 10077 skylake_get_pfit_config(crtc, pipe_config);
ff6d9f55 10078 else
1c132b44 10079 ironlake_get_pfit_config(crtc, pipe_config);
bd2e244f 10080 }
88adfff1 10081
e59150dc
JB
10082 if (IS_HASWELL(dev))
10083 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
10084 (I915_READ(IPS_CTL) & IPS_ENABLE);
42db64ef 10085
ebb69c95
CT
10086 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
10087 pipe_config->pixel_multiplier =
10088 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
10089 } else {
10090 pipe_config->pixel_multiplier = 1;
10091 }
6c49f241 10092
0e8ffe1b
DV
10093 return true;
10094}
10095
55a08b3f
ML
10096static void i845_update_cursor(struct drm_crtc *crtc, u32 base,
10097 const struct intel_plane_state *plane_state)
560b85bb
CW
10098{
10099 struct drm_device *dev = crtc->dev;
10100 struct drm_i915_private *dev_priv = dev->dev_private;
10101 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
dc41c154 10102 uint32_t cntl = 0, size = 0;
560b85bb 10103
55a08b3f
ML
10104 if (plane_state && plane_state->visible) {
10105 unsigned int width = plane_state->base.crtc_w;
10106 unsigned int height = plane_state->base.crtc_h;
dc41c154
VS
10107 unsigned int stride = roundup_pow_of_two(width) * 4;
10108
10109 switch (stride) {
10110 default:
10111 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
10112 width, stride);
10113 stride = 256;
10114 /* fallthrough */
10115 case 256:
10116 case 512:
10117 case 1024:
10118 case 2048:
10119 break;
4b0e333e
CW
10120 }
10121
dc41c154
VS
10122 cntl |= CURSOR_ENABLE |
10123 CURSOR_GAMMA_ENABLE |
10124 CURSOR_FORMAT_ARGB |
10125 CURSOR_STRIDE(stride);
10126
10127 size = (height << 12) | width;
4b0e333e 10128 }
560b85bb 10129
dc41c154
VS
10130 if (intel_crtc->cursor_cntl != 0 &&
10131 (intel_crtc->cursor_base != base ||
10132 intel_crtc->cursor_size != size ||
10133 intel_crtc->cursor_cntl != cntl)) {
10134 /* On these chipsets we can only modify the base/size/stride
10135 * whilst the cursor is disabled.
10136 */
0b87c24e
VS
10137 I915_WRITE(CURCNTR(PIPE_A), 0);
10138 POSTING_READ(CURCNTR(PIPE_A));
dc41c154 10139 intel_crtc->cursor_cntl = 0;
4b0e333e 10140 }
560b85bb 10141
99d1f387 10142 if (intel_crtc->cursor_base != base) {
0b87c24e 10143 I915_WRITE(CURBASE(PIPE_A), base);
99d1f387
VS
10144 intel_crtc->cursor_base = base;
10145 }
4726e0b0 10146
dc41c154
VS
10147 if (intel_crtc->cursor_size != size) {
10148 I915_WRITE(CURSIZE, size);
10149 intel_crtc->cursor_size = size;
4b0e333e 10150 }
560b85bb 10151
4b0e333e 10152 if (intel_crtc->cursor_cntl != cntl) {
0b87c24e
VS
10153 I915_WRITE(CURCNTR(PIPE_A), cntl);
10154 POSTING_READ(CURCNTR(PIPE_A));
4b0e333e 10155 intel_crtc->cursor_cntl = cntl;
560b85bb 10156 }
560b85bb
CW
10157}
10158
55a08b3f
ML
10159static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base,
10160 const struct intel_plane_state *plane_state)
65a21cd6
JB
10161{
10162 struct drm_device *dev = crtc->dev;
10163 struct drm_i915_private *dev_priv = dev->dev_private;
10164 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10165 int pipe = intel_crtc->pipe;
663f3122 10166 uint32_t cntl = 0;
4b0e333e 10167
55a08b3f 10168 if (plane_state && plane_state->visible) {
4b0e333e 10169 cntl = MCURSOR_GAMMA_ENABLE;
55a08b3f 10170 switch (plane_state->base.crtc_w) {
4726e0b0
SK
10171 case 64:
10172 cntl |= CURSOR_MODE_64_ARGB_AX;
10173 break;
10174 case 128:
10175 cntl |= CURSOR_MODE_128_ARGB_AX;
10176 break;
10177 case 256:
10178 cntl |= CURSOR_MODE_256_ARGB_AX;
10179 break;
10180 default:
55a08b3f 10181 MISSING_CASE(plane_state->base.crtc_w);
4726e0b0 10182 return;
65a21cd6 10183 }
4b0e333e 10184 cntl |= pipe << 28; /* Connect to correct pipe */
47bf17a7 10185
fc6f93bc 10186 if (HAS_DDI(dev))
47bf17a7 10187 cntl |= CURSOR_PIPE_CSC_ENABLE;
65a21cd6 10188
55a08b3f
ML
10189 if (plane_state->base.rotation == BIT(DRM_ROTATE_180))
10190 cntl |= CURSOR_ROTATE_180;
10191 }
4398ad45 10192
4b0e333e
CW
10193 if (intel_crtc->cursor_cntl != cntl) {
10194 I915_WRITE(CURCNTR(pipe), cntl);
10195 POSTING_READ(CURCNTR(pipe));
10196 intel_crtc->cursor_cntl = cntl;
65a21cd6 10197 }
4b0e333e 10198
65a21cd6 10199 /* and commit changes on next vblank */
5efb3e28
VS
10200 I915_WRITE(CURBASE(pipe), base);
10201 POSTING_READ(CURBASE(pipe));
99d1f387
VS
10202
10203 intel_crtc->cursor_base = base;
65a21cd6
JB
10204}
10205
cda4b7d3 10206/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f 10207static void intel_crtc_update_cursor(struct drm_crtc *crtc,
55a08b3f 10208 const struct intel_plane_state *plane_state)
cda4b7d3
CW
10209{
10210 struct drm_device *dev = crtc->dev;
10211 struct drm_i915_private *dev_priv = dev->dev_private;
10212 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10213 int pipe = intel_crtc->pipe;
55a08b3f
ML
10214 u32 base = intel_crtc->cursor_addr;
10215 u32 pos = 0;
cda4b7d3 10216
55a08b3f
ML
10217 if (plane_state) {
10218 int x = plane_state->base.crtc_x;
10219 int y = plane_state->base.crtc_y;
cda4b7d3 10220
55a08b3f
ML
10221 if (x < 0) {
10222 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10223 x = -x;
10224 }
10225 pos |= x << CURSOR_X_SHIFT;
cda4b7d3 10226
55a08b3f
ML
10227 if (y < 0) {
10228 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10229 y = -y;
10230 }
10231 pos |= y << CURSOR_Y_SHIFT;
10232
10233 /* ILK+ do this automagically */
10234 if (HAS_GMCH_DISPLAY(dev) &&
10235 plane_state->base.rotation == BIT(DRM_ROTATE_180)) {
10236 base += (plane_state->base.crtc_h *
10237 plane_state->base.crtc_w - 1) * 4;
10238 }
cda4b7d3 10239 }
cda4b7d3 10240
5efb3e28
VS
10241 I915_WRITE(CURPOS(pipe), pos);
10242
8ac54669 10243 if (IS_845G(dev) || IS_I865G(dev))
55a08b3f 10244 i845_update_cursor(crtc, base, plane_state);
5efb3e28 10245 else
55a08b3f 10246 i9xx_update_cursor(crtc, base, plane_state);
cda4b7d3
CW
10247}
10248
dc41c154
VS
10249static bool cursor_size_ok(struct drm_device *dev,
10250 uint32_t width, uint32_t height)
10251{
10252 if (width == 0 || height == 0)
10253 return false;
10254
10255 /*
10256 * 845g/865g are special in that they are only limited by
10257 * the width of their cursors, the height is arbitrary up to
10258 * the precision of the register. Everything else requires
10259 * square cursors, limited to a few power-of-two sizes.
10260 */
10261 if (IS_845G(dev) || IS_I865G(dev)) {
10262 if ((width & 63) != 0)
10263 return false;
10264
10265 if (width > (IS_845G(dev) ? 64 : 512))
10266 return false;
10267
10268 if (height > 1023)
10269 return false;
10270 } else {
10271 switch (width | height) {
10272 case 256:
10273 case 128:
10274 if (IS_GEN2(dev))
10275 return false;
10276 case 64:
10277 break;
10278 default:
10279 return false;
10280 }
10281 }
10282
10283 return true;
10284}
10285
79e53945 10286static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
7203425a 10287 u16 *blue, uint32_t start, uint32_t size)
79e53945 10288{
7203425a 10289 int end = (start + size > 256) ? 256 : start + size, i;
79e53945 10290 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 10291
7203425a 10292 for (i = start; i < end; i++) {
79e53945
JB
10293 intel_crtc->lut_r[i] = red[i] >> 8;
10294 intel_crtc->lut_g[i] = green[i] >> 8;
10295 intel_crtc->lut_b[i] = blue[i] >> 8;
10296 }
10297
10298 intel_crtc_load_lut(crtc);
10299}
10300
79e53945
JB
10301/* VESA 640x480x72Hz mode to set on the pipe */
10302static struct drm_display_mode load_detect_mode = {
10303 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10304 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10305};
10306
a8bb6818
DV
10307struct drm_framebuffer *
10308__intel_framebuffer_create(struct drm_device *dev,
10309 struct drm_mode_fb_cmd2 *mode_cmd,
10310 struct drm_i915_gem_object *obj)
d2dff872
CW
10311{
10312 struct intel_framebuffer *intel_fb;
10313 int ret;
10314
10315 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
dcb1394e 10316 if (!intel_fb)
d2dff872 10317 return ERR_PTR(-ENOMEM);
d2dff872
CW
10318
10319 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
dd4916c5
DV
10320 if (ret)
10321 goto err;
d2dff872
CW
10322
10323 return &intel_fb->base;
dcb1394e 10324
dd4916c5 10325err:
dd4916c5 10326 kfree(intel_fb);
dd4916c5 10327 return ERR_PTR(ret);
d2dff872
CW
10328}
10329
b5ea642a 10330static struct drm_framebuffer *
a8bb6818
DV
10331intel_framebuffer_create(struct drm_device *dev,
10332 struct drm_mode_fb_cmd2 *mode_cmd,
10333 struct drm_i915_gem_object *obj)
10334{
10335 struct drm_framebuffer *fb;
10336 int ret;
10337
10338 ret = i915_mutex_lock_interruptible(dev);
10339 if (ret)
10340 return ERR_PTR(ret);
10341 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10342 mutex_unlock(&dev->struct_mutex);
10343
10344 return fb;
10345}
10346
d2dff872
CW
10347static u32
10348intel_framebuffer_pitch_for_width(int width, int bpp)
10349{
10350 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10351 return ALIGN(pitch, 64);
10352}
10353
10354static u32
10355intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10356{
10357 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
1267a26b 10358 return PAGE_ALIGN(pitch * mode->vdisplay);
d2dff872
CW
10359}
10360
10361static struct drm_framebuffer *
10362intel_framebuffer_create_for_mode(struct drm_device *dev,
10363 struct drm_display_mode *mode,
10364 int depth, int bpp)
10365{
dcb1394e 10366 struct drm_framebuffer *fb;
d2dff872 10367 struct drm_i915_gem_object *obj;
0fed39bd 10368 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872
CW
10369
10370 obj = i915_gem_alloc_object(dev,
10371 intel_framebuffer_size_for_mode(mode, bpp));
10372 if (obj == NULL)
10373 return ERR_PTR(-ENOMEM);
10374
10375 mode_cmd.width = mode->hdisplay;
10376 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
10377 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
10378 bpp);
5ca0c34a 10379 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872 10380
dcb1394e
LW
10381 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
10382 if (IS_ERR(fb))
10383 drm_gem_object_unreference_unlocked(&obj->base);
10384
10385 return fb;
d2dff872
CW
10386}
10387
10388static struct drm_framebuffer *
10389mode_fits_in_fbdev(struct drm_device *dev,
10390 struct drm_display_mode *mode)
10391{
0695726e 10392#ifdef CONFIG_DRM_FBDEV_EMULATION
d2dff872
CW
10393 struct drm_i915_private *dev_priv = dev->dev_private;
10394 struct drm_i915_gem_object *obj;
10395 struct drm_framebuffer *fb;
10396
4c0e5528 10397 if (!dev_priv->fbdev)
d2dff872
CW
10398 return NULL;
10399
4c0e5528 10400 if (!dev_priv->fbdev->fb)
d2dff872
CW
10401 return NULL;
10402
4c0e5528
DV
10403 obj = dev_priv->fbdev->fb->obj;
10404 BUG_ON(!obj);
10405
8bcd4553 10406 fb = &dev_priv->fbdev->fb->base;
01f2c773
VS
10407 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
10408 fb->bits_per_pixel))
d2dff872
CW
10409 return NULL;
10410
01f2c773 10411 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
10412 return NULL;
10413
10414 return fb;
4520f53a
DV
10415#else
10416 return NULL;
10417#endif
d2dff872
CW
10418}
10419
d3a40d1b
ACO
10420static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
10421 struct drm_crtc *crtc,
10422 struct drm_display_mode *mode,
10423 struct drm_framebuffer *fb,
10424 int x, int y)
10425{
10426 struct drm_plane_state *plane_state;
10427 int hdisplay, vdisplay;
10428 int ret;
10429
10430 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
10431 if (IS_ERR(plane_state))
10432 return PTR_ERR(plane_state);
10433
10434 if (mode)
10435 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
10436 else
10437 hdisplay = vdisplay = 0;
10438
10439 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
10440 if (ret)
10441 return ret;
10442 drm_atomic_set_fb_for_plane(plane_state, fb);
10443 plane_state->crtc_x = 0;
10444 plane_state->crtc_y = 0;
10445 plane_state->crtc_w = hdisplay;
10446 plane_state->crtc_h = vdisplay;
10447 plane_state->src_x = x << 16;
10448 plane_state->src_y = y << 16;
10449 plane_state->src_w = hdisplay << 16;
10450 plane_state->src_h = vdisplay << 16;
10451
10452 return 0;
10453}
10454
d2434ab7 10455bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 10456 struct drm_display_mode *mode,
51fd371b
RC
10457 struct intel_load_detect_pipe *old,
10458 struct drm_modeset_acquire_ctx *ctx)
79e53945
JB
10459{
10460 struct intel_crtc *intel_crtc;
d2434ab7
DV
10461 struct intel_encoder *intel_encoder =
10462 intel_attached_encoder(connector);
79e53945 10463 struct drm_crtc *possible_crtc;
4ef69c7a 10464 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
10465 struct drm_crtc *crtc = NULL;
10466 struct drm_device *dev = encoder->dev;
94352cf9 10467 struct drm_framebuffer *fb;
51fd371b 10468 struct drm_mode_config *config = &dev->mode_config;
83a57153 10469 struct drm_atomic_state *state = NULL;
944b0c76 10470 struct drm_connector_state *connector_state;
4be07317 10471 struct intel_crtc_state *crtc_state;
51fd371b 10472 int ret, i = -1;
79e53945 10473
d2dff872 10474 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 10475 connector->base.id, connector->name,
8e329a03 10476 encoder->base.id, encoder->name);
d2dff872 10477
51fd371b
RC
10478retry:
10479 ret = drm_modeset_lock(&config->connection_mutex, ctx);
10480 if (ret)
ad3c558f 10481 goto fail;
6e9f798d 10482
79e53945
JB
10483 /*
10484 * Algorithm gets a little messy:
7a5e4805 10485 *
79e53945
JB
10486 * - if the connector already has an assigned crtc, use it (but make
10487 * sure it's on first)
7a5e4805 10488 *
79e53945
JB
10489 * - try to find the first unused crtc that can drive this connector,
10490 * and use that if we find one
79e53945
JB
10491 */
10492
10493 /* See if we already have a CRTC for this connector */
10494 if (encoder->crtc) {
10495 crtc = encoder->crtc;
8261b191 10496
51fd371b 10497 ret = drm_modeset_lock(&crtc->mutex, ctx);
4d02e2de 10498 if (ret)
ad3c558f 10499 goto fail;
4d02e2de 10500 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
51fd371b 10501 if (ret)
ad3c558f 10502 goto fail;
7b24056b 10503
24218aac 10504 old->dpms_mode = connector->dpms;
8261b191
CW
10505 old->load_detect_temp = false;
10506
10507 /* Make sure the crtc and connector are running */
24218aac
DV
10508 if (connector->dpms != DRM_MODE_DPMS_ON)
10509 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
8261b191 10510
7173188d 10511 return true;
79e53945
JB
10512 }
10513
10514 /* Find an unused one (if possible) */
70e1e0ec 10515 for_each_crtc(dev, possible_crtc) {
79e53945
JB
10516 i++;
10517 if (!(encoder->possible_crtcs & (1 << i)))
10518 continue;
83d65738 10519 if (possible_crtc->state->enable)
a459249c 10520 continue;
a459249c
VS
10521
10522 crtc = possible_crtc;
10523 break;
79e53945
JB
10524 }
10525
10526 /*
10527 * If we didn't find an unused CRTC, don't use any.
10528 */
10529 if (!crtc) {
7173188d 10530 DRM_DEBUG_KMS("no pipe available for load-detect\n");
ad3c558f 10531 goto fail;
79e53945
JB
10532 }
10533
51fd371b
RC
10534 ret = drm_modeset_lock(&crtc->mutex, ctx);
10535 if (ret)
ad3c558f 10536 goto fail;
4d02e2de
DV
10537 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10538 if (ret)
ad3c558f 10539 goto fail;
79e53945
JB
10540
10541 intel_crtc = to_intel_crtc(crtc);
24218aac 10542 old->dpms_mode = connector->dpms;
8261b191 10543 old->load_detect_temp = true;
d2dff872 10544 old->release_fb = NULL;
79e53945 10545
83a57153
ACO
10546 state = drm_atomic_state_alloc(dev);
10547 if (!state)
10548 return false;
10549
10550 state->acquire_ctx = ctx;
10551
944b0c76
ACO
10552 connector_state = drm_atomic_get_connector_state(state, connector);
10553 if (IS_ERR(connector_state)) {
10554 ret = PTR_ERR(connector_state);
10555 goto fail;
10556 }
10557
10558 connector_state->crtc = crtc;
10559 connector_state->best_encoder = &intel_encoder->base;
10560
4be07317
ACO
10561 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10562 if (IS_ERR(crtc_state)) {
10563 ret = PTR_ERR(crtc_state);
10564 goto fail;
10565 }
10566
49d6fa21 10567 crtc_state->base.active = crtc_state->base.enable = true;
4be07317 10568
6492711d
CW
10569 if (!mode)
10570 mode = &load_detect_mode;
79e53945 10571
d2dff872
CW
10572 /* We need a framebuffer large enough to accommodate all accesses
10573 * that the plane may generate whilst we perform load detection.
10574 * We can not rely on the fbcon either being present (we get called
10575 * during its initialisation to detect all boot displays, or it may
10576 * not even exist) or that it is large enough to satisfy the
10577 * requested mode.
10578 */
94352cf9
DV
10579 fb = mode_fits_in_fbdev(dev, mode);
10580 if (fb == NULL) {
d2dff872 10581 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9
DV
10582 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
10583 old->release_fb = fb;
d2dff872
CW
10584 } else
10585 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 10586 if (IS_ERR(fb)) {
d2dff872 10587 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
412b61d8 10588 goto fail;
79e53945 10589 }
79e53945 10590
d3a40d1b
ACO
10591 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
10592 if (ret)
10593 goto fail;
10594
8c7b5ccb
ACO
10595 drm_mode_copy(&crtc_state->base.mode, mode);
10596
74c090b1 10597 if (drm_atomic_commit(state)) {
6492711d 10598 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
d2dff872
CW
10599 if (old->release_fb)
10600 old->release_fb->funcs->destroy(old->release_fb);
412b61d8 10601 goto fail;
79e53945 10602 }
9128b040 10603 crtc->primary->crtc = crtc;
7173188d 10604
79e53945 10605 /* let the connector get through one full cycle before testing */
9d0498a2 10606 intel_wait_for_vblank(dev, intel_crtc->pipe);
7173188d 10607 return true;
412b61d8 10608
ad3c558f 10609fail:
e5d958ef
ACO
10610 drm_atomic_state_free(state);
10611 state = NULL;
83a57153 10612
51fd371b
RC
10613 if (ret == -EDEADLK) {
10614 drm_modeset_backoff(ctx);
10615 goto retry;
10616 }
10617
412b61d8 10618 return false;
79e53945
JB
10619}
10620
d2434ab7 10621void intel_release_load_detect_pipe(struct drm_connector *connector,
49172fee
ACO
10622 struct intel_load_detect_pipe *old,
10623 struct drm_modeset_acquire_ctx *ctx)
79e53945 10624{
83a57153 10625 struct drm_device *dev = connector->dev;
d2434ab7
DV
10626 struct intel_encoder *intel_encoder =
10627 intel_attached_encoder(connector);
4ef69c7a 10628 struct drm_encoder *encoder = &intel_encoder->base;
7b24056b 10629 struct drm_crtc *crtc = encoder->crtc;
412b61d8 10630 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
83a57153 10631 struct drm_atomic_state *state;
944b0c76 10632 struct drm_connector_state *connector_state;
4be07317 10633 struct intel_crtc_state *crtc_state;
d3a40d1b 10634 int ret;
79e53945 10635
d2dff872 10636 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 10637 connector->base.id, connector->name,
8e329a03 10638 encoder->base.id, encoder->name);
d2dff872 10639
8261b191 10640 if (old->load_detect_temp) {
83a57153 10641 state = drm_atomic_state_alloc(dev);
944b0c76
ACO
10642 if (!state)
10643 goto fail;
83a57153
ACO
10644
10645 state->acquire_ctx = ctx;
10646
944b0c76
ACO
10647 connector_state = drm_atomic_get_connector_state(state, connector);
10648 if (IS_ERR(connector_state))
10649 goto fail;
10650
4be07317
ACO
10651 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10652 if (IS_ERR(crtc_state))
10653 goto fail;
10654
944b0c76
ACO
10655 connector_state->best_encoder = NULL;
10656 connector_state->crtc = NULL;
10657
49d6fa21 10658 crtc_state->base.enable = crtc_state->base.active = false;
4be07317 10659
d3a40d1b
ACO
10660 ret = intel_modeset_setup_plane_state(state, crtc, NULL, NULL,
10661 0, 0);
10662 if (ret)
10663 goto fail;
10664
74c090b1 10665 ret = drm_atomic_commit(state);
2bfb4627
ACO
10666 if (ret)
10667 goto fail;
d2dff872 10668
36206361
DV
10669 if (old->release_fb) {
10670 drm_framebuffer_unregister_private(old->release_fb);
10671 drm_framebuffer_unreference(old->release_fb);
10672 }
d2dff872 10673
0622a53c 10674 return;
79e53945
JB
10675 }
10676
c751ce4f 10677 /* Switch crtc and encoder back off if necessary */
24218aac
DV
10678 if (old->dpms_mode != DRM_MODE_DPMS_ON)
10679 connector->funcs->dpms(connector, old->dpms_mode);
944b0c76
ACO
10680
10681 return;
10682fail:
10683 DRM_DEBUG_KMS("Couldn't release load detect pipe.\n");
10684 drm_atomic_state_free(state);
79e53945
JB
10685}
10686
da4a1efa 10687static int i9xx_pll_refclk(struct drm_device *dev,
5cec258b 10688 const struct intel_crtc_state *pipe_config)
da4a1efa
VS
10689{
10690 struct drm_i915_private *dev_priv = dev->dev_private;
10691 u32 dpll = pipe_config->dpll_hw_state.dpll;
10692
10693 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
e91e941b 10694 return dev_priv->vbt.lvds_ssc_freq;
da4a1efa
VS
10695 else if (HAS_PCH_SPLIT(dev))
10696 return 120000;
10697 else if (!IS_GEN2(dev))
10698 return 96000;
10699 else
10700 return 48000;
10701}
10702
79e53945 10703/* Returns the clock of the currently programmed mode of the given pipe. */
f1f644dc 10704static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 10705 struct intel_crtc_state *pipe_config)
79e53945 10706{
f1f644dc 10707 struct drm_device *dev = crtc->base.dev;
79e53945 10708 struct drm_i915_private *dev_priv = dev->dev_private;
f1f644dc 10709 int pipe = pipe_config->cpu_transcoder;
293623f7 10710 u32 dpll = pipe_config->dpll_hw_state.dpll;
79e53945
JB
10711 u32 fp;
10712 intel_clock_t clock;
dccbea3b 10713 int port_clock;
da4a1efa 10714 int refclk = i9xx_pll_refclk(dev, pipe_config);
79e53945
JB
10715
10716 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
293623f7 10717 fp = pipe_config->dpll_hw_state.fp0;
79e53945 10718 else
293623f7 10719 fp = pipe_config->dpll_hw_state.fp1;
79e53945
JB
10720
10721 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
10722 if (IS_PINEVIEW(dev)) {
10723 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
10724 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
10725 } else {
10726 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
10727 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
10728 }
10729
a6c45cf0 10730 if (!IS_GEN2(dev)) {
f2b115e6
AJ
10731 if (IS_PINEVIEW(dev))
10732 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
10733 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
10734 else
10735 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
10736 DPLL_FPA01_P1_POST_DIV_SHIFT);
10737
10738 switch (dpll & DPLL_MODE_MASK) {
10739 case DPLLB_MODE_DAC_SERIAL:
10740 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
10741 5 : 10;
10742 break;
10743 case DPLLB_MODE_LVDS:
10744 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
10745 7 : 14;
10746 break;
10747 default:
28c97730 10748 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945 10749 "mode\n", (int)(dpll & DPLL_MODE_MASK));
f1f644dc 10750 return;
79e53945
JB
10751 }
10752
ac58c3f0 10753 if (IS_PINEVIEW(dev))
dccbea3b 10754 port_clock = pnv_calc_dpll_params(refclk, &clock);
ac58c3f0 10755 else
dccbea3b 10756 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945 10757 } else {
0fb58223 10758 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
b1c560d1 10759 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
79e53945
JB
10760
10761 if (is_lvds) {
10762 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10763 DPLL_FPA01_P1_POST_DIV_SHIFT);
b1c560d1
VS
10764
10765 if (lvds & LVDS_CLKB_POWER_UP)
10766 clock.p2 = 7;
10767 else
10768 clock.p2 = 14;
79e53945
JB
10769 } else {
10770 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10771 clock.p1 = 2;
10772 else {
10773 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10774 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10775 }
10776 if (dpll & PLL_P2_DIVIDE_BY_4)
10777 clock.p2 = 4;
10778 else
10779 clock.p2 = 2;
79e53945 10780 }
da4a1efa 10781
dccbea3b 10782 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945
JB
10783 }
10784
18442d08
VS
10785 /*
10786 * This value includes pixel_multiplier. We will use
241bfc38 10787 * port_clock to compute adjusted_mode.crtc_clock in the
18442d08
VS
10788 * encoder's get_config() function.
10789 */
dccbea3b 10790 pipe_config->port_clock = port_clock;
f1f644dc
JB
10791}
10792
6878da05
VS
10793int intel_dotclock_calculate(int link_freq,
10794 const struct intel_link_m_n *m_n)
f1f644dc 10795{
f1f644dc
JB
10796 /*
10797 * The calculation for the data clock is:
1041a02f 10798 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
f1f644dc 10799 * But we want to avoid losing precison if possible, so:
1041a02f 10800 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
f1f644dc
JB
10801 *
10802 * and the link clock is simpler:
1041a02f 10803 * link_clock = (m * link_clock) / n
f1f644dc
JB
10804 */
10805
6878da05
VS
10806 if (!m_n->link_n)
10807 return 0;
f1f644dc 10808
6878da05
VS
10809 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10810}
f1f644dc 10811
18442d08 10812static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 10813 struct intel_crtc_state *pipe_config)
6878da05
VS
10814{
10815 struct drm_device *dev = crtc->base.dev;
79e53945 10816
18442d08
VS
10817 /* read out port_clock from the DPLL */
10818 i9xx_crtc_clock_get(crtc, pipe_config);
f1f644dc 10819
f1f644dc 10820 /*
18442d08 10821 * This value does not include pixel_multiplier.
241bfc38 10822 * We will check that port_clock and adjusted_mode.crtc_clock
18442d08
VS
10823 * agree once we know their relationship in the encoder's
10824 * get_config() function.
79e53945 10825 */
2d112de7 10826 pipe_config->base.adjusted_mode.crtc_clock =
18442d08
VS
10827 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
10828 &pipe_config->fdi_m_n);
79e53945
JB
10829}
10830
10831/** Returns the currently programmed mode of the given pipe. */
10832struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10833 struct drm_crtc *crtc)
10834{
548f245b 10835 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 10836 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 10837 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
79e53945 10838 struct drm_display_mode *mode;
5cec258b 10839 struct intel_crtc_state pipe_config;
fe2b8f9d
PZ
10840 int htot = I915_READ(HTOTAL(cpu_transcoder));
10841 int hsync = I915_READ(HSYNC(cpu_transcoder));
10842 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10843 int vsync = I915_READ(VSYNC(cpu_transcoder));
293623f7 10844 enum pipe pipe = intel_crtc->pipe;
79e53945
JB
10845
10846 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10847 if (!mode)
10848 return NULL;
10849
f1f644dc
JB
10850 /*
10851 * Construct a pipe_config sufficient for getting the clock info
10852 * back out of crtc_clock_get.
10853 *
10854 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10855 * to use a real value here instead.
10856 */
293623f7 10857 pipe_config.cpu_transcoder = (enum transcoder) pipe;
f1f644dc 10858 pipe_config.pixel_multiplier = 1;
293623f7
VS
10859 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10860 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10861 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
f1f644dc
JB
10862 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
10863
773ae034 10864 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
79e53945
JB
10865 mode->hdisplay = (htot & 0xffff) + 1;
10866 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10867 mode->hsync_start = (hsync & 0xffff) + 1;
10868 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10869 mode->vdisplay = (vtot & 0xffff) + 1;
10870 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10871 mode->vsync_start = (vsync & 0xffff) + 1;
10872 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10873
10874 drm_mode_set_name(mode);
79e53945
JB
10875
10876 return mode;
10877}
10878
f047e395
CW
10879void intel_mark_busy(struct drm_device *dev)
10880{
c67a470b
PZ
10881 struct drm_i915_private *dev_priv = dev->dev_private;
10882
f62a0076
CW
10883 if (dev_priv->mm.busy)
10884 return;
10885
43694d69 10886 intel_runtime_pm_get(dev_priv);
c67a470b 10887 i915_update_gfx_val(dev_priv);
43cf3bf0
CW
10888 if (INTEL_INFO(dev)->gen >= 6)
10889 gen6_rps_busy(dev_priv);
f62a0076 10890 dev_priv->mm.busy = true;
f047e395
CW
10891}
10892
10893void intel_mark_idle(struct drm_device *dev)
652c393a 10894{
c67a470b 10895 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 10896
f62a0076
CW
10897 if (!dev_priv->mm.busy)
10898 return;
10899
10900 dev_priv->mm.busy = false;
10901
3d13ef2e 10902 if (INTEL_INFO(dev)->gen >= 6)
b29c19b6 10903 gen6_rps_idle(dev->dev_private);
bb4cdd53 10904
43694d69 10905 intel_runtime_pm_put(dev_priv);
652c393a
JB
10906}
10907
79e53945
JB
10908static void intel_crtc_destroy(struct drm_crtc *crtc)
10909{
10910 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a
DV
10911 struct drm_device *dev = crtc->dev;
10912 struct intel_unpin_work *work;
67e77c5a 10913
5e2d7afc 10914 spin_lock_irq(&dev->event_lock);
67e77c5a
DV
10915 work = intel_crtc->unpin_work;
10916 intel_crtc->unpin_work = NULL;
5e2d7afc 10917 spin_unlock_irq(&dev->event_lock);
67e77c5a
DV
10918
10919 if (work) {
10920 cancel_work_sync(&work->work);
10921 kfree(work);
10922 }
79e53945
JB
10923
10924 drm_crtc_cleanup(crtc);
67e77c5a 10925
79e53945
JB
10926 kfree(intel_crtc);
10927}
10928
6b95a207
KH
10929static void intel_unpin_work_fn(struct work_struct *__work)
10930{
10931 struct intel_unpin_work *work =
10932 container_of(__work, struct intel_unpin_work, work);
a9ff8714
VS
10933 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
10934 struct drm_device *dev = crtc->base.dev;
10935 struct drm_plane *primary = crtc->base.primary;
6b95a207 10936
b4a98e57 10937 mutex_lock(&dev->struct_mutex);
a9ff8714 10938 intel_unpin_fb_obj(work->old_fb, primary->state);
05394f39 10939 drm_gem_object_unreference(&work->pending_flip_obj->base);
d9e86c0e 10940
f06cc1b9 10941 if (work->flip_queued_req)
146d84f0 10942 i915_gem_request_assign(&work->flip_queued_req, NULL);
b4a98e57
CW
10943 mutex_unlock(&dev->struct_mutex);
10944
a9ff8714 10945 intel_frontbuffer_flip_complete(dev, to_intel_plane(primary)->frontbuffer_bit);
89ed88ba 10946 drm_framebuffer_unreference(work->old_fb);
f99d7069 10947
a9ff8714
VS
10948 BUG_ON(atomic_read(&crtc->unpin_work_count) == 0);
10949 atomic_dec(&crtc->unpin_work_count);
b4a98e57 10950
6b95a207
KH
10951 kfree(work);
10952}
10953
1afe3e9d 10954static void do_intel_finish_page_flip(struct drm_device *dev,
49b14a5c 10955 struct drm_crtc *crtc)
6b95a207 10956{
6b95a207
KH
10957 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10958 struct intel_unpin_work *work;
6b95a207
KH
10959 unsigned long flags;
10960
10961 /* Ignore early vblank irqs */
10962 if (intel_crtc == NULL)
10963 return;
10964
f326038a
DV
10965 /*
10966 * This is called both by irq handlers and the reset code (to complete
10967 * lost pageflips) so needs the full irqsave spinlocks.
10968 */
6b95a207
KH
10969 spin_lock_irqsave(&dev->event_lock, flags);
10970 work = intel_crtc->unpin_work;
e7d841ca
CW
10971
10972 /* Ensure we don't miss a work->pending update ... */
10973 smp_rmb();
10974
10975 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
6b95a207
KH
10976 spin_unlock_irqrestore(&dev->event_lock, flags);
10977 return;
10978 }
10979
d6bbafa1 10980 page_flip_completed(intel_crtc);
0af7e4df 10981
6b95a207 10982 spin_unlock_irqrestore(&dev->event_lock, flags);
6b95a207
KH
10983}
10984
1afe3e9d
JB
10985void intel_finish_page_flip(struct drm_device *dev, int pipe)
10986{
fbee40df 10987 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
10988 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10989
49b14a5c 10990 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
10991}
10992
10993void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
10994{
fbee40df 10995 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
10996 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
10997
49b14a5c 10998 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
10999}
11000
75f7f3ec
VS
11001/* Is 'a' after or equal to 'b'? */
11002static bool g4x_flip_count_after_eq(u32 a, u32 b)
11003{
11004 return !((a - b) & 0x80000000);
11005}
11006
11007static bool page_flip_finished(struct intel_crtc *crtc)
11008{
11009 struct drm_device *dev = crtc->base.dev;
11010 struct drm_i915_private *dev_priv = dev->dev_private;
11011
bdfa7542
VS
11012 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
11013 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
11014 return true;
11015
75f7f3ec
VS
11016 /*
11017 * The relevant registers doen't exist on pre-ctg.
11018 * As the flip done interrupt doesn't trigger for mmio
11019 * flips on gmch platforms, a flip count check isn't
11020 * really needed there. But since ctg has the registers,
11021 * include it in the check anyway.
11022 */
11023 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
11024 return true;
11025
11026 /*
11027 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
11028 * used the same base address. In that case the mmio flip might
11029 * have completed, but the CS hasn't even executed the flip yet.
11030 *
11031 * A flip count check isn't enough as the CS might have updated
11032 * the base address just after start of vblank, but before we
11033 * managed to process the interrupt. This means we'd complete the
11034 * CS flip too soon.
11035 *
11036 * Combining both checks should get us a good enough result. It may
11037 * still happen that the CS flip has been executed, but has not
11038 * yet actually completed. But in case the base address is the same
11039 * anyway, we don't really care.
11040 */
11041 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
11042 crtc->unpin_work->gtt_offset &&
fd8f507c 11043 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_G4X(crtc->pipe)),
75f7f3ec
VS
11044 crtc->unpin_work->flip_count);
11045}
11046
6b95a207
KH
11047void intel_prepare_page_flip(struct drm_device *dev, int plane)
11048{
fbee40df 11049 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
11050 struct intel_crtc *intel_crtc =
11051 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
11052 unsigned long flags;
11053
f326038a
DV
11054
11055 /*
11056 * This is called both by irq handlers and the reset code (to complete
11057 * lost pageflips) so needs the full irqsave spinlocks.
11058 *
11059 * NB: An MMIO update of the plane base pointer will also
e7d841ca
CW
11060 * generate a page-flip completion irq, i.e. every modeset
11061 * is also accompanied by a spurious intel_prepare_page_flip().
11062 */
6b95a207 11063 spin_lock_irqsave(&dev->event_lock, flags);
75f7f3ec 11064 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
e7d841ca 11065 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
6b95a207
KH
11066 spin_unlock_irqrestore(&dev->event_lock, flags);
11067}
11068
6042639c 11069static inline void intel_mark_page_flip_active(struct intel_unpin_work *work)
e7d841ca
CW
11070{
11071 /* Ensure that the work item is consistent when activating it ... */
11072 smp_wmb();
6042639c 11073 atomic_set(&work->pending, INTEL_FLIP_PENDING);
e7d841ca
CW
11074 /* and that it is marked active as soon as the irq could fire. */
11075 smp_wmb();
11076}
11077
8c9f3aaf
JB
11078static int intel_gen2_queue_flip(struct drm_device *dev,
11079 struct drm_crtc *crtc,
11080 struct drm_framebuffer *fb,
ed8d1975 11081 struct drm_i915_gem_object *obj,
6258fbe2 11082 struct drm_i915_gem_request *req,
ed8d1975 11083 uint32_t flags)
8c9f3aaf 11084{
6258fbe2 11085 struct intel_engine_cs *ring = req->ring;
8c9f3aaf 11086 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
11087 u32 flip_mask;
11088 int ret;
11089
5fb9de1a 11090 ret = intel_ring_begin(req, 6);
8c9f3aaf 11091 if (ret)
4fa62c89 11092 return ret;
8c9f3aaf
JB
11093
11094 /* Can't queue multiple flips, so wait for the previous
11095 * one to finish before executing the next.
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 |
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 11107 intel_ring_emit(ring, 0); /* aux display base address, unused */
e7d841ca 11108
6042639c 11109 intel_mark_page_flip_active(intel_crtc->unpin_work);
83d4092b 11110 return 0;
8c9f3aaf
JB
11111}
11112
11113static int intel_gen3_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 11121 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
11122 u32 flip_mask;
11123 int ret;
11124
5fb9de1a 11125 ret = intel_ring_begin(req, 6);
8c9f3aaf 11126 if (ret)
4fa62c89 11127 return ret;
8c9f3aaf
JB
11128
11129 if (intel_crtc->plane)
11130 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11131 else
11132 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
11133 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11134 intel_ring_emit(ring, MI_NOOP);
11135 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
11136 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11137 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 11138 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
6d90c952
DV
11139 intel_ring_emit(ring, MI_NOOP);
11140
6042639c 11141 intel_mark_page_flip_active(intel_crtc->unpin_work);
83d4092b 11142 return 0;
8c9f3aaf
JB
11143}
11144
11145static int intel_gen4_queue_flip(struct drm_device *dev,
11146 struct drm_crtc *crtc,
11147 struct drm_framebuffer *fb,
ed8d1975 11148 struct drm_i915_gem_object *obj,
6258fbe2 11149 struct drm_i915_gem_request *req,
ed8d1975 11150 uint32_t flags)
8c9f3aaf 11151{
6258fbe2 11152 struct intel_engine_cs *ring = req->ring;
8c9f3aaf
JB
11153 struct drm_i915_private *dev_priv = dev->dev_private;
11154 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11155 uint32_t pf, pipesrc;
11156 int ret;
11157
5fb9de1a 11158 ret = intel_ring_begin(req, 4);
8c9f3aaf 11159 if (ret)
4fa62c89 11160 return ret;
8c9f3aaf
JB
11161
11162 /* i965+ uses the linear or tiled offsets from the
11163 * Display Registers (which do not change across a page-flip)
11164 * so we need only reprogram the base address.
11165 */
6d90c952
DV
11166 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11167 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11168 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 11169 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
c2c75131 11170 obj->tiling_mode);
8c9f3aaf
JB
11171
11172 /* XXX Enabling the panel-fitter across page-flip is so far
11173 * untested on non-native modes, so ignore it for now.
11174 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
11175 */
11176 pf = 0;
11177 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 11178 intel_ring_emit(ring, pf | pipesrc);
e7d841ca 11179
6042639c 11180 intel_mark_page_flip_active(intel_crtc->unpin_work);
83d4092b 11181 return 0;
8c9f3aaf
JB
11182}
11183
11184static int intel_gen6_queue_flip(struct drm_device *dev,
11185 struct drm_crtc *crtc,
11186 struct drm_framebuffer *fb,
ed8d1975 11187 struct drm_i915_gem_object *obj,
6258fbe2 11188 struct drm_i915_gem_request *req,
ed8d1975 11189 uint32_t flags)
8c9f3aaf 11190{
6258fbe2 11191 struct intel_engine_cs *ring = req->ring;
8c9f3aaf
JB
11192 struct drm_i915_private *dev_priv = dev->dev_private;
11193 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11194 uint32_t pf, pipesrc;
11195 int ret;
11196
5fb9de1a 11197 ret = intel_ring_begin(req, 4);
8c9f3aaf 11198 if (ret)
4fa62c89 11199 return ret;
8c9f3aaf 11200
6d90c952
DV
11201 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11202 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11203 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
75f7f3ec 11204 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
8c9f3aaf 11205
dc257cf1
DV
11206 /* Contrary to the suggestions in the documentation,
11207 * "Enable Panel Fitter" does not seem to be required when page
11208 * flipping with a non-native mode, and worse causes a normal
11209 * modeset to fail.
11210 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
11211 */
11212 pf = 0;
8c9f3aaf 11213 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 11214 intel_ring_emit(ring, pf | pipesrc);
e7d841ca 11215
6042639c 11216 intel_mark_page_flip_active(intel_crtc->unpin_work);
83d4092b 11217 return 0;
8c9f3aaf
JB
11218}
11219
7c9017e5
JB
11220static int intel_gen7_queue_flip(struct drm_device *dev,
11221 struct drm_crtc *crtc,
11222 struct drm_framebuffer *fb,
ed8d1975 11223 struct drm_i915_gem_object *obj,
6258fbe2 11224 struct drm_i915_gem_request *req,
ed8d1975 11225 uint32_t flags)
7c9017e5 11226{
6258fbe2 11227 struct intel_engine_cs *ring = req->ring;
7c9017e5 11228 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cb05d8de 11229 uint32_t plane_bit = 0;
ffe74d75
CW
11230 int len, ret;
11231
eba905b2 11232 switch (intel_crtc->plane) {
cb05d8de
DV
11233 case PLANE_A:
11234 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11235 break;
11236 case PLANE_B:
11237 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11238 break;
11239 case PLANE_C:
11240 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11241 break;
11242 default:
11243 WARN_ONCE(1, "unknown plane in flip command\n");
4fa62c89 11244 return -ENODEV;
cb05d8de
DV
11245 }
11246
ffe74d75 11247 len = 4;
f476828a 11248 if (ring->id == RCS) {
ffe74d75 11249 len += 6;
f476828a
DL
11250 /*
11251 * On Gen 8, SRM is now taking an extra dword to accommodate
11252 * 48bits addresses, and we need a NOOP for the batch size to
11253 * stay even.
11254 */
11255 if (IS_GEN8(dev))
11256 len += 2;
11257 }
ffe74d75 11258
f66fab8e
VS
11259 /*
11260 * BSpec MI_DISPLAY_FLIP for IVB:
11261 * "The full packet must be contained within the same cache line."
11262 *
11263 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11264 * cacheline, if we ever start emitting more commands before
11265 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11266 * then do the cacheline alignment, and finally emit the
11267 * MI_DISPLAY_FLIP.
11268 */
bba09b12 11269 ret = intel_ring_cacheline_align(req);
f66fab8e 11270 if (ret)
4fa62c89 11271 return ret;
f66fab8e 11272
5fb9de1a 11273 ret = intel_ring_begin(req, len);
7c9017e5 11274 if (ret)
4fa62c89 11275 return ret;
7c9017e5 11276
ffe74d75
CW
11277 /* Unmask the flip-done completion message. Note that the bspec says that
11278 * we should do this for both the BCS and RCS, and that we must not unmask
11279 * more than one flip event at any time (or ensure that one flip message
11280 * can be sent by waiting for flip-done prior to queueing new flips).
11281 * Experimentation says that BCS works despite DERRMR masking all
11282 * flip-done completion events and that unmasking all planes at once
11283 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11284 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11285 */
11286 if (ring->id == RCS) {
11287 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
f92a9162 11288 intel_ring_emit_reg(ring, DERRMR);
ffe74d75
CW
11289 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
11290 DERRMR_PIPEB_PRI_FLIP_DONE |
11291 DERRMR_PIPEC_PRI_FLIP_DONE));
f476828a 11292 if (IS_GEN8(dev))
f1afe24f 11293 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8 |
f476828a
DL
11294 MI_SRM_LRM_GLOBAL_GTT);
11295 else
f1afe24f 11296 intel_ring_emit(ring, MI_STORE_REGISTER_MEM |
f476828a 11297 MI_SRM_LRM_GLOBAL_GTT);
f92a9162 11298 intel_ring_emit_reg(ring, DERRMR);
ffe74d75 11299 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
f476828a
DL
11300 if (IS_GEN8(dev)) {
11301 intel_ring_emit(ring, 0);
11302 intel_ring_emit(ring, MI_NOOP);
11303 }
ffe74d75
CW
11304 }
11305
cb05d8de 11306 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
01f2c773 11307 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
75f7f3ec 11308 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
7c9017e5 11309 intel_ring_emit(ring, (MI_NOOP));
e7d841ca 11310
6042639c 11311 intel_mark_page_flip_active(intel_crtc->unpin_work);
83d4092b 11312 return 0;
7c9017e5
JB
11313}
11314
84c33a64
SG
11315static bool use_mmio_flip(struct intel_engine_cs *ring,
11316 struct drm_i915_gem_object *obj)
11317{
11318 /*
11319 * This is not being used for older platforms, because
11320 * non-availability of flip done interrupt forces us to use
11321 * CS flips. Older platforms derive flip done using some clever
11322 * tricks involving the flip_pending status bits and vblank irqs.
11323 * So using MMIO flips there would disrupt this mechanism.
11324 */
11325
8e09bf83
CW
11326 if (ring == NULL)
11327 return true;
11328
84c33a64
SG
11329 if (INTEL_INFO(ring->dev)->gen < 5)
11330 return false;
11331
11332 if (i915.use_mmio_flip < 0)
11333 return false;
11334 else if (i915.use_mmio_flip > 0)
11335 return true;
14bf993e
OM
11336 else if (i915.enable_execlists)
11337 return true;
fd8e058a
AG
11338 else if (obj->base.dma_buf &&
11339 !reservation_object_test_signaled_rcu(obj->base.dma_buf->resv,
11340 false))
11341 return true;
84c33a64 11342 else
b4716185 11343 return ring != i915_gem_request_get_ring(obj->last_write_req);
84c33a64
SG
11344}
11345
6042639c 11346static void skl_do_mmio_flip(struct intel_crtc *intel_crtc,
86efe24a 11347 unsigned int rotation,
6042639c 11348 struct intel_unpin_work *work)
ff944564
DL
11349{
11350 struct drm_device *dev = intel_crtc->base.dev;
11351 struct drm_i915_private *dev_priv = dev->dev_private;
11352 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
ff944564 11353 const enum pipe pipe = intel_crtc->pipe;
86efe24a 11354 u32 ctl, stride, tile_height;
ff944564
DL
11355
11356 ctl = I915_READ(PLANE_CTL(pipe, 0));
11357 ctl &= ~PLANE_CTL_TILED_MASK;
2ebef630
TU
11358 switch (fb->modifier[0]) {
11359 case DRM_FORMAT_MOD_NONE:
11360 break;
11361 case I915_FORMAT_MOD_X_TILED:
ff944564 11362 ctl |= PLANE_CTL_TILED_X;
2ebef630
TU
11363 break;
11364 case I915_FORMAT_MOD_Y_TILED:
11365 ctl |= PLANE_CTL_TILED_Y;
11366 break;
11367 case I915_FORMAT_MOD_Yf_TILED:
11368 ctl |= PLANE_CTL_TILED_YF;
11369 break;
11370 default:
11371 MISSING_CASE(fb->modifier[0]);
11372 }
ff944564
DL
11373
11374 /*
11375 * The stride is either expressed as a multiple of 64 bytes chunks for
11376 * linear buffers or in number of tiles for tiled buffers.
11377 */
86efe24a
TU
11378 if (intel_rotation_90_or_270(rotation)) {
11379 /* stride = Surface height in tiles */
11380 tile_height = intel_tile_height(dev, fb->pixel_format,
11381 fb->modifier[0], 0);
11382 stride = DIV_ROUND_UP(fb->height, tile_height);
11383 } else {
11384 stride = fb->pitches[0] /
11385 intel_fb_stride_alignment(dev, fb->modifier[0],
11386 fb->pixel_format);
11387 }
ff944564
DL
11388
11389 /*
11390 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
11391 * PLANE_SURF updates, the update is then guaranteed to be atomic.
11392 */
11393 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
11394 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
11395
6042639c 11396 I915_WRITE(PLANE_SURF(pipe, 0), work->gtt_offset);
ff944564
DL
11397 POSTING_READ(PLANE_SURF(pipe, 0));
11398}
11399
6042639c
CW
11400static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc,
11401 struct intel_unpin_work *work)
84c33a64
SG
11402{
11403 struct drm_device *dev = intel_crtc->base.dev;
11404 struct drm_i915_private *dev_priv = dev->dev_private;
11405 struct intel_framebuffer *intel_fb =
11406 to_intel_framebuffer(intel_crtc->base.primary->fb);
11407 struct drm_i915_gem_object *obj = intel_fb->obj;
f0f59a00 11408 i915_reg_t reg = DSPCNTR(intel_crtc->plane);
84c33a64 11409 u32 dspcntr;
84c33a64 11410
84c33a64
SG
11411 dspcntr = I915_READ(reg);
11412
c5d97472
DL
11413 if (obj->tiling_mode != I915_TILING_NONE)
11414 dspcntr |= DISPPLANE_TILED;
11415 else
11416 dspcntr &= ~DISPPLANE_TILED;
11417
84c33a64
SG
11418 I915_WRITE(reg, dspcntr);
11419
6042639c 11420 I915_WRITE(DSPSURF(intel_crtc->plane), work->gtt_offset);
84c33a64 11421 POSTING_READ(DSPSURF(intel_crtc->plane));
ff944564
DL
11422}
11423
11424/*
11425 * XXX: This is the temporary way to update the plane registers until we get
11426 * around to using the usual plane update functions for MMIO flips
11427 */
6042639c 11428static void intel_do_mmio_flip(struct intel_mmio_flip *mmio_flip)
ff944564 11429{
6042639c
CW
11430 struct intel_crtc *crtc = mmio_flip->crtc;
11431 struct intel_unpin_work *work;
11432
11433 spin_lock_irq(&crtc->base.dev->event_lock);
11434 work = crtc->unpin_work;
11435 spin_unlock_irq(&crtc->base.dev->event_lock);
11436 if (work == NULL)
11437 return;
ff944564 11438
6042639c 11439 intel_mark_page_flip_active(work);
ff944564 11440
6042639c 11441 intel_pipe_update_start(crtc);
ff944564 11442
6042639c 11443 if (INTEL_INFO(mmio_flip->i915)->gen >= 9)
86efe24a 11444 skl_do_mmio_flip(crtc, mmio_flip->rotation, work);
ff944564
DL
11445 else
11446 /* use_mmio_flip() retricts MMIO flips to ilk+ */
6042639c 11447 ilk_do_mmio_flip(crtc, work);
ff944564 11448
6042639c 11449 intel_pipe_update_end(crtc);
84c33a64
SG
11450}
11451
9362c7c5 11452static void intel_mmio_flip_work_func(struct work_struct *work)
84c33a64 11453{
b2cfe0ab
CW
11454 struct intel_mmio_flip *mmio_flip =
11455 container_of(work, struct intel_mmio_flip, work);
fd8e058a
AG
11456 struct intel_framebuffer *intel_fb =
11457 to_intel_framebuffer(mmio_flip->crtc->base.primary->fb);
11458 struct drm_i915_gem_object *obj = intel_fb->obj;
84c33a64 11459
6042639c 11460 if (mmio_flip->req) {
eed29a5b 11461 WARN_ON(__i915_wait_request(mmio_flip->req,
b2cfe0ab 11462 mmio_flip->crtc->reset_counter,
bcafc4e3
CW
11463 false, NULL,
11464 &mmio_flip->i915->rps.mmioflips));
6042639c
CW
11465 i915_gem_request_unreference__unlocked(mmio_flip->req);
11466 }
84c33a64 11467
fd8e058a
AG
11468 /* For framebuffer backed by dmabuf, wait for fence */
11469 if (obj->base.dma_buf)
11470 WARN_ON(reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv,
11471 false, false,
11472 MAX_SCHEDULE_TIMEOUT) < 0);
11473
6042639c 11474 intel_do_mmio_flip(mmio_flip);
b2cfe0ab 11475 kfree(mmio_flip);
84c33a64
SG
11476}
11477
11478static int intel_queue_mmio_flip(struct drm_device *dev,
11479 struct drm_crtc *crtc,
86efe24a 11480 struct drm_i915_gem_object *obj)
84c33a64 11481{
b2cfe0ab
CW
11482 struct intel_mmio_flip *mmio_flip;
11483
11484 mmio_flip = kmalloc(sizeof(*mmio_flip), GFP_KERNEL);
11485 if (mmio_flip == NULL)
11486 return -ENOMEM;
84c33a64 11487
bcafc4e3 11488 mmio_flip->i915 = to_i915(dev);
eed29a5b 11489 mmio_flip->req = i915_gem_request_reference(obj->last_write_req);
b2cfe0ab 11490 mmio_flip->crtc = to_intel_crtc(crtc);
86efe24a 11491 mmio_flip->rotation = crtc->primary->state->rotation;
536f5b5e 11492
b2cfe0ab
CW
11493 INIT_WORK(&mmio_flip->work, intel_mmio_flip_work_func);
11494 schedule_work(&mmio_flip->work);
84c33a64 11495
84c33a64
SG
11496 return 0;
11497}
11498
8c9f3aaf
JB
11499static int intel_default_queue_flip(struct drm_device *dev,
11500 struct drm_crtc *crtc,
11501 struct drm_framebuffer *fb,
ed8d1975 11502 struct drm_i915_gem_object *obj,
6258fbe2 11503 struct drm_i915_gem_request *req,
ed8d1975 11504 uint32_t flags)
8c9f3aaf
JB
11505{
11506 return -ENODEV;
11507}
11508
d6bbafa1
CW
11509static bool __intel_pageflip_stall_check(struct drm_device *dev,
11510 struct drm_crtc *crtc)
11511{
11512 struct drm_i915_private *dev_priv = dev->dev_private;
11513 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11514 struct intel_unpin_work *work = intel_crtc->unpin_work;
11515 u32 addr;
11516
11517 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
11518 return true;
11519
908565c2
CW
11520 if (atomic_read(&work->pending) < INTEL_FLIP_PENDING)
11521 return false;
11522
d6bbafa1
CW
11523 if (!work->enable_stall_check)
11524 return false;
11525
11526 if (work->flip_ready_vblank == 0) {
3a8a946e
DV
11527 if (work->flip_queued_req &&
11528 !i915_gem_request_completed(work->flip_queued_req, true))
d6bbafa1
CW
11529 return false;
11530
1e3feefd 11531 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
d6bbafa1
CW
11532 }
11533
1e3feefd 11534 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
d6bbafa1
CW
11535 return false;
11536
11537 /* Potential stall - if we see that the flip has happened,
11538 * assume a missed interrupt. */
11539 if (INTEL_INFO(dev)->gen >= 4)
11540 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
11541 else
11542 addr = I915_READ(DSPADDR(intel_crtc->plane));
11543
11544 /* There is a potential issue here with a false positive after a flip
11545 * to the same address. We could address this by checking for a
11546 * non-incrementing frame counter.
11547 */
11548 return addr == work->gtt_offset;
11549}
11550
11551void intel_check_page_flip(struct drm_device *dev, int pipe)
11552{
11553 struct drm_i915_private *dev_priv = dev->dev_private;
11554 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11555 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6ad790c0 11556 struct intel_unpin_work *work;
f326038a 11557
6c51d46f 11558 WARN_ON(!in_interrupt());
d6bbafa1
CW
11559
11560 if (crtc == NULL)
11561 return;
11562
f326038a 11563 spin_lock(&dev->event_lock);
6ad790c0
CW
11564 work = intel_crtc->unpin_work;
11565 if (work != NULL && __intel_pageflip_stall_check(dev, crtc)) {
d6bbafa1 11566 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
6ad790c0 11567 work->flip_queued_vblank, drm_vblank_count(dev, pipe));
d6bbafa1 11568 page_flip_completed(intel_crtc);
6ad790c0 11569 work = NULL;
d6bbafa1 11570 }
6ad790c0
CW
11571 if (work != NULL &&
11572 drm_vblank_count(dev, pipe) - work->flip_queued_vblank > 1)
11573 intel_queue_rps_boost_for_request(dev, work->flip_queued_req);
f326038a 11574 spin_unlock(&dev->event_lock);
d6bbafa1
CW
11575}
11576
6b95a207
KH
11577static int intel_crtc_page_flip(struct drm_crtc *crtc,
11578 struct drm_framebuffer *fb,
ed8d1975
KP
11579 struct drm_pending_vblank_event *event,
11580 uint32_t page_flip_flags)
6b95a207
KH
11581{
11582 struct drm_device *dev = crtc->dev;
11583 struct drm_i915_private *dev_priv = dev->dev_private;
f4510a27 11584 struct drm_framebuffer *old_fb = crtc->primary->fb;
2ff8fde1 11585 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
6b95a207 11586 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
455a6808 11587 struct drm_plane *primary = crtc->primary;
a071fa00 11588 enum pipe pipe = intel_crtc->pipe;
6b95a207 11589 struct intel_unpin_work *work;
a4872ba6 11590 struct intel_engine_cs *ring;
cf5d8a46 11591 bool mmio_flip;
91af127f 11592 struct drm_i915_gem_request *request = NULL;
52e68630 11593 int ret;
6b95a207 11594
2ff8fde1
MR
11595 /*
11596 * drm_mode_page_flip_ioctl() should already catch this, but double
11597 * check to be safe. In the future we may enable pageflipping from
11598 * a disabled primary plane.
11599 */
11600 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
11601 return -EBUSY;
11602
e6a595d2 11603 /* Can't change pixel format via MI display flips. */
f4510a27 11604 if (fb->pixel_format != crtc->primary->fb->pixel_format)
e6a595d2
VS
11605 return -EINVAL;
11606
11607 /*
11608 * TILEOFF/LINOFF registers can't be changed via MI display flips.
11609 * Note that pitch changes could also affect these register.
11610 */
11611 if (INTEL_INFO(dev)->gen > 3 &&
f4510a27
MR
11612 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
11613 fb->pitches[0] != crtc->primary->fb->pitches[0]))
e6a595d2
VS
11614 return -EINVAL;
11615
f900db47
CW
11616 if (i915_terminally_wedged(&dev_priv->gpu_error))
11617 goto out_hang;
11618
b14c5679 11619 work = kzalloc(sizeof(*work), GFP_KERNEL);
6b95a207
KH
11620 if (work == NULL)
11621 return -ENOMEM;
11622
6b95a207 11623 work->event = event;
b4a98e57 11624 work->crtc = crtc;
ab8d6675 11625 work->old_fb = old_fb;
6b95a207
KH
11626 INIT_WORK(&work->work, intel_unpin_work_fn);
11627
87b6b101 11628 ret = drm_crtc_vblank_get(crtc);
7317c75e
JB
11629 if (ret)
11630 goto free_work;
11631
6b95a207 11632 /* We borrow the event spin lock for protecting unpin_work */
5e2d7afc 11633 spin_lock_irq(&dev->event_lock);
6b95a207 11634 if (intel_crtc->unpin_work) {
d6bbafa1
CW
11635 /* Before declaring the flip queue wedged, check if
11636 * the hardware completed the operation behind our backs.
11637 */
11638 if (__intel_pageflip_stall_check(dev, crtc)) {
11639 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
11640 page_flip_completed(intel_crtc);
11641 } else {
11642 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
5e2d7afc 11643 spin_unlock_irq(&dev->event_lock);
468f0b44 11644
d6bbafa1
CW
11645 drm_crtc_vblank_put(crtc);
11646 kfree(work);
11647 return -EBUSY;
11648 }
6b95a207
KH
11649 }
11650 intel_crtc->unpin_work = work;
5e2d7afc 11651 spin_unlock_irq(&dev->event_lock);
6b95a207 11652
b4a98e57
CW
11653 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
11654 flush_workqueue(dev_priv->wq);
11655
75dfca80 11656 /* Reference the objects for the scheduled work. */
ab8d6675 11657 drm_framebuffer_reference(work->old_fb);
05394f39 11658 drm_gem_object_reference(&obj->base);
6b95a207 11659
f4510a27 11660 crtc->primary->fb = fb;
afd65eb4 11661 update_state_fb(crtc->primary);
1ed1f968 11662
e1f99ce6 11663 work->pending_flip_obj = obj;
e1f99ce6 11664
89ed88ba
CW
11665 ret = i915_mutex_lock_interruptible(dev);
11666 if (ret)
11667 goto cleanup;
11668
b4a98e57 11669 atomic_inc(&intel_crtc->unpin_work_count);
10d83730 11670 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
e1f99ce6 11671
75f7f3ec 11672 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
fd8f507c 11673 work->flip_count = I915_READ(PIPE_FLIPCOUNT_G4X(pipe)) + 1;
75f7f3ec 11674
666a4537 11675 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
4fa62c89 11676 ring = &dev_priv->ring[BCS];
ab8d6675 11677 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
8e09bf83
CW
11678 /* vlv: DISPLAY_FLIP fails to change tiling */
11679 ring = NULL;
48bf5b2d 11680 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
2a92d5bc 11681 ring = &dev_priv->ring[BCS];
4fa62c89 11682 } else if (INTEL_INFO(dev)->gen >= 7) {
b4716185 11683 ring = i915_gem_request_get_ring(obj->last_write_req);
4fa62c89
VS
11684 if (ring == NULL || ring->id != RCS)
11685 ring = &dev_priv->ring[BCS];
11686 } else {
11687 ring = &dev_priv->ring[RCS];
11688 }
11689
cf5d8a46
CW
11690 mmio_flip = use_mmio_flip(ring, obj);
11691
11692 /* When using CS flips, we want to emit semaphores between rings.
11693 * However, when using mmio flips we will create a task to do the
11694 * synchronisation, so all we want here is to pin the framebuffer
11695 * into the display plane and skip any waits.
11696 */
7580d774
ML
11697 if (!mmio_flip) {
11698 ret = i915_gem_object_sync(obj, ring, &request);
11699 if (ret)
11700 goto cleanup_pending;
11701 }
11702
82bc3b2d 11703 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb,
7580d774 11704 crtc->primary->state);
8c9f3aaf
JB
11705 if (ret)
11706 goto cleanup_pending;
6b95a207 11707
dedf278c
TU
11708 work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary),
11709 obj, 0);
11710 work->gtt_offset += intel_crtc->dspaddr_offset;
4fa62c89 11711
cf5d8a46 11712 if (mmio_flip) {
86efe24a 11713 ret = intel_queue_mmio_flip(dev, crtc, obj);
d6bbafa1
CW
11714 if (ret)
11715 goto cleanup_unpin;
11716
f06cc1b9
JH
11717 i915_gem_request_assign(&work->flip_queued_req,
11718 obj->last_write_req);
d6bbafa1 11719 } else {
6258fbe2
JH
11720 if (!request) {
11721 ret = i915_gem_request_alloc(ring, ring->default_context, &request);
11722 if (ret)
11723 goto cleanup_unpin;
11724 }
11725
11726 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request,
d6bbafa1
CW
11727 page_flip_flags);
11728 if (ret)
11729 goto cleanup_unpin;
11730
6258fbe2 11731 i915_gem_request_assign(&work->flip_queued_req, request);
d6bbafa1
CW
11732 }
11733
91af127f 11734 if (request)
75289874 11735 i915_add_request_no_flush(request);
91af127f 11736
1e3feefd 11737 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
d6bbafa1 11738 work->enable_stall_check = true;
4fa62c89 11739
ab8d6675 11740 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
a9ff8714 11741 to_intel_plane(primary)->frontbuffer_bit);
c80ac854 11742 mutex_unlock(&dev->struct_mutex);
a071fa00 11743
d029bcad 11744 intel_fbc_deactivate(intel_crtc);
a9ff8714
VS
11745 intel_frontbuffer_flip_prepare(dev,
11746 to_intel_plane(primary)->frontbuffer_bit);
6b95a207 11747
e5510fac
JB
11748 trace_i915_flip_request(intel_crtc->plane, obj);
11749
6b95a207 11750 return 0;
96b099fd 11751
4fa62c89 11752cleanup_unpin:
82bc3b2d 11753 intel_unpin_fb_obj(fb, crtc->primary->state);
8c9f3aaf 11754cleanup_pending:
91af127f
JH
11755 if (request)
11756 i915_gem_request_cancel(request);
b4a98e57 11757 atomic_dec(&intel_crtc->unpin_work_count);
89ed88ba
CW
11758 mutex_unlock(&dev->struct_mutex);
11759cleanup:
f4510a27 11760 crtc->primary->fb = old_fb;
afd65eb4 11761 update_state_fb(crtc->primary);
89ed88ba
CW
11762
11763 drm_gem_object_unreference_unlocked(&obj->base);
ab8d6675 11764 drm_framebuffer_unreference(work->old_fb);
96b099fd 11765
5e2d7afc 11766 spin_lock_irq(&dev->event_lock);
96b099fd 11767 intel_crtc->unpin_work = NULL;
5e2d7afc 11768 spin_unlock_irq(&dev->event_lock);
96b099fd 11769
87b6b101 11770 drm_crtc_vblank_put(crtc);
7317c75e 11771free_work:
96b099fd
CW
11772 kfree(work);
11773
f900db47 11774 if (ret == -EIO) {
02e0efb5
ML
11775 struct drm_atomic_state *state;
11776 struct drm_plane_state *plane_state;
11777
f900db47 11778out_hang:
02e0efb5
ML
11779 state = drm_atomic_state_alloc(dev);
11780 if (!state)
11781 return -ENOMEM;
11782 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
11783
11784retry:
11785 plane_state = drm_atomic_get_plane_state(state, primary);
11786 ret = PTR_ERR_OR_ZERO(plane_state);
11787 if (!ret) {
11788 drm_atomic_set_fb_for_plane(plane_state, fb);
11789
11790 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
11791 if (!ret)
11792 ret = drm_atomic_commit(state);
11793 }
11794
11795 if (ret == -EDEADLK) {
11796 drm_modeset_backoff(state->acquire_ctx);
11797 drm_atomic_state_clear(state);
11798 goto retry;
11799 }
11800
11801 if (ret)
11802 drm_atomic_state_free(state);
11803
f0d3dad3 11804 if (ret == 0 && event) {
5e2d7afc 11805 spin_lock_irq(&dev->event_lock);
a071fa00 11806 drm_send_vblank_event(dev, pipe, event);
5e2d7afc 11807 spin_unlock_irq(&dev->event_lock);
f0d3dad3 11808 }
f900db47 11809 }
96b099fd 11810 return ret;
6b95a207
KH
11811}
11812
da20eabd
ML
11813
11814/**
11815 * intel_wm_need_update - Check whether watermarks need updating
11816 * @plane: drm plane
11817 * @state: new plane state
11818 *
11819 * Check current plane state versus the new one to determine whether
11820 * watermarks need to be recalculated.
11821 *
11822 * Returns true or false.
11823 */
11824static bool intel_wm_need_update(struct drm_plane *plane,
11825 struct drm_plane_state *state)
11826{
d21fbe87
MR
11827 struct intel_plane_state *new = to_intel_plane_state(state);
11828 struct intel_plane_state *cur = to_intel_plane_state(plane->state);
11829
11830 /* Update watermarks on tiling or size changes. */
92826fcd
ML
11831 if (new->visible != cur->visible)
11832 return true;
11833
11834 if (!cur->base.fb || !new->base.fb)
11835 return false;
11836
11837 if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] ||
11838 cur->base.rotation != new->base.rotation ||
d21fbe87
MR
11839 drm_rect_width(&new->src) != drm_rect_width(&cur->src) ||
11840 drm_rect_height(&new->src) != drm_rect_height(&cur->src) ||
11841 drm_rect_width(&new->dst) != drm_rect_width(&cur->dst) ||
11842 drm_rect_height(&new->dst) != drm_rect_height(&cur->dst))
2791a16c 11843 return true;
7809e5ae 11844
2791a16c 11845 return false;
7809e5ae
MR
11846}
11847
d21fbe87
MR
11848static bool needs_scaling(struct intel_plane_state *state)
11849{
11850 int src_w = drm_rect_width(&state->src) >> 16;
11851 int src_h = drm_rect_height(&state->src) >> 16;
11852 int dst_w = drm_rect_width(&state->dst);
11853 int dst_h = drm_rect_height(&state->dst);
11854
11855 return (src_w != dst_w || src_h != dst_h);
11856}
11857
da20eabd
ML
11858int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
11859 struct drm_plane_state *plane_state)
11860{
ab1d3a0e 11861 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state);
da20eabd
ML
11862 struct drm_crtc *crtc = crtc_state->crtc;
11863 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11864 struct drm_plane *plane = plane_state->plane;
11865 struct drm_device *dev = crtc->dev;
11866 struct drm_i915_private *dev_priv = dev->dev_private;
11867 struct intel_plane_state *old_plane_state =
11868 to_intel_plane_state(plane->state);
11869 int idx = intel_crtc->base.base.id, ret;
11870 int i = drm_plane_index(plane);
11871 bool mode_changed = needs_modeset(crtc_state);
11872 bool was_crtc_enabled = crtc->state->active;
11873 bool is_crtc_enabled = crtc_state->active;
da20eabd
ML
11874 bool turn_off, turn_on, visible, was_visible;
11875 struct drm_framebuffer *fb = plane_state->fb;
11876
11877 if (crtc_state && INTEL_INFO(dev)->gen >= 9 &&
11878 plane->type != DRM_PLANE_TYPE_CURSOR) {
11879 ret = skl_update_scaler_plane(
11880 to_intel_crtc_state(crtc_state),
11881 to_intel_plane_state(plane_state));
11882 if (ret)
11883 return ret;
11884 }
11885
da20eabd
ML
11886 was_visible = old_plane_state->visible;
11887 visible = to_intel_plane_state(plane_state)->visible;
11888
11889 if (!was_crtc_enabled && WARN_ON(was_visible))
11890 was_visible = false;
11891
35c08f43
ML
11892 /*
11893 * Visibility is calculated as if the crtc was on, but
11894 * after scaler setup everything depends on it being off
11895 * when the crtc isn't active.
11896 */
11897 if (!is_crtc_enabled)
11898 to_intel_plane_state(plane_state)->visible = visible = false;
da20eabd
ML
11899
11900 if (!was_visible && !visible)
11901 return 0;
11902
11903 turn_off = was_visible && (!visible || mode_changed);
11904 turn_on = visible && (!was_visible || mode_changed);
11905
11906 DRM_DEBUG_ATOMIC("[CRTC:%i] has [PLANE:%i] with fb %i\n", idx,
11907 plane->base.id, fb ? fb->base.id : -1);
11908
11909 DRM_DEBUG_ATOMIC("[PLANE:%i] visible %i -> %i, off %i, on %i, ms %i\n",
11910 plane->base.id, was_visible, visible,
11911 turn_off, turn_on, mode_changed);
11912
92826fcd
ML
11913 if (turn_on || turn_off) {
11914 pipe_config->wm_changed = true;
11915
852eb00d
VS
11916 /* must disable cxsr around plane enable/disable */
11917 if (plane->type != DRM_PLANE_TYPE_CURSOR) {
11918 if (is_crtc_enabled)
11919 intel_crtc->atomic.wait_vblank = true;
ab1d3a0e 11920 pipe_config->disable_cxsr = true;
852eb00d
VS
11921 }
11922 } else if (intel_wm_need_update(plane, plane_state)) {
92826fcd 11923 pipe_config->wm_changed = true;
852eb00d 11924 }
da20eabd 11925
396e33ae
MR
11926 /* Pre-gen9 platforms need two-step watermark updates */
11927 if (pipe_config->wm_changed && INTEL_INFO(dev)->gen < 9 &&
11928 dev_priv->display.optimize_watermarks)
11929 to_intel_crtc_state(crtc_state)->wm.need_postvbl_update = true;
11930
8be6ca85 11931 if (visible || was_visible)
a9ff8714
VS
11932 intel_crtc->atomic.fb_bits |=
11933 to_intel_plane(plane)->frontbuffer_bit;
11934
da20eabd
ML
11935 switch (plane->type) {
11936 case DRM_PLANE_TYPE_PRIMARY:
da20eabd
ML
11937 intel_crtc->atomic.pre_disable_primary = turn_off;
11938 intel_crtc->atomic.post_enable_primary = turn_on;
11939
066cf55b
RV
11940 if (turn_off) {
11941 /*
11942 * FIXME: Actually if we will still have any other
11943 * plane enabled on the pipe we could let IPS enabled
11944 * still, but for now lets consider that when we make
11945 * primary invisible by setting DSPCNTR to 0 on
11946 * update_primary_plane function IPS needs to be
11947 * disable.
11948 */
11949 intel_crtc->atomic.disable_ips = true;
11950
da20eabd 11951 intel_crtc->atomic.disable_fbc = true;
066cf55b 11952 }
da20eabd
ML
11953
11954 /*
11955 * FBC does not work on some platforms for rotated
11956 * planes, so disable it when rotation is not 0 and
11957 * update it when rotation is set back to 0.
11958 *
11959 * FIXME: This is redundant with the fbc update done in
11960 * the primary plane enable function except that that
11961 * one is done too late. We eventually need to unify
11962 * this.
11963 */
11964
11965 if (visible &&
11966 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11967 dev_priv->fbc.crtc == intel_crtc &&
11968 plane_state->rotation != BIT(DRM_ROTATE_0))
11969 intel_crtc->atomic.disable_fbc = true;
11970
11971 /*
11972 * BDW signals flip done immediately if the plane
11973 * is disabled, even if the plane enable is already
11974 * armed to occur at the next vblank :(
11975 */
11976 if (turn_on && IS_BROADWELL(dev))
11977 intel_crtc->atomic.wait_vblank = true;
11978
11979 intel_crtc->atomic.update_fbc |= visible || mode_changed;
11980 break;
11981 case DRM_PLANE_TYPE_CURSOR:
da20eabd
ML
11982 break;
11983 case DRM_PLANE_TYPE_OVERLAY:
d21fbe87
MR
11984 /*
11985 * WaCxSRDisabledForSpriteScaling:ivb
11986 *
11987 * cstate->update_wm was already set above, so this flag will
11988 * take effect when we commit and program watermarks.
11989 */
11990 if (IS_IVYBRIDGE(dev) &&
11991 needs_scaling(to_intel_plane_state(plane_state)) &&
11992 !needs_scaling(old_plane_state)) {
11993 to_intel_crtc_state(crtc_state)->disable_lp_wm = true;
11994 } else if (turn_off && !mode_changed) {
da20eabd
ML
11995 intel_crtc->atomic.wait_vblank = true;
11996 intel_crtc->atomic.update_sprite_watermarks |=
11997 1 << i;
11998 }
d21fbe87
MR
11999
12000 break;
da20eabd
ML
12001 }
12002 return 0;
12003}
12004
6d3a1ce7
ML
12005static bool encoders_cloneable(const struct intel_encoder *a,
12006 const struct intel_encoder *b)
12007{
12008 /* masks could be asymmetric, so check both ways */
12009 return a == b || (a->cloneable & (1 << b->type) &&
12010 b->cloneable & (1 << a->type));
12011}
12012
12013static bool check_single_encoder_cloning(struct drm_atomic_state *state,
12014 struct intel_crtc *crtc,
12015 struct intel_encoder *encoder)
12016{
12017 struct intel_encoder *source_encoder;
12018 struct drm_connector *connector;
12019 struct drm_connector_state *connector_state;
12020 int i;
12021
12022 for_each_connector_in_state(state, connector, connector_state, i) {
12023 if (connector_state->crtc != &crtc->base)
12024 continue;
12025
12026 source_encoder =
12027 to_intel_encoder(connector_state->best_encoder);
12028 if (!encoders_cloneable(encoder, source_encoder))
12029 return false;
12030 }
12031
12032 return true;
12033}
12034
12035static bool check_encoder_cloning(struct drm_atomic_state *state,
12036 struct intel_crtc *crtc)
12037{
12038 struct intel_encoder *encoder;
12039 struct drm_connector *connector;
12040 struct drm_connector_state *connector_state;
12041 int i;
12042
12043 for_each_connector_in_state(state, connector, connector_state, i) {
12044 if (connector_state->crtc != &crtc->base)
12045 continue;
12046
12047 encoder = to_intel_encoder(connector_state->best_encoder);
12048 if (!check_single_encoder_cloning(state, crtc, encoder))
12049 return false;
12050 }
12051
12052 return true;
12053}
12054
12055static int intel_crtc_atomic_check(struct drm_crtc *crtc,
12056 struct drm_crtc_state *crtc_state)
12057{
cf5a15be 12058 struct drm_device *dev = crtc->dev;
ad421372 12059 struct drm_i915_private *dev_priv = dev->dev_private;
6d3a1ce7 12060 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cf5a15be
ML
12061 struct intel_crtc_state *pipe_config =
12062 to_intel_crtc_state(crtc_state);
6d3a1ce7 12063 struct drm_atomic_state *state = crtc_state->state;
4d20cd86 12064 int ret;
6d3a1ce7
ML
12065 bool mode_changed = needs_modeset(crtc_state);
12066
12067 if (mode_changed && !check_encoder_cloning(state, intel_crtc)) {
12068 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
12069 return -EINVAL;
12070 }
12071
852eb00d 12072 if (mode_changed && !crtc_state->active)
92826fcd 12073 pipe_config->wm_changed = true;
eddfcbcd 12074
ad421372
ML
12075 if (mode_changed && crtc_state->enable &&
12076 dev_priv->display.crtc_compute_clock &&
12077 !WARN_ON(pipe_config->shared_dpll != DPLL_ID_PRIVATE)) {
12078 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
12079 pipe_config);
12080 if (ret)
12081 return ret;
12082 }
12083
e435d6e5 12084 ret = 0;
86c8bbbe
MR
12085 if (dev_priv->display.compute_pipe_wm) {
12086 ret = dev_priv->display.compute_pipe_wm(intel_crtc, state);
396e33ae
MR
12087 if (ret) {
12088 DRM_DEBUG_KMS("Target pipe watermarks are invalid\n");
12089 return ret;
12090 }
12091 }
12092
12093 if (dev_priv->display.compute_intermediate_wm &&
12094 !to_intel_atomic_state(state)->skip_intermediate_wm) {
12095 if (WARN_ON(!dev_priv->display.compute_pipe_wm))
12096 return 0;
12097
12098 /*
12099 * Calculate 'intermediate' watermarks that satisfy both the
12100 * old state and the new state. We can program these
12101 * immediately.
12102 */
12103 ret = dev_priv->display.compute_intermediate_wm(crtc->dev,
12104 intel_crtc,
12105 pipe_config);
12106 if (ret) {
12107 DRM_DEBUG_KMS("No valid intermediate pipe watermarks are possible\n");
86c8bbbe 12108 return ret;
396e33ae 12109 }
86c8bbbe
MR
12110 }
12111
e435d6e5
ML
12112 if (INTEL_INFO(dev)->gen >= 9) {
12113 if (mode_changed)
12114 ret = skl_update_scaler_crtc(pipe_config);
12115
12116 if (!ret)
12117 ret = intel_atomic_setup_scalers(dev, intel_crtc,
12118 pipe_config);
12119 }
12120
12121 return ret;
6d3a1ce7
ML
12122}
12123
65b38e0d 12124static const struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160
CW
12125 .mode_set_base_atomic = intel_pipe_set_base_atomic,
12126 .load_lut = intel_crtc_load_lut,
ea2c67bb
MR
12127 .atomic_begin = intel_begin_crtc_commit,
12128 .atomic_flush = intel_finish_crtc_commit,
6d3a1ce7 12129 .atomic_check = intel_crtc_atomic_check,
f6e5b160
CW
12130};
12131
d29b2f9d
ACO
12132static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
12133{
12134 struct intel_connector *connector;
12135
12136 for_each_intel_connector(dev, connector) {
12137 if (connector->base.encoder) {
12138 connector->base.state->best_encoder =
12139 connector->base.encoder;
12140 connector->base.state->crtc =
12141 connector->base.encoder->crtc;
12142 } else {
12143 connector->base.state->best_encoder = NULL;
12144 connector->base.state->crtc = NULL;
12145 }
12146 }
12147}
12148
050f7aeb 12149static void
eba905b2 12150connected_sink_compute_bpp(struct intel_connector *connector,
5cec258b 12151 struct intel_crtc_state *pipe_config)
050f7aeb
DV
12152{
12153 int bpp = pipe_config->pipe_bpp;
12154
12155 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
12156 connector->base.base.id,
c23cc417 12157 connector->base.name);
050f7aeb
DV
12158
12159 /* Don't use an invalid EDID bpc value */
12160 if (connector->base.display_info.bpc &&
12161 connector->base.display_info.bpc * 3 < bpp) {
12162 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
12163 bpp, connector->base.display_info.bpc*3);
12164 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
12165 }
12166
12167 /* Clamp bpp to 8 on screens without EDID 1.4 */
12168 if (connector->base.display_info.bpc == 0 && bpp > 24) {
12169 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
12170 bpp);
12171 pipe_config->pipe_bpp = 24;
12172 }
12173}
12174
4e53c2e0 12175static int
050f7aeb 12176compute_baseline_pipe_bpp(struct intel_crtc *crtc,
5cec258b 12177 struct intel_crtc_state *pipe_config)
4e53c2e0 12178{
050f7aeb 12179 struct drm_device *dev = crtc->base.dev;
1486017f 12180 struct drm_atomic_state *state;
da3ced29
ACO
12181 struct drm_connector *connector;
12182 struct drm_connector_state *connector_state;
1486017f 12183 int bpp, i;
4e53c2e0 12184
666a4537 12185 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)))
4e53c2e0 12186 bpp = 10*3;
d328c9d7
DV
12187 else if (INTEL_INFO(dev)->gen >= 5)
12188 bpp = 12*3;
12189 else
12190 bpp = 8*3;
12191
4e53c2e0 12192
4e53c2e0
DV
12193 pipe_config->pipe_bpp = bpp;
12194
1486017f
ACO
12195 state = pipe_config->base.state;
12196
4e53c2e0 12197 /* Clamp display bpp to EDID value */
da3ced29
ACO
12198 for_each_connector_in_state(state, connector, connector_state, i) {
12199 if (connector_state->crtc != &crtc->base)
4e53c2e0
DV
12200 continue;
12201
da3ced29
ACO
12202 connected_sink_compute_bpp(to_intel_connector(connector),
12203 pipe_config);
4e53c2e0
DV
12204 }
12205
12206 return bpp;
12207}
12208
644db711
DV
12209static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
12210{
12211 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
12212 "type: 0x%x flags: 0x%x\n",
1342830c 12213 mode->crtc_clock,
644db711
DV
12214 mode->crtc_hdisplay, mode->crtc_hsync_start,
12215 mode->crtc_hsync_end, mode->crtc_htotal,
12216 mode->crtc_vdisplay, mode->crtc_vsync_start,
12217 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
12218}
12219
c0b03411 12220static void intel_dump_pipe_config(struct intel_crtc *crtc,
5cec258b 12221 struct intel_crtc_state *pipe_config,
c0b03411
DV
12222 const char *context)
12223{
6a60cd87
CK
12224 struct drm_device *dev = crtc->base.dev;
12225 struct drm_plane *plane;
12226 struct intel_plane *intel_plane;
12227 struct intel_plane_state *state;
12228 struct drm_framebuffer *fb;
12229
12230 DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id,
12231 context, pipe_config, pipe_name(crtc->pipe));
c0b03411
DV
12232
12233 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
12234 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
12235 pipe_config->pipe_bpp, pipe_config->dither);
12236 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
12237 pipe_config->has_pch_encoder,
12238 pipe_config->fdi_lanes,
12239 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
12240 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
12241 pipe_config->fdi_m_n.tu);
90a6b7b0 12242 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
eb14cb74 12243 pipe_config->has_dp_encoder,
90a6b7b0 12244 pipe_config->lane_count,
eb14cb74
VS
12245 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
12246 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
12247 pipe_config->dp_m_n.tu);
b95af8be 12248
90a6b7b0 12249 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
b95af8be 12250 pipe_config->has_dp_encoder,
90a6b7b0 12251 pipe_config->lane_count,
b95af8be
VK
12252 pipe_config->dp_m2_n2.gmch_m,
12253 pipe_config->dp_m2_n2.gmch_n,
12254 pipe_config->dp_m2_n2.link_m,
12255 pipe_config->dp_m2_n2.link_n,
12256 pipe_config->dp_m2_n2.tu);
12257
55072d19
DV
12258 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
12259 pipe_config->has_audio,
12260 pipe_config->has_infoframe);
12261
c0b03411 12262 DRM_DEBUG_KMS("requested mode:\n");
2d112de7 12263 drm_mode_debug_printmodeline(&pipe_config->base.mode);
c0b03411 12264 DRM_DEBUG_KMS("adjusted mode:\n");
2d112de7
ACO
12265 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
12266 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
d71b8d4a 12267 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
37327abd
VS
12268 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
12269 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
0ec463d3
TU
12270 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
12271 crtc->num_scalers,
12272 pipe_config->scaler_state.scaler_users,
12273 pipe_config->scaler_state.scaler_id);
c0b03411
DV
12274 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
12275 pipe_config->gmch_pfit.control,
12276 pipe_config->gmch_pfit.pgm_ratios,
12277 pipe_config->gmch_pfit.lvds_border_bits);
fd4daa9c 12278 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
c0b03411 12279 pipe_config->pch_pfit.pos,
fd4daa9c
CW
12280 pipe_config->pch_pfit.size,
12281 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
42db64ef 12282 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
cf532bb2 12283 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
6a60cd87 12284
415ff0f6 12285 if (IS_BROXTON(dev)) {
05712c15 12286 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
415ff0f6 12287 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
c8453338 12288 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
415ff0f6
TU
12289 pipe_config->ddi_pll_sel,
12290 pipe_config->dpll_hw_state.ebb0,
05712c15 12291 pipe_config->dpll_hw_state.ebb4,
415ff0f6
TU
12292 pipe_config->dpll_hw_state.pll0,
12293 pipe_config->dpll_hw_state.pll1,
12294 pipe_config->dpll_hw_state.pll2,
12295 pipe_config->dpll_hw_state.pll3,
12296 pipe_config->dpll_hw_state.pll6,
12297 pipe_config->dpll_hw_state.pll8,
05712c15 12298 pipe_config->dpll_hw_state.pll9,
c8453338 12299 pipe_config->dpll_hw_state.pll10,
415ff0f6 12300 pipe_config->dpll_hw_state.pcsdw12);
ef11bdb3 12301 } else if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
415ff0f6
TU
12302 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: "
12303 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
12304 pipe_config->ddi_pll_sel,
12305 pipe_config->dpll_hw_state.ctrl1,
12306 pipe_config->dpll_hw_state.cfgcr1,
12307 pipe_config->dpll_hw_state.cfgcr2);
12308 } else if (HAS_DDI(dev)) {
00490c22 12309 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: wrpll: 0x%x spll: 0x%x\n",
415ff0f6 12310 pipe_config->ddi_pll_sel,
00490c22
ML
12311 pipe_config->dpll_hw_state.wrpll,
12312 pipe_config->dpll_hw_state.spll);
415ff0f6
TU
12313 } else {
12314 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
12315 "fp0: 0x%x, fp1: 0x%x\n",
12316 pipe_config->dpll_hw_state.dpll,
12317 pipe_config->dpll_hw_state.dpll_md,
12318 pipe_config->dpll_hw_state.fp0,
12319 pipe_config->dpll_hw_state.fp1);
12320 }
12321
6a60cd87
CK
12322 DRM_DEBUG_KMS("planes on this crtc\n");
12323 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
12324 intel_plane = to_intel_plane(plane);
12325 if (intel_plane->pipe != crtc->pipe)
12326 continue;
12327
12328 state = to_intel_plane_state(plane->state);
12329 fb = state->base.fb;
12330 if (!fb) {
12331 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d "
12332 "disabled, scaler_id = %d\n",
12333 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12334 plane->base.id, intel_plane->pipe,
12335 (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1,
12336 drm_plane_index(plane), state->scaler_id);
12337 continue;
12338 }
12339
12340 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled",
12341 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12342 plane->base.id, intel_plane->pipe,
12343 crtc->base.primary == plane ? 0 : intel_plane->plane + 1,
12344 drm_plane_index(plane));
12345 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x",
12346 fb->base.id, fb->width, fb->height, fb->pixel_format);
12347 DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n",
12348 state->scaler_id,
12349 state->src.x1 >> 16, state->src.y1 >> 16,
12350 drm_rect_width(&state->src) >> 16,
12351 drm_rect_height(&state->src) >> 16,
12352 state->dst.x1, state->dst.y1,
12353 drm_rect_width(&state->dst), drm_rect_height(&state->dst));
12354 }
c0b03411
DV
12355}
12356
5448a00d 12357static bool check_digital_port_conflicts(struct drm_atomic_state *state)
00f0b378 12358{
5448a00d 12359 struct drm_device *dev = state->dev;
da3ced29 12360 struct drm_connector *connector;
00f0b378
VS
12361 unsigned int used_ports = 0;
12362
12363 /*
12364 * Walk the connector list instead of the encoder
12365 * list to detect the problem on ddi platforms
12366 * where there's just one encoder per digital port.
12367 */
0bff4858
VS
12368 drm_for_each_connector(connector, dev) {
12369 struct drm_connector_state *connector_state;
12370 struct intel_encoder *encoder;
12371
12372 connector_state = drm_atomic_get_existing_connector_state(state, connector);
12373 if (!connector_state)
12374 connector_state = connector->state;
12375
5448a00d 12376 if (!connector_state->best_encoder)
00f0b378
VS
12377 continue;
12378
5448a00d
ACO
12379 encoder = to_intel_encoder(connector_state->best_encoder);
12380
12381 WARN_ON(!connector_state->crtc);
00f0b378
VS
12382
12383 switch (encoder->type) {
12384 unsigned int port_mask;
12385 case INTEL_OUTPUT_UNKNOWN:
12386 if (WARN_ON(!HAS_DDI(dev)))
12387 break;
12388 case INTEL_OUTPUT_DISPLAYPORT:
12389 case INTEL_OUTPUT_HDMI:
12390 case INTEL_OUTPUT_EDP:
12391 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
12392
12393 /* the same port mustn't appear more than once */
12394 if (used_ports & port_mask)
12395 return false;
12396
12397 used_ports |= port_mask;
12398 default:
12399 break;
12400 }
12401 }
12402
12403 return true;
12404}
12405
83a57153
ACO
12406static void
12407clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12408{
12409 struct drm_crtc_state tmp_state;
663a3640 12410 struct intel_crtc_scaler_state scaler_state;
4978cc93
ACO
12411 struct intel_dpll_hw_state dpll_hw_state;
12412 enum intel_dpll_id shared_dpll;
8504c74c 12413 uint32_t ddi_pll_sel;
c4e2d043 12414 bool force_thru;
83a57153 12415
7546a384
ACO
12416 /* FIXME: before the switch to atomic started, a new pipe_config was
12417 * kzalloc'd. Code that depends on any field being zero should be
12418 * fixed, so that the crtc_state can be safely duplicated. For now,
12419 * only fields that are know to not cause problems are preserved. */
12420
83a57153 12421 tmp_state = crtc_state->base;
663a3640 12422 scaler_state = crtc_state->scaler_state;
4978cc93
ACO
12423 shared_dpll = crtc_state->shared_dpll;
12424 dpll_hw_state = crtc_state->dpll_hw_state;
8504c74c 12425 ddi_pll_sel = crtc_state->ddi_pll_sel;
c4e2d043 12426 force_thru = crtc_state->pch_pfit.force_thru;
4978cc93 12427
83a57153 12428 memset(crtc_state, 0, sizeof *crtc_state);
4978cc93 12429
83a57153 12430 crtc_state->base = tmp_state;
663a3640 12431 crtc_state->scaler_state = scaler_state;
4978cc93
ACO
12432 crtc_state->shared_dpll = shared_dpll;
12433 crtc_state->dpll_hw_state = dpll_hw_state;
8504c74c 12434 crtc_state->ddi_pll_sel = ddi_pll_sel;
c4e2d043 12435 crtc_state->pch_pfit.force_thru = force_thru;
83a57153
ACO
12436}
12437
548ee15b 12438static int
b8cecdf5 12439intel_modeset_pipe_config(struct drm_crtc *crtc,
b359283a 12440 struct intel_crtc_state *pipe_config)
ee7b9f93 12441{
b359283a 12442 struct drm_atomic_state *state = pipe_config->base.state;
7758a113 12443 struct intel_encoder *encoder;
da3ced29 12444 struct drm_connector *connector;
0b901879 12445 struct drm_connector_state *connector_state;
d328c9d7 12446 int base_bpp, ret = -EINVAL;
0b901879 12447 int i;
e29c22c0 12448 bool retry = true;
ee7b9f93 12449
83a57153 12450 clear_intel_crtc_state(pipe_config);
7758a113 12451
e143a21c
DV
12452 pipe_config->cpu_transcoder =
12453 (enum transcoder) to_intel_crtc(crtc)->pipe;
b8cecdf5 12454
2960bc9c
ID
12455 /*
12456 * Sanitize sync polarity flags based on requested ones. If neither
12457 * positive or negative polarity is requested, treat this as meaning
12458 * negative polarity.
12459 */
2d112de7 12460 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 12461 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
2d112de7 12462 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
2960bc9c 12463
2d112de7 12464 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 12465 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
2d112de7 12466 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
2960bc9c 12467
d328c9d7
DV
12468 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
12469 pipe_config);
12470 if (base_bpp < 0)
4e53c2e0
DV
12471 goto fail;
12472
e41a56be
VS
12473 /*
12474 * Determine the real pipe dimensions. Note that stereo modes can
12475 * increase the actual pipe size due to the frame doubling and
12476 * insertion of additional space for blanks between the frame. This
12477 * is stored in the crtc timings. We use the requested mode to do this
12478 * computation to clearly distinguish it from the adjusted mode, which
12479 * can be changed by the connectors in the below retry loop.
12480 */
2d112de7 12481 drm_crtc_get_hv_timing(&pipe_config->base.mode,
ecb7e16b
GP
12482 &pipe_config->pipe_src_w,
12483 &pipe_config->pipe_src_h);
e41a56be 12484
e29c22c0 12485encoder_retry:
ef1b460d 12486 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 12487 pipe_config->port_clock = 0;
ef1b460d 12488 pipe_config->pixel_multiplier = 1;
ff9a6750 12489
135c81b8 12490 /* Fill in default crtc timings, allow encoders to overwrite them. */
2d112de7
ACO
12491 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
12492 CRTC_STEREO_DOUBLE);
135c81b8 12493
7758a113
DV
12494 /* Pass our mode to the connectors and the CRTC to give them a chance to
12495 * adjust it according to limitations or connector properties, and also
12496 * a chance to reject the mode entirely.
47f1c6c9 12497 */
da3ced29 12498 for_each_connector_in_state(state, connector, connector_state, i) {
0b901879 12499 if (connector_state->crtc != crtc)
7758a113 12500 continue;
7ae89233 12501
0b901879
ACO
12502 encoder = to_intel_encoder(connector_state->best_encoder);
12503
efea6e8e
DV
12504 if (!(encoder->compute_config(encoder, pipe_config))) {
12505 DRM_DEBUG_KMS("Encoder config failure\n");
7758a113
DV
12506 goto fail;
12507 }
ee7b9f93 12508 }
47f1c6c9 12509
ff9a6750
DV
12510 /* Set default port clock if not overwritten by the encoder. Needs to be
12511 * done afterwards in case the encoder adjusts the mode. */
12512 if (!pipe_config->port_clock)
2d112de7 12513 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
241bfc38 12514 * pipe_config->pixel_multiplier;
ff9a6750 12515
a43f6e0f 12516 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 12517 if (ret < 0) {
7758a113
DV
12518 DRM_DEBUG_KMS("CRTC fixup failed\n");
12519 goto fail;
ee7b9f93 12520 }
e29c22c0
DV
12521
12522 if (ret == RETRY) {
12523 if (WARN(!retry, "loop in pipe configuration computation\n")) {
12524 ret = -EINVAL;
12525 goto fail;
12526 }
12527
12528 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
12529 retry = false;
12530 goto encoder_retry;
12531 }
12532
e8fa4270
DV
12533 /* Dithering seems to not pass-through bits correctly when it should, so
12534 * only enable it on 6bpc panels. */
12535 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
62f0ace5 12536 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
d328c9d7 12537 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
4e53c2e0 12538
7758a113 12539fail:
548ee15b 12540 return ret;
ee7b9f93 12541}
47f1c6c9 12542
ea9d758d 12543static void
4740b0f2 12544intel_modeset_update_crtc_state(struct drm_atomic_state *state)
ea9d758d 12545{
0a9ab303
ACO
12546 struct drm_crtc *crtc;
12547 struct drm_crtc_state *crtc_state;
8a75d157 12548 int i;
ea9d758d 12549
7668851f 12550 /* Double check state. */
8a75d157 12551 for_each_crtc_in_state(state, crtc, crtc_state, i) {
3cb480bc 12552 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
fc467a22
ML
12553
12554 /* Update hwmode for vblank functions */
12555 if (crtc->state->active)
12556 crtc->hwmode = crtc->state->adjusted_mode;
12557 else
12558 crtc->hwmode.crtc_clock = 0;
61067a5e
ML
12559
12560 /*
12561 * Update legacy state to satisfy fbc code. This can
12562 * be removed when fbc uses the atomic state.
12563 */
12564 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
12565 struct drm_plane_state *plane_state = crtc->primary->state;
12566
12567 crtc->primary->fb = plane_state->fb;
12568 crtc->x = plane_state->src_x >> 16;
12569 crtc->y = plane_state->src_y >> 16;
12570 }
ea9d758d 12571 }
ea9d758d
DV
12572}
12573
3bd26263 12574static bool intel_fuzzy_clock_check(int clock1, int clock2)
f1f644dc 12575{
3bd26263 12576 int diff;
f1f644dc
JB
12577
12578 if (clock1 == clock2)
12579 return true;
12580
12581 if (!clock1 || !clock2)
12582 return false;
12583
12584 diff = abs(clock1 - clock2);
12585
12586 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
12587 return true;
12588
12589 return false;
12590}
12591
25c5b266
DV
12592#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
12593 list_for_each_entry((intel_crtc), \
12594 &(dev)->mode_config.crtc_list, \
12595 base.head) \
95150bdf 12596 for_each_if (mask & (1 <<(intel_crtc)->pipe))
25c5b266 12597
cfb23ed6
ML
12598static bool
12599intel_compare_m_n(unsigned int m, unsigned int n,
12600 unsigned int m2, unsigned int n2,
12601 bool exact)
12602{
12603 if (m == m2 && n == n2)
12604 return true;
12605
12606 if (exact || !m || !n || !m2 || !n2)
12607 return false;
12608
12609 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
12610
31d10b57
ML
12611 if (n > n2) {
12612 while (n > n2) {
cfb23ed6
ML
12613 m2 <<= 1;
12614 n2 <<= 1;
12615 }
31d10b57
ML
12616 } else if (n < n2) {
12617 while (n < n2) {
cfb23ed6
ML
12618 m <<= 1;
12619 n <<= 1;
12620 }
12621 }
12622
31d10b57
ML
12623 if (n != n2)
12624 return false;
12625
12626 return intel_fuzzy_clock_check(m, m2);
cfb23ed6
ML
12627}
12628
12629static bool
12630intel_compare_link_m_n(const struct intel_link_m_n *m_n,
12631 struct intel_link_m_n *m2_n2,
12632 bool adjust)
12633{
12634 if (m_n->tu == m2_n2->tu &&
12635 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
12636 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
12637 intel_compare_m_n(m_n->link_m, m_n->link_n,
12638 m2_n2->link_m, m2_n2->link_n, !adjust)) {
12639 if (adjust)
12640 *m2_n2 = *m_n;
12641
12642 return true;
12643 }
12644
12645 return false;
12646}
12647
0e8ffe1b 12648static bool
2fa2fe9a 12649intel_pipe_config_compare(struct drm_device *dev,
5cec258b 12650 struct intel_crtc_state *current_config,
cfb23ed6
ML
12651 struct intel_crtc_state *pipe_config,
12652 bool adjust)
0e8ffe1b 12653{
cfb23ed6
ML
12654 bool ret = true;
12655
12656#define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
12657 do { \
12658 if (!adjust) \
12659 DRM_ERROR(fmt, ##__VA_ARGS__); \
12660 else \
12661 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
12662 } while (0)
12663
66e985c0
DV
12664#define PIPE_CONF_CHECK_X(name) \
12665 if (current_config->name != pipe_config->name) { \
cfb23ed6 12666 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
66e985c0
DV
12667 "(expected 0x%08x, found 0x%08x)\n", \
12668 current_config->name, \
12669 pipe_config->name); \
cfb23ed6 12670 ret = false; \
66e985c0
DV
12671 }
12672
08a24034
DV
12673#define PIPE_CONF_CHECK_I(name) \
12674 if (current_config->name != pipe_config->name) { \
cfb23ed6 12675 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
08a24034
DV
12676 "(expected %i, found %i)\n", \
12677 current_config->name, \
12678 pipe_config->name); \
cfb23ed6
ML
12679 ret = false; \
12680 }
12681
12682#define PIPE_CONF_CHECK_M_N(name) \
12683 if (!intel_compare_link_m_n(&current_config->name, \
12684 &pipe_config->name,\
12685 adjust)) { \
12686 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12687 "(expected tu %i gmch %i/%i link %i/%i, " \
12688 "found tu %i, gmch %i/%i link %i/%i)\n", \
12689 current_config->name.tu, \
12690 current_config->name.gmch_m, \
12691 current_config->name.gmch_n, \
12692 current_config->name.link_m, \
12693 current_config->name.link_n, \
12694 pipe_config->name.tu, \
12695 pipe_config->name.gmch_m, \
12696 pipe_config->name.gmch_n, \
12697 pipe_config->name.link_m, \
12698 pipe_config->name.link_n); \
12699 ret = false; \
12700 }
12701
12702#define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
12703 if (!intel_compare_link_m_n(&current_config->name, \
12704 &pipe_config->name, adjust) && \
12705 !intel_compare_link_m_n(&current_config->alt_name, \
12706 &pipe_config->name, adjust)) { \
12707 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12708 "(expected tu %i gmch %i/%i link %i/%i, " \
12709 "or tu %i gmch %i/%i link %i/%i, " \
12710 "found tu %i, gmch %i/%i link %i/%i)\n", \
12711 current_config->name.tu, \
12712 current_config->name.gmch_m, \
12713 current_config->name.gmch_n, \
12714 current_config->name.link_m, \
12715 current_config->name.link_n, \
12716 current_config->alt_name.tu, \
12717 current_config->alt_name.gmch_m, \
12718 current_config->alt_name.gmch_n, \
12719 current_config->alt_name.link_m, \
12720 current_config->alt_name.link_n, \
12721 pipe_config->name.tu, \
12722 pipe_config->name.gmch_m, \
12723 pipe_config->name.gmch_n, \
12724 pipe_config->name.link_m, \
12725 pipe_config->name.link_n); \
12726 ret = false; \
88adfff1
DV
12727 }
12728
b95af8be
VK
12729/* This is required for BDW+ where there is only one set of registers for
12730 * switching between high and low RR.
12731 * This macro can be used whenever a comparison has to be made between one
12732 * hw state and multiple sw state variables.
12733 */
12734#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
12735 if ((current_config->name != pipe_config->name) && \
12736 (current_config->alt_name != pipe_config->name)) { \
cfb23ed6 12737 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
b95af8be
VK
12738 "(expected %i or %i, found %i)\n", \
12739 current_config->name, \
12740 current_config->alt_name, \
12741 pipe_config->name); \
cfb23ed6 12742 ret = false; \
b95af8be
VK
12743 }
12744
1bd1bd80
DV
12745#define PIPE_CONF_CHECK_FLAGS(name, mask) \
12746 if ((current_config->name ^ pipe_config->name) & (mask)) { \
cfb23ed6 12747 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
1bd1bd80
DV
12748 "(expected %i, found %i)\n", \
12749 current_config->name & (mask), \
12750 pipe_config->name & (mask)); \
cfb23ed6 12751 ret = false; \
1bd1bd80
DV
12752 }
12753
5e550656
VS
12754#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
12755 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
cfb23ed6 12756 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
5e550656
VS
12757 "(expected %i, found %i)\n", \
12758 current_config->name, \
12759 pipe_config->name); \
cfb23ed6 12760 ret = false; \
5e550656
VS
12761 }
12762
bb760063
DV
12763#define PIPE_CONF_QUIRK(quirk) \
12764 ((current_config->quirks | pipe_config->quirks) & (quirk))
12765
eccb140b
DV
12766 PIPE_CONF_CHECK_I(cpu_transcoder);
12767
08a24034
DV
12768 PIPE_CONF_CHECK_I(has_pch_encoder);
12769 PIPE_CONF_CHECK_I(fdi_lanes);
cfb23ed6 12770 PIPE_CONF_CHECK_M_N(fdi_m_n);
08a24034 12771
eb14cb74 12772 PIPE_CONF_CHECK_I(has_dp_encoder);
90a6b7b0 12773 PIPE_CONF_CHECK_I(lane_count);
b95af8be
VK
12774
12775 if (INTEL_INFO(dev)->gen < 8) {
cfb23ed6
ML
12776 PIPE_CONF_CHECK_M_N(dp_m_n);
12777
cfb23ed6
ML
12778 if (current_config->has_drrs)
12779 PIPE_CONF_CHECK_M_N(dp_m2_n2);
12780 } else
12781 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
eb14cb74 12782
a65347ba
JN
12783 PIPE_CONF_CHECK_I(has_dsi_encoder);
12784
2d112de7
ACO
12785 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
12786 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
12787 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
12788 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
12789 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
12790 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
1bd1bd80 12791
2d112de7
ACO
12792 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
12793 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
12794 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
12795 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
12796 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
12797 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
1bd1bd80 12798
c93f54cf 12799 PIPE_CONF_CHECK_I(pixel_multiplier);
6897b4b5 12800 PIPE_CONF_CHECK_I(has_hdmi_sink);
b5a9fa09 12801 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
666a4537 12802 IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
b5a9fa09 12803 PIPE_CONF_CHECK_I(limited_color_range);
e43823ec 12804 PIPE_CONF_CHECK_I(has_infoframe);
6c49f241 12805
9ed109a7
DV
12806 PIPE_CONF_CHECK_I(has_audio);
12807
2d112de7 12808 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
1bd1bd80
DV
12809 DRM_MODE_FLAG_INTERLACE);
12810
bb760063 12811 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
2d112de7 12812 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12813 DRM_MODE_FLAG_PHSYNC);
2d112de7 12814 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12815 DRM_MODE_FLAG_NHSYNC);
2d112de7 12816 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12817 DRM_MODE_FLAG_PVSYNC);
2d112de7 12818 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063
DV
12819 DRM_MODE_FLAG_NVSYNC);
12820 }
045ac3b5 12821
333b8ca8 12822 PIPE_CONF_CHECK_X(gmch_pfit.control);
e2ff2d4a
DV
12823 /* pfit ratios are autocomputed by the hw on gen4+ */
12824 if (INTEL_INFO(dev)->gen < 4)
12825 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
333b8ca8 12826 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
9953599b 12827
bfd16b2a
ML
12828 if (!adjust) {
12829 PIPE_CONF_CHECK_I(pipe_src_w);
12830 PIPE_CONF_CHECK_I(pipe_src_h);
12831
12832 PIPE_CONF_CHECK_I(pch_pfit.enabled);
12833 if (current_config->pch_pfit.enabled) {
12834 PIPE_CONF_CHECK_X(pch_pfit.pos);
12835 PIPE_CONF_CHECK_X(pch_pfit.size);
12836 }
2fa2fe9a 12837
7aefe2b5
ML
12838 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
12839 }
a1b2278e 12840
e59150dc
JB
12841 /* BDW+ don't expose a synchronous way to read the state */
12842 if (IS_HASWELL(dev))
12843 PIPE_CONF_CHECK_I(ips_enabled);
42db64ef 12844
282740f7
VS
12845 PIPE_CONF_CHECK_I(double_wide);
12846
26804afd
DV
12847 PIPE_CONF_CHECK_X(ddi_pll_sel);
12848
c0d43d62 12849 PIPE_CONF_CHECK_I(shared_dpll);
66e985c0 12850 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
8bcc2795 12851 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
66e985c0
DV
12852 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
12853 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
d452c5b6 12854 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
00490c22 12855 PIPE_CONF_CHECK_X(dpll_hw_state.spll);
3f4cd19f
DL
12856 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
12857 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
12858 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
c0d43d62 12859
42571aef
VS
12860 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
12861 PIPE_CONF_CHECK_I(pipe_bpp);
12862
2d112de7 12863 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
a9a7e98a 12864 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
5e550656 12865
66e985c0 12866#undef PIPE_CONF_CHECK_X
08a24034 12867#undef PIPE_CONF_CHECK_I
b95af8be 12868#undef PIPE_CONF_CHECK_I_ALT
1bd1bd80 12869#undef PIPE_CONF_CHECK_FLAGS
5e550656 12870#undef PIPE_CONF_CHECK_CLOCK_FUZZY
bb760063 12871#undef PIPE_CONF_QUIRK
cfb23ed6 12872#undef INTEL_ERR_OR_DBG_KMS
88adfff1 12873
cfb23ed6 12874 return ret;
0e8ffe1b
DV
12875}
12876
08db6652
DL
12877static void check_wm_state(struct drm_device *dev)
12878{
12879 struct drm_i915_private *dev_priv = dev->dev_private;
12880 struct skl_ddb_allocation hw_ddb, *sw_ddb;
12881 struct intel_crtc *intel_crtc;
12882 int plane;
12883
12884 if (INTEL_INFO(dev)->gen < 9)
12885 return;
12886
12887 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
12888 sw_ddb = &dev_priv->wm.skl_hw.ddb;
12889
12890 for_each_intel_crtc(dev, intel_crtc) {
12891 struct skl_ddb_entry *hw_entry, *sw_entry;
12892 const enum pipe pipe = intel_crtc->pipe;
12893
12894 if (!intel_crtc->active)
12895 continue;
12896
12897 /* planes */
dd740780 12898 for_each_plane(dev_priv, pipe, plane) {
08db6652
DL
12899 hw_entry = &hw_ddb.plane[pipe][plane];
12900 sw_entry = &sw_ddb->plane[pipe][plane];
12901
12902 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12903 continue;
12904
12905 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
12906 "(expected (%u,%u), found (%u,%u))\n",
12907 pipe_name(pipe), plane + 1,
12908 sw_entry->start, sw_entry->end,
12909 hw_entry->start, hw_entry->end);
12910 }
12911
12912 /* cursor */
4969d33e
MR
12913 hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR];
12914 sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR];
08db6652
DL
12915
12916 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12917 continue;
12918
12919 DRM_ERROR("mismatch in DDB state pipe %c cursor "
12920 "(expected (%u,%u), found (%u,%u))\n",
12921 pipe_name(pipe),
12922 sw_entry->start, sw_entry->end,
12923 hw_entry->start, hw_entry->end);
12924 }
12925}
12926
91d1b4bd 12927static void
35dd3c64
ML
12928check_connector_state(struct drm_device *dev,
12929 struct drm_atomic_state *old_state)
8af6cf88 12930{
35dd3c64
ML
12931 struct drm_connector_state *old_conn_state;
12932 struct drm_connector *connector;
12933 int i;
8af6cf88 12934
35dd3c64
ML
12935 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
12936 struct drm_encoder *encoder = connector->encoder;
12937 struct drm_connector_state *state = connector->state;
ad3c558f 12938
8af6cf88
DV
12939 /* This also checks the encoder/connector hw state with the
12940 * ->get_hw_state callbacks. */
35dd3c64 12941 intel_connector_check_state(to_intel_connector(connector));
8af6cf88 12942
ad3c558f 12943 I915_STATE_WARN(state->best_encoder != encoder,
35dd3c64 12944 "connector's atomic encoder doesn't match legacy encoder\n");
8af6cf88 12945 }
91d1b4bd
DV
12946}
12947
12948static void
12949check_encoder_state(struct drm_device *dev)
12950{
12951 struct intel_encoder *encoder;
12952 struct intel_connector *connector;
8af6cf88 12953
b2784e15 12954 for_each_intel_encoder(dev, encoder) {
8af6cf88 12955 bool enabled = false;
4d20cd86 12956 enum pipe pipe;
8af6cf88
DV
12957
12958 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
12959 encoder->base.base.id,
8e329a03 12960 encoder->base.name);
8af6cf88 12961
3a3371ff 12962 for_each_intel_connector(dev, connector) {
4d20cd86 12963 if (connector->base.state->best_encoder != &encoder->base)
8af6cf88
DV
12964 continue;
12965 enabled = true;
ad3c558f
ML
12966
12967 I915_STATE_WARN(connector->base.state->crtc !=
12968 encoder->base.crtc,
12969 "connector's crtc doesn't match encoder crtc\n");
8af6cf88 12970 }
0e32b39c 12971
e2c719b7 12972 I915_STATE_WARN(!!encoder->base.crtc != enabled,
8af6cf88
DV
12973 "encoder's enabled state mismatch "
12974 "(expected %i, found %i)\n",
12975 !!encoder->base.crtc, enabled);
7c60d198
ML
12976
12977 if (!encoder->base.crtc) {
4d20cd86 12978 bool active;
7c60d198 12979
4d20cd86
ML
12980 active = encoder->get_hw_state(encoder, &pipe);
12981 I915_STATE_WARN(active,
12982 "encoder detached but still enabled on pipe %c.\n",
12983 pipe_name(pipe));
7c60d198 12984 }
8af6cf88 12985 }
91d1b4bd
DV
12986}
12987
12988static void
4d20cd86 12989check_crtc_state(struct drm_device *dev, struct drm_atomic_state *old_state)
91d1b4bd 12990{
fbee40df 12991 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd 12992 struct intel_encoder *encoder;
4d20cd86
ML
12993 struct drm_crtc_state *old_crtc_state;
12994 struct drm_crtc *crtc;
12995 int i;
8af6cf88 12996
4d20cd86
ML
12997 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
12998 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12999 struct intel_crtc_state *pipe_config, *sw_config;
7b89b8de 13000 bool active;
8af6cf88 13001
bfd16b2a
ML
13002 if (!needs_modeset(crtc->state) &&
13003 !to_intel_crtc_state(crtc->state)->update_pipe)
4d20cd86 13004 continue;
045ac3b5 13005
4d20cd86
ML
13006 __drm_atomic_helper_crtc_destroy_state(crtc, old_crtc_state);
13007 pipe_config = to_intel_crtc_state(old_crtc_state);
13008 memset(pipe_config, 0, sizeof(*pipe_config));
13009 pipe_config->base.crtc = crtc;
13010 pipe_config->base.state = old_state;
8af6cf88 13011
4d20cd86
ML
13012 DRM_DEBUG_KMS("[CRTC:%d]\n",
13013 crtc->base.id);
8af6cf88 13014
4d20cd86
ML
13015 active = dev_priv->display.get_pipe_config(intel_crtc,
13016 pipe_config);
d62cf62a 13017
b6b5d049 13018 /* hw state is inconsistent with the pipe quirk */
4d20cd86
ML
13019 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
13020 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
13021 active = crtc->state->active;
6c49f241 13022
4d20cd86 13023 I915_STATE_WARN(crtc->state->active != active,
0e8ffe1b 13024 "crtc active state doesn't match with hw state "
4d20cd86 13025 "(expected %i, found %i)\n", crtc->state->active, active);
0e8ffe1b 13026
4d20cd86 13027 I915_STATE_WARN(intel_crtc->active != crtc->state->active,
53d9f4e9 13028 "transitional active state does not match atomic hw state "
4d20cd86
ML
13029 "(expected %i, found %i)\n", crtc->state->active, intel_crtc->active);
13030
13031 for_each_encoder_on_crtc(dev, crtc, encoder) {
13032 enum pipe pipe;
13033
13034 active = encoder->get_hw_state(encoder, &pipe);
13035 I915_STATE_WARN(active != crtc->state->active,
13036 "[ENCODER:%i] active %i with crtc active %i\n",
13037 encoder->base.base.id, active, crtc->state->active);
13038
13039 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
13040 "Encoder connected to wrong pipe %c\n",
13041 pipe_name(pipe));
13042
13043 if (active)
13044 encoder->get_config(encoder, pipe_config);
13045 }
53d9f4e9 13046
4d20cd86 13047 if (!crtc->state->active)
cfb23ed6
ML
13048 continue;
13049
4d20cd86
ML
13050 sw_config = to_intel_crtc_state(crtc->state);
13051 if (!intel_pipe_config_compare(dev, sw_config,
13052 pipe_config, false)) {
e2c719b7 13053 I915_STATE_WARN(1, "pipe state doesn't match!\n");
4d20cd86 13054 intel_dump_pipe_config(intel_crtc, pipe_config,
c0b03411 13055 "[hw state]");
4d20cd86 13056 intel_dump_pipe_config(intel_crtc, sw_config,
c0b03411
DV
13057 "[sw state]");
13058 }
8af6cf88
DV
13059 }
13060}
13061
91d1b4bd
DV
13062static void
13063check_shared_dpll_state(struct drm_device *dev)
13064{
fbee40df 13065 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
13066 struct intel_crtc *crtc;
13067 struct intel_dpll_hw_state dpll_hw_state;
13068 int i;
5358901f
DV
13069
13070 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13071 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13072 int enabled_crtcs = 0, active_crtcs = 0;
13073 bool active;
13074
13075 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
13076
13077 DRM_DEBUG_KMS("%s\n", pll->name);
13078
13079 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
13080
e2c719b7 13081 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
5358901f 13082 "more active pll users than references: %i vs %i\n",
3e369b76 13083 pll->active, hweight32(pll->config.crtc_mask));
e2c719b7 13084 I915_STATE_WARN(pll->active && !pll->on,
5358901f 13085 "pll in active use but not on in sw tracking\n");
e2c719b7 13086 I915_STATE_WARN(pll->on && !pll->active,
35c95375 13087 "pll in on but not on in use in sw tracking\n");
e2c719b7 13088 I915_STATE_WARN(pll->on != active,
5358901f
DV
13089 "pll on state mismatch (expected %i, found %i)\n",
13090 pll->on, active);
13091
d3fcc808 13092 for_each_intel_crtc(dev, crtc) {
83d65738 13093 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
5358901f
DV
13094 enabled_crtcs++;
13095 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
13096 active_crtcs++;
13097 }
e2c719b7 13098 I915_STATE_WARN(pll->active != active_crtcs,
5358901f
DV
13099 "pll active crtcs mismatch (expected %i, found %i)\n",
13100 pll->active, active_crtcs);
e2c719b7 13101 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
5358901f 13102 "pll enabled crtcs mismatch (expected %i, found %i)\n",
3e369b76 13103 hweight32(pll->config.crtc_mask), enabled_crtcs);
66e985c0 13104
e2c719b7 13105 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
66e985c0
DV
13106 sizeof(dpll_hw_state)),
13107 "pll hw state mismatch\n");
5358901f 13108 }
8af6cf88
DV
13109}
13110
ee165b1a
ML
13111static void
13112intel_modeset_check_state(struct drm_device *dev,
13113 struct drm_atomic_state *old_state)
91d1b4bd 13114{
08db6652 13115 check_wm_state(dev);
35dd3c64 13116 check_connector_state(dev, old_state);
91d1b4bd 13117 check_encoder_state(dev);
4d20cd86 13118 check_crtc_state(dev, old_state);
91d1b4bd
DV
13119 check_shared_dpll_state(dev);
13120}
13121
5cec258b 13122void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
18442d08
VS
13123 int dotclock)
13124{
13125 /*
13126 * FDI already provided one idea for the dotclock.
13127 * Yell if the encoder disagrees.
13128 */
2d112de7 13129 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
18442d08 13130 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
2d112de7 13131 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
18442d08
VS
13132}
13133
80715b2f
VS
13134static void update_scanline_offset(struct intel_crtc *crtc)
13135{
13136 struct drm_device *dev = crtc->base.dev;
13137
13138 /*
13139 * The scanline counter increments at the leading edge of hsync.
13140 *
13141 * On most platforms it starts counting from vtotal-1 on the
13142 * first active line. That means the scanline counter value is
13143 * always one less than what we would expect. Ie. just after
13144 * start of vblank, which also occurs at start of hsync (on the
13145 * last active line), the scanline counter will read vblank_start-1.
13146 *
13147 * On gen2 the scanline counter starts counting from 1 instead
13148 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
13149 * to keep the value positive), instead of adding one.
13150 *
13151 * On HSW+ the behaviour of the scanline counter depends on the output
13152 * type. For DP ports it behaves like most other platforms, but on HDMI
13153 * there's an extra 1 line difference. So we need to add two instead of
13154 * one to the value.
13155 */
13156 if (IS_GEN2(dev)) {
124abe07 13157 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
80715b2f
VS
13158 int vtotal;
13159
124abe07
VS
13160 vtotal = adjusted_mode->crtc_vtotal;
13161 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
80715b2f
VS
13162 vtotal /= 2;
13163
13164 crtc->scanline_offset = vtotal - 1;
13165 } else if (HAS_DDI(dev) &&
409ee761 13166 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
80715b2f
VS
13167 crtc->scanline_offset = 2;
13168 } else
13169 crtc->scanline_offset = 1;
13170}
13171
ad421372 13172static void intel_modeset_clear_plls(struct drm_atomic_state *state)
ed6739ef 13173{
225da59b 13174 struct drm_device *dev = state->dev;
ed6739ef 13175 struct drm_i915_private *dev_priv = to_i915(dev);
ad421372 13176 struct intel_shared_dpll_config *shared_dpll = NULL;
ed6739ef 13177 struct intel_crtc *intel_crtc;
0a9ab303
ACO
13178 struct intel_crtc_state *intel_crtc_state;
13179 struct drm_crtc *crtc;
13180 struct drm_crtc_state *crtc_state;
0a9ab303 13181 int i;
ed6739ef
ACO
13182
13183 if (!dev_priv->display.crtc_compute_clock)
ad421372 13184 return;
ed6739ef 13185
0a9ab303 13186 for_each_crtc_in_state(state, crtc, crtc_state, i) {
ad421372
ML
13187 int dpll;
13188
0a9ab303 13189 intel_crtc = to_intel_crtc(crtc);
4978cc93 13190 intel_crtc_state = to_intel_crtc_state(crtc_state);
ad421372 13191 dpll = intel_crtc_state->shared_dpll;
0a9ab303 13192
ad421372 13193 if (!needs_modeset(crtc_state) || dpll == DPLL_ID_PRIVATE)
225da59b
ACO
13194 continue;
13195
ad421372 13196 intel_crtc_state->shared_dpll = DPLL_ID_PRIVATE;
0a9ab303 13197
ad421372
ML
13198 if (!shared_dpll)
13199 shared_dpll = intel_atomic_get_shared_dpll_state(state);
ed6739ef 13200
ad421372
ML
13201 shared_dpll[dpll].crtc_mask &= ~(1 << intel_crtc->pipe);
13202 }
ed6739ef
ACO
13203}
13204
99d736a2
ML
13205/*
13206 * This implements the workaround described in the "notes" section of the mode
13207 * set sequence documentation. When going from no pipes or single pipe to
13208 * multiple pipes, and planes are enabled after the pipe, we need to wait at
13209 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
13210 */
13211static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
13212{
13213 struct drm_crtc_state *crtc_state;
13214 struct intel_crtc *intel_crtc;
13215 struct drm_crtc *crtc;
13216 struct intel_crtc_state *first_crtc_state = NULL;
13217 struct intel_crtc_state *other_crtc_state = NULL;
13218 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
13219 int i;
13220
13221 /* look at all crtc's that are going to be enabled in during modeset */
13222 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13223 intel_crtc = to_intel_crtc(crtc);
13224
13225 if (!crtc_state->active || !needs_modeset(crtc_state))
13226 continue;
13227
13228 if (first_crtc_state) {
13229 other_crtc_state = to_intel_crtc_state(crtc_state);
13230 break;
13231 } else {
13232 first_crtc_state = to_intel_crtc_state(crtc_state);
13233 first_pipe = intel_crtc->pipe;
13234 }
13235 }
13236
13237 /* No workaround needed? */
13238 if (!first_crtc_state)
13239 return 0;
13240
13241 /* w/a possibly needed, check how many crtc's are already enabled. */
13242 for_each_intel_crtc(state->dev, intel_crtc) {
13243 struct intel_crtc_state *pipe_config;
13244
13245 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
13246 if (IS_ERR(pipe_config))
13247 return PTR_ERR(pipe_config);
13248
13249 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
13250
13251 if (!pipe_config->base.active ||
13252 needs_modeset(&pipe_config->base))
13253 continue;
13254
13255 /* 2 or more enabled crtcs means no need for w/a */
13256 if (enabled_pipe != INVALID_PIPE)
13257 return 0;
13258
13259 enabled_pipe = intel_crtc->pipe;
13260 }
13261
13262 if (enabled_pipe != INVALID_PIPE)
13263 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
13264 else if (other_crtc_state)
13265 other_crtc_state->hsw_workaround_pipe = first_pipe;
13266
13267 return 0;
13268}
13269
27c329ed
ML
13270static int intel_modeset_all_pipes(struct drm_atomic_state *state)
13271{
13272 struct drm_crtc *crtc;
13273 struct drm_crtc_state *crtc_state;
13274 int ret = 0;
13275
13276 /* add all active pipes to the state */
13277 for_each_crtc(state->dev, crtc) {
13278 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13279 if (IS_ERR(crtc_state))
13280 return PTR_ERR(crtc_state);
13281
13282 if (!crtc_state->active || needs_modeset(crtc_state))
13283 continue;
13284
13285 crtc_state->mode_changed = true;
13286
13287 ret = drm_atomic_add_affected_connectors(state, crtc);
13288 if (ret)
13289 break;
13290
13291 ret = drm_atomic_add_affected_planes(state, crtc);
13292 if (ret)
13293 break;
13294 }
13295
13296 return ret;
13297}
13298
c347a676 13299static int intel_modeset_checks(struct drm_atomic_state *state)
054518dd 13300{
565602d7
ML
13301 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
13302 struct drm_i915_private *dev_priv = state->dev->dev_private;
13303 struct drm_crtc *crtc;
13304 struct drm_crtc_state *crtc_state;
13305 int ret = 0, i;
054518dd 13306
b359283a
ML
13307 if (!check_digital_port_conflicts(state)) {
13308 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
13309 return -EINVAL;
13310 }
13311
565602d7
ML
13312 intel_state->modeset = true;
13313 intel_state->active_crtcs = dev_priv->active_crtcs;
13314
13315 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13316 if (crtc_state->active)
13317 intel_state->active_crtcs |= 1 << i;
13318 else
13319 intel_state->active_crtcs &= ~(1 << i);
13320 }
13321
054518dd
ACO
13322 /*
13323 * See if the config requires any additional preparation, e.g.
13324 * to adjust global state with pipes off. We need to do this
13325 * here so we can get the modeset_pipe updated config for the new
13326 * mode set on this crtc. For other crtcs we need to use the
13327 * adjusted_mode bits in the crtc directly.
13328 */
27c329ed 13329 if (dev_priv->display.modeset_calc_cdclk) {
27c329ed
ML
13330 ret = dev_priv->display.modeset_calc_cdclk(state);
13331
1a617b77 13332 if (!ret && intel_state->dev_cdclk != dev_priv->cdclk_freq)
27c329ed
ML
13333 ret = intel_modeset_all_pipes(state);
13334
13335 if (ret < 0)
054518dd 13336 return ret;
27c329ed 13337 } else
1a617b77 13338 to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq;
054518dd 13339
ad421372 13340 intel_modeset_clear_plls(state);
054518dd 13341
565602d7 13342 if (IS_HASWELL(dev_priv))
ad421372 13343 return haswell_mode_set_planes_workaround(state);
99d736a2 13344
ad421372 13345 return 0;
c347a676
ACO
13346}
13347
aa363136
MR
13348/*
13349 * Handle calculation of various watermark data at the end of the atomic check
13350 * phase. The code here should be run after the per-crtc and per-plane 'check'
13351 * handlers to ensure that all derived state has been updated.
13352 */
13353static void calc_watermark_data(struct drm_atomic_state *state)
13354{
13355 struct drm_device *dev = state->dev;
13356 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
13357 struct drm_crtc *crtc;
13358 struct drm_crtc_state *cstate;
13359 struct drm_plane *plane;
13360 struct drm_plane_state *pstate;
13361
13362 /*
13363 * Calculate watermark configuration details now that derived
13364 * plane/crtc state is all properly updated.
13365 */
13366 drm_for_each_crtc(crtc, dev) {
13367 cstate = drm_atomic_get_existing_crtc_state(state, crtc) ?:
13368 crtc->state;
13369
13370 if (cstate->active)
13371 intel_state->wm_config.num_pipes_active++;
13372 }
13373 drm_for_each_legacy_plane(plane, dev) {
13374 pstate = drm_atomic_get_existing_plane_state(state, plane) ?:
13375 plane->state;
13376
13377 if (!to_intel_plane_state(pstate)->visible)
13378 continue;
13379
13380 intel_state->wm_config.sprites_enabled = true;
13381 if (pstate->crtc_w != pstate->src_w >> 16 ||
13382 pstate->crtc_h != pstate->src_h >> 16)
13383 intel_state->wm_config.sprites_scaled = true;
13384 }
13385}
13386
74c090b1
ML
13387/**
13388 * intel_atomic_check - validate state object
13389 * @dev: drm device
13390 * @state: state to validate
13391 */
13392static int intel_atomic_check(struct drm_device *dev,
13393 struct drm_atomic_state *state)
c347a676 13394{
aa363136 13395 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
c347a676
ACO
13396 struct drm_crtc *crtc;
13397 struct drm_crtc_state *crtc_state;
13398 int ret, i;
61333b60 13399 bool any_ms = false;
c347a676 13400
74c090b1 13401 ret = drm_atomic_helper_check_modeset(dev, state);
054518dd
ACO
13402 if (ret)
13403 return ret;
13404
c347a676 13405 for_each_crtc_in_state(state, crtc, crtc_state, i) {
cfb23ed6
ML
13406 struct intel_crtc_state *pipe_config =
13407 to_intel_crtc_state(crtc_state);
1ed51de9 13408
ba8af3e5
ML
13409 memset(&to_intel_crtc(crtc)->atomic, 0,
13410 sizeof(struct intel_crtc_atomic_commit));
13411
1ed51de9
DV
13412 /* Catch I915_MODE_FLAG_INHERITED */
13413 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
13414 crtc_state->mode_changed = true;
cfb23ed6 13415
61333b60
ML
13416 if (!crtc_state->enable) {
13417 if (needs_modeset(crtc_state))
13418 any_ms = true;
c347a676 13419 continue;
61333b60 13420 }
c347a676 13421
26495481 13422 if (!needs_modeset(crtc_state))
cfb23ed6
ML
13423 continue;
13424
26495481
DV
13425 /* FIXME: For only active_changed we shouldn't need to do any
13426 * state recomputation at all. */
13427
1ed51de9
DV
13428 ret = drm_atomic_add_affected_connectors(state, crtc);
13429 if (ret)
13430 return ret;
b359283a 13431
cfb23ed6 13432 ret = intel_modeset_pipe_config(crtc, pipe_config);
c347a676
ACO
13433 if (ret)
13434 return ret;
13435
73831236
JN
13436 if (i915.fastboot &&
13437 intel_pipe_config_compare(state->dev,
cfb23ed6 13438 to_intel_crtc_state(crtc->state),
1ed51de9 13439 pipe_config, true)) {
26495481 13440 crtc_state->mode_changed = false;
bfd16b2a 13441 to_intel_crtc_state(crtc_state)->update_pipe = true;
26495481
DV
13442 }
13443
13444 if (needs_modeset(crtc_state)) {
13445 any_ms = true;
cfb23ed6
ML
13446
13447 ret = drm_atomic_add_affected_planes(state, crtc);
13448 if (ret)
13449 return ret;
13450 }
61333b60 13451
26495481
DV
13452 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
13453 needs_modeset(crtc_state) ?
13454 "[modeset]" : "[fastset]");
c347a676
ACO
13455 }
13456
61333b60
ML
13457 if (any_ms) {
13458 ret = intel_modeset_checks(state);
13459
13460 if (ret)
13461 return ret;
27c329ed 13462 } else
aa363136 13463 intel_state->cdclk = to_i915(state->dev)->cdclk_freq;
76305b1a 13464
aa363136
MR
13465 ret = drm_atomic_helper_check_planes(state->dev, state);
13466 if (ret)
13467 return ret;
13468
13469 calc_watermark_data(state);
13470
13471 return 0;
054518dd
ACO
13472}
13473
5008e874
ML
13474static int intel_atomic_prepare_commit(struct drm_device *dev,
13475 struct drm_atomic_state *state,
13476 bool async)
13477{
7580d774
ML
13478 struct drm_i915_private *dev_priv = dev->dev_private;
13479 struct drm_plane_state *plane_state;
5008e874 13480 struct drm_crtc_state *crtc_state;
7580d774 13481 struct drm_plane *plane;
5008e874
ML
13482 struct drm_crtc *crtc;
13483 int i, ret;
13484
13485 if (async) {
13486 DRM_DEBUG_KMS("i915 does not yet support async commit\n");
13487 return -EINVAL;
13488 }
13489
13490 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13491 ret = intel_crtc_wait_for_pending_flips(crtc);
13492 if (ret)
13493 return ret;
7580d774
ML
13494
13495 if (atomic_read(&to_intel_crtc(crtc)->unpin_work_count) >= 2)
13496 flush_workqueue(dev_priv->wq);
5008e874
ML
13497 }
13498
f935675f
ML
13499 ret = mutex_lock_interruptible(&dev->struct_mutex);
13500 if (ret)
13501 return ret;
13502
5008e874 13503 ret = drm_atomic_helper_prepare_planes(dev, state);
7580d774
ML
13504 if (!ret && !async && !i915_reset_in_progress(&dev_priv->gpu_error)) {
13505 u32 reset_counter;
13506
13507 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
13508 mutex_unlock(&dev->struct_mutex);
13509
13510 for_each_plane_in_state(state, plane, plane_state, i) {
13511 struct intel_plane_state *intel_plane_state =
13512 to_intel_plane_state(plane_state);
13513
13514 if (!intel_plane_state->wait_req)
13515 continue;
13516
13517 ret = __i915_wait_request(intel_plane_state->wait_req,
13518 reset_counter, true,
13519 NULL, NULL);
13520
13521 /* Swallow -EIO errors to allow updates during hw lockup. */
13522 if (ret == -EIO)
13523 ret = 0;
13524
13525 if (ret)
13526 break;
13527 }
13528
13529 if (!ret)
13530 return 0;
13531
13532 mutex_lock(&dev->struct_mutex);
13533 drm_atomic_helper_cleanup_planes(dev, state);
13534 }
5008e874 13535
f935675f 13536 mutex_unlock(&dev->struct_mutex);
5008e874
ML
13537 return ret;
13538}
13539
74c090b1
ML
13540/**
13541 * intel_atomic_commit - commit validated state object
13542 * @dev: DRM device
13543 * @state: the top-level driver state object
13544 * @async: asynchronous commit
13545 *
13546 * This function commits a top-level state object that has been validated
13547 * with drm_atomic_helper_check().
13548 *
13549 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
13550 * we can only handle plane-related operations and do not yet support
13551 * asynchronous commit.
13552 *
13553 * RETURNS
13554 * Zero for success or -errno.
13555 */
13556static int intel_atomic_commit(struct drm_device *dev,
13557 struct drm_atomic_state *state,
13558 bool async)
a6778b3c 13559{
565602d7 13560 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fbee40df 13561 struct drm_i915_private *dev_priv = dev->dev_private;
0a9ab303 13562 struct drm_crtc_state *crtc_state;
7580d774 13563 struct drm_crtc *crtc;
396e33ae 13564 struct intel_crtc_state *intel_cstate;
565602d7
ML
13565 int ret = 0, i;
13566 bool hw_check = intel_state->modeset;
a6778b3c 13567
5008e874 13568 ret = intel_atomic_prepare_commit(dev, state, async);
7580d774
ML
13569 if (ret) {
13570 DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret);
d4afb8cc 13571 return ret;
7580d774 13572 }
d4afb8cc 13573
1c5e19f8 13574 drm_atomic_helper_swap_state(dev, state);
aa363136 13575 dev_priv->wm.config = to_intel_atomic_state(state)->wm_config;
1c5e19f8 13576
565602d7
ML
13577 if (intel_state->modeset) {
13578 memcpy(dev_priv->min_pixclk, intel_state->min_pixclk,
13579 sizeof(intel_state->min_pixclk));
13580 dev_priv->active_crtcs = intel_state->active_crtcs;
1a617b77 13581 dev_priv->atomic_cdclk_freq = intel_state->cdclk;
565602d7
ML
13582 }
13583
0a9ab303 13584 for_each_crtc_in_state(state, crtc, crtc_state, i) {
a539205a
ML
13585 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13586
61333b60
ML
13587 if (!needs_modeset(crtc->state))
13588 continue;
13589
a539205a 13590 intel_pre_plane_update(intel_crtc);
460da916 13591
a539205a
ML
13592 if (crtc_state->active) {
13593 intel_crtc_disable_planes(crtc, crtc_state->plane_mask);
13594 dev_priv->display.crtc_disable(crtc);
eddfcbcd
ML
13595 intel_crtc->active = false;
13596 intel_disable_shared_dpll(intel_crtc);
9bbc8258
VS
13597
13598 /*
13599 * Underruns don't always raise
13600 * interrupts, so check manually.
13601 */
13602 intel_check_cpu_fifo_underruns(dev_priv);
13603 intel_check_pch_fifo_underruns(dev_priv);
b9001114
ML
13604
13605 if (!crtc->state->active)
13606 intel_update_watermarks(crtc);
a539205a 13607 }
b8cecdf5 13608 }
7758a113 13609
ea9d758d
DV
13610 /* Only after disabling all output pipelines that will be changed can we
13611 * update the the output configuration. */
4740b0f2 13612 intel_modeset_update_crtc_state(state);
f6e5b160 13613
565602d7 13614 if (intel_state->modeset) {
4740b0f2
ML
13615 intel_shared_dpll_commit(state);
13616
13617 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
61333b60 13618 modeset_update_crtc_power_domains(state);
4740b0f2 13619 }
47fab737 13620
a6778b3c 13621 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
0a9ab303 13622 for_each_crtc_in_state(state, crtc, crtc_state, i) {
f6ac4b2a
ML
13623 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13624 bool modeset = needs_modeset(crtc->state);
bfd16b2a
ML
13625 bool update_pipe = !modeset &&
13626 to_intel_crtc_state(crtc->state)->update_pipe;
13627 unsigned long put_domains = 0;
f6ac4b2a 13628
9f836f90
PJ
13629 if (modeset)
13630 intel_display_power_get(dev_priv, POWER_DOMAIN_MODESET);
13631
f6ac4b2a 13632 if (modeset && crtc->state->active) {
a539205a
ML
13633 update_scanline_offset(to_intel_crtc(crtc));
13634 dev_priv->display.crtc_enable(crtc);
13635 }
80715b2f 13636
bfd16b2a
ML
13637 if (update_pipe) {
13638 put_domains = modeset_get_crtc_power_domains(crtc);
13639
13640 /* make sure intel_modeset_check_state runs */
565602d7 13641 hw_check = true;
bfd16b2a
ML
13642 }
13643
f6ac4b2a
ML
13644 if (!modeset)
13645 intel_pre_plane_update(intel_crtc);
13646
6173ee28
ML
13647 if (crtc->state->active &&
13648 (crtc->state->planes_changed || update_pipe))
62852622 13649 drm_atomic_helper_commit_planes_on_crtc(crtc_state);
bfd16b2a
ML
13650
13651 if (put_domains)
13652 modeset_put_power_domains(dev_priv, put_domains);
13653
f6ac4b2a 13654 intel_post_plane_update(intel_crtc);
9f836f90
PJ
13655
13656 if (modeset)
13657 intel_display_power_put(dev_priv, POWER_DOMAIN_MODESET);
80715b2f 13658 }
a6778b3c 13659
a6778b3c 13660 /* FIXME: add subpixel order */
83a57153 13661
74c090b1 13662 drm_atomic_helper_wait_for_vblanks(dev, state);
f935675f 13663
396e33ae
MR
13664 /*
13665 * Now that the vblank has passed, we can go ahead and program the
13666 * optimal watermarks on platforms that need two-step watermark
13667 * programming.
13668 *
13669 * TODO: Move this (and other cleanup) to an async worker eventually.
13670 */
13671 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13672 intel_cstate = to_intel_crtc_state(crtc->state);
13673
13674 if (dev_priv->display.optimize_watermarks)
13675 dev_priv->display.optimize_watermarks(intel_cstate);
13676 }
13677
f935675f 13678 mutex_lock(&dev->struct_mutex);
d4afb8cc 13679 drm_atomic_helper_cleanup_planes(dev, state);
f935675f 13680 mutex_unlock(&dev->struct_mutex);
2bfb4627 13681
565602d7 13682 if (hw_check)
ee165b1a
ML
13683 intel_modeset_check_state(dev, state);
13684
13685 drm_atomic_state_free(state);
f30da187 13686
74c090b1 13687 return 0;
7f27126e
JB
13688}
13689
c0c36b94
CW
13690void intel_crtc_restore_mode(struct drm_crtc *crtc)
13691{
83a57153
ACO
13692 struct drm_device *dev = crtc->dev;
13693 struct drm_atomic_state *state;
e694eb02 13694 struct drm_crtc_state *crtc_state;
2bfb4627 13695 int ret;
83a57153
ACO
13696
13697 state = drm_atomic_state_alloc(dev);
13698 if (!state) {
e694eb02 13699 DRM_DEBUG_KMS("[CRTC:%d] crtc restore failed, out of memory",
83a57153
ACO
13700 crtc->base.id);
13701 return;
13702 }
13703
e694eb02 13704 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
83a57153 13705
e694eb02
ML
13706retry:
13707 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13708 ret = PTR_ERR_OR_ZERO(crtc_state);
13709 if (!ret) {
13710 if (!crtc_state->active)
13711 goto out;
83a57153 13712
e694eb02 13713 crtc_state->mode_changed = true;
74c090b1 13714 ret = drm_atomic_commit(state);
83a57153
ACO
13715 }
13716
e694eb02
ML
13717 if (ret == -EDEADLK) {
13718 drm_atomic_state_clear(state);
13719 drm_modeset_backoff(state->acquire_ctx);
13720 goto retry;
4ed9fb37 13721 }
4be07317 13722
2bfb4627 13723 if (ret)
e694eb02 13724out:
2bfb4627 13725 drm_atomic_state_free(state);
c0c36b94
CW
13726}
13727
25c5b266
DV
13728#undef for_each_intel_crtc_masked
13729
f6e5b160 13730static const struct drm_crtc_funcs intel_crtc_funcs = {
f6e5b160 13731 .gamma_set = intel_crtc_gamma_set,
74c090b1 13732 .set_config = drm_atomic_helper_set_config,
f6e5b160
CW
13733 .destroy = intel_crtc_destroy,
13734 .page_flip = intel_crtc_page_flip,
1356837e
MR
13735 .atomic_duplicate_state = intel_crtc_duplicate_state,
13736 .atomic_destroy_state = intel_crtc_destroy_state,
f6e5b160
CW
13737};
13738
5358901f
DV
13739static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
13740 struct intel_shared_dpll *pll,
13741 struct intel_dpll_hw_state *hw_state)
ee7b9f93 13742{
5358901f 13743 uint32_t val;
ee7b9f93 13744
f458ebbc 13745 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
bd2bb1b9
PZ
13746 return false;
13747
5358901f 13748 val = I915_READ(PCH_DPLL(pll->id));
66e985c0
DV
13749 hw_state->dpll = val;
13750 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
13751 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
5358901f
DV
13752
13753 return val & DPLL_VCO_ENABLE;
13754}
13755
15bdd4cf
DV
13756static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
13757 struct intel_shared_dpll *pll)
13758{
3e369b76
ACO
13759 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
13760 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
15bdd4cf
DV
13761}
13762
e7b903d2
DV
13763static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
13764 struct intel_shared_dpll *pll)
13765{
e7b903d2 13766 /* PCH refclock must be enabled first */
89eff4be 13767 ibx_assert_pch_refclk_enabled(dev_priv);
e7b903d2 13768
3e369b76 13769 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
15bdd4cf
DV
13770
13771 /* Wait for the clocks to stabilize. */
13772 POSTING_READ(PCH_DPLL(pll->id));
13773 udelay(150);
13774
13775 /* The pixel multiplier can only be updated once the
13776 * DPLL is enabled and the clocks are stable.
13777 *
13778 * So write it again.
13779 */
3e369b76 13780 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
15bdd4cf 13781 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
13782 udelay(200);
13783}
13784
13785static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
13786 struct intel_shared_dpll *pll)
13787{
13788 struct drm_device *dev = dev_priv->dev;
13789 struct intel_crtc *crtc;
e7b903d2
DV
13790
13791 /* Make sure no transcoder isn't still depending on us. */
d3fcc808 13792 for_each_intel_crtc(dev, crtc) {
e7b903d2
DV
13793 if (intel_crtc_to_shared_dpll(crtc) == pll)
13794 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
ee7b9f93
JB
13795 }
13796
15bdd4cf
DV
13797 I915_WRITE(PCH_DPLL(pll->id), 0);
13798 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
13799 udelay(200);
13800}
13801
46edb027
DV
13802static char *ibx_pch_dpll_names[] = {
13803 "PCH DPLL A",
13804 "PCH DPLL B",
13805};
13806
7c74ade1 13807static void ibx_pch_dpll_init(struct drm_device *dev)
ee7b9f93 13808{
e7b903d2 13809 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93
JB
13810 int i;
13811
7c74ade1 13812 dev_priv->num_shared_dpll = 2;
ee7b9f93 13813
e72f9fbf 13814 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
46edb027
DV
13815 dev_priv->shared_dplls[i].id = i;
13816 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
15bdd4cf 13817 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
e7b903d2
DV
13818 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
13819 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
5358901f
DV
13820 dev_priv->shared_dplls[i].get_hw_state =
13821 ibx_pch_dpll_get_hw_state;
ee7b9f93
JB
13822 }
13823}
13824
7c74ade1
DV
13825static void intel_shared_dpll_init(struct drm_device *dev)
13826{
e7b903d2 13827 struct drm_i915_private *dev_priv = dev->dev_private;
7c74ade1 13828
9cd86933
DV
13829 if (HAS_DDI(dev))
13830 intel_ddi_pll_init(dev);
13831 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7c74ade1
DV
13832 ibx_pch_dpll_init(dev);
13833 else
13834 dev_priv->num_shared_dpll = 0;
13835
13836 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
7c74ade1
DV
13837}
13838
6beb8c23
MR
13839/**
13840 * intel_prepare_plane_fb - Prepare fb for usage on plane
13841 * @plane: drm plane to prepare for
13842 * @fb: framebuffer to prepare for presentation
13843 *
13844 * Prepares a framebuffer for usage on a display plane. Generally this
13845 * involves pinning the underlying object and updating the frontbuffer tracking
13846 * bits. Some older platforms need special physical address handling for
13847 * cursor planes.
13848 *
f935675f
ML
13849 * Must be called with struct_mutex held.
13850 *
6beb8c23
MR
13851 * Returns 0 on success, negative error code on failure.
13852 */
13853int
13854intel_prepare_plane_fb(struct drm_plane *plane,
d136dfee 13855 const struct drm_plane_state *new_state)
465c120c
MR
13856{
13857 struct drm_device *dev = plane->dev;
844f9111 13858 struct drm_framebuffer *fb = new_state->fb;
6beb8c23 13859 struct intel_plane *intel_plane = to_intel_plane(plane);
6beb8c23 13860 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
1ee49399 13861 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb);
6beb8c23 13862 int ret = 0;
465c120c 13863
1ee49399 13864 if (!obj && !old_obj)
465c120c
MR
13865 return 0;
13866
5008e874
ML
13867 if (old_obj) {
13868 struct drm_crtc_state *crtc_state =
13869 drm_atomic_get_existing_crtc_state(new_state->state, plane->state->crtc);
13870
13871 /* Big Hammer, we also need to ensure that any pending
13872 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
13873 * current scanout is retired before unpinning the old
13874 * framebuffer. Note that we rely on userspace rendering
13875 * into the buffer attached to the pipe they are waiting
13876 * on. If not, userspace generates a GPU hang with IPEHR
13877 * point to the MI_WAIT_FOR_EVENT.
13878 *
13879 * This should only fail upon a hung GPU, in which case we
13880 * can safely continue.
13881 */
13882 if (needs_modeset(crtc_state))
13883 ret = i915_gem_object_wait_rendering(old_obj, true);
13884
13885 /* Swallow -EIO errors to allow updates during hw lockup. */
13886 if (ret && ret != -EIO)
f935675f 13887 return ret;
5008e874
ML
13888 }
13889
3c28ff22
AG
13890 /* For framebuffer backed by dmabuf, wait for fence */
13891 if (obj && obj->base.dma_buf) {
13892 ret = reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv,
13893 false, true,
13894 MAX_SCHEDULE_TIMEOUT);
13895 if (ret == -ERESTARTSYS)
13896 return ret;
13897
13898 WARN_ON(ret < 0);
13899 }
13900
1ee49399
ML
13901 if (!obj) {
13902 ret = 0;
13903 } else if (plane->type == DRM_PLANE_TYPE_CURSOR &&
6beb8c23
MR
13904 INTEL_INFO(dev)->cursor_needs_physical) {
13905 int align = IS_I830(dev) ? 16 * 1024 : 256;
13906 ret = i915_gem_object_attach_phys(obj, align);
13907 if (ret)
13908 DRM_DEBUG_KMS("failed to attach phys object\n");
13909 } else {
7580d774 13910 ret = intel_pin_and_fence_fb_obj(plane, fb, new_state);
6beb8c23 13911 }
465c120c 13912
7580d774
ML
13913 if (ret == 0) {
13914 if (obj) {
13915 struct intel_plane_state *plane_state =
13916 to_intel_plane_state(new_state);
13917
13918 i915_gem_request_assign(&plane_state->wait_req,
13919 obj->last_write_req);
13920 }
13921
a9ff8714 13922 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
7580d774 13923 }
fdd508a6 13924
6beb8c23
MR
13925 return ret;
13926}
13927
38f3ce3a
MR
13928/**
13929 * intel_cleanup_plane_fb - Cleans up an fb after plane use
13930 * @plane: drm plane to clean up for
13931 * @fb: old framebuffer that was on plane
13932 *
13933 * Cleans up a framebuffer that has just been removed from a plane.
f935675f
ML
13934 *
13935 * Must be called with struct_mutex held.
38f3ce3a
MR
13936 */
13937void
13938intel_cleanup_plane_fb(struct drm_plane *plane,
d136dfee 13939 const struct drm_plane_state *old_state)
38f3ce3a
MR
13940{
13941 struct drm_device *dev = plane->dev;
1ee49399 13942 struct intel_plane *intel_plane = to_intel_plane(plane);
7580d774 13943 struct intel_plane_state *old_intel_state;
1ee49399
ML
13944 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb);
13945 struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb);
38f3ce3a 13946
7580d774
ML
13947 old_intel_state = to_intel_plane_state(old_state);
13948
1ee49399 13949 if (!obj && !old_obj)
38f3ce3a
MR
13950 return;
13951
1ee49399
ML
13952 if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR ||
13953 !INTEL_INFO(dev)->cursor_needs_physical))
844f9111 13954 intel_unpin_fb_obj(old_state->fb, old_state);
1ee49399
ML
13955
13956 /* prepare_fb aborted? */
13957 if ((old_obj && (old_obj->frontbuffer_bits & intel_plane->frontbuffer_bit)) ||
13958 (obj && !(obj->frontbuffer_bits & intel_plane->frontbuffer_bit)))
13959 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
7580d774
ML
13960
13961 i915_gem_request_assign(&old_intel_state->wait_req, NULL);
13962
465c120c
MR
13963}
13964
6156a456
CK
13965int
13966skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
13967{
13968 int max_scale;
13969 struct drm_device *dev;
13970 struct drm_i915_private *dev_priv;
13971 int crtc_clock, cdclk;
13972
bf8a0af0 13973 if (!intel_crtc || !crtc_state->base.enable)
6156a456
CK
13974 return DRM_PLANE_HELPER_NO_SCALING;
13975
13976 dev = intel_crtc->base.dev;
13977 dev_priv = dev->dev_private;
13978 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
27c329ed 13979 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
6156a456 13980
54bf1ce6 13981 if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock))
6156a456
CK
13982 return DRM_PLANE_HELPER_NO_SCALING;
13983
13984 /*
13985 * skl max scale is lower of:
13986 * close to 3 but not 3, -1 is for that purpose
13987 * or
13988 * cdclk/crtc_clock
13989 */
13990 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
13991
13992 return max_scale;
13993}
13994
465c120c 13995static int
3c692a41 13996intel_check_primary_plane(struct drm_plane *plane,
061e4b8d 13997 struct intel_crtc_state *crtc_state,
3c692a41
GP
13998 struct intel_plane_state *state)
13999{
2b875c22
MR
14000 struct drm_crtc *crtc = state->base.crtc;
14001 struct drm_framebuffer *fb = state->base.fb;
6156a456 14002 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
061e4b8d
ML
14003 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
14004 bool can_position = false;
465c120c 14005
061e4b8d
ML
14006 /* use scaler when colorkey is not required */
14007 if (INTEL_INFO(plane->dev)->gen >= 9 &&
818ed961 14008 state->ckey.flags == I915_SET_COLORKEY_NONE) {
061e4b8d
ML
14009 min_scale = 1;
14010 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
d8106366 14011 can_position = true;
6156a456 14012 }
d8106366 14013
061e4b8d
ML
14014 return drm_plane_helper_check_update(plane, crtc, fb, &state->src,
14015 &state->dst, &state->clip,
da20eabd
ML
14016 min_scale, max_scale,
14017 can_position, true,
14018 &state->visible);
14af293f
GP
14019}
14020
613d2b27
ML
14021static void intel_begin_crtc_commit(struct drm_crtc *crtc,
14022 struct drm_crtc_state *old_crtc_state)
3c692a41 14023{
32b7eeec 14024 struct drm_device *dev = crtc->dev;
3c692a41 14025 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
bfd16b2a
ML
14026 struct intel_crtc_state *old_intel_state =
14027 to_intel_crtc_state(old_crtc_state);
14028 bool modeset = needs_modeset(crtc->state);
3c692a41 14029
c34c9ee4 14030 /* Perform vblank evasion around commit operation */
62852622 14031 intel_pipe_update_start(intel_crtc);
0583236e 14032
bfd16b2a
ML
14033 if (modeset)
14034 return;
14035
14036 if (to_intel_crtc_state(crtc->state)->update_pipe)
14037 intel_update_pipe_config(intel_crtc, old_intel_state);
14038 else if (INTEL_INFO(dev)->gen >= 9)
0583236e 14039 skl_detach_scalers(intel_crtc);
32b7eeec
MR
14040}
14041
613d2b27
ML
14042static void intel_finish_crtc_commit(struct drm_crtc *crtc,
14043 struct drm_crtc_state *old_crtc_state)
32b7eeec 14044{
32b7eeec 14045 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
32b7eeec 14046
62852622 14047 intel_pipe_update_end(intel_crtc);
3c692a41
GP
14048}
14049
cf4c7c12 14050/**
4a3b8769
MR
14051 * intel_plane_destroy - destroy a plane
14052 * @plane: plane to destroy
cf4c7c12 14053 *
4a3b8769
MR
14054 * Common destruction function for all types of planes (primary, cursor,
14055 * sprite).
cf4c7c12 14056 */
4a3b8769 14057void intel_plane_destroy(struct drm_plane *plane)
465c120c
MR
14058{
14059 struct intel_plane *intel_plane = to_intel_plane(plane);
14060 drm_plane_cleanup(plane);
14061 kfree(intel_plane);
14062}
14063
65a3fea0 14064const struct drm_plane_funcs intel_plane_funcs = {
70a101f8
MR
14065 .update_plane = drm_atomic_helper_update_plane,
14066 .disable_plane = drm_atomic_helper_disable_plane,
3d7d6510 14067 .destroy = intel_plane_destroy,
c196e1d6 14068 .set_property = drm_atomic_helper_plane_set_property,
a98b3431
MR
14069 .atomic_get_property = intel_plane_atomic_get_property,
14070 .atomic_set_property = intel_plane_atomic_set_property,
ea2c67bb
MR
14071 .atomic_duplicate_state = intel_plane_duplicate_state,
14072 .atomic_destroy_state = intel_plane_destroy_state,
14073
465c120c
MR
14074};
14075
14076static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
14077 int pipe)
14078{
14079 struct intel_plane *primary;
8e7d688b 14080 struct intel_plane_state *state;
465c120c 14081 const uint32_t *intel_primary_formats;
45e3743a 14082 unsigned int num_formats;
465c120c
MR
14083
14084 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
14085 if (primary == NULL)
14086 return NULL;
14087
8e7d688b
MR
14088 state = intel_create_plane_state(&primary->base);
14089 if (!state) {
ea2c67bb
MR
14090 kfree(primary);
14091 return NULL;
14092 }
8e7d688b 14093 primary->base.state = &state->base;
ea2c67bb 14094
465c120c
MR
14095 primary->can_scale = false;
14096 primary->max_downscale = 1;
6156a456
CK
14097 if (INTEL_INFO(dev)->gen >= 9) {
14098 primary->can_scale = true;
af99ceda 14099 state->scaler_id = -1;
6156a456 14100 }
465c120c
MR
14101 primary->pipe = pipe;
14102 primary->plane = pipe;
a9ff8714 14103 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
c59cb179 14104 primary->check_plane = intel_check_primary_plane;
465c120c
MR
14105 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
14106 primary->plane = !pipe;
14107
6c0fd451
DL
14108 if (INTEL_INFO(dev)->gen >= 9) {
14109 intel_primary_formats = skl_primary_formats;
14110 num_formats = ARRAY_SIZE(skl_primary_formats);
a8d201af
ML
14111
14112 primary->update_plane = skylake_update_primary_plane;
14113 primary->disable_plane = skylake_disable_primary_plane;
14114 } else if (HAS_PCH_SPLIT(dev)) {
14115 intel_primary_formats = i965_primary_formats;
14116 num_formats = ARRAY_SIZE(i965_primary_formats);
14117
14118 primary->update_plane = ironlake_update_primary_plane;
14119 primary->disable_plane = i9xx_disable_primary_plane;
6c0fd451 14120 } else if (INTEL_INFO(dev)->gen >= 4) {
568db4f2
DL
14121 intel_primary_formats = i965_primary_formats;
14122 num_formats = ARRAY_SIZE(i965_primary_formats);
a8d201af
ML
14123
14124 primary->update_plane = i9xx_update_primary_plane;
14125 primary->disable_plane = i9xx_disable_primary_plane;
6c0fd451
DL
14126 } else {
14127 intel_primary_formats = i8xx_primary_formats;
14128 num_formats = ARRAY_SIZE(i8xx_primary_formats);
a8d201af
ML
14129
14130 primary->update_plane = i9xx_update_primary_plane;
14131 primary->disable_plane = i9xx_disable_primary_plane;
465c120c
MR
14132 }
14133
14134 drm_universal_plane_init(dev, &primary->base, 0,
65a3fea0 14135 &intel_plane_funcs,
465c120c
MR
14136 intel_primary_formats, num_formats,
14137 DRM_PLANE_TYPE_PRIMARY);
48404c1e 14138
3b7a5119
SJ
14139 if (INTEL_INFO(dev)->gen >= 4)
14140 intel_create_rotation_property(dev, primary);
48404c1e 14141
ea2c67bb
MR
14142 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
14143
465c120c
MR
14144 return &primary->base;
14145}
14146
3b7a5119
SJ
14147void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
14148{
14149 if (!dev->mode_config.rotation_property) {
14150 unsigned long flags = BIT(DRM_ROTATE_0) |
14151 BIT(DRM_ROTATE_180);
14152
14153 if (INTEL_INFO(dev)->gen >= 9)
14154 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
14155
14156 dev->mode_config.rotation_property =
14157 drm_mode_create_rotation_property(dev, flags);
14158 }
14159 if (dev->mode_config.rotation_property)
14160 drm_object_attach_property(&plane->base.base,
14161 dev->mode_config.rotation_property,
14162 plane->base.state->rotation);
14163}
14164
3d7d6510 14165static int
852e787c 14166intel_check_cursor_plane(struct drm_plane *plane,
061e4b8d 14167 struct intel_crtc_state *crtc_state,
852e787c 14168 struct intel_plane_state *state)
3d7d6510 14169{
061e4b8d 14170 struct drm_crtc *crtc = crtc_state->base.crtc;
2b875c22 14171 struct drm_framebuffer *fb = state->base.fb;
757f9a3e 14172 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
b29ec92c 14173 enum pipe pipe = to_intel_plane(plane)->pipe;
757f9a3e
GP
14174 unsigned stride;
14175 int ret;
3d7d6510 14176
061e4b8d
ML
14177 ret = drm_plane_helper_check_update(plane, crtc, fb, &state->src,
14178 &state->dst, &state->clip,
3d7d6510
MR
14179 DRM_PLANE_HELPER_NO_SCALING,
14180 DRM_PLANE_HELPER_NO_SCALING,
852e787c 14181 true, true, &state->visible);
757f9a3e
GP
14182 if (ret)
14183 return ret;
14184
757f9a3e
GP
14185 /* if we want to turn off the cursor ignore width and height */
14186 if (!obj)
da20eabd 14187 return 0;
757f9a3e 14188
757f9a3e 14189 /* Check for which cursor types we support */
061e4b8d 14190 if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) {
ea2c67bb
MR
14191 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
14192 state->base.crtc_w, state->base.crtc_h);
757f9a3e
GP
14193 return -EINVAL;
14194 }
14195
ea2c67bb
MR
14196 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
14197 if (obj->base.size < stride * state->base.crtc_h) {
757f9a3e
GP
14198 DRM_DEBUG_KMS("buffer is too small\n");
14199 return -ENOMEM;
14200 }
14201
3a656b54 14202 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
757f9a3e 14203 DRM_DEBUG_KMS("cursor cannot be tiled\n");
da20eabd 14204 return -EINVAL;
32b7eeec
MR
14205 }
14206
b29ec92c
VS
14207 /*
14208 * There's something wrong with the cursor on CHV pipe C.
14209 * If it straddles the left edge of the screen then
14210 * moving it away from the edge or disabling it often
14211 * results in a pipe underrun, and often that can lead to
14212 * dead pipe (constant underrun reported, and it scans
14213 * out just a solid color). To recover from that, the
14214 * display power well must be turned off and on again.
14215 * Refuse the put the cursor into that compromised position.
14216 */
14217 if (IS_CHERRYVIEW(plane->dev) && pipe == PIPE_C &&
14218 state->visible && state->base.crtc_x < 0) {
14219 DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n");
14220 return -EINVAL;
14221 }
14222
da20eabd 14223 return 0;
852e787c 14224}
3d7d6510 14225
a8ad0d8e
ML
14226static void
14227intel_disable_cursor_plane(struct drm_plane *plane,
7fabf5ef 14228 struct drm_crtc *crtc)
a8ad0d8e 14229{
f2858021
ML
14230 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14231
14232 intel_crtc->cursor_addr = 0;
55a08b3f 14233 intel_crtc_update_cursor(crtc, NULL);
a8ad0d8e
ML
14234}
14235
f4a2cf29 14236static void
55a08b3f
ML
14237intel_update_cursor_plane(struct drm_plane *plane,
14238 const struct intel_crtc_state *crtc_state,
14239 const struct intel_plane_state *state)
852e787c 14240{
55a08b3f
ML
14241 struct drm_crtc *crtc = crtc_state->base.crtc;
14242 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ea2c67bb 14243 struct drm_device *dev = plane->dev;
2b875c22 14244 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
a912f12f 14245 uint32_t addr;
852e787c 14246
f4a2cf29 14247 if (!obj)
a912f12f 14248 addr = 0;
f4a2cf29 14249 else if (!INTEL_INFO(dev)->cursor_needs_physical)
a912f12f 14250 addr = i915_gem_obj_ggtt_offset(obj);
f4a2cf29 14251 else
a912f12f 14252 addr = obj->phys_handle->busaddr;
852e787c 14253
a912f12f 14254 intel_crtc->cursor_addr = addr;
55a08b3f 14255 intel_crtc_update_cursor(crtc, state);
852e787c
GP
14256}
14257
3d7d6510
MR
14258static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
14259 int pipe)
14260{
14261 struct intel_plane *cursor;
8e7d688b 14262 struct intel_plane_state *state;
3d7d6510
MR
14263
14264 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
14265 if (cursor == NULL)
14266 return NULL;
14267
8e7d688b
MR
14268 state = intel_create_plane_state(&cursor->base);
14269 if (!state) {
ea2c67bb
MR
14270 kfree(cursor);
14271 return NULL;
14272 }
8e7d688b 14273 cursor->base.state = &state->base;
ea2c67bb 14274
3d7d6510
MR
14275 cursor->can_scale = false;
14276 cursor->max_downscale = 1;
14277 cursor->pipe = pipe;
14278 cursor->plane = pipe;
a9ff8714 14279 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
c59cb179 14280 cursor->check_plane = intel_check_cursor_plane;
55a08b3f 14281 cursor->update_plane = intel_update_cursor_plane;
a8ad0d8e 14282 cursor->disable_plane = intel_disable_cursor_plane;
3d7d6510
MR
14283
14284 drm_universal_plane_init(dev, &cursor->base, 0,
65a3fea0 14285 &intel_plane_funcs,
3d7d6510
MR
14286 intel_cursor_formats,
14287 ARRAY_SIZE(intel_cursor_formats),
14288 DRM_PLANE_TYPE_CURSOR);
4398ad45
VS
14289
14290 if (INTEL_INFO(dev)->gen >= 4) {
14291 if (!dev->mode_config.rotation_property)
14292 dev->mode_config.rotation_property =
14293 drm_mode_create_rotation_property(dev,
14294 BIT(DRM_ROTATE_0) |
14295 BIT(DRM_ROTATE_180));
14296 if (dev->mode_config.rotation_property)
14297 drm_object_attach_property(&cursor->base.base,
14298 dev->mode_config.rotation_property,
8e7d688b 14299 state->base.rotation);
4398ad45
VS
14300 }
14301
af99ceda
CK
14302 if (INTEL_INFO(dev)->gen >=9)
14303 state->scaler_id = -1;
14304
ea2c67bb
MR
14305 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
14306
3d7d6510
MR
14307 return &cursor->base;
14308}
14309
549e2bfb
CK
14310static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
14311 struct intel_crtc_state *crtc_state)
14312{
14313 int i;
14314 struct intel_scaler *intel_scaler;
14315 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
14316
14317 for (i = 0; i < intel_crtc->num_scalers; i++) {
14318 intel_scaler = &scaler_state->scalers[i];
14319 intel_scaler->in_use = 0;
549e2bfb
CK
14320 intel_scaler->mode = PS_SCALER_MODE_DYN;
14321 }
14322
14323 scaler_state->scaler_id = -1;
14324}
14325
b358d0a6 14326static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 14327{
fbee40df 14328 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 14329 struct intel_crtc *intel_crtc;
f5de6e07 14330 struct intel_crtc_state *crtc_state = NULL;
3d7d6510
MR
14331 struct drm_plane *primary = NULL;
14332 struct drm_plane *cursor = NULL;
465c120c 14333 int i, ret;
79e53945 14334
955382f3 14335 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
79e53945
JB
14336 if (intel_crtc == NULL)
14337 return;
14338
f5de6e07
ACO
14339 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
14340 if (!crtc_state)
14341 goto fail;
550acefd
ACO
14342 intel_crtc->config = crtc_state;
14343 intel_crtc->base.state = &crtc_state->base;
07878248 14344 crtc_state->base.crtc = &intel_crtc->base;
f5de6e07 14345
549e2bfb
CK
14346 /* initialize shared scalers */
14347 if (INTEL_INFO(dev)->gen >= 9) {
14348 if (pipe == PIPE_C)
14349 intel_crtc->num_scalers = 1;
14350 else
14351 intel_crtc->num_scalers = SKL_NUM_SCALERS;
14352
14353 skl_init_scalers(dev, intel_crtc, crtc_state);
14354 }
14355
465c120c 14356 primary = intel_primary_plane_create(dev, pipe);
3d7d6510
MR
14357 if (!primary)
14358 goto fail;
14359
14360 cursor = intel_cursor_plane_create(dev, pipe);
14361 if (!cursor)
14362 goto fail;
14363
465c120c 14364 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
3d7d6510
MR
14365 cursor, &intel_crtc_funcs);
14366 if (ret)
14367 goto fail;
79e53945
JB
14368
14369 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
79e53945
JB
14370 for (i = 0; i < 256; i++) {
14371 intel_crtc->lut_r[i] = i;
14372 intel_crtc->lut_g[i] = i;
14373 intel_crtc->lut_b[i] = i;
14374 }
14375
1f1c2e24
VS
14376 /*
14377 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
8c0f92e1 14378 * is hooked to pipe B. Hence we want plane A feeding pipe B.
1f1c2e24 14379 */
80824003
JB
14380 intel_crtc->pipe = pipe;
14381 intel_crtc->plane = pipe;
3a77c4c4 14382 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
28c97730 14383 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 14384 intel_crtc->plane = !pipe;
80824003
JB
14385 }
14386
4b0e333e
CW
14387 intel_crtc->cursor_base = ~0;
14388 intel_crtc->cursor_cntl = ~0;
dc41c154 14389 intel_crtc->cursor_size = ~0;
8d7849db 14390
852eb00d
VS
14391 intel_crtc->wm.cxsr_allowed = true;
14392
22fd0fab
JB
14393 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
14394 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
14395 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
14396 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
14397
79e53945 14398 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
87b6b101
DV
14399
14400 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
3d7d6510
MR
14401 return;
14402
14403fail:
14404 if (primary)
14405 drm_plane_cleanup(primary);
14406 if (cursor)
14407 drm_plane_cleanup(cursor);
f5de6e07 14408 kfree(crtc_state);
3d7d6510 14409 kfree(intel_crtc);
79e53945
JB
14410}
14411
752aa88a
JB
14412enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
14413{
14414 struct drm_encoder *encoder = connector->base.encoder;
6e9f798d 14415 struct drm_device *dev = connector->base.dev;
752aa88a 14416
51fd371b 14417 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
752aa88a 14418
d3babd3f 14419 if (!encoder || WARN_ON(!encoder->crtc))
752aa88a
JB
14420 return INVALID_PIPE;
14421
14422 return to_intel_crtc(encoder->crtc)->pipe;
14423}
14424
08d7b3d1 14425int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 14426 struct drm_file *file)
08d7b3d1 14427{
08d7b3d1 14428 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
7707e653 14429 struct drm_crtc *drmmode_crtc;
c05422d5 14430 struct intel_crtc *crtc;
08d7b3d1 14431
7707e653 14432 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
08d7b3d1 14433
7707e653 14434 if (!drmmode_crtc) {
08d7b3d1 14435 DRM_ERROR("no such CRTC id\n");
3f2c2057 14436 return -ENOENT;
08d7b3d1
CW
14437 }
14438
7707e653 14439 crtc = to_intel_crtc(drmmode_crtc);
c05422d5 14440 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 14441
c05422d5 14442 return 0;
08d7b3d1
CW
14443}
14444
66a9278e 14445static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 14446{
66a9278e
DV
14447 struct drm_device *dev = encoder->base.dev;
14448 struct intel_encoder *source_encoder;
79e53945 14449 int index_mask = 0;
79e53945
JB
14450 int entry = 0;
14451
b2784e15 14452 for_each_intel_encoder(dev, source_encoder) {
bc079e8b 14453 if (encoders_cloneable(encoder, source_encoder))
66a9278e
DV
14454 index_mask |= (1 << entry);
14455
79e53945
JB
14456 entry++;
14457 }
4ef69c7a 14458
79e53945
JB
14459 return index_mask;
14460}
14461
4d302442
CW
14462static bool has_edp_a(struct drm_device *dev)
14463{
14464 struct drm_i915_private *dev_priv = dev->dev_private;
14465
14466 if (!IS_MOBILE(dev))
14467 return false;
14468
14469 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
14470 return false;
14471
e3589908 14472 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
4d302442
CW
14473 return false;
14474
14475 return true;
14476}
14477
84b4e042
JB
14478static bool intel_crt_present(struct drm_device *dev)
14479{
14480 struct drm_i915_private *dev_priv = dev->dev_private;
14481
884497ed
DL
14482 if (INTEL_INFO(dev)->gen >= 9)
14483 return false;
14484
cf404ce4 14485 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
84b4e042
JB
14486 return false;
14487
14488 if (IS_CHERRYVIEW(dev))
14489 return false;
14490
65e472e4
VS
14491 if (HAS_PCH_LPT_H(dev) && I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED)
14492 return false;
14493
70ac54d0
VS
14494 /* DDI E can't be used if DDI A requires 4 lanes */
14495 if (HAS_DDI(dev) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)
14496 return false;
14497
e4abb733 14498 if (!dev_priv->vbt.int_crt_support)
84b4e042
JB
14499 return false;
14500
14501 return true;
14502}
14503
79e53945
JB
14504static void intel_setup_outputs(struct drm_device *dev)
14505{
725e30ad 14506 struct drm_i915_private *dev_priv = dev->dev_private;
4ef69c7a 14507 struct intel_encoder *encoder;
cb0953d7 14508 bool dpd_is_edp = false;
79e53945 14509
c9093354 14510 intel_lvds_init(dev);
79e53945 14511
84b4e042 14512 if (intel_crt_present(dev))
79935fca 14513 intel_crt_init(dev);
cb0953d7 14514
c776eb2e
VK
14515 if (IS_BROXTON(dev)) {
14516 /*
14517 * FIXME: Broxton doesn't support port detection via the
14518 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
14519 * detect the ports.
14520 */
14521 intel_ddi_init(dev, PORT_A);
14522 intel_ddi_init(dev, PORT_B);
14523 intel_ddi_init(dev, PORT_C);
14524 } else if (HAS_DDI(dev)) {
0e72a5b5
ED
14525 int found;
14526
de31facd
JB
14527 /*
14528 * Haswell uses DDI functions to detect digital outputs.
14529 * On SKL pre-D0 the strap isn't connected, so we assume
14530 * it's there.
14531 */
77179400 14532 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
de31facd 14533 /* WaIgnoreDDIAStrap: skl */
ef11bdb3 14534 if (found || IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
0e72a5b5
ED
14535 intel_ddi_init(dev, PORT_A);
14536
14537 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
14538 * register */
14539 found = I915_READ(SFUSE_STRAP);
14540
14541 if (found & SFUSE_STRAP_DDIB_DETECTED)
14542 intel_ddi_init(dev, PORT_B);
14543 if (found & SFUSE_STRAP_DDIC_DETECTED)
14544 intel_ddi_init(dev, PORT_C);
14545 if (found & SFUSE_STRAP_DDID_DETECTED)
14546 intel_ddi_init(dev, PORT_D);
2800e4c2
RV
14547 /*
14548 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
14549 */
ef11bdb3 14550 if ((IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) &&
2800e4c2
RV
14551 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
14552 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
14553 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
14554 intel_ddi_init(dev, PORT_E);
14555
0e72a5b5 14556 } else if (HAS_PCH_SPLIT(dev)) {
cb0953d7 14557 int found;
5d8a7752 14558 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
270b3042
DV
14559
14560 if (has_edp_a(dev))
14561 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 14562
dc0fa718 14563 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 14564 /* PCH SDVOB multiplex with HDMIB */
2a5c0832 14565 found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B);
30ad48b7 14566 if (!found)
e2debe91 14567 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 14568 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 14569 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
14570 }
14571
dc0fa718 14572 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 14573 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 14574
dc0fa718 14575 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 14576 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 14577
5eb08b69 14578 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 14579 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 14580
270b3042 14581 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 14582 intel_dp_init(dev, PCH_DP_D, PORT_D);
666a4537 14583 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
e17ac6db
VS
14584 /*
14585 * The DP_DETECTED bit is the latched state of the DDC
14586 * SDA pin at boot. However since eDP doesn't require DDC
14587 * (no way to plug in a DP->HDMI dongle) the DDC pins for
14588 * eDP ports may have been muxed to an alternate function.
14589 * Thus we can't rely on the DP_DETECTED bit alone to detect
14590 * eDP ports. Consult the VBT as well as DP_DETECTED to
14591 * detect eDP ports.
14592 */
e66eb81d 14593 if (I915_READ(VLV_HDMIB) & SDVO_DETECTED &&
d2182a66 14594 !intel_dp_is_edp(dev, PORT_B))
e66eb81d
VS
14595 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
14596 if (I915_READ(VLV_DP_B) & DP_DETECTED ||
e17ac6db 14597 intel_dp_is_edp(dev, PORT_B))
e66eb81d 14598 intel_dp_init(dev, VLV_DP_B, PORT_B);
585a94b8 14599
e66eb81d 14600 if (I915_READ(VLV_HDMIC) & SDVO_DETECTED &&
d2182a66 14601 !intel_dp_is_edp(dev, PORT_C))
e66eb81d
VS
14602 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
14603 if (I915_READ(VLV_DP_C) & DP_DETECTED ||
e17ac6db 14604 intel_dp_is_edp(dev, PORT_C))
e66eb81d 14605 intel_dp_init(dev, VLV_DP_C, PORT_C);
19c03924 14606
9418c1f1 14607 if (IS_CHERRYVIEW(dev)) {
e17ac6db 14608 /* eDP not supported on port D, so don't check VBT */
e66eb81d
VS
14609 if (I915_READ(CHV_HDMID) & SDVO_DETECTED)
14610 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
14611 if (I915_READ(CHV_DP_D) & DP_DETECTED)
14612 intel_dp_init(dev, CHV_DP_D, PORT_D);
9418c1f1
VS
14613 }
14614
3cfca973 14615 intel_dsi_init(dev);
09da55dc 14616 } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) {
27185ae1 14617 bool found = false;
7d57382e 14618
e2debe91 14619 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 14620 DRM_DEBUG_KMS("probing SDVOB\n");
2a5c0832 14621 found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B);
3fec3d2f 14622 if (!found && IS_G4X(dev)) {
b01f2c3a 14623 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 14624 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 14625 }
27185ae1 14626
3fec3d2f 14627 if (!found && IS_G4X(dev))
ab9d7c30 14628 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 14629 }
13520b05
KH
14630
14631 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 14632
e2debe91 14633 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 14634 DRM_DEBUG_KMS("probing SDVOC\n");
2a5c0832 14635 found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C);
b01f2c3a 14636 }
27185ae1 14637
e2debe91 14638 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 14639
3fec3d2f 14640 if (IS_G4X(dev)) {
b01f2c3a 14641 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 14642 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 14643 }
3fec3d2f 14644 if (IS_G4X(dev))
ab9d7c30 14645 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 14646 }
27185ae1 14647
3fec3d2f 14648 if (IS_G4X(dev) &&
e7281eab 14649 (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 14650 intel_dp_init(dev, DP_D, PORT_D);
bad720ff 14651 } else if (IS_GEN2(dev))
79e53945
JB
14652 intel_dvo_init(dev);
14653
103a196f 14654 if (SUPPORTS_TV(dev))
79e53945
JB
14655 intel_tv_init(dev);
14656
0bc12bcb 14657 intel_psr_init(dev);
7c8f8a70 14658
b2784e15 14659 for_each_intel_encoder(dev, encoder) {
4ef69c7a
CW
14660 encoder->base.possible_crtcs = encoder->crtc_mask;
14661 encoder->base.possible_clones =
66a9278e 14662 intel_encoder_clones(encoder);
79e53945 14663 }
47356eb6 14664
dde86e2d 14665 intel_init_pch_refclk(dev);
270b3042
DV
14666
14667 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
14668}
14669
14670static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
14671{
60a5ca01 14672 struct drm_device *dev = fb->dev;
79e53945 14673 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945 14674
ef2d633e 14675 drm_framebuffer_cleanup(fb);
60a5ca01 14676 mutex_lock(&dev->struct_mutex);
ef2d633e 14677 WARN_ON(!intel_fb->obj->framebuffer_references--);
60a5ca01
VS
14678 drm_gem_object_unreference(&intel_fb->obj->base);
14679 mutex_unlock(&dev->struct_mutex);
79e53945
JB
14680 kfree(intel_fb);
14681}
14682
14683static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 14684 struct drm_file *file,
79e53945
JB
14685 unsigned int *handle)
14686{
14687 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 14688 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 14689
cc917ab4
CW
14690 if (obj->userptr.mm) {
14691 DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n");
14692 return -EINVAL;
14693 }
14694
05394f39 14695 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
14696}
14697
86c98588
RV
14698static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
14699 struct drm_file *file,
14700 unsigned flags, unsigned color,
14701 struct drm_clip_rect *clips,
14702 unsigned num_clips)
14703{
14704 struct drm_device *dev = fb->dev;
14705 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
14706 struct drm_i915_gem_object *obj = intel_fb->obj;
14707
14708 mutex_lock(&dev->struct_mutex);
74b4ea1e 14709 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
86c98588
RV
14710 mutex_unlock(&dev->struct_mutex);
14711
14712 return 0;
14713}
14714
79e53945
JB
14715static const struct drm_framebuffer_funcs intel_fb_funcs = {
14716 .destroy = intel_user_framebuffer_destroy,
14717 .create_handle = intel_user_framebuffer_create_handle,
86c98588 14718 .dirty = intel_user_framebuffer_dirty,
79e53945
JB
14719};
14720
b321803d
DL
14721static
14722u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
14723 uint32_t pixel_format)
14724{
14725 u32 gen = INTEL_INFO(dev)->gen;
14726
14727 if (gen >= 9) {
14728 /* "The stride in bytes must not exceed the of the size of 8K
14729 * pixels and 32K bytes."
14730 */
14731 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
666a4537 14732 } else if (gen >= 5 && !IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
b321803d
DL
14733 return 32*1024;
14734 } else if (gen >= 4) {
14735 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14736 return 16*1024;
14737 else
14738 return 32*1024;
14739 } else if (gen >= 3) {
14740 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14741 return 8*1024;
14742 else
14743 return 16*1024;
14744 } else {
14745 /* XXX DSPC is limited to 4k tiled */
14746 return 8*1024;
14747 }
14748}
14749
b5ea642a
DV
14750static int intel_framebuffer_init(struct drm_device *dev,
14751 struct intel_framebuffer *intel_fb,
14752 struct drm_mode_fb_cmd2 *mode_cmd,
14753 struct drm_i915_gem_object *obj)
79e53945 14754{
6761dd31 14755 unsigned int aligned_height;
79e53945 14756 int ret;
b321803d 14757 u32 pitch_limit, stride_alignment;
79e53945 14758
dd4916c5
DV
14759 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
14760
2a80eada
DV
14761 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
14762 /* Enforce that fb modifier and tiling mode match, but only for
14763 * X-tiled. This is needed for FBC. */
14764 if (!!(obj->tiling_mode == I915_TILING_X) !=
14765 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
14766 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
14767 return -EINVAL;
14768 }
14769 } else {
14770 if (obj->tiling_mode == I915_TILING_X)
14771 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
14772 else if (obj->tiling_mode == I915_TILING_Y) {
14773 DRM_DEBUG("No Y tiling for legacy addfb\n");
14774 return -EINVAL;
14775 }
14776 }
14777
9a8f0a12
TU
14778 /* Passed in modifier sanity checking. */
14779 switch (mode_cmd->modifier[0]) {
14780 case I915_FORMAT_MOD_Y_TILED:
14781 case I915_FORMAT_MOD_Yf_TILED:
14782 if (INTEL_INFO(dev)->gen < 9) {
14783 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
14784 mode_cmd->modifier[0]);
14785 return -EINVAL;
14786 }
14787 case DRM_FORMAT_MOD_NONE:
14788 case I915_FORMAT_MOD_X_TILED:
14789 break;
14790 default:
c0f40428
JB
14791 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
14792 mode_cmd->modifier[0]);
57cd6508 14793 return -EINVAL;
c16ed4be 14794 }
57cd6508 14795
b321803d
DL
14796 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
14797 mode_cmd->pixel_format);
14798 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
14799 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
14800 mode_cmd->pitches[0], stride_alignment);
57cd6508 14801 return -EINVAL;
c16ed4be 14802 }
57cd6508 14803
b321803d
DL
14804 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
14805 mode_cmd->pixel_format);
a35cdaa0 14806 if (mode_cmd->pitches[0] > pitch_limit) {
b321803d
DL
14807 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
14808 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
2a80eada 14809 "tiled" : "linear",
a35cdaa0 14810 mode_cmd->pitches[0], pitch_limit);
5d7bd705 14811 return -EINVAL;
c16ed4be 14812 }
5d7bd705 14813
2a80eada 14814 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
c16ed4be
CW
14815 mode_cmd->pitches[0] != obj->stride) {
14816 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
14817 mode_cmd->pitches[0], obj->stride);
5d7bd705 14818 return -EINVAL;
c16ed4be 14819 }
5d7bd705 14820
57779d06 14821 /* Reject formats not supported by any plane early. */
308e5bcb 14822 switch (mode_cmd->pixel_format) {
57779d06 14823 case DRM_FORMAT_C8:
04b3924d
VS
14824 case DRM_FORMAT_RGB565:
14825 case DRM_FORMAT_XRGB8888:
14826 case DRM_FORMAT_ARGB8888:
57779d06
VS
14827 break;
14828 case DRM_FORMAT_XRGB1555:
c16ed4be 14829 if (INTEL_INFO(dev)->gen > 3) {
4ee62c76
VS
14830 DRM_DEBUG("unsupported pixel format: %s\n",
14831 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14832 return -EINVAL;
c16ed4be 14833 }
57779d06 14834 break;
57779d06 14835 case DRM_FORMAT_ABGR8888:
666a4537
WB
14836 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
14837 INTEL_INFO(dev)->gen < 9) {
6c0fd451
DL
14838 DRM_DEBUG("unsupported pixel format: %s\n",
14839 drm_get_format_name(mode_cmd->pixel_format));
14840 return -EINVAL;
14841 }
14842 break;
14843 case DRM_FORMAT_XBGR8888:
04b3924d 14844 case DRM_FORMAT_XRGB2101010:
57779d06 14845 case DRM_FORMAT_XBGR2101010:
c16ed4be 14846 if (INTEL_INFO(dev)->gen < 4) {
4ee62c76
VS
14847 DRM_DEBUG("unsupported pixel format: %s\n",
14848 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14849 return -EINVAL;
c16ed4be 14850 }
b5626747 14851 break;
7531208b 14852 case DRM_FORMAT_ABGR2101010:
666a4537 14853 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
7531208b
DL
14854 DRM_DEBUG("unsupported pixel format: %s\n",
14855 drm_get_format_name(mode_cmd->pixel_format));
14856 return -EINVAL;
14857 }
14858 break;
04b3924d
VS
14859 case DRM_FORMAT_YUYV:
14860 case DRM_FORMAT_UYVY:
14861 case DRM_FORMAT_YVYU:
14862 case DRM_FORMAT_VYUY:
c16ed4be 14863 if (INTEL_INFO(dev)->gen < 5) {
4ee62c76
VS
14864 DRM_DEBUG("unsupported pixel format: %s\n",
14865 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14866 return -EINVAL;
c16ed4be 14867 }
57cd6508
CW
14868 break;
14869 default:
4ee62c76
VS
14870 DRM_DEBUG("unsupported pixel format: %s\n",
14871 drm_get_format_name(mode_cmd->pixel_format));
57cd6508
CW
14872 return -EINVAL;
14873 }
14874
90f9a336
VS
14875 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
14876 if (mode_cmd->offsets[0] != 0)
14877 return -EINVAL;
14878
ec2c981e 14879 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
091df6cb
DV
14880 mode_cmd->pixel_format,
14881 mode_cmd->modifier[0]);
53155c0a
DV
14882 /* FIXME drm helper for size checks (especially planar formats)? */
14883 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
14884 return -EINVAL;
14885
c7d73f6a
DV
14886 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
14887 intel_fb->obj = obj;
80075d49 14888 intel_fb->obj->framebuffer_references++;
c7d73f6a 14889
79e53945
JB
14890 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
14891 if (ret) {
14892 DRM_ERROR("framebuffer init failed %d\n", ret);
14893 return ret;
14894 }
14895
79e53945
JB
14896 return 0;
14897}
14898
79e53945
JB
14899static struct drm_framebuffer *
14900intel_user_framebuffer_create(struct drm_device *dev,
14901 struct drm_file *filp,
1eb83451 14902 const struct drm_mode_fb_cmd2 *user_mode_cmd)
79e53945 14903{
dcb1394e 14904 struct drm_framebuffer *fb;
05394f39 14905 struct drm_i915_gem_object *obj;
76dc3769 14906 struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd;
79e53945 14907
308e5bcb 14908 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
76dc3769 14909 mode_cmd.handles[0]));
c8725226 14910 if (&obj->base == NULL)
cce13ff7 14911 return ERR_PTR(-ENOENT);
79e53945 14912
92907cbb 14913 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
dcb1394e
LW
14914 if (IS_ERR(fb))
14915 drm_gem_object_unreference_unlocked(&obj->base);
14916
14917 return fb;
79e53945
JB
14918}
14919
0695726e 14920#ifndef CONFIG_DRM_FBDEV_EMULATION
0632fef6 14921static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
4520f53a
DV
14922{
14923}
14924#endif
14925
79e53945 14926static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 14927 .fb_create = intel_user_framebuffer_create,
0632fef6 14928 .output_poll_changed = intel_fbdev_output_poll_changed,
5ee67f1c
MR
14929 .atomic_check = intel_atomic_check,
14930 .atomic_commit = intel_atomic_commit,
de419ab6
ML
14931 .atomic_state_alloc = intel_atomic_state_alloc,
14932 .atomic_state_clear = intel_atomic_state_clear,
79e53945
JB
14933};
14934
e70236a8
JB
14935/* Set up chip specific display functions */
14936static void intel_init_display(struct drm_device *dev)
14937{
14938 struct drm_i915_private *dev_priv = dev->dev_private;
14939
ee9300bb
DV
14940 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
14941 dev_priv->display.find_dpll = g4x_find_best_dpll;
ef9348c8
CML
14942 else if (IS_CHERRYVIEW(dev))
14943 dev_priv->display.find_dpll = chv_find_best_dpll;
ee9300bb
DV
14944 else if (IS_VALLEYVIEW(dev))
14945 dev_priv->display.find_dpll = vlv_find_best_dpll;
14946 else if (IS_PINEVIEW(dev))
14947 dev_priv->display.find_dpll = pnv_find_best_dpll;
14948 else
14949 dev_priv->display.find_dpll = i9xx_find_best_dpll;
14950
bc8d7dff
DL
14951 if (INTEL_INFO(dev)->gen >= 9) {
14952 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
14953 dev_priv->display.get_initial_plane_config =
14954 skylake_get_initial_plane_config;
bc8d7dff
DL
14955 dev_priv->display.crtc_compute_clock =
14956 haswell_crtc_compute_clock;
14957 dev_priv->display.crtc_enable = haswell_crtc_enable;
14958 dev_priv->display.crtc_disable = haswell_crtc_disable;
bc8d7dff 14959 } else if (HAS_DDI(dev)) {
0e8ffe1b 14960 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
14961 dev_priv->display.get_initial_plane_config =
14962 ironlake_get_initial_plane_config;
797d0259
ACO
14963 dev_priv->display.crtc_compute_clock =
14964 haswell_crtc_compute_clock;
4f771f10
PZ
14965 dev_priv->display.crtc_enable = haswell_crtc_enable;
14966 dev_priv->display.crtc_disable = haswell_crtc_disable;
09b4ddf9 14967 } else if (HAS_PCH_SPLIT(dev)) {
0e8ffe1b 14968 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
5724dbd1
DL
14969 dev_priv->display.get_initial_plane_config =
14970 ironlake_get_initial_plane_config;
3fb37703
ACO
14971 dev_priv->display.crtc_compute_clock =
14972 ironlake_crtc_compute_clock;
76e5a89c
DV
14973 dev_priv->display.crtc_enable = ironlake_crtc_enable;
14974 dev_priv->display.crtc_disable = ironlake_crtc_disable;
666a4537 14975 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
89b667f8 14976 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
14977 dev_priv->display.get_initial_plane_config =
14978 i9xx_get_initial_plane_config;
d6dfee7a 14979 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
89b667f8
JB
14980 dev_priv->display.crtc_enable = valleyview_crtc_enable;
14981 dev_priv->display.crtc_disable = i9xx_crtc_disable;
f564048e 14982 } else {
0e8ffe1b 14983 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
14984 dev_priv->display.get_initial_plane_config =
14985 i9xx_get_initial_plane_config;
d6dfee7a 14986 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
76e5a89c
DV
14987 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14988 dev_priv->display.crtc_disable = i9xx_crtc_disable;
f564048e 14989 }
e70236a8 14990
e70236a8 14991 /* Returns the core display clock speed */
ef11bdb3 14992 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
1652d19e
VS
14993 dev_priv->display.get_display_clock_speed =
14994 skylake_get_display_clock_speed;
acd3f3d3
BP
14995 else if (IS_BROXTON(dev))
14996 dev_priv->display.get_display_clock_speed =
14997 broxton_get_display_clock_speed;
1652d19e
VS
14998 else if (IS_BROADWELL(dev))
14999 dev_priv->display.get_display_clock_speed =
15000 broadwell_get_display_clock_speed;
15001 else if (IS_HASWELL(dev))
15002 dev_priv->display.get_display_clock_speed =
15003 haswell_get_display_clock_speed;
666a4537 15004 else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
25eb05fc
JB
15005 dev_priv->display.get_display_clock_speed =
15006 valleyview_get_display_clock_speed;
b37a6434
VS
15007 else if (IS_GEN5(dev))
15008 dev_priv->display.get_display_clock_speed =
15009 ilk_get_display_clock_speed;
a7c66cd8 15010 else if (IS_I945G(dev) || IS_BROADWATER(dev) ||
34edce2f 15011 IS_GEN6(dev) || IS_IVYBRIDGE(dev))
e70236a8
JB
15012 dev_priv->display.get_display_clock_speed =
15013 i945_get_display_clock_speed;
34edce2f
VS
15014 else if (IS_GM45(dev))
15015 dev_priv->display.get_display_clock_speed =
15016 gm45_get_display_clock_speed;
15017 else if (IS_CRESTLINE(dev))
15018 dev_priv->display.get_display_clock_speed =
15019 i965gm_get_display_clock_speed;
15020 else if (IS_PINEVIEW(dev))
15021 dev_priv->display.get_display_clock_speed =
15022 pnv_get_display_clock_speed;
15023 else if (IS_G33(dev) || IS_G4X(dev))
15024 dev_priv->display.get_display_clock_speed =
15025 g33_get_display_clock_speed;
e70236a8
JB
15026 else if (IS_I915G(dev))
15027 dev_priv->display.get_display_clock_speed =
15028 i915_get_display_clock_speed;
257a7ffc 15029 else if (IS_I945GM(dev) || IS_845G(dev))
e70236a8
JB
15030 dev_priv->display.get_display_clock_speed =
15031 i9xx_misc_get_display_clock_speed;
15032 else if (IS_I915GM(dev))
15033 dev_priv->display.get_display_clock_speed =
15034 i915gm_get_display_clock_speed;
15035 else if (IS_I865G(dev))
15036 dev_priv->display.get_display_clock_speed =
15037 i865_get_display_clock_speed;
f0f8a9ce 15038 else if (IS_I85X(dev))
e70236a8 15039 dev_priv->display.get_display_clock_speed =
1b1d2716 15040 i85x_get_display_clock_speed;
623e01e5
VS
15041 else { /* 830 */
15042 WARN(!IS_I830(dev), "Unknown platform. Assuming 133 MHz CDCLK\n");
e70236a8
JB
15043 dev_priv->display.get_display_clock_speed =
15044 i830_get_display_clock_speed;
623e01e5 15045 }
e70236a8 15046
7c10a2b5 15047 if (IS_GEN5(dev)) {
3bb11b53 15048 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
3bb11b53
SJ
15049 } else if (IS_GEN6(dev)) {
15050 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
3bb11b53
SJ
15051 } else if (IS_IVYBRIDGE(dev)) {
15052 /* FIXME: detect B0+ stepping and use auto training */
15053 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
059b2fe9 15054 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
3bb11b53 15055 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
27c329ed
ML
15056 if (IS_BROADWELL(dev)) {
15057 dev_priv->display.modeset_commit_cdclk =
15058 broadwell_modeset_commit_cdclk;
15059 dev_priv->display.modeset_calc_cdclk =
15060 broadwell_modeset_calc_cdclk;
15061 }
666a4537 15062 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
27c329ed
ML
15063 dev_priv->display.modeset_commit_cdclk =
15064 valleyview_modeset_commit_cdclk;
15065 dev_priv->display.modeset_calc_cdclk =
15066 valleyview_modeset_calc_cdclk;
f8437dd1 15067 } else if (IS_BROXTON(dev)) {
27c329ed
ML
15068 dev_priv->display.modeset_commit_cdclk =
15069 broxton_modeset_commit_cdclk;
15070 dev_priv->display.modeset_calc_cdclk =
15071 broxton_modeset_calc_cdclk;
e70236a8 15072 }
8c9f3aaf 15073
8c9f3aaf
JB
15074 switch (INTEL_INFO(dev)->gen) {
15075 case 2:
15076 dev_priv->display.queue_flip = intel_gen2_queue_flip;
15077 break;
15078
15079 case 3:
15080 dev_priv->display.queue_flip = intel_gen3_queue_flip;
15081 break;
15082
15083 case 4:
15084 case 5:
15085 dev_priv->display.queue_flip = intel_gen4_queue_flip;
15086 break;
15087
15088 case 6:
15089 dev_priv->display.queue_flip = intel_gen6_queue_flip;
15090 break;
7c9017e5 15091 case 7:
4e0bbc31 15092 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
7c9017e5
JB
15093 dev_priv->display.queue_flip = intel_gen7_queue_flip;
15094 break;
830c81db 15095 case 9:
ba343e02
TU
15096 /* Drop through - unsupported since execlist only. */
15097 default:
15098 /* Default just returns -ENODEV to indicate unsupported */
15099 dev_priv->display.queue_flip = intel_default_queue_flip;
8c9f3aaf 15100 }
7bd688cd 15101
e39b999a 15102 mutex_init(&dev_priv->pps_mutex);
e70236a8
JB
15103}
15104
b690e96c
JB
15105/*
15106 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
15107 * resume, or other times. This quirk makes sure that's the case for
15108 * affected systems.
15109 */
0206e353 15110static void quirk_pipea_force(struct drm_device *dev)
b690e96c
JB
15111{
15112 struct drm_i915_private *dev_priv = dev->dev_private;
15113
15114 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 15115 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
15116}
15117
b6b5d049
VS
15118static void quirk_pipeb_force(struct drm_device *dev)
15119{
15120 struct drm_i915_private *dev_priv = dev->dev_private;
15121
15122 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
15123 DRM_INFO("applying pipe b force quirk\n");
15124}
15125
435793df
KP
15126/*
15127 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
15128 */
15129static void quirk_ssc_force_disable(struct drm_device *dev)
15130{
15131 struct drm_i915_private *dev_priv = dev->dev_private;
15132 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 15133 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
15134}
15135
4dca20ef 15136/*
5a15ab5b
CE
15137 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
15138 * brightness value
4dca20ef
CE
15139 */
15140static void quirk_invert_brightness(struct drm_device *dev)
15141{
15142 struct drm_i915_private *dev_priv = dev->dev_private;
15143 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 15144 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
15145}
15146
9c72cc6f
SD
15147/* Some VBT's incorrectly indicate no backlight is present */
15148static void quirk_backlight_present(struct drm_device *dev)
15149{
15150 struct drm_i915_private *dev_priv = dev->dev_private;
15151 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
15152 DRM_INFO("applying backlight present quirk\n");
15153}
15154
b690e96c
JB
15155struct intel_quirk {
15156 int device;
15157 int subsystem_vendor;
15158 int subsystem_device;
15159 void (*hook)(struct drm_device *dev);
15160};
15161
5f85f176
EE
15162/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
15163struct intel_dmi_quirk {
15164 void (*hook)(struct drm_device *dev);
15165 const struct dmi_system_id (*dmi_id_list)[];
15166};
15167
15168static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
15169{
15170 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
15171 return 1;
15172}
15173
15174static const struct intel_dmi_quirk intel_dmi_quirks[] = {
15175 {
15176 .dmi_id_list = &(const struct dmi_system_id[]) {
15177 {
15178 .callback = intel_dmi_reverse_brightness,
15179 .ident = "NCR Corporation",
15180 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
15181 DMI_MATCH(DMI_PRODUCT_NAME, ""),
15182 },
15183 },
15184 { } /* terminating entry */
15185 },
15186 .hook = quirk_invert_brightness,
15187 },
15188};
15189
c43b5634 15190static struct intel_quirk intel_quirks[] = {
b690e96c
JB
15191 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
15192 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
15193
b690e96c
JB
15194 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
15195 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
15196
5f080c0f
VS
15197 /* 830 needs to leave pipe A & dpll A up */
15198 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
15199
b6b5d049
VS
15200 /* 830 needs to leave pipe B & dpll B up */
15201 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
15202
435793df
KP
15203 /* Lenovo U160 cannot use SSC on LVDS */
15204 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
15205
15206 /* Sony Vaio Y cannot use SSC on LVDS */
15207 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b 15208
be505f64
AH
15209 /* Acer Aspire 5734Z must invert backlight brightness */
15210 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
15211
15212 /* Acer/eMachines G725 */
15213 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
15214
15215 /* Acer/eMachines e725 */
15216 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
15217
15218 /* Acer/Packard Bell NCL20 */
15219 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
15220
15221 /* Acer Aspire 4736Z */
15222 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
0f540c3a
JN
15223
15224 /* Acer Aspire 5336 */
15225 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
2e93a1aa
SD
15226
15227 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
15228 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
d4967d8c 15229
dfb3d47b
SD
15230 /* Acer C720 Chromebook (Core i3 4005U) */
15231 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
15232
b2a9601c 15233 /* Apple Macbook 2,1 (Core 2 T7400) */
15234 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
15235
1b9448b0
JN
15236 /* Apple Macbook 4,1 */
15237 { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present },
15238
d4967d8c
SD
15239 /* Toshiba CB35 Chromebook (Celeron 2955U) */
15240 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
724cb06f
SD
15241
15242 /* HP Chromebook 14 (Celeron 2955U) */
15243 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
cf6f0af9
JN
15244
15245 /* Dell Chromebook 11 */
15246 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
9be64eee
JN
15247
15248 /* Dell Chromebook 11 (2015 version) */
15249 { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present },
b690e96c
JB
15250};
15251
15252static void intel_init_quirks(struct drm_device *dev)
15253{
15254 struct pci_dev *d = dev->pdev;
15255 int i;
15256
15257 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
15258 struct intel_quirk *q = &intel_quirks[i];
15259
15260 if (d->device == q->device &&
15261 (d->subsystem_vendor == q->subsystem_vendor ||
15262 q->subsystem_vendor == PCI_ANY_ID) &&
15263 (d->subsystem_device == q->subsystem_device ||
15264 q->subsystem_device == PCI_ANY_ID))
15265 q->hook(dev);
15266 }
5f85f176
EE
15267 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
15268 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
15269 intel_dmi_quirks[i].hook(dev);
15270 }
b690e96c
JB
15271}
15272
9cce37f4
JB
15273/* Disable the VGA plane that we never use */
15274static void i915_disable_vga(struct drm_device *dev)
15275{
15276 struct drm_i915_private *dev_priv = dev->dev_private;
15277 u8 sr1;
f0f59a00 15278 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
9cce37f4 15279
2b37c616 15280 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
9cce37f4 15281 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 15282 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
15283 sr1 = inb(VGA_SR_DATA);
15284 outb(sr1 | 1<<5, VGA_SR_DATA);
15285 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
15286 udelay(300);
15287
01f5a626 15288 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
9cce37f4
JB
15289 POSTING_READ(vga_reg);
15290}
15291
f817586c
DV
15292void intel_modeset_init_hw(struct drm_device *dev)
15293{
1a617b77
ML
15294 struct drm_i915_private *dev_priv = dev->dev_private;
15295
b6283055 15296 intel_update_cdclk(dev);
1a617b77
ML
15297
15298 dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq;
15299
a8f78b58 15300 intel_prepare_ddi(dev);
f817586c 15301 intel_init_clock_gating(dev);
8090c6b9 15302 intel_enable_gt_powersave(dev);
f817586c
DV
15303}
15304
d93c0372
MR
15305/*
15306 * Calculate what we think the watermarks should be for the state we've read
15307 * out of the hardware and then immediately program those watermarks so that
15308 * we ensure the hardware settings match our internal state.
15309 *
15310 * We can calculate what we think WM's should be by creating a duplicate of the
15311 * current state (which was constructed during hardware readout) and running it
15312 * through the atomic check code to calculate new watermark values in the
15313 * state object.
15314 */
15315static void sanitize_watermarks(struct drm_device *dev)
15316{
15317 struct drm_i915_private *dev_priv = to_i915(dev);
15318 struct drm_atomic_state *state;
15319 struct drm_crtc *crtc;
15320 struct drm_crtc_state *cstate;
15321 struct drm_modeset_acquire_ctx ctx;
15322 int ret;
15323 int i;
15324
15325 /* Only supported on platforms that use atomic watermark design */
396e33ae 15326 if (!dev_priv->display.optimize_watermarks)
d93c0372
MR
15327 return;
15328
15329 /*
15330 * We need to hold connection_mutex before calling duplicate_state so
15331 * that the connector loop is protected.
15332 */
15333 drm_modeset_acquire_init(&ctx, 0);
15334retry:
15335 ret = drm_modeset_lock(&dev->mode_config.connection_mutex, &ctx);
15336 if (ret == -EDEADLK) {
15337 drm_modeset_backoff(&ctx);
15338 goto retry;
15339 } else if (WARN_ON(ret)) {
15340 return;
15341 }
15342
15343 state = drm_atomic_helper_duplicate_state(dev, &ctx);
15344 if (WARN_ON(IS_ERR(state)))
15345 return;
15346
396e33ae
MR
15347 /*
15348 * Hardware readout is the only time we don't want to calculate
15349 * intermediate watermarks (since we don't trust the current
15350 * watermarks).
15351 */
15352 to_intel_atomic_state(state)->skip_intermediate_wm = true;
15353
d93c0372
MR
15354 ret = intel_atomic_check(dev, state);
15355 if (ret) {
15356 /*
15357 * If we fail here, it means that the hardware appears to be
15358 * programmed in a way that shouldn't be possible, given our
15359 * understanding of watermark requirements. This might mean a
15360 * mistake in the hardware readout code or a mistake in the
15361 * watermark calculations for a given platform. Raise a WARN
15362 * so that this is noticeable.
15363 *
15364 * If this actually happens, we'll have to just leave the
15365 * BIOS-programmed watermarks untouched and hope for the best.
15366 */
15367 WARN(true, "Could not determine valid watermarks for inherited state\n");
15368 return;
15369 }
15370
15371 /* Write calculated watermark values back */
15372 to_i915(dev)->wm.config = to_intel_atomic_state(state)->wm_config;
15373 for_each_crtc_in_state(state, crtc, cstate, i) {
15374 struct intel_crtc_state *cs = to_intel_crtc_state(cstate);
15375
396e33ae
MR
15376 cs->wm.need_postvbl_update = true;
15377 dev_priv->display.optimize_watermarks(cs);
d93c0372
MR
15378 }
15379
15380 drm_atomic_state_free(state);
15381 drm_modeset_drop_locks(&ctx);
15382 drm_modeset_acquire_fini(&ctx);
15383}
15384
79e53945
JB
15385void intel_modeset_init(struct drm_device *dev)
15386{
652c393a 15387 struct drm_i915_private *dev_priv = dev->dev_private;
1fe47785 15388 int sprite, ret;
8cc87b75 15389 enum pipe pipe;
46f297fb 15390 struct intel_crtc *crtc;
79e53945
JB
15391
15392 drm_mode_config_init(dev);
15393
15394 dev->mode_config.min_width = 0;
15395 dev->mode_config.min_height = 0;
15396
019d96cb
DA
15397 dev->mode_config.preferred_depth = 24;
15398 dev->mode_config.prefer_shadow = 1;
15399
25bab385
TU
15400 dev->mode_config.allow_fb_modifiers = true;
15401
e6ecefaa 15402 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 15403
b690e96c
JB
15404 intel_init_quirks(dev);
15405
1fa61106
ED
15406 intel_init_pm(dev);
15407
e3c74757
BW
15408 if (INTEL_INFO(dev)->num_pipes == 0)
15409 return;
15410
69f92f67
LW
15411 /*
15412 * There may be no VBT; and if the BIOS enabled SSC we can
15413 * just keep using it to avoid unnecessary flicker. Whereas if the
15414 * BIOS isn't using it, don't assume it will work even if the VBT
15415 * indicates as much.
15416 */
15417 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
15418 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
15419 DREF_SSC1_ENABLE);
15420
15421 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
15422 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
15423 bios_lvds_use_ssc ? "en" : "dis",
15424 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
15425 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
15426 }
15427 }
15428
e70236a8 15429 intel_init_display(dev);
7c10a2b5 15430 intel_init_audio(dev);
e70236a8 15431
a6c45cf0
CW
15432 if (IS_GEN2(dev)) {
15433 dev->mode_config.max_width = 2048;
15434 dev->mode_config.max_height = 2048;
15435 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
15436 dev->mode_config.max_width = 4096;
15437 dev->mode_config.max_height = 4096;
79e53945 15438 } else {
a6c45cf0
CW
15439 dev->mode_config.max_width = 8192;
15440 dev->mode_config.max_height = 8192;
79e53945 15441 }
068be561 15442
dc41c154
VS
15443 if (IS_845G(dev) || IS_I865G(dev)) {
15444 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
15445 dev->mode_config.cursor_height = 1023;
15446 } else if (IS_GEN2(dev)) {
068be561
DL
15447 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
15448 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
15449 } else {
15450 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
15451 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
15452 }
15453
5d4545ae 15454 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
79e53945 15455
28c97730 15456 DRM_DEBUG_KMS("%d display pipe%s available.\n",
7eb552ae
BW
15457 INTEL_INFO(dev)->num_pipes,
15458 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
79e53945 15459
055e393f 15460 for_each_pipe(dev_priv, pipe) {
8cc87b75 15461 intel_crtc_init(dev, pipe);
3bdcfc0c 15462 for_each_sprite(dev_priv, pipe, sprite) {
1fe47785 15463 ret = intel_plane_init(dev, pipe, sprite);
7f1f3851 15464 if (ret)
06da8da2 15465 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
1fe47785 15466 pipe_name(pipe), sprite_name(pipe, sprite), ret);
7f1f3851 15467 }
79e53945
JB
15468 }
15469
bfa7df01
VS
15470 intel_update_czclk(dev_priv);
15471 intel_update_cdclk(dev);
15472
e72f9fbf 15473 intel_shared_dpll_init(dev);
ee7b9f93 15474
9cce37f4
JB
15475 /* Just disable it once at startup */
15476 i915_disable_vga(dev);
79e53945 15477 intel_setup_outputs(dev);
11be49eb 15478
6e9f798d 15479 drm_modeset_lock_all(dev);
043e9bda 15480 intel_modeset_setup_hw_state(dev);
6e9f798d 15481 drm_modeset_unlock_all(dev);
46f297fb 15482
d3fcc808 15483 for_each_intel_crtc(dev, crtc) {
eeebeac5
ML
15484 struct intel_initial_plane_config plane_config = {};
15485
46f297fb
JB
15486 if (!crtc->active)
15487 continue;
15488
46f297fb 15489 /*
46f297fb
JB
15490 * Note that reserving the BIOS fb up front prevents us
15491 * from stuffing other stolen allocations like the ring
15492 * on top. This prevents some ugliness at boot time, and
15493 * can even allow for smooth boot transitions if the BIOS
15494 * fb is large enough for the active pipe configuration.
15495 */
eeebeac5
ML
15496 dev_priv->display.get_initial_plane_config(crtc,
15497 &plane_config);
15498
15499 /*
15500 * If the fb is shared between multiple heads, we'll
15501 * just get the first one.
15502 */
15503 intel_find_initial_plane_obj(crtc, &plane_config);
46f297fb 15504 }
d93c0372
MR
15505
15506 /*
15507 * Make sure hardware watermarks really match the state we read out.
15508 * Note that we need to do this after reconstructing the BIOS fb's
15509 * since the watermark calculation done here will use pstate->fb.
15510 */
15511 sanitize_watermarks(dev);
2c7111db
CW
15512}
15513
7fad798e
DV
15514static void intel_enable_pipe_a(struct drm_device *dev)
15515{
15516 struct intel_connector *connector;
15517 struct drm_connector *crt = NULL;
15518 struct intel_load_detect_pipe load_detect_temp;
208bf9fd 15519 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
7fad798e
DV
15520
15521 /* We can't just switch on the pipe A, we need to set things up with a
15522 * proper mode and output configuration. As a gross hack, enable pipe A
15523 * by enabling the load detect pipe once. */
3a3371ff 15524 for_each_intel_connector(dev, connector) {
7fad798e
DV
15525 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
15526 crt = &connector->base;
15527 break;
15528 }
15529 }
15530
15531 if (!crt)
15532 return;
15533
208bf9fd 15534 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
49172fee 15535 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
7fad798e
DV
15536}
15537
fa555837
DV
15538static bool
15539intel_check_plane_mapping(struct intel_crtc *crtc)
15540{
7eb552ae
BW
15541 struct drm_device *dev = crtc->base.dev;
15542 struct drm_i915_private *dev_priv = dev->dev_private;
649636ef 15543 u32 val;
fa555837 15544
7eb552ae 15545 if (INTEL_INFO(dev)->num_pipes == 1)
fa555837
DV
15546 return true;
15547
649636ef 15548 val = I915_READ(DSPCNTR(!crtc->plane));
fa555837
DV
15549
15550 if ((val & DISPLAY_PLANE_ENABLE) &&
15551 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
15552 return false;
15553
15554 return true;
15555}
15556
02e93c35
VS
15557static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
15558{
15559 struct drm_device *dev = crtc->base.dev;
15560 struct intel_encoder *encoder;
15561
15562 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
15563 return true;
15564
15565 return false;
15566}
15567
24929352
DV
15568static void intel_sanitize_crtc(struct intel_crtc *crtc)
15569{
15570 struct drm_device *dev = crtc->base.dev;
15571 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 15572 i915_reg_t reg = PIPECONF(crtc->config->cpu_transcoder);
24929352 15573
24929352 15574 /* Clear any frame start delays used for debugging left by the BIOS */
24929352
DV
15575 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
15576
d3eaf884 15577 /* restore vblank interrupts to correct state */
9625604c 15578 drm_crtc_vblank_reset(&crtc->base);
d297e103 15579 if (crtc->active) {
f9cd7b88
VS
15580 struct intel_plane *plane;
15581
9625604c 15582 drm_crtc_vblank_on(&crtc->base);
f9cd7b88
VS
15583
15584 /* Disable everything but the primary plane */
15585 for_each_intel_plane_on_crtc(dev, crtc, plane) {
15586 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
15587 continue;
15588
15589 plane->disable_plane(&plane->base, &crtc->base);
15590 }
9625604c 15591 }
d3eaf884 15592
24929352 15593 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
15594 * disable the crtc (and hence change the state) if it is wrong. Note
15595 * that gen4+ has a fixed plane -> pipe mapping. */
15596 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
15597 bool plane;
15598
24929352
DV
15599 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
15600 crtc->base.base.id);
15601
15602 /* Pipe has the wrong plane attached and the plane is active.
15603 * Temporarily change the plane mapping and disable everything
15604 * ... */
15605 plane = crtc->plane;
b70709a6 15606 to_intel_plane_state(crtc->base.primary->state)->visible = true;
24929352 15607 crtc->plane = !plane;
b17d48e2 15608 intel_crtc_disable_noatomic(&crtc->base);
24929352 15609 crtc->plane = plane;
24929352 15610 }
24929352 15611
7fad798e
DV
15612 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
15613 crtc->pipe == PIPE_A && !crtc->active) {
15614 /* BIOS forgot to enable pipe A, this mostly happens after
15615 * resume. Force-enable the pipe to fix this, the update_dpms
15616 * call below we restore the pipe to the right state, but leave
15617 * the required bits on. */
15618 intel_enable_pipe_a(dev);
15619 }
15620
24929352
DV
15621 /* Adjust the state of the output pipe according to whether we
15622 * have active connectors/encoders. */
02e93c35 15623 if (!intel_crtc_has_encoders(crtc))
b17d48e2 15624 intel_crtc_disable_noatomic(&crtc->base);
24929352 15625
53d9f4e9 15626 if (crtc->active != crtc->base.state->active) {
02e93c35 15627 struct intel_encoder *encoder;
24929352
DV
15628
15629 /* This can happen either due to bugs in the get_hw_state
b17d48e2
ML
15630 * functions or because of calls to intel_crtc_disable_noatomic,
15631 * or because the pipe is force-enabled due to the
24929352
DV
15632 * pipe A quirk. */
15633 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
15634 crtc->base.base.id,
83d65738 15635 crtc->base.state->enable ? "enabled" : "disabled",
24929352
DV
15636 crtc->active ? "enabled" : "disabled");
15637
4be40c98 15638 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, NULL) < 0);
49d6fa21 15639 crtc->base.state->active = crtc->active;
24929352
DV
15640 crtc->base.enabled = crtc->active;
15641
15642 /* Because we only establish the connector -> encoder ->
15643 * crtc links if something is active, this means the
15644 * crtc is now deactivated. Break the links. connector
15645 * -> encoder links are only establish when things are
15646 * actually up, hence no need to break them. */
15647 WARN_ON(crtc->active);
15648
2d406bb0 15649 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
24929352 15650 encoder->base.crtc = NULL;
24929352 15651 }
c5ab3bc0 15652
a3ed6aad 15653 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
4cc31489
DV
15654 /*
15655 * We start out with underrun reporting disabled to avoid races.
15656 * For correct bookkeeping mark this on active crtcs.
15657 *
c5ab3bc0
DV
15658 * Also on gmch platforms we dont have any hardware bits to
15659 * disable the underrun reporting. Which means we need to start
15660 * out with underrun reporting disabled also on inactive pipes,
15661 * since otherwise we'll complain about the garbage we read when
15662 * e.g. coming up after runtime pm.
15663 *
4cc31489
DV
15664 * No protection against concurrent access is required - at
15665 * worst a fifo underrun happens which also sets this to false.
15666 */
15667 crtc->cpu_fifo_underrun_disabled = true;
15668 crtc->pch_fifo_underrun_disabled = true;
15669 }
24929352
DV
15670}
15671
15672static void intel_sanitize_encoder(struct intel_encoder *encoder)
15673{
15674 struct intel_connector *connector;
15675 struct drm_device *dev = encoder->base.dev;
873ffe69 15676 bool active = false;
24929352
DV
15677
15678 /* We need to check both for a crtc link (meaning that the
15679 * encoder is active and trying to read from a pipe) and the
15680 * pipe itself being active. */
15681 bool has_active_crtc = encoder->base.crtc &&
15682 to_intel_crtc(encoder->base.crtc)->active;
15683
873ffe69
ML
15684 for_each_intel_connector(dev, connector) {
15685 if (connector->base.encoder != &encoder->base)
15686 continue;
15687
15688 active = true;
15689 break;
15690 }
15691
15692 if (active && !has_active_crtc) {
24929352
DV
15693 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
15694 encoder->base.base.id,
8e329a03 15695 encoder->base.name);
24929352
DV
15696
15697 /* Connector is active, but has no active pipe. This is
15698 * fallout from our resume register restoring. Disable
15699 * the encoder manually again. */
15700 if (encoder->base.crtc) {
15701 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
15702 encoder->base.base.id,
8e329a03 15703 encoder->base.name);
24929352 15704 encoder->disable(encoder);
a62d1497
VS
15705 if (encoder->post_disable)
15706 encoder->post_disable(encoder);
24929352 15707 }
7f1950fb 15708 encoder->base.crtc = NULL;
24929352
DV
15709
15710 /* Inconsistent output/port/pipe state happens presumably due to
15711 * a bug in one of the get_hw_state functions. Or someplace else
15712 * in our code, like the register restore mess on resume. Clamp
15713 * things to off as a safer default. */
3a3371ff 15714 for_each_intel_connector(dev, connector) {
24929352
DV
15715 if (connector->encoder != encoder)
15716 continue;
7f1950fb
EE
15717 connector->base.dpms = DRM_MODE_DPMS_OFF;
15718 connector->base.encoder = NULL;
24929352
DV
15719 }
15720 }
15721 /* Enabled encoders without active connectors will be fixed in
15722 * the crtc fixup. */
15723}
15724
04098753 15725void i915_redisable_vga_power_on(struct drm_device *dev)
0fde901f
KM
15726{
15727 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 15728 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
0fde901f 15729
04098753
ID
15730 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
15731 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
15732 i915_disable_vga(dev);
15733 }
15734}
15735
15736void i915_redisable_vga(struct drm_device *dev)
15737{
15738 struct drm_i915_private *dev_priv = dev->dev_private;
15739
8dc8a27c
PZ
15740 /* This function can be called both from intel_modeset_setup_hw_state or
15741 * at a very early point in our resume sequence, where the power well
15742 * structures are not yet restored. Since this function is at a very
15743 * paranoid "someone might have enabled VGA while we were not looking"
15744 * level, just check if the power well is enabled instead of trying to
15745 * follow the "don't touch the power well if we don't need it" policy
15746 * the rest of the driver uses. */
f458ebbc 15747 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
8dc8a27c
PZ
15748 return;
15749
04098753 15750 i915_redisable_vga_power_on(dev);
0fde901f
KM
15751}
15752
f9cd7b88 15753static bool primary_get_hw_state(struct intel_plane *plane)
98ec7739 15754{
f9cd7b88 15755 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
98ec7739 15756
f9cd7b88 15757 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
d032ffa0
ML
15758}
15759
f9cd7b88
VS
15760/* FIXME read out full plane state for all planes */
15761static void readout_plane_state(struct intel_crtc *crtc)
d032ffa0 15762{
b26d3ea3 15763 struct drm_plane *primary = crtc->base.primary;
f9cd7b88 15764 struct intel_plane_state *plane_state =
b26d3ea3 15765 to_intel_plane_state(primary->state);
d032ffa0 15766
19b8d387 15767 plane_state->visible = crtc->active &&
b26d3ea3
ML
15768 primary_get_hw_state(to_intel_plane(primary));
15769
15770 if (plane_state->visible)
15771 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
98ec7739
VS
15772}
15773
30e984df 15774static void intel_modeset_readout_hw_state(struct drm_device *dev)
24929352
DV
15775{
15776 struct drm_i915_private *dev_priv = dev->dev_private;
15777 enum pipe pipe;
24929352
DV
15778 struct intel_crtc *crtc;
15779 struct intel_encoder *encoder;
15780 struct intel_connector *connector;
5358901f 15781 int i;
24929352 15782
565602d7
ML
15783 dev_priv->active_crtcs = 0;
15784
d3fcc808 15785 for_each_intel_crtc(dev, crtc) {
565602d7
ML
15786 struct intel_crtc_state *crtc_state = crtc->config;
15787 int pixclk = 0;
3b117c8f 15788
565602d7
ML
15789 __drm_atomic_helper_crtc_destroy_state(&crtc->base, &crtc_state->base);
15790 memset(crtc_state, 0, sizeof(*crtc_state));
15791 crtc_state->base.crtc = &crtc->base;
24929352 15792
565602d7
ML
15793 crtc_state->base.active = crtc_state->base.enable =
15794 dev_priv->display.get_pipe_config(crtc, crtc_state);
15795
15796 crtc->base.enabled = crtc_state->base.enable;
15797 crtc->active = crtc_state->base.active;
15798
15799 if (crtc_state->base.active) {
15800 dev_priv->active_crtcs |= 1 << crtc->pipe;
15801
15802 if (IS_BROADWELL(dev_priv)) {
15803 pixclk = ilk_pipe_pixel_rate(crtc_state);
15804
15805 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
15806 if (crtc_state->ips_enabled)
15807 pixclk = DIV_ROUND_UP(pixclk * 100, 95);
15808 } else if (IS_VALLEYVIEW(dev_priv) ||
15809 IS_CHERRYVIEW(dev_priv) ||
15810 IS_BROXTON(dev_priv))
15811 pixclk = crtc_state->base.adjusted_mode.crtc_clock;
15812 else
15813 WARN_ON(dev_priv->display.modeset_calc_cdclk);
15814 }
15815
15816 dev_priv->min_pixclk[crtc->pipe] = pixclk;
b70709a6 15817
f9cd7b88 15818 readout_plane_state(crtc);
24929352
DV
15819
15820 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
15821 crtc->base.base.id,
15822 crtc->active ? "enabled" : "disabled");
15823 }
15824
5358901f
DV
15825 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15826 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15827
3e369b76
ACO
15828 pll->on = pll->get_hw_state(dev_priv, pll,
15829 &pll->config.hw_state);
5358901f 15830 pll->active = 0;
3e369b76 15831 pll->config.crtc_mask = 0;
d3fcc808 15832 for_each_intel_crtc(dev, crtc) {
1e6f2ddc 15833 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
5358901f 15834 pll->active++;
3e369b76 15835 pll->config.crtc_mask |= 1 << crtc->pipe;
1e6f2ddc 15836 }
5358901f 15837 }
5358901f 15838
1e6f2ddc 15839 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
3e369b76 15840 pll->name, pll->config.crtc_mask, pll->on);
bd2bb1b9 15841
3e369b76 15842 if (pll->config.crtc_mask)
bd2bb1b9 15843 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5358901f
DV
15844 }
15845
b2784e15 15846 for_each_intel_encoder(dev, encoder) {
24929352
DV
15847 pipe = 0;
15848
15849 if (encoder->get_hw_state(encoder, &pipe)) {
045ac3b5
JB
15850 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15851 encoder->base.crtc = &crtc->base;
6e3c9717 15852 encoder->get_config(encoder, crtc->config);
24929352
DV
15853 } else {
15854 encoder->base.crtc = NULL;
15855 }
15856
6f2bcceb 15857 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
24929352 15858 encoder->base.base.id,
8e329a03 15859 encoder->base.name,
24929352 15860 encoder->base.crtc ? "enabled" : "disabled",
6f2bcceb 15861 pipe_name(pipe));
24929352
DV
15862 }
15863
3a3371ff 15864 for_each_intel_connector(dev, connector) {
24929352
DV
15865 if (connector->get_hw_state(connector)) {
15866 connector->base.dpms = DRM_MODE_DPMS_ON;
24929352
DV
15867 connector->base.encoder = &connector->encoder->base;
15868 } else {
15869 connector->base.dpms = DRM_MODE_DPMS_OFF;
15870 connector->base.encoder = NULL;
15871 }
15872 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
15873 connector->base.base.id,
c23cc417 15874 connector->base.name,
24929352
DV
15875 connector->base.encoder ? "enabled" : "disabled");
15876 }
7f4c6284
VS
15877
15878 for_each_intel_crtc(dev, crtc) {
15879 crtc->base.hwmode = crtc->config->base.adjusted_mode;
15880
15881 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
15882 if (crtc->base.state->active) {
15883 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
15884 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
15885 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
15886
15887 /*
15888 * The initial mode needs to be set in order to keep
15889 * the atomic core happy. It wants a valid mode if the
15890 * crtc's enabled, so we do the above call.
15891 *
15892 * At this point some state updated by the connectors
15893 * in their ->detect() callback has not run yet, so
15894 * no recalculation can be done yet.
15895 *
15896 * Even if we could do a recalculation and modeset
15897 * right now it would cause a double modeset if
15898 * fbdev or userspace chooses a different initial mode.
15899 *
15900 * If that happens, someone indicated they wanted a
15901 * mode change, which means it's safe to do a full
15902 * recalculation.
15903 */
15904 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
9eca6832
VS
15905
15906 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
15907 update_scanline_offset(crtc);
7f4c6284
VS
15908 }
15909 }
30e984df
DV
15910}
15911
043e9bda
ML
15912/* Scan out the current hw modeset state,
15913 * and sanitizes it to the current state
15914 */
15915static void
15916intel_modeset_setup_hw_state(struct drm_device *dev)
30e984df
DV
15917{
15918 struct drm_i915_private *dev_priv = dev->dev_private;
15919 enum pipe pipe;
30e984df
DV
15920 struct intel_crtc *crtc;
15921 struct intel_encoder *encoder;
35c95375 15922 int i;
30e984df
DV
15923
15924 intel_modeset_readout_hw_state(dev);
24929352
DV
15925
15926 /* HW state is read out, now we need to sanitize this mess. */
b2784e15 15927 for_each_intel_encoder(dev, encoder) {
24929352
DV
15928 intel_sanitize_encoder(encoder);
15929 }
15930
055e393f 15931 for_each_pipe(dev_priv, pipe) {
24929352
DV
15932 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15933 intel_sanitize_crtc(crtc);
6e3c9717
ACO
15934 intel_dump_pipe_config(crtc, crtc->config,
15935 "[setup_hw_state]");
24929352 15936 }
9a935856 15937
d29b2f9d
ACO
15938 intel_modeset_update_connector_atomic_state(dev);
15939
35c95375
DV
15940 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15941 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15942
15943 if (!pll->on || pll->active)
15944 continue;
15945
15946 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
15947
15948 pll->disable(dev_priv, pll);
15949 pll->on = false;
15950 }
15951
666a4537 15952 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
6eb1a681
VS
15953 vlv_wm_get_hw_state(dev);
15954 else if (IS_GEN9(dev))
3078999f
PB
15955 skl_wm_get_hw_state(dev);
15956 else if (HAS_PCH_SPLIT(dev))
243e6a44 15957 ilk_wm_get_hw_state(dev);
292b990e
ML
15958
15959 for_each_intel_crtc(dev, crtc) {
15960 unsigned long put_domains;
15961
15962 put_domains = modeset_get_crtc_power_domains(&crtc->base);
15963 if (WARN_ON(put_domains))
15964 modeset_put_power_domains(dev_priv, put_domains);
15965 }
15966 intel_display_set_init_power(dev_priv, false);
043e9bda 15967}
7d0bc1ea 15968
043e9bda
ML
15969void intel_display_resume(struct drm_device *dev)
15970{
15971 struct drm_atomic_state *state = drm_atomic_state_alloc(dev);
15972 struct intel_connector *conn;
15973 struct intel_plane *plane;
15974 struct drm_crtc *crtc;
15975 int ret;
f30da187 15976
043e9bda
ML
15977 if (!state)
15978 return;
15979
15980 state->acquire_ctx = dev->mode_config.acquire_ctx;
15981
15982 /* preserve complete old state, including dpll */
15983 intel_atomic_get_shared_dpll_state(state);
15984
15985 for_each_crtc(dev, crtc) {
15986 struct drm_crtc_state *crtc_state =
15987 drm_atomic_get_crtc_state(state, crtc);
15988
15989 ret = PTR_ERR_OR_ZERO(crtc_state);
15990 if (ret)
15991 goto err;
15992
15993 /* force a restore */
15994 crtc_state->mode_changed = true;
45e2b5f6 15995 }
8af6cf88 15996
043e9bda
ML
15997 for_each_intel_plane(dev, plane) {
15998 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(state, &plane->base));
15999 if (ret)
16000 goto err;
16001 }
16002
16003 for_each_intel_connector(dev, conn) {
16004 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(state, &conn->base));
16005 if (ret)
16006 goto err;
16007 }
16008
16009 intel_modeset_setup_hw_state(dev);
16010
16011 i915_redisable_vga(dev);
74c090b1 16012 ret = drm_atomic_commit(state);
043e9bda
ML
16013 if (!ret)
16014 return;
16015
16016err:
16017 DRM_ERROR("Restoring old state failed with %i\n", ret);
16018 drm_atomic_state_free(state);
2c7111db
CW
16019}
16020
16021void intel_modeset_gem_init(struct drm_device *dev)
16022{
484b41dd 16023 struct drm_crtc *c;
2ff8fde1 16024 struct drm_i915_gem_object *obj;
e0d6149b 16025 int ret;
484b41dd 16026
ae48434c
ID
16027 mutex_lock(&dev->struct_mutex);
16028 intel_init_gt_powersave(dev);
16029 mutex_unlock(&dev->struct_mutex);
16030
1833b134 16031 intel_modeset_init_hw(dev);
02e792fb
DV
16032
16033 intel_setup_overlay(dev);
484b41dd
JB
16034
16035 /*
16036 * Make sure any fbs we allocated at startup are properly
16037 * pinned & fenced. When we do the allocation it's too early
16038 * for this.
16039 */
70e1e0ec 16040 for_each_crtc(dev, c) {
2ff8fde1
MR
16041 obj = intel_fb_obj(c->primary->fb);
16042 if (obj == NULL)
484b41dd
JB
16043 continue;
16044
e0d6149b
TU
16045 mutex_lock(&dev->struct_mutex);
16046 ret = intel_pin_and_fence_fb_obj(c->primary,
16047 c->primary->fb,
7580d774 16048 c->primary->state);
e0d6149b
TU
16049 mutex_unlock(&dev->struct_mutex);
16050 if (ret) {
484b41dd
JB
16051 DRM_ERROR("failed to pin boot fb on pipe %d\n",
16052 to_intel_crtc(c)->pipe);
66e514c1
DA
16053 drm_framebuffer_unreference(c->primary->fb);
16054 c->primary->fb = NULL;
36750f28 16055 c->primary->crtc = c->primary->state->crtc = NULL;
afd65eb4 16056 update_state_fb(c->primary);
36750f28 16057 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
484b41dd
JB
16058 }
16059 }
0962c3c9
VS
16060
16061 intel_backlight_register(dev);
79e53945
JB
16062}
16063
4932e2c3
ID
16064void intel_connector_unregister(struct intel_connector *intel_connector)
16065{
16066 struct drm_connector *connector = &intel_connector->base;
16067
16068 intel_panel_destroy_backlight(connector);
34ea3d38 16069 drm_connector_unregister(connector);
4932e2c3
ID
16070}
16071
79e53945
JB
16072void intel_modeset_cleanup(struct drm_device *dev)
16073{
652c393a 16074 struct drm_i915_private *dev_priv = dev->dev_private;
19c8054c 16075 struct intel_connector *connector;
652c393a 16076
2eb5252e
ID
16077 intel_disable_gt_powersave(dev);
16078
0962c3c9
VS
16079 intel_backlight_unregister(dev);
16080
fd0c0642
DV
16081 /*
16082 * Interrupts and polling as the first thing to avoid creating havoc.
2eb5252e 16083 * Too much stuff here (turning of connectors, ...) would
fd0c0642
DV
16084 * experience fancy races otherwise.
16085 */
2aeb7d3a 16086 intel_irq_uninstall(dev_priv);
eb21b92b 16087
fd0c0642
DV
16088 /*
16089 * Due to the hpd irq storm handling the hotplug work can re-arm the
16090 * poll handlers. Hence disable polling after hpd handling is shut down.
16091 */
f87ea761 16092 drm_kms_helper_poll_fini(dev);
fd0c0642 16093
723bfd70
JB
16094 intel_unregister_dsm_handler();
16095
7733b49b 16096 intel_fbc_disable(dev_priv);
69341a5e 16097
1630fe75
CW
16098 /* flush any delayed tasks or pending work */
16099 flush_scheduled_work();
16100
db31af1d 16101 /* destroy the backlight and sysfs files before encoders/connectors */
19c8054c
JN
16102 for_each_intel_connector(dev, connector)
16103 connector->unregister(connector);
d9255d57 16104
79e53945 16105 drm_mode_config_cleanup(dev);
4d7bb011
DV
16106
16107 intel_cleanup_overlay(dev);
ae48434c
ID
16108
16109 mutex_lock(&dev->struct_mutex);
16110 intel_cleanup_gt_powersave(dev);
16111 mutex_unlock(&dev->struct_mutex);
79e53945
JB
16112}
16113
f1c79df3
ZW
16114/*
16115 * Return which encoder is currently attached for connector.
16116 */
df0e9248 16117struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
79e53945 16118{
df0e9248
CW
16119 return &intel_attached_encoder(connector)->base;
16120}
f1c79df3 16121
df0e9248
CW
16122void intel_connector_attach_encoder(struct intel_connector *connector,
16123 struct intel_encoder *encoder)
16124{
16125 connector->encoder = encoder;
16126 drm_mode_connector_attach_encoder(&connector->base,
16127 &encoder->base);
79e53945 16128}
28d52043
DA
16129
16130/*
16131 * set vga decode state - true == enable VGA decode
16132 */
16133int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
16134{
16135 struct drm_i915_private *dev_priv = dev->dev_private;
a885b3cc 16136 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
28d52043
DA
16137 u16 gmch_ctrl;
16138
75fa041d
CW
16139 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
16140 DRM_ERROR("failed to read control word\n");
16141 return -EIO;
16142 }
16143
c0cc8a55
CW
16144 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
16145 return 0;
16146
28d52043
DA
16147 if (state)
16148 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
16149 else
16150 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
75fa041d
CW
16151
16152 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
16153 DRM_ERROR("failed to write control word\n");
16154 return -EIO;
16155 }
16156
28d52043
DA
16157 return 0;
16158}
c4a1d9e4 16159
c4a1d9e4 16160struct intel_display_error_state {
ff57f1b0
PZ
16161
16162 u32 power_well_driver;
16163
63b66e5b
CW
16164 int num_transcoders;
16165
c4a1d9e4
CW
16166 struct intel_cursor_error_state {
16167 u32 control;
16168 u32 position;
16169 u32 base;
16170 u32 size;
52331309 16171 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
16172
16173 struct intel_pipe_error_state {
ddf9c536 16174 bool power_domain_on;
c4a1d9e4 16175 u32 source;
f301b1e1 16176 u32 stat;
52331309 16177 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
16178
16179 struct intel_plane_error_state {
16180 u32 control;
16181 u32 stride;
16182 u32 size;
16183 u32 pos;
16184 u32 addr;
16185 u32 surface;
16186 u32 tile_offset;
52331309 16187 } plane[I915_MAX_PIPES];
63b66e5b
CW
16188
16189 struct intel_transcoder_error_state {
ddf9c536 16190 bool power_domain_on;
63b66e5b
CW
16191 enum transcoder cpu_transcoder;
16192
16193 u32 conf;
16194
16195 u32 htotal;
16196 u32 hblank;
16197 u32 hsync;
16198 u32 vtotal;
16199 u32 vblank;
16200 u32 vsync;
16201 } transcoder[4];
c4a1d9e4
CW
16202};
16203
16204struct intel_display_error_state *
16205intel_display_capture_error_state(struct drm_device *dev)
16206{
fbee40df 16207 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4 16208 struct intel_display_error_state *error;
63b66e5b
CW
16209 int transcoders[] = {
16210 TRANSCODER_A,
16211 TRANSCODER_B,
16212 TRANSCODER_C,
16213 TRANSCODER_EDP,
16214 };
c4a1d9e4
CW
16215 int i;
16216
63b66e5b
CW
16217 if (INTEL_INFO(dev)->num_pipes == 0)
16218 return NULL;
16219
9d1cb914 16220 error = kzalloc(sizeof(*error), GFP_ATOMIC);
c4a1d9e4
CW
16221 if (error == NULL)
16222 return NULL;
16223
190be112 16224 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
ff57f1b0
PZ
16225 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
16226
055e393f 16227 for_each_pipe(dev_priv, i) {
ddf9c536 16228 error->pipe[i].power_domain_on =
f458ebbc
DV
16229 __intel_display_power_is_enabled(dev_priv,
16230 POWER_DOMAIN_PIPE(i));
ddf9c536 16231 if (!error->pipe[i].power_domain_on)
9d1cb914
PZ
16232 continue;
16233
5efb3e28
VS
16234 error->cursor[i].control = I915_READ(CURCNTR(i));
16235 error->cursor[i].position = I915_READ(CURPOS(i));
16236 error->cursor[i].base = I915_READ(CURBASE(i));
c4a1d9e4
CW
16237
16238 error->plane[i].control = I915_READ(DSPCNTR(i));
16239 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
80ca378b 16240 if (INTEL_INFO(dev)->gen <= 3) {
51889b35 16241 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
16242 error->plane[i].pos = I915_READ(DSPPOS(i));
16243 }
ca291363
PZ
16244 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
16245 error->plane[i].addr = I915_READ(DSPADDR(i));
c4a1d9e4
CW
16246 if (INTEL_INFO(dev)->gen >= 4) {
16247 error->plane[i].surface = I915_READ(DSPSURF(i));
16248 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
16249 }
16250
c4a1d9e4 16251 error->pipe[i].source = I915_READ(PIPESRC(i));
f301b1e1 16252
3abfce77 16253 if (HAS_GMCH_DISPLAY(dev))
f301b1e1 16254 error->pipe[i].stat = I915_READ(PIPESTAT(i));
63b66e5b
CW
16255 }
16256
16257 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
16258 if (HAS_DDI(dev_priv->dev))
16259 error->num_transcoders++; /* Account for eDP. */
16260
16261 for (i = 0; i < error->num_transcoders; i++) {
16262 enum transcoder cpu_transcoder = transcoders[i];
16263
ddf9c536 16264 error->transcoder[i].power_domain_on =
f458ebbc 16265 __intel_display_power_is_enabled(dev_priv,
38cc1daf 16266 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
ddf9c536 16267 if (!error->transcoder[i].power_domain_on)
9d1cb914
PZ
16268 continue;
16269
63b66e5b
CW
16270 error->transcoder[i].cpu_transcoder = cpu_transcoder;
16271
16272 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
16273 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
16274 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
16275 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
16276 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
16277 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
16278 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
16279 }
16280
16281 return error;
16282}
16283
edc3d884
MK
16284#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
16285
c4a1d9e4 16286void
edc3d884 16287intel_display_print_error_state(struct drm_i915_error_state_buf *m,
c4a1d9e4
CW
16288 struct drm_device *dev,
16289 struct intel_display_error_state *error)
16290{
055e393f 16291 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4
CW
16292 int i;
16293
63b66e5b
CW
16294 if (!error)
16295 return;
16296
edc3d884 16297 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
190be112 16298 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
edc3d884 16299 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 16300 error->power_well_driver);
055e393f 16301 for_each_pipe(dev_priv, i) {
edc3d884 16302 err_printf(m, "Pipe [%d]:\n", i);
ddf9c536
ID
16303 err_printf(m, " Power: %s\n",
16304 error->pipe[i].power_domain_on ? "on" : "off");
edc3d884 16305 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
f301b1e1 16306 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
edc3d884
MK
16307
16308 err_printf(m, "Plane [%d]:\n", i);
16309 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
16310 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
80ca378b 16311 if (INTEL_INFO(dev)->gen <= 3) {
edc3d884
MK
16312 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
16313 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 16314 }
4b71a570 16315 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
edc3d884 16316 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
c4a1d9e4 16317 if (INTEL_INFO(dev)->gen >= 4) {
edc3d884
MK
16318 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
16319 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
16320 }
16321
edc3d884
MK
16322 err_printf(m, "Cursor [%d]:\n", i);
16323 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
16324 err_printf(m, " POS: %08x\n", error->cursor[i].position);
16325 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4 16326 }
63b66e5b
CW
16327
16328 for (i = 0; i < error->num_transcoders; i++) {
1cf84bb6 16329 err_printf(m, "CPU transcoder: %c\n",
63b66e5b 16330 transcoder_name(error->transcoder[i].cpu_transcoder));
ddf9c536
ID
16331 err_printf(m, " Power: %s\n",
16332 error->transcoder[i].power_domain_on ? "on" : "off");
63b66e5b
CW
16333 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
16334 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
16335 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
16336 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
16337 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
16338 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
16339 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
16340 }
c4a1d9e4 16341}
e2fcdaa9
VS
16342
16343void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
16344{
16345 struct intel_crtc *crtc;
16346
16347 for_each_intel_crtc(dev, crtc) {
16348 struct intel_unpin_work *work;
e2fcdaa9 16349
5e2d7afc 16350 spin_lock_irq(&dev->event_lock);
e2fcdaa9
VS
16351
16352 work = crtc->unpin_work;
16353
16354 if (work && work->event &&
16355 work->event->base.file_priv == file) {
16356 kfree(work->event);
16357 work->event = NULL;
16358 }
16359
5e2d7afc 16360 spin_unlock_irq(&dev->event_lock);
e2fcdaa9
VS
16361 }
16362}
This page took 4.615678 seconds and 5 git commands to generate.