drm/i915: Use an intermediate variable to avoid repeating ourselves
[linux-2.6-block.git] / drivers / gpu / drm / i915 / intel_display.c
CommitLineData
79e53945
JB
1/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
618563e3 27#include <linux/dmi.h>
c1c7af60
JB
28#include <linux/module.h>
29#include <linux/input.h>
79e53945 30#include <linux/i2c.h>
7662c8bd 31#include <linux/kernel.h>
5a0e3ad6 32#include <linux/slab.h>
9cce37f4 33#include <linux/vgaarb.h>
e0dac65e 34#include <drm/drm_edid.h>
760285e7 35#include <drm/drmP.h>
79e53945 36#include "intel_drv.h"
760285e7 37#include <drm/i915_drm.h>
79e53945 38#include "i915_drv.h"
e5510fac 39#include "i915_trace.h"
c196e1d6 40#include <drm/drm_atomic_helper.h>
760285e7
DH
41#include <drm/drm_dp_helper.h>
42#include <drm/drm_crtc_helper.h>
465c120c
MR
43#include <drm/drm_plane_helper.h>
44#include <drm/drm_rect.h>
c0f372b3 45#include <linux/dma_remapping.h>
79e53945 46
465c120c
MR
47/* Primary plane formats supported by all gen */
48#define COMMON_PRIMARY_FORMATS \
49 DRM_FORMAT_C8, \
50 DRM_FORMAT_RGB565, \
51 DRM_FORMAT_XRGB8888, \
52 DRM_FORMAT_ARGB8888
53
54/* Primary plane formats for gen <= 3 */
55static const uint32_t intel_primary_formats_gen2[] = {
56 COMMON_PRIMARY_FORMATS,
57 DRM_FORMAT_XRGB1555,
58 DRM_FORMAT_ARGB1555,
59};
60
61/* Primary plane formats for gen >= 4 */
62static const uint32_t intel_primary_formats_gen4[] = {
63 COMMON_PRIMARY_FORMATS, \
64 DRM_FORMAT_XBGR8888,
65 DRM_FORMAT_ABGR8888,
66 DRM_FORMAT_XRGB2101010,
67 DRM_FORMAT_ARGB2101010,
68 DRM_FORMAT_XBGR2101010,
69 DRM_FORMAT_ABGR2101010,
70};
71
3d7d6510
MR
72/* Cursor formats */
73static const uint32_t intel_cursor_formats[] = {
74 DRM_FORMAT_ARGB8888,
75};
76
6b383a7f 77static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
79e53945 78
f1f644dc 79static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 80 struct intel_crtc_state *pipe_config);
18442d08 81static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 82 struct intel_crtc_state *pipe_config);
f1f644dc 83
e7457a9a
DL
84static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
85 int x, int y, struct drm_framebuffer *old_fb);
eb1bfe80
JB
86static int intel_framebuffer_init(struct drm_device *dev,
87 struct intel_framebuffer *ifb,
88 struct drm_mode_fb_cmd2 *mode_cmd,
89 struct drm_i915_gem_object *obj);
5b18e57c
DV
90static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
91static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
29407aab 92static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
93 struct intel_link_m_n *m_n,
94 struct intel_link_m_n *m2_n2);
29407aab 95static void ironlake_set_pipeconf(struct drm_crtc *crtc);
229fca97
DV
96static void haswell_set_pipeconf(struct drm_crtc *crtc);
97static void intel_set_pipe_csc(struct drm_crtc *crtc);
d288f65f 98static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 99 const struct intel_crtc_state *pipe_config);
d288f65f 100static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 101 const struct intel_crtc_state *pipe_config);
ea2c67bb
MR
102static void intel_begin_crtc_commit(struct drm_crtc *crtc);
103static void intel_finish_crtc_commit(struct drm_crtc *crtc);
e7457a9a 104
0e32b39c
DA
105static struct intel_encoder *intel_find_encoder(struct intel_connector *connector, int pipe)
106{
107 if (!connector->mst_port)
108 return connector->encoder;
109 else
110 return &connector->mst_port->mst_encoders[pipe]->base;
111}
112
79e53945 113typedef struct {
0206e353 114 int min, max;
79e53945
JB
115} intel_range_t;
116
117typedef struct {
0206e353
AJ
118 int dot_limit;
119 int p2_slow, p2_fast;
79e53945
JB
120} intel_p2_t;
121
d4906093
ML
122typedef struct intel_limit intel_limit_t;
123struct intel_limit {
0206e353
AJ
124 intel_range_t dot, vco, n, m, m1, m2, p, p1;
125 intel_p2_t p2;
d4906093 126};
79e53945 127
d2acd215
DV
128int
129intel_pch_rawclk(struct drm_device *dev)
130{
131 struct drm_i915_private *dev_priv = dev->dev_private;
132
133 WARN_ON(!HAS_PCH_SPLIT(dev));
134
135 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
136}
137
021357ac
CW
138static inline u32 /* units of 100MHz */
139intel_fdi_link_freq(struct drm_device *dev)
140{
8b99e68c
CW
141 if (IS_GEN5(dev)) {
142 struct drm_i915_private *dev_priv = dev->dev_private;
143 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
144 } else
145 return 27;
021357ac
CW
146}
147
5d536e28 148static const intel_limit_t intel_limits_i8xx_dac = {
0206e353 149 .dot = { .min = 25000, .max = 350000 },
9c333719 150 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 151 .n = { .min = 2, .max = 16 },
0206e353
AJ
152 .m = { .min = 96, .max = 140 },
153 .m1 = { .min = 18, .max = 26 },
154 .m2 = { .min = 6, .max = 16 },
155 .p = { .min = 4, .max = 128 },
156 .p1 = { .min = 2, .max = 33 },
273e27ca
EA
157 .p2 = { .dot_limit = 165000,
158 .p2_slow = 4, .p2_fast = 2 },
e4b36699
KP
159};
160
5d536e28
DV
161static const intel_limit_t intel_limits_i8xx_dvo = {
162 .dot = { .min = 25000, .max = 350000 },
9c333719 163 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 164 .n = { .min = 2, .max = 16 },
5d536e28
DV
165 .m = { .min = 96, .max = 140 },
166 .m1 = { .min = 18, .max = 26 },
167 .m2 = { .min = 6, .max = 16 },
168 .p = { .min = 4, .max = 128 },
169 .p1 = { .min = 2, .max = 33 },
170 .p2 = { .dot_limit = 165000,
171 .p2_slow = 4, .p2_fast = 4 },
172};
173
e4b36699 174static const intel_limit_t intel_limits_i8xx_lvds = {
0206e353 175 .dot = { .min = 25000, .max = 350000 },
9c333719 176 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 177 .n = { .min = 2, .max = 16 },
0206e353
AJ
178 .m = { .min = 96, .max = 140 },
179 .m1 = { .min = 18, .max = 26 },
180 .m2 = { .min = 6, .max = 16 },
181 .p = { .min = 4, .max = 128 },
182 .p1 = { .min = 1, .max = 6 },
273e27ca
EA
183 .p2 = { .dot_limit = 165000,
184 .p2_slow = 14, .p2_fast = 7 },
e4b36699 185};
273e27ca 186
e4b36699 187static const intel_limit_t intel_limits_i9xx_sdvo = {
0206e353
AJ
188 .dot = { .min = 20000, .max = 400000 },
189 .vco = { .min = 1400000, .max = 2800000 },
190 .n = { .min = 1, .max = 6 },
191 .m = { .min = 70, .max = 120 },
4f7dfb67
PJ
192 .m1 = { .min = 8, .max = 18 },
193 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
194 .p = { .min = 5, .max = 80 },
195 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
196 .p2 = { .dot_limit = 200000,
197 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
198};
199
200static const intel_limit_t intel_limits_i9xx_lvds = {
0206e353
AJ
201 .dot = { .min = 20000, .max = 400000 },
202 .vco = { .min = 1400000, .max = 2800000 },
203 .n = { .min = 1, .max = 6 },
204 .m = { .min = 70, .max = 120 },
53a7d2d1
PJ
205 .m1 = { .min = 8, .max = 18 },
206 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
207 .p = { .min = 7, .max = 98 },
208 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
209 .p2 = { .dot_limit = 112000,
210 .p2_slow = 14, .p2_fast = 7 },
e4b36699
KP
211};
212
273e27ca 213
e4b36699 214static const intel_limit_t intel_limits_g4x_sdvo = {
273e27ca
EA
215 .dot = { .min = 25000, .max = 270000 },
216 .vco = { .min = 1750000, .max = 3500000},
217 .n = { .min = 1, .max = 4 },
218 .m = { .min = 104, .max = 138 },
219 .m1 = { .min = 17, .max = 23 },
220 .m2 = { .min = 5, .max = 11 },
221 .p = { .min = 10, .max = 30 },
222 .p1 = { .min = 1, .max = 3},
223 .p2 = { .dot_limit = 270000,
224 .p2_slow = 10,
225 .p2_fast = 10
044c7c41 226 },
e4b36699
KP
227};
228
229static const intel_limit_t intel_limits_g4x_hdmi = {
273e27ca
EA
230 .dot = { .min = 22000, .max = 400000 },
231 .vco = { .min = 1750000, .max = 3500000},
232 .n = { .min = 1, .max = 4 },
233 .m = { .min = 104, .max = 138 },
234 .m1 = { .min = 16, .max = 23 },
235 .m2 = { .min = 5, .max = 11 },
236 .p = { .min = 5, .max = 80 },
237 .p1 = { .min = 1, .max = 8},
238 .p2 = { .dot_limit = 165000,
239 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
240};
241
242static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
273e27ca
EA
243 .dot = { .min = 20000, .max = 115000 },
244 .vco = { .min = 1750000, .max = 3500000 },
245 .n = { .min = 1, .max = 3 },
246 .m = { .min = 104, .max = 138 },
247 .m1 = { .min = 17, .max = 23 },
248 .m2 = { .min = 5, .max = 11 },
249 .p = { .min = 28, .max = 112 },
250 .p1 = { .min = 2, .max = 8 },
251 .p2 = { .dot_limit = 0,
252 .p2_slow = 14, .p2_fast = 14
044c7c41 253 },
e4b36699
KP
254};
255
256static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
273e27ca
EA
257 .dot = { .min = 80000, .max = 224000 },
258 .vco = { .min = 1750000, .max = 3500000 },
259 .n = { .min = 1, .max = 3 },
260 .m = { .min = 104, .max = 138 },
261 .m1 = { .min = 17, .max = 23 },
262 .m2 = { .min = 5, .max = 11 },
263 .p = { .min = 14, .max = 42 },
264 .p1 = { .min = 2, .max = 6 },
265 .p2 = { .dot_limit = 0,
266 .p2_slow = 7, .p2_fast = 7
044c7c41 267 },
e4b36699
KP
268};
269
f2b115e6 270static const intel_limit_t intel_limits_pineview_sdvo = {
0206e353
AJ
271 .dot = { .min = 20000, .max = 400000},
272 .vco = { .min = 1700000, .max = 3500000 },
273e27ca 273 /* Pineview's Ncounter is a ring counter */
0206e353
AJ
274 .n = { .min = 3, .max = 6 },
275 .m = { .min = 2, .max = 256 },
273e27ca 276 /* Pineview only has one combined m divider, which we treat as m2. */
0206e353
AJ
277 .m1 = { .min = 0, .max = 0 },
278 .m2 = { .min = 0, .max = 254 },
279 .p = { .min = 5, .max = 80 },
280 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
281 .p2 = { .dot_limit = 200000,
282 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
283};
284
f2b115e6 285static const intel_limit_t intel_limits_pineview_lvds = {
0206e353
AJ
286 .dot = { .min = 20000, .max = 400000 },
287 .vco = { .min = 1700000, .max = 3500000 },
288 .n = { .min = 3, .max = 6 },
289 .m = { .min = 2, .max = 256 },
290 .m1 = { .min = 0, .max = 0 },
291 .m2 = { .min = 0, .max = 254 },
292 .p = { .min = 7, .max = 112 },
293 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
294 .p2 = { .dot_limit = 112000,
295 .p2_slow = 14, .p2_fast = 14 },
e4b36699
KP
296};
297
273e27ca
EA
298/* Ironlake / Sandybridge
299 *
300 * We calculate clock using (register_value + 2) for N/M1/M2, so here
301 * the range value for them is (actual_value - 2).
302 */
b91ad0ec 303static const intel_limit_t intel_limits_ironlake_dac = {
273e27ca
EA
304 .dot = { .min = 25000, .max = 350000 },
305 .vco = { .min = 1760000, .max = 3510000 },
306 .n = { .min = 1, .max = 5 },
307 .m = { .min = 79, .max = 127 },
308 .m1 = { .min = 12, .max = 22 },
309 .m2 = { .min = 5, .max = 9 },
310 .p = { .min = 5, .max = 80 },
311 .p1 = { .min = 1, .max = 8 },
312 .p2 = { .dot_limit = 225000,
313 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
314};
315
b91ad0ec 316static const intel_limit_t intel_limits_ironlake_single_lvds = {
273e27ca
EA
317 .dot = { .min = 25000, .max = 350000 },
318 .vco = { .min = 1760000, .max = 3510000 },
319 .n = { .min = 1, .max = 3 },
320 .m = { .min = 79, .max = 118 },
321 .m1 = { .min = 12, .max = 22 },
322 .m2 = { .min = 5, .max = 9 },
323 .p = { .min = 28, .max = 112 },
324 .p1 = { .min = 2, .max = 8 },
325 .p2 = { .dot_limit = 225000,
326 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
327};
328
329static const intel_limit_t intel_limits_ironlake_dual_lvds = {
273e27ca
EA
330 .dot = { .min = 25000, .max = 350000 },
331 .vco = { .min = 1760000, .max = 3510000 },
332 .n = { .min = 1, .max = 3 },
333 .m = { .min = 79, .max = 127 },
334 .m1 = { .min = 12, .max = 22 },
335 .m2 = { .min = 5, .max = 9 },
336 .p = { .min = 14, .max = 56 },
337 .p1 = { .min = 2, .max = 8 },
338 .p2 = { .dot_limit = 225000,
339 .p2_slow = 7, .p2_fast = 7 },
b91ad0ec
ZW
340};
341
273e27ca 342/* LVDS 100mhz refclk limits. */
b91ad0ec 343static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
273e27ca
EA
344 .dot = { .min = 25000, .max = 350000 },
345 .vco = { .min = 1760000, .max = 3510000 },
346 .n = { .min = 1, .max = 2 },
347 .m = { .min = 79, .max = 126 },
348 .m1 = { .min = 12, .max = 22 },
349 .m2 = { .min = 5, .max = 9 },
350 .p = { .min = 28, .max = 112 },
0206e353 351 .p1 = { .min = 2, .max = 8 },
273e27ca
EA
352 .p2 = { .dot_limit = 225000,
353 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
354};
355
356static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
273e27ca
EA
357 .dot = { .min = 25000, .max = 350000 },
358 .vco = { .min = 1760000, .max = 3510000 },
359 .n = { .min = 1, .max = 3 },
360 .m = { .min = 79, .max = 126 },
361 .m1 = { .min = 12, .max = 22 },
362 .m2 = { .min = 5, .max = 9 },
363 .p = { .min = 14, .max = 42 },
0206e353 364 .p1 = { .min = 2, .max = 6 },
273e27ca
EA
365 .p2 = { .dot_limit = 225000,
366 .p2_slow = 7, .p2_fast = 7 },
4547668a
ZY
367};
368
dc730512 369static const intel_limit_t intel_limits_vlv = {
f01b7962
VS
370 /*
371 * These are the data rate limits (measured in fast clocks)
372 * since those are the strictest limits we have. The fast
373 * clock and actual rate limits are more relaxed, so checking
374 * them would make no difference.
375 */
376 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
75e53986 377 .vco = { .min = 4000000, .max = 6000000 },
a0c4da24 378 .n = { .min = 1, .max = 7 },
a0c4da24
JB
379 .m1 = { .min = 2, .max = 3 },
380 .m2 = { .min = 11, .max = 156 },
b99ab663 381 .p1 = { .min = 2, .max = 3 },
5fdc9c49 382 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
a0c4da24
JB
383};
384
ef9348c8
CML
385static const intel_limit_t intel_limits_chv = {
386 /*
387 * These are the data rate limits (measured in fast clocks)
388 * since those are the strictest limits we have. The fast
389 * clock and actual rate limits are more relaxed, so checking
390 * them would make no difference.
391 */
392 .dot = { .min = 25000 * 5, .max = 540000 * 5},
393 .vco = { .min = 4860000, .max = 6700000 },
394 .n = { .min = 1, .max = 1 },
395 .m1 = { .min = 2, .max = 2 },
396 .m2 = { .min = 24 << 22, .max = 175 << 22 },
397 .p1 = { .min = 2, .max = 4 },
398 .p2 = { .p2_slow = 1, .p2_fast = 14 },
399};
400
6b4bf1c4
VS
401static void vlv_clock(int refclk, intel_clock_t *clock)
402{
403 clock->m = clock->m1 * clock->m2;
404 clock->p = clock->p1 * clock->p2;
ed5ca77e
VS
405 if (WARN_ON(clock->n == 0 || clock->p == 0))
406 return;
fb03ac01
VS
407 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
408 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
6b4bf1c4
VS
409}
410
e0638cdf
PZ
411/**
412 * Returns whether any output on the specified pipe is of the specified type
413 */
4093561b 414bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
e0638cdf 415{
409ee761 416 struct drm_device *dev = crtc->base.dev;
e0638cdf
PZ
417 struct intel_encoder *encoder;
418
409ee761 419 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
e0638cdf
PZ
420 if (encoder->type == type)
421 return true;
422
423 return false;
424}
425
d0737e1d
ACO
426/**
427 * Returns whether any output on the specified pipe will have the specified
428 * type after a staged modeset is complete, i.e., the same as
429 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
430 * encoder->crtc.
431 */
432static bool intel_pipe_will_have_type(struct intel_crtc *crtc, int type)
433{
434 struct drm_device *dev = crtc->base.dev;
435 struct intel_encoder *encoder;
436
437 for_each_intel_encoder(dev, encoder)
438 if (encoder->new_crtc == crtc && encoder->type == type)
439 return true;
440
441 return false;
442}
443
409ee761 444static const intel_limit_t *intel_ironlake_limit(struct intel_crtc *crtc,
1b894b59 445 int refclk)
2c07245f 446{
409ee761 447 struct drm_device *dev = crtc->base.dev;
2c07245f 448 const intel_limit_t *limit;
b91ad0ec 449
d0737e1d 450 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 451 if (intel_is_dual_link_lvds(dev)) {
1b894b59 452 if (refclk == 100000)
b91ad0ec
ZW
453 limit = &intel_limits_ironlake_dual_lvds_100m;
454 else
455 limit = &intel_limits_ironlake_dual_lvds;
456 } else {
1b894b59 457 if (refclk == 100000)
b91ad0ec
ZW
458 limit = &intel_limits_ironlake_single_lvds_100m;
459 else
460 limit = &intel_limits_ironlake_single_lvds;
461 }
c6bb3538 462 } else
b91ad0ec 463 limit = &intel_limits_ironlake_dac;
2c07245f
ZW
464
465 return limit;
466}
467
409ee761 468static const intel_limit_t *intel_g4x_limit(struct intel_crtc *crtc)
044c7c41 469{
409ee761 470 struct drm_device *dev = crtc->base.dev;
044c7c41
ML
471 const intel_limit_t *limit;
472
d0737e1d 473 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 474 if (intel_is_dual_link_lvds(dev))
e4b36699 475 limit = &intel_limits_g4x_dual_channel_lvds;
044c7c41 476 else
e4b36699 477 limit = &intel_limits_g4x_single_channel_lvds;
d0737e1d
ACO
478 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI) ||
479 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_ANALOG)) {
e4b36699 480 limit = &intel_limits_g4x_hdmi;
d0737e1d 481 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO)) {
e4b36699 482 limit = &intel_limits_g4x_sdvo;
044c7c41 483 } else /* The option is for other outputs */
e4b36699 484 limit = &intel_limits_i9xx_sdvo;
044c7c41
ML
485
486 return limit;
487}
488
409ee761 489static const intel_limit_t *intel_limit(struct intel_crtc *crtc, int refclk)
79e53945 490{
409ee761 491 struct drm_device *dev = crtc->base.dev;
79e53945
JB
492 const intel_limit_t *limit;
493
bad720ff 494 if (HAS_PCH_SPLIT(dev))
1b894b59 495 limit = intel_ironlake_limit(crtc, refclk);
2c07245f 496 else if (IS_G4X(dev)) {
044c7c41 497 limit = intel_g4x_limit(crtc);
f2b115e6 498 } else if (IS_PINEVIEW(dev)) {
d0737e1d 499 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
f2b115e6 500 limit = &intel_limits_pineview_lvds;
2177832f 501 else
f2b115e6 502 limit = &intel_limits_pineview_sdvo;
ef9348c8
CML
503 } else if (IS_CHERRYVIEW(dev)) {
504 limit = &intel_limits_chv;
a0c4da24 505 } else if (IS_VALLEYVIEW(dev)) {
dc730512 506 limit = &intel_limits_vlv;
a6c45cf0 507 } else if (!IS_GEN2(dev)) {
d0737e1d 508 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
a6c45cf0
CW
509 limit = &intel_limits_i9xx_lvds;
510 else
511 limit = &intel_limits_i9xx_sdvo;
79e53945 512 } else {
d0737e1d 513 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
e4b36699 514 limit = &intel_limits_i8xx_lvds;
d0737e1d 515 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
e4b36699 516 limit = &intel_limits_i8xx_dvo;
5d536e28
DV
517 else
518 limit = &intel_limits_i8xx_dac;
79e53945
JB
519 }
520 return limit;
521}
522
f2b115e6
AJ
523/* m1 is reserved as 0 in Pineview, n is a ring counter */
524static void pineview_clock(int refclk, intel_clock_t *clock)
79e53945 525{
2177832f
SL
526 clock->m = clock->m2 + 2;
527 clock->p = clock->p1 * clock->p2;
ed5ca77e
VS
528 if (WARN_ON(clock->n == 0 || clock->p == 0))
529 return;
fb03ac01
VS
530 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
531 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
2177832f
SL
532}
533
7429e9d4
DV
534static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
535{
536 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
537}
538
ac58c3f0 539static void i9xx_clock(int refclk, intel_clock_t *clock)
2177832f 540{
7429e9d4 541 clock->m = i9xx_dpll_compute_m(clock);
79e53945 542 clock->p = clock->p1 * clock->p2;
ed5ca77e
VS
543 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
544 return;
fb03ac01
VS
545 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
546 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
79e53945
JB
547}
548
ef9348c8
CML
549static void chv_clock(int refclk, intel_clock_t *clock)
550{
551 clock->m = clock->m1 * clock->m2;
552 clock->p = clock->p1 * clock->p2;
553 if (WARN_ON(clock->n == 0 || clock->p == 0))
554 return;
555 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
556 clock->n << 22);
557 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
558}
559
7c04d1d9 560#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
79e53945
JB
561/**
562 * Returns whether the given set of divisors are valid for a given refclk with
563 * the given connectors.
564 */
565
1b894b59
CW
566static bool intel_PLL_is_valid(struct drm_device *dev,
567 const intel_limit_t *limit,
568 const intel_clock_t *clock)
79e53945 569{
f01b7962
VS
570 if (clock->n < limit->n.min || limit->n.max < clock->n)
571 INTELPllInvalid("n out of range\n");
79e53945 572 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
0206e353 573 INTELPllInvalid("p1 out of range\n");
79e53945 574 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
0206e353 575 INTELPllInvalid("m2 out of range\n");
79e53945 576 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
0206e353 577 INTELPllInvalid("m1 out of range\n");
f01b7962
VS
578
579 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
580 if (clock->m1 <= clock->m2)
581 INTELPllInvalid("m1 <= m2\n");
582
583 if (!IS_VALLEYVIEW(dev)) {
584 if (clock->p < limit->p.min || limit->p.max < clock->p)
585 INTELPllInvalid("p out of range\n");
586 if (clock->m < limit->m.min || limit->m.max < clock->m)
587 INTELPllInvalid("m out of range\n");
588 }
589
79e53945 590 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
0206e353 591 INTELPllInvalid("vco out of range\n");
79e53945
JB
592 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
593 * connector, etc., rather than just a single range.
594 */
595 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
0206e353 596 INTELPllInvalid("dot out of range\n");
79e53945
JB
597
598 return true;
599}
600
d4906093 601static bool
a919ff14 602i9xx_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
cec2f356
SP
603 int target, int refclk, intel_clock_t *match_clock,
604 intel_clock_t *best_clock)
79e53945 605{
a919ff14 606 struct drm_device *dev = crtc->base.dev;
79e53945 607 intel_clock_t clock;
79e53945
JB
608 int err = target;
609
d0737e1d 610 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
79e53945 611 /*
a210b028
DV
612 * For LVDS just rely on its current settings for dual-channel.
613 * We haven't figured out how to reliably set up different
614 * single/dual channel state, if we even can.
79e53945 615 */
1974cad0 616 if (intel_is_dual_link_lvds(dev))
79e53945
JB
617 clock.p2 = limit->p2.p2_fast;
618 else
619 clock.p2 = limit->p2.p2_slow;
620 } else {
621 if (target < limit->p2.dot_limit)
622 clock.p2 = limit->p2.p2_slow;
623 else
624 clock.p2 = limit->p2.p2_fast;
625 }
626
0206e353 627 memset(best_clock, 0, sizeof(*best_clock));
79e53945 628
42158660
ZY
629 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
630 clock.m1++) {
631 for (clock.m2 = limit->m2.min;
632 clock.m2 <= limit->m2.max; clock.m2++) {
c0efc387 633 if (clock.m2 >= clock.m1)
42158660
ZY
634 break;
635 for (clock.n = limit->n.min;
636 clock.n <= limit->n.max; clock.n++) {
637 for (clock.p1 = limit->p1.min;
638 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
639 int this_err;
640
ac58c3f0
DV
641 i9xx_clock(refclk, &clock);
642 if (!intel_PLL_is_valid(dev, limit,
643 &clock))
644 continue;
645 if (match_clock &&
646 clock.p != match_clock->p)
647 continue;
648
649 this_err = abs(clock.dot - target);
650 if (this_err < err) {
651 *best_clock = clock;
652 err = this_err;
653 }
654 }
655 }
656 }
657 }
658
659 return (err != target);
660}
661
662static bool
a919ff14 663pnv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
ee9300bb
DV
664 int target, int refclk, intel_clock_t *match_clock,
665 intel_clock_t *best_clock)
79e53945 666{
a919ff14 667 struct drm_device *dev = crtc->base.dev;
79e53945 668 intel_clock_t clock;
79e53945
JB
669 int err = target;
670
d0737e1d 671 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
79e53945 672 /*
a210b028
DV
673 * For LVDS just rely on its current settings for dual-channel.
674 * We haven't figured out how to reliably set up different
675 * single/dual channel state, if we even can.
79e53945 676 */
1974cad0 677 if (intel_is_dual_link_lvds(dev))
79e53945
JB
678 clock.p2 = limit->p2.p2_fast;
679 else
680 clock.p2 = limit->p2.p2_slow;
681 } else {
682 if (target < limit->p2.dot_limit)
683 clock.p2 = limit->p2.p2_slow;
684 else
685 clock.p2 = limit->p2.p2_fast;
686 }
687
0206e353 688 memset(best_clock, 0, sizeof(*best_clock));
79e53945 689
42158660
ZY
690 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
691 clock.m1++) {
692 for (clock.m2 = limit->m2.min;
693 clock.m2 <= limit->m2.max; clock.m2++) {
42158660
ZY
694 for (clock.n = limit->n.min;
695 clock.n <= limit->n.max; clock.n++) {
696 for (clock.p1 = limit->p1.min;
697 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
698 int this_err;
699
ac58c3f0 700 pineview_clock(refclk, &clock);
1b894b59
CW
701 if (!intel_PLL_is_valid(dev, limit,
702 &clock))
79e53945 703 continue;
cec2f356
SP
704 if (match_clock &&
705 clock.p != match_clock->p)
706 continue;
79e53945
JB
707
708 this_err = abs(clock.dot - target);
709 if (this_err < err) {
710 *best_clock = clock;
711 err = this_err;
712 }
713 }
714 }
715 }
716 }
717
718 return (err != target);
719}
720
d4906093 721static bool
a919ff14 722g4x_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
ee9300bb
DV
723 int target, int refclk, intel_clock_t *match_clock,
724 intel_clock_t *best_clock)
d4906093 725{
a919ff14 726 struct drm_device *dev = crtc->base.dev;
d4906093
ML
727 intel_clock_t clock;
728 int max_n;
729 bool found;
6ba770dc
AJ
730 /* approximately equals target * 0.00585 */
731 int err_most = (target >> 8) + (target >> 9);
d4906093
ML
732 found = false;
733
d0737e1d 734 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 735 if (intel_is_dual_link_lvds(dev))
d4906093
ML
736 clock.p2 = limit->p2.p2_fast;
737 else
738 clock.p2 = limit->p2.p2_slow;
739 } else {
740 if (target < limit->p2.dot_limit)
741 clock.p2 = limit->p2.p2_slow;
742 else
743 clock.p2 = limit->p2.p2_fast;
744 }
745
746 memset(best_clock, 0, sizeof(*best_clock));
747 max_n = limit->n.max;
f77f13e2 748 /* based on hardware requirement, prefer smaller n to precision */
d4906093 749 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
f77f13e2 750 /* based on hardware requirement, prefere larger m1,m2 */
d4906093
ML
751 for (clock.m1 = limit->m1.max;
752 clock.m1 >= limit->m1.min; clock.m1--) {
753 for (clock.m2 = limit->m2.max;
754 clock.m2 >= limit->m2.min; clock.m2--) {
755 for (clock.p1 = limit->p1.max;
756 clock.p1 >= limit->p1.min; clock.p1--) {
757 int this_err;
758
ac58c3f0 759 i9xx_clock(refclk, &clock);
1b894b59
CW
760 if (!intel_PLL_is_valid(dev, limit,
761 &clock))
d4906093 762 continue;
1b894b59
CW
763
764 this_err = abs(clock.dot - target);
d4906093
ML
765 if (this_err < err_most) {
766 *best_clock = clock;
767 err_most = this_err;
768 max_n = clock.n;
769 found = true;
770 }
771 }
772 }
773 }
774 }
2c07245f
ZW
775 return found;
776}
777
a0c4da24 778static bool
a919ff14 779vlv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
ee9300bb
DV
780 int target, int refclk, intel_clock_t *match_clock,
781 intel_clock_t *best_clock)
a0c4da24 782{
a919ff14 783 struct drm_device *dev = crtc->base.dev;
6b4bf1c4 784 intel_clock_t clock;
69e4f900 785 unsigned int bestppm = 1000000;
27e639bf
VS
786 /* min update 19.2 MHz */
787 int max_n = min(limit->n.max, refclk / 19200);
49e497ef 788 bool found = false;
a0c4da24 789
6b4bf1c4
VS
790 target *= 5; /* fast clock */
791
792 memset(best_clock, 0, sizeof(*best_clock));
a0c4da24
JB
793
794 /* based on hardware requirement, prefer smaller n to precision */
27e639bf 795 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
811bbf05 796 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
889059d8 797 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
c1a9ae43 798 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
6b4bf1c4 799 clock.p = clock.p1 * clock.p2;
a0c4da24 800 /* based on hardware requirement, prefer bigger m1,m2 values */
6b4bf1c4 801 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
69e4f900
VS
802 unsigned int ppm, diff;
803
6b4bf1c4
VS
804 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
805 refclk * clock.m1);
806
807 vlv_clock(refclk, &clock);
43b0ac53 808
f01b7962
VS
809 if (!intel_PLL_is_valid(dev, limit,
810 &clock))
43b0ac53
VS
811 continue;
812
6b4bf1c4
VS
813 diff = abs(clock.dot - target);
814 ppm = div_u64(1000000ULL * diff, target);
815
816 if (ppm < 100 && clock.p > best_clock->p) {
43b0ac53 817 bestppm = 0;
6b4bf1c4 818 *best_clock = clock;
49e497ef 819 found = true;
43b0ac53 820 }
6b4bf1c4 821
c686122c 822 if (bestppm >= 10 && ppm < bestppm - 10) {
69e4f900 823 bestppm = ppm;
6b4bf1c4 824 *best_clock = clock;
49e497ef 825 found = true;
a0c4da24
JB
826 }
827 }
828 }
829 }
830 }
a0c4da24 831
49e497ef 832 return found;
a0c4da24 833}
a4fc5ed6 834
ef9348c8 835static bool
a919ff14 836chv_find_best_dpll(const intel_limit_t *limit, struct intel_crtc *crtc,
ef9348c8
CML
837 int target, int refclk, intel_clock_t *match_clock,
838 intel_clock_t *best_clock)
839{
a919ff14 840 struct drm_device *dev = crtc->base.dev;
ef9348c8
CML
841 intel_clock_t clock;
842 uint64_t m2;
843 int found = false;
844
845 memset(best_clock, 0, sizeof(*best_clock));
846
847 /*
848 * Based on hardware doc, the n always set to 1, and m1 always
849 * set to 2. If requires to support 200Mhz refclk, we need to
850 * revisit this because n may not 1 anymore.
851 */
852 clock.n = 1, clock.m1 = 2;
853 target *= 5; /* fast clock */
854
855 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
856 for (clock.p2 = limit->p2.p2_fast;
857 clock.p2 >= limit->p2.p2_slow;
858 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
859
860 clock.p = clock.p1 * clock.p2;
861
862 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
863 clock.n) << 22, refclk * clock.m1);
864
865 if (m2 > INT_MAX/clock.m1)
866 continue;
867
868 clock.m2 = m2;
869
870 chv_clock(refclk, &clock);
871
872 if (!intel_PLL_is_valid(dev, limit, &clock))
873 continue;
874
875 /* based on hardware requirement, prefer bigger p
876 */
877 if (clock.p > best_clock->p) {
878 *best_clock = clock;
879 found = true;
880 }
881 }
882 }
883
884 return found;
885}
886
20ddf665
VS
887bool intel_crtc_active(struct drm_crtc *crtc)
888{
889 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
890
891 /* Be paranoid as we can arrive here with only partial
892 * state retrieved from the hardware during setup.
893 *
241bfc38 894 * We can ditch the adjusted_mode.crtc_clock check as soon
20ddf665
VS
895 * as Haswell has gained clock readout/fastboot support.
896 *
66e514c1 897 * We can ditch the crtc->primary->fb check as soon as we can
20ddf665
VS
898 * properly reconstruct framebuffers.
899 */
f4510a27 900 return intel_crtc->active && crtc->primary->fb &&
6e3c9717 901 intel_crtc->config->base.adjusted_mode.crtc_clock;
20ddf665
VS
902}
903
a5c961d1
PZ
904enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
905 enum pipe pipe)
906{
907 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
908 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
909
6e3c9717 910 return intel_crtc->config->cpu_transcoder;
a5c961d1
PZ
911}
912
fbf49ea2
VS
913static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
914{
915 struct drm_i915_private *dev_priv = dev->dev_private;
916 u32 reg = PIPEDSL(pipe);
917 u32 line1, line2;
918 u32 line_mask;
919
920 if (IS_GEN2(dev))
921 line_mask = DSL_LINEMASK_GEN2;
922 else
923 line_mask = DSL_LINEMASK_GEN3;
924
925 line1 = I915_READ(reg) & line_mask;
926 mdelay(5);
927 line2 = I915_READ(reg) & line_mask;
928
929 return line1 == line2;
930}
931
ab7ad7f6
KP
932/*
933 * intel_wait_for_pipe_off - wait for pipe to turn off
575f7ab7 934 * @crtc: crtc whose pipe to wait for
9d0498a2
JB
935 *
936 * After disabling a pipe, we can't wait for vblank in the usual way,
937 * spinning on the vblank interrupt status bit, since we won't actually
938 * see an interrupt when the pipe is disabled.
939 *
ab7ad7f6
KP
940 * On Gen4 and above:
941 * wait for the pipe register state bit to turn off
942 *
943 * Otherwise:
944 * wait for the display line value to settle (it usually
945 * ends up stopping at the start of the next frame).
58e10eb9 946 *
9d0498a2 947 */
575f7ab7 948static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
9d0498a2 949{
575f7ab7 950 struct drm_device *dev = crtc->base.dev;
9d0498a2 951 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 952 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 953 enum pipe pipe = crtc->pipe;
ab7ad7f6
KP
954
955 if (INTEL_INFO(dev)->gen >= 4) {
702e7a56 956 int reg = PIPECONF(cpu_transcoder);
ab7ad7f6
KP
957
958 /* Wait for the Pipe State to go off */
58e10eb9
CW
959 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
960 100))
284637d9 961 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 962 } else {
ab7ad7f6 963 /* Wait for the display line to settle */
fbf49ea2 964 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
284637d9 965 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 966 }
79e53945
JB
967}
968
b0ea7d37
DL
969/*
970 * ibx_digital_port_connected - is the specified port connected?
971 * @dev_priv: i915 private structure
972 * @port: the port to test
973 *
974 * Returns true if @port is connected, false otherwise.
975 */
976bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
977 struct intel_digital_port *port)
978{
979 u32 bit;
980
c36346e3 981 if (HAS_PCH_IBX(dev_priv->dev)) {
eba905b2 982 switch (port->port) {
c36346e3
DL
983 case PORT_B:
984 bit = SDE_PORTB_HOTPLUG;
985 break;
986 case PORT_C:
987 bit = SDE_PORTC_HOTPLUG;
988 break;
989 case PORT_D:
990 bit = SDE_PORTD_HOTPLUG;
991 break;
992 default:
993 return true;
994 }
995 } else {
eba905b2 996 switch (port->port) {
c36346e3
DL
997 case PORT_B:
998 bit = SDE_PORTB_HOTPLUG_CPT;
999 break;
1000 case PORT_C:
1001 bit = SDE_PORTC_HOTPLUG_CPT;
1002 break;
1003 case PORT_D:
1004 bit = SDE_PORTD_HOTPLUG_CPT;
1005 break;
1006 default:
1007 return true;
1008 }
b0ea7d37
DL
1009 }
1010
1011 return I915_READ(SDEISR) & bit;
1012}
1013
b24e7179
JB
1014static const char *state_string(bool enabled)
1015{
1016 return enabled ? "on" : "off";
1017}
1018
1019/* Only for pre-ILK configs */
55607e8a
DV
1020void assert_pll(struct drm_i915_private *dev_priv,
1021 enum pipe pipe, bool state)
b24e7179
JB
1022{
1023 int reg;
1024 u32 val;
1025 bool cur_state;
1026
1027 reg = DPLL(pipe);
1028 val = I915_READ(reg);
1029 cur_state = !!(val & DPLL_VCO_ENABLE);
e2c719b7 1030 I915_STATE_WARN(cur_state != state,
b24e7179
JB
1031 "PLL state assertion failure (expected %s, current %s)\n",
1032 state_string(state), state_string(cur_state));
1033}
b24e7179 1034
23538ef1
JN
1035/* XXX: the dsi pll is shared between MIPI DSI ports */
1036static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1037{
1038 u32 val;
1039 bool cur_state;
1040
1041 mutex_lock(&dev_priv->dpio_lock);
1042 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1043 mutex_unlock(&dev_priv->dpio_lock);
1044
1045 cur_state = val & DSI_PLL_VCO_EN;
e2c719b7 1046 I915_STATE_WARN(cur_state != state,
23538ef1
JN
1047 "DSI PLL state assertion failure (expected %s, current %s)\n",
1048 state_string(state), state_string(cur_state));
1049}
1050#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1051#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1052
55607e8a 1053struct intel_shared_dpll *
e2b78267
DV
1054intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
1055{
1056 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1057
6e3c9717 1058 if (crtc->config->shared_dpll < 0)
e2b78267
DV
1059 return NULL;
1060
6e3c9717 1061 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
e2b78267
DV
1062}
1063
040484af 1064/* For ILK+ */
55607e8a
DV
1065void assert_shared_dpll(struct drm_i915_private *dev_priv,
1066 struct intel_shared_dpll *pll,
1067 bool state)
040484af 1068{
040484af 1069 bool cur_state;
5358901f 1070 struct intel_dpll_hw_state hw_state;
040484af 1071
92b27b08 1072 if (WARN (!pll,
46edb027 1073 "asserting DPLL %s with no DPLL\n", state_string(state)))
ee7b9f93 1074 return;
ee7b9f93 1075
5358901f 1076 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
e2c719b7 1077 I915_STATE_WARN(cur_state != state,
5358901f
DV
1078 "%s assertion failure (expected %s, current %s)\n",
1079 pll->name, state_string(state), state_string(cur_state));
040484af 1080}
040484af
JB
1081
1082static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1083 enum pipe pipe, bool state)
1084{
1085 int reg;
1086 u32 val;
1087 bool cur_state;
ad80a810
PZ
1088 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1089 pipe);
040484af 1090
affa9354
PZ
1091 if (HAS_DDI(dev_priv->dev)) {
1092 /* DDI does not have a specific FDI_TX register */
ad80a810 1093 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
bf507ef7 1094 val = I915_READ(reg);
ad80a810 1095 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
bf507ef7
ED
1096 } else {
1097 reg = FDI_TX_CTL(pipe);
1098 val = I915_READ(reg);
1099 cur_state = !!(val & FDI_TX_ENABLE);
1100 }
e2c719b7 1101 I915_STATE_WARN(cur_state != state,
040484af
JB
1102 "FDI TX state assertion failure (expected %s, current %s)\n",
1103 state_string(state), state_string(cur_state));
1104}
1105#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1106#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1107
1108static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1109 enum pipe pipe, bool state)
1110{
1111 int reg;
1112 u32 val;
1113 bool cur_state;
1114
d63fa0dc
PZ
1115 reg = FDI_RX_CTL(pipe);
1116 val = I915_READ(reg);
1117 cur_state = !!(val & FDI_RX_ENABLE);
e2c719b7 1118 I915_STATE_WARN(cur_state != state,
040484af
JB
1119 "FDI RX state assertion failure (expected %s, current %s)\n",
1120 state_string(state), state_string(cur_state));
1121}
1122#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1123#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1124
1125static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1126 enum pipe pipe)
1127{
1128 int reg;
1129 u32 val;
1130
1131 /* ILK FDI PLL is always enabled */
3d13ef2e 1132 if (INTEL_INFO(dev_priv->dev)->gen == 5)
040484af
JB
1133 return;
1134
bf507ef7 1135 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
affa9354 1136 if (HAS_DDI(dev_priv->dev))
bf507ef7
ED
1137 return;
1138
040484af
JB
1139 reg = FDI_TX_CTL(pipe);
1140 val = I915_READ(reg);
e2c719b7 1141 I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
040484af
JB
1142}
1143
55607e8a
DV
1144void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1145 enum pipe pipe, bool state)
040484af
JB
1146{
1147 int reg;
1148 u32 val;
55607e8a 1149 bool cur_state;
040484af
JB
1150
1151 reg = FDI_RX_CTL(pipe);
1152 val = I915_READ(reg);
55607e8a 1153 cur_state = !!(val & FDI_RX_PLL_ENABLE);
e2c719b7 1154 I915_STATE_WARN(cur_state != state,
55607e8a
DV
1155 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1156 state_string(state), state_string(cur_state));
040484af
JB
1157}
1158
b680c37a
DV
1159void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1160 enum pipe pipe)
ea0760cf 1161{
bedd4dba
JN
1162 struct drm_device *dev = dev_priv->dev;
1163 int pp_reg;
ea0760cf
JB
1164 u32 val;
1165 enum pipe panel_pipe = PIPE_A;
0de3b485 1166 bool locked = true;
ea0760cf 1167
bedd4dba
JN
1168 if (WARN_ON(HAS_DDI(dev)))
1169 return;
1170
1171 if (HAS_PCH_SPLIT(dev)) {
1172 u32 port_sel;
1173
ea0760cf 1174 pp_reg = PCH_PP_CONTROL;
bedd4dba
JN
1175 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1176
1177 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1178 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1179 panel_pipe = PIPE_B;
1180 /* XXX: else fix for eDP */
1181 } else if (IS_VALLEYVIEW(dev)) {
1182 /* presumably write lock depends on pipe, not port select */
1183 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1184 panel_pipe = pipe;
ea0760cf
JB
1185 } else {
1186 pp_reg = PP_CONTROL;
bedd4dba
JN
1187 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1188 panel_pipe = PIPE_B;
ea0760cf
JB
1189 }
1190
1191 val = I915_READ(pp_reg);
1192 if (!(val & PANEL_POWER_ON) ||
ec49ba2d 1193 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
ea0760cf
JB
1194 locked = false;
1195
e2c719b7 1196 I915_STATE_WARN(panel_pipe == pipe && locked,
ea0760cf 1197 "panel assertion failure, pipe %c regs locked\n",
9db4a9c7 1198 pipe_name(pipe));
ea0760cf
JB
1199}
1200
93ce0ba6
JN
1201static void assert_cursor(struct drm_i915_private *dev_priv,
1202 enum pipe pipe, bool state)
1203{
1204 struct drm_device *dev = dev_priv->dev;
1205 bool cur_state;
1206
d9d82081 1207 if (IS_845G(dev) || IS_I865G(dev))
93ce0ba6 1208 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
d9d82081 1209 else
5efb3e28 1210 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
93ce0ba6 1211
e2c719b7 1212 I915_STATE_WARN(cur_state != state,
93ce0ba6
JN
1213 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1214 pipe_name(pipe), state_string(state), state_string(cur_state));
1215}
1216#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1217#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1218
b840d907
JB
1219void assert_pipe(struct drm_i915_private *dev_priv,
1220 enum pipe pipe, bool state)
b24e7179
JB
1221{
1222 int reg;
1223 u32 val;
63d7bbe9 1224 bool cur_state;
702e7a56
PZ
1225 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1226 pipe);
b24e7179 1227
b6b5d049
VS
1228 /* if we need the pipe quirk it must be always on */
1229 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1230 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
8e636784
DV
1231 state = true;
1232
f458ebbc 1233 if (!intel_display_power_is_enabled(dev_priv,
b97186f0 1234 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
69310161
PZ
1235 cur_state = false;
1236 } else {
1237 reg = PIPECONF(cpu_transcoder);
1238 val = I915_READ(reg);
1239 cur_state = !!(val & PIPECONF_ENABLE);
1240 }
1241
e2c719b7 1242 I915_STATE_WARN(cur_state != state,
63d7bbe9 1243 "pipe %c assertion failure (expected %s, current %s)\n",
9db4a9c7 1244 pipe_name(pipe), state_string(state), state_string(cur_state));
b24e7179
JB
1245}
1246
931872fc
CW
1247static void assert_plane(struct drm_i915_private *dev_priv,
1248 enum plane plane, bool state)
b24e7179
JB
1249{
1250 int reg;
1251 u32 val;
931872fc 1252 bool cur_state;
b24e7179
JB
1253
1254 reg = DSPCNTR(plane);
1255 val = I915_READ(reg);
931872fc 1256 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
e2c719b7 1257 I915_STATE_WARN(cur_state != state,
931872fc
CW
1258 "plane %c assertion failure (expected %s, current %s)\n",
1259 plane_name(plane), state_string(state), state_string(cur_state));
b24e7179
JB
1260}
1261
931872fc
CW
1262#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1263#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1264
b24e7179
JB
1265static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1266 enum pipe pipe)
1267{
653e1026 1268 struct drm_device *dev = dev_priv->dev;
b24e7179
JB
1269 int reg, i;
1270 u32 val;
1271 int cur_pipe;
1272
653e1026
VS
1273 /* Primary planes are fixed to pipes on gen4+ */
1274 if (INTEL_INFO(dev)->gen >= 4) {
28c05794
AJ
1275 reg = DSPCNTR(pipe);
1276 val = I915_READ(reg);
e2c719b7 1277 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
28c05794
AJ
1278 "plane %c assertion failure, should be disabled but not\n",
1279 plane_name(pipe));
19ec1358 1280 return;
28c05794 1281 }
19ec1358 1282
b24e7179 1283 /* Need to check both planes against the pipe */
055e393f 1284 for_each_pipe(dev_priv, i) {
b24e7179
JB
1285 reg = DSPCNTR(i);
1286 val = I915_READ(reg);
1287 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1288 DISPPLANE_SEL_PIPE_SHIFT;
e2c719b7 1289 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
9db4a9c7
JB
1290 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1291 plane_name(i), pipe_name(pipe));
b24e7179
JB
1292 }
1293}
1294
19332d7a
JB
1295static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1296 enum pipe pipe)
1297{
20674eef 1298 struct drm_device *dev = dev_priv->dev;
1fe47785 1299 int reg, sprite;
19332d7a
JB
1300 u32 val;
1301
7feb8b88
DL
1302 if (INTEL_INFO(dev)->gen >= 9) {
1303 for_each_sprite(pipe, sprite) {
1304 val = I915_READ(PLANE_CTL(pipe, sprite));
e2c719b7 1305 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
7feb8b88
DL
1306 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1307 sprite, pipe_name(pipe));
1308 }
1309 } else if (IS_VALLEYVIEW(dev)) {
1fe47785
DL
1310 for_each_sprite(pipe, sprite) {
1311 reg = SPCNTR(pipe, sprite);
20674eef 1312 val = I915_READ(reg);
e2c719b7 1313 I915_STATE_WARN(val & SP_ENABLE,
20674eef 1314 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1fe47785 1315 sprite_name(pipe, sprite), pipe_name(pipe));
20674eef
VS
1316 }
1317 } else if (INTEL_INFO(dev)->gen >= 7) {
1318 reg = SPRCTL(pipe);
19332d7a 1319 val = I915_READ(reg);
e2c719b7 1320 I915_STATE_WARN(val & SPRITE_ENABLE,
06da8da2 1321 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef
VS
1322 plane_name(pipe), pipe_name(pipe));
1323 } else if (INTEL_INFO(dev)->gen >= 5) {
1324 reg = DVSCNTR(pipe);
19332d7a 1325 val = I915_READ(reg);
e2c719b7 1326 I915_STATE_WARN(val & DVS_ENABLE,
06da8da2 1327 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef 1328 plane_name(pipe), pipe_name(pipe));
19332d7a
JB
1329 }
1330}
1331
08c71e5e
VS
1332static void assert_vblank_disabled(struct drm_crtc *crtc)
1333{
e2c719b7 1334 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
08c71e5e
VS
1335 drm_crtc_vblank_put(crtc);
1336}
1337
89eff4be 1338static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
92f2584a
JB
1339{
1340 u32 val;
1341 bool enabled;
1342
e2c719b7 1343 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
9d82aa17 1344
92f2584a
JB
1345 val = I915_READ(PCH_DREF_CONTROL);
1346 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1347 DREF_SUPERSPREAD_SOURCE_MASK));
e2c719b7 1348 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
92f2584a
JB
1349}
1350
ab9412ba
DV
1351static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1352 enum pipe pipe)
92f2584a
JB
1353{
1354 int reg;
1355 u32 val;
1356 bool enabled;
1357
ab9412ba 1358 reg = PCH_TRANSCONF(pipe);
92f2584a
JB
1359 val = I915_READ(reg);
1360 enabled = !!(val & TRANS_ENABLE);
e2c719b7 1361 I915_STATE_WARN(enabled,
9db4a9c7
JB
1362 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1363 pipe_name(pipe));
92f2584a
JB
1364}
1365
4e634389
KP
1366static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1367 enum pipe pipe, u32 port_sel, u32 val)
f0575e92
KP
1368{
1369 if ((val & DP_PORT_EN) == 0)
1370 return false;
1371
1372 if (HAS_PCH_CPT(dev_priv->dev)) {
1373 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1374 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1375 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1376 return false;
44f37d1f
CML
1377 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1378 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1379 return false;
f0575e92
KP
1380 } else {
1381 if ((val & DP_PIPE_MASK) != (pipe << 30))
1382 return false;
1383 }
1384 return true;
1385}
1386
1519b995
KP
1387static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1388 enum pipe pipe, u32 val)
1389{
dc0fa718 1390 if ((val & SDVO_ENABLE) == 0)
1519b995
KP
1391 return false;
1392
1393 if (HAS_PCH_CPT(dev_priv->dev)) {
dc0fa718 1394 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
1519b995 1395 return false;
44f37d1f
CML
1396 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1397 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1398 return false;
1519b995 1399 } else {
dc0fa718 1400 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
1519b995
KP
1401 return false;
1402 }
1403 return true;
1404}
1405
1406static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1407 enum pipe pipe, u32 val)
1408{
1409 if ((val & LVDS_PORT_EN) == 0)
1410 return false;
1411
1412 if (HAS_PCH_CPT(dev_priv->dev)) {
1413 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1414 return false;
1415 } else {
1416 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1417 return false;
1418 }
1419 return true;
1420}
1421
1422static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1423 enum pipe pipe, u32 val)
1424{
1425 if ((val & ADPA_DAC_ENABLE) == 0)
1426 return false;
1427 if (HAS_PCH_CPT(dev_priv->dev)) {
1428 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1429 return false;
1430 } else {
1431 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1432 return false;
1433 }
1434 return true;
1435}
1436
291906f1 1437static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
f0575e92 1438 enum pipe pipe, int reg, u32 port_sel)
291906f1 1439{
47a05eca 1440 u32 val = I915_READ(reg);
e2c719b7 1441 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
291906f1 1442 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
9db4a9c7 1443 reg, pipe_name(pipe));
de9a35ab 1444
e2c719b7 1445 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
75c5da27 1446 && (val & DP_PIPEB_SELECT),
de9a35ab 1447 "IBX PCH dp port still using transcoder B\n");
291906f1
JB
1448}
1449
1450static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1451 enum pipe pipe, int reg)
1452{
47a05eca 1453 u32 val = I915_READ(reg);
e2c719b7 1454 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
23c99e77 1455 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
9db4a9c7 1456 reg, pipe_name(pipe));
de9a35ab 1457
e2c719b7 1458 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
75c5da27 1459 && (val & SDVO_PIPE_B_SELECT),
de9a35ab 1460 "IBX PCH hdmi port still using transcoder B\n");
291906f1
JB
1461}
1462
1463static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1464 enum pipe pipe)
1465{
1466 int reg;
1467 u32 val;
291906f1 1468
f0575e92
KP
1469 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1470 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1471 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
291906f1
JB
1472
1473 reg = PCH_ADPA;
1474 val = I915_READ(reg);
e2c719b7 1475 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
291906f1 1476 "PCH VGA enabled on transcoder %c, should be disabled\n",
9db4a9c7 1477 pipe_name(pipe));
291906f1
JB
1478
1479 reg = PCH_LVDS;
1480 val = I915_READ(reg);
e2c719b7 1481 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
291906f1 1482 "PCH LVDS enabled on transcoder %c, should be disabled\n",
9db4a9c7 1483 pipe_name(pipe));
291906f1 1484
e2debe91
PZ
1485 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1486 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1487 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
291906f1
JB
1488}
1489
40e9cf64
JB
1490static void intel_init_dpio(struct drm_device *dev)
1491{
1492 struct drm_i915_private *dev_priv = dev->dev_private;
1493
1494 if (!IS_VALLEYVIEW(dev))
1495 return;
1496
a09caddd
CML
1497 /*
1498 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1499 * CHV x1 PHY (DP/HDMI D)
1500 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1501 */
1502 if (IS_CHERRYVIEW(dev)) {
1503 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1504 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1505 } else {
1506 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1507 }
5382f5f3
JB
1508}
1509
d288f65f 1510static void vlv_enable_pll(struct intel_crtc *crtc,
5cec258b 1511 const struct intel_crtc_state *pipe_config)
87442f73 1512{
426115cf
DV
1513 struct drm_device *dev = crtc->base.dev;
1514 struct drm_i915_private *dev_priv = dev->dev_private;
1515 int reg = DPLL(crtc->pipe);
d288f65f 1516 u32 dpll = pipe_config->dpll_hw_state.dpll;
87442f73 1517
426115cf 1518 assert_pipe_disabled(dev_priv, crtc->pipe);
87442f73
DV
1519
1520 /* No really, not for ILK+ */
1521 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1522
1523 /* PLL is protected by panel, make sure we can write it */
6a9e7363 1524 if (IS_MOBILE(dev_priv->dev))
426115cf 1525 assert_panel_unlocked(dev_priv, crtc->pipe);
87442f73 1526
426115cf
DV
1527 I915_WRITE(reg, dpll);
1528 POSTING_READ(reg);
1529 udelay(150);
1530
1531 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1532 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1533
d288f65f 1534 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
426115cf 1535 POSTING_READ(DPLL_MD(crtc->pipe));
87442f73
DV
1536
1537 /* We do this three times for luck */
426115cf 1538 I915_WRITE(reg, dpll);
87442f73
DV
1539 POSTING_READ(reg);
1540 udelay(150); /* wait for warmup */
426115cf 1541 I915_WRITE(reg, dpll);
87442f73
DV
1542 POSTING_READ(reg);
1543 udelay(150); /* wait for warmup */
426115cf 1544 I915_WRITE(reg, dpll);
87442f73
DV
1545 POSTING_READ(reg);
1546 udelay(150); /* wait for warmup */
1547}
1548
d288f65f 1549static void chv_enable_pll(struct intel_crtc *crtc,
5cec258b 1550 const struct intel_crtc_state *pipe_config)
9d556c99
CML
1551{
1552 struct drm_device *dev = crtc->base.dev;
1553 struct drm_i915_private *dev_priv = dev->dev_private;
1554 int pipe = crtc->pipe;
1555 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9d556c99
CML
1556 u32 tmp;
1557
1558 assert_pipe_disabled(dev_priv, crtc->pipe);
1559
1560 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1561
1562 mutex_lock(&dev_priv->dpio_lock);
1563
1564 /* Enable back the 10bit clock to display controller */
1565 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1566 tmp |= DPIO_DCLKP_EN;
1567 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1568
1569 /*
1570 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1571 */
1572 udelay(1);
1573
1574 /* Enable PLL */
d288f65f 1575 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
9d556c99
CML
1576
1577 /* Check PLL is locked */
a11b0703 1578 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
9d556c99
CML
1579 DRM_ERROR("PLL %d failed to lock\n", pipe);
1580
a11b0703 1581 /* not sure when this should be written */
d288f65f 1582 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
a11b0703
VS
1583 POSTING_READ(DPLL_MD(pipe));
1584
9d556c99
CML
1585 mutex_unlock(&dev_priv->dpio_lock);
1586}
1587
1c4e0274
VS
1588static int intel_num_dvo_pipes(struct drm_device *dev)
1589{
1590 struct intel_crtc *crtc;
1591 int count = 0;
1592
1593 for_each_intel_crtc(dev, crtc)
1594 count += crtc->active &&
409ee761 1595 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
1c4e0274
VS
1596
1597 return count;
1598}
1599
66e3d5c0 1600static void i9xx_enable_pll(struct intel_crtc *crtc)
63d7bbe9 1601{
66e3d5c0
DV
1602 struct drm_device *dev = crtc->base.dev;
1603 struct drm_i915_private *dev_priv = dev->dev_private;
1604 int reg = DPLL(crtc->pipe);
6e3c9717 1605 u32 dpll = crtc->config->dpll_hw_state.dpll;
63d7bbe9 1606
66e3d5c0 1607 assert_pipe_disabled(dev_priv, crtc->pipe);
58c6eaa2 1608
63d7bbe9 1609 /* No really, not for ILK+ */
3d13ef2e 1610 BUG_ON(INTEL_INFO(dev)->gen >= 5);
63d7bbe9
JB
1611
1612 /* PLL is protected by panel, make sure we can write it */
66e3d5c0
DV
1613 if (IS_MOBILE(dev) && !IS_I830(dev))
1614 assert_panel_unlocked(dev_priv, crtc->pipe);
63d7bbe9 1615
1c4e0274
VS
1616 /* Enable DVO 2x clock on both PLLs if necessary */
1617 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1618 /*
1619 * It appears to be important that we don't enable this
1620 * for the current pipe before otherwise configuring the
1621 * PLL. No idea how this should be handled if multiple
1622 * DVO outputs are enabled simultaneosly.
1623 */
1624 dpll |= DPLL_DVO_2X_MODE;
1625 I915_WRITE(DPLL(!crtc->pipe),
1626 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1627 }
66e3d5c0
DV
1628
1629 /* Wait for the clocks to stabilize. */
1630 POSTING_READ(reg);
1631 udelay(150);
1632
1633 if (INTEL_INFO(dev)->gen >= 4) {
1634 I915_WRITE(DPLL_MD(crtc->pipe),
6e3c9717 1635 crtc->config->dpll_hw_state.dpll_md);
66e3d5c0
DV
1636 } else {
1637 /* The pixel multiplier can only be updated once the
1638 * DPLL is enabled and the clocks are stable.
1639 *
1640 * So write it again.
1641 */
1642 I915_WRITE(reg, dpll);
1643 }
63d7bbe9
JB
1644
1645 /* We do this three times for luck */
66e3d5c0 1646 I915_WRITE(reg, dpll);
63d7bbe9
JB
1647 POSTING_READ(reg);
1648 udelay(150); /* wait for warmup */
66e3d5c0 1649 I915_WRITE(reg, dpll);
63d7bbe9
JB
1650 POSTING_READ(reg);
1651 udelay(150); /* wait for warmup */
66e3d5c0 1652 I915_WRITE(reg, dpll);
63d7bbe9
JB
1653 POSTING_READ(reg);
1654 udelay(150); /* wait for warmup */
1655}
1656
1657/**
50b44a44 1658 * i9xx_disable_pll - disable a PLL
63d7bbe9
JB
1659 * @dev_priv: i915 private structure
1660 * @pipe: pipe PLL to disable
1661 *
1662 * Disable the PLL for @pipe, making sure the pipe is off first.
1663 *
1664 * Note! This is for pre-ILK only.
1665 */
1c4e0274 1666static void i9xx_disable_pll(struct intel_crtc *crtc)
63d7bbe9 1667{
1c4e0274
VS
1668 struct drm_device *dev = crtc->base.dev;
1669 struct drm_i915_private *dev_priv = dev->dev_private;
1670 enum pipe pipe = crtc->pipe;
1671
1672 /* Disable DVO 2x clock on both PLLs if necessary */
1673 if (IS_I830(dev) &&
409ee761 1674 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
1c4e0274
VS
1675 intel_num_dvo_pipes(dev) == 1) {
1676 I915_WRITE(DPLL(PIPE_B),
1677 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1678 I915_WRITE(DPLL(PIPE_A),
1679 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1680 }
1681
b6b5d049
VS
1682 /* Don't disable pipe or pipe PLLs if needed */
1683 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1684 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
63d7bbe9
JB
1685 return;
1686
1687 /* Make sure the pipe isn't still relying on us */
1688 assert_pipe_disabled(dev_priv, pipe);
1689
50b44a44
DV
1690 I915_WRITE(DPLL(pipe), 0);
1691 POSTING_READ(DPLL(pipe));
63d7bbe9
JB
1692}
1693
f6071166
JB
1694static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1695{
1696 u32 val = 0;
1697
1698 /* Make sure the pipe isn't still relying on us */
1699 assert_pipe_disabled(dev_priv, pipe);
1700
e5cbfbfb
ID
1701 /*
1702 * Leave integrated clock source and reference clock enabled for pipe B.
1703 * The latter is needed for VGA hotplug / manual detection.
1704 */
f6071166 1705 if (pipe == PIPE_B)
e5cbfbfb 1706 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
f6071166
JB
1707 I915_WRITE(DPLL(pipe), val);
1708 POSTING_READ(DPLL(pipe));
076ed3b2
CML
1709
1710}
1711
1712static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1713{
d752048d 1714 enum dpio_channel port = vlv_pipe_to_channel(pipe);
076ed3b2
CML
1715 u32 val;
1716
a11b0703
VS
1717 /* Make sure the pipe isn't still relying on us */
1718 assert_pipe_disabled(dev_priv, pipe);
076ed3b2 1719
a11b0703 1720 /* Set PLL en = 0 */
d17ec4ce 1721 val = DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV;
a11b0703
VS
1722 if (pipe != PIPE_A)
1723 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1724 I915_WRITE(DPLL(pipe), val);
1725 POSTING_READ(DPLL(pipe));
d752048d
VS
1726
1727 mutex_lock(&dev_priv->dpio_lock);
1728
1729 /* Disable 10bit clock to display controller */
1730 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1731 val &= ~DPIO_DCLKP_EN;
1732 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1733
61407f6d
VS
1734 /* disable left/right clock distribution */
1735 if (pipe != PIPE_B) {
1736 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1737 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1738 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1739 } else {
1740 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1741 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1742 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1743 }
1744
d752048d 1745 mutex_unlock(&dev_priv->dpio_lock);
f6071166
JB
1746}
1747
e4607fcf
CML
1748void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1749 struct intel_digital_port *dport)
89b667f8
JB
1750{
1751 u32 port_mask;
00fc31b7 1752 int dpll_reg;
89b667f8 1753
e4607fcf
CML
1754 switch (dport->port) {
1755 case PORT_B:
89b667f8 1756 port_mask = DPLL_PORTB_READY_MASK;
00fc31b7 1757 dpll_reg = DPLL(0);
e4607fcf
CML
1758 break;
1759 case PORT_C:
89b667f8 1760 port_mask = DPLL_PORTC_READY_MASK;
00fc31b7
CML
1761 dpll_reg = DPLL(0);
1762 break;
1763 case PORT_D:
1764 port_mask = DPLL_PORTD_READY_MASK;
1765 dpll_reg = DPIO_PHY_STATUS;
e4607fcf
CML
1766 break;
1767 default:
1768 BUG();
1769 }
89b667f8 1770
00fc31b7 1771 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
89b667f8 1772 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
00fc31b7 1773 port_name(dport->port), I915_READ(dpll_reg));
89b667f8
JB
1774}
1775
b14b1055
DV
1776static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1777{
1778 struct drm_device *dev = crtc->base.dev;
1779 struct drm_i915_private *dev_priv = dev->dev_private;
1780 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1781
be19f0ff
CW
1782 if (WARN_ON(pll == NULL))
1783 return;
1784
3e369b76 1785 WARN_ON(!pll->config.crtc_mask);
b14b1055
DV
1786 if (pll->active == 0) {
1787 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1788 WARN_ON(pll->on);
1789 assert_shared_dpll_disabled(dev_priv, pll);
1790
1791 pll->mode_set(dev_priv, pll);
1792 }
1793}
1794
92f2584a 1795/**
85b3894f 1796 * intel_enable_shared_dpll - enable PCH PLL
92f2584a
JB
1797 * @dev_priv: i915 private structure
1798 * @pipe: pipe PLL to enable
1799 *
1800 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1801 * drives the transcoder clock.
1802 */
85b3894f 1803static void intel_enable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1804{
3d13ef2e
DL
1805 struct drm_device *dev = crtc->base.dev;
1806 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1807 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
92f2584a 1808
87a875bb 1809 if (WARN_ON(pll == NULL))
48da64a8
CW
1810 return;
1811
3e369b76 1812 if (WARN_ON(pll->config.crtc_mask == 0))
48da64a8 1813 return;
ee7b9f93 1814
74dd6928 1815 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
46edb027 1816 pll->name, pll->active, pll->on,
e2b78267 1817 crtc->base.base.id);
92f2584a 1818
cdbd2316
DV
1819 if (pll->active++) {
1820 WARN_ON(!pll->on);
e9d6944e 1821 assert_shared_dpll_enabled(dev_priv, pll);
ee7b9f93
JB
1822 return;
1823 }
f4a091c7 1824 WARN_ON(pll->on);
ee7b9f93 1825
bd2bb1b9
PZ
1826 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1827
46edb027 1828 DRM_DEBUG_KMS("enabling %s\n", pll->name);
e7b903d2 1829 pll->enable(dev_priv, pll);
ee7b9f93 1830 pll->on = true;
92f2584a
JB
1831}
1832
f6daaec2 1833static void intel_disable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1834{
3d13ef2e
DL
1835 struct drm_device *dev = crtc->base.dev;
1836 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1837 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
4c609cb8 1838
92f2584a 1839 /* PCH only available on ILK+ */
3d13ef2e 1840 BUG_ON(INTEL_INFO(dev)->gen < 5);
87a875bb 1841 if (WARN_ON(pll == NULL))
ee7b9f93 1842 return;
92f2584a 1843
3e369b76 1844 if (WARN_ON(pll->config.crtc_mask == 0))
48da64a8 1845 return;
7a419866 1846
46edb027
DV
1847 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1848 pll->name, pll->active, pll->on,
e2b78267 1849 crtc->base.base.id);
7a419866 1850
48da64a8 1851 if (WARN_ON(pll->active == 0)) {
e9d6944e 1852 assert_shared_dpll_disabled(dev_priv, pll);
48da64a8
CW
1853 return;
1854 }
1855
e9d6944e 1856 assert_shared_dpll_enabled(dev_priv, pll);
f4a091c7 1857 WARN_ON(!pll->on);
cdbd2316 1858 if (--pll->active)
7a419866 1859 return;
ee7b9f93 1860
46edb027 1861 DRM_DEBUG_KMS("disabling %s\n", pll->name);
e7b903d2 1862 pll->disable(dev_priv, pll);
ee7b9f93 1863 pll->on = false;
bd2bb1b9
PZ
1864
1865 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
92f2584a
JB
1866}
1867
b8a4f404
PZ
1868static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1869 enum pipe pipe)
040484af 1870{
23670b32 1871 struct drm_device *dev = dev_priv->dev;
7c26e5c6 1872 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e2b78267 1873 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
23670b32 1874 uint32_t reg, val, pipeconf_val;
040484af
JB
1875
1876 /* PCH only available on ILK+ */
55522f37 1877 BUG_ON(!HAS_PCH_SPLIT(dev));
040484af
JB
1878
1879 /* Make sure PCH DPLL is enabled */
e72f9fbf 1880 assert_shared_dpll_enabled(dev_priv,
e9d6944e 1881 intel_crtc_to_shared_dpll(intel_crtc));
040484af
JB
1882
1883 /* FDI must be feeding us bits for PCH ports */
1884 assert_fdi_tx_enabled(dev_priv, pipe);
1885 assert_fdi_rx_enabled(dev_priv, pipe);
1886
23670b32
DV
1887 if (HAS_PCH_CPT(dev)) {
1888 /* Workaround: Set the timing override bit before enabling the
1889 * pch transcoder. */
1890 reg = TRANS_CHICKEN2(pipe);
1891 val = I915_READ(reg);
1892 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1893 I915_WRITE(reg, val);
59c859d6 1894 }
23670b32 1895
ab9412ba 1896 reg = PCH_TRANSCONF(pipe);
040484af 1897 val = I915_READ(reg);
5f7f726d 1898 pipeconf_val = I915_READ(PIPECONF(pipe));
e9bcff5c
JB
1899
1900 if (HAS_PCH_IBX(dev_priv->dev)) {
1901 /*
1902 * make the BPC in transcoder be consistent with
1903 * that in pipeconf reg.
1904 */
dfd07d72
DV
1905 val &= ~PIPECONF_BPC_MASK;
1906 val |= pipeconf_val & PIPECONF_BPC_MASK;
e9bcff5c 1907 }
5f7f726d
PZ
1908
1909 val &= ~TRANS_INTERLACE_MASK;
1910 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
7c26e5c6 1911 if (HAS_PCH_IBX(dev_priv->dev) &&
409ee761 1912 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
7c26e5c6
PZ
1913 val |= TRANS_LEGACY_INTERLACED_ILK;
1914 else
1915 val |= TRANS_INTERLACED;
5f7f726d
PZ
1916 else
1917 val |= TRANS_PROGRESSIVE;
1918
040484af
JB
1919 I915_WRITE(reg, val | TRANS_ENABLE);
1920 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
4bb6f1f3 1921 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
040484af
JB
1922}
1923
8fb033d7 1924static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
937bb610 1925 enum transcoder cpu_transcoder)
040484af 1926{
8fb033d7 1927 u32 val, pipeconf_val;
8fb033d7
PZ
1928
1929 /* PCH only available on ILK+ */
55522f37 1930 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
8fb033d7 1931
8fb033d7 1932 /* FDI must be feeding us bits for PCH ports */
1a240d4d 1933 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
937bb610 1934 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
8fb033d7 1935
223a6fdf
PZ
1936 /* Workaround: set timing override bit. */
1937 val = I915_READ(_TRANSA_CHICKEN2);
23670b32 1938 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
223a6fdf
PZ
1939 I915_WRITE(_TRANSA_CHICKEN2, val);
1940
25f3ef11 1941 val = TRANS_ENABLE;
937bb610 1942 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
8fb033d7 1943
9a76b1c6
PZ
1944 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1945 PIPECONF_INTERLACED_ILK)
a35f2679 1946 val |= TRANS_INTERLACED;
8fb033d7
PZ
1947 else
1948 val |= TRANS_PROGRESSIVE;
1949
ab9412ba
DV
1950 I915_WRITE(LPT_TRANSCONF, val);
1951 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
937bb610 1952 DRM_ERROR("Failed to enable PCH transcoder\n");
8fb033d7
PZ
1953}
1954
b8a4f404
PZ
1955static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1956 enum pipe pipe)
040484af 1957{
23670b32
DV
1958 struct drm_device *dev = dev_priv->dev;
1959 uint32_t reg, val;
040484af
JB
1960
1961 /* FDI relies on the transcoder */
1962 assert_fdi_tx_disabled(dev_priv, pipe);
1963 assert_fdi_rx_disabled(dev_priv, pipe);
1964
291906f1
JB
1965 /* Ports must be off as well */
1966 assert_pch_ports_disabled(dev_priv, pipe);
1967
ab9412ba 1968 reg = PCH_TRANSCONF(pipe);
040484af
JB
1969 val = I915_READ(reg);
1970 val &= ~TRANS_ENABLE;
1971 I915_WRITE(reg, val);
1972 /* wait for PCH transcoder off, transcoder state */
1973 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
4bb6f1f3 1974 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
23670b32
DV
1975
1976 if (!HAS_PCH_IBX(dev)) {
1977 /* Workaround: Clear the timing override chicken bit again. */
1978 reg = TRANS_CHICKEN2(pipe);
1979 val = I915_READ(reg);
1980 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1981 I915_WRITE(reg, val);
1982 }
040484af
JB
1983}
1984
ab4d966c 1985static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
8fb033d7 1986{
8fb033d7
PZ
1987 u32 val;
1988
ab9412ba 1989 val = I915_READ(LPT_TRANSCONF);
8fb033d7 1990 val &= ~TRANS_ENABLE;
ab9412ba 1991 I915_WRITE(LPT_TRANSCONF, val);
8fb033d7 1992 /* wait for PCH transcoder off, transcoder state */
ab9412ba 1993 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
8a52fd9f 1994 DRM_ERROR("Failed to disable PCH transcoder\n");
223a6fdf
PZ
1995
1996 /* Workaround: clear timing override bit. */
1997 val = I915_READ(_TRANSA_CHICKEN2);
23670b32 1998 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
223a6fdf 1999 I915_WRITE(_TRANSA_CHICKEN2, val);
040484af
JB
2000}
2001
b24e7179 2002/**
309cfea8 2003 * intel_enable_pipe - enable a pipe, asserting requirements
0372264a 2004 * @crtc: crtc responsible for the pipe
b24e7179 2005 *
0372264a 2006 * Enable @crtc's pipe, making sure that various hardware specific requirements
b24e7179 2007 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
b24e7179 2008 */
e1fdc473 2009static void intel_enable_pipe(struct intel_crtc *crtc)
b24e7179 2010{
0372264a
PZ
2011 struct drm_device *dev = crtc->base.dev;
2012 struct drm_i915_private *dev_priv = dev->dev_private;
2013 enum pipe pipe = crtc->pipe;
702e7a56
PZ
2014 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2015 pipe);
1a240d4d 2016 enum pipe pch_transcoder;
b24e7179
JB
2017 int reg;
2018 u32 val;
2019
58c6eaa2 2020 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2021 assert_cursor_disabled(dev_priv, pipe);
58c6eaa2
DV
2022 assert_sprites_disabled(dev_priv, pipe);
2023
681e5811 2024 if (HAS_PCH_LPT(dev_priv->dev))
cc391bbb
PZ
2025 pch_transcoder = TRANSCODER_A;
2026 else
2027 pch_transcoder = pipe;
2028
b24e7179
JB
2029 /*
2030 * A pipe without a PLL won't actually be able to drive bits from
2031 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2032 * need the check.
2033 */
2034 if (!HAS_PCH_SPLIT(dev_priv->dev))
409ee761 2035 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
23538ef1
JN
2036 assert_dsi_pll_enabled(dev_priv);
2037 else
2038 assert_pll_enabled(dev_priv, pipe);
040484af 2039 else {
6e3c9717 2040 if (crtc->config->has_pch_encoder) {
040484af 2041 /* if driving the PCH, we need FDI enabled */
cc391bbb 2042 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
1a240d4d
DV
2043 assert_fdi_tx_pll_enabled(dev_priv,
2044 (enum pipe) cpu_transcoder);
040484af
JB
2045 }
2046 /* FIXME: assert CPU port conditions for SNB+ */
2047 }
b24e7179 2048
702e7a56 2049 reg = PIPECONF(cpu_transcoder);
b24e7179 2050 val = I915_READ(reg);
7ad25d48 2051 if (val & PIPECONF_ENABLE) {
b6b5d049
VS
2052 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2053 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
00d70b15 2054 return;
7ad25d48 2055 }
00d70b15
CW
2056
2057 I915_WRITE(reg, val | PIPECONF_ENABLE);
851855d8 2058 POSTING_READ(reg);
b24e7179
JB
2059}
2060
2061/**
309cfea8 2062 * intel_disable_pipe - disable a pipe, asserting requirements
575f7ab7 2063 * @crtc: crtc whose pipes is to be disabled
b24e7179 2064 *
575f7ab7
VS
2065 * Disable the pipe of @crtc, making sure that various hardware
2066 * specific requirements are met, if applicable, e.g. plane
2067 * disabled, panel fitter off, etc.
b24e7179
JB
2068 *
2069 * Will wait until the pipe has shut down before returning.
2070 */
575f7ab7 2071static void intel_disable_pipe(struct intel_crtc *crtc)
b24e7179 2072{
575f7ab7 2073 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
6e3c9717 2074 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 2075 enum pipe pipe = crtc->pipe;
b24e7179
JB
2076 int reg;
2077 u32 val;
2078
2079 /*
2080 * Make sure planes won't keep trying to pump pixels to us,
2081 * or we might hang the display.
2082 */
2083 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2084 assert_cursor_disabled(dev_priv, pipe);
19332d7a 2085 assert_sprites_disabled(dev_priv, pipe);
b24e7179 2086
702e7a56 2087 reg = PIPECONF(cpu_transcoder);
b24e7179 2088 val = I915_READ(reg);
00d70b15
CW
2089 if ((val & PIPECONF_ENABLE) == 0)
2090 return;
2091
67adc644
VS
2092 /*
2093 * Double wide has implications for planes
2094 * so best keep it disabled when not needed.
2095 */
6e3c9717 2096 if (crtc->config->double_wide)
67adc644
VS
2097 val &= ~PIPECONF_DOUBLE_WIDE;
2098
2099 /* Don't disable pipe or pipe PLLs if needed */
b6b5d049
VS
2100 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2101 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
67adc644
VS
2102 val &= ~PIPECONF_ENABLE;
2103
2104 I915_WRITE(reg, val);
2105 if ((val & PIPECONF_ENABLE) == 0)
2106 intel_wait_for_pipe_off(crtc);
b24e7179
JB
2107}
2108
d74362c9
KP
2109/*
2110 * Plane regs are double buffered, going from enabled->disabled needs a
2111 * trigger in order to latch. The display address reg provides this.
2112 */
1dba99f4
VS
2113void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2114 enum plane plane)
d74362c9 2115{
3d13ef2e
DL
2116 struct drm_device *dev = dev_priv->dev;
2117 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
1dba99f4
VS
2118
2119 I915_WRITE(reg, I915_READ(reg));
2120 POSTING_READ(reg);
d74362c9
KP
2121}
2122
b24e7179 2123/**
262ca2b0 2124 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
fdd508a6
VS
2125 * @plane: plane to be enabled
2126 * @crtc: crtc for the plane
b24e7179 2127 *
fdd508a6 2128 * Enable @plane on @crtc, making sure that the pipe is running first.
b24e7179 2129 */
fdd508a6
VS
2130static void intel_enable_primary_hw_plane(struct drm_plane *plane,
2131 struct drm_crtc *crtc)
b24e7179 2132{
fdd508a6
VS
2133 struct drm_device *dev = plane->dev;
2134 struct drm_i915_private *dev_priv = dev->dev_private;
2135 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
b24e7179
JB
2136
2137 /* If the pipe isn't enabled, we can't pump pixels and may hang */
fdd508a6 2138 assert_pipe_enabled(dev_priv, intel_crtc->pipe);
b24e7179 2139
98ec7739
VS
2140 if (intel_crtc->primary_enabled)
2141 return;
0037f71c 2142
4c445e0e 2143 intel_crtc->primary_enabled = true;
939c2fe8 2144
fdd508a6
VS
2145 dev_priv->display.update_primary_plane(crtc, plane->fb,
2146 crtc->x, crtc->y);
33c3b0d1
VS
2147
2148 /*
2149 * BDW signals flip done immediately if the plane
2150 * is disabled, even if the plane enable is already
2151 * armed to occur at the next vblank :(
2152 */
2153 if (IS_BROADWELL(dev))
2154 intel_wait_for_vblank(dev, intel_crtc->pipe);
b24e7179
JB
2155}
2156
b24e7179 2157/**
262ca2b0 2158 * intel_disable_primary_hw_plane - disable the primary hardware plane
fdd508a6
VS
2159 * @plane: plane to be disabled
2160 * @crtc: crtc for the plane
b24e7179 2161 *
fdd508a6 2162 * Disable @plane on @crtc, making sure that the pipe is running first.
b24e7179 2163 */
fdd508a6
VS
2164static void intel_disable_primary_hw_plane(struct drm_plane *plane,
2165 struct drm_crtc *crtc)
b24e7179 2166{
fdd508a6
VS
2167 struct drm_device *dev = plane->dev;
2168 struct drm_i915_private *dev_priv = dev->dev_private;
2169 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2170
32b7eeec
MR
2171 if (WARN_ON(!intel_crtc->active))
2172 return;
b24e7179 2173
98ec7739
VS
2174 if (!intel_crtc->primary_enabled)
2175 return;
0037f71c 2176
4c445e0e 2177 intel_crtc->primary_enabled = false;
939c2fe8 2178
fdd508a6
VS
2179 dev_priv->display.update_primary_plane(crtc, plane->fb,
2180 crtc->x, crtc->y);
b24e7179
JB
2181}
2182
693db184
CW
2183static bool need_vtd_wa(struct drm_device *dev)
2184{
2185#ifdef CONFIG_INTEL_IOMMU
2186 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2187 return true;
2188#endif
2189 return false;
2190}
2191
ec2c981e
DL
2192int
2193intel_fb_align_height(struct drm_device *dev, int height, unsigned int tiling)
a57ce0b2
JB
2194{
2195 int tile_height;
2196
ec2c981e 2197 tile_height = tiling ? (IS_GEN2(dev) ? 16 : 8) : 1;
a57ce0b2
JB
2198 return ALIGN(height, tile_height);
2199}
2200
127bd2ac 2201int
850c4cdc
TU
2202intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2203 struct drm_framebuffer *fb,
a4872ba6 2204 struct intel_engine_cs *pipelined)
6b95a207 2205{
850c4cdc 2206 struct drm_device *dev = fb->dev;
ce453d81 2207 struct drm_i915_private *dev_priv = dev->dev_private;
850c4cdc 2208 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
6b95a207
KH
2209 u32 alignment;
2210 int ret;
2211
ebcdd39e
MR
2212 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2213
05394f39 2214 switch (obj->tiling_mode) {
6b95a207 2215 case I915_TILING_NONE:
1fada4cc
DL
2216 if (INTEL_INFO(dev)->gen >= 9)
2217 alignment = 256 * 1024;
2218 else if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
534843da 2219 alignment = 128 * 1024;
a6c45cf0 2220 else if (INTEL_INFO(dev)->gen >= 4)
534843da
CW
2221 alignment = 4 * 1024;
2222 else
2223 alignment = 64 * 1024;
6b95a207
KH
2224 break;
2225 case I915_TILING_X:
1fada4cc
DL
2226 if (INTEL_INFO(dev)->gen >= 9)
2227 alignment = 256 * 1024;
2228 else {
2229 /* pin() will align the object as required by fence */
2230 alignment = 0;
2231 }
6b95a207
KH
2232 break;
2233 case I915_TILING_Y:
80075d49 2234 WARN(1, "Y tiled bo slipped through, driver bug!\n");
6b95a207
KH
2235 return -EINVAL;
2236 default:
2237 BUG();
2238 }
2239
693db184
CW
2240 /* Note that the w/a also requires 64 PTE of padding following the
2241 * bo. We currently fill all unused PTE with the shadow page and so
2242 * we should always have valid PTE following the scanout preventing
2243 * the VT-d warning.
2244 */
2245 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2246 alignment = 256 * 1024;
2247
d6dd6843
PZ
2248 /*
2249 * Global gtt pte registers are special registers which actually forward
2250 * writes to a chunk of system memory. Which means that there is no risk
2251 * that the register values disappear as soon as we call
2252 * intel_runtime_pm_put(), so it is correct to wrap only the
2253 * pin/unpin/fence and not more.
2254 */
2255 intel_runtime_pm_get(dev_priv);
2256
ce453d81 2257 dev_priv->mm.interruptible = false;
2da3b9b9 2258 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
48b956c5 2259 if (ret)
ce453d81 2260 goto err_interruptible;
6b95a207
KH
2261
2262 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2263 * fence, whereas 965+ only requires a fence if using
2264 * framebuffer compression. For simplicity, we always install
2265 * a fence as the cost is not that onerous.
2266 */
06d98131 2267 ret = i915_gem_object_get_fence(obj);
9a5a53b3
CW
2268 if (ret)
2269 goto err_unpin;
1690e1eb 2270
9a5a53b3 2271 i915_gem_object_pin_fence(obj);
6b95a207 2272
ce453d81 2273 dev_priv->mm.interruptible = true;
d6dd6843 2274 intel_runtime_pm_put(dev_priv);
6b95a207 2275 return 0;
48b956c5
CW
2276
2277err_unpin:
cc98b413 2278 i915_gem_object_unpin_from_display_plane(obj);
ce453d81
CW
2279err_interruptible:
2280 dev_priv->mm.interruptible = true;
d6dd6843 2281 intel_runtime_pm_put(dev_priv);
48b956c5 2282 return ret;
6b95a207
KH
2283}
2284
1690e1eb
CW
2285void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2286{
ebcdd39e
MR
2287 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2288
1690e1eb 2289 i915_gem_object_unpin_fence(obj);
cc98b413 2290 i915_gem_object_unpin_from_display_plane(obj);
1690e1eb
CW
2291}
2292
c2c75131
DV
2293/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2294 * is assumed to be a power-of-two. */
bc752862
CW
2295unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2296 unsigned int tiling_mode,
2297 unsigned int cpp,
2298 unsigned int pitch)
c2c75131 2299{
bc752862
CW
2300 if (tiling_mode != I915_TILING_NONE) {
2301 unsigned int tile_rows, tiles;
c2c75131 2302
bc752862
CW
2303 tile_rows = *y / 8;
2304 *y %= 8;
c2c75131 2305
bc752862
CW
2306 tiles = *x / (512/cpp);
2307 *x %= 512/cpp;
2308
2309 return tile_rows * pitch * 8 + tiles * 4096;
2310 } else {
2311 unsigned int offset;
2312
2313 offset = *y * pitch + *x * cpp;
2314 *y = 0;
2315 *x = (offset & 4095) / cpp;
2316 return offset & -4096;
2317 }
c2c75131
DV
2318}
2319
b35d63fa 2320static int i9xx_format_to_fourcc(int format)
46f297fb
JB
2321{
2322 switch (format) {
2323 case DISPPLANE_8BPP:
2324 return DRM_FORMAT_C8;
2325 case DISPPLANE_BGRX555:
2326 return DRM_FORMAT_XRGB1555;
2327 case DISPPLANE_BGRX565:
2328 return DRM_FORMAT_RGB565;
2329 default:
2330 case DISPPLANE_BGRX888:
2331 return DRM_FORMAT_XRGB8888;
2332 case DISPPLANE_RGBX888:
2333 return DRM_FORMAT_XBGR8888;
2334 case DISPPLANE_BGRX101010:
2335 return DRM_FORMAT_XRGB2101010;
2336 case DISPPLANE_RGBX101010:
2337 return DRM_FORMAT_XBGR2101010;
2338 }
2339}
2340
bc8d7dff
DL
2341static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2342{
2343 switch (format) {
2344 case PLANE_CTL_FORMAT_RGB_565:
2345 return DRM_FORMAT_RGB565;
2346 default:
2347 case PLANE_CTL_FORMAT_XRGB_8888:
2348 if (rgb_order) {
2349 if (alpha)
2350 return DRM_FORMAT_ABGR8888;
2351 else
2352 return DRM_FORMAT_XBGR8888;
2353 } else {
2354 if (alpha)
2355 return DRM_FORMAT_ARGB8888;
2356 else
2357 return DRM_FORMAT_XRGB8888;
2358 }
2359 case PLANE_CTL_FORMAT_XRGB_2101010:
2360 if (rgb_order)
2361 return DRM_FORMAT_XBGR2101010;
2362 else
2363 return DRM_FORMAT_XRGB2101010;
2364 }
2365}
2366
5724dbd1
DL
2367static bool
2368intel_alloc_plane_obj(struct intel_crtc *crtc,
2369 struct intel_initial_plane_config *plane_config)
46f297fb
JB
2370{
2371 struct drm_device *dev = crtc->base.dev;
2372 struct drm_i915_gem_object *obj = NULL;
2373 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
6bf129df 2374 struct drm_framebuffer *fb = crtc->base.primary->fb;
46f297fb
JB
2375 u32 base = plane_config->base;
2376
ff2652ea
CW
2377 if (plane_config->size == 0)
2378 return false;
2379
46f297fb
JB
2380 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2381 plane_config->size);
2382 if (!obj)
484b41dd 2383 return false;
46f297fb 2384
49af449b
DL
2385 obj->tiling_mode = plane_config->tiling;
2386 if (obj->tiling_mode == I915_TILING_X)
6bf129df 2387 obj->stride = fb->pitches[0];
46f297fb 2388
6bf129df
DL
2389 mode_cmd.pixel_format = fb->pixel_format;
2390 mode_cmd.width = fb->width;
2391 mode_cmd.height = fb->height;
2392 mode_cmd.pitches[0] = fb->pitches[0];
46f297fb
JB
2393
2394 mutex_lock(&dev->struct_mutex);
2395
6bf129df 2396 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
484b41dd 2397 &mode_cmd, obj)) {
46f297fb
JB
2398 DRM_DEBUG_KMS("intel fb init failed\n");
2399 goto out_unref_obj;
2400 }
2401
a071fa00 2402 obj->frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(crtc->pipe);
46f297fb 2403 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2404
2405 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2406 return true;
46f297fb
JB
2407
2408out_unref_obj:
2409 drm_gem_object_unreference(&obj->base);
2410 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2411 return false;
2412}
2413
afd65eb4
MR
2414/* Update plane->state->fb to match plane->fb after driver-internal updates */
2415static void
2416update_state_fb(struct drm_plane *plane)
2417{
2418 if (plane->fb == plane->state->fb)
2419 return;
2420
2421 if (plane->state->fb)
2422 drm_framebuffer_unreference(plane->state->fb);
2423 plane->state->fb = plane->fb;
2424 if (plane->state->fb)
2425 drm_framebuffer_reference(plane->state->fb);
2426}
2427
5724dbd1
DL
2428static void
2429intel_find_plane_obj(struct intel_crtc *intel_crtc,
2430 struct intel_initial_plane_config *plane_config)
484b41dd
JB
2431{
2432 struct drm_device *dev = intel_crtc->base.dev;
d9ceb816 2433 struct drm_i915_private *dev_priv = dev->dev_private;
484b41dd
JB
2434 struct drm_crtc *c;
2435 struct intel_crtc *i;
2ff8fde1 2436 struct drm_i915_gem_object *obj;
484b41dd 2437
66e514c1 2438 if (!intel_crtc->base.primary->fb)
484b41dd
JB
2439 return;
2440
2441 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2442 return;
2443
66e514c1
DA
2444 kfree(intel_crtc->base.primary->fb);
2445 intel_crtc->base.primary->fb = NULL;
484b41dd
JB
2446
2447 /*
2448 * Failed to alloc the obj, check to see if we should share
2449 * an fb with another CRTC instead
2450 */
70e1e0ec 2451 for_each_crtc(dev, c) {
484b41dd
JB
2452 i = to_intel_crtc(c);
2453
2454 if (c == &intel_crtc->base)
2455 continue;
2456
2ff8fde1
MR
2457 if (!i->active)
2458 continue;
2459
2460 obj = intel_fb_obj(c->primary->fb);
2461 if (obj == NULL)
484b41dd
JB
2462 continue;
2463
2ff8fde1 2464 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
d9ceb816
JB
2465 if (obj->tiling_mode != I915_TILING_NONE)
2466 dev_priv->preserve_bios_swizzle = true;
2467
66e514c1
DA
2468 drm_framebuffer_reference(c->primary->fb);
2469 intel_crtc->base.primary->fb = c->primary->fb;
5ba76c41 2470 update_state_fb(intel_crtc->base.primary);
2ff8fde1 2471 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
484b41dd
JB
2472 break;
2473 }
2474 }
afd65eb4 2475
46f297fb
JB
2476}
2477
29b9bde6
DV
2478static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2479 struct drm_framebuffer *fb,
2480 int x, int y)
81255565
JB
2481{
2482 struct drm_device *dev = crtc->dev;
2483 struct drm_i915_private *dev_priv = dev->dev_private;
2484 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
c9ba6fad 2485 struct drm_i915_gem_object *obj;
81255565 2486 int plane = intel_crtc->plane;
e506a0c6 2487 unsigned long linear_offset;
81255565 2488 u32 dspcntr;
f45651ba 2489 u32 reg = DSPCNTR(plane);
48404c1e 2490 int pixel_size;
f45651ba 2491
fdd508a6
VS
2492 if (!intel_crtc->primary_enabled) {
2493 I915_WRITE(reg, 0);
2494 if (INTEL_INFO(dev)->gen >= 4)
2495 I915_WRITE(DSPSURF(plane), 0);
2496 else
2497 I915_WRITE(DSPADDR(plane), 0);
2498 POSTING_READ(reg);
2499 return;
2500 }
2501
c9ba6fad
VS
2502 obj = intel_fb_obj(fb);
2503 if (WARN_ON(obj == NULL))
2504 return;
2505
2506 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2507
f45651ba
VS
2508 dspcntr = DISPPLANE_GAMMA_ENABLE;
2509
fdd508a6 2510 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2511
2512 if (INTEL_INFO(dev)->gen < 4) {
2513 if (intel_crtc->pipe == PIPE_B)
2514 dspcntr |= DISPPLANE_SEL_PIPE_B;
2515
2516 /* pipesrc and dspsize control the size that is scaled from,
2517 * which should always be the user's requested size.
2518 */
2519 I915_WRITE(DSPSIZE(plane),
6e3c9717
ACO
2520 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2521 (intel_crtc->config->pipe_src_w - 1));
f45651ba 2522 I915_WRITE(DSPPOS(plane), 0);
c14b0485
VS
2523 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2524 I915_WRITE(PRIMSIZE(plane),
6e3c9717
ACO
2525 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2526 (intel_crtc->config->pipe_src_w - 1));
c14b0485
VS
2527 I915_WRITE(PRIMPOS(plane), 0);
2528 I915_WRITE(PRIMCNSTALPHA(plane), 0);
f45651ba 2529 }
81255565 2530
57779d06
VS
2531 switch (fb->pixel_format) {
2532 case DRM_FORMAT_C8:
81255565
JB
2533 dspcntr |= DISPPLANE_8BPP;
2534 break;
57779d06
VS
2535 case DRM_FORMAT_XRGB1555:
2536 case DRM_FORMAT_ARGB1555:
2537 dspcntr |= DISPPLANE_BGRX555;
81255565 2538 break;
57779d06
VS
2539 case DRM_FORMAT_RGB565:
2540 dspcntr |= DISPPLANE_BGRX565;
2541 break;
2542 case DRM_FORMAT_XRGB8888:
2543 case DRM_FORMAT_ARGB8888:
2544 dspcntr |= DISPPLANE_BGRX888;
2545 break;
2546 case DRM_FORMAT_XBGR8888:
2547 case DRM_FORMAT_ABGR8888:
2548 dspcntr |= DISPPLANE_RGBX888;
2549 break;
2550 case DRM_FORMAT_XRGB2101010:
2551 case DRM_FORMAT_ARGB2101010:
2552 dspcntr |= DISPPLANE_BGRX101010;
2553 break;
2554 case DRM_FORMAT_XBGR2101010:
2555 case DRM_FORMAT_ABGR2101010:
2556 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
2557 break;
2558 default:
baba133a 2559 BUG();
81255565 2560 }
57779d06 2561
f45651ba
VS
2562 if (INTEL_INFO(dev)->gen >= 4 &&
2563 obj->tiling_mode != I915_TILING_NONE)
2564 dspcntr |= DISPPLANE_TILED;
81255565 2565
de1aa629
VS
2566 if (IS_G4X(dev))
2567 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2568
b9897127 2569 linear_offset = y * fb->pitches[0] + x * pixel_size;
81255565 2570
c2c75131
DV
2571 if (INTEL_INFO(dev)->gen >= 4) {
2572 intel_crtc->dspaddr_offset =
bc752862 2573 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
b9897127 2574 pixel_size,
bc752862 2575 fb->pitches[0]);
c2c75131
DV
2576 linear_offset -= intel_crtc->dspaddr_offset;
2577 } else {
e506a0c6 2578 intel_crtc->dspaddr_offset = linear_offset;
c2c75131 2579 }
e506a0c6 2580
8e7d688b 2581 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2582 dspcntr |= DISPPLANE_ROTATE_180;
2583
6e3c9717
ACO
2584 x += (intel_crtc->config->pipe_src_w - 1);
2585 y += (intel_crtc->config->pipe_src_h - 1);
48404c1e
SJ
2586
2587 /* Finding the last pixel of the last line of the display
2588 data and adding to linear_offset*/
2589 linear_offset +=
6e3c9717
ACO
2590 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2591 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
48404c1e
SJ
2592 }
2593
2594 I915_WRITE(reg, dspcntr);
2595
f343c5f6
BW
2596 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2597 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2598 fb->pitches[0]);
01f2c773 2599 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
a6c45cf0 2600 if (INTEL_INFO(dev)->gen >= 4) {
85ba7b7d
DV
2601 I915_WRITE(DSPSURF(plane),
2602 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
5eddb70b 2603 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 2604 I915_WRITE(DSPLINOFF(plane), linear_offset);
5eddb70b 2605 } else
f343c5f6 2606 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
5eddb70b 2607 POSTING_READ(reg);
17638cd6
JB
2608}
2609
29b9bde6
DV
2610static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2611 struct drm_framebuffer *fb,
2612 int x, int y)
17638cd6
JB
2613{
2614 struct drm_device *dev = crtc->dev;
2615 struct drm_i915_private *dev_priv = dev->dev_private;
2616 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
c9ba6fad 2617 struct drm_i915_gem_object *obj;
17638cd6 2618 int plane = intel_crtc->plane;
e506a0c6 2619 unsigned long linear_offset;
17638cd6 2620 u32 dspcntr;
f45651ba 2621 u32 reg = DSPCNTR(plane);
48404c1e 2622 int pixel_size;
f45651ba 2623
fdd508a6
VS
2624 if (!intel_crtc->primary_enabled) {
2625 I915_WRITE(reg, 0);
2626 I915_WRITE(DSPSURF(plane), 0);
2627 POSTING_READ(reg);
2628 return;
2629 }
2630
c9ba6fad
VS
2631 obj = intel_fb_obj(fb);
2632 if (WARN_ON(obj == NULL))
2633 return;
2634
2635 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2636
f45651ba
VS
2637 dspcntr = DISPPLANE_GAMMA_ENABLE;
2638
fdd508a6 2639 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2640
2641 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2642 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
17638cd6 2643
57779d06
VS
2644 switch (fb->pixel_format) {
2645 case DRM_FORMAT_C8:
17638cd6
JB
2646 dspcntr |= DISPPLANE_8BPP;
2647 break;
57779d06
VS
2648 case DRM_FORMAT_RGB565:
2649 dspcntr |= DISPPLANE_BGRX565;
17638cd6 2650 break;
57779d06
VS
2651 case DRM_FORMAT_XRGB8888:
2652 case DRM_FORMAT_ARGB8888:
2653 dspcntr |= DISPPLANE_BGRX888;
2654 break;
2655 case DRM_FORMAT_XBGR8888:
2656 case DRM_FORMAT_ABGR8888:
2657 dspcntr |= DISPPLANE_RGBX888;
2658 break;
2659 case DRM_FORMAT_XRGB2101010:
2660 case DRM_FORMAT_ARGB2101010:
2661 dspcntr |= DISPPLANE_BGRX101010;
2662 break;
2663 case DRM_FORMAT_XBGR2101010:
2664 case DRM_FORMAT_ABGR2101010:
2665 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
2666 break;
2667 default:
baba133a 2668 BUG();
17638cd6
JB
2669 }
2670
2671 if (obj->tiling_mode != I915_TILING_NONE)
2672 dspcntr |= DISPPLANE_TILED;
17638cd6 2673
f45651ba 2674 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
1f5d76db 2675 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
17638cd6 2676
b9897127 2677 linear_offset = y * fb->pitches[0] + x * pixel_size;
c2c75131 2678 intel_crtc->dspaddr_offset =
bc752862 2679 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
b9897127 2680 pixel_size,
bc752862 2681 fb->pitches[0]);
c2c75131 2682 linear_offset -= intel_crtc->dspaddr_offset;
8e7d688b 2683 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2684 dspcntr |= DISPPLANE_ROTATE_180;
2685
2686 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
6e3c9717
ACO
2687 x += (intel_crtc->config->pipe_src_w - 1);
2688 y += (intel_crtc->config->pipe_src_h - 1);
48404c1e
SJ
2689
2690 /* Finding the last pixel of the last line of the display
2691 data and adding to linear_offset*/
2692 linear_offset +=
6e3c9717
ACO
2693 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2694 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
48404c1e
SJ
2695 }
2696 }
2697
2698 I915_WRITE(reg, dspcntr);
17638cd6 2699
f343c5f6
BW
2700 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2701 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2702 fb->pitches[0]);
01f2c773 2703 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
85ba7b7d
DV
2704 I915_WRITE(DSPSURF(plane),
2705 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
b3dc685e 2706 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
bc1c91eb
DL
2707 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2708 } else {
2709 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2710 I915_WRITE(DSPLINOFF(plane), linear_offset);
2711 }
17638cd6 2712 POSTING_READ(reg);
17638cd6
JB
2713}
2714
70d21f0e
DL
2715static void skylake_update_primary_plane(struct drm_crtc *crtc,
2716 struct drm_framebuffer *fb,
2717 int x, int y)
2718{
2719 struct drm_device *dev = crtc->dev;
2720 struct drm_i915_private *dev_priv = dev->dev_private;
2721 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2722 struct intel_framebuffer *intel_fb;
2723 struct drm_i915_gem_object *obj;
2724 int pipe = intel_crtc->pipe;
2725 u32 plane_ctl, stride;
2726
2727 if (!intel_crtc->primary_enabled) {
2728 I915_WRITE(PLANE_CTL(pipe, 0), 0);
2729 I915_WRITE(PLANE_SURF(pipe, 0), 0);
2730 POSTING_READ(PLANE_CTL(pipe, 0));
2731 return;
2732 }
2733
2734 plane_ctl = PLANE_CTL_ENABLE |
2735 PLANE_CTL_PIPE_GAMMA_ENABLE |
2736 PLANE_CTL_PIPE_CSC_ENABLE;
2737
2738 switch (fb->pixel_format) {
2739 case DRM_FORMAT_RGB565:
2740 plane_ctl |= PLANE_CTL_FORMAT_RGB_565;
2741 break;
2742 case DRM_FORMAT_XRGB8888:
2743 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2744 break;
2745 case DRM_FORMAT_XBGR8888:
2746 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2747 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2748 break;
2749 case DRM_FORMAT_XRGB2101010:
2750 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2751 break;
2752 case DRM_FORMAT_XBGR2101010:
2753 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2754 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2755 break;
2756 default:
2757 BUG();
2758 }
2759
2760 intel_fb = to_intel_framebuffer(fb);
2761 obj = intel_fb->obj;
2762
2763 /*
2764 * The stride is either expressed as a multiple of 64 bytes chunks for
2765 * linear buffers or in number of tiles for tiled buffers.
2766 */
2767 switch (obj->tiling_mode) {
2768 case I915_TILING_NONE:
2769 stride = fb->pitches[0] >> 6;
2770 break;
2771 case I915_TILING_X:
2772 plane_ctl |= PLANE_CTL_TILED_X;
2773 stride = fb->pitches[0] >> 9;
2774 break;
2775 default:
2776 BUG();
2777 }
2778
2779 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
8e7d688b 2780 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180))
1447dde0 2781 plane_ctl |= PLANE_CTL_ROTATE_180;
70d21f0e
DL
2782
2783 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
2784
2785 DRM_DEBUG_KMS("Writing base %08lX %d,%d,%d,%d pitch=%d\n",
2786 i915_gem_obj_ggtt_offset(obj),
2787 x, y, fb->width, fb->height,
2788 fb->pitches[0]);
2789
2790 I915_WRITE(PLANE_POS(pipe, 0), 0);
2791 I915_WRITE(PLANE_OFFSET(pipe, 0), (y << 16) | x);
2792 I915_WRITE(PLANE_SIZE(pipe, 0),
6e3c9717
ACO
2793 (intel_crtc->config->pipe_src_h - 1) << 16 |
2794 (intel_crtc->config->pipe_src_w - 1));
70d21f0e
DL
2795 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
2796 I915_WRITE(PLANE_SURF(pipe, 0), i915_gem_obj_ggtt_offset(obj));
2797
2798 POSTING_READ(PLANE_SURF(pipe, 0));
2799}
2800
17638cd6
JB
2801/* Assume fb object is pinned & idle & fenced and just update base pointers */
2802static int
2803intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2804 int x, int y, enum mode_set_atomic state)
2805{
2806 struct drm_device *dev = crtc->dev;
2807 struct drm_i915_private *dev_priv = dev->dev_private;
17638cd6 2808
6b8e6ed0
CW
2809 if (dev_priv->display.disable_fbc)
2810 dev_priv->display.disable_fbc(dev);
81255565 2811
29b9bde6
DV
2812 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2813
2814 return 0;
81255565
JB
2815}
2816
7514747d 2817static void intel_complete_page_flips(struct drm_device *dev)
96a02917 2818{
96a02917
VS
2819 struct drm_crtc *crtc;
2820
70e1e0ec 2821 for_each_crtc(dev, crtc) {
96a02917
VS
2822 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2823 enum plane plane = intel_crtc->plane;
2824
2825 intel_prepare_page_flip(dev, plane);
2826 intel_finish_page_flip_plane(dev, plane);
2827 }
7514747d
VS
2828}
2829
2830static void intel_update_primary_planes(struct drm_device *dev)
2831{
2832 struct drm_i915_private *dev_priv = dev->dev_private;
2833 struct drm_crtc *crtc;
96a02917 2834
70e1e0ec 2835 for_each_crtc(dev, crtc) {
96a02917
VS
2836 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2837
51fd371b 2838 drm_modeset_lock(&crtc->mutex, NULL);
947fdaad
CW
2839 /*
2840 * FIXME: Once we have proper support for primary planes (and
2841 * disabling them without disabling the entire crtc) allow again
66e514c1 2842 * a NULL crtc->primary->fb.
947fdaad 2843 */
f4510a27 2844 if (intel_crtc->active && crtc->primary->fb)
262ca2b0 2845 dev_priv->display.update_primary_plane(crtc,
66e514c1 2846 crtc->primary->fb,
262ca2b0
MR
2847 crtc->x,
2848 crtc->y);
51fd371b 2849 drm_modeset_unlock(&crtc->mutex);
96a02917
VS
2850 }
2851}
2852
7514747d
VS
2853void intel_prepare_reset(struct drm_device *dev)
2854{
f98ce92f
VS
2855 struct drm_i915_private *dev_priv = to_i915(dev);
2856 struct intel_crtc *crtc;
2857
7514747d
VS
2858 /* no reset support for gen2 */
2859 if (IS_GEN2(dev))
2860 return;
2861
2862 /* reset doesn't touch the display */
2863 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
2864 return;
2865
2866 drm_modeset_lock_all(dev);
f98ce92f
VS
2867
2868 /*
2869 * Disabling the crtcs gracefully seems nicer. Also the
2870 * g33 docs say we should at least disable all the planes.
2871 */
2872 for_each_intel_crtc(dev, crtc) {
2873 if (crtc->active)
2874 dev_priv->display.crtc_disable(&crtc->base);
2875 }
7514747d
VS
2876}
2877
2878void intel_finish_reset(struct drm_device *dev)
2879{
2880 struct drm_i915_private *dev_priv = to_i915(dev);
2881
2882 /*
2883 * Flips in the rings will be nuked by the reset,
2884 * so complete all pending flips so that user space
2885 * will get its events and not get stuck.
2886 */
2887 intel_complete_page_flips(dev);
2888
2889 /* no reset support for gen2 */
2890 if (IS_GEN2(dev))
2891 return;
2892
2893 /* reset doesn't touch the display */
2894 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
2895 /*
2896 * Flips in the rings have been nuked by the reset,
2897 * so update the base address of all primary
2898 * planes to the the last fb to make sure we're
2899 * showing the correct fb after a reset.
2900 */
2901 intel_update_primary_planes(dev);
2902 return;
2903 }
2904
2905 /*
2906 * The display has been reset as well,
2907 * so need a full re-initialization.
2908 */
2909 intel_runtime_pm_disable_interrupts(dev_priv);
2910 intel_runtime_pm_enable_interrupts(dev_priv);
2911
2912 intel_modeset_init_hw(dev);
2913
2914 spin_lock_irq(&dev_priv->irq_lock);
2915 if (dev_priv->display.hpd_irq_setup)
2916 dev_priv->display.hpd_irq_setup(dev);
2917 spin_unlock_irq(&dev_priv->irq_lock);
2918
2919 intel_modeset_setup_hw_state(dev, true);
2920
2921 intel_hpd_init(dev_priv);
2922
2923 drm_modeset_unlock_all(dev);
2924}
2925
14667a4b
CW
2926static int
2927intel_finish_fb(struct drm_framebuffer *old_fb)
2928{
2ff8fde1 2929 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
14667a4b
CW
2930 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2931 bool was_interruptible = dev_priv->mm.interruptible;
2932 int ret;
2933
14667a4b
CW
2934 /* Big Hammer, we also need to ensure that any pending
2935 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2936 * current scanout is retired before unpinning the old
2937 * framebuffer.
2938 *
2939 * This should only fail upon a hung GPU, in which case we
2940 * can safely continue.
2941 */
2942 dev_priv->mm.interruptible = false;
2943 ret = i915_gem_object_finish_gpu(obj);
2944 dev_priv->mm.interruptible = was_interruptible;
2945
2946 return ret;
2947}
2948
7d5e3799
CW
2949static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2950{
2951 struct drm_device *dev = crtc->dev;
2952 struct drm_i915_private *dev_priv = dev->dev_private;
2953 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7d5e3799
CW
2954 bool pending;
2955
2956 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2957 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2958 return false;
2959
5e2d7afc 2960 spin_lock_irq(&dev->event_lock);
7d5e3799 2961 pending = to_intel_crtc(crtc)->unpin_work != NULL;
5e2d7afc 2962 spin_unlock_irq(&dev->event_lock);
7d5e3799
CW
2963
2964 return pending;
2965}
2966
e30e8f75
GP
2967static void intel_update_pipe_size(struct intel_crtc *crtc)
2968{
2969 struct drm_device *dev = crtc->base.dev;
2970 struct drm_i915_private *dev_priv = dev->dev_private;
2971 const struct drm_display_mode *adjusted_mode;
2972
2973 if (!i915.fastboot)
2974 return;
2975
2976 /*
2977 * Update pipe size and adjust fitter if needed: the reason for this is
2978 * that in compute_mode_changes we check the native mode (not the pfit
2979 * mode) to see if we can flip rather than do a full mode set. In the
2980 * fastboot case, we'll flip, but if we don't update the pipesrc and
2981 * pfit state, we'll end up with a big fb scanned out into the wrong
2982 * sized surface.
2983 *
2984 * To fix this properly, we need to hoist the checks up into
2985 * compute_mode_changes (or above), check the actual pfit state and
2986 * whether the platform allows pfit disable with pipe active, and only
2987 * then update the pipesrc and pfit state, even on the flip path.
2988 */
2989
6e3c9717 2990 adjusted_mode = &crtc->config->base.adjusted_mode;
e30e8f75
GP
2991
2992 I915_WRITE(PIPESRC(crtc->pipe),
2993 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2994 (adjusted_mode->crtc_vdisplay - 1));
6e3c9717 2995 if (!crtc->config->pch_pfit.enabled &&
409ee761
ACO
2996 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2997 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
e30e8f75
GP
2998 I915_WRITE(PF_CTL(crtc->pipe), 0);
2999 I915_WRITE(PF_WIN_POS(crtc->pipe), 0);
3000 I915_WRITE(PF_WIN_SZ(crtc->pipe), 0);
3001 }
6e3c9717
ACO
3002 crtc->config->pipe_src_w = adjusted_mode->crtc_hdisplay;
3003 crtc->config->pipe_src_h = adjusted_mode->crtc_vdisplay;
e30e8f75
GP
3004}
3005
5e84e1a4
ZW
3006static void intel_fdi_normal_train(struct drm_crtc *crtc)
3007{
3008 struct drm_device *dev = crtc->dev;
3009 struct drm_i915_private *dev_priv = dev->dev_private;
3010 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3011 int pipe = intel_crtc->pipe;
3012 u32 reg, temp;
3013
3014 /* enable normal train */
3015 reg = FDI_TX_CTL(pipe);
3016 temp = I915_READ(reg);
61e499bf 3017 if (IS_IVYBRIDGE(dev)) {
357555c0
JB
3018 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3019 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
3020 } else {
3021 temp &= ~FDI_LINK_TRAIN_NONE;
3022 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 3023 }
5e84e1a4
ZW
3024 I915_WRITE(reg, temp);
3025
3026 reg = FDI_RX_CTL(pipe);
3027 temp = I915_READ(reg);
3028 if (HAS_PCH_CPT(dev)) {
3029 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3030 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3031 } else {
3032 temp &= ~FDI_LINK_TRAIN_NONE;
3033 temp |= FDI_LINK_TRAIN_NONE;
3034 }
3035 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3036
3037 /* wait one idle pattern time */
3038 POSTING_READ(reg);
3039 udelay(1000);
357555c0
JB
3040
3041 /* IVB wants error correction enabled */
3042 if (IS_IVYBRIDGE(dev))
3043 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3044 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
3045}
3046
1fbc0d78 3047static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
1e833f40 3048{
1fbc0d78 3049 return crtc->base.enabled && crtc->active &&
6e3c9717 3050 crtc->config->has_pch_encoder;
1e833f40
DV
3051}
3052
01a415fd
DV
3053static void ivb_modeset_global_resources(struct drm_device *dev)
3054{
3055 struct drm_i915_private *dev_priv = dev->dev_private;
3056 struct intel_crtc *pipe_B_crtc =
3057 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
3058 struct intel_crtc *pipe_C_crtc =
3059 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
3060 uint32_t temp;
3061
1e833f40
DV
3062 /*
3063 * When everything is off disable fdi C so that we could enable fdi B
3064 * with all lanes. Note that we don't care about enabled pipes without
3065 * an enabled pch encoder.
3066 */
3067 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
3068 !pipe_has_enabled_pch(pipe_C_crtc)) {
01a415fd
DV
3069 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3070 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3071
3072 temp = I915_READ(SOUTH_CHICKEN1);
3073 temp &= ~FDI_BC_BIFURCATION_SELECT;
3074 DRM_DEBUG_KMS("disabling fdi C rx\n");
3075 I915_WRITE(SOUTH_CHICKEN1, temp);
3076 }
3077}
3078
8db9d77b
ZW
3079/* The FDI link training functions for ILK/Ibexpeak. */
3080static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3081{
3082 struct drm_device *dev = crtc->dev;
3083 struct drm_i915_private *dev_priv = dev->dev_private;
3084 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3085 int pipe = intel_crtc->pipe;
5eddb70b 3086 u32 reg, temp, tries;
8db9d77b 3087
1c8562f6 3088 /* FDI needs bits from pipe first */
0fc932b8 3089 assert_pipe_enabled(dev_priv, pipe);
0fc932b8 3090
e1a44743
AJ
3091 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3092 for train result */
5eddb70b
CW
3093 reg = FDI_RX_IMR(pipe);
3094 temp = I915_READ(reg);
e1a44743
AJ
3095 temp &= ~FDI_RX_SYMBOL_LOCK;
3096 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3097 I915_WRITE(reg, temp);
3098 I915_READ(reg);
e1a44743
AJ
3099 udelay(150);
3100
8db9d77b 3101 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3102 reg = FDI_TX_CTL(pipe);
3103 temp = I915_READ(reg);
627eb5a3 3104 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3105 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3106 temp &= ~FDI_LINK_TRAIN_NONE;
3107 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 3108 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3109
5eddb70b
CW
3110 reg = FDI_RX_CTL(pipe);
3111 temp = I915_READ(reg);
8db9d77b
ZW
3112 temp &= ~FDI_LINK_TRAIN_NONE;
3113 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
3114 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3115
3116 POSTING_READ(reg);
8db9d77b
ZW
3117 udelay(150);
3118
5b2adf89 3119 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
3120 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3121 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3122 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 3123
5eddb70b 3124 reg = FDI_RX_IIR(pipe);
e1a44743 3125 for (tries = 0; tries < 5; tries++) {
5eddb70b 3126 temp = I915_READ(reg);
8db9d77b
ZW
3127 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3128
3129 if ((temp & FDI_RX_BIT_LOCK)) {
3130 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 3131 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
3132 break;
3133 }
8db9d77b 3134 }
e1a44743 3135 if (tries == 5)
5eddb70b 3136 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3137
3138 /* Train 2 */
5eddb70b
CW
3139 reg = FDI_TX_CTL(pipe);
3140 temp = I915_READ(reg);
8db9d77b
ZW
3141 temp &= ~FDI_LINK_TRAIN_NONE;
3142 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3143 I915_WRITE(reg, temp);
8db9d77b 3144
5eddb70b
CW
3145 reg = FDI_RX_CTL(pipe);
3146 temp = I915_READ(reg);
8db9d77b
ZW
3147 temp &= ~FDI_LINK_TRAIN_NONE;
3148 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3149 I915_WRITE(reg, temp);
8db9d77b 3150
5eddb70b
CW
3151 POSTING_READ(reg);
3152 udelay(150);
8db9d77b 3153
5eddb70b 3154 reg = FDI_RX_IIR(pipe);
e1a44743 3155 for (tries = 0; tries < 5; tries++) {
5eddb70b 3156 temp = I915_READ(reg);
8db9d77b
ZW
3157 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3158
3159 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 3160 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
3161 DRM_DEBUG_KMS("FDI train 2 done.\n");
3162 break;
3163 }
8db9d77b 3164 }
e1a44743 3165 if (tries == 5)
5eddb70b 3166 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3167
3168 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 3169
8db9d77b
ZW
3170}
3171
0206e353 3172static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
3173 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3174 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3175 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3176 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3177};
3178
3179/* The FDI link training functions for SNB/Cougarpoint. */
3180static void gen6_fdi_link_train(struct drm_crtc *crtc)
3181{
3182 struct drm_device *dev = crtc->dev;
3183 struct drm_i915_private *dev_priv = dev->dev_private;
3184 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3185 int pipe = intel_crtc->pipe;
fa37d39e 3186 u32 reg, temp, i, retry;
8db9d77b 3187
e1a44743
AJ
3188 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3189 for train result */
5eddb70b
CW
3190 reg = FDI_RX_IMR(pipe);
3191 temp = I915_READ(reg);
e1a44743
AJ
3192 temp &= ~FDI_RX_SYMBOL_LOCK;
3193 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3194 I915_WRITE(reg, temp);
3195
3196 POSTING_READ(reg);
e1a44743
AJ
3197 udelay(150);
3198
8db9d77b 3199 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3200 reg = FDI_TX_CTL(pipe);
3201 temp = I915_READ(reg);
627eb5a3 3202 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3203 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3204 temp &= ~FDI_LINK_TRAIN_NONE;
3205 temp |= FDI_LINK_TRAIN_PATTERN_1;
3206 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3207 /* SNB-B */
3208 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 3209 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3210
d74cf324
DV
3211 I915_WRITE(FDI_RX_MISC(pipe),
3212 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3213
5eddb70b
CW
3214 reg = FDI_RX_CTL(pipe);
3215 temp = I915_READ(reg);
8db9d77b
ZW
3216 if (HAS_PCH_CPT(dev)) {
3217 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3218 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3219 } else {
3220 temp &= ~FDI_LINK_TRAIN_NONE;
3221 temp |= FDI_LINK_TRAIN_PATTERN_1;
3222 }
5eddb70b
CW
3223 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3224
3225 POSTING_READ(reg);
8db9d77b
ZW
3226 udelay(150);
3227
0206e353 3228 for (i = 0; i < 4; i++) {
5eddb70b
CW
3229 reg = FDI_TX_CTL(pipe);
3230 temp = I915_READ(reg);
8db9d77b
ZW
3231 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3232 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3233 I915_WRITE(reg, temp);
3234
3235 POSTING_READ(reg);
8db9d77b
ZW
3236 udelay(500);
3237
fa37d39e
SP
3238 for (retry = 0; retry < 5; retry++) {
3239 reg = FDI_RX_IIR(pipe);
3240 temp = I915_READ(reg);
3241 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3242 if (temp & FDI_RX_BIT_LOCK) {
3243 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3244 DRM_DEBUG_KMS("FDI train 1 done.\n");
3245 break;
3246 }
3247 udelay(50);
8db9d77b 3248 }
fa37d39e
SP
3249 if (retry < 5)
3250 break;
8db9d77b
ZW
3251 }
3252 if (i == 4)
5eddb70b 3253 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3254
3255 /* Train 2 */
5eddb70b
CW
3256 reg = FDI_TX_CTL(pipe);
3257 temp = I915_READ(reg);
8db9d77b
ZW
3258 temp &= ~FDI_LINK_TRAIN_NONE;
3259 temp |= FDI_LINK_TRAIN_PATTERN_2;
3260 if (IS_GEN6(dev)) {
3261 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3262 /* SNB-B */
3263 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3264 }
5eddb70b 3265 I915_WRITE(reg, temp);
8db9d77b 3266
5eddb70b
CW
3267 reg = FDI_RX_CTL(pipe);
3268 temp = I915_READ(reg);
8db9d77b
ZW
3269 if (HAS_PCH_CPT(dev)) {
3270 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3271 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3272 } else {
3273 temp &= ~FDI_LINK_TRAIN_NONE;
3274 temp |= FDI_LINK_TRAIN_PATTERN_2;
3275 }
5eddb70b
CW
3276 I915_WRITE(reg, temp);
3277
3278 POSTING_READ(reg);
8db9d77b
ZW
3279 udelay(150);
3280
0206e353 3281 for (i = 0; i < 4; i++) {
5eddb70b
CW
3282 reg = FDI_TX_CTL(pipe);
3283 temp = I915_READ(reg);
8db9d77b
ZW
3284 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3285 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3286 I915_WRITE(reg, temp);
3287
3288 POSTING_READ(reg);
8db9d77b
ZW
3289 udelay(500);
3290
fa37d39e
SP
3291 for (retry = 0; retry < 5; retry++) {
3292 reg = FDI_RX_IIR(pipe);
3293 temp = I915_READ(reg);
3294 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3295 if (temp & FDI_RX_SYMBOL_LOCK) {
3296 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3297 DRM_DEBUG_KMS("FDI train 2 done.\n");
3298 break;
3299 }
3300 udelay(50);
8db9d77b 3301 }
fa37d39e
SP
3302 if (retry < 5)
3303 break;
8db9d77b
ZW
3304 }
3305 if (i == 4)
5eddb70b 3306 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3307
3308 DRM_DEBUG_KMS("FDI train done.\n");
3309}
3310
357555c0
JB
3311/* Manual link training for Ivy Bridge A0 parts */
3312static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3313{
3314 struct drm_device *dev = crtc->dev;
3315 struct drm_i915_private *dev_priv = dev->dev_private;
3316 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3317 int pipe = intel_crtc->pipe;
139ccd3f 3318 u32 reg, temp, i, j;
357555c0
JB
3319
3320 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3321 for train result */
3322 reg = FDI_RX_IMR(pipe);
3323 temp = I915_READ(reg);
3324 temp &= ~FDI_RX_SYMBOL_LOCK;
3325 temp &= ~FDI_RX_BIT_LOCK;
3326 I915_WRITE(reg, temp);
3327
3328 POSTING_READ(reg);
3329 udelay(150);
3330
01a415fd
DV
3331 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3332 I915_READ(FDI_RX_IIR(pipe)));
3333
139ccd3f
JB
3334 /* Try each vswing and preemphasis setting twice before moving on */
3335 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3336 /* disable first in case we need to retry */
3337 reg = FDI_TX_CTL(pipe);
3338 temp = I915_READ(reg);
3339 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3340 temp &= ~FDI_TX_ENABLE;
3341 I915_WRITE(reg, temp);
357555c0 3342
139ccd3f
JB
3343 reg = FDI_RX_CTL(pipe);
3344 temp = I915_READ(reg);
3345 temp &= ~FDI_LINK_TRAIN_AUTO;
3346 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3347 temp &= ~FDI_RX_ENABLE;
3348 I915_WRITE(reg, temp);
357555c0 3349
139ccd3f 3350 /* enable CPU FDI TX and PCH FDI RX */
357555c0
JB
3351 reg = FDI_TX_CTL(pipe);
3352 temp = I915_READ(reg);
139ccd3f 3353 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3354 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
139ccd3f 3355 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
357555c0 3356 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
139ccd3f
JB
3357 temp |= snb_b_fdi_train_param[j/2];
3358 temp |= FDI_COMPOSITE_SYNC;
3359 I915_WRITE(reg, temp | FDI_TX_ENABLE);
357555c0 3360
139ccd3f
JB
3361 I915_WRITE(FDI_RX_MISC(pipe),
3362 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
357555c0 3363
139ccd3f 3364 reg = FDI_RX_CTL(pipe);
357555c0 3365 temp = I915_READ(reg);
139ccd3f
JB
3366 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3367 temp |= FDI_COMPOSITE_SYNC;
3368 I915_WRITE(reg, temp | FDI_RX_ENABLE);
357555c0 3369
139ccd3f
JB
3370 POSTING_READ(reg);
3371 udelay(1); /* should be 0.5us */
357555c0 3372
139ccd3f
JB
3373 for (i = 0; i < 4; i++) {
3374 reg = FDI_RX_IIR(pipe);
3375 temp = I915_READ(reg);
3376 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3377
139ccd3f
JB
3378 if (temp & FDI_RX_BIT_LOCK ||
3379 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3380 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3381 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3382 i);
3383 break;
3384 }
3385 udelay(1); /* should be 0.5us */
3386 }
3387 if (i == 4) {
3388 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3389 continue;
3390 }
357555c0 3391
139ccd3f 3392 /* Train 2 */
357555c0
JB
3393 reg = FDI_TX_CTL(pipe);
3394 temp = I915_READ(reg);
139ccd3f
JB
3395 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3396 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3397 I915_WRITE(reg, temp);
3398
3399 reg = FDI_RX_CTL(pipe);
3400 temp = I915_READ(reg);
3401 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3402 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
357555c0
JB
3403 I915_WRITE(reg, temp);
3404
3405 POSTING_READ(reg);
139ccd3f 3406 udelay(2); /* should be 1.5us */
357555c0 3407
139ccd3f
JB
3408 for (i = 0; i < 4; i++) {
3409 reg = FDI_RX_IIR(pipe);
3410 temp = I915_READ(reg);
3411 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3412
139ccd3f
JB
3413 if (temp & FDI_RX_SYMBOL_LOCK ||
3414 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3415 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3416 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3417 i);
3418 goto train_done;
3419 }
3420 udelay(2); /* should be 1.5us */
357555c0 3421 }
139ccd3f
JB
3422 if (i == 4)
3423 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
357555c0 3424 }
357555c0 3425
139ccd3f 3426train_done:
357555c0
JB
3427 DRM_DEBUG_KMS("FDI train done.\n");
3428}
3429
88cefb6c 3430static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 3431{
88cefb6c 3432 struct drm_device *dev = intel_crtc->base.dev;
2c07245f 3433 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 3434 int pipe = intel_crtc->pipe;
5eddb70b 3435 u32 reg, temp;
79e53945 3436
c64e311e 3437
c98e9dcf 3438 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
3439 reg = FDI_RX_CTL(pipe);
3440 temp = I915_READ(reg);
627eb5a3 3441 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
6e3c9717 3442 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
dfd07d72 3443 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
3444 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3445
3446 POSTING_READ(reg);
c98e9dcf
JB
3447 udelay(200);
3448
3449 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
3450 temp = I915_READ(reg);
3451 I915_WRITE(reg, temp | FDI_PCDCLK);
3452
3453 POSTING_READ(reg);
c98e9dcf
JB
3454 udelay(200);
3455
20749730
PZ
3456 /* Enable CPU FDI TX PLL, always on for Ironlake */
3457 reg = FDI_TX_CTL(pipe);
3458 temp = I915_READ(reg);
3459 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3460 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 3461
20749730
PZ
3462 POSTING_READ(reg);
3463 udelay(100);
6be4a607 3464 }
0e23b99d
JB
3465}
3466
88cefb6c
DV
3467static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3468{
3469 struct drm_device *dev = intel_crtc->base.dev;
3470 struct drm_i915_private *dev_priv = dev->dev_private;
3471 int pipe = intel_crtc->pipe;
3472 u32 reg, temp;
3473
3474 /* Switch from PCDclk to Rawclk */
3475 reg = FDI_RX_CTL(pipe);
3476 temp = I915_READ(reg);
3477 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3478
3479 /* Disable CPU FDI TX PLL */
3480 reg = FDI_TX_CTL(pipe);
3481 temp = I915_READ(reg);
3482 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3483
3484 POSTING_READ(reg);
3485 udelay(100);
3486
3487 reg = FDI_RX_CTL(pipe);
3488 temp = I915_READ(reg);
3489 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3490
3491 /* Wait for the clocks to turn off. */
3492 POSTING_READ(reg);
3493 udelay(100);
3494}
3495
0fc932b8
JB
3496static void ironlake_fdi_disable(struct drm_crtc *crtc)
3497{
3498 struct drm_device *dev = crtc->dev;
3499 struct drm_i915_private *dev_priv = dev->dev_private;
3500 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3501 int pipe = intel_crtc->pipe;
3502 u32 reg, temp;
3503
3504 /* disable CPU FDI tx and PCH FDI rx */
3505 reg = FDI_TX_CTL(pipe);
3506 temp = I915_READ(reg);
3507 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3508 POSTING_READ(reg);
3509
3510 reg = FDI_RX_CTL(pipe);
3511 temp = I915_READ(reg);
3512 temp &= ~(0x7 << 16);
dfd07d72 3513 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3514 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3515
3516 POSTING_READ(reg);
3517 udelay(100);
3518
3519 /* Ironlake workaround, disable clock pointer after downing FDI */
eba905b2 3520 if (HAS_PCH_IBX(dev))
6f06ce18 3521 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
0fc932b8
JB
3522
3523 /* still set train pattern 1 */
3524 reg = FDI_TX_CTL(pipe);
3525 temp = I915_READ(reg);
3526 temp &= ~FDI_LINK_TRAIN_NONE;
3527 temp |= FDI_LINK_TRAIN_PATTERN_1;
3528 I915_WRITE(reg, temp);
3529
3530 reg = FDI_RX_CTL(pipe);
3531 temp = I915_READ(reg);
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 }
3539 /* BPC in FDI rx is consistent with that in PIPECONF */
3540 temp &= ~(0x07 << 16);
dfd07d72 3541 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3542 I915_WRITE(reg, temp);
3543
3544 POSTING_READ(reg);
3545 udelay(100);
3546}
3547
5dce5b93
CW
3548bool intel_has_pending_fb_unpin(struct drm_device *dev)
3549{
3550 struct intel_crtc *crtc;
3551
3552 /* Note that we don't need to be called with mode_config.lock here
3553 * as our list of CRTC objects is static for the lifetime of the
3554 * device and so cannot disappear as we iterate. Similarly, we can
3555 * happily treat the predicates as racy, atomic checks as userspace
3556 * cannot claim and pin a new fb without at least acquring the
3557 * struct_mutex and so serialising with us.
3558 */
d3fcc808 3559 for_each_intel_crtc(dev, crtc) {
5dce5b93
CW
3560 if (atomic_read(&crtc->unpin_work_count) == 0)
3561 continue;
3562
3563 if (crtc->unpin_work)
3564 intel_wait_for_vblank(dev, crtc->pipe);
3565
3566 return true;
3567 }
3568
3569 return false;
3570}
3571
d6bbafa1
CW
3572static void page_flip_completed(struct intel_crtc *intel_crtc)
3573{
3574 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3575 struct intel_unpin_work *work = intel_crtc->unpin_work;
3576
3577 /* ensure that the unpin work is consistent wrt ->pending. */
3578 smp_rmb();
3579 intel_crtc->unpin_work = NULL;
3580
3581 if (work->event)
3582 drm_send_vblank_event(intel_crtc->base.dev,
3583 intel_crtc->pipe,
3584 work->event);
3585
3586 drm_crtc_vblank_put(&intel_crtc->base);
3587
3588 wake_up_all(&dev_priv->pending_flip_queue);
3589 queue_work(dev_priv->wq, &work->work);
3590
3591 trace_i915_flip_complete(intel_crtc->plane,
3592 work->pending_flip_obj);
3593}
3594
46a55d30 3595void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
e6c3a2a6 3596{
0f91128d 3597 struct drm_device *dev = crtc->dev;
5bb61643 3598 struct drm_i915_private *dev_priv = dev->dev_private;
e6c3a2a6 3599
2c10d571 3600 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
9c787942
CW
3601 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3602 !intel_crtc_has_pending_flip(crtc),
3603 60*HZ) == 0)) {
3604 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2c10d571 3605
5e2d7afc 3606 spin_lock_irq(&dev->event_lock);
9c787942
CW
3607 if (intel_crtc->unpin_work) {
3608 WARN_ONCE(1, "Removing stuck page flip\n");
3609 page_flip_completed(intel_crtc);
3610 }
5e2d7afc 3611 spin_unlock_irq(&dev->event_lock);
9c787942 3612 }
5bb61643 3613
975d568a
CW
3614 if (crtc->primary->fb) {
3615 mutex_lock(&dev->struct_mutex);
3616 intel_finish_fb(crtc->primary->fb);
3617 mutex_unlock(&dev->struct_mutex);
3618 }
e6c3a2a6
CW
3619}
3620
e615efe4
ED
3621/* Program iCLKIP clock to the desired frequency */
3622static void lpt_program_iclkip(struct drm_crtc *crtc)
3623{
3624 struct drm_device *dev = crtc->dev;
3625 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 3626 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
e615efe4
ED
3627 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3628 u32 temp;
3629
09153000
DV
3630 mutex_lock(&dev_priv->dpio_lock);
3631
e615efe4
ED
3632 /* It is necessary to ungate the pixclk gate prior to programming
3633 * the divisors, and gate it back when it is done.
3634 */
3635 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3636
3637 /* Disable SSCCTL */
3638 intel_sbi_write(dev_priv, SBI_SSCCTL6,
988d6ee8
PZ
3639 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3640 SBI_SSCCTL_DISABLE,
3641 SBI_ICLK);
e615efe4
ED
3642
3643 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
12d7ceed 3644 if (clock == 20000) {
e615efe4
ED
3645 auxdiv = 1;
3646 divsel = 0x41;
3647 phaseinc = 0x20;
3648 } else {
3649 /* The iCLK virtual clock root frequency is in MHz,
241bfc38
DL
3650 * but the adjusted_mode->crtc_clock in in KHz. To get the
3651 * divisors, it is necessary to divide one by another, so we
e615efe4
ED
3652 * convert the virtual clock precision to KHz here for higher
3653 * precision.
3654 */
3655 u32 iclk_virtual_root_freq = 172800 * 1000;
3656 u32 iclk_pi_range = 64;
3657 u32 desired_divisor, msb_divisor_value, pi_value;
3658
12d7ceed 3659 desired_divisor = (iclk_virtual_root_freq / clock);
e615efe4
ED
3660 msb_divisor_value = desired_divisor / iclk_pi_range;
3661 pi_value = desired_divisor % iclk_pi_range;
3662
3663 auxdiv = 0;
3664 divsel = msb_divisor_value - 2;
3665 phaseinc = pi_value;
3666 }
3667
3668 /* This should not happen with any sane values */
3669 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3670 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3671 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3672 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3673
3674 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
12d7ceed 3675 clock,
e615efe4
ED
3676 auxdiv,
3677 divsel,
3678 phasedir,
3679 phaseinc);
3680
3681 /* Program SSCDIVINTPHASE6 */
988d6ee8 3682 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
3683 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3684 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3685 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3686 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3687 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3688 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 3689 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
3690
3691 /* Program SSCAUXDIV */
988d6ee8 3692 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
3693 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3694 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 3695 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
3696
3697 /* Enable modulator and associated divider */
988d6ee8 3698 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 3699 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 3700 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4
ED
3701
3702 /* Wait for initialization time */
3703 udelay(24);
3704
3705 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
09153000
DV
3706
3707 mutex_unlock(&dev_priv->dpio_lock);
e615efe4
ED
3708}
3709
275f01b2
DV
3710static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3711 enum pipe pch_transcoder)
3712{
3713 struct drm_device *dev = crtc->base.dev;
3714 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 3715 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
275f01b2
DV
3716
3717 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3718 I915_READ(HTOTAL(cpu_transcoder)));
3719 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3720 I915_READ(HBLANK(cpu_transcoder)));
3721 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3722 I915_READ(HSYNC(cpu_transcoder)));
3723
3724 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3725 I915_READ(VTOTAL(cpu_transcoder)));
3726 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3727 I915_READ(VBLANK(cpu_transcoder)));
3728 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3729 I915_READ(VSYNC(cpu_transcoder)));
3730 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3731 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3732}
3733
1fbc0d78
DV
3734static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3735{
3736 struct drm_i915_private *dev_priv = dev->dev_private;
3737 uint32_t temp;
3738
3739 temp = I915_READ(SOUTH_CHICKEN1);
3740 if (temp & FDI_BC_BIFURCATION_SELECT)
3741 return;
3742
3743 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3744 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3745
3746 temp |= FDI_BC_BIFURCATION_SELECT;
3747 DRM_DEBUG_KMS("enabling fdi C rx\n");
3748 I915_WRITE(SOUTH_CHICKEN1, temp);
3749 POSTING_READ(SOUTH_CHICKEN1);
3750}
3751
3752static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3753{
3754 struct drm_device *dev = intel_crtc->base.dev;
3755 struct drm_i915_private *dev_priv = dev->dev_private;
3756
3757 switch (intel_crtc->pipe) {
3758 case PIPE_A:
3759 break;
3760 case PIPE_B:
6e3c9717 3761 if (intel_crtc->config->fdi_lanes > 2)
1fbc0d78
DV
3762 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3763 else
3764 cpt_enable_fdi_bc_bifurcation(dev);
3765
3766 break;
3767 case PIPE_C:
3768 cpt_enable_fdi_bc_bifurcation(dev);
3769
3770 break;
3771 default:
3772 BUG();
3773 }
3774}
3775
f67a559d
JB
3776/*
3777 * Enable PCH resources required for PCH ports:
3778 * - PCH PLLs
3779 * - FDI training & RX/TX
3780 * - update transcoder timings
3781 * - DP transcoding bits
3782 * - transcoder
3783 */
3784static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
3785{
3786 struct drm_device *dev = crtc->dev;
3787 struct drm_i915_private *dev_priv = dev->dev_private;
3788 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3789 int pipe = intel_crtc->pipe;
ee7b9f93 3790 u32 reg, temp;
2c07245f 3791
ab9412ba 3792 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 3793
1fbc0d78
DV
3794 if (IS_IVYBRIDGE(dev))
3795 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3796
cd986abb
DV
3797 /* Write the TU size bits before fdi link training, so that error
3798 * detection works. */
3799 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3800 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3801
c98e9dcf 3802 /* For PCH output, training FDI link */
674cf967 3803 dev_priv->display.fdi_link_train(crtc);
2c07245f 3804
3ad8a208
DV
3805 /* We need to program the right clock selection before writing the pixel
3806 * mutliplier into the DPLL. */
303b81e0 3807 if (HAS_PCH_CPT(dev)) {
ee7b9f93 3808 u32 sel;
4b645f14 3809
c98e9dcf 3810 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
3811 temp |= TRANS_DPLL_ENABLE(pipe);
3812 sel = TRANS_DPLLB_SEL(pipe);
6e3c9717 3813 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
ee7b9f93
JB
3814 temp |= sel;
3815 else
3816 temp &= ~sel;
c98e9dcf 3817 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 3818 }
5eddb70b 3819
3ad8a208
DV
3820 /* XXX: pch pll's can be enabled any time before we enable the PCH
3821 * transcoder, and we actually should do this to not upset any PCH
3822 * transcoder that already use the clock when we share it.
3823 *
3824 * Note that enable_shared_dpll tries to do the right thing, but
3825 * get_shared_dpll unconditionally resets the pll - we need that to have
3826 * the right LVDS enable sequence. */
85b3894f 3827 intel_enable_shared_dpll(intel_crtc);
3ad8a208 3828
d9b6cb56
JB
3829 /* set transcoder timing, panel must allow it */
3830 assert_panel_unlocked(dev_priv, pipe);
275f01b2 3831 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 3832
303b81e0 3833 intel_fdi_normal_train(crtc);
5e84e1a4 3834
c98e9dcf 3835 /* For PCH DP, enable TRANS_DP_CTL */
6e3c9717 3836 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
dfd07d72 3837 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
5eddb70b
CW
3838 reg = TRANS_DP_CTL(pipe);
3839 temp = I915_READ(reg);
3840 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
3841 TRANS_DP_SYNC_MASK |
3842 TRANS_DP_BPC_MASK);
5eddb70b
CW
3843 temp |= (TRANS_DP_OUTPUT_ENABLE |
3844 TRANS_DP_ENH_FRAMING);
9325c9f0 3845 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf
JB
3846
3847 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 3848 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
c98e9dcf 3849 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 3850 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
3851
3852 switch (intel_trans_dp_port_sel(crtc)) {
3853 case PCH_DP_B:
5eddb70b 3854 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf
JB
3855 break;
3856 case PCH_DP_C:
5eddb70b 3857 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf
JB
3858 break;
3859 case PCH_DP_D:
5eddb70b 3860 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
3861 break;
3862 default:
e95d41e1 3863 BUG();
32f9d658 3864 }
2c07245f 3865
5eddb70b 3866 I915_WRITE(reg, temp);
6be4a607 3867 }
b52eb4dc 3868
b8a4f404 3869 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
3870}
3871
1507e5bd
PZ
3872static void lpt_pch_enable(struct drm_crtc *crtc)
3873{
3874 struct drm_device *dev = crtc->dev;
3875 struct drm_i915_private *dev_priv = dev->dev_private;
3876 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 3877 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
1507e5bd 3878
ab9412ba 3879 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 3880
8c52b5e8 3881 lpt_program_iclkip(crtc);
1507e5bd 3882
0540e488 3883 /* Set transcoder timing. */
275f01b2 3884 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 3885
937bb610 3886 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
3887}
3888
716c2e55 3889void intel_put_shared_dpll(struct intel_crtc *crtc)
ee7b9f93 3890{
e2b78267 3891 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
ee7b9f93
JB
3892
3893 if (pll == NULL)
3894 return;
3895
3e369b76 3896 if (!(pll->config.crtc_mask & (1 << crtc->pipe))) {
1e6f2ddc 3897 WARN(1, "bad %s crtc mask\n", pll->name);
ee7b9f93
JB
3898 return;
3899 }
3900
3e369b76
ACO
3901 pll->config.crtc_mask &= ~(1 << crtc->pipe);
3902 if (pll->config.crtc_mask == 0) {
f4a091c7
DV
3903 WARN_ON(pll->on);
3904 WARN_ON(pll->active);
3905 }
3906
6e3c9717 3907 crtc->config->shared_dpll = DPLL_ID_PRIVATE;
ee7b9f93
JB
3908}
3909
190f68c5
ACO
3910struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
3911 struct intel_crtc_state *crtc_state)
ee7b9f93 3912{
e2b78267 3913 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
8bd31e67 3914 struct intel_shared_dpll *pll;
e2b78267 3915 enum intel_dpll_id i;
ee7b9f93 3916
98b6bd99
DV
3917 if (HAS_PCH_IBX(dev_priv->dev)) {
3918 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
d94ab068 3919 i = (enum intel_dpll_id) crtc->pipe;
e72f9fbf 3920 pll = &dev_priv->shared_dplls[i];
98b6bd99 3921
46edb027
DV
3922 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3923 crtc->base.base.id, pll->name);
98b6bd99 3924
8bd31e67 3925 WARN_ON(pll->new_config->crtc_mask);
f2a69f44 3926
98b6bd99
DV
3927 goto found;
3928 }
3929
e72f9fbf
DV
3930 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3931 pll = &dev_priv->shared_dplls[i];
ee7b9f93
JB
3932
3933 /* Only want to check enabled timings first */
8bd31e67 3934 if (pll->new_config->crtc_mask == 0)
ee7b9f93
JB
3935 continue;
3936
190f68c5 3937 if (memcmp(&crtc_state->dpll_hw_state,
8bd31e67
ACO
3938 &pll->new_config->hw_state,
3939 sizeof(pll->new_config->hw_state)) == 0) {
3940 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
1e6f2ddc 3941 crtc->base.base.id, pll->name,
8bd31e67
ACO
3942 pll->new_config->crtc_mask,
3943 pll->active);
ee7b9f93
JB
3944 goto found;
3945 }
3946 }
3947
3948 /* Ok no matching timings, maybe there's a free one? */
e72f9fbf
DV
3949 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3950 pll = &dev_priv->shared_dplls[i];
8bd31e67 3951 if (pll->new_config->crtc_mask == 0) {
46edb027
DV
3952 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3953 crtc->base.base.id, pll->name);
ee7b9f93
JB
3954 goto found;
3955 }
3956 }
3957
3958 return NULL;
3959
3960found:
8bd31e67 3961 if (pll->new_config->crtc_mask == 0)
190f68c5 3962 pll->new_config->hw_state = crtc_state->dpll_hw_state;
f2a69f44 3963
190f68c5 3964 crtc_state->shared_dpll = i;
46edb027
DV
3965 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3966 pipe_name(crtc->pipe));
ee7b9f93 3967
8bd31e67 3968 pll->new_config->crtc_mask |= 1 << crtc->pipe;
e04c7350 3969
ee7b9f93
JB
3970 return pll;
3971}
3972
8bd31e67
ACO
3973/**
3974 * intel_shared_dpll_start_config - start a new PLL staged config
3975 * @dev_priv: DRM device
3976 * @clear_pipes: mask of pipes that will have their PLLs freed
3977 *
3978 * Starts a new PLL staged config, copying the current config but
3979 * releasing the references of pipes specified in clear_pipes.
3980 */
3981static int intel_shared_dpll_start_config(struct drm_i915_private *dev_priv,
3982 unsigned clear_pipes)
3983{
3984 struct intel_shared_dpll *pll;
3985 enum intel_dpll_id i;
3986
3987 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3988 pll = &dev_priv->shared_dplls[i];
3989
3990 pll->new_config = kmemdup(&pll->config, sizeof pll->config,
3991 GFP_KERNEL);
3992 if (!pll->new_config)
3993 goto cleanup;
3994
3995 pll->new_config->crtc_mask &= ~clear_pipes;
3996 }
3997
3998 return 0;
3999
4000cleanup:
4001 while (--i >= 0) {
4002 pll = &dev_priv->shared_dplls[i];
f354d733 4003 kfree(pll->new_config);
8bd31e67
ACO
4004 pll->new_config = NULL;
4005 }
4006
4007 return -ENOMEM;
4008}
4009
4010static void intel_shared_dpll_commit(struct drm_i915_private *dev_priv)
4011{
4012 struct intel_shared_dpll *pll;
4013 enum intel_dpll_id i;
4014
4015 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4016 pll = &dev_priv->shared_dplls[i];
4017
4018 WARN_ON(pll->new_config == &pll->config);
4019
4020 pll->config = *pll->new_config;
4021 kfree(pll->new_config);
4022 pll->new_config = NULL;
4023 }
4024}
4025
4026static void intel_shared_dpll_abort_config(struct drm_i915_private *dev_priv)
4027{
4028 struct intel_shared_dpll *pll;
4029 enum intel_dpll_id i;
4030
4031 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4032 pll = &dev_priv->shared_dplls[i];
4033
4034 WARN_ON(pll->new_config == &pll->config);
4035
4036 kfree(pll->new_config);
4037 pll->new_config = NULL;
4038 }
4039}
4040
a1520318 4041static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57
JB
4042{
4043 struct drm_i915_private *dev_priv = dev->dev_private;
23670b32 4044 int dslreg = PIPEDSL(pipe);
d4270e57
JB
4045 u32 temp;
4046
4047 temp = I915_READ(dslreg);
4048 udelay(500);
4049 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 4050 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 4051 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
4052 }
4053}
4054
bd2e244f
JB
4055static void skylake_pfit_enable(struct intel_crtc *crtc)
4056{
4057 struct drm_device *dev = crtc->base.dev;
4058 struct drm_i915_private *dev_priv = dev->dev_private;
4059 int pipe = crtc->pipe;
4060
6e3c9717 4061 if (crtc->config->pch_pfit.enabled) {
bd2e244f 4062 I915_WRITE(PS_CTL(pipe), PS_ENABLE);
6e3c9717
ACO
4063 I915_WRITE(PS_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4064 I915_WRITE(PS_WIN_SZ(pipe), crtc->config->pch_pfit.size);
bd2e244f
JB
4065 }
4066}
4067
b074cec8
JB
4068static void ironlake_pfit_enable(struct intel_crtc *crtc)
4069{
4070 struct drm_device *dev = crtc->base.dev;
4071 struct drm_i915_private *dev_priv = dev->dev_private;
4072 int pipe = crtc->pipe;
4073
6e3c9717 4074 if (crtc->config->pch_pfit.enabled) {
b074cec8
JB
4075 /* Force use of hard-coded filter coefficients
4076 * as some pre-programmed values are broken,
4077 * e.g. x201.
4078 */
4079 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4080 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4081 PF_PIPE_SEL_IVB(pipe));
4082 else
4083 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
6e3c9717
ACO
4084 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4085 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
d4270e57
JB
4086 }
4087}
4088
4a3b8769 4089static void intel_enable_sprite_planes(struct drm_crtc *crtc)
bb53d4ae
VS
4090{
4091 struct drm_device *dev = crtc->dev;
4092 enum pipe pipe = to_intel_crtc(crtc)->pipe;
af2b653b 4093 struct drm_plane *plane;
bb53d4ae
VS
4094 struct intel_plane *intel_plane;
4095
af2b653b
MR
4096 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4097 intel_plane = to_intel_plane(plane);
bb53d4ae
VS
4098 if (intel_plane->pipe == pipe)
4099 intel_plane_restore(&intel_plane->base);
af2b653b 4100 }
bb53d4ae
VS
4101}
4102
4a3b8769 4103static void intel_disable_sprite_planes(struct drm_crtc *crtc)
bb53d4ae
VS
4104{
4105 struct drm_device *dev = crtc->dev;
4106 enum pipe pipe = to_intel_crtc(crtc)->pipe;
af2b653b 4107 struct drm_plane *plane;
bb53d4ae
VS
4108 struct intel_plane *intel_plane;
4109
af2b653b
MR
4110 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4111 intel_plane = to_intel_plane(plane);
bb53d4ae 4112 if (intel_plane->pipe == pipe)
cf4c7c12 4113 plane->funcs->disable_plane(plane);
af2b653b 4114 }
bb53d4ae
VS
4115}
4116
20bc8673 4117void hsw_enable_ips(struct intel_crtc *crtc)
d77e4531 4118{
cea165c3
VS
4119 struct drm_device *dev = crtc->base.dev;
4120 struct drm_i915_private *dev_priv = dev->dev_private;
d77e4531 4121
6e3c9717 4122 if (!crtc->config->ips_enabled)
d77e4531
PZ
4123 return;
4124
cea165c3
VS
4125 /* We can only enable IPS after we enable a plane and wait for a vblank */
4126 intel_wait_for_vblank(dev, crtc->pipe);
4127
d77e4531 4128 assert_plane_enabled(dev_priv, crtc->plane);
cea165c3 4129 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4130 mutex_lock(&dev_priv->rps.hw_lock);
4131 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4132 mutex_unlock(&dev_priv->rps.hw_lock);
4133 /* Quoting Art Runyan: "its not safe to expect any particular
4134 * value in IPS_CTL bit 31 after enabling IPS through the
e59150dc
JB
4135 * mailbox." Moreover, the mailbox may return a bogus state,
4136 * so we need to just enable it and continue on.
2a114cc1
BW
4137 */
4138 } else {
4139 I915_WRITE(IPS_CTL, IPS_ENABLE);
4140 /* The bit only becomes 1 in the next vblank, so this wait here
4141 * is essentially intel_wait_for_vblank. If we don't have this
4142 * and don't wait for vblanks until the end of crtc_enable, then
4143 * the HW state readout code will complain that the expected
4144 * IPS_CTL value is not the one we read. */
4145 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4146 DRM_ERROR("Timed out waiting for IPS enable\n");
4147 }
d77e4531
PZ
4148}
4149
20bc8673 4150void hsw_disable_ips(struct intel_crtc *crtc)
d77e4531
PZ
4151{
4152 struct drm_device *dev = crtc->base.dev;
4153 struct drm_i915_private *dev_priv = dev->dev_private;
4154
6e3c9717 4155 if (!crtc->config->ips_enabled)
d77e4531
PZ
4156 return;
4157
4158 assert_plane_enabled(dev_priv, crtc->plane);
23d0b130 4159 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4160 mutex_lock(&dev_priv->rps.hw_lock);
4161 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4162 mutex_unlock(&dev_priv->rps.hw_lock);
23d0b130
BW
4163 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4164 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4165 DRM_ERROR("Timed out waiting for IPS disable\n");
e59150dc 4166 } else {
2a114cc1 4167 I915_WRITE(IPS_CTL, 0);
e59150dc
JB
4168 POSTING_READ(IPS_CTL);
4169 }
d77e4531
PZ
4170
4171 /* We need to wait for a vblank before we can disable the plane. */
4172 intel_wait_for_vblank(dev, crtc->pipe);
4173}
4174
4175/** Loads the palette/gamma unit for the CRTC with the prepared values */
4176static void intel_crtc_load_lut(struct drm_crtc *crtc)
4177{
4178 struct drm_device *dev = crtc->dev;
4179 struct drm_i915_private *dev_priv = dev->dev_private;
4180 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4181 enum pipe pipe = intel_crtc->pipe;
4182 int palreg = PALETTE(pipe);
4183 int i;
4184 bool reenable_ips = false;
4185
4186 /* The clocks have to be on to load the palette. */
4187 if (!crtc->enabled || !intel_crtc->active)
4188 return;
4189
4190 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
409ee761 4191 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
d77e4531
PZ
4192 assert_dsi_pll_enabled(dev_priv);
4193 else
4194 assert_pll_enabled(dev_priv, pipe);
4195 }
4196
4197 /* use legacy palette for Ironlake */
7a1db49a 4198 if (!HAS_GMCH_DISPLAY(dev))
d77e4531
PZ
4199 palreg = LGC_PALETTE(pipe);
4200
4201 /* Workaround : Do not read or write the pipe palette/gamma data while
4202 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4203 */
6e3c9717 4204 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
d77e4531
PZ
4205 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4206 GAMMA_MODE_MODE_SPLIT)) {
4207 hsw_disable_ips(intel_crtc);
4208 reenable_ips = true;
4209 }
4210
4211 for (i = 0; i < 256; i++) {
4212 I915_WRITE(palreg + 4 * i,
4213 (intel_crtc->lut_r[i] << 16) |
4214 (intel_crtc->lut_g[i] << 8) |
4215 intel_crtc->lut_b[i]);
4216 }
4217
4218 if (reenable_ips)
4219 hsw_enable_ips(intel_crtc);
4220}
4221
d3eedb1a
VS
4222static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
4223{
4224 if (!enable && intel_crtc->overlay) {
4225 struct drm_device *dev = intel_crtc->base.dev;
4226 struct drm_i915_private *dev_priv = dev->dev_private;
4227
4228 mutex_lock(&dev->struct_mutex);
4229 dev_priv->mm.interruptible = false;
4230 (void) intel_overlay_switch_off(intel_crtc->overlay);
4231 dev_priv->mm.interruptible = true;
4232 mutex_unlock(&dev->struct_mutex);
4233 }
4234
4235 /* Let userspace switch the overlay on again. In most cases userspace
4236 * has to recompute where to put it anyway.
4237 */
4238}
4239
d3eedb1a 4240static void intel_crtc_enable_planes(struct drm_crtc *crtc)
a5c4d7bc
VS
4241{
4242 struct drm_device *dev = crtc->dev;
a5c4d7bc
VS
4243 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4244 int pipe = intel_crtc->pipe;
a5c4d7bc 4245
fdd508a6 4246 intel_enable_primary_hw_plane(crtc->primary, crtc);
4a3b8769 4247 intel_enable_sprite_planes(crtc);
a5c4d7bc 4248 intel_crtc_update_cursor(crtc, true);
d3eedb1a 4249 intel_crtc_dpms_overlay(intel_crtc, true);
a5c4d7bc
VS
4250
4251 hsw_enable_ips(intel_crtc);
4252
4253 mutex_lock(&dev->struct_mutex);
7ff0ebcc 4254 intel_fbc_update(dev);
a5c4d7bc 4255 mutex_unlock(&dev->struct_mutex);
f99d7069
DV
4256
4257 /*
4258 * FIXME: Once we grow proper nuclear flip support out of this we need
4259 * to compute the mask of flip planes precisely. For the time being
4260 * consider this a flip from a NULL plane.
4261 */
4262 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
a5c4d7bc
VS
4263}
4264
d3eedb1a 4265static void intel_crtc_disable_planes(struct drm_crtc *crtc)
a5c4d7bc
VS
4266{
4267 struct drm_device *dev = crtc->dev;
4268 struct drm_i915_private *dev_priv = dev->dev_private;
4269 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4270 int pipe = intel_crtc->pipe;
4271 int plane = intel_crtc->plane;
4272
4273 intel_crtc_wait_for_pending_flips(crtc);
a5c4d7bc
VS
4274
4275 if (dev_priv->fbc.plane == plane)
7ff0ebcc 4276 intel_fbc_disable(dev);
a5c4d7bc
VS
4277
4278 hsw_disable_ips(intel_crtc);
4279
d3eedb1a 4280 intel_crtc_dpms_overlay(intel_crtc, false);
a5c4d7bc 4281 intel_crtc_update_cursor(crtc, false);
4a3b8769 4282 intel_disable_sprite_planes(crtc);
fdd508a6 4283 intel_disable_primary_hw_plane(crtc->primary, crtc);
f98551ae 4284
f99d7069
DV
4285 /*
4286 * FIXME: Once we grow proper nuclear flip support out of this we need
4287 * to compute the mask of flip planes precisely. For the time being
4288 * consider this a flip to a NULL plane.
4289 */
4290 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
a5c4d7bc
VS
4291}
4292
f67a559d
JB
4293static void ironlake_crtc_enable(struct drm_crtc *crtc)
4294{
4295 struct drm_device *dev = crtc->dev;
4296 struct drm_i915_private *dev_priv = dev->dev_private;
4297 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4298 struct intel_encoder *encoder;
f67a559d 4299 int pipe = intel_crtc->pipe;
f67a559d 4300
08a48469
DV
4301 WARN_ON(!crtc->enabled);
4302
f67a559d
JB
4303 if (intel_crtc->active)
4304 return;
4305
6e3c9717 4306 if (intel_crtc->config->has_pch_encoder)
b14b1055
DV
4307 intel_prepare_shared_dpll(intel_crtc);
4308
6e3c9717 4309 if (intel_crtc->config->has_dp_encoder)
29407aab
DV
4310 intel_dp_set_m_n(intel_crtc);
4311
4312 intel_set_pipe_timings(intel_crtc);
4313
6e3c9717 4314 if (intel_crtc->config->has_pch_encoder) {
29407aab 4315 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4316 &intel_crtc->config->fdi_m_n, NULL);
29407aab
DV
4317 }
4318
4319 ironlake_set_pipeconf(crtc);
4320
f67a559d 4321 intel_crtc->active = true;
8664281b 4322
a72e4c9f
DV
4323 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4324 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
8664281b 4325
f6736a1a 4326 for_each_encoder_on_crtc(dev, crtc, encoder)
952735ee
DV
4327 if (encoder->pre_enable)
4328 encoder->pre_enable(encoder);
f67a559d 4329
6e3c9717 4330 if (intel_crtc->config->has_pch_encoder) {
fff367c7
DV
4331 /* Note: FDI PLL enabling _must_ be done before we enable the
4332 * cpu pipes, hence this is separate from all the other fdi/pch
4333 * enabling. */
88cefb6c 4334 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
4335 } else {
4336 assert_fdi_tx_disabled(dev_priv, pipe);
4337 assert_fdi_rx_disabled(dev_priv, pipe);
4338 }
f67a559d 4339
b074cec8 4340 ironlake_pfit_enable(intel_crtc);
f67a559d 4341
9c54c0dd
JB
4342 /*
4343 * On ILK+ LUT must be loaded before the pipe is running but with
4344 * clocks enabled
4345 */
4346 intel_crtc_load_lut(crtc);
4347
f37fcc2a 4348 intel_update_watermarks(crtc);
e1fdc473 4349 intel_enable_pipe(intel_crtc);
f67a559d 4350
6e3c9717 4351 if (intel_crtc->config->has_pch_encoder)
f67a559d 4352 ironlake_pch_enable(crtc);
c98e9dcf 4353
f9b61ff6
DV
4354 assert_vblank_disabled(crtc);
4355 drm_crtc_vblank_on(crtc);
4356
fa5c73b1
DV
4357 for_each_encoder_on_crtc(dev, crtc, encoder)
4358 encoder->enable(encoder);
61b77ddd
DV
4359
4360 if (HAS_PCH_CPT(dev))
a1520318 4361 cpt_verify_modeset(dev, intel_crtc->pipe);
6ce94100 4362
d3eedb1a 4363 intel_crtc_enable_planes(crtc);
6be4a607
JB
4364}
4365
42db64ef
PZ
4366/* IPS only exists on ULT machines and is tied to pipe A. */
4367static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4368{
f5adf94e 4369 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
42db64ef
PZ
4370}
4371
e4916946
PZ
4372/*
4373 * This implements the workaround described in the "notes" section of the mode
4374 * set sequence documentation. When going from no pipes or single pipe to
4375 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4376 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4377 */
4378static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4379{
4380 struct drm_device *dev = crtc->base.dev;
4381 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4382
4383 /* We want to get the other_active_crtc only if there's only 1 other
4384 * active crtc. */
d3fcc808 4385 for_each_intel_crtc(dev, crtc_it) {
e4916946
PZ
4386 if (!crtc_it->active || crtc_it == crtc)
4387 continue;
4388
4389 if (other_active_crtc)
4390 return;
4391
4392 other_active_crtc = crtc_it;
4393 }
4394 if (!other_active_crtc)
4395 return;
4396
4397 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4398 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4399}
4400
4f771f10
PZ
4401static void haswell_crtc_enable(struct drm_crtc *crtc)
4402{
4403 struct drm_device *dev = crtc->dev;
4404 struct drm_i915_private *dev_priv = dev->dev_private;
4405 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4406 struct intel_encoder *encoder;
4407 int pipe = intel_crtc->pipe;
4f771f10
PZ
4408
4409 WARN_ON(!crtc->enabled);
4410
4411 if (intel_crtc->active)
4412 return;
4413
df8ad70c
DV
4414 if (intel_crtc_to_shared_dpll(intel_crtc))
4415 intel_enable_shared_dpll(intel_crtc);
4416
6e3c9717 4417 if (intel_crtc->config->has_dp_encoder)
229fca97
DV
4418 intel_dp_set_m_n(intel_crtc);
4419
4420 intel_set_pipe_timings(intel_crtc);
4421
6e3c9717
ACO
4422 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4423 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4424 intel_crtc->config->pixel_multiplier - 1);
ebb69c95
CT
4425 }
4426
6e3c9717 4427 if (intel_crtc->config->has_pch_encoder) {
229fca97 4428 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4429 &intel_crtc->config->fdi_m_n, NULL);
229fca97
DV
4430 }
4431
4432 haswell_set_pipeconf(crtc);
4433
4434 intel_set_pipe_csc(crtc);
4435
4f771f10 4436 intel_crtc->active = true;
8664281b 4437
a72e4c9f 4438 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4f771f10
PZ
4439 for_each_encoder_on_crtc(dev, crtc, encoder)
4440 if (encoder->pre_enable)
4441 encoder->pre_enable(encoder);
4442
6e3c9717 4443 if (intel_crtc->config->has_pch_encoder) {
a72e4c9f
DV
4444 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4445 true);
4fe9467d
ID
4446 dev_priv->display.fdi_link_train(crtc);
4447 }
4448
1f544388 4449 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 4450
bd2e244f
JB
4451 if (IS_SKYLAKE(dev))
4452 skylake_pfit_enable(intel_crtc);
4453 else
4454 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
4455
4456 /*
4457 * On ILK+ LUT must be loaded before the pipe is running but with
4458 * clocks enabled
4459 */
4460 intel_crtc_load_lut(crtc);
4461
1f544388 4462 intel_ddi_set_pipe_settings(crtc);
8228c251 4463 intel_ddi_enable_transcoder_func(crtc);
4f771f10 4464
f37fcc2a 4465 intel_update_watermarks(crtc);
e1fdc473 4466 intel_enable_pipe(intel_crtc);
42db64ef 4467
6e3c9717 4468 if (intel_crtc->config->has_pch_encoder)
1507e5bd 4469 lpt_pch_enable(crtc);
4f771f10 4470
6e3c9717 4471 if (intel_crtc->config->dp_encoder_is_mst)
0e32b39c
DA
4472 intel_ddi_set_vc_payload_alloc(crtc, true);
4473
f9b61ff6
DV
4474 assert_vblank_disabled(crtc);
4475 drm_crtc_vblank_on(crtc);
4476
8807e55b 4477 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10 4478 encoder->enable(encoder);
8807e55b
JN
4479 intel_opregion_notify_encoder(encoder, true);
4480 }
4f771f10 4481
e4916946
PZ
4482 /* If we change the relative order between pipe/planes enabling, we need
4483 * to change the workaround. */
4484 haswell_mode_set_planes_workaround(intel_crtc);
d3eedb1a 4485 intel_crtc_enable_planes(crtc);
4f771f10
PZ
4486}
4487
bd2e244f
JB
4488static void skylake_pfit_disable(struct intel_crtc *crtc)
4489{
4490 struct drm_device *dev = crtc->base.dev;
4491 struct drm_i915_private *dev_priv = dev->dev_private;
4492 int pipe = crtc->pipe;
4493
4494 /* To avoid upsetting the power well on haswell only disable the pfit if
4495 * it's in use. The hw state code will make sure we get this right. */
6e3c9717 4496 if (crtc->config->pch_pfit.enabled) {
bd2e244f
JB
4497 I915_WRITE(PS_CTL(pipe), 0);
4498 I915_WRITE(PS_WIN_POS(pipe), 0);
4499 I915_WRITE(PS_WIN_SZ(pipe), 0);
4500 }
4501}
4502
3f8dce3a
DV
4503static void ironlake_pfit_disable(struct intel_crtc *crtc)
4504{
4505 struct drm_device *dev = crtc->base.dev;
4506 struct drm_i915_private *dev_priv = dev->dev_private;
4507 int pipe = crtc->pipe;
4508
4509 /* To avoid upsetting the power well on haswell only disable the pfit if
4510 * it's in use. The hw state code will make sure we get this right. */
6e3c9717 4511 if (crtc->config->pch_pfit.enabled) {
3f8dce3a
DV
4512 I915_WRITE(PF_CTL(pipe), 0);
4513 I915_WRITE(PF_WIN_POS(pipe), 0);
4514 I915_WRITE(PF_WIN_SZ(pipe), 0);
4515 }
4516}
4517
6be4a607
JB
4518static void ironlake_crtc_disable(struct drm_crtc *crtc)
4519{
4520 struct drm_device *dev = crtc->dev;
4521 struct drm_i915_private *dev_priv = dev->dev_private;
4522 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4523 struct intel_encoder *encoder;
6be4a607 4524 int pipe = intel_crtc->pipe;
5eddb70b 4525 u32 reg, temp;
b52eb4dc 4526
f7abfe8b
CW
4527 if (!intel_crtc->active)
4528 return;
4529
d3eedb1a 4530 intel_crtc_disable_planes(crtc);
a5c4d7bc 4531
ea9d758d
DV
4532 for_each_encoder_on_crtc(dev, crtc, encoder)
4533 encoder->disable(encoder);
4534
f9b61ff6
DV
4535 drm_crtc_vblank_off(crtc);
4536 assert_vblank_disabled(crtc);
4537
6e3c9717 4538 if (intel_crtc->config->has_pch_encoder)
a72e4c9f 4539 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
d925c59a 4540
575f7ab7 4541 intel_disable_pipe(intel_crtc);
32f9d658 4542
3f8dce3a 4543 ironlake_pfit_disable(intel_crtc);
2c07245f 4544
bf49ec8c
DV
4545 for_each_encoder_on_crtc(dev, crtc, encoder)
4546 if (encoder->post_disable)
4547 encoder->post_disable(encoder);
2c07245f 4548
6e3c9717 4549 if (intel_crtc->config->has_pch_encoder) {
d925c59a 4550 ironlake_fdi_disable(crtc);
913d8d11 4551
d925c59a 4552 ironlake_disable_pch_transcoder(dev_priv, pipe);
6be4a607 4553
d925c59a
DV
4554 if (HAS_PCH_CPT(dev)) {
4555 /* disable TRANS_DP_CTL */
4556 reg = TRANS_DP_CTL(pipe);
4557 temp = I915_READ(reg);
4558 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4559 TRANS_DP_PORT_SEL_MASK);
4560 temp |= TRANS_DP_PORT_SEL_NONE;
4561 I915_WRITE(reg, temp);
4562
4563 /* disable DPLL_SEL */
4564 temp = I915_READ(PCH_DPLL_SEL);
11887397 4565 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 4566 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 4567 }
e3421a18 4568
d925c59a 4569 /* disable PCH DPLL */
e72f9fbf 4570 intel_disable_shared_dpll(intel_crtc);
8db9d77b 4571
d925c59a
DV
4572 ironlake_fdi_pll_disable(intel_crtc);
4573 }
6b383a7f 4574
f7abfe8b 4575 intel_crtc->active = false;
46ba614c 4576 intel_update_watermarks(crtc);
d1ebd816
BW
4577
4578 mutex_lock(&dev->struct_mutex);
7ff0ebcc 4579 intel_fbc_update(dev);
d1ebd816 4580 mutex_unlock(&dev->struct_mutex);
6be4a607 4581}
1b3c7a47 4582
4f771f10 4583static void haswell_crtc_disable(struct drm_crtc *crtc)
ee7b9f93 4584{
4f771f10
PZ
4585 struct drm_device *dev = crtc->dev;
4586 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93 4587 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4f771f10 4588 struct intel_encoder *encoder;
6e3c9717 4589 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee7b9f93 4590
4f771f10
PZ
4591 if (!intel_crtc->active)
4592 return;
4593
d3eedb1a 4594 intel_crtc_disable_planes(crtc);
dda9a66a 4595
8807e55b
JN
4596 for_each_encoder_on_crtc(dev, crtc, encoder) {
4597 intel_opregion_notify_encoder(encoder, false);
4f771f10 4598 encoder->disable(encoder);
8807e55b 4599 }
4f771f10 4600
f9b61ff6
DV
4601 drm_crtc_vblank_off(crtc);
4602 assert_vblank_disabled(crtc);
4603
6e3c9717 4604 if (intel_crtc->config->has_pch_encoder)
a72e4c9f
DV
4605 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4606 false);
575f7ab7 4607 intel_disable_pipe(intel_crtc);
4f771f10 4608
6e3c9717 4609 if (intel_crtc->config->dp_encoder_is_mst)
a4bf214f
VS
4610 intel_ddi_set_vc_payload_alloc(crtc, false);
4611
ad80a810 4612 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 4613
bd2e244f
JB
4614 if (IS_SKYLAKE(dev))
4615 skylake_pfit_disable(intel_crtc);
4616 else
4617 ironlake_pfit_disable(intel_crtc);
4f771f10 4618
1f544388 4619 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10 4620
6e3c9717 4621 if (intel_crtc->config->has_pch_encoder) {
ab4d966c 4622 lpt_disable_pch_transcoder(dev_priv);
1ad960f2 4623 intel_ddi_fdi_disable(crtc);
83616634 4624 }
4f771f10 4625
97b040aa
ID
4626 for_each_encoder_on_crtc(dev, crtc, encoder)
4627 if (encoder->post_disable)
4628 encoder->post_disable(encoder);
4629
4f771f10 4630 intel_crtc->active = false;
46ba614c 4631 intel_update_watermarks(crtc);
4f771f10
PZ
4632
4633 mutex_lock(&dev->struct_mutex);
7ff0ebcc 4634 intel_fbc_update(dev);
4f771f10 4635 mutex_unlock(&dev->struct_mutex);
df8ad70c
DV
4636
4637 if (intel_crtc_to_shared_dpll(intel_crtc))
4638 intel_disable_shared_dpll(intel_crtc);
4f771f10
PZ
4639}
4640
ee7b9f93
JB
4641static void ironlake_crtc_off(struct drm_crtc *crtc)
4642{
4643 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
e72f9fbf 4644 intel_put_shared_dpll(intel_crtc);
ee7b9f93
JB
4645}
4646
6441ab5f 4647
2dd24552
JB
4648static void i9xx_pfit_enable(struct intel_crtc *crtc)
4649{
4650 struct drm_device *dev = crtc->base.dev;
4651 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 4652 struct intel_crtc_state *pipe_config = crtc->config;
2dd24552 4653
681a8504 4654 if (!pipe_config->gmch_pfit.control)
2dd24552
JB
4655 return;
4656
2dd24552 4657 /*
c0b03411
DV
4658 * The panel fitter should only be adjusted whilst the pipe is disabled,
4659 * according to register description and PRM.
2dd24552 4660 */
c0b03411
DV
4661 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4662 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 4663
b074cec8
JB
4664 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4665 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
4666
4667 /* Border color in case we don't scale up to the full screen. Black by
4668 * default, change to something else for debugging. */
4669 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
4670}
4671
d05410f9
DA
4672static enum intel_display_power_domain port_to_power_domain(enum port port)
4673{
4674 switch (port) {
4675 case PORT_A:
4676 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4677 case PORT_B:
4678 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4679 case PORT_C:
4680 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4681 case PORT_D:
4682 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4683 default:
4684 WARN_ON_ONCE(1);
4685 return POWER_DOMAIN_PORT_OTHER;
4686 }
4687}
4688
77d22dca
ID
4689#define for_each_power_domain(domain, mask) \
4690 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4691 if ((1 << (domain)) & (mask))
4692
319be8ae
ID
4693enum intel_display_power_domain
4694intel_display_port_power_domain(struct intel_encoder *intel_encoder)
4695{
4696 struct drm_device *dev = intel_encoder->base.dev;
4697 struct intel_digital_port *intel_dig_port;
4698
4699 switch (intel_encoder->type) {
4700 case INTEL_OUTPUT_UNKNOWN:
4701 /* Only DDI platforms should ever use this output type */
4702 WARN_ON_ONCE(!HAS_DDI(dev));
4703 case INTEL_OUTPUT_DISPLAYPORT:
4704 case INTEL_OUTPUT_HDMI:
4705 case INTEL_OUTPUT_EDP:
4706 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
d05410f9 4707 return port_to_power_domain(intel_dig_port->port);
0e32b39c
DA
4708 case INTEL_OUTPUT_DP_MST:
4709 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
4710 return port_to_power_domain(intel_dig_port->port);
319be8ae
ID
4711 case INTEL_OUTPUT_ANALOG:
4712 return POWER_DOMAIN_PORT_CRT;
4713 case INTEL_OUTPUT_DSI:
4714 return POWER_DOMAIN_PORT_DSI;
4715 default:
4716 return POWER_DOMAIN_PORT_OTHER;
4717 }
4718}
4719
4720static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
77d22dca 4721{
319be8ae
ID
4722 struct drm_device *dev = crtc->dev;
4723 struct intel_encoder *intel_encoder;
4724 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4725 enum pipe pipe = intel_crtc->pipe;
77d22dca
ID
4726 unsigned long mask;
4727 enum transcoder transcoder;
4728
4729 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4730
4731 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4732 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
6e3c9717
ACO
4733 if (intel_crtc->config->pch_pfit.enabled ||
4734 intel_crtc->config->pch_pfit.force_thru)
77d22dca
ID
4735 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4736
319be8ae
ID
4737 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4738 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4739
77d22dca
ID
4740 return mask;
4741}
4742
77d22dca
ID
4743static void modeset_update_crtc_power_domains(struct drm_device *dev)
4744{
4745 struct drm_i915_private *dev_priv = dev->dev_private;
4746 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4747 struct intel_crtc *crtc;
4748
4749 /*
4750 * First get all needed power domains, then put all unneeded, to avoid
4751 * any unnecessary toggling of the power wells.
4752 */
d3fcc808 4753 for_each_intel_crtc(dev, crtc) {
77d22dca
ID
4754 enum intel_display_power_domain domain;
4755
4756 if (!crtc->base.enabled)
4757 continue;
4758
319be8ae 4759 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
77d22dca
ID
4760
4761 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4762 intel_display_power_get(dev_priv, domain);
4763 }
4764
50f6e502
VS
4765 if (dev_priv->display.modeset_global_resources)
4766 dev_priv->display.modeset_global_resources(dev);
4767
d3fcc808 4768 for_each_intel_crtc(dev, crtc) {
77d22dca
ID
4769 enum intel_display_power_domain domain;
4770
4771 for_each_power_domain(domain, crtc->enabled_power_domains)
4772 intel_display_power_put(dev_priv, domain);
4773
4774 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4775 }
4776
4777 intel_display_set_init_power(dev_priv, false);
4778}
4779
dfcab17e 4780/* returns HPLL frequency in kHz */
f8bf63fd 4781static int valleyview_get_vco(struct drm_i915_private *dev_priv)
30a970c6 4782{
586f49dc 4783 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
30a970c6 4784
586f49dc
JB
4785 /* Obtain SKU information */
4786 mutex_lock(&dev_priv->dpio_lock);
4787 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4788 CCK_FUSE_HPLL_FREQ_MASK;
4789 mutex_unlock(&dev_priv->dpio_lock);
30a970c6 4790
dfcab17e 4791 return vco_freq[hpll_freq] * 1000;
30a970c6
JB
4792}
4793
f8bf63fd
VS
4794static void vlv_update_cdclk(struct drm_device *dev)
4795{
4796 struct drm_i915_private *dev_priv = dev->dev_private;
4797
4798 dev_priv->vlv_cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
43dc52c3 4799 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
f8bf63fd
VS
4800 dev_priv->vlv_cdclk_freq);
4801
4802 /*
4803 * Program the gmbus_freq based on the cdclk frequency.
4804 * BSpec erroneously claims we should aim for 4MHz, but
4805 * in fact 1MHz is the correct frequency.
4806 */
6be1e3d3 4807 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->vlv_cdclk_freq, 1000));
f8bf63fd
VS
4808}
4809
30a970c6
JB
4810/* Adjust CDclk dividers to allow high res or save power if possible */
4811static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4812{
4813 struct drm_i915_private *dev_priv = dev->dev_private;
4814 u32 val, cmd;
4815
d197b7d3 4816 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
d60c4473 4817
dfcab17e 4818 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
30a970c6 4819 cmd = 2;
dfcab17e 4820 else if (cdclk == 266667)
30a970c6
JB
4821 cmd = 1;
4822 else
4823 cmd = 0;
4824
4825 mutex_lock(&dev_priv->rps.hw_lock);
4826 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4827 val &= ~DSPFREQGUAR_MASK;
4828 val |= (cmd << DSPFREQGUAR_SHIFT);
4829 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4830 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4831 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4832 50)) {
4833 DRM_ERROR("timed out waiting for CDclk change\n");
4834 }
4835 mutex_unlock(&dev_priv->rps.hw_lock);
4836
dfcab17e 4837 if (cdclk == 400000) {
6bcda4f0 4838 u32 divider;
30a970c6 4839
6bcda4f0 4840 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
30a970c6
JB
4841
4842 mutex_lock(&dev_priv->dpio_lock);
4843 /* adjust cdclk divider */
4844 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
9cf33db5 4845 val &= ~DISPLAY_FREQUENCY_VALUES;
30a970c6
JB
4846 val |= divider;
4847 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
a877e801
VS
4848
4849 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
4850 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
4851 50))
4852 DRM_ERROR("timed out waiting for CDclk change\n");
30a970c6
JB
4853 mutex_unlock(&dev_priv->dpio_lock);
4854 }
4855
4856 mutex_lock(&dev_priv->dpio_lock);
4857 /* adjust self-refresh exit latency value */
4858 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4859 val &= ~0x7f;
4860
4861 /*
4862 * For high bandwidth configs, we set a higher latency in the bunit
4863 * so that the core display fetch happens in time to avoid underruns.
4864 */
dfcab17e 4865 if (cdclk == 400000)
30a970c6
JB
4866 val |= 4500 / 250; /* 4.5 usec */
4867 else
4868 val |= 3000 / 250; /* 3.0 usec */
4869 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4870 mutex_unlock(&dev_priv->dpio_lock);
4871
f8bf63fd 4872 vlv_update_cdclk(dev);
30a970c6
JB
4873}
4874
383c5a6a
VS
4875static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
4876{
4877 struct drm_i915_private *dev_priv = dev->dev_private;
4878 u32 val, cmd;
4879
4880 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
4881
4882 switch (cdclk) {
4883 case 400000:
4884 cmd = 3;
4885 break;
4886 case 333333:
4887 case 320000:
4888 cmd = 2;
4889 break;
4890 case 266667:
4891 cmd = 1;
4892 break;
4893 case 200000:
4894 cmd = 0;
4895 break;
4896 default:
5f77eeb0 4897 MISSING_CASE(cdclk);
383c5a6a
VS
4898 return;
4899 }
4900
4901 mutex_lock(&dev_priv->rps.hw_lock);
4902 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4903 val &= ~DSPFREQGUAR_MASK_CHV;
4904 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
4905 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4906 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4907 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
4908 50)) {
4909 DRM_ERROR("timed out waiting for CDclk change\n");
4910 }
4911 mutex_unlock(&dev_priv->rps.hw_lock);
4912
4913 vlv_update_cdclk(dev);
4914}
4915
30a970c6
JB
4916static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4917 int max_pixclk)
4918{
6bcda4f0 4919 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
29dc7ef3 4920
d49a340d
VS
4921 /* FIXME: Punit isn't quite ready yet */
4922 if (IS_CHERRYVIEW(dev_priv->dev))
4923 return 400000;
4924
30a970c6
JB
4925 /*
4926 * Really only a few cases to deal with, as only 4 CDclks are supported:
4927 * 200MHz
4928 * 267MHz
29dc7ef3 4929 * 320/333MHz (depends on HPLL freq)
30a970c6
JB
4930 * 400MHz
4931 * So we check to see whether we're above 90% of the lower bin and
4932 * adjust if needed.
e37c67a1
VS
4933 *
4934 * We seem to get an unstable or solid color picture at 200MHz.
4935 * Not sure what's wrong. For now use 200MHz only when all pipes
4936 * are off.
30a970c6 4937 */
29dc7ef3 4938 if (max_pixclk > freq_320*9/10)
dfcab17e
VS
4939 return 400000;
4940 else if (max_pixclk > 266667*9/10)
29dc7ef3 4941 return freq_320;
e37c67a1 4942 else if (max_pixclk > 0)
dfcab17e 4943 return 266667;
e37c67a1
VS
4944 else
4945 return 200000;
30a970c6
JB
4946}
4947
2f2d7aa1
VS
4948/* compute the max pixel clock for new configuration */
4949static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
30a970c6
JB
4950{
4951 struct drm_device *dev = dev_priv->dev;
4952 struct intel_crtc *intel_crtc;
4953 int max_pixclk = 0;
4954
d3fcc808 4955 for_each_intel_crtc(dev, intel_crtc) {
2f2d7aa1 4956 if (intel_crtc->new_enabled)
30a970c6 4957 max_pixclk = max(max_pixclk,
2d112de7 4958 intel_crtc->new_config->base.adjusted_mode.crtc_clock);
30a970c6
JB
4959 }
4960
4961 return max_pixclk;
4962}
4963
4964static void valleyview_modeset_global_pipes(struct drm_device *dev,
2f2d7aa1 4965 unsigned *prepare_pipes)
30a970c6
JB
4966{
4967 struct drm_i915_private *dev_priv = dev->dev_private;
4968 struct intel_crtc *intel_crtc;
2f2d7aa1 4969 int max_pixclk = intel_mode_max_pixclk(dev_priv);
30a970c6 4970
d60c4473
ID
4971 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4972 dev_priv->vlv_cdclk_freq)
30a970c6
JB
4973 return;
4974
2f2d7aa1 4975 /* disable/enable all currently active pipes while we change cdclk */
d3fcc808 4976 for_each_intel_crtc(dev, intel_crtc)
30a970c6
JB
4977 if (intel_crtc->base.enabled)
4978 *prepare_pipes |= (1 << intel_crtc->pipe);
4979}
4980
4981static void valleyview_modeset_global_resources(struct drm_device *dev)
4982{
4983 struct drm_i915_private *dev_priv = dev->dev_private;
2f2d7aa1 4984 int max_pixclk = intel_mode_max_pixclk(dev_priv);
30a970c6
JB
4985 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4986
383c5a6a 4987 if (req_cdclk != dev_priv->vlv_cdclk_freq) {
738c05c0
ID
4988 /*
4989 * FIXME: We can end up here with all power domains off, yet
4990 * with a CDCLK frequency other than the minimum. To account
4991 * for this take the PIPE-A power domain, which covers the HW
4992 * blocks needed for the following programming. This can be
4993 * removed once it's guaranteed that we get here either with
4994 * the minimum CDCLK set, or the required power domains
4995 * enabled.
4996 */
4997 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
4998
383c5a6a
VS
4999 if (IS_CHERRYVIEW(dev))
5000 cherryview_set_cdclk(dev, req_cdclk);
5001 else
5002 valleyview_set_cdclk(dev, req_cdclk);
738c05c0
ID
5003
5004 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
383c5a6a 5005 }
30a970c6
JB
5006}
5007
89b667f8
JB
5008static void valleyview_crtc_enable(struct drm_crtc *crtc)
5009{
5010 struct drm_device *dev = crtc->dev;
a72e4c9f 5011 struct drm_i915_private *dev_priv = to_i915(dev);
89b667f8
JB
5012 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5013 struct intel_encoder *encoder;
5014 int pipe = intel_crtc->pipe;
23538ef1 5015 bool is_dsi;
89b667f8
JB
5016
5017 WARN_ON(!crtc->enabled);
5018
5019 if (intel_crtc->active)
5020 return;
5021
409ee761 5022 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
8525a235 5023
1ae0d137
VS
5024 if (!is_dsi) {
5025 if (IS_CHERRYVIEW(dev))
6e3c9717 5026 chv_prepare_pll(intel_crtc, intel_crtc->config);
1ae0d137 5027 else
6e3c9717 5028 vlv_prepare_pll(intel_crtc, intel_crtc->config);
1ae0d137 5029 }
5b18e57c 5030
6e3c9717 5031 if (intel_crtc->config->has_dp_encoder)
5b18e57c
DV
5032 intel_dp_set_m_n(intel_crtc);
5033
5034 intel_set_pipe_timings(intel_crtc);
5035
c14b0485
VS
5036 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
5037 struct drm_i915_private *dev_priv = dev->dev_private;
5038
5039 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
5040 I915_WRITE(CHV_CANVAS(pipe), 0);
5041 }
5042
5b18e57c
DV
5043 i9xx_set_pipeconf(intel_crtc);
5044
89b667f8 5045 intel_crtc->active = true;
89b667f8 5046
a72e4c9f 5047 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 5048
89b667f8
JB
5049 for_each_encoder_on_crtc(dev, crtc, encoder)
5050 if (encoder->pre_pll_enable)
5051 encoder->pre_pll_enable(encoder);
5052
9d556c99
CML
5053 if (!is_dsi) {
5054 if (IS_CHERRYVIEW(dev))
6e3c9717 5055 chv_enable_pll(intel_crtc, intel_crtc->config);
9d556c99 5056 else
6e3c9717 5057 vlv_enable_pll(intel_crtc, intel_crtc->config);
9d556c99 5058 }
89b667f8
JB
5059
5060 for_each_encoder_on_crtc(dev, crtc, encoder)
5061 if (encoder->pre_enable)
5062 encoder->pre_enable(encoder);
5063
2dd24552
JB
5064 i9xx_pfit_enable(intel_crtc);
5065
63cbb074
VS
5066 intel_crtc_load_lut(crtc);
5067
f37fcc2a 5068 intel_update_watermarks(crtc);
e1fdc473 5069 intel_enable_pipe(intel_crtc);
be6a6f8e 5070
4b3a9526
VS
5071 assert_vblank_disabled(crtc);
5072 drm_crtc_vblank_on(crtc);
5073
f9b61ff6
DV
5074 for_each_encoder_on_crtc(dev, crtc, encoder)
5075 encoder->enable(encoder);
5076
9ab0460b 5077 intel_crtc_enable_planes(crtc);
d40d9187 5078
56b80e1f 5079 /* Underruns don't raise interrupts, so check manually. */
a72e4c9f 5080 i9xx_check_fifo_underruns(dev_priv);
89b667f8
JB
5081}
5082
f13c2ef3
DV
5083static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
5084{
5085 struct drm_device *dev = crtc->base.dev;
5086 struct drm_i915_private *dev_priv = dev->dev_private;
5087
6e3c9717
ACO
5088 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
5089 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
f13c2ef3
DV
5090}
5091
0b8765c6 5092static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
5093{
5094 struct drm_device *dev = crtc->dev;
a72e4c9f 5095 struct drm_i915_private *dev_priv = to_i915(dev);
79e53945 5096 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 5097 struct intel_encoder *encoder;
79e53945 5098 int pipe = intel_crtc->pipe;
79e53945 5099
08a48469
DV
5100 WARN_ON(!crtc->enabled);
5101
f7abfe8b
CW
5102 if (intel_crtc->active)
5103 return;
5104
f13c2ef3
DV
5105 i9xx_set_pll_dividers(intel_crtc);
5106
6e3c9717 5107 if (intel_crtc->config->has_dp_encoder)
5b18e57c
DV
5108 intel_dp_set_m_n(intel_crtc);
5109
5110 intel_set_pipe_timings(intel_crtc);
5111
5b18e57c
DV
5112 i9xx_set_pipeconf(intel_crtc);
5113
f7abfe8b 5114 intel_crtc->active = true;
6b383a7f 5115
4a3436e8 5116 if (!IS_GEN2(dev))
a72e4c9f 5117 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 5118
9d6d9f19
MK
5119 for_each_encoder_on_crtc(dev, crtc, encoder)
5120 if (encoder->pre_enable)
5121 encoder->pre_enable(encoder);
5122
f6736a1a
DV
5123 i9xx_enable_pll(intel_crtc);
5124
2dd24552
JB
5125 i9xx_pfit_enable(intel_crtc);
5126
63cbb074
VS
5127 intel_crtc_load_lut(crtc);
5128
f37fcc2a 5129 intel_update_watermarks(crtc);
e1fdc473 5130 intel_enable_pipe(intel_crtc);
be6a6f8e 5131
4b3a9526
VS
5132 assert_vblank_disabled(crtc);
5133 drm_crtc_vblank_on(crtc);
5134
f9b61ff6
DV
5135 for_each_encoder_on_crtc(dev, crtc, encoder)
5136 encoder->enable(encoder);
5137
9ab0460b 5138 intel_crtc_enable_planes(crtc);
d40d9187 5139
4a3436e8
VS
5140 /*
5141 * Gen2 reports pipe underruns whenever all planes are disabled.
5142 * So don't enable underrun reporting before at least some planes
5143 * are enabled.
5144 * FIXME: Need to fix the logic to work when we turn off all planes
5145 * but leave the pipe running.
5146 */
5147 if (IS_GEN2(dev))
a72e4c9f 5148 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 5149
56b80e1f 5150 /* Underruns don't raise interrupts, so check manually. */
a72e4c9f 5151 i9xx_check_fifo_underruns(dev_priv);
0b8765c6 5152}
79e53945 5153
87476d63
DV
5154static void i9xx_pfit_disable(struct intel_crtc *crtc)
5155{
5156 struct drm_device *dev = crtc->base.dev;
5157 struct drm_i915_private *dev_priv = dev->dev_private;
87476d63 5158
6e3c9717 5159 if (!crtc->config->gmch_pfit.control)
328d8e82 5160 return;
87476d63 5161
328d8e82 5162 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 5163
328d8e82
DV
5164 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
5165 I915_READ(PFIT_CONTROL));
5166 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
5167}
5168
0b8765c6
JB
5169static void i9xx_crtc_disable(struct drm_crtc *crtc)
5170{
5171 struct drm_device *dev = crtc->dev;
5172 struct drm_i915_private *dev_priv = dev->dev_private;
5173 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 5174 struct intel_encoder *encoder;
0b8765c6 5175 int pipe = intel_crtc->pipe;
ef9c3aee 5176
f7abfe8b
CW
5177 if (!intel_crtc->active)
5178 return;
5179
4a3436e8
VS
5180 /*
5181 * Gen2 reports pipe underruns whenever all planes are disabled.
5182 * So diasble underrun reporting before all the planes get disabled.
5183 * FIXME: Need to fix the logic to work when we turn off all planes
5184 * but leave the pipe running.
5185 */
5186 if (IS_GEN2(dev))
a72e4c9f 5187 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4a3436e8 5188
564ed191
ID
5189 /*
5190 * Vblank time updates from the shadow to live plane control register
5191 * are blocked if the memory self-refresh mode is active at that
5192 * moment. So to make sure the plane gets truly disabled, disable
5193 * first the self-refresh mode. The self-refresh enable bit in turn
5194 * will be checked/applied by the HW only at the next frame start
5195 * event which is after the vblank start event, so we need to have a
5196 * wait-for-vblank between disabling the plane and the pipe.
5197 */
5198 intel_set_memory_cxsr(dev_priv, false);
9ab0460b
VS
5199 intel_crtc_disable_planes(crtc);
5200
6304cd91
VS
5201 /*
5202 * On gen2 planes are double buffered but the pipe isn't, so we must
5203 * wait for planes to fully turn off before disabling the pipe.
564ed191
ID
5204 * We also need to wait on all gmch platforms because of the
5205 * self-refresh mode constraint explained above.
6304cd91 5206 */
564ed191 5207 intel_wait_for_vblank(dev, pipe);
6304cd91 5208
4b3a9526
VS
5209 for_each_encoder_on_crtc(dev, crtc, encoder)
5210 encoder->disable(encoder);
5211
f9b61ff6
DV
5212 drm_crtc_vblank_off(crtc);
5213 assert_vblank_disabled(crtc);
5214
575f7ab7 5215 intel_disable_pipe(intel_crtc);
24a1f16d 5216
87476d63 5217 i9xx_pfit_disable(intel_crtc);
24a1f16d 5218
89b667f8
JB
5219 for_each_encoder_on_crtc(dev, crtc, encoder)
5220 if (encoder->post_disable)
5221 encoder->post_disable(encoder);
5222
409ee761 5223 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
076ed3b2
CML
5224 if (IS_CHERRYVIEW(dev))
5225 chv_disable_pll(dev_priv, pipe);
5226 else if (IS_VALLEYVIEW(dev))
5227 vlv_disable_pll(dev_priv, pipe);
5228 else
1c4e0274 5229 i9xx_disable_pll(intel_crtc);
076ed3b2 5230 }
0b8765c6 5231
4a3436e8 5232 if (!IS_GEN2(dev))
a72e4c9f 5233 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4a3436e8 5234
f7abfe8b 5235 intel_crtc->active = false;
46ba614c 5236 intel_update_watermarks(crtc);
f37fcc2a 5237
efa9624e 5238 mutex_lock(&dev->struct_mutex);
7ff0ebcc 5239 intel_fbc_update(dev);
efa9624e 5240 mutex_unlock(&dev->struct_mutex);
0b8765c6
JB
5241}
5242
ee7b9f93
JB
5243static void i9xx_crtc_off(struct drm_crtc *crtc)
5244{
5245}
5246
b04c5bd6
BF
5247/* Master function to enable/disable CRTC and corresponding power wells */
5248void intel_crtc_control(struct drm_crtc *crtc, bool enable)
976f8a20
DV
5249{
5250 struct drm_device *dev = crtc->dev;
5251 struct drm_i915_private *dev_priv = dev->dev_private;
0e572fe7 5252 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
0e572fe7
DV
5253 enum intel_display_power_domain domain;
5254 unsigned long domains;
976f8a20 5255
0e572fe7
DV
5256 if (enable) {
5257 if (!intel_crtc->active) {
e1e9fb84
DV
5258 domains = get_crtc_power_domains(crtc);
5259 for_each_power_domain(domain, domains)
5260 intel_display_power_get(dev_priv, domain);
5261 intel_crtc->enabled_power_domains = domains;
0e572fe7
DV
5262
5263 dev_priv->display.crtc_enable(crtc);
5264 }
5265 } else {
5266 if (intel_crtc->active) {
5267 dev_priv->display.crtc_disable(crtc);
5268
e1e9fb84
DV
5269 domains = intel_crtc->enabled_power_domains;
5270 for_each_power_domain(domain, domains)
5271 intel_display_power_put(dev_priv, domain);
5272 intel_crtc->enabled_power_domains = 0;
0e572fe7
DV
5273 }
5274 }
b04c5bd6
BF
5275}
5276
5277/**
5278 * Sets the power management mode of the pipe and plane.
5279 */
5280void intel_crtc_update_dpms(struct drm_crtc *crtc)
5281{
5282 struct drm_device *dev = crtc->dev;
5283 struct intel_encoder *intel_encoder;
5284 bool enable = false;
5285
5286 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5287 enable |= intel_encoder->connectors_active;
5288
5289 intel_crtc_control(crtc, enable);
976f8a20
DV
5290}
5291
cdd59983
CW
5292static void intel_crtc_disable(struct drm_crtc *crtc)
5293{
cdd59983 5294 struct drm_device *dev = crtc->dev;
976f8a20 5295 struct drm_connector *connector;
ee7b9f93 5296 struct drm_i915_private *dev_priv = dev->dev_private;
cdd59983 5297
976f8a20
DV
5298 /* crtc should still be enabled when we disable it. */
5299 WARN_ON(!crtc->enabled);
5300
5301 dev_priv->display.crtc_disable(crtc);
ee7b9f93
JB
5302 dev_priv->display.off(crtc);
5303
455a6808 5304 crtc->primary->funcs->disable_plane(crtc->primary);
976f8a20
DV
5305
5306 /* Update computed state. */
5307 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5308 if (!connector->encoder || !connector->encoder->crtc)
5309 continue;
5310
5311 if (connector->encoder->crtc != crtc)
5312 continue;
5313
5314 connector->dpms = DRM_MODE_DPMS_OFF;
5315 to_intel_encoder(connector->encoder)->connectors_active = false;
cdd59983
CW
5316 }
5317}
5318
ea5b213a 5319void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 5320{
4ef69c7a 5321 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 5322
ea5b213a
CW
5323 drm_encoder_cleanup(encoder);
5324 kfree(intel_encoder);
7e7d76c3
JB
5325}
5326
9237329d 5327/* Simple dpms helper for encoders with just one connector, no cloning and only
5ab432ef
DV
5328 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
5329 * state of the entire output pipe. */
9237329d 5330static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
7e7d76c3 5331{
5ab432ef
DV
5332 if (mode == DRM_MODE_DPMS_ON) {
5333 encoder->connectors_active = true;
5334
b2cabb0e 5335 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef
DV
5336 } else {
5337 encoder->connectors_active = false;
5338
b2cabb0e 5339 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef 5340 }
79e53945
JB
5341}
5342
0a91ca29
DV
5343/* Cross check the actual hw state with our own modeset state tracking (and it's
5344 * internal consistency). */
b980514c 5345static void intel_connector_check_state(struct intel_connector *connector)
79e53945 5346{
0a91ca29
DV
5347 if (connector->get_hw_state(connector)) {
5348 struct intel_encoder *encoder = connector->encoder;
5349 struct drm_crtc *crtc;
5350 bool encoder_enabled;
5351 enum pipe pipe;
5352
5353 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5354 connector->base.base.id,
c23cc417 5355 connector->base.name);
0a91ca29 5356
0e32b39c
DA
5357 /* there is no real hw state for MST connectors */
5358 if (connector->mst_port)
5359 return;
5360
e2c719b7 5361 I915_STATE_WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
0a91ca29 5362 "wrong connector dpms state\n");
e2c719b7 5363 I915_STATE_WARN(connector->base.encoder != &encoder->base,
0a91ca29 5364 "active connector not linked to encoder\n");
0a91ca29 5365
36cd7444 5366 if (encoder) {
e2c719b7 5367 I915_STATE_WARN(!encoder->connectors_active,
36cd7444
DA
5368 "encoder->connectors_active not set\n");
5369
5370 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
e2c719b7
RC
5371 I915_STATE_WARN(!encoder_enabled, "encoder not enabled\n");
5372 if (I915_STATE_WARN_ON(!encoder->base.crtc))
36cd7444 5373 return;
0a91ca29 5374
36cd7444 5375 crtc = encoder->base.crtc;
0a91ca29 5376
e2c719b7
RC
5377 I915_STATE_WARN(!crtc->enabled, "crtc not enabled\n");
5378 I915_STATE_WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
5379 I915_STATE_WARN(pipe != to_intel_crtc(crtc)->pipe,
36cd7444
DA
5380 "encoder active on the wrong pipe\n");
5381 }
0a91ca29 5382 }
79e53945
JB
5383}
5384
5ab432ef
DV
5385/* Even simpler default implementation, if there's really no special case to
5386 * consider. */
5387void intel_connector_dpms(struct drm_connector *connector, int mode)
79e53945 5388{
5ab432ef
DV
5389 /* All the simple cases only support two dpms states. */
5390 if (mode != DRM_MODE_DPMS_ON)
5391 mode = DRM_MODE_DPMS_OFF;
d4270e57 5392
5ab432ef
DV
5393 if (mode == connector->dpms)
5394 return;
5395
5396 connector->dpms = mode;
5397
5398 /* Only need to change hw state when actually enabled */
c9976dcf
CW
5399 if (connector->encoder)
5400 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
0a91ca29 5401
b980514c 5402 intel_modeset_check_state(connector->dev);
79e53945
JB
5403}
5404
f0947c37
DV
5405/* Simple connector->get_hw_state implementation for encoders that support only
5406 * one connector and no cloning and hence the encoder state determines the state
5407 * of the connector. */
5408bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 5409{
24929352 5410 enum pipe pipe = 0;
f0947c37 5411 struct intel_encoder *encoder = connector->encoder;
ea5b213a 5412
f0947c37 5413 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
5414}
5415
1857e1da 5416static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
5cec258b 5417 struct intel_crtc_state *pipe_config)
1857e1da
DV
5418{
5419 struct drm_i915_private *dev_priv = dev->dev_private;
5420 struct intel_crtc *pipe_B_crtc =
5421 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
5422
5423 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
5424 pipe_name(pipe), pipe_config->fdi_lanes);
5425 if (pipe_config->fdi_lanes > 4) {
5426 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
5427 pipe_name(pipe), pipe_config->fdi_lanes);
5428 return false;
5429 }
5430
bafb6553 5431 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
1857e1da
DV
5432 if (pipe_config->fdi_lanes > 2) {
5433 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5434 pipe_config->fdi_lanes);
5435 return false;
5436 } else {
5437 return true;
5438 }
5439 }
5440
5441 if (INTEL_INFO(dev)->num_pipes == 2)
5442 return true;
5443
5444 /* Ivybridge 3 pipe is really complicated */
5445 switch (pipe) {
5446 case PIPE_A:
5447 return true;
5448 case PIPE_B:
5449 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5450 pipe_config->fdi_lanes > 2) {
5451 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5452 pipe_name(pipe), pipe_config->fdi_lanes);
5453 return false;
5454 }
5455 return true;
5456 case PIPE_C:
1e833f40 5457 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
6e3c9717 5458 pipe_B_crtc->config->fdi_lanes <= 2) {
1857e1da
DV
5459 if (pipe_config->fdi_lanes > 2) {
5460 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5461 pipe_name(pipe), pipe_config->fdi_lanes);
5462 return false;
5463 }
5464 } else {
5465 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5466 return false;
5467 }
5468 return true;
5469 default:
5470 BUG();
5471 }
5472}
5473
e29c22c0
DV
5474#define RETRY 1
5475static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5cec258b 5476 struct intel_crtc_state *pipe_config)
877d48d5 5477{
1857e1da 5478 struct drm_device *dev = intel_crtc->base.dev;
2d112de7 5479 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
ff9a6750 5480 int lane, link_bw, fdi_dotclock;
e29c22c0 5481 bool setup_ok, needs_recompute = false;
877d48d5 5482
e29c22c0 5483retry:
877d48d5
DV
5484 /* FDI is a binary signal running at ~2.7GHz, encoding
5485 * each output octet as 10 bits. The actual frequency
5486 * is stored as a divider into a 100MHz clock, and the
5487 * mode pixel clock is stored in units of 1KHz.
5488 * Hence the bw of each lane in terms of the mode signal
5489 * is:
5490 */
5491 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5492
241bfc38 5493 fdi_dotclock = adjusted_mode->crtc_clock;
877d48d5 5494
2bd89a07 5495 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
5496 pipe_config->pipe_bpp);
5497
5498 pipe_config->fdi_lanes = lane;
5499
2bd89a07 5500 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 5501 link_bw, &pipe_config->fdi_m_n);
1857e1da 5502
e29c22c0
DV
5503 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5504 intel_crtc->pipe, pipe_config);
5505 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5506 pipe_config->pipe_bpp -= 2*3;
5507 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5508 pipe_config->pipe_bpp);
5509 needs_recompute = true;
5510 pipe_config->bw_constrained = true;
5511
5512 goto retry;
5513 }
5514
5515 if (needs_recompute)
5516 return RETRY;
5517
5518 return setup_ok ? 0 : -EINVAL;
877d48d5
DV
5519}
5520
42db64ef 5521static void hsw_compute_ips_config(struct intel_crtc *crtc,
5cec258b 5522 struct intel_crtc_state *pipe_config)
42db64ef 5523{
d330a953 5524 pipe_config->ips_enabled = i915.enable_ips &&
3c4ca58c 5525 hsw_crtc_supports_ips(crtc) &&
b6dfdc9b 5526 pipe_config->pipe_bpp <= 24;
42db64ef
PZ
5527}
5528
a43f6e0f 5529static int intel_crtc_compute_config(struct intel_crtc *crtc,
5cec258b 5530 struct intel_crtc_state *pipe_config)
79e53945 5531{
a43f6e0f 5532 struct drm_device *dev = crtc->base.dev;
8bd31e67 5533 struct drm_i915_private *dev_priv = dev->dev_private;
2d112de7 5534 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
89749350 5535
ad3a4479 5536 /* FIXME should check pixel clock limits on all platforms */
cf532bb2 5537 if (INTEL_INFO(dev)->gen < 4) {
cf532bb2
VS
5538 int clock_limit =
5539 dev_priv->display.get_display_clock_speed(dev);
5540
5541 /*
5542 * Enable pixel doubling when the dot clock
5543 * is > 90% of the (display) core speed.
5544 *
b397c96b
VS
5545 * GDG double wide on either pipe,
5546 * otherwise pipe A only.
cf532bb2 5547 */
b397c96b 5548 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
241bfc38 5549 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
ad3a4479 5550 clock_limit *= 2;
cf532bb2 5551 pipe_config->double_wide = true;
ad3a4479
VS
5552 }
5553
241bfc38 5554 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
e29c22c0 5555 return -EINVAL;
2c07245f 5556 }
89749350 5557
1d1d0e27
VS
5558 /*
5559 * Pipe horizontal size must be even in:
5560 * - DVO ganged mode
5561 * - LVDS dual channel mode
5562 * - Double wide pipe
5563 */
409ee761 5564 if ((intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
1d1d0e27
VS
5565 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5566 pipe_config->pipe_src_w &= ~1;
5567
8693a824
DL
5568 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5569 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42
CW
5570 */
5571 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5572 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
e29c22c0 5573 return -EINVAL;
44f46b42 5574
bd080ee5 5575 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
5d2d38dd 5576 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
bd080ee5 5577 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
5d2d38dd
DV
5578 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5579 * for lvds. */
5580 pipe_config->pipe_bpp = 8*3;
5581 }
5582
f5adf94e 5583 if (HAS_IPS(dev))
a43f6e0f
DV
5584 hsw_compute_ips_config(crtc, pipe_config);
5585
877d48d5 5586 if (pipe_config->has_pch_encoder)
a43f6e0f 5587 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 5588
e29c22c0 5589 return 0;
79e53945
JB
5590}
5591
25eb05fc
JB
5592static int valleyview_get_display_clock_speed(struct drm_device *dev)
5593{
d197b7d3 5594 struct drm_i915_private *dev_priv = dev->dev_private;
d197b7d3
VS
5595 u32 val;
5596 int divider;
5597
d49a340d
VS
5598 /* FIXME: Punit isn't quite ready yet */
5599 if (IS_CHERRYVIEW(dev))
5600 return 400000;
5601
6bcda4f0
VS
5602 if (dev_priv->hpll_freq == 0)
5603 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
5604
d197b7d3
VS
5605 mutex_lock(&dev_priv->dpio_lock);
5606 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
5607 mutex_unlock(&dev_priv->dpio_lock);
5608
5609 divider = val & DISPLAY_FREQUENCY_VALUES;
5610
7d007f40
VS
5611 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
5612 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5613 "cdclk change in progress\n");
5614
6bcda4f0 5615 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
25eb05fc
JB
5616}
5617
e70236a8
JB
5618static int i945_get_display_clock_speed(struct drm_device *dev)
5619{
5620 return 400000;
5621}
79e53945 5622
e70236a8 5623static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 5624{
e70236a8
JB
5625 return 333000;
5626}
79e53945 5627
e70236a8
JB
5628static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5629{
5630 return 200000;
5631}
79e53945 5632
257a7ffc
DV
5633static int pnv_get_display_clock_speed(struct drm_device *dev)
5634{
5635 u16 gcfgc = 0;
5636
5637 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5638
5639 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5640 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5641 return 267000;
5642 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5643 return 333000;
5644 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5645 return 444000;
5646 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5647 return 200000;
5648 default:
5649 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5650 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5651 return 133000;
5652 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5653 return 167000;
5654 }
5655}
5656
e70236a8
JB
5657static int i915gm_get_display_clock_speed(struct drm_device *dev)
5658{
5659 u16 gcfgc = 0;
79e53945 5660
e70236a8
JB
5661 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5662
5663 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
5664 return 133000;
5665 else {
5666 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5667 case GC_DISPLAY_CLOCK_333_MHZ:
5668 return 333000;
5669 default:
5670 case GC_DISPLAY_CLOCK_190_200_MHZ:
5671 return 190000;
79e53945 5672 }
e70236a8
JB
5673 }
5674}
5675
5676static int i865_get_display_clock_speed(struct drm_device *dev)
5677{
5678 return 266000;
5679}
5680
5681static int i855_get_display_clock_speed(struct drm_device *dev)
5682{
5683 u16 hpllcc = 0;
5684 /* Assume that the hardware is in the high speed state. This
5685 * should be the default.
5686 */
5687 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5688 case GC_CLOCK_133_200:
5689 case GC_CLOCK_100_200:
5690 return 200000;
5691 case GC_CLOCK_166_250:
5692 return 250000;
5693 case GC_CLOCK_100_133:
79e53945 5694 return 133000;
e70236a8 5695 }
79e53945 5696
e70236a8
JB
5697 /* Shouldn't happen */
5698 return 0;
5699}
79e53945 5700
e70236a8
JB
5701static int i830_get_display_clock_speed(struct drm_device *dev)
5702{
5703 return 133000;
79e53945
JB
5704}
5705
2c07245f 5706static void
a65851af 5707intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 5708{
a65851af
VS
5709 while (*num > DATA_LINK_M_N_MASK ||
5710 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
5711 *num >>= 1;
5712 *den >>= 1;
5713 }
5714}
5715
a65851af
VS
5716static void compute_m_n(unsigned int m, unsigned int n,
5717 uint32_t *ret_m, uint32_t *ret_n)
5718{
5719 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5720 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5721 intel_reduce_m_n_ratio(ret_m, ret_n);
5722}
5723
e69d0bc1
DV
5724void
5725intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5726 int pixel_clock, int link_clock,
5727 struct intel_link_m_n *m_n)
2c07245f 5728{
e69d0bc1 5729 m_n->tu = 64;
a65851af
VS
5730
5731 compute_m_n(bits_per_pixel * pixel_clock,
5732 link_clock * nlanes * 8,
5733 &m_n->gmch_m, &m_n->gmch_n);
5734
5735 compute_m_n(pixel_clock, link_clock,
5736 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
5737}
5738
a7615030
CW
5739static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5740{
d330a953
JN
5741 if (i915.panel_use_ssc >= 0)
5742 return i915.panel_use_ssc != 0;
41aa3448 5743 return dev_priv->vbt.lvds_use_ssc
435793df 5744 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
5745}
5746
409ee761 5747static int i9xx_get_refclk(struct intel_crtc *crtc, int num_connectors)
c65d77d8 5748{
409ee761 5749 struct drm_device *dev = crtc->base.dev;
c65d77d8
JB
5750 struct drm_i915_private *dev_priv = dev->dev_private;
5751 int refclk;
5752
a0c4da24 5753 if (IS_VALLEYVIEW(dev)) {
9a0ea498 5754 refclk = 100000;
d0737e1d 5755 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
c65d77d8 5756 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b
VS
5757 refclk = dev_priv->vbt.lvds_ssc_freq;
5758 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
c65d77d8
JB
5759 } else if (!IS_GEN2(dev)) {
5760 refclk = 96000;
5761 } else {
5762 refclk = 48000;
5763 }
5764
5765 return refclk;
5766}
5767
7429e9d4 5768static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
c65d77d8 5769{
7df00d7a 5770 return (1 << dpll->n) << 16 | dpll->m2;
7429e9d4 5771}
f47709a9 5772
7429e9d4
DV
5773static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5774{
5775 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
c65d77d8
JB
5776}
5777
f47709a9 5778static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
190f68c5 5779 struct intel_crtc_state *crtc_state,
a7516a05
JB
5780 intel_clock_t *reduced_clock)
5781{
f47709a9 5782 struct drm_device *dev = crtc->base.dev;
a7516a05
JB
5783 u32 fp, fp2 = 0;
5784
5785 if (IS_PINEVIEW(dev)) {
190f68c5 5786 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
a7516a05 5787 if (reduced_clock)
7429e9d4 5788 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 5789 } else {
190f68c5 5790 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
a7516a05 5791 if (reduced_clock)
7429e9d4 5792 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
5793 }
5794
190f68c5 5795 crtc_state->dpll_hw_state.fp0 = fp;
a7516a05 5796
f47709a9 5797 crtc->lowfreq_avail = false;
e1f234bd 5798 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
d330a953 5799 reduced_clock && i915.powersave) {
190f68c5 5800 crtc_state->dpll_hw_state.fp1 = fp2;
f47709a9 5801 crtc->lowfreq_avail = true;
a7516a05 5802 } else {
190f68c5 5803 crtc_state->dpll_hw_state.fp1 = fp;
a7516a05
JB
5804 }
5805}
5806
5e69f97f
CML
5807static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5808 pipe)
89b667f8
JB
5809{
5810 u32 reg_val;
5811
5812 /*
5813 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5814 * and set it to a reasonable value instead.
5815 */
ab3c759a 5816 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8
JB
5817 reg_val &= 0xffffff00;
5818 reg_val |= 0x00000030;
ab3c759a 5819 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 5820
ab3c759a 5821 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
5822 reg_val &= 0x8cffffff;
5823 reg_val = 0x8c000000;
ab3c759a 5824 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8 5825
ab3c759a 5826 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8 5827 reg_val &= 0xffffff00;
ab3c759a 5828 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 5829
ab3c759a 5830 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
5831 reg_val &= 0x00ffffff;
5832 reg_val |= 0xb0000000;
ab3c759a 5833 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8
JB
5834}
5835
b551842d
DV
5836static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5837 struct intel_link_m_n *m_n)
5838{
5839 struct drm_device *dev = crtc->base.dev;
5840 struct drm_i915_private *dev_priv = dev->dev_private;
5841 int pipe = crtc->pipe;
5842
e3b95f1e
DV
5843 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5844 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5845 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5846 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
5847}
5848
5849static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
5850 struct intel_link_m_n *m_n,
5851 struct intel_link_m_n *m2_n2)
b551842d
DV
5852{
5853 struct drm_device *dev = crtc->base.dev;
5854 struct drm_i915_private *dev_priv = dev->dev_private;
5855 int pipe = crtc->pipe;
6e3c9717 5856 enum transcoder transcoder = crtc->config->cpu_transcoder;
b551842d
DV
5857
5858 if (INTEL_INFO(dev)->gen >= 5) {
5859 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5860 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5861 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5862 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
f769cd24
VK
5863 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
5864 * for gen < 8) and if DRRS is supported (to make sure the
5865 * registers are not unnecessarily accessed).
5866 */
5867 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
6e3c9717 5868 crtc->config->has_drrs) {
f769cd24
VK
5869 I915_WRITE(PIPE_DATA_M2(transcoder),
5870 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
5871 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
5872 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
5873 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
5874 }
b551842d 5875 } else {
e3b95f1e
DV
5876 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5877 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5878 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5879 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
5880 }
5881}
5882
f769cd24 5883void intel_dp_set_m_n(struct intel_crtc *crtc)
03afc4a2 5884{
6e3c9717
ACO
5885 if (crtc->config->has_pch_encoder)
5886 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
03afc4a2 5887 else
6e3c9717
ACO
5888 intel_cpu_transcoder_set_m_n(crtc, &crtc->config->dp_m_n,
5889 &crtc->config->dp_m2_n2);
03afc4a2
DV
5890}
5891
d288f65f 5892static void vlv_update_pll(struct intel_crtc *crtc,
5cec258b 5893 struct intel_crtc_state *pipe_config)
bdd4b6a6
DV
5894{
5895 u32 dpll, dpll_md;
5896
5897 /*
5898 * Enable DPIO clock input. We should never disable the reference
5899 * clock for pipe B, since VGA hotplug / manual detection depends
5900 * on it.
5901 */
5902 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5903 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5904 /* We should never disable this, set it here for state tracking */
5905 if (crtc->pipe == PIPE_B)
5906 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5907 dpll |= DPLL_VCO_ENABLE;
d288f65f 5908 pipe_config->dpll_hw_state.dpll = dpll;
bdd4b6a6 5909
d288f65f 5910 dpll_md = (pipe_config->pixel_multiplier - 1)
bdd4b6a6 5911 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
d288f65f 5912 pipe_config->dpll_hw_state.dpll_md = dpll_md;
bdd4b6a6
DV
5913}
5914
d288f65f 5915static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 5916 const struct intel_crtc_state *pipe_config)
a0c4da24 5917{
f47709a9 5918 struct drm_device *dev = crtc->base.dev;
a0c4da24 5919 struct drm_i915_private *dev_priv = dev->dev_private;
f47709a9 5920 int pipe = crtc->pipe;
bdd4b6a6 5921 u32 mdiv;
a0c4da24 5922 u32 bestn, bestm1, bestm2, bestp1, bestp2;
bdd4b6a6 5923 u32 coreclk, reg_val;
a0c4da24 5924
09153000
DV
5925 mutex_lock(&dev_priv->dpio_lock);
5926
d288f65f
VS
5927 bestn = pipe_config->dpll.n;
5928 bestm1 = pipe_config->dpll.m1;
5929 bestm2 = pipe_config->dpll.m2;
5930 bestp1 = pipe_config->dpll.p1;
5931 bestp2 = pipe_config->dpll.p2;
a0c4da24 5932
89b667f8
JB
5933 /* See eDP HDMI DPIO driver vbios notes doc */
5934
5935 /* PLL B needs special handling */
bdd4b6a6 5936 if (pipe == PIPE_B)
5e69f97f 5937 vlv_pllb_recal_opamp(dev_priv, pipe);
89b667f8
JB
5938
5939 /* Set up Tx target for periodic Rcomp update */
ab3c759a 5940 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
89b667f8
JB
5941
5942 /* Disable target IRef on PLL */
ab3c759a 5943 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
89b667f8 5944 reg_val &= 0x00ffffff;
ab3c759a 5945 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
89b667f8
JB
5946
5947 /* Disable fast lock */
ab3c759a 5948 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
89b667f8
JB
5949
5950 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
5951 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5952 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5953 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 5954 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
5955
5956 /*
5957 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5958 * but we don't support that).
5959 * Note: don't use the DAC post divider as it seems unstable.
5960 */
5961 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ab3c759a 5962 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 5963
a0c4da24 5964 mdiv |= DPIO_ENABLE_CALIBRATION;
ab3c759a 5965 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 5966
89b667f8 5967 /* Set HBR and RBR LPF coefficients */
d288f65f 5968 if (pipe_config->port_clock == 162000 ||
409ee761
ACO
5969 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
5970 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
ab3c759a 5971 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
885b0120 5972 0x009f0003);
89b667f8 5973 else
ab3c759a 5974 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
89b667f8
JB
5975 0x00d0000f);
5976
681a8504 5977 if (pipe_config->has_dp_encoder) {
89b667f8 5978 /* Use SSC source */
bdd4b6a6 5979 if (pipe == PIPE_A)
ab3c759a 5980 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5981 0x0df40000);
5982 else
ab3c759a 5983 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5984 0x0df70000);
5985 } else { /* HDMI or VGA */
5986 /* Use bend source */
bdd4b6a6 5987 if (pipe == PIPE_A)
ab3c759a 5988 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5989 0x0df70000);
5990 else
ab3c759a 5991 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5992 0x0df40000);
5993 }
a0c4da24 5994
ab3c759a 5995 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
89b667f8 5996 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
409ee761
ACO
5997 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
5998 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
89b667f8 5999 coreclk |= 0x01000000;
ab3c759a 6000 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
a0c4da24 6001
ab3c759a 6002 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
09153000 6003 mutex_unlock(&dev_priv->dpio_lock);
a0c4da24
JB
6004}
6005
d288f65f 6006static void chv_update_pll(struct intel_crtc *crtc,
5cec258b 6007 struct intel_crtc_state *pipe_config)
1ae0d137 6008{
d288f65f 6009 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
1ae0d137
VS
6010 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
6011 DPLL_VCO_ENABLE;
6012 if (crtc->pipe != PIPE_A)
d288f65f 6013 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
1ae0d137 6014
d288f65f
VS
6015 pipe_config->dpll_hw_state.dpll_md =
6016 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
1ae0d137
VS
6017}
6018
d288f65f 6019static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 6020 const struct intel_crtc_state *pipe_config)
9d556c99
CML
6021{
6022 struct drm_device *dev = crtc->base.dev;
6023 struct drm_i915_private *dev_priv = dev->dev_private;
6024 int pipe = crtc->pipe;
6025 int dpll_reg = DPLL(crtc->pipe);
6026 enum dpio_channel port = vlv_pipe_to_channel(pipe);
580d3811 6027 u32 loopfilter, intcoeff;
9d556c99
CML
6028 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
6029 int refclk;
6030
d288f65f
VS
6031 bestn = pipe_config->dpll.n;
6032 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
6033 bestm1 = pipe_config->dpll.m1;
6034 bestm2 = pipe_config->dpll.m2 >> 22;
6035 bestp1 = pipe_config->dpll.p1;
6036 bestp2 = pipe_config->dpll.p2;
9d556c99
CML
6037
6038 /*
6039 * Enable Refclk and SSC
6040 */
a11b0703 6041 I915_WRITE(dpll_reg,
d288f65f 6042 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
a11b0703
VS
6043
6044 mutex_lock(&dev_priv->dpio_lock);
9d556c99 6045
9d556c99
CML
6046 /* p1 and p2 divider */
6047 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
6048 5 << DPIO_CHV_S1_DIV_SHIFT |
6049 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
6050 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
6051 1 << DPIO_CHV_K_DIV_SHIFT);
6052
6053 /* Feedback post-divider - m2 */
6054 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
6055
6056 /* Feedback refclk divider - n and m1 */
6057 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
6058 DPIO_CHV_M1_DIV_BY_2 |
6059 1 << DPIO_CHV_N_DIV_SHIFT);
6060
6061 /* M2 fraction division */
6062 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
6063
6064 /* M2 fraction division enable */
6065 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
6066 DPIO_CHV_FRAC_DIV_EN |
6067 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
6068
6069 /* Loop filter */
409ee761 6070 refclk = i9xx_get_refclk(crtc, 0);
9d556c99
CML
6071 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
6072 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
6073 if (refclk == 100000)
6074 intcoeff = 11;
6075 else if (refclk == 38400)
6076 intcoeff = 10;
6077 else
6078 intcoeff = 9;
6079 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
6080 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
6081
6082 /* AFC Recal */
6083 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
6084 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
6085 DPIO_AFC_RECAL);
6086
6087 mutex_unlock(&dev_priv->dpio_lock);
6088}
6089
d288f65f
VS
6090/**
6091 * vlv_force_pll_on - forcibly enable just the PLL
6092 * @dev_priv: i915 private structure
6093 * @pipe: pipe PLL to enable
6094 * @dpll: PLL configuration
6095 *
6096 * Enable the PLL for @pipe using the supplied @dpll config. To be used
6097 * in cases where we need the PLL enabled even when @pipe is not going to
6098 * be enabled.
6099 */
6100void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
6101 const struct dpll *dpll)
6102{
6103 struct intel_crtc *crtc =
6104 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
5cec258b 6105 struct intel_crtc_state pipe_config = {
d288f65f
VS
6106 .pixel_multiplier = 1,
6107 .dpll = *dpll,
6108 };
6109
6110 if (IS_CHERRYVIEW(dev)) {
6111 chv_update_pll(crtc, &pipe_config);
6112 chv_prepare_pll(crtc, &pipe_config);
6113 chv_enable_pll(crtc, &pipe_config);
6114 } else {
6115 vlv_update_pll(crtc, &pipe_config);
6116 vlv_prepare_pll(crtc, &pipe_config);
6117 vlv_enable_pll(crtc, &pipe_config);
6118 }
6119}
6120
6121/**
6122 * vlv_force_pll_off - forcibly disable just the PLL
6123 * @dev_priv: i915 private structure
6124 * @pipe: pipe PLL to disable
6125 *
6126 * Disable the PLL for @pipe. To be used in cases where we need
6127 * the PLL enabled even when @pipe is not going to be enabled.
6128 */
6129void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
6130{
6131 if (IS_CHERRYVIEW(dev))
6132 chv_disable_pll(to_i915(dev), pipe);
6133 else
6134 vlv_disable_pll(to_i915(dev), pipe);
6135}
6136
f47709a9 6137static void i9xx_update_pll(struct intel_crtc *crtc,
190f68c5 6138 struct intel_crtc_state *crtc_state,
f47709a9 6139 intel_clock_t *reduced_clock,
eb1cbe48
DV
6140 int num_connectors)
6141{
f47709a9 6142 struct drm_device *dev = crtc->base.dev;
eb1cbe48 6143 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48
DV
6144 u32 dpll;
6145 bool is_sdvo;
190f68c5 6146 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 6147
190f68c5 6148 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 6149
d0737e1d
ACO
6150 is_sdvo = intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO) ||
6151 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI);
eb1cbe48
DV
6152
6153 dpll = DPLL_VGA_MODE_DIS;
6154
d0737e1d 6155 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
6156 dpll |= DPLLB_MODE_LVDS;
6157 else
6158 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 6159
ef1b460d 6160 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
190f68c5 6161 dpll |= (crtc_state->pixel_multiplier - 1)
198a037f 6162 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 6163 }
198a037f
DV
6164
6165 if (is_sdvo)
4a33e48d 6166 dpll |= DPLL_SDVO_HIGH_SPEED;
198a037f 6167
190f68c5 6168 if (crtc_state->has_dp_encoder)
4a33e48d 6169 dpll |= DPLL_SDVO_HIGH_SPEED;
eb1cbe48
DV
6170
6171 /* compute bitmask from p1 value */
6172 if (IS_PINEVIEW(dev))
6173 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
6174 else {
6175 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6176 if (IS_G4X(dev) && reduced_clock)
6177 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
6178 }
6179 switch (clock->p2) {
6180 case 5:
6181 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6182 break;
6183 case 7:
6184 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6185 break;
6186 case 10:
6187 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6188 break;
6189 case 14:
6190 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6191 break;
6192 }
6193 if (INTEL_INFO(dev)->gen >= 4)
6194 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
6195
190f68c5 6196 if (crtc_state->sdvo_tv_clock)
eb1cbe48 6197 dpll |= PLL_REF_INPUT_TVCLKINBC;
d0737e1d 6198 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
6199 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6200 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6201 else
6202 dpll |= PLL_REF_INPUT_DREFCLK;
6203
6204 dpll |= DPLL_VCO_ENABLE;
190f68c5 6205 crtc_state->dpll_hw_state.dpll = dpll;
8bcc2795 6206
eb1cbe48 6207 if (INTEL_INFO(dev)->gen >= 4) {
190f68c5 6208 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
ef1b460d 6209 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
190f68c5 6210 crtc_state->dpll_hw_state.dpll_md = dpll_md;
eb1cbe48
DV
6211 }
6212}
6213
f47709a9 6214static void i8xx_update_pll(struct intel_crtc *crtc,
190f68c5 6215 struct intel_crtc_state *crtc_state,
f47709a9 6216 intel_clock_t *reduced_clock,
eb1cbe48
DV
6217 int num_connectors)
6218{
f47709a9 6219 struct drm_device *dev = crtc->base.dev;
eb1cbe48 6220 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48 6221 u32 dpll;
190f68c5 6222 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 6223
190f68c5 6224 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 6225
eb1cbe48
DV
6226 dpll = DPLL_VGA_MODE_DIS;
6227
d0737e1d 6228 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
6229 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6230 } else {
6231 if (clock->p1 == 2)
6232 dpll |= PLL_P1_DIVIDE_BY_TWO;
6233 else
6234 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6235 if (clock->p2 == 4)
6236 dpll |= PLL_P2_DIVIDE_BY_4;
6237 }
6238
d0737e1d 6239 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
4a33e48d
DV
6240 dpll |= DPLL_DVO_2X_MODE;
6241
d0737e1d 6242 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
6243 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6244 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6245 else
6246 dpll |= PLL_REF_INPUT_DREFCLK;
6247
6248 dpll |= DPLL_VCO_ENABLE;
190f68c5 6249 crtc_state->dpll_hw_state.dpll = dpll;
eb1cbe48
DV
6250}
6251
8a654f3b 6252static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c
PZ
6253{
6254 struct drm_device *dev = intel_crtc->base.dev;
6255 struct drm_i915_private *dev_priv = dev->dev_private;
6256 enum pipe pipe = intel_crtc->pipe;
6e3c9717 6257 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
8a654f3b 6258 struct drm_display_mode *adjusted_mode =
6e3c9717 6259 &intel_crtc->config->base.adjusted_mode;
1caea6e9
VS
6260 uint32_t crtc_vtotal, crtc_vblank_end;
6261 int vsyncshift = 0;
4d8a62ea
DV
6262
6263 /* We need to be careful not to changed the adjusted mode, for otherwise
6264 * the hw state checker will get angry at the mismatch. */
6265 crtc_vtotal = adjusted_mode->crtc_vtotal;
6266 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c 6267
609aeaca 6268 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
b0e77b9c 6269 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
6270 crtc_vtotal -= 1;
6271 crtc_vblank_end -= 1;
609aeaca 6272
409ee761 6273 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
609aeaca
VS
6274 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
6275 else
6276 vsyncshift = adjusted_mode->crtc_hsync_start -
6277 adjusted_mode->crtc_htotal / 2;
1caea6e9
VS
6278 if (vsyncshift < 0)
6279 vsyncshift += adjusted_mode->crtc_htotal;
b0e77b9c
PZ
6280 }
6281
6282 if (INTEL_INFO(dev)->gen > 3)
fe2b8f9d 6283 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 6284
fe2b8f9d 6285 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
6286 (adjusted_mode->crtc_hdisplay - 1) |
6287 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 6288 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
6289 (adjusted_mode->crtc_hblank_start - 1) |
6290 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 6291 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
6292 (adjusted_mode->crtc_hsync_start - 1) |
6293 ((adjusted_mode->crtc_hsync_end - 1) << 16));
6294
fe2b8f9d 6295 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 6296 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 6297 ((crtc_vtotal - 1) << 16));
fe2b8f9d 6298 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 6299 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 6300 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 6301 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
6302 (adjusted_mode->crtc_vsync_start - 1) |
6303 ((adjusted_mode->crtc_vsync_end - 1) << 16));
6304
b5e508d4
PZ
6305 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
6306 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
6307 * documented on the DDI_FUNC_CTL register description, EDP Input Select
6308 * bits. */
6309 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
6310 (pipe == PIPE_B || pipe == PIPE_C))
6311 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
6312
b0e77b9c
PZ
6313 /* pipesrc controls the size that is scaled from, which should
6314 * always be the user's requested size.
6315 */
6316 I915_WRITE(PIPESRC(pipe),
6e3c9717
ACO
6317 ((intel_crtc->config->pipe_src_w - 1) << 16) |
6318 (intel_crtc->config->pipe_src_h - 1));
b0e77b9c
PZ
6319}
6320
1bd1bd80 6321static void intel_get_pipe_timings(struct intel_crtc *crtc,
5cec258b 6322 struct intel_crtc_state *pipe_config)
1bd1bd80
DV
6323{
6324 struct drm_device *dev = crtc->base.dev;
6325 struct drm_i915_private *dev_priv = dev->dev_private;
6326 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
6327 uint32_t tmp;
6328
6329 tmp = I915_READ(HTOTAL(cpu_transcoder));
2d112de7
ACO
6330 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
6331 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 6332 tmp = I915_READ(HBLANK(cpu_transcoder));
2d112de7
ACO
6333 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
6334 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 6335 tmp = I915_READ(HSYNC(cpu_transcoder));
2d112de7
ACO
6336 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
6337 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
6338
6339 tmp = I915_READ(VTOTAL(cpu_transcoder));
2d112de7
ACO
6340 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
6341 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 6342 tmp = I915_READ(VBLANK(cpu_transcoder));
2d112de7
ACO
6343 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
6344 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 6345 tmp = I915_READ(VSYNC(cpu_transcoder));
2d112de7
ACO
6346 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
6347 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
6348
6349 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
2d112de7
ACO
6350 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
6351 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
6352 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
1bd1bd80
DV
6353 }
6354
6355 tmp = I915_READ(PIPESRC(crtc->pipe));
37327abd
VS
6356 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
6357 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
6358
2d112de7
ACO
6359 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
6360 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
1bd1bd80
DV
6361}
6362
f6a83288 6363void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5cec258b 6364 struct intel_crtc_state *pipe_config)
babea61d 6365{
2d112de7
ACO
6366 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
6367 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
6368 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
6369 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
babea61d 6370
2d112de7
ACO
6371 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
6372 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
6373 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
6374 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
babea61d 6375
2d112de7 6376 mode->flags = pipe_config->base.adjusted_mode.flags;
babea61d 6377
2d112de7
ACO
6378 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
6379 mode->flags |= pipe_config->base.adjusted_mode.flags;
babea61d
JB
6380}
6381
84b046f3
DV
6382static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
6383{
6384 struct drm_device *dev = intel_crtc->base.dev;
6385 struct drm_i915_private *dev_priv = dev->dev_private;
6386 uint32_t pipeconf;
6387
9f11a9e4 6388 pipeconf = 0;
84b046f3 6389
b6b5d049
VS
6390 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
6391 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
6392 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
67c72a12 6393
6e3c9717 6394 if (intel_crtc->config->double_wide)
cf532bb2 6395 pipeconf |= PIPECONF_DOUBLE_WIDE;
84b046f3 6396
ff9ce46e
DV
6397 /* only g4x and later have fancy bpc/dither controls */
6398 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
ff9ce46e 6399 /* Bspec claims that we can't use dithering for 30bpp pipes. */
6e3c9717 6400 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
ff9ce46e 6401 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 6402 PIPECONF_DITHER_TYPE_SP;
84b046f3 6403
6e3c9717 6404 switch (intel_crtc->config->pipe_bpp) {
ff9ce46e
DV
6405 case 18:
6406 pipeconf |= PIPECONF_6BPC;
6407 break;
6408 case 24:
6409 pipeconf |= PIPECONF_8BPC;
6410 break;
6411 case 30:
6412 pipeconf |= PIPECONF_10BPC;
6413 break;
6414 default:
6415 /* Case prevented by intel_choose_pipe_bpp_dither. */
6416 BUG();
84b046f3
DV
6417 }
6418 }
6419
6420 if (HAS_PIPE_CXSR(dev)) {
6421 if (intel_crtc->lowfreq_avail) {
6422 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
6423 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
6424 } else {
6425 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
84b046f3
DV
6426 }
6427 }
6428
6e3c9717 6429 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
efc2cfff 6430 if (INTEL_INFO(dev)->gen < 4 ||
409ee761 6431 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
efc2cfff
VS
6432 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
6433 else
6434 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
6435 } else
84b046f3
DV
6436 pipeconf |= PIPECONF_PROGRESSIVE;
6437
6e3c9717 6438 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
9f11a9e4 6439 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
9c8e09b7 6440
84b046f3
DV
6441 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
6442 POSTING_READ(PIPECONF(intel_crtc->pipe));
6443}
6444
190f68c5
ACO
6445static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
6446 struct intel_crtc_state *crtc_state)
79e53945 6447{
c7653199 6448 struct drm_device *dev = crtc->base.dev;
79e53945 6449 struct drm_i915_private *dev_priv = dev->dev_private;
c751ce4f 6450 int refclk, num_connectors = 0;
652c393a 6451 intel_clock_t clock, reduced_clock;
a16af721 6452 bool ok, has_reduced_clock = false;
e9fd1c02 6453 bool is_lvds = false, is_dsi = false;
5eddb70b 6454 struct intel_encoder *encoder;
d4906093 6455 const intel_limit_t *limit;
79e53945 6456
d0737e1d
ACO
6457 for_each_intel_encoder(dev, encoder) {
6458 if (encoder->new_crtc != crtc)
6459 continue;
6460
5eddb70b 6461 switch (encoder->type) {
79e53945
JB
6462 case INTEL_OUTPUT_LVDS:
6463 is_lvds = true;
6464 break;
e9fd1c02
JN
6465 case INTEL_OUTPUT_DSI:
6466 is_dsi = true;
6467 break;
6847d71b
PZ
6468 default:
6469 break;
79e53945 6470 }
43565a06 6471
c751ce4f 6472 num_connectors++;
79e53945
JB
6473 }
6474
f2335330 6475 if (is_dsi)
5b18e57c 6476 return 0;
f2335330 6477
190f68c5 6478 if (!crtc_state->clock_set) {
409ee761 6479 refclk = i9xx_get_refclk(crtc, num_connectors);
79e53945 6480
e9fd1c02
JN
6481 /*
6482 * Returns a set of divisors for the desired target clock with
6483 * the given refclk, or FALSE. The returned values represent
6484 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
6485 * 2) / p1 / p2.
6486 */
409ee761 6487 limit = intel_limit(crtc, refclk);
c7653199 6488 ok = dev_priv->display.find_dpll(limit, crtc,
190f68c5 6489 crtc_state->port_clock,
e9fd1c02 6490 refclk, NULL, &clock);
f2335330 6491 if (!ok) {
e9fd1c02
JN
6492 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6493 return -EINVAL;
6494 }
79e53945 6495
f2335330
JN
6496 if (is_lvds && dev_priv->lvds_downclock_avail) {
6497 /*
6498 * Ensure we match the reduced clock's P to the target
6499 * clock. If the clocks don't match, we can't switch
6500 * the display clock by using the FP0/FP1. In such case
6501 * we will disable the LVDS downclock feature.
6502 */
6503 has_reduced_clock =
c7653199 6504 dev_priv->display.find_dpll(limit, crtc,
f2335330
JN
6505 dev_priv->lvds_downclock,
6506 refclk, &clock,
6507 &reduced_clock);
6508 }
6509 /* Compat-code for transition, will disappear. */
190f68c5
ACO
6510 crtc_state->dpll.n = clock.n;
6511 crtc_state->dpll.m1 = clock.m1;
6512 crtc_state->dpll.m2 = clock.m2;
6513 crtc_state->dpll.p1 = clock.p1;
6514 crtc_state->dpll.p2 = clock.p2;
f47709a9 6515 }
7026d4ac 6516
e9fd1c02 6517 if (IS_GEN2(dev)) {
190f68c5 6518 i8xx_update_pll(crtc, crtc_state,
2a8f64ca
VP
6519 has_reduced_clock ? &reduced_clock : NULL,
6520 num_connectors);
9d556c99 6521 } else if (IS_CHERRYVIEW(dev)) {
190f68c5 6522 chv_update_pll(crtc, crtc_state);
e9fd1c02 6523 } else if (IS_VALLEYVIEW(dev)) {
190f68c5 6524 vlv_update_pll(crtc, crtc_state);
e9fd1c02 6525 } else {
190f68c5 6526 i9xx_update_pll(crtc, crtc_state,
eb1cbe48 6527 has_reduced_clock ? &reduced_clock : NULL,
eba905b2 6528 num_connectors);
e9fd1c02 6529 }
79e53945 6530
c8f7a0db 6531 return 0;
f564048e
EA
6532}
6533
2fa2fe9a 6534static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5cec258b 6535 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
6536{
6537 struct drm_device *dev = crtc->base.dev;
6538 struct drm_i915_private *dev_priv = dev->dev_private;
6539 uint32_t tmp;
6540
dc9e7dec
VS
6541 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6542 return;
6543
2fa2fe9a 6544 tmp = I915_READ(PFIT_CONTROL);
06922821
DV
6545 if (!(tmp & PFIT_ENABLE))
6546 return;
2fa2fe9a 6547
06922821 6548 /* Check whether the pfit is attached to our pipe. */
2fa2fe9a
DV
6549 if (INTEL_INFO(dev)->gen < 4) {
6550 if (crtc->pipe != PIPE_B)
6551 return;
2fa2fe9a
DV
6552 } else {
6553 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6554 return;
6555 }
6556
06922821 6557 pipe_config->gmch_pfit.control = tmp;
2fa2fe9a
DV
6558 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6559 if (INTEL_INFO(dev)->gen < 5)
6560 pipe_config->gmch_pfit.lvds_border_bits =
6561 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6562}
6563
acbec814 6564static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 6565 struct intel_crtc_state *pipe_config)
acbec814
JB
6566{
6567 struct drm_device *dev = crtc->base.dev;
6568 struct drm_i915_private *dev_priv = dev->dev_private;
6569 int pipe = pipe_config->cpu_transcoder;
6570 intel_clock_t clock;
6571 u32 mdiv;
662c6ecb 6572 int refclk = 100000;
acbec814 6573
f573de5a
SK
6574 /* In case of MIPI DPLL will not even be used */
6575 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
6576 return;
6577
acbec814 6578 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 6579 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
acbec814
JB
6580 mutex_unlock(&dev_priv->dpio_lock);
6581
6582 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6583 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6584 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6585 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6586 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6587
f646628b 6588 vlv_clock(refclk, &clock);
acbec814 6589
f646628b
VS
6590 /* clock.dot is the fast clock */
6591 pipe_config->port_clock = clock.dot / 5;
acbec814
JB
6592}
6593
5724dbd1
DL
6594static void
6595i9xx_get_initial_plane_config(struct intel_crtc *crtc,
6596 struct intel_initial_plane_config *plane_config)
1ad292b5
JB
6597{
6598 struct drm_device *dev = crtc->base.dev;
6599 struct drm_i915_private *dev_priv = dev->dev_private;
6600 u32 val, base, offset;
6601 int pipe = crtc->pipe, plane = crtc->plane;
6602 int fourcc, pixel_format;
6603 int aligned_height;
b113d5ee 6604 struct drm_framebuffer *fb;
1b842c89 6605 struct intel_framebuffer *intel_fb;
1ad292b5 6606
d9806c9f 6607 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 6608 if (!intel_fb) {
1ad292b5
JB
6609 DRM_DEBUG_KMS("failed to alloc fb\n");
6610 return;
6611 }
6612
1b842c89
DL
6613 fb = &intel_fb->base;
6614
1ad292b5
JB
6615 val = I915_READ(DSPCNTR(plane));
6616
6617 if (INTEL_INFO(dev)->gen >= 4)
6618 if (val & DISPPLANE_TILED)
49af449b 6619 plane_config->tiling = I915_TILING_X;
1ad292b5
JB
6620
6621 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 6622 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
6623 fb->pixel_format = fourcc;
6624 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
1ad292b5
JB
6625
6626 if (INTEL_INFO(dev)->gen >= 4) {
49af449b 6627 if (plane_config->tiling)
1ad292b5
JB
6628 offset = I915_READ(DSPTILEOFF(plane));
6629 else
6630 offset = I915_READ(DSPLINOFF(plane));
6631 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6632 } else {
6633 base = I915_READ(DSPADDR(plane));
6634 }
6635 plane_config->base = base;
6636
6637 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
6638 fb->width = ((val >> 16) & 0xfff) + 1;
6639 fb->height = ((val >> 0) & 0xfff) + 1;
1ad292b5
JB
6640
6641 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 6642 fb->pitches[0] = val & 0xffffffc0;
1ad292b5 6643
b113d5ee 6644 aligned_height = intel_fb_align_height(dev, fb->height,
ec2c981e 6645 plane_config->tiling);
1ad292b5 6646
b113d5ee 6647 plane_config->size = PAGE_ALIGN(fb->pitches[0] * aligned_height);
1ad292b5 6648
2844a921
DL
6649 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
6650 pipe_name(pipe), plane, fb->width, fb->height,
6651 fb->bits_per_pixel, base, fb->pitches[0],
6652 plane_config->size);
1ad292b5 6653
b113d5ee 6654 crtc->base.primary->fb = fb;
afd65eb4 6655 update_state_fb(crtc->base.primary);
1ad292b5
JB
6656}
6657
70b23a98 6658static void chv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 6659 struct intel_crtc_state *pipe_config)
70b23a98
VS
6660{
6661 struct drm_device *dev = crtc->base.dev;
6662 struct drm_i915_private *dev_priv = dev->dev_private;
6663 int pipe = pipe_config->cpu_transcoder;
6664 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6665 intel_clock_t clock;
6666 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6667 int refclk = 100000;
6668
6669 mutex_lock(&dev_priv->dpio_lock);
6670 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6671 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6672 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6673 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6674 mutex_unlock(&dev_priv->dpio_lock);
6675
6676 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6677 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6678 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6679 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6680 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6681
6682 chv_clock(refclk, &clock);
6683
6684 /* clock.dot is the fast clock */
6685 pipe_config->port_clock = clock.dot / 5;
6686}
6687
0e8ffe1b 6688static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
5cec258b 6689 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
6690{
6691 struct drm_device *dev = crtc->base.dev;
6692 struct drm_i915_private *dev_priv = dev->dev_private;
6693 uint32_t tmp;
6694
f458ebbc
DV
6695 if (!intel_display_power_is_enabled(dev_priv,
6696 POWER_DOMAIN_PIPE(crtc->pipe)))
b5482bd0
ID
6697 return false;
6698
e143a21c 6699 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 6700 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 6701
0e8ffe1b
DV
6702 tmp = I915_READ(PIPECONF(crtc->pipe));
6703 if (!(tmp & PIPECONF_ENABLE))
6704 return false;
6705
42571aef
VS
6706 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6707 switch (tmp & PIPECONF_BPC_MASK) {
6708 case PIPECONF_6BPC:
6709 pipe_config->pipe_bpp = 18;
6710 break;
6711 case PIPECONF_8BPC:
6712 pipe_config->pipe_bpp = 24;
6713 break;
6714 case PIPECONF_10BPC:
6715 pipe_config->pipe_bpp = 30;
6716 break;
6717 default:
6718 break;
6719 }
6720 }
6721
b5a9fa09
DV
6722 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6723 pipe_config->limited_color_range = true;
6724
282740f7
VS
6725 if (INTEL_INFO(dev)->gen < 4)
6726 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6727
1bd1bd80
DV
6728 intel_get_pipe_timings(crtc, pipe_config);
6729
2fa2fe9a
DV
6730 i9xx_get_pfit_config(crtc, pipe_config);
6731
6c49f241
DV
6732 if (INTEL_INFO(dev)->gen >= 4) {
6733 tmp = I915_READ(DPLL_MD(crtc->pipe));
6734 pipe_config->pixel_multiplier =
6735 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6736 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8bcc2795 6737 pipe_config->dpll_hw_state.dpll_md = tmp;
6c49f241
DV
6738 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6739 tmp = I915_READ(DPLL(crtc->pipe));
6740 pipe_config->pixel_multiplier =
6741 ((tmp & SDVO_MULTIPLIER_MASK)
6742 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6743 } else {
6744 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6745 * port and will be fixed up in the encoder->get_config
6746 * function. */
6747 pipe_config->pixel_multiplier = 1;
6748 }
8bcc2795
DV
6749 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6750 if (!IS_VALLEYVIEW(dev)) {
1c4e0274
VS
6751 /*
6752 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
6753 * on 830. Filter it out here so that we don't
6754 * report errors due to that.
6755 */
6756 if (IS_I830(dev))
6757 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
6758
8bcc2795
DV
6759 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6760 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
165e901c
VS
6761 } else {
6762 /* Mask out read-only status bits. */
6763 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6764 DPLL_PORTC_READY_MASK |
6765 DPLL_PORTB_READY_MASK);
8bcc2795 6766 }
6c49f241 6767
70b23a98
VS
6768 if (IS_CHERRYVIEW(dev))
6769 chv_crtc_clock_get(crtc, pipe_config);
6770 else if (IS_VALLEYVIEW(dev))
acbec814
JB
6771 vlv_crtc_clock_get(crtc, pipe_config);
6772 else
6773 i9xx_crtc_clock_get(crtc, pipe_config);
18442d08 6774
0e8ffe1b
DV
6775 return true;
6776}
6777
dde86e2d 6778static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67
JB
6779{
6780 struct drm_i915_private *dev_priv = dev->dev_private;
13d83a67 6781 struct intel_encoder *encoder;
74cfd7ac 6782 u32 val, final;
13d83a67 6783 bool has_lvds = false;
199e5d79 6784 bool has_cpu_edp = false;
199e5d79 6785 bool has_panel = false;
99eb6a01
KP
6786 bool has_ck505 = false;
6787 bool can_ssc = false;
13d83a67
JB
6788
6789 /* We need to take the global config into account */
b2784e15 6790 for_each_intel_encoder(dev, encoder) {
199e5d79
KP
6791 switch (encoder->type) {
6792 case INTEL_OUTPUT_LVDS:
6793 has_panel = true;
6794 has_lvds = true;
6795 break;
6796 case INTEL_OUTPUT_EDP:
6797 has_panel = true;
2de6905f 6798 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
6799 has_cpu_edp = true;
6800 break;
6847d71b
PZ
6801 default:
6802 break;
13d83a67
JB
6803 }
6804 }
6805
99eb6a01 6806 if (HAS_PCH_IBX(dev)) {
41aa3448 6807 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
6808 can_ssc = has_ck505;
6809 } else {
6810 has_ck505 = false;
6811 can_ssc = true;
6812 }
6813
2de6905f
ID
6814 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6815 has_panel, has_lvds, has_ck505);
13d83a67
JB
6816
6817 /* Ironlake: try to setup display ref clock before DPLL
6818 * enabling. This is only under driver's control after
6819 * PCH B stepping, previous chipset stepping should be
6820 * ignoring this setting.
6821 */
74cfd7ac
CW
6822 val = I915_READ(PCH_DREF_CONTROL);
6823
6824 /* As we must carefully and slowly disable/enable each source in turn,
6825 * compute the final state we want first and check if we need to
6826 * make any changes at all.
6827 */
6828 final = val;
6829 final &= ~DREF_NONSPREAD_SOURCE_MASK;
6830 if (has_ck505)
6831 final |= DREF_NONSPREAD_CK505_ENABLE;
6832 else
6833 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6834
6835 final &= ~DREF_SSC_SOURCE_MASK;
6836 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6837 final &= ~DREF_SSC1_ENABLE;
6838
6839 if (has_panel) {
6840 final |= DREF_SSC_SOURCE_ENABLE;
6841
6842 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6843 final |= DREF_SSC1_ENABLE;
6844
6845 if (has_cpu_edp) {
6846 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6847 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6848 else
6849 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6850 } else
6851 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6852 } else {
6853 final |= DREF_SSC_SOURCE_DISABLE;
6854 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6855 }
6856
6857 if (final == val)
6858 return;
6859
13d83a67 6860 /* Always enable nonspread source */
74cfd7ac 6861 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 6862
99eb6a01 6863 if (has_ck505)
74cfd7ac 6864 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 6865 else
74cfd7ac 6866 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 6867
199e5d79 6868 if (has_panel) {
74cfd7ac
CW
6869 val &= ~DREF_SSC_SOURCE_MASK;
6870 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 6871
199e5d79 6872 /* SSC must be turned on before enabling the CPU output */
99eb6a01 6873 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 6874 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 6875 val |= DREF_SSC1_ENABLE;
e77166b5 6876 } else
74cfd7ac 6877 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
6878
6879 /* Get SSC going before enabling the outputs */
74cfd7ac 6880 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6881 POSTING_READ(PCH_DREF_CONTROL);
6882 udelay(200);
6883
74cfd7ac 6884 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
6885
6886 /* Enable CPU source on CPU attached eDP */
199e5d79 6887 if (has_cpu_edp) {
99eb6a01 6888 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 6889 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 6890 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
eba905b2 6891 } else
74cfd7ac 6892 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 6893 } else
74cfd7ac 6894 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 6895
74cfd7ac 6896 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6897 POSTING_READ(PCH_DREF_CONTROL);
6898 udelay(200);
6899 } else {
6900 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6901
74cfd7ac 6902 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
6903
6904 /* Turn off CPU output */
74cfd7ac 6905 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 6906
74cfd7ac 6907 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6908 POSTING_READ(PCH_DREF_CONTROL);
6909 udelay(200);
6910
6911 /* Turn off the SSC source */
74cfd7ac
CW
6912 val &= ~DREF_SSC_SOURCE_MASK;
6913 val |= DREF_SSC_SOURCE_DISABLE;
199e5d79
KP
6914
6915 /* Turn off SSC1 */
74cfd7ac 6916 val &= ~DREF_SSC1_ENABLE;
199e5d79 6917
74cfd7ac 6918 I915_WRITE(PCH_DREF_CONTROL, val);
13d83a67
JB
6919 POSTING_READ(PCH_DREF_CONTROL);
6920 udelay(200);
6921 }
74cfd7ac
CW
6922
6923 BUG_ON(val != final);
13d83a67
JB
6924}
6925
f31f2d55 6926static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
dde86e2d 6927{
f31f2d55 6928 uint32_t tmp;
dde86e2d 6929
0ff066a9
PZ
6930 tmp = I915_READ(SOUTH_CHICKEN2);
6931 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6932 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 6933
0ff066a9
PZ
6934 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6935 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6936 DRM_ERROR("FDI mPHY reset assert timeout\n");
dde86e2d 6937
0ff066a9
PZ
6938 tmp = I915_READ(SOUTH_CHICKEN2);
6939 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6940 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 6941
0ff066a9
PZ
6942 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6943 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6944 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
f31f2d55
PZ
6945}
6946
6947/* WaMPhyProgramming:hsw */
6948static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6949{
6950 uint32_t tmp;
dde86e2d
PZ
6951
6952 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6953 tmp &= ~(0xFF << 24);
6954 tmp |= (0x12 << 24);
6955 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6956
dde86e2d
PZ
6957 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6958 tmp |= (1 << 11);
6959 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6960
6961 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6962 tmp |= (1 << 11);
6963 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6964
dde86e2d
PZ
6965 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6966 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6967 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6968
6969 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6970 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6971 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6972
0ff066a9
PZ
6973 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6974 tmp &= ~(7 << 13);
6975 tmp |= (5 << 13);
6976 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
dde86e2d 6977
0ff066a9
PZ
6978 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6979 tmp &= ~(7 << 13);
6980 tmp |= (5 << 13);
6981 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
dde86e2d
PZ
6982
6983 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6984 tmp &= ~0xFF;
6985 tmp |= 0x1C;
6986 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6987
6988 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6989 tmp &= ~0xFF;
6990 tmp |= 0x1C;
6991 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6992
6993 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6994 tmp &= ~(0xFF << 16);
6995 tmp |= (0x1C << 16);
6996 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6997
6998 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6999 tmp &= ~(0xFF << 16);
7000 tmp |= (0x1C << 16);
7001 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
7002
0ff066a9
PZ
7003 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
7004 tmp |= (1 << 27);
7005 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
dde86e2d 7006
0ff066a9
PZ
7007 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
7008 tmp |= (1 << 27);
7009 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
dde86e2d 7010
0ff066a9
PZ
7011 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
7012 tmp &= ~(0xF << 28);
7013 tmp |= (4 << 28);
7014 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
dde86e2d 7015
0ff066a9
PZ
7016 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
7017 tmp &= ~(0xF << 28);
7018 tmp |= (4 << 28);
7019 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
f31f2d55
PZ
7020}
7021
2fa86a1f
PZ
7022/* Implements 3 different sequences from BSpec chapter "Display iCLK
7023 * Programming" based on the parameters passed:
7024 * - Sequence to enable CLKOUT_DP
7025 * - Sequence to enable CLKOUT_DP without spread
7026 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
7027 */
7028static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
7029 bool with_fdi)
f31f2d55
PZ
7030{
7031 struct drm_i915_private *dev_priv = dev->dev_private;
2fa86a1f
PZ
7032 uint32_t reg, tmp;
7033
7034 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
7035 with_spread = true;
7036 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
7037 with_fdi, "LP PCH doesn't have FDI\n"))
7038 with_fdi = false;
f31f2d55
PZ
7039
7040 mutex_lock(&dev_priv->dpio_lock);
7041
7042 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7043 tmp &= ~SBI_SSCCTL_DISABLE;
7044 tmp |= SBI_SSCCTL_PATHALT;
7045 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7046
7047 udelay(24);
7048
2fa86a1f
PZ
7049 if (with_spread) {
7050 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7051 tmp &= ~SBI_SSCCTL_PATHALT;
7052 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
f31f2d55 7053
2fa86a1f
PZ
7054 if (with_fdi) {
7055 lpt_reset_fdi_mphy(dev_priv);
7056 lpt_program_fdi_mphy(dev_priv);
7057 }
7058 }
dde86e2d 7059
2fa86a1f
PZ
7060 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7061 SBI_GEN0 : SBI_DBUFF0;
7062 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7063 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7064 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
c00db246
DV
7065
7066 mutex_unlock(&dev_priv->dpio_lock);
dde86e2d
PZ
7067}
7068
47701c3b
PZ
7069/* Sequence to disable CLKOUT_DP */
7070static void lpt_disable_clkout_dp(struct drm_device *dev)
7071{
7072 struct drm_i915_private *dev_priv = dev->dev_private;
7073 uint32_t reg, tmp;
7074
7075 mutex_lock(&dev_priv->dpio_lock);
7076
7077 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7078 SBI_GEN0 : SBI_DBUFF0;
7079 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7080 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7081 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
7082
7083 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7084 if (!(tmp & SBI_SSCCTL_DISABLE)) {
7085 if (!(tmp & SBI_SSCCTL_PATHALT)) {
7086 tmp |= SBI_SSCCTL_PATHALT;
7087 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7088 udelay(32);
7089 }
7090 tmp |= SBI_SSCCTL_DISABLE;
7091 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7092 }
7093
7094 mutex_unlock(&dev_priv->dpio_lock);
7095}
7096
bf8fa3d3
PZ
7097static void lpt_init_pch_refclk(struct drm_device *dev)
7098{
bf8fa3d3
PZ
7099 struct intel_encoder *encoder;
7100 bool has_vga = false;
7101
b2784e15 7102 for_each_intel_encoder(dev, encoder) {
bf8fa3d3
PZ
7103 switch (encoder->type) {
7104 case INTEL_OUTPUT_ANALOG:
7105 has_vga = true;
7106 break;
6847d71b
PZ
7107 default:
7108 break;
bf8fa3d3
PZ
7109 }
7110 }
7111
47701c3b
PZ
7112 if (has_vga)
7113 lpt_enable_clkout_dp(dev, true, true);
7114 else
7115 lpt_disable_clkout_dp(dev);
bf8fa3d3
PZ
7116}
7117
dde86e2d
PZ
7118/*
7119 * Initialize reference clocks when the driver loads
7120 */
7121void intel_init_pch_refclk(struct drm_device *dev)
7122{
7123 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7124 ironlake_init_pch_refclk(dev);
7125 else if (HAS_PCH_LPT(dev))
7126 lpt_init_pch_refclk(dev);
7127}
7128
d9d444cb
JB
7129static int ironlake_get_refclk(struct drm_crtc *crtc)
7130{
7131 struct drm_device *dev = crtc->dev;
7132 struct drm_i915_private *dev_priv = dev->dev_private;
7133 struct intel_encoder *encoder;
d9d444cb
JB
7134 int num_connectors = 0;
7135 bool is_lvds = false;
7136
d0737e1d
ACO
7137 for_each_intel_encoder(dev, encoder) {
7138 if (encoder->new_crtc != to_intel_crtc(crtc))
7139 continue;
7140
d9d444cb
JB
7141 switch (encoder->type) {
7142 case INTEL_OUTPUT_LVDS:
7143 is_lvds = true;
7144 break;
6847d71b
PZ
7145 default:
7146 break;
d9d444cb
JB
7147 }
7148 num_connectors++;
7149 }
7150
7151 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b 7152 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
41aa3448 7153 dev_priv->vbt.lvds_ssc_freq);
e91e941b 7154 return dev_priv->vbt.lvds_ssc_freq;
d9d444cb
JB
7155 }
7156
7157 return 120000;
7158}
7159
6ff93609 7160static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 7161{
c8203565 7162 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
79e53945
JB
7163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7164 int pipe = intel_crtc->pipe;
c8203565
PZ
7165 uint32_t val;
7166
78114071 7167 val = 0;
c8203565 7168
6e3c9717 7169 switch (intel_crtc->config->pipe_bpp) {
c8203565 7170 case 18:
dfd07d72 7171 val |= PIPECONF_6BPC;
c8203565
PZ
7172 break;
7173 case 24:
dfd07d72 7174 val |= PIPECONF_8BPC;
c8203565
PZ
7175 break;
7176 case 30:
dfd07d72 7177 val |= PIPECONF_10BPC;
c8203565
PZ
7178 break;
7179 case 36:
dfd07d72 7180 val |= PIPECONF_12BPC;
c8203565
PZ
7181 break;
7182 default:
cc769b62
PZ
7183 /* Case prevented by intel_choose_pipe_bpp_dither. */
7184 BUG();
c8203565
PZ
7185 }
7186
6e3c9717 7187 if (intel_crtc->config->dither)
c8203565
PZ
7188 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7189
6e3c9717 7190 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
7191 val |= PIPECONF_INTERLACED_ILK;
7192 else
7193 val |= PIPECONF_PROGRESSIVE;
7194
6e3c9717 7195 if (intel_crtc->config->limited_color_range)
3685a8f3 7196 val |= PIPECONF_COLOR_RANGE_SELECT;
3685a8f3 7197
c8203565
PZ
7198 I915_WRITE(PIPECONF(pipe), val);
7199 POSTING_READ(PIPECONF(pipe));
7200}
7201
86d3efce
VS
7202/*
7203 * Set up the pipe CSC unit.
7204 *
7205 * Currently only full range RGB to limited range RGB conversion
7206 * is supported, but eventually this should handle various
7207 * RGB<->YCbCr scenarios as well.
7208 */
50f3b016 7209static void intel_set_pipe_csc(struct drm_crtc *crtc)
86d3efce
VS
7210{
7211 struct drm_device *dev = crtc->dev;
7212 struct drm_i915_private *dev_priv = dev->dev_private;
7213 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7214 int pipe = intel_crtc->pipe;
7215 uint16_t coeff = 0x7800; /* 1.0 */
7216
7217 /*
7218 * TODO: Check what kind of values actually come out of the pipe
7219 * with these coeff/postoff values and adjust to get the best
7220 * accuracy. Perhaps we even need to take the bpc value into
7221 * consideration.
7222 */
7223
6e3c9717 7224 if (intel_crtc->config->limited_color_range)
86d3efce
VS
7225 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
7226
7227 /*
7228 * GY/GU and RY/RU should be the other way around according
7229 * to BSpec, but reality doesn't agree. Just set them up in
7230 * a way that results in the correct picture.
7231 */
7232 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
7233 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
7234
7235 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
7236 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
7237
7238 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
7239 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
7240
7241 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
7242 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
7243 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
7244
7245 if (INTEL_INFO(dev)->gen > 6) {
7246 uint16_t postoff = 0;
7247
6e3c9717 7248 if (intel_crtc->config->limited_color_range)
32cf0cb0 7249 postoff = (16 * (1 << 12) / 255) & 0x1fff;
86d3efce
VS
7250
7251 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
7252 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
7253 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
7254
7255 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
7256 } else {
7257 uint32_t mode = CSC_MODE_YUV_TO_RGB;
7258
6e3c9717 7259 if (intel_crtc->config->limited_color_range)
86d3efce
VS
7260 mode |= CSC_BLACK_SCREEN_OFFSET;
7261
7262 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
7263 }
7264}
7265
6ff93609 7266static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38 7267{
756f85cf
PZ
7268 struct drm_device *dev = crtc->dev;
7269 struct drm_i915_private *dev_priv = dev->dev_private;
ee2b0b38 7270 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
756f85cf 7271 enum pipe pipe = intel_crtc->pipe;
6e3c9717 7272 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee2b0b38
PZ
7273 uint32_t val;
7274
3eff4faa 7275 val = 0;
ee2b0b38 7276
6e3c9717 7277 if (IS_HASWELL(dev) && intel_crtc->config->dither)
ee2b0b38
PZ
7278 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7279
6e3c9717 7280 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
7281 val |= PIPECONF_INTERLACED_ILK;
7282 else
7283 val |= PIPECONF_PROGRESSIVE;
7284
702e7a56
PZ
7285 I915_WRITE(PIPECONF(cpu_transcoder), val);
7286 POSTING_READ(PIPECONF(cpu_transcoder));
3eff4faa
DV
7287
7288 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
7289 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
756f85cf 7290
3cdf122c 7291 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
756f85cf
PZ
7292 val = 0;
7293
6e3c9717 7294 switch (intel_crtc->config->pipe_bpp) {
756f85cf
PZ
7295 case 18:
7296 val |= PIPEMISC_DITHER_6_BPC;
7297 break;
7298 case 24:
7299 val |= PIPEMISC_DITHER_8_BPC;
7300 break;
7301 case 30:
7302 val |= PIPEMISC_DITHER_10_BPC;
7303 break;
7304 case 36:
7305 val |= PIPEMISC_DITHER_12_BPC;
7306 break;
7307 default:
7308 /* Case prevented by pipe_config_set_bpp. */
7309 BUG();
7310 }
7311
6e3c9717 7312 if (intel_crtc->config->dither)
756f85cf
PZ
7313 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
7314
7315 I915_WRITE(PIPEMISC(pipe), val);
7316 }
ee2b0b38
PZ
7317}
7318
6591c6e4 7319static bool ironlake_compute_clocks(struct drm_crtc *crtc,
190f68c5 7320 struct intel_crtc_state *crtc_state,
6591c6e4
PZ
7321 intel_clock_t *clock,
7322 bool *has_reduced_clock,
7323 intel_clock_t *reduced_clock)
7324{
7325 struct drm_device *dev = crtc->dev;
7326 struct drm_i915_private *dev_priv = dev->dev_private;
a919ff14 7327 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6591c6e4 7328 int refclk;
d4906093 7329 const intel_limit_t *limit;
a16af721 7330 bool ret, is_lvds = false;
79e53945 7331
d0737e1d 7332 is_lvds = intel_pipe_will_have_type(intel_crtc, INTEL_OUTPUT_LVDS);
79e53945 7333
d9d444cb 7334 refclk = ironlake_get_refclk(crtc);
79e53945 7335
d4906093
ML
7336 /*
7337 * Returns a set of divisors for the desired target clock with the given
7338 * refclk, or FALSE. The returned values represent the clock equation:
7339 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
7340 */
409ee761 7341 limit = intel_limit(intel_crtc, refclk);
a919ff14 7342 ret = dev_priv->display.find_dpll(limit, intel_crtc,
190f68c5 7343 crtc_state->port_clock,
ee9300bb 7344 refclk, NULL, clock);
6591c6e4
PZ
7345 if (!ret)
7346 return false;
cda4b7d3 7347
ddc9003c 7348 if (is_lvds && dev_priv->lvds_downclock_avail) {
cec2f356
SP
7349 /*
7350 * Ensure we match the reduced clock's P to the target clock.
7351 * If the clocks don't match, we can't switch the display clock
7352 * by using the FP0/FP1. In such case we will disable the LVDS
7353 * downclock feature.
7354 */
ee9300bb 7355 *has_reduced_clock =
a919ff14 7356 dev_priv->display.find_dpll(limit, intel_crtc,
ee9300bb
DV
7357 dev_priv->lvds_downclock,
7358 refclk, clock,
7359 reduced_clock);
652c393a 7360 }
61e9653f 7361
6591c6e4
PZ
7362 return true;
7363}
7364
d4b1931c
PZ
7365int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
7366{
7367 /*
7368 * Account for spread spectrum to avoid
7369 * oversubscribing the link. Max center spread
7370 * is 2.5%; use 5% for safety's sake.
7371 */
7372 u32 bps = target_clock * bpp * 21 / 20;
619d4d04 7373 return DIV_ROUND_UP(bps, link_bw * 8);
d4b1931c
PZ
7374}
7375
7429e9d4 7376static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
6cf86a5e 7377{
7429e9d4 7378 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
f48d8f23
PZ
7379}
7380
de13a2e3 7381static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
190f68c5 7382 struct intel_crtc_state *crtc_state,
7429e9d4 7383 u32 *fp,
9a7c7890 7384 intel_clock_t *reduced_clock, u32 *fp2)
79e53945 7385{
de13a2e3 7386 struct drm_crtc *crtc = &intel_crtc->base;
79e53945
JB
7387 struct drm_device *dev = crtc->dev;
7388 struct drm_i915_private *dev_priv = dev->dev_private;
de13a2e3
PZ
7389 struct intel_encoder *intel_encoder;
7390 uint32_t dpll;
6cc5f341 7391 int factor, num_connectors = 0;
09ede541 7392 bool is_lvds = false, is_sdvo = false;
79e53945 7393
d0737e1d
ACO
7394 for_each_intel_encoder(dev, intel_encoder) {
7395 if (intel_encoder->new_crtc != to_intel_crtc(crtc))
7396 continue;
7397
de13a2e3 7398 switch (intel_encoder->type) {
79e53945
JB
7399 case INTEL_OUTPUT_LVDS:
7400 is_lvds = true;
7401 break;
7402 case INTEL_OUTPUT_SDVO:
7d57382e 7403 case INTEL_OUTPUT_HDMI:
79e53945 7404 is_sdvo = true;
79e53945 7405 break;
6847d71b
PZ
7406 default:
7407 break;
79e53945 7408 }
43565a06 7409
c751ce4f 7410 num_connectors++;
79e53945 7411 }
79e53945 7412
c1858123 7413 /* Enable autotuning of the PLL clock (if permissible) */
8febb297
EA
7414 factor = 21;
7415 if (is_lvds) {
7416 if ((intel_panel_use_ssc(dev_priv) &&
e91e941b 7417 dev_priv->vbt.lvds_ssc_freq == 100000) ||
f0b44056 7418 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
8febb297 7419 factor = 25;
190f68c5 7420 } else if (crtc_state->sdvo_tv_clock)
8febb297 7421 factor = 20;
c1858123 7422
190f68c5 7423 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
7d0ac5b7 7424 *fp |= FP_CB_TUNE;
2c07245f 7425
9a7c7890
DV
7426 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
7427 *fp2 |= FP_CB_TUNE;
7428
5eddb70b 7429 dpll = 0;
2c07245f 7430
a07d6787
EA
7431 if (is_lvds)
7432 dpll |= DPLLB_MODE_LVDS;
7433 else
7434 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 7435
190f68c5 7436 dpll |= (crtc_state->pixel_multiplier - 1)
ef1b460d 7437 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f
DV
7438
7439 if (is_sdvo)
4a33e48d 7440 dpll |= DPLL_SDVO_HIGH_SPEED;
190f68c5 7441 if (crtc_state->has_dp_encoder)
4a33e48d 7442 dpll |= DPLL_SDVO_HIGH_SPEED;
79e53945 7443
a07d6787 7444 /* compute bitmask from p1 value */
190f68c5 7445 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 7446 /* also FPA1 */
190f68c5 7447 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 7448
190f68c5 7449 switch (crtc_state->dpll.p2) {
a07d6787
EA
7450 case 5:
7451 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7452 break;
7453 case 7:
7454 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7455 break;
7456 case 10:
7457 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7458 break;
7459 case 14:
7460 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7461 break;
79e53945
JB
7462 }
7463
b4c09f3b 7464 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
43565a06 7465 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
7466 else
7467 dpll |= PLL_REF_INPUT_DREFCLK;
7468
959e16d6 7469 return dpll | DPLL_VCO_ENABLE;
de13a2e3
PZ
7470}
7471
190f68c5
ACO
7472static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
7473 struct intel_crtc_state *crtc_state)
de13a2e3 7474{
c7653199 7475 struct drm_device *dev = crtc->base.dev;
de13a2e3 7476 intel_clock_t clock, reduced_clock;
cbbab5bd 7477 u32 dpll = 0, fp = 0, fp2 = 0;
e2f12b07 7478 bool ok, has_reduced_clock = false;
8b47047b 7479 bool is_lvds = false;
e2b78267 7480 struct intel_shared_dpll *pll;
de13a2e3 7481
409ee761 7482 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
79e53945 7483
5dc5298b
PZ
7484 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
7485 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
a07d6787 7486
190f68c5 7487 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
de13a2e3 7488 &has_reduced_clock, &reduced_clock);
190f68c5 7489 if (!ok && !crtc_state->clock_set) {
de13a2e3
PZ
7490 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7491 return -EINVAL;
79e53945 7492 }
f47709a9 7493 /* Compat-code for transition, will disappear. */
190f68c5
ACO
7494 if (!crtc_state->clock_set) {
7495 crtc_state->dpll.n = clock.n;
7496 crtc_state->dpll.m1 = clock.m1;
7497 crtc_state->dpll.m2 = clock.m2;
7498 crtc_state->dpll.p1 = clock.p1;
7499 crtc_state->dpll.p2 = clock.p2;
f47709a9 7500 }
79e53945 7501
5dc5298b 7502 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
190f68c5
ACO
7503 if (crtc_state->has_pch_encoder) {
7504 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
cbbab5bd 7505 if (has_reduced_clock)
7429e9d4 7506 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
cbbab5bd 7507
190f68c5 7508 dpll = ironlake_compute_dpll(crtc, crtc_state,
cbbab5bd
DV
7509 &fp, &reduced_clock,
7510 has_reduced_clock ? &fp2 : NULL);
7511
190f68c5
ACO
7512 crtc_state->dpll_hw_state.dpll = dpll;
7513 crtc_state->dpll_hw_state.fp0 = fp;
66e985c0 7514 if (has_reduced_clock)
190f68c5 7515 crtc_state->dpll_hw_state.fp1 = fp2;
66e985c0 7516 else
190f68c5 7517 crtc_state->dpll_hw_state.fp1 = fp;
66e985c0 7518
190f68c5 7519 pll = intel_get_shared_dpll(crtc, crtc_state);
ee7b9f93 7520 if (pll == NULL) {
84f44ce7 7521 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
c7653199 7522 pipe_name(crtc->pipe));
4b645f14
JB
7523 return -EINVAL;
7524 }
3fb37703 7525 }
79e53945 7526
d330a953 7527 if (is_lvds && has_reduced_clock && i915.powersave)
c7653199 7528 crtc->lowfreq_avail = true;
bcd644e0 7529 else
c7653199 7530 crtc->lowfreq_avail = false;
e2b78267 7531
c8f7a0db 7532 return 0;
79e53945
JB
7533}
7534
eb14cb74
VS
7535static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7536 struct intel_link_m_n *m_n)
7537{
7538 struct drm_device *dev = crtc->base.dev;
7539 struct drm_i915_private *dev_priv = dev->dev_private;
7540 enum pipe pipe = crtc->pipe;
7541
7542 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7543 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7544 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7545 & ~TU_SIZE_MASK;
7546 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7547 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7548 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7549}
7550
7551static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7552 enum transcoder transcoder,
b95af8be
VK
7553 struct intel_link_m_n *m_n,
7554 struct intel_link_m_n *m2_n2)
72419203
DV
7555{
7556 struct drm_device *dev = crtc->base.dev;
7557 struct drm_i915_private *dev_priv = dev->dev_private;
eb14cb74 7558 enum pipe pipe = crtc->pipe;
72419203 7559
eb14cb74
VS
7560 if (INTEL_INFO(dev)->gen >= 5) {
7561 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7562 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7563 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7564 & ~TU_SIZE_MASK;
7565 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7566 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7567 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
b95af8be
VK
7568 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
7569 * gen < 8) and if DRRS is supported (to make sure the
7570 * registers are not unnecessarily read).
7571 */
7572 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
6e3c9717 7573 crtc->config->has_drrs) {
b95af8be
VK
7574 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
7575 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
7576 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
7577 & ~TU_SIZE_MASK;
7578 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
7579 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
7580 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7581 }
eb14cb74
VS
7582 } else {
7583 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7584 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7585 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7586 & ~TU_SIZE_MASK;
7587 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7588 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7589 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7590 }
7591}
7592
7593void intel_dp_get_m_n(struct intel_crtc *crtc,
5cec258b 7594 struct intel_crtc_state *pipe_config)
eb14cb74 7595{
681a8504 7596 if (pipe_config->has_pch_encoder)
eb14cb74
VS
7597 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7598 else
7599 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be
VK
7600 &pipe_config->dp_m_n,
7601 &pipe_config->dp_m2_n2);
eb14cb74 7602}
72419203 7603
eb14cb74 7604static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
5cec258b 7605 struct intel_crtc_state *pipe_config)
eb14cb74
VS
7606{
7607 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be 7608 &pipe_config->fdi_m_n, NULL);
72419203
DV
7609}
7610
bd2e244f 7611static void skylake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 7612 struct intel_crtc_state *pipe_config)
bd2e244f
JB
7613{
7614 struct drm_device *dev = crtc->base.dev;
7615 struct drm_i915_private *dev_priv = dev->dev_private;
7616 uint32_t tmp;
7617
7618 tmp = I915_READ(PS_CTL(crtc->pipe));
7619
7620 if (tmp & PS_ENABLE) {
7621 pipe_config->pch_pfit.enabled = true;
7622 pipe_config->pch_pfit.pos = I915_READ(PS_WIN_POS(crtc->pipe));
7623 pipe_config->pch_pfit.size = I915_READ(PS_WIN_SZ(crtc->pipe));
7624 }
7625}
7626
5724dbd1
DL
7627static void
7628skylake_get_initial_plane_config(struct intel_crtc *crtc,
7629 struct intel_initial_plane_config *plane_config)
bc8d7dff
DL
7630{
7631 struct drm_device *dev = crtc->base.dev;
7632 struct drm_i915_private *dev_priv = dev->dev_private;
7633 u32 val, base, offset, stride_mult;
7634 int pipe = crtc->pipe;
7635 int fourcc, pixel_format;
7636 int aligned_height;
7637 struct drm_framebuffer *fb;
1b842c89 7638 struct intel_framebuffer *intel_fb;
bc8d7dff 7639
d9806c9f 7640 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 7641 if (!intel_fb) {
bc8d7dff
DL
7642 DRM_DEBUG_KMS("failed to alloc fb\n");
7643 return;
7644 }
7645
1b842c89
DL
7646 fb = &intel_fb->base;
7647
bc8d7dff
DL
7648 val = I915_READ(PLANE_CTL(pipe, 0));
7649 if (val & PLANE_CTL_TILED_MASK)
7650 plane_config->tiling = I915_TILING_X;
7651
7652 pixel_format = val & PLANE_CTL_FORMAT_MASK;
7653 fourcc = skl_format_to_fourcc(pixel_format,
7654 val & PLANE_CTL_ORDER_RGBX,
7655 val & PLANE_CTL_ALPHA_MASK);
7656 fb->pixel_format = fourcc;
7657 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
7658
7659 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
7660 plane_config->base = base;
7661
7662 offset = I915_READ(PLANE_OFFSET(pipe, 0));
7663
7664 val = I915_READ(PLANE_SIZE(pipe, 0));
7665 fb->height = ((val >> 16) & 0xfff) + 1;
7666 fb->width = ((val >> 0) & 0x1fff) + 1;
7667
7668 val = I915_READ(PLANE_STRIDE(pipe, 0));
7669 switch (plane_config->tiling) {
7670 case I915_TILING_NONE:
7671 stride_mult = 64;
7672 break;
7673 case I915_TILING_X:
7674 stride_mult = 512;
7675 break;
7676 default:
7677 MISSING_CASE(plane_config->tiling);
7678 goto error;
7679 }
7680 fb->pitches[0] = (val & 0x3ff) * stride_mult;
7681
7682 aligned_height = intel_fb_align_height(dev, fb->height,
7683 plane_config->tiling);
7684
7685 plane_config->size = ALIGN(fb->pitches[0] * aligned_height, PAGE_SIZE);
7686
7687 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7688 pipe_name(pipe), fb->width, fb->height,
7689 fb->bits_per_pixel, base, fb->pitches[0],
7690 plane_config->size);
7691
7692 crtc->base.primary->fb = fb;
afd65eb4 7693 update_state_fb(crtc->base.primary);
bc8d7dff
DL
7694 return;
7695
7696error:
7697 kfree(fb);
7698}
7699
2fa2fe9a 7700static void ironlake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 7701 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
7702{
7703 struct drm_device *dev = crtc->base.dev;
7704 struct drm_i915_private *dev_priv = dev->dev_private;
7705 uint32_t tmp;
7706
7707 tmp = I915_READ(PF_CTL(crtc->pipe));
7708
7709 if (tmp & PF_ENABLE) {
fd4daa9c 7710 pipe_config->pch_pfit.enabled = true;
2fa2fe9a
DV
7711 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7712 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
7713
7714 /* We currently do not free assignements of panel fitters on
7715 * ivb/hsw (since we don't use the higher upscaling modes which
7716 * differentiates them) so just WARN about this case for now. */
7717 if (IS_GEN7(dev)) {
7718 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7719 PF_PIPE_SEL_IVB(crtc->pipe));
7720 }
2fa2fe9a 7721 }
79e53945
JB
7722}
7723
5724dbd1
DL
7724static void
7725ironlake_get_initial_plane_config(struct intel_crtc *crtc,
7726 struct intel_initial_plane_config *plane_config)
4c6baa59
JB
7727{
7728 struct drm_device *dev = crtc->base.dev;
7729 struct drm_i915_private *dev_priv = dev->dev_private;
7730 u32 val, base, offset;
aeee5a49 7731 int pipe = crtc->pipe;
4c6baa59
JB
7732 int fourcc, pixel_format;
7733 int aligned_height;
b113d5ee 7734 struct drm_framebuffer *fb;
1b842c89 7735 struct intel_framebuffer *intel_fb;
4c6baa59 7736
d9806c9f 7737 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 7738 if (!intel_fb) {
4c6baa59
JB
7739 DRM_DEBUG_KMS("failed to alloc fb\n");
7740 return;
7741 }
7742
1b842c89
DL
7743 fb = &intel_fb->base;
7744
aeee5a49 7745 val = I915_READ(DSPCNTR(pipe));
4c6baa59
JB
7746
7747 if (INTEL_INFO(dev)->gen >= 4)
7748 if (val & DISPPLANE_TILED)
49af449b 7749 plane_config->tiling = I915_TILING_X;
4c6baa59
JB
7750
7751 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 7752 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
7753 fb->pixel_format = fourcc;
7754 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
4c6baa59 7755
aeee5a49 7756 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
4c6baa59 7757 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
aeee5a49 7758 offset = I915_READ(DSPOFFSET(pipe));
4c6baa59 7759 } else {
49af449b 7760 if (plane_config->tiling)
aeee5a49 7761 offset = I915_READ(DSPTILEOFF(pipe));
4c6baa59 7762 else
aeee5a49 7763 offset = I915_READ(DSPLINOFF(pipe));
4c6baa59
JB
7764 }
7765 plane_config->base = base;
7766
7767 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
7768 fb->width = ((val >> 16) & 0xfff) + 1;
7769 fb->height = ((val >> 0) & 0xfff) + 1;
4c6baa59
JB
7770
7771 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 7772 fb->pitches[0] = val & 0xffffffc0;
4c6baa59 7773
b113d5ee 7774 aligned_height = intel_fb_align_height(dev, fb->height,
ec2c981e 7775 plane_config->tiling);
4c6baa59 7776
b113d5ee 7777 plane_config->size = PAGE_ALIGN(fb->pitches[0] * aligned_height);
4c6baa59 7778
2844a921
DL
7779 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7780 pipe_name(pipe), fb->width, fb->height,
7781 fb->bits_per_pixel, base, fb->pitches[0],
7782 plane_config->size);
b113d5ee
DL
7783
7784 crtc->base.primary->fb = fb;
afd65eb4 7785 update_state_fb(crtc->base.primary);
4c6baa59
JB
7786}
7787
0e8ffe1b 7788static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
5cec258b 7789 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
7790{
7791 struct drm_device *dev = crtc->base.dev;
7792 struct drm_i915_private *dev_priv = dev->dev_private;
7793 uint32_t tmp;
7794
f458ebbc
DV
7795 if (!intel_display_power_is_enabled(dev_priv,
7796 POWER_DOMAIN_PIPE(crtc->pipe)))
930e8c9e
PZ
7797 return false;
7798
e143a21c 7799 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 7800 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 7801
0e8ffe1b
DV
7802 tmp = I915_READ(PIPECONF(crtc->pipe));
7803 if (!(tmp & PIPECONF_ENABLE))
7804 return false;
7805
42571aef
VS
7806 switch (tmp & PIPECONF_BPC_MASK) {
7807 case PIPECONF_6BPC:
7808 pipe_config->pipe_bpp = 18;
7809 break;
7810 case PIPECONF_8BPC:
7811 pipe_config->pipe_bpp = 24;
7812 break;
7813 case PIPECONF_10BPC:
7814 pipe_config->pipe_bpp = 30;
7815 break;
7816 case PIPECONF_12BPC:
7817 pipe_config->pipe_bpp = 36;
7818 break;
7819 default:
7820 break;
7821 }
7822
b5a9fa09
DV
7823 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7824 pipe_config->limited_color_range = true;
7825
ab9412ba 7826 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
66e985c0
DV
7827 struct intel_shared_dpll *pll;
7828
88adfff1
DV
7829 pipe_config->has_pch_encoder = true;
7830
627eb5a3
DV
7831 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7832 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7833 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
7834
7835 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241 7836
c0d43d62 7837 if (HAS_PCH_IBX(dev_priv->dev)) {
d94ab068
DV
7838 pipe_config->shared_dpll =
7839 (enum intel_dpll_id) crtc->pipe;
c0d43d62
DV
7840 } else {
7841 tmp = I915_READ(PCH_DPLL_SEL);
7842 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7843 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7844 else
7845 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7846 }
66e985c0
DV
7847
7848 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7849
7850 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7851 &pipe_config->dpll_hw_state));
c93f54cf
DV
7852
7853 tmp = pipe_config->dpll_hw_state.dpll;
7854 pipe_config->pixel_multiplier =
7855 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7856 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
18442d08
VS
7857
7858 ironlake_pch_clock_get(crtc, pipe_config);
6c49f241
DV
7859 } else {
7860 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
7861 }
7862
1bd1bd80
DV
7863 intel_get_pipe_timings(crtc, pipe_config);
7864
2fa2fe9a
DV
7865 ironlake_get_pfit_config(crtc, pipe_config);
7866
0e8ffe1b
DV
7867 return true;
7868}
7869
be256dc7
PZ
7870static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7871{
7872 struct drm_device *dev = dev_priv->dev;
be256dc7 7873 struct intel_crtc *crtc;
be256dc7 7874
d3fcc808 7875 for_each_intel_crtc(dev, crtc)
e2c719b7 7876 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
be256dc7
PZ
7877 pipe_name(crtc->pipe));
7878
e2c719b7
RC
7879 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7880 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
7881 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
7882 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
7883 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7884 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
be256dc7 7885 "CPU PWM1 enabled\n");
c5107b87 7886 if (IS_HASWELL(dev))
e2c719b7 7887 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
c5107b87 7888 "CPU PWM2 enabled\n");
e2c719b7 7889 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
be256dc7 7890 "PCH PWM1 enabled\n");
e2c719b7 7891 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
be256dc7 7892 "Utility pin enabled\n");
e2c719b7 7893 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
be256dc7 7894
9926ada1
PZ
7895 /*
7896 * In theory we can still leave IRQs enabled, as long as only the HPD
7897 * interrupts remain enabled. We used to check for that, but since it's
7898 * gen-specific and since we only disable LCPLL after we fully disable
7899 * the interrupts, the check below should be enough.
7900 */
e2c719b7 7901 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
be256dc7
PZ
7902}
7903
9ccd5aeb
PZ
7904static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
7905{
7906 struct drm_device *dev = dev_priv->dev;
7907
7908 if (IS_HASWELL(dev))
7909 return I915_READ(D_COMP_HSW);
7910 else
7911 return I915_READ(D_COMP_BDW);
7912}
7913
3c4c9b81
PZ
7914static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7915{
7916 struct drm_device *dev = dev_priv->dev;
7917
7918 if (IS_HASWELL(dev)) {
7919 mutex_lock(&dev_priv->rps.hw_lock);
7920 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7921 val))
f475dadf 7922 DRM_ERROR("Failed to write to D_COMP\n");
3c4c9b81
PZ
7923 mutex_unlock(&dev_priv->rps.hw_lock);
7924 } else {
9ccd5aeb
PZ
7925 I915_WRITE(D_COMP_BDW, val);
7926 POSTING_READ(D_COMP_BDW);
3c4c9b81 7927 }
be256dc7
PZ
7928}
7929
7930/*
7931 * This function implements pieces of two sequences from BSpec:
7932 * - Sequence for display software to disable LCPLL
7933 * - Sequence for display software to allow package C8+
7934 * The steps implemented here are just the steps that actually touch the LCPLL
7935 * register. Callers should take care of disabling all the display engine
7936 * functions, doing the mode unset, fixing interrupts, etc.
7937 */
6ff58d53
PZ
7938static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7939 bool switch_to_fclk, bool allow_power_down)
be256dc7
PZ
7940{
7941 uint32_t val;
7942
7943 assert_can_disable_lcpll(dev_priv);
7944
7945 val = I915_READ(LCPLL_CTL);
7946
7947 if (switch_to_fclk) {
7948 val |= LCPLL_CD_SOURCE_FCLK;
7949 I915_WRITE(LCPLL_CTL, val);
7950
7951 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7952 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7953 DRM_ERROR("Switching to FCLK failed\n");
7954
7955 val = I915_READ(LCPLL_CTL);
7956 }
7957
7958 val |= LCPLL_PLL_DISABLE;
7959 I915_WRITE(LCPLL_CTL, val);
7960 POSTING_READ(LCPLL_CTL);
7961
7962 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7963 DRM_ERROR("LCPLL still locked\n");
7964
9ccd5aeb 7965 val = hsw_read_dcomp(dev_priv);
be256dc7 7966 val |= D_COMP_COMP_DISABLE;
3c4c9b81 7967 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
7968 ndelay(100);
7969
9ccd5aeb
PZ
7970 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
7971 1))
be256dc7
PZ
7972 DRM_ERROR("D_COMP RCOMP still in progress\n");
7973
7974 if (allow_power_down) {
7975 val = I915_READ(LCPLL_CTL);
7976 val |= LCPLL_POWER_DOWN_ALLOW;
7977 I915_WRITE(LCPLL_CTL, val);
7978 POSTING_READ(LCPLL_CTL);
7979 }
7980}
7981
7982/*
7983 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7984 * source.
7985 */
6ff58d53 7986static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
be256dc7
PZ
7987{
7988 uint32_t val;
7989
7990 val = I915_READ(LCPLL_CTL);
7991
7992 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7993 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7994 return;
7995
a8a8bd54
PZ
7996 /*
7997 * Make sure we're not on PC8 state before disabling PC8, otherwise
7998 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
a8a8bd54 7999 */
59bad947 8000 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
215733fa 8001
be256dc7
PZ
8002 if (val & LCPLL_POWER_DOWN_ALLOW) {
8003 val &= ~LCPLL_POWER_DOWN_ALLOW;
8004 I915_WRITE(LCPLL_CTL, val);
35d8f2eb 8005 POSTING_READ(LCPLL_CTL);
be256dc7
PZ
8006 }
8007
9ccd5aeb 8008 val = hsw_read_dcomp(dev_priv);
be256dc7
PZ
8009 val |= D_COMP_COMP_FORCE;
8010 val &= ~D_COMP_COMP_DISABLE;
3c4c9b81 8011 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
8012
8013 val = I915_READ(LCPLL_CTL);
8014 val &= ~LCPLL_PLL_DISABLE;
8015 I915_WRITE(LCPLL_CTL, val);
8016
8017 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
8018 DRM_ERROR("LCPLL not locked yet\n");
8019
8020 if (val & LCPLL_CD_SOURCE_FCLK) {
8021 val = I915_READ(LCPLL_CTL);
8022 val &= ~LCPLL_CD_SOURCE_FCLK;
8023 I915_WRITE(LCPLL_CTL, val);
8024
8025 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
8026 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
8027 DRM_ERROR("Switching back to LCPLL failed\n");
8028 }
215733fa 8029
59bad947 8030 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
be256dc7
PZ
8031}
8032
765dab67
PZ
8033/*
8034 * Package states C8 and deeper are really deep PC states that can only be
8035 * reached when all the devices on the system allow it, so even if the graphics
8036 * device allows PC8+, it doesn't mean the system will actually get to these
8037 * states. Our driver only allows PC8+ when going into runtime PM.
8038 *
8039 * The requirements for PC8+ are that all the outputs are disabled, the power
8040 * well is disabled and most interrupts are disabled, and these are also
8041 * requirements for runtime PM. When these conditions are met, we manually do
8042 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
8043 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
8044 * hang the machine.
8045 *
8046 * When we really reach PC8 or deeper states (not just when we allow it) we lose
8047 * the state of some registers, so when we come back from PC8+ we need to
8048 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
8049 * need to take care of the registers kept by RC6. Notice that this happens even
8050 * if we don't put the device in PCI D3 state (which is what currently happens
8051 * because of the runtime PM support).
8052 *
8053 * For more, read "Display Sequences for Package C8" on the hardware
8054 * documentation.
8055 */
a14cb6fc 8056void hsw_enable_pc8(struct drm_i915_private *dev_priv)
c67a470b 8057{
c67a470b
PZ
8058 struct drm_device *dev = dev_priv->dev;
8059 uint32_t val;
8060
c67a470b
PZ
8061 DRM_DEBUG_KMS("Enabling package C8+\n");
8062
c67a470b
PZ
8063 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8064 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8065 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8066 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8067 }
8068
8069 lpt_disable_clkout_dp(dev);
c67a470b
PZ
8070 hsw_disable_lcpll(dev_priv, true, true);
8071}
8072
a14cb6fc 8073void hsw_disable_pc8(struct drm_i915_private *dev_priv)
c67a470b
PZ
8074{
8075 struct drm_device *dev = dev_priv->dev;
8076 uint32_t val;
8077
c67a470b
PZ
8078 DRM_DEBUG_KMS("Disabling package C8+\n");
8079
8080 hsw_restore_lcpll(dev_priv);
c67a470b
PZ
8081 lpt_init_pch_refclk(dev);
8082
8083 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8084 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8085 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
8086 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8087 }
8088
8089 intel_prepare_ddi(dev);
c67a470b
PZ
8090}
8091
190f68c5
ACO
8092static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
8093 struct intel_crtc_state *crtc_state)
09b4ddf9 8094{
190f68c5 8095 if (!intel_ddi_pll_select(crtc, crtc_state))
6441ab5f 8096 return -EINVAL;
716c2e55 8097
c7653199 8098 crtc->lowfreq_avail = false;
644cef34 8099
c8f7a0db 8100 return 0;
79e53945
JB
8101}
8102
96b7dfb7
S
8103static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
8104 enum port port,
5cec258b 8105 struct intel_crtc_state *pipe_config)
96b7dfb7 8106{
3148ade7 8107 u32 temp, dpll_ctl1;
96b7dfb7
S
8108
8109 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
8110 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
8111
8112 switch (pipe_config->ddi_pll_sel) {
3148ade7
DL
8113 case SKL_DPLL0:
8114 /*
8115 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
8116 * of the shared DPLL framework and thus needs to be read out
8117 * separately
8118 */
8119 dpll_ctl1 = I915_READ(DPLL_CTRL1);
8120 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
8121 break;
96b7dfb7
S
8122 case SKL_DPLL1:
8123 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
8124 break;
8125 case SKL_DPLL2:
8126 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
8127 break;
8128 case SKL_DPLL3:
8129 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
8130 break;
96b7dfb7
S
8131 }
8132}
8133
7d2c8175
DL
8134static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
8135 enum port port,
5cec258b 8136 struct intel_crtc_state *pipe_config)
7d2c8175
DL
8137{
8138 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
8139
8140 switch (pipe_config->ddi_pll_sel) {
8141 case PORT_CLK_SEL_WRPLL1:
8142 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
8143 break;
8144 case PORT_CLK_SEL_WRPLL2:
8145 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
8146 break;
8147 }
8148}
8149
26804afd 8150static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
5cec258b 8151 struct intel_crtc_state *pipe_config)
26804afd
DV
8152{
8153 struct drm_device *dev = crtc->base.dev;
8154 struct drm_i915_private *dev_priv = dev->dev_private;
d452c5b6 8155 struct intel_shared_dpll *pll;
26804afd
DV
8156 enum port port;
8157 uint32_t tmp;
8158
8159 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
8160
8161 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
8162
96b7dfb7
S
8163 if (IS_SKYLAKE(dev))
8164 skylake_get_ddi_pll(dev_priv, port, pipe_config);
8165 else
8166 haswell_get_ddi_pll(dev_priv, port, pipe_config);
9cd86933 8167
d452c5b6
DV
8168 if (pipe_config->shared_dpll >= 0) {
8169 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8170
8171 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8172 &pipe_config->dpll_hw_state));
8173 }
8174
26804afd
DV
8175 /*
8176 * Haswell has only FDI/PCH transcoder A. It is which is connected to
8177 * DDI E. So just check whether this pipe is wired to DDI E and whether
8178 * the PCH transcoder is on.
8179 */
ca370455
DL
8180 if (INTEL_INFO(dev)->gen < 9 &&
8181 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
26804afd
DV
8182 pipe_config->has_pch_encoder = true;
8183
8184 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
8185 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8186 FDI_DP_PORT_WIDTH_SHIFT) + 1;
8187
8188 ironlake_get_fdi_m_n_config(crtc, pipe_config);
8189 }
8190}
8191
0e8ffe1b 8192static bool haswell_get_pipe_config(struct intel_crtc *crtc,
5cec258b 8193 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
8194{
8195 struct drm_device *dev = crtc->base.dev;
8196 struct drm_i915_private *dev_priv = dev->dev_private;
2fa2fe9a 8197 enum intel_display_power_domain pfit_domain;
0e8ffe1b
DV
8198 uint32_t tmp;
8199
f458ebbc 8200 if (!intel_display_power_is_enabled(dev_priv,
b5482bd0
ID
8201 POWER_DOMAIN_PIPE(crtc->pipe)))
8202 return false;
8203
e143a21c 8204 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62
DV
8205 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
8206
eccb140b
DV
8207 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
8208 if (tmp & TRANS_DDI_FUNC_ENABLE) {
8209 enum pipe trans_edp_pipe;
8210 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
8211 default:
8212 WARN(1, "unknown pipe linked to edp transcoder\n");
8213 case TRANS_DDI_EDP_INPUT_A_ONOFF:
8214 case TRANS_DDI_EDP_INPUT_A_ON:
8215 trans_edp_pipe = PIPE_A;
8216 break;
8217 case TRANS_DDI_EDP_INPUT_B_ONOFF:
8218 trans_edp_pipe = PIPE_B;
8219 break;
8220 case TRANS_DDI_EDP_INPUT_C_ONOFF:
8221 trans_edp_pipe = PIPE_C;
8222 break;
8223 }
8224
8225 if (trans_edp_pipe == crtc->pipe)
8226 pipe_config->cpu_transcoder = TRANSCODER_EDP;
8227 }
8228
f458ebbc 8229 if (!intel_display_power_is_enabled(dev_priv,
eccb140b 8230 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
2bfce950
PZ
8231 return false;
8232
eccb140b 8233 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
0e8ffe1b
DV
8234 if (!(tmp & PIPECONF_ENABLE))
8235 return false;
8236
26804afd 8237 haswell_get_ddi_port_state(crtc, pipe_config);
627eb5a3 8238
1bd1bd80
DV
8239 intel_get_pipe_timings(crtc, pipe_config);
8240
2fa2fe9a 8241 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
bd2e244f
JB
8242 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
8243 if (IS_SKYLAKE(dev))
8244 skylake_get_pfit_config(crtc, pipe_config);
8245 else
8246 ironlake_get_pfit_config(crtc, pipe_config);
8247 }
88adfff1 8248
e59150dc
JB
8249 if (IS_HASWELL(dev))
8250 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
8251 (I915_READ(IPS_CTL) & IPS_ENABLE);
42db64ef 8252
ebb69c95
CT
8253 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
8254 pipe_config->pixel_multiplier =
8255 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
8256 } else {
8257 pipe_config->pixel_multiplier = 1;
8258 }
6c49f241 8259
0e8ffe1b
DV
8260 return true;
8261}
8262
560b85bb
CW
8263static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
8264{
8265 struct drm_device *dev = crtc->dev;
8266 struct drm_i915_private *dev_priv = dev->dev_private;
8267 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
dc41c154 8268 uint32_t cntl = 0, size = 0;
560b85bb 8269
dc41c154
VS
8270 if (base) {
8271 unsigned int width = intel_crtc->cursor_width;
8272 unsigned int height = intel_crtc->cursor_height;
8273 unsigned int stride = roundup_pow_of_two(width) * 4;
8274
8275 switch (stride) {
8276 default:
8277 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
8278 width, stride);
8279 stride = 256;
8280 /* fallthrough */
8281 case 256:
8282 case 512:
8283 case 1024:
8284 case 2048:
8285 break;
4b0e333e
CW
8286 }
8287
dc41c154
VS
8288 cntl |= CURSOR_ENABLE |
8289 CURSOR_GAMMA_ENABLE |
8290 CURSOR_FORMAT_ARGB |
8291 CURSOR_STRIDE(stride);
8292
8293 size = (height << 12) | width;
4b0e333e 8294 }
560b85bb 8295
dc41c154
VS
8296 if (intel_crtc->cursor_cntl != 0 &&
8297 (intel_crtc->cursor_base != base ||
8298 intel_crtc->cursor_size != size ||
8299 intel_crtc->cursor_cntl != cntl)) {
8300 /* On these chipsets we can only modify the base/size/stride
8301 * whilst the cursor is disabled.
8302 */
8303 I915_WRITE(_CURACNTR, 0);
4b0e333e 8304 POSTING_READ(_CURACNTR);
dc41c154 8305 intel_crtc->cursor_cntl = 0;
4b0e333e 8306 }
560b85bb 8307
99d1f387 8308 if (intel_crtc->cursor_base != base) {
9db4a9c7 8309 I915_WRITE(_CURABASE, base);
99d1f387
VS
8310 intel_crtc->cursor_base = base;
8311 }
4726e0b0 8312
dc41c154
VS
8313 if (intel_crtc->cursor_size != size) {
8314 I915_WRITE(CURSIZE, size);
8315 intel_crtc->cursor_size = size;
4b0e333e 8316 }
560b85bb 8317
4b0e333e 8318 if (intel_crtc->cursor_cntl != cntl) {
4b0e333e
CW
8319 I915_WRITE(_CURACNTR, cntl);
8320 POSTING_READ(_CURACNTR);
4b0e333e 8321 intel_crtc->cursor_cntl = cntl;
560b85bb 8322 }
560b85bb
CW
8323}
8324
560b85bb 8325static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
65a21cd6
JB
8326{
8327 struct drm_device *dev = crtc->dev;
8328 struct drm_i915_private *dev_priv = dev->dev_private;
8329 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8330 int pipe = intel_crtc->pipe;
4b0e333e
CW
8331 uint32_t cntl;
8332
8333 cntl = 0;
8334 if (base) {
8335 cntl = MCURSOR_GAMMA_ENABLE;
8336 switch (intel_crtc->cursor_width) {
4726e0b0
SK
8337 case 64:
8338 cntl |= CURSOR_MODE_64_ARGB_AX;
8339 break;
8340 case 128:
8341 cntl |= CURSOR_MODE_128_ARGB_AX;
8342 break;
8343 case 256:
8344 cntl |= CURSOR_MODE_256_ARGB_AX;
8345 break;
8346 default:
5f77eeb0 8347 MISSING_CASE(intel_crtc->cursor_width);
4726e0b0 8348 return;
65a21cd6 8349 }
4b0e333e 8350 cntl |= pipe << 28; /* Connect to correct pipe */
47bf17a7
VS
8351
8352 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
8353 cntl |= CURSOR_PIPE_CSC_ENABLE;
4b0e333e 8354 }
65a21cd6 8355
8e7d688b 8356 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
4398ad45
VS
8357 cntl |= CURSOR_ROTATE_180;
8358
4b0e333e
CW
8359 if (intel_crtc->cursor_cntl != cntl) {
8360 I915_WRITE(CURCNTR(pipe), cntl);
8361 POSTING_READ(CURCNTR(pipe));
8362 intel_crtc->cursor_cntl = cntl;
65a21cd6 8363 }
4b0e333e 8364
65a21cd6 8365 /* and commit changes on next vblank */
5efb3e28
VS
8366 I915_WRITE(CURBASE(pipe), base);
8367 POSTING_READ(CURBASE(pipe));
99d1f387
VS
8368
8369 intel_crtc->cursor_base = base;
65a21cd6
JB
8370}
8371
cda4b7d3 8372/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f
CW
8373static void intel_crtc_update_cursor(struct drm_crtc *crtc,
8374 bool on)
cda4b7d3
CW
8375{
8376 struct drm_device *dev = crtc->dev;
8377 struct drm_i915_private *dev_priv = dev->dev_private;
8378 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8379 int pipe = intel_crtc->pipe;
3d7d6510
MR
8380 int x = crtc->cursor_x;
8381 int y = crtc->cursor_y;
d6e4db15 8382 u32 base = 0, pos = 0;
cda4b7d3 8383
d6e4db15 8384 if (on)
cda4b7d3 8385 base = intel_crtc->cursor_addr;
cda4b7d3 8386
6e3c9717 8387 if (x >= intel_crtc->config->pipe_src_w)
d6e4db15
VS
8388 base = 0;
8389
6e3c9717 8390 if (y >= intel_crtc->config->pipe_src_h)
cda4b7d3
CW
8391 base = 0;
8392
8393 if (x < 0) {
efc9064e 8394 if (x + intel_crtc->cursor_width <= 0)
cda4b7d3
CW
8395 base = 0;
8396
8397 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8398 x = -x;
8399 }
8400 pos |= x << CURSOR_X_SHIFT;
8401
8402 if (y < 0) {
efc9064e 8403 if (y + intel_crtc->cursor_height <= 0)
cda4b7d3
CW
8404 base = 0;
8405
8406 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8407 y = -y;
8408 }
8409 pos |= y << CURSOR_Y_SHIFT;
8410
4b0e333e 8411 if (base == 0 && intel_crtc->cursor_base == 0)
cda4b7d3
CW
8412 return;
8413
5efb3e28
VS
8414 I915_WRITE(CURPOS(pipe), pos);
8415
4398ad45
VS
8416 /* ILK+ do this automagically */
8417 if (HAS_GMCH_DISPLAY(dev) &&
8e7d688b 8418 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
4398ad45
VS
8419 base += (intel_crtc->cursor_height *
8420 intel_crtc->cursor_width - 1) * 4;
8421 }
8422
8ac54669 8423 if (IS_845G(dev) || IS_I865G(dev))
5efb3e28
VS
8424 i845_update_cursor(crtc, base);
8425 else
8426 i9xx_update_cursor(crtc, base);
cda4b7d3
CW
8427}
8428
dc41c154
VS
8429static bool cursor_size_ok(struct drm_device *dev,
8430 uint32_t width, uint32_t height)
8431{
8432 if (width == 0 || height == 0)
8433 return false;
8434
8435 /*
8436 * 845g/865g are special in that they are only limited by
8437 * the width of their cursors, the height is arbitrary up to
8438 * the precision of the register. Everything else requires
8439 * square cursors, limited to a few power-of-two sizes.
8440 */
8441 if (IS_845G(dev) || IS_I865G(dev)) {
8442 if ((width & 63) != 0)
8443 return false;
8444
8445 if (width > (IS_845G(dev) ? 64 : 512))
8446 return false;
8447
8448 if (height > 1023)
8449 return false;
8450 } else {
8451 switch (width | height) {
8452 case 256:
8453 case 128:
8454 if (IS_GEN2(dev))
8455 return false;
8456 case 64:
8457 break;
8458 default:
8459 return false;
8460 }
8461 }
8462
8463 return true;
8464}
8465
79e53945 8466static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
7203425a 8467 u16 *blue, uint32_t start, uint32_t size)
79e53945 8468{
7203425a 8469 int end = (start + size > 256) ? 256 : start + size, i;
79e53945 8470 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8471
7203425a 8472 for (i = start; i < end; i++) {
79e53945
JB
8473 intel_crtc->lut_r[i] = red[i] >> 8;
8474 intel_crtc->lut_g[i] = green[i] >> 8;
8475 intel_crtc->lut_b[i] = blue[i] >> 8;
8476 }
8477
8478 intel_crtc_load_lut(crtc);
8479}
8480
79e53945
JB
8481/* VESA 640x480x72Hz mode to set on the pipe */
8482static struct drm_display_mode load_detect_mode = {
8483 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8484 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8485};
8486
a8bb6818
DV
8487struct drm_framebuffer *
8488__intel_framebuffer_create(struct drm_device *dev,
8489 struct drm_mode_fb_cmd2 *mode_cmd,
8490 struct drm_i915_gem_object *obj)
d2dff872
CW
8491{
8492 struct intel_framebuffer *intel_fb;
8493 int ret;
8494
8495 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8496 if (!intel_fb) {
6ccb81f2 8497 drm_gem_object_unreference(&obj->base);
d2dff872
CW
8498 return ERR_PTR(-ENOMEM);
8499 }
8500
8501 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
dd4916c5
DV
8502 if (ret)
8503 goto err;
d2dff872
CW
8504
8505 return &intel_fb->base;
dd4916c5 8506err:
6ccb81f2 8507 drm_gem_object_unreference(&obj->base);
dd4916c5
DV
8508 kfree(intel_fb);
8509
8510 return ERR_PTR(ret);
d2dff872
CW
8511}
8512
b5ea642a 8513static struct drm_framebuffer *
a8bb6818
DV
8514intel_framebuffer_create(struct drm_device *dev,
8515 struct drm_mode_fb_cmd2 *mode_cmd,
8516 struct drm_i915_gem_object *obj)
8517{
8518 struct drm_framebuffer *fb;
8519 int ret;
8520
8521 ret = i915_mutex_lock_interruptible(dev);
8522 if (ret)
8523 return ERR_PTR(ret);
8524 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8525 mutex_unlock(&dev->struct_mutex);
8526
8527 return fb;
8528}
8529
d2dff872
CW
8530static u32
8531intel_framebuffer_pitch_for_width(int width, int bpp)
8532{
8533 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8534 return ALIGN(pitch, 64);
8535}
8536
8537static u32
8538intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8539{
8540 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
1267a26b 8541 return PAGE_ALIGN(pitch * mode->vdisplay);
d2dff872
CW
8542}
8543
8544static struct drm_framebuffer *
8545intel_framebuffer_create_for_mode(struct drm_device *dev,
8546 struct drm_display_mode *mode,
8547 int depth, int bpp)
8548{
8549 struct drm_i915_gem_object *obj;
0fed39bd 8550 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872
CW
8551
8552 obj = i915_gem_alloc_object(dev,
8553 intel_framebuffer_size_for_mode(mode, bpp));
8554 if (obj == NULL)
8555 return ERR_PTR(-ENOMEM);
8556
8557 mode_cmd.width = mode->hdisplay;
8558 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
8559 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8560 bpp);
5ca0c34a 8561 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872
CW
8562
8563 return intel_framebuffer_create(dev, &mode_cmd, obj);
8564}
8565
8566static struct drm_framebuffer *
8567mode_fits_in_fbdev(struct drm_device *dev,
8568 struct drm_display_mode *mode)
8569{
4520f53a 8570#ifdef CONFIG_DRM_I915_FBDEV
d2dff872
CW
8571 struct drm_i915_private *dev_priv = dev->dev_private;
8572 struct drm_i915_gem_object *obj;
8573 struct drm_framebuffer *fb;
8574
4c0e5528 8575 if (!dev_priv->fbdev)
d2dff872
CW
8576 return NULL;
8577
4c0e5528 8578 if (!dev_priv->fbdev->fb)
d2dff872
CW
8579 return NULL;
8580
4c0e5528
DV
8581 obj = dev_priv->fbdev->fb->obj;
8582 BUG_ON(!obj);
8583
8bcd4553 8584 fb = &dev_priv->fbdev->fb->base;
01f2c773
VS
8585 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8586 fb->bits_per_pixel))
d2dff872
CW
8587 return NULL;
8588
01f2c773 8589 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
8590 return NULL;
8591
8592 return fb;
4520f53a
DV
8593#else
8594 return NULL;
8595#endif
d2dff872
CW
8596}
8597
d2434ab7 8598bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 8599 struct drm_display_mode *mode,
51fd371b
RC
8600 struct intel_load_detect_pipe *old,
8601 struct drm_modeset_acquire_ctx *ctx)
79e53945
JB
8602{
8603 struct intel_crtc *intel_crtc;
d2434ab7
DV
8604 struct intel_encoder *intel_encoder =
8605 intel_attached_encoder(connector);
79e53945 8606 struct drm_crtc *possible_crtc;
4ef69c7a 8607 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
8608 struct drm_crtc *crtc = NULL;
8609 struct drm_device *dev = encoder->dev;
94352cf9 8610 struct drm_framebuffer *fb;
51fd371b
RC
8611 struct drm_mode_config *config = &dev->mode_config;
8612 int ret, i = -1;
79e53945 8613
d2dff872 8614 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 8615 connector->base.id, connector->name,
8e329a03 8616 encoder->base.id, encoder->name);
d2dff872 8617
51fd371b
RC
8618retry:
8619 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8620 if (ret)
8621 goto fail_unlock;
6e9f798d 8622
79e53945
JB
8623 /*
8624 * Algorithm gets a little messy:
7a5e4805 8625 *
79e53945
JB
8626 * - if the connector already has an assigned crtc, use it (but make
8627 * sure it's on first)
7a5e4805 8628 *
79e53945
JB
8629 * - try to find the first unused crtc that can drive this connector,
8630 * and use that if we find one
79e53945
JB
8631 */
8632
8633 /* See if we already have a CRTC for this connector */
8634 if (encoder->crtc) {
8635 crtc = encoder->crtc;
8261b191 8636
51fd371b 8637 ret = drm_modeset_lock(&crtc->mutex, ctx);
4d02e2de
DV
8638 if (ret)
8639 goto fail_unlock;
8640 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
51fd371b
RC
8641 if (ret)
8642 goto fail_unlock;
7b24056b 8643
24218aac 8644 old->dpms_mode = connector->dpms;
8261b191
CW
8645 old->load_detect_temp = false;
8646
8647 /* Make sure the crtc and connector are running */
24218aac
DV
8648 if (connector->dpms != DRM_MODE_DPMS_ON)
8649 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
8261b191 8650
7173188d 8651 return true;
79e53945
JB
8652 }
8653
8654 /* Find an unused one (if possible) */
70e1e0ec 8655 for_each_crtc(dev, possible_crtc) {
79e53945
JB
8656 i++;
8657 if (!(encoder->possible_crtcs & (1 << i)))
8658 continue;
a459249c
VS
8659 if (possible_crtc->enabled)
8660 continue;
8661 /* This can occur when applying the pipe A quirk on resume. */
8662 if (to_intel_crtc(possible_crtc)->new_enabled)
8663 continue;
8664
8665 crtc = possible_crtc;
8666 break;
79e53945
JB
8667 }
8668
8669 /*
8670 * If we didn't find an unused CRTC, don't use any.
8671 */
8672 if (!crtc) {
7173188d 8673 DRM_DEBUG_KMS("no pipe available for load-detect\n");
51fd371b 8674 goto fail_unlock;
79e53945
JB
8675 }
8676
51fd371b
RC
8677 ret = drm_modeset_lock(&crtc->mutex, ctx);
8678 if (ret)
4d02e2de
DV
8679 goto fail_unlock;
8680 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8681 if (ret)
51fd371b 8682 goto fail_unlock;
fc303101
DV
8683 intel_encoder->new_crtc = to_intel_crtc(crtc);
8684 to_intel_connector(connector)->new_encoder = intel_encoder;
79e53945
JB
8685
8686 intel_crtc = to_intel_crtc(crtc);
412b61d8 8687 intel_crtc->new_enabled = true;
6e3c9717 8688 intel_crtc->new_config = intel_crtc->config;
24218aac 8689 old->dpms_mode = connector->dpms;
8261b191 8690 old->load_detect_temp = true;
d2dff872 8691 old->release_fb = NULL;
79e53945 8692
6492711d
CW
8693 if (!mode)
8694 mode = &load_detect_mode;
79e53945 8695
d2dff872
CW
8696 /* We need a framebuffer large enough to accommodate all accesses
8697 * that the plane may generate whilst we perform load detection.
8698 * We can not rely on the fbcon either being present (we get called
8699 * during its initialisation to detect all boot displays, or it may
8700 * not even exist) or that it is large enough to satisfy the
8701 * requested mode.
8702 */
94352cf9
DV
8703 fb = mode_fits_in_fbdev(dev, mode);
8704 if (fb == NULL) {
d2dff872 8705 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9
DV
8706 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8707 old->release_fb = fb;
d2dff872
CW
8708 } else
8709 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 8710 if (IS_ERR(fb)) {
d2dff872 8711 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
412b61d8 8712 goto fail;
79e53945 8713 }
79e53945 8714
c0c36b94 8715 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
6492711d 8716 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
d2dff872
CW
8717 if (old->release_fb)
8718 old->release_fb->funcs->destroy(old->release_fb);
412b61d8 8719 goto fail;
79e53945 8720 }
7173188d 8721
79e53945 8722 /* let the connector get through one full cycle before testing */
9d0498a2 8723 intel_wait_for_vblank(dev, intel_crtc->pipe);
7173188d 8724 return true;
412b61d8
VS
8725
8726 fail:
8727 intel_crtc->new_enabled = crtc->enabled;
8728 if (intel_crtc->new_enabled)
6e3c9717 8729 intel_crtc->new_config = intel_crtc->config;
412b61d8
VS
8730 else
8731 intel_crtc->new_config = NULL;
51fd371b
RC
8732fail_unlock:
8733 if (ret == -EDEADLK) {
8734 drm_modeset_backoff(ctx);
8735 goto retry;
8736 }
8737
412b61d8 8738 return false;
79e53945
JB
8739}
8740
d2434ab7 8741void intel_release_load_detect_pipe(struct drm_connector *connector,
208bf9fd 8742 struct intel_load_detect_pipe *old)
79e53945 8743{
d2434ab7
DV
8744 struct intel_encoder *intel_encoder =
8745 intel_attached_encoder(connector);
4ef69c7a 8746 struct drm_encoder *encoder = &intel_encoder->base;
7b24056b 8747 struct drm_crtc *crtc = encoder->crtc;
412b61d8 8748 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8749
d2dff872 8750 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 8751 connector->base.id, connector->name,
8e329a03 8752 encoder->base.id, encoder->name);
d2dff872 8753
8261b191 8754 if (old->load_detect_temp) {
fc303101
DV
8755 to_intel_connector(connector)->new_encoder = NULL;
8756 intel_encoder->new_crtc = NULL;
412b61d8
VS
8757 intel_crtc->new_enabled = false;
8758 intel_crtc->new_config = NULL;
fc303101 8759 intel_set_mode(crtc, NULL, 0, 0, NULL);
d2dff872 8760
36206361
DV
8761 if (old->release_fb) {
8762 drm_framebuffer_unregister_private(old->release_fb);
8763 drm_framebuffer_unreference(old->release_fb);
8764 }
d2dff872 8765
0622a53c 8766 return;
79e53945
JB
8767 }
8768
c751ce4f 8769 /* Switch crtc and encoder back off if necessary */
24218aac
DV
8770 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8771 connector->funcs->dpms(connector, old->dpms_mode);
79e53945
JB
8772}
8773
da4a1efa 8774static int i9xx_pll_refclk(struct drm_device *dev,
5cec258b 8775 const struct intel_crtc_state *pipe_config)
da4a1efa
VS
8776{
8777 struct drm_i915_private *dev_priv = dev->dev_private;
8778 u32 dpll = pipe_config->dpll_hw_state.dpll;
8779
8780 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
e91e941b 8781 return dev_priv->vbt.lvds_ssc_freq;
da4a1efa
VS
8782 else if (HAS_PCH_SPLIT(dev))
8783 return 120000;
8784 else if (!IS_GEN2(dev))
8785 return 96000;
8786 else
8787 return 48000;
8788}
8789
79e53945 8790/* Returns the clock of the currently programmed mode of the given pipe. */
f1f644dc 8791static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8792 struct intel_crtc_state *pipe_config)
79e53945 8793{
f1f644dc 8794 struct drm_device *dev = crtc->base.dev;
79e53945 8795 struct drm_i915_private *dev_priv = dev->dev_private;
f1f644dc 8796 int pipe = pipe_config->cpu_transcoder;
293623f7 8797 u32 dpll = pipe_config->dpll_hw_state.dpll;
79e53945
JB
8798 u32 fp;
8799 intel_clock_t clock;
da4a1efa 8800 int refclk = i9xx_pll_refclk(dev, pipe_config);
79e53945
JB
8801
8802 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
293623f7 8803 fp = pipe_config->dpll_hw_state.fp0;
79e53945 8804 else
293623f7 8805 fp = pipe_config->dpll_hw_state.fp1;
79e53945
JB
8806
8807 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
8808 if (IS_PINEVIEW(dev)) {
8809 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8810 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
8811 } else {
8812 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8813 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8814 }
8815
a6c45cf0 8816 if (!IS_GEN2(dev)) {
f2b115e6
AJ
8817 if (IS_PINEVIEW(dev))
8818 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8819 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
8820 else
8821 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
8822 DPLL_FPA01_P1_POST_DIV_SHIFT);
8823
8824 switch (dpll & DPLL_MODE_MASK) {
8825 case DPLLB_MODE_DAC_SERIAL:
8826 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8827 5 : 10;
8828 break;
8829 case DPLLB_MODE_LVDS:
8830 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8831 7 : 14;
8832 break;
8833 default:
28c97730 8834 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945 8835 "mode\n", (int)(dpll & DPLL_MODE_MASK));
f1f644dc 8836 return;
79e53945
JB
8837 }
8838
ac58c3f0 8839 if (IS_PINEVIEW(dev))
da4a1efa 8840 pineview_clock(refclk, &clock);
ac58c3f0 8841 else
da4a1efa 8842 i9xx_clock(refclk, &clock);
79e53945 8843 } else {
0fb58223 8844 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
b1c560d1 8845 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
79e53945
JB
8846
8847 if (is_lvds) {
8848 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8849 DPLL_FPA01_P1_POST_DIV_SHIFT);
b1c560d1
VS
8850
8851 if (lvds & LVDS_CLKB_POWER_UP)
8852 clock.p2 = 7;
8853 else
8854 clock.p2 = 14;
79e53945
JB
8855 } else {
8856 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8857 clock.p1 = 2;
8858 else {
8859 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8860 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8861 }
8862 if (dpll & PLL_P2_DIVIDE_BY_4)
8863 clock.p2 = 4;
8864 else
8865 clock.p2 = 2;
79e53945 8866 }
da4a1efa
VS
8867
8868 i9xx_clock(refclk, &clock);
79e53945
JB
8869 }
8870
18442d08
VS
8871 /*
8872 * This value includes pixel_multiplier. We will use
241bfc38 8873 * port_clock to compute adjusted_mode.crtc_clock in the
18442d08
VS
8874 * encoder's get_config() function.
8875 */
8876 pipe_config->port_clock = clock.dot;
f1f644dc
JB
8877}
8878
6878da05
VS
8879int intel_dotclock_calculate(int link_freq,
8880 const struct intel_link_m_n *m_n)
f1f644dc 8881{
f1f644dc
JB
8882 /*
8883 * The calculation for the data clock is:
1041a02f 8884 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
f1f644dc 8885 * But we want to avoid losing precison if possible, so:
1041a02f 8886 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
f1f644dc
JB
8887 *
8888 * and the link clock is simpler:
1041a02f 8889 * link_clock = (m * link_clock) / n
f1f644dc
JB
8890 */
8891
6878da05
VS
8892 if (!m_n->link_n)
8893 return 0;
f1f644dc 8894
6878da05
VS
8895 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8896}
f1f644dc 8897
18442d08 8898static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 8899 struct intel_crtc_state *pipe_config)
6878da05
VS
8900{
8901 struct drm_device *dev = crtc->base.dev;
79e53945 8902
18442d08
VS
8903 /* read out port_clock from the DPLL */
8904 i9xx_crtc_clock_get(crtc, pipe_config);
f1f644dc 8905
f1f644dc 8906 /*
18442d08 8907 * This value does not include pixel_multiplier.
241bfc38 8908 * We will check that port_clock and adjusted_mode.crtc_clock
18442d08
VS
8909 * agree once we know their relationship in the encoder's
8910 * get_config() function.
79e53945 8911 */
2d112de7 8912 pipe_config->base.adjusted_mode.crtc_clock =
18442d08
VS
8913 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8914 &pipe_config->fdi_m_n);
79e53945
JB
8915}
8916
8917/** Returns the currently programmed mode of the given pipe. */
8918struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8919 struct drm_crtc *crtc)
8920{
548f245b 8921 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 8922 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 8923 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
79e53945 8924 struct drm_display_mode *mode;
5cec258b 8925 struct intel_crtc_state pipe_config;
fe2b8f9d
PZ
8926 int htot = I915_READ(HTOTAL(cpu_transcoder));
8927 int hsync = I915_READ(HSYNC(cpu_transcoder));
8928 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8929 int vsync = I915_READ(VSYNC(cpu_transcoder));
293623f7 8930 enum pipe pipe = intel_crtc->pipe;
79e53945
JB
8931
8932 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8933 if (!mode)
8934 return NULL;
8935
f1f644dc
JB
8936 /*
8937 * Construct a pipe_config sufficient for getting the clock info
8938 * back out of crtc_clock_get.
8939 *
8940 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8941 * to use a real value here instead.
8942 */
293623f7 8943 pipe_config.cpu_transcoder = (enum transcoder) pipe;
f1f644dc 8944 pipe_config.pixel_multiplier = 1;
293623f7
VS
8945 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8946 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8947 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
f1f644dc
JB
8948 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8949
773ae034 8950 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
79e53945
JB
8951 mode->hdisplay = (htot & 0xffff) + 1;
8952 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8953 mode->hsync_start = (hsync & 0xffff) + 1;
8954 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8955 mode->vdisplay = (vtot & 0xffff) + 1;
8956 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8957 mode->vsync_start = (vsync & 0xffff) + 1;
8958 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8959
8960 drm_mode_set_name(mode);
79e53945
JB
8961
8962 return mode;
8963}
8964
652c393a
JB
8965static void intel_decrease_pllclock(struct drm_crtc *crtc)
8966{
8967 struct drm_device *dev = crtc->dev;
fbee40df 8968 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 8969 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
652c393a 8970
baff296c 8971 if (!HAS_GMCH_DISPLAY(dev))
652c393a
JB
8972 return;
8973
8974 if (!dev_priv->lvds_downclock_avail)
8975 return;
8976
8977 /*
8978 * Since this is called by a timer, we should never get here in
8979 * the manual case.
8980 */
8981 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
dc257cf1
DV
8982 int pipe = intel_crtc->pipe;
8983 int dpll_reg = DPLL(pipe);
8984 int dpll;
f6e5b160 8985
44d98a61 8986 DRM_DEBUG_DRIVER("downclocking LVDS\n");
652c393a 8987
8ac5a6d5 8988 assert_panel_unlocked(dev_priv, pipe);
652c393a 8989
dc257cf1 8990 dpll = I915_READ(dpll_reg);
652c393a
JB
8991 dpll |= DISPLAY_RATE_SELECT_FPA1;
8992 I915_WRITE(dpll_reg, dpll);
9d0498a2 8993 intel_wait_for_vblank(dev, pipe);
652c393a
JB
8994 dpll = I915_READ(dpll_reg);
8995 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
44d98a61 8996 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
652c393a
JB
8997 }
8998
8999}
9000
f047e395
CW
9001void intel_mark_busy(struct drm_device *dev)
9002{
c67a470b
PZ
9003 struct drm_i915_private *dev_priv = dev->dev_private;
9004
f62a0076
CW
9005 if (dev_priv->mm.busy)
9006 return;
9007
43694d69 9008 intel_runtime_pm_get(dev_priv);
c67a470b 9009 i915_update_gfx_val(dev_priv);
f62a0076 9010 dev_priv->mm.busy = true;
f047e395
CW
9011}
9012
9013void intel_mark_idle(struct drm_device *dev)
652c393a 9014{
c67a470b 9015 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 9016 struct drm_crtc *crtc;
652c393a 9017
f62a0076
CW
9018 if (!dev_priv->mm.busy)
9019 return;
9020
9021 dev_priv->mm.busy = false;
9022
d330a953 9023 if (!i915.powersave)
bb4cdd53 9024 goto out;
652c393a 9025
70e1e0ec 9026 for_each_crtc(dev, crtc) {
f4510a27 9027 if (!crtc->primary->fb)
652c393a
JB
9028 continue;
9029
725a5b54 9030 intel_decrease_pllclock(crtc);
652c393a 9031 }
b29c19b6 9032
3d13ef2e 9033 if (INTEL_INFO(dev)->gen >= 6)
b29c19b6 9034 gen6_rps_idle(dev->dev_private);
bb4cdd53
PZ
9035
9036out:
43694d69 9037 intel_runtime_pm_put(dev_priv);
652c393a
JB
9038}
9039
f5de6e07
ACO
9040static void intel_crtc_set_state(struct intel_crtc *crtc,
9041 struct intel_crtc_state *crtc_state)
9042{
9043 kfree(crtc->config);
9044 crtc->config = crtc_state;
16f3f658 9045 crtc->base.state = &crtc_state->base;
f5de6e07
ACO
9046}
9047
79e53945
JB
9048static void intel_crtc_destroy(struct drm_crtc *crtc)
9049{
9050 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a
DV
9051 struct drm_device *dev = crtc->dev;
9052 struct intel_unpin_work *work;
67e77c5a 9053
5e2d7afc 9054 spin_lock_irq(&dev->event_lock);
67e77c5a
DV
9055 work = intel_crtc->unpin_work;
9056 intel_crtc->unpin_work = NULL;
5e2d7afc 9057 spin_unlock_irq(&dev->event_lock);
67e77c5a
DV
9058
9059 if (work) {
9060 cancel_work_sync(&work->work);
9061 kfree(work);
9062 }
79e53945 9063
f5de6e07 9064 intel_crtc_set_state(intel_crtc, NULL);
79e53945 9065 drm_crtc_cleanup(crtc);
67e77c5a 9066
79e53945
JB
9067 kfree(intel_crtc);
9068}
9069
6b95a207
KH
9070static void intel_unpin_work_fn(struct work_struct *__work)
9071{
9072 struct intel_unpin_work *work =
9073 container_of(__work, struct intel_unpin_work, work);
b4a98e57 9074 struct drm_device *dev = work->crtc->dev;
f99d7069 9075 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
6b95a207 9076
b4a98e57 9077 mutex_lock(&dev->struct_mutex);
ab8d6675 9078 intel_unpin_fb_obj(intel_fb_obj(work->old_fb));
05394f39 9079 drm_gem_object_unreference(&work->pending_flip_obj->base);
ab8d6675 9080 drm_framebuffer_unreference(work->old_fb);
d9e86c0e 9081
7ff0ebcc 9082 intel_fbc_update(dev);
f06cc1b9
JH
9083
9084 if (work->flip_queued_req)
146d84f0 9085 i915_gem_request_assign(&work->flip_queued_req, NULL);
b4a98e57
CW
9086 mutex_unlock(&dev->struct_mutex);
9087
f99d7069
DV
9088 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
9089
b4a98e57
CW
9090 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
9091 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
9092
6b95a207
KH
9093 kfree(work);
9094}
9095
1afe3e9d 9096static void do_intel_finish_page_flip(struct drm_device *dev,
49b14a5c 9097 struct drm_crtc *crtc)
6b95a207 9098{
6b95a207
KH
9099 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9100 struct intel_unpin_work *work;
6b95a207
KH
9101 unsigned long flags;
9102
9103 /* Ignore early vblank irqs */
9104 if (intel_crtc == NULL)
9105 return;
9106
f326038a
DV
9107 /*
9108 * This is called both by irq handlers and the reset code (to complete
9109 * lost pageflips) so needs the full irqsave spinlocks.
9110 */
6b95a207
KH
9111 spin_lock_irqsave(&dev->event_lock, flags);
9112 work = intel_crtc->unpin_work;
e7d841ca
CW
9113
9114 /* Ensure we don't miss a work->pending update ... */
9115 smp_rmb();
9116
9117 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
6b95a207
KH
9118 spin_unlock_irqrestore(&dev->event_lock, flags);
9119 return;
9120 }
9121
d6bbafa1 9122 page_flip_completed(intel_crtc);
0af7e4df 9123
6b95a207 9124 spin_unlock_irqrestore(&dev->event_lock, flags);
6b95a207
KH
9125}
9126
1afe3e9d
JB
9127void intel_finish_page_flip(struct drm_device *dev, int pipe)
9128{
fbee40df 9129 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
9130 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9131
49b14a5c 9132 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
9133}
9134
9135void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
9136{
fbee40df 9137 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
9138 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
9139
49b14a5c 9140 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
9141}
9142
75f7f3ec
VS
9143/* Is 'a' after or equal to 'b'? */
9144static bool g4x_flip_count_after_eq(u32 a, u32 b)
9145{
9146 return !((a - b) & 0x80000000);
9147}
9148
9149static bool page_flip_finished(struct intel_crtc *crtc)
9150{
9151 struct drm_device *dev = crtc->base.dev;
9152 struct drm_i915_private *dev_priv = dev->dev_private;
9153
bdfa7542
VS
9154 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
9155 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
9156 return true;
9157
75f7f3ec
VS
9158 /*
9159 * The relevant registers doen't exist on pre-ctg.
9160 * As the flip done interrupt doesn't trigger for mmio
9161 * flips on gmch platforms, a flip count check isn't
9162 * really needed there. But since ctg has the registers,
9163 * include it in the check anyway.
9164 */
9165 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
9166 return true;
9167
9168 /*
9169 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
9170 * used the same base address. In that case the mmio flip might
9171 * have completed, but the CS hasn't even executed the flip yet.
9172 *
9173 * A flip count check isn't enough as the CS might have updated
9174 * the base address just after start of vblank, but before we
9175 * managed to process the interrupt. This means we'd complete the
9176 * CS flip too soon.
9177 *
9178 * Combining both checks should get us a good enough result. It may
9179 * still happen that the CS flip has been executed, but has not
9180 * yet actually completed. But in case the base address is the same
9181 * anyway, we don't really care.
9182 */
9183 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
9184 crtc->unpin_work->gtt_offset &&
9185 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
9186 crtc->unpin_work->flip_count);
9187}
9188
6b95a207
KH
9189void intel_prepare_page_flip(struct drm_device *dev, int plane)
9190{
fbee40df 9191 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
9192 struct intel_crtc *intel_crtc =
9193 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
9194 unsigned long flags;
9195
f326038a
DV
9196
9197 /*
9198 * This is called both by irq handlers and the reset code (to complete
9199 * lost pageflips) so needs the full irqsave spinlocks.
9200 *
9201 * NB: An MMIO update of the plane base pointer will also
e7d841ca
CW
9202 * generate a page-flip completion irq, i.e. every modeset
9203 * is also accompanied by a spurious intel_prepare_page_flip().
9204 */
6b95a207 9205 spin_lock_irqsave(&dev->event_lock, flags);
75f7f3ec 9206 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
e7d841ca 9207 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
6b95a207
KH
9208 spin_unlock_irqrestore(&dev->event_lock, flags);
9209}
9210
eba905b2 9211static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
e7d841ca
CW
9212{
9213 /* Ensure that the work item is consistent when activating it ... */
9214 smp_wmb();
9215 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
9216 /* and that it is marked active as soon as the irq could fire. */
9217 smp_wmb();
9218}
9219
8c9f3aaf
JB
9220static int intel_gen2_queue_flip(struct drm_device *dev,
9221 struct drm_crtc *crtc,
9222 struct drm_framebuffer *fb,
ed8d1975 9223 struct drm_i915_gem_object *obj,
a4872ba6 9224 struct intel_engine_cs *ring,
ed8d1975 9225 uint32_t flags)
8c9f3aaf 9226{
8c9f3aaf 9227 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
9228 u32 flip_mask;
9229 int ret;
9230
6d90c952 9231 ret = intel_ring_begin(ring, 6);
8c9f3aaf 9232 if (ret)
4fa62c89 9233 return ret;
8c9f3aaf
JB
9234
9235 /* Can't queue multiple flips, so wait for the previous
9236 * one to finish before executing the next.
9237 */
9238 if (intel_crtc->plane)
9239 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9240 else
9241 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
9242 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9243 intel_ring_emit(ring, MI_NOOP);
9244 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9245 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9246 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 9247 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
6d90c952 9248 intel_ring_emit(ring, 0); /* aux display base address, unused */
e7d841ca
CW
9249
9250 intel_mark_page_flip_active(intel_crtc);
09246732 9251 __intel_ring_advance(ring);
83d4092b 9252 return 0;
8c9f3aaf
JB
9253}
9254
9255static int intel_gen3_queue_flip(struct drm_device *dev,
9256 struct drm_crtc *crtc,
9257 struct drm_framebuffer *fb,
ed8d1975 9258 struct drm_i915_gem_object *obj,
a4872ba6 9259 struct intel_engine_cs *ring,
ed8d1975 9260 uint32_t flags)
8c9f3aaf 9261{
8c9f3aaf 9262 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
9263 u32 flip_mask;
9264 int ret;
9265
6d90c952 9266 ret = intel_ring_begin(ring, 6);
8c9f3aaf 9267 if (ret)
4fa62c89 9268 return ret;
8c9f3aaf
JB
9269
9270 if (intel_crtc->plane)
9271 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9272 else
9273 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
9274 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9275 intel_ring_emit(ring, MI_NOOP);
9276 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9277 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9278 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 9279 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
6d90c952
DV
9280 intel_ring_emit(ring, MI_NOOP);
9281
e7d841ca 9282 intel_mark_page_flip_active(intel_crtc);
09246732 9283 __intel_ring_advance(ring);
83d4092b 9284 return 0;
8c9f3aaf
JB
9285}
9286
9287static int intel_gen4_queue_flip(struct drm_device *dev,
9288 struct drm_crtc *crtc,
9289 struct drm_framebuffer *fb,
ed8d1975 9290 struct drm_i915_gem_object *obj,
a4872ba6 9291 struct intel_engine_cs *ring,
ed8d1975 9292 uint32_t flags)
8c9f3aaf
JB
9293{
9294 struct drm_i915_private *dev_priv = dev->dev_private;
9295 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9296 uint32_t pf, pipesrc;
9297 int ret;
9298
6d90c952 9299 ret = intel_ring_begin(ring, 4);
8c9f3aaf 9300 if (ret)
4fa62c89 9301 return ret;
8c9f3aaf
JB
9302
9303 /* i965+ uses the linear or tiled offsets from the
9304 * Display Registers (which do not change across a page-flip)
9305 * so we need only reprogram the base address.
9306 */
6d90c952
DV
9307 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9308 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9309 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 9310 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
c2c75131 9311 obj->tiling_mode);
8c9f3aaf
JB
9312
9313 /* XXX Enabling the panel-fitter across page-flip is so far
9314 * untested on non-native modes, so ignore it for now.
9315 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9316 */
9317 pf = 0;
9318 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 9319 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
9320
9321 intel_mark_page_flip_active(intel_crtc);
09246732 9322 __intel_ring_advance(ring);
83d4092b 9323 return 0;
8c9f3aaf
JB
9324}
9325
9326static int intel_gen6_queue_flip(struct drm_device *dev,
9327 struct drm_crtc *crtc,
9328 struct drm_framebuffer *fb,
ed8d1975 9329 struct drm_i915_gem_object *obj,
a4872ba6 9330 struct intel_engine_cs *ring,
ed8d1975 9331 uint32_t flags)
8c9f3aaf
JB
9332{
9333 struct drm_i915_private *dev_priv = dev->dev_private;
9334 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9335 uint32_t pf, pipesrc;
9336 int ret;
9337
6d90c952 9338 ret = intel_ring_begin(ring, 4);
8c9f3aaf 9339 if (ret)
4fa62c89 9340 return ret;
8c9f3aaf 9341
6d90c952
DV
9342 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9343 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9344 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
75f7f3ec 9345 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
8c9f3aaf 9346
dc257cf1
DV
9347 /* Contrary to the suggestions in the documentation,
9348 * "Enable Panel Fitter" does not seem to be required when page
9349 * flipping with a non-native mode, and worse causes a normal
9350 * modeset to fail.
9351 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9352 */
9353 pf = 0;
8c9f3aaf 9354 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 9355 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
9356
9357 intel_mark_page_flip_active(intel_crtc);
09246732 9358 __intel_ring_advance(ring);
83d4092b 9359 return 0;
8c9f3aaf
JB
9360}
9361
7c9017e5
JB
9362static int intel_gen7_queue_flip(struct drm_device *dev,
9363 struct drm_crtc *crtc,
9364 struct drm_framebuffer *fb,
ed8d1975 9365 struct drm_i915_gem_object *obj,
a4872ba6 9366 struct intel_engine_cs *ring,
ed8d1975 9367 uint32_t flags)
7c9017e5 9368{
7c9017e5 9369 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cb05d8de 9370 uint32_t plane_bit = 0;
ffe74d75
CW
9371 int len, ret;
9372
eba905b2 9373 switch (intel_crtc->plane) {
cb05d8de
DV
9374 case PLANE_A:
9375 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9376 break;
9377 case PLANE_B:
9378 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9379 break;
9380 case PLANE_C:
9381 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9382 break;
9383 default:
9384 WARN_ONCE(1, "unknown plane in flip command\n");
4fa62c89 9385 return -ENODEV;
cb05d8de
DV
9386 }
9387
ffe74d75 9388 len = 4;
f476828a 9389 if (ring->id == RCS) {
ffe74d75 9390 len += 6;
f476828a
DL
9391 /*
9392 * On Gen 8, SRM is now taking an extra dword to accommodate
9393 * 48bits addresses, and we need a NOOP for the batch size to
9394 * stay even.
9395 */
9396 if (IS_GEN8(dev))
9397 len += 2;
9398 }
ffe74d75 9399
f66fab8e
VS
9400 /*
9401 * BSpec MI_DISPLAY_FLIP for IVB:
9402 * "The full packet must be contained within the same cache line."
9403 *
9404 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9405 * cacheline, if we ever start emitting more commands before
9406 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9407 * then do the cacheline alignment, and finally emit the
9408 * MI_DISPLAY_FLIP.
9409 */
9410 ret = intel_ring_cacheline_align(ring);
9411 if (ret)
4fa62c89 9412 return ret;
f66fab8e 9413
ffe74d75 9414 ret = intel_ring_begin(ring, len);
7c9017e5 9415 if (ret)
4fa62c89 9416 return ret;
7c9017e5 9417
ffe74d75
CW
9418 /* Unmask the flip-done completion message. Note that the bspec says that
9419 * we should do this for both the BCS and RCS, and that we must not unmask
9420 * more than one flip event at any time (or ensure that one flip message
9421 * can be sent by waiting for flip-done prior to queueing new flips).
9422 * Experimentation says that BCS works despite DERRMR masking all
9423 * flip-done completion events and that unmasking all planes at once
9424 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9425 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9426 */
9427 if (ring->id == RCS) {
9428 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9429 intel_ring_emit(ring, DERRMR);
9430 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9431 DERRMR_PIPEB_PRI_FLIP_DONE |
9432 DERRMR_PIPEC_PRI_FLIP_DONE));
f476828a
DL
9433 if (IS_GEN8(dev))
9434 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9435 MI_SRM_LRM_GLOBAL_GTT);
9436 else
9437 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9438 MI_SRM_LRM_GLOBAL_GTT);
ffe74d75
CW
9439 intel_ring_emit(ring, DERRMR);
9440 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
f476828a
DL
9441 if (IS_GEN8(dev)) {
9442 intel_ring_emit(ring, 0);
9443 intel_ring_emit(ring, MI_NOOP);
9444 }
ffe74d75
CW
9445 }
9446
cb05d8de 9447 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
01f2c773 9448 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
75f7f3ec 9449 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
7c9017e5 9450 intel_ring_emit(ring, (MI_NOOP));
e7d841ca
CW
9451
9452 intel_mark_page_flip_active(intel_crtc);
09246732 9453 __intel_ring_advance(ring);
83d4092b 9454 return 0;
7c9017e5
JB
9455}
9456
84c33a64
SG
9457static bool use_mmio_flip(struct intel_engine_cs *ring,
9458 struct drm_i915_gem_object *obj)
9459{
9460 /*
9461 * This is not being used for older platforms, because
9462 * non-availability of flip done interrupt forces us to use
9463 * CS flips. Older platforms derive flip done using some clever
9464 * tricks involving the flip_pending status bits and vblank irqs.
9465 * So using MMIO flips there would disrupt this mechanism.
9466 */
9467
8e09bf83
CW
9468 if (ring == NULL)
9469 return true;
9470
84c33a64
SG
9471 if (INTEL_INFO(ring->dev)->gen < 5)
9472 return false;
9473
9474 if (i915.use_mmio_flip < 0)
9475 return false;
9476 else if (i915.use_mmio_flip > 0)
9477 return true;
14bf993e
OM
9478 else if (i915.enable_execlists)
9479 return true;
84c33a64 9480 else
41c52415 9481 return ring != i915_gem_request_get_ring(obj->last_read_req);
84c33a64
SG
9482}
9483
ff944564
DL
9484static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
9485{
9486 struct drm_device *dev = intel_crtc->base.dev;
9487 struct drm_i915_private *dev_priv = dev->dev_private;
9488 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
9489 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
9490 struct drm_i915_gem_object *obj = intel_fb->obj;
9491 const enum pipe pipe = intel_crtc->pipe;
9492 u32 ctl, stride;
9493
9494 ctl = I915_READ(PLANE_CTL(pipe, 0));
9495 ctl &= ~PLANE_CTL_TILED_MASK;
9496 if (obj->tiling_mode == I915_TILING_X)
9497 ctl |= PLANE_CTL_TILED_X;
9498
9499 /*
9500 * The stride is either expressed as a multiple of 64 bytes chunks for
9501 * linear buffers or in number of tiles for tiled buffers.
9502 */
9503 stride = fb->pitches[0] >> 6;
9504 if (obj->tiling_mode == I915_TILING_X)
9505 stride = fb->pitches[0] >> 9; /* X tiles are 512 bytes wide */
9506
9507 /*
9508 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
9509 * PLANE_SURF updates, the update is then guaranteed to be atomic.
9510 */
9511 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
9512 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
9513
9514 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
9515 POSTING_READ(PLANE_SURF(pipe, 0));
9516}
9517
9518static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
84c33a64
SG
9519{
9520 struct drm_device *dev = intel_crtc->base.dev;
9521 struct drm_i915_private *dev_priv = dev->dev_private;
9522 struct intel_framebuffer *intel_fb =
9523 to_intel_framebuffer(intel_crtc->base.primary->fb);
9524 struct drm_i915_gem_object *obj = intel_fb->obj;
9525 u32 dspcntr;
9526 u32 reg;
9527
84c33a64
SG
9528 reg = DSPCNTR(intel_crtc->plane);
9529 dspcntr = I915_READ(reg);
9530
c5d97472
DL
9531 if (obj->tiling_mode != I915_TILING_NONE)
9532 dspcntr |= DISPPLANE_TILED;
9533 else
9534 dspcntr &= ~DISPPLANE_TILED;
9535
84c33a64
SG
9536 I915_WRITE(reg, dspcntr);
9537
9538 I915_WRITE(DSPSURF(intel_crtc->plane),
9539 intel_crtc->unpin_work->gtt_offset);
9540 POSTING_READ(DSPSURF(intel_crtc->plane));
84c33a64 9541
ff944564
DL
9542}
9543
9544/*
9545 * XXX: This is the temporary way to update the plane registers until we get
9546 * around to using the usual plane update functions for MMIO flips
9547 */
9548static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
9549{
9550 struct drm_device *dev = intel_crtc->base.dev;
9551 bool atomic_update;
9552 u32 start_vbl_count;
9553
9554 intel_mark_page_flip_active(intel_crtc);
9555
9556 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
9557
9558 if (INTEL_INFO(dev)->gen >= 9)
9559 skl_do_mmio_flip(intel_crtc);
9560 else
9561 /* use_mmio_flip() retricts MMIO flips to ilk+ */
9562 ilk_do_mmio_flip(intel_crtc);
9563
9362c7c5
ACO
9564 if (atomic_update)
9565 intel_pipe_update_end(intel_crtc, start_vbl_count);
84c33a64
SG
9566}
9567
9362c7c5 9568static void intel_mmio_flip_work_func(struct work_struct *work)
84c33a64 9569{
cc8c4cc2 9570 struct intel_crtc *crtc =
9362c7c5 9571 container_of(work, struct intel_crtc, mmio_flip.work);
cc8c4cc2 9572 struct intel_mmio_flip *mmio_flip;
84c33a64 9573
cc8c4cc2
JH
9574 mmio_flip = &crtc->mmio_flip;
9575 if (mmio_flip->req)
9c654818
JH
9576 WARN_ON(__i915_wait_request(mmio_flip->req,
9577 crtc->reset_counter,
9578 false, NULL, NULL) != 0);
84c33a64 9579
cc8c4cc2
JH
9580 intel_do_mmio_flip(crtc);
9581 if (mmio_flip->req) {
9582 mutex_lock(&crtc->base.dev->struct_mutex);
146d84f0 9583 i915_gem_request_assign(&mmio_flip->req, NULL);
cc8c4cc2
JH
9584 mutex_unlock(&crtc->base.dev->struct_mutex);
9585 }
84c33a64
SG
9586}
9587
9588static int intel_queue_mmio_flip(struct drm_device *dev,
9589 struct drm_crtc *crtc,
9590 struct drm_framebuffer *fb,
9591 struct drm_i915_gem_object *obj,
9592 struct intel_engine_cs *ring,
9593 uint32_t flags)
9594{
84c33a64 9595 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
84c33a64 9596
cc8c4cc2
JH
9597 i915_gem_request_assign(&intel_crtc->mmio_flip.req,
9598 obj->last_write_req);
536f5b5e
ACO
9599
9600 schedule_work(&intel_crtc->mmio_flip.work);
84c33a64 9601
84c33a64
SG
9602 return 0;
9603}
9604
830c81db
DL
9605static int intel_gen9_queue_flip(struct drm_device *dev,
9606 struct drm_crtc *crtc,
9607 struct drm_framebuffer *fb,
9608 struct drm_i915_gem_object *obj,
9609 struct intel_engine_cs *ring,
9610 uint32_t flags)
9611{
9612 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9613 uint32_t plane = 0, stride;
9614 int ret;
9615
9616 switch(intel_crtc->pipe) {
9617 case PIPE_A:
9618 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_A;
9619 break;
9620 case PIPE_B:
9621 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_B;
9622 break;
9623 case PIPE_C:
9624 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_C;
9625 break;
9626 default:
9627 WARN_ONCE(1, "unknown plane in flip command\n");
9628 return -ENODEV;
9629 }
9630
9631 switch (obj->tiling_mode) {
9632 case I915_TILING_NONE:
9633 stride = fb->pitches[0] >> 6;
9634 break;
9635 case I915_TILING_X:
9636 stride = fb->pitches[0] >> 9;
9637 break;
9638 default:
9639 WARN_ONCE(1, "unknown tiling in flip command\n");
9640 return -ENODEV;
9641 }
9642
9643 ret = intel_ring_begin(ring, 10);
9644 if (ret)
9645 return ret;
9646
9647 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9648 intel_ring_emit(ring, DERRMR);
9649 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9650 DERRMR_PIPEB_PRI_FLIP_DONE |
9651 DERRMR_PIPEC_PRI_FLIP_DONE));
9652 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9653 MI_SRM_LRM_GLOBAL_GTT);
9654 intel_ring_emit(ring, DERRMR);
9655 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
9656 intel_ring_emit(ring, 0);
9657
9658 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane);
9659 intel_ring_emit(ring, stride << 6 | obj->tiling_mode);
9660 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
9661
9662 intel_mark_page_flip_active(intel_crtc);
9663 __intel_ring_advance(ring);
9664
9665 return 0;
9666}
9667
8c9f3aaf
JB
9668static int intel_default_queue_flip(struct drm_device *dev,
9669 struct drm_crtc *crtc,
9670 struct drm_framebuffer *fb,
ed8d1975 9671 struct drm_i915_gem_object *obj,
a4872ba6 9672 struct intel_engine_cs *ring,
ed8d1975 9673 uint32_t flags)
8c9f3aaf
JB
9674{
9675 return -ENODEV;
9676}
9677
d6bbafa1
CW
9678static bool __intel_pageflip_stall_check(struct drm_device *dev,
9679 struct drm_crtc *crtc)
9680{
9681 struct drm_i915_private *dev_priv = dev->dev_private;
9682 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9683 struct intel_unpin_work *work = intel_crtc->unpin_work;
9684 u32 addr;
9685
9686 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
9687 return true;
9688
9689 if (!work->enable_stall_check)
9690 return false;
9691
9692 if (work->flip_ready_vblank == 0) {
3a8a946e
DV
9693 if (work->flip_queued_req &&
9694 !i915_gem_request_completed(work->flip_queued_req, true))
d6bbafa1
CW
9695 return false;
9696
9697 work->flip_ready_vblank = drm_vblank_count(dev, intel_crtc->pipe);
9698 }
9699
9700 if (drm_vblank_count(dev, intel_crtc->pipe) - work->flip_ready_vblank < 3)
9701 return false;
9702
9703 /* Potential stall - if we see that the flip has happened,
9704 * assume a missed interrupt. */
9705 if (INTEL_INFO(dev)->gen >= 4)
9706 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
9707 else
9708 addr = I915_READ(DSPADDR(intel_crtc->plane));
9709
9710 /* There is a potential issue here with a false positive after a flip
9711 * to the same address. We could address this by checking for a
9712 * non-incrementing frame counter.
9713 */
9714 return addr == work->gtt_offset;
9715}
9716
9717void intel_check_page_flip(struct drm_device *dev, int pipe)
9718{
9719 struct drm_i915_private *dev_priv = dev->dev_private;
9720 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9721 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
f326038a
DV
9722
9723 WARN_ON(!in_irq());
d6bbafa1
CW
9724
9725 if (crtc == NULL)
9726 return;
9727
f326038a 9728 spin_lock(&dev->event_lock);
d6bbafa1
CW
9729 if (intel_crtc->unpin_work && __intel_pageflip_stall_check(dev, crtc)) {
9730 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
9731 intel_crtc->unpin_work->flip_queued_vblank, drm_vblank_count(dev, pipe));
9732 page_flip_completed(intel_crtc);
9733 }
f326038a 9734 spin_unlock(&dev->event_lock);
d6bbafa1
CW
9735}
9736
6b95a207
KH
9737static int intel_crtc_page_flip(struct drm_crtc *crtc,
9738 struct drm_framebuffer *fb,
ed8d1975
KP
9739 struct drm_pending_vblank_event *event,
9740 uint32_t page_flip_flags)
6b95a207
KH
9741{
9742 struct drm_device *dev = crtc->dev;
9743 struct drm_i915_private *dev_priv = dev->dev_private;
f4510a27 9744 struct drm_framebuffer *old_fb = crtc->primary->fb;
2ff8fde1 9745 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
6b95a207 9746 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
455a6808 9747 struct drm_plane *primary = crtc->primary;
a071fa00 9748 enum pipe pipe = intel_crtc->pipe;
6b95a207 9749 struct intel_unpin_work *work;
a4872ba6 9750 struct intel_engine_cs *ring;
52e68630 9751 int ret;
6b95a207 9752
2ff8fde1
MR
9753 /*
9754 * drm_mode_page_flip_ioctl() should already catch this, but double
9755 * check to be safe. In the future we may enable pageflipping from
9756 * a disabled primary plane.
9757 */
9758 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
9759 return -EBUSY;
9760
e6a595d2 9761 /* Can't change pixel format via MI display flips. */
f4510a27 9762 if (fb->pixel_format != crtc->primary->fb->pixel_format)
e6a595d2
VS
9763 return -EINVAL;
9764
9765 /*
9766 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9767 * Note that pitch changes could also affect these register.
9768 */
9769 if (INTEL_INFO(dev)->gen > 3 &&
f4510a27
MR
9770 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9771 fb->pitches[0] != crtc->primary->fb->pitches[0]))
e6a595d2
VS
9772 return -EINVAL;
9773
f900db47
CW
9774 if (i915_terminally_wedged(&dev_priv->gpu_error))
9775 goto out_hang;
9776
b14c5679 9777 work = kzalloc(sizeof(*work), GFP_KERNEL);
6b95a207
KH
9778 if (work == NULL)
9779 return -ENOMEM;
9780
6b95a207 9781 work->event = event;
b4a98e57 9782 work->crtc = crtc;
ab8d6675 9783 work->old_fb = old_fb;
6b95a207
KH
9784 INIT_WORK(&work->work, intel_unpin_work_fn);
9785
87b6b101 9786 ret = drm_crtc_vblank_get(crtc);
7317c75e
JB
9787 if (ret)
9788 goto free_work;
9789
6b95a207 9790 /* We borrow the event spin lock for protecting unpin_work */
5e2d7afc 9791 spin_lock_irq(&dev->event_lock);
6b95a207 9792 if (intel_crtc->unpin_work) {
d6bbafa1
CW
9793 /* Before declaring the flip queue wedged, check if
9794 * the hardware completed the operation behind our backs.
9795 */
9796 if (__intel_pageflip_stall_check(dev, crtc)) {
9797 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
9798 page_flip_completed(intel_crtc);
9799 } else {
9800 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
5e2d7afc 9801 spin_unlock_irq(&dev->event_lock);
468f0b44 9802
d6bbafa1
CW
9803 drm_crtc_vblank_put(crtc);
9804 kfree(work);
9805 return -EBUSY;
9806 }
6b95a207
KH
9807 }
9808 intel_crtc->unpin_work = work;
5e2d7afc 9809 spin_unlock_irq(&dev->event_lock);
6b95a207 9810
b4a98e57
CW
9811 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9812 flush_workqueue(dev_priv->wq);
9813
79158103
CW
9814 ret = i915_mutex_lock_interruptible(dev);
9815 if (ret)
9816 goto cleanup;
6b95a207 9817
75dfca80 9818 /* Reference the objects for the scheduled work. */
ab8d6675 9819 drm_framebuffer_reference(work->old_fb);
05394f39 9820 drm_gem_object_reference(&obj->base);
6b95a207 9821
f4510a27 9822 crtc->primary->fb = fb;
afd65eb4 9823 update_state_fb(crtc->primary);
1ed1f968 9824
e1f99ce6 9825 work->pending_flip_obj = obj;
e1f99ce6 9826
b4a98e57 9827 atomic_inc(&intel_crtc->unpin_work_count);
10d83730 9828 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
e1f99ce6 9829
75f7f3ec 9830 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
a071fa00 9831 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
75f7f3ec 9832
4fa62c89
VS
9833 if (IS_VALLEYVIEW(dev)) {
9834 ring = &dev_priv->ring[BCS];
ab8d6675 9835 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
8e09bf83
CW
9836 /* vlv: DISPLAY_FLIP fails to change tiling */
9837 ring = NULL;
48bf5b2d 9838 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
2a92d5bc 9839 ring = &dev_priv->ring[BCS];
4fa62c89 9840 } else if (INTEL_INFO(dev)->gen >= 7) {
41c52415 9841 ring = i915_gem_request_get_ring(obj->last_read_req);
4fa62c89
VS
9842 if (ring == NULL || ring->id != RCS)
9843 ring = &dev_priv->ring[BCS];
9844 } else {
9845 ring = &dev_priv->ring[RCS];
9846 }
9847
850c4cdc 9848 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb, ring);
8c9f3aaf
JB
9849 if (ret)
9850 goto cleanup_pending;
6b95a207 9851
4fa62c89
VS
9852 work->gtt_offset =
9853 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9854
d6bbafa1 9855 if (use_mmio_flip(ring, obj)) {
84c33a64
SG
9856 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
9857 page_flip_flags);
d6bbafa1
CW
9858 if (ret)
9859 goto cleanup_unpin;
9860
f06cc1b9
JH
9861 i915_gem_request_assign(&work->flip_queued_req,
9862 obj->last_write_req);
d6bbafa1 9863 } else {
84c33a64 9864 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
d6bbafa1
CW
9865 page_flip_flags);
9866 if (ret)
9867 goto cleanup_unpin;
9868
f06cc1b9
JH
9869 i915_gem_request_assign(&work->flip_queued_req,
9870 intel_ring_get_request(ring));
d6bbafa1
CW
9871 }
9872
9873 work->flip_queued_vblank = drm_vblank_count(dev, intel_crtc->pipe);
9874 work->enable_stall_check = true;
4fa62c89 9875
ab8d6675 9876 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
a071fa00
DV
9877 INTEL_FRONTBUFFER_PRIMARY(pipe));
9878
7ff0ebcc 9879 intel_fbc_disable(dev);
f99d7069 9880 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
6b95a207
KH
9881 mutex_unlock(&dev->struct_mutex);
9882
e5510fac
JB
9883 trace_i915_flip_request(intel_crtc->plane, obj);
9884
6b95a207 9885 return 0;
96b099fd 9886
4fa62c89
VS
9887cleanup_unpin:
9888 intel_unpin_fb_obj(obj);
8c9f3aaf 9889cleanup_pending:
b4a98e57 9890 atomic_dec(&intel_crtc->unpin_work_count);
f4510a27 9891 crtc->primary->fb = old_fb;
afd65eb4 9892 update_state_fb(crtc->primary);
ab8d6675 9893 drm_framebuffer_unreference(work->old_fb);
05394f39 9894 drm_gem_object_unreference(&obj->base);
96b099fd
CW
9895 mutex_unlock(&dev->struct_mutex);
9896
79158103 9897cleanup:
5e2d7afc 9898 spin_lock_irq(&dev->event_lock);
96b099fd 9899 intel_crtc->unpin_work = NULL;
5e2d7afc 9900 spin_unlock_irq(&dev->event_lock);
96b099fd 9901
87b6b101 9902 drm_crtc_vblank_put(crtc);
7317c75e 9903free_work:
96b099fd
CW
9904 kfree(work);
9905
f900db47
CW
9906 if (ret == -EIO) {
9907out_hang:
53a366b9 9908 ret = intel_plane_restore(primary);
f0d3dad3 9909 if (ret == 0 && event) {
5e2d7afc 9910 spin_lock_irq(&dev->event_lock);
a071fa00 9911 drm_send_vblank_event(dev, pipe, event);
5e2d7afc 9912 spin_unlock_irq(&dev->event_lock);
f0d3dad3 9913 }
f900db47 9914 }
96b099fd 9915 return ret;
6b95a207
KH
9916}
9917
f6e5b160 9918static struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160
CW
9919 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9920 .load_lut = intel_crtc_load_lut,
ea2c67bb
MR
9921 .atomic_begin = intel_begin_crtc_commit,
9922 .atomic_flush = intel_finish_crtc_commit,
f6e5b160
CW
9923};
9924
9a935856
DV
9925/**
9926 * intel_modeset_update_staged_output_state
9927 *
9928 * Updates the staged output configuration state, e.g. after we've read out the
9929 * current hw state.
9930 */
9931static void intel_modeset_update_staged_output_state(struct drm_device *dev)
f6e5b160 9932{
7668851f 9933 struct intel_crtc *crtc;
9a935856
DV
9934 struct intel_encoder *encoder;
9935 struct intel_connector *connector;
f6e5b160 9936
9a935856
DV
9937 list_for_each_entry(connector, &dev->mode_config.connector_list,
9938 base.head) {
9939 connector->new_encoder =
9940 to_intel_encoder(connector->base.encoder);
9941 }
f6e5b160 9942
b2784e15 9943 for_each_intel_encoder(dev, encoder) {
9a935856
DV
9944 encoder->new_crtc =
9945 to_intel_crtc(encoder->base.crtc);
9946 }
7668851f 9947
d3fcc808 9948 for_each_intel_crtc(dev, crtc) {
7668851f 9949 crtc->new_enabled = crtc->base.enabled;
7bd0a8e7
VS
9950
9951 if (crtc->new_enabled)
6e3c9717 9952 crtc->new_config = crtc->config;
7bd0a8e7
VS
9953 else
9954 crtc->new_config = NULL;
7668851f 9955 }
f6e5b160
CW
9956}
9957
9a935856
DV
9958/**
9959 * intel_modeset_commit_output_state
9960 *
9961 * This function copies the stage display pipe configuration to the real one.
9962 */
9963static void intel_modeset_commit_output_state(struct drm_device *dev)
9964{
7668851f 9965 struct intel_crtc *crtc;
9a935856
DV
9966 struct intel_encoder *encoder;
9967 struct intel_connector *connector;
f6e5b160 9968
9a935856
DV
9969 list_for_each_entry(connector, &dev->mode_config.connector_list,
9970 base.head) {
9971 connector->base.encoder = &connector->new_encoder->base;
9972 }
f6e5b160 9973
b2784e15 9974 for_each_intel_encoder(dev, encoder) {
9a935856
DV
9975 encoder->base.crtc = &encoder->new_crtc->base;
9976 }
7668851f 9977
d3fcc808 9978 for_each_intel_crtc(dev, crtc) {
7668851f
VS
9979 crtc->base.enabled = crtc->new_enabled;
9980 }
9a935856
DV
9981}
9982
050f7aeb 9983static void
eba905b2 9984connected_sink_compute_bpp(struct intel_connector *connector,
5cec258b 9985 struct intel_crtc_state *pipe_config)
050f7aeb
DV
9986{
9987 int bpp = pipe_config->pipe_bpp;
9988
9989 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9990 connector->base.base.id,
c23cc417 9991 connector->base.name);
050f7aeb
DV
9992
9993 /* Don't use an invalid EDID bpc value */
9994 if (connector->base.display_info.bpc &&
9995 connector->base.display_info.bpc * 3 < bpp) {
9996 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9997 bpp, connector->base.display_info.bpc*3);
9998 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9999 }
10000
10001 /* Clamp bpp to 8 on screens without EDID 1.4 */
10002 if (connector->base.display_info.bpc == 0 && bpp > 24) {
10003 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
10004 bpp);
10005 pipe_config->pipe_bpp = 24;
10006 }
10007}
10008
4e53c2e0 10009static int
050f7aeb
DV
10010compute_baseline_pipe_bpp(struct intel_crtc *crtc,
10011 struct drm_framebuffer *fb,
5cec258b 10012 struct intel_crtc_state *pipe_config)
4e53c2e0 10013{
050f7aeb
DV
10014 struct drm_device *dev = crtc->base.dev;
10015 struct intel_connector *connector;
4e53c2e0
DV
10016 int bpp;
10017
d42264b1
DV
10018 switch (fb->pixel_format) {
10019 case DRM_FORMAT_C8:
4e53c2e0
DV
10020 bpp = 8*3; /* since we go through a colormap */
10021 break;
d42264b1
DV
10022 case DRM_FORMAT_XRGB1555:
10023 case DRM_FORMAT_ARGB1555:
10024 /* checked in intel_framebuffer_init already */
10025 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
10026 return -EINVAL;
10027 case DRM_FORMAT_RGB565:
4e53c2e0
DV
10028 bpp = 6*3; /* min is 18bpp */
10029 break;
d42264b1
DV
10030 case DRM_FORMAT_XBGR8888:
10031 case DRM_FORMAT_ABGR8888:
10032 /* checked in intel_framebuffer_init already */
10033 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
10034 return -EINVAL;
10035 case DRM_FORMAT_XRGB8888:
10036 case DRM_FORMAT_ARGB8888:
4e53c2e0
DV
10037 bpp = 8*3;
10038 break;
d42264b1
DV
10039 case DRM_FORMAT_XRGB2101010:
10040 case DRM_FORMAT_ARGB2101010:
10041 case DRM_FORMAT_XBGR2101010:
10042 case DRM_FORMAT_ABGR2101010:
10043 /* checked in intel_framebuffer_init already */
10044 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
baba133a 10045 return -EINVAL;
4e53c2e0
DV
10046 bpp = 10*3;
10047 break;
baba133a 10048 /* TODO: gen4+ supports 16 bpc floating point, too. */
4e53c2e0
DV
10049 default:
10050 DRM_DEBUG_KMS("unsupported depth\n");
10051 return -EINVAL;
10052 }
10053
4e53c2e0
DV
10054 pipe_config->pipe_bpp = bpp;
10055
10056 /* Clamp display bpp to EDID value */
10057 list_for_each_entry(connector, &dev->mode_config.connector_list,
050f7aeb 10058 base.head) {
1b829e05
DV
10059 if (!connector->new_encoder ||
10060 connector->new_encoder->new_crtc != crtc)
4e53c2e0
DV
10061 continue;
10062
050f7aeb 10063 connected_sink_compute_bpp(connector, pipe_config);
4e53c2e0
DV
10064 }
10065
10066 return bpp;
10067}
10068
644db711
DV
10069static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
10070{
10071 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
10072 "type: 0x%x flags: 0x%x\n",
1342830c 10073 mode->crtc_clock,
644db711
DV
10074 mode->crtc_hdisplay, mode->crtc_hsync_start,
10075 mode->crtc_hsync_end, mode->crtc_htotal,
10076 mode->crtc_vdisplay, mode->crtc_vsync_start,
10077 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
10078}
10079
c0b03411 10080static void intel_dump_pipe_config(struct intel_crtc *crtc,
5cec258b 10081 struct intel_crtc_state *pipe_config,
c0b03411
DV
10082 const char *context)
10083{
10084 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
10085 context, pipe_name(crtc->pipe));
10086
10087 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
10088 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
10089 pipe_config->pipe_bpp, pipe_config->dither);
10090 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10091 pipe_config->has_pch_encoder,
10092 pipe_config->fdi_lanes,
10093 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
10094 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
10095 pipe_config->fdi_m_n.tu);
eb14cb74
VS
10096 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10097 pipe_config->has_dp_encoder,
10098 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
10099 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
10100 pipe_config->dp_m_n.tu);
b95af8be
VK
10101
10102 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
10103 pipe_config->has_dp_encoder,
10104 pipe_config->dp_m2_n2.gmch_m,
10105 pipe_config->dp_m2_n2.gmch_n,
10106 pipe_config->dp_m2_n2.link_m,
10107 pipe_config->dp_m2_n2.link_n,
10108 pipe_config->dp_m2_n2.tu);
10109
55072d19
DV
10110 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
10111 pipe_config->has_audio,
10112 pipe_config->has_infoframe);
10113
c0b03411 10114 DRM_DEBUG_KMS("requested mode:\n");
2d112de7 10115 drm_mode_debug_printmodeline(&pipe_config->base.mode);
c0b03411 10116 DRM_DEBUG_KMS("adjusted mode:\n");
2d112de7
ACO
10117 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
10118 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
d71b8d4a 10119 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
37327abd
VS
10120 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
10121 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
c0b03411
DV
10122 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
10123 pipe_config->gmch_pfit.control,
10124 pipe_config->gmch_pfit.pgm_ratios,
10125 pipe_config->gmch_pfit.lvds_border_bits);
fd4daa9c 10126 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
c0b03411 10127 pipe_config->pch_pfit.pos,
fd4daa9c
CW
10128 pipe_config->pch_pfit.size,
10129 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
42db64ef 10130 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
cf532bb2 10131 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
c0b03411
DV
10132}
10133
bc079e8b
VS
10134static bool encoders_cloneable(const struct intel_encoder *a,
10135 const struct intel_encoder *b)
accfc0c5 10136{
bc079e8b
VS
10137 /* masks could be asymmetric, so check both ways */
10138 return a == b || (a->cloneable & (1 << b->type) &&
10139 b->cloneable & (1 << a->type));
10140}
10141
10142static bool check_single_encoder_cloning(struct intel_crtc *crtc,
10143 struct intel_encoder *encoder)
10144{
10145 struct drm_device *dev = crtc->base.dev;
10146 struct intel_encoder *source_encoder;
10147
b2784e15 10148 for_each_intel_encoder(dev, source_encoder) {
bc079e8b
VS
10149 if (source_encoder->new_crtc != crtc)
10150 continue;
10151
10152 if (!encoders_cloneable(encoder, source_encoder))
10153 return false;
10154 }
10155
10156 return true;
10157}
10158
10159static bool check_encoder_cloning(struct intel_crtc *crtc)
10160{
10161 struct drm_device *dev = crtc->base.dev;
accfc0c5
DV
10162 struct intel_encoder *encoder;
10163
b2784e15 10164 for_each_intel_encoder(dev, encoder) {
bc079e8b 10165 if (encoder->new_crtc != crtc)
accfc0c5
DV
10166 continue;
10167
bc079e8b
VS
10168 if (!check_single_encoder_cloning(crtc, encoder))
10169 return false;
accfc0c5
DV
10170 }
10171
bc079e8b 10172 return true;
accfc0c5
DV
10173}
10174
00f0b378
VS
10175static bool check_digital_port_conflicts(struct drm_device *dev)
10176{
10177 struct intel_connector *connector;
10178 unsigned int used_ports = 0;
10179
10180 /*
10181 * Walk the connector list instead of the encoder
10182 * list to detect the problem on ddi platforms
10183 * where there's just one encoder per digital port.
10184 */
10185 list_for_each_entry(connector,
10186 &dev->mode_config.connector_list, base.head) {
10187 struct intel_encoder *encoder = connector->new_encoder;
10188
10189 if (!encoder)
10190 continue;
10191
10192 WARN_ON(!encoder->new_crtc);
10193
10194 switch (encoder->type) {
10195 unsigned int port_mask;
10196 case INTEL_OUTPUT_UNKNOWN:
10197 if (WARN_ON(!HAS_DDI(dev)))
10198 break;
10199 case INTEL_OUTPUT_DISPLAYPORT:
10200 case INTEL_OUTPUT_HDMI:
10201 case INTEL_OUTPUT_EDP:
10202 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
10203
10204 /* the same port mustn't appear more than once */
10205 if (used_ports & port_mask)
10206 return false;
10207
10208 used_ports |= port_mask;
10209 default:
10210 break;
10211 }
10212 }
10213
10214 return true;
10215}
10216
5cec258b 10217static struct intel_crtc_state *
b8cecdf5 10218intel_modeset_pipe_config(struct drm_crtc *crtc,
4e53c2e0 10219 struct drm_framebuffer *fb,
b8cecdf5 10220 struct drm_display_mode *mode)
ee7b9f93 10221{
7758a113 10222 struct drm_device *dev = crtc->dev;
7758a113 10223 struct intel_encoder *encoder;
5cec258b 10224 struct intel_crtc_state *pipe_config;
e29c22c0
DV
10225 int plane_bpp, ret = -EINVAL;
10226 bool retry = true;
ee7b9f93 10227
bc079e8b 10228 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
accfc0c5
DV
10229 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
10230 return ERR_PTR(-EINVAL);
10231 }
10232
00f0b378
VS
10233 if (!check_digital_port_conflicts(dev)) {
10234 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
10235 return ERR_PTR(-EINVAL);
10236 }
10237
b8cecdf5
DV
10238 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10239 if (!pipe_config)
7758a113
DV
10240 return ERR_PTR(-ENOMEM);
10241
2d112de7
ACO
10242 drm_mode_copy(&pipe_config->base.adjusted_mode, mode);
10243 drm_mode_copy(&pipe_config->base.mode, mode);
37327abd 10244
e143a21c
DV
10245 pipe_config->cpu_transcoder =
10246 (enum transcoder) to_intel_crtc(crtc)->pipe;
c0d43d62 10247 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
b8cecdf5 10248
2960bc9c
ID
10249 /*
10250 * Sanitize sync polarity flags based on requested ones. If neither
10251 * positive or negative polarity is requested, treat this as meaning
10252 * negative polarity.
10253 */
2d112de7 10254 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 10255 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
2d112de7 10256 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
2960bc9c 10257
2d112de7 10258 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 10259 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
2d112de7 10260 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
2960bc9c 10261
050f7aeb
DV
10262 /* Compute a starting value for pipe_config->pipe_bpp taking the source
10263 * plane pixel format and any sink constraints into account. Returns the
10264 * source plane bpp so that dithering can be selected on mismatches
10265 * after encoders and crtc also have had their say. */
10266 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
10267 fb, pipe_config);
4e53c2e0
DV
10268 if (plane_bpp < 0)
10269 goto fail;
10270
e41a56be
VS
10271 /*
10272 * Determine the real pipe dimensions. Note that stereo modes can
10273 * increase the actual pipe size due to the frame doubling and
10274 * insertion of additional space for blanks between the frame. This
10275 * is stored in the crtc timings. We use the requested mode to do this
10276 * computation to clearly distinguish it from the adjusted mode, which
10277 * can be changed by the connectors in the below retry loop.
10278 */
2d112de7 10279 drm_crtc_get_hv_timing(&pipe_config->base.mode,
ecb7e16b
GP
10280 &pipe_config->pipe_src_w,
10281 &pipe_config->pipe_src_h);
e41a56be 10282
e29c22c0 10283encoder_retry:
ef1b460d 10284 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 10285 pipe_config->port_clock = 0;
ef1b460d 10286 pipe_config->pixel_multiplier = 1;
ff9a6750 10287
135c81b8 10288 /* Fill in default crtc timings, allow encoders to overwrite them. */
2d112de7
ACO
10289 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
10290 CRTC_STEREO_DOUBLE);
135c81b8 10291
7758a113
DV
10292 /* Pass our mode to the connectors and the CRTC to give them a chance to
10293 * adjust it according to limitations or connector properties, and also
10294 * a chance to reject the mode entirely.
47f1c6c9 10295 */
b2784e15 10296 for_each_intel_encoder(dev, encoder) {
47f1c6c9 10297
7758a113
DV
10298 if (&encoder->new_crtc->base != crtc)
10299 continue;
7ae89233 10300
efea6e8e
DV
10301 if (!(encoder->compute_config(encoder, pipe_config))) {
10302 DRM_DEBUG_KMS("Encoder config failure\n");
7758a113
DV
10303 goto fail;
10304 }
ee7b9f93 10305 }
47f1c6c9 10306
ff9a6750
DV
10307 /* Set default port clock if not overwritten by the encoder. Needs to be
10308 * done afterwards in case the encoder adjusts the mode. */
10309 if (!pipe_config->port_clock)
2d112de7 10310 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
241bfc38 10311 * pipe_config->pixel_multiplier;
ff9a6750 10312
a43f6e0f 10313 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 10314 if (ret < 0) {
7758a113
DV
10315 DRM_DEBUG_KMS("CRTC fixup failed\n");
10316 goto fail;
ee7b9f93 10317 }
e29c22c0
DV
10318
10319 if (ret == RETRY) {
10320 if (WARN(!retry, "loop in pipe configuration computation\n")) {
10321 ret = -EINVAL;
10322 goto fail;
10323 }
10324
10325 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
10326 retry = false;
10327 goto encoder_retry;
10328 }
10329
4e53c2e0
DV
10330 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
10331 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
10332 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
10333
b8cecdf5 10334 return pipe_config;
7758a113 10335fail:
b8cecdf5 10336 kfree(pipe_config);
e29c22c0 10337 return ERR_PTR(ret);
ee7b9f93 10338}
47f1c6c9 10339
e2e1ed41
DV
10340/* Computes which crtcs are affected and sets the relevant bits in the mask. For
10341 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
10342static void
10343intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
10344 unsigned *prepare_pipes, unsigned *disable_pipes)
79e53945
JB
10345{
10346 struct intel_crtc *intel_crtc;
e2e1ed41
DV
10347 struct drm_device *dev = crtc->dev;
10348 struct intel_encoder *encoder;
10349 struct intel_connector *connector;
10350 struct drm_crtc *tmp_crtc;
79e53945 10351
e2e1ed41 10352 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
79e53945 10353
e2e1ed41
DV
10354 /* Check which crtcs have changed outputs connected to them, these need
10355 * to be part of the prepare_pipes mask. We don't (yet) support global
10356 * modeset across multiple crtcs, so modeset_pipes will only have one
10357 * bit set at most. */
10358 list_for_each_entry(connector, &dev->mode_config.connector_list,
10359 base.head) {
10360 if (connector->base.encoder == &connector->new_encoder->base)
10361 continue;
79e53945 10362
e2e1ed41
DV
10363 if (connector->base.encoder) {
10364 tmp_crtc = connector->base.encoder->crtc;
10365
10366 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10367 }
10368
10369 if (connector->new_encoder)
10370 *prepare_pipes |=
10371 1 << connector->new_encoder->new_crtc->pipe;
79e53945
JB
10372 }
10373
b2784e15 10374 for_each_intel_encoder(dev, encoder) {
e2e1ed41
DV
10375 if (encoder->base.crtc == &encoder->new_crtc->base)
10376 continue;
10377
10378 if (encoder->base.crtc) {
10379 tmp_crtc = encoder->base.crtc;
10380
10381 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10382 }
10383
10384 if (encoder->new_crtc)
10385 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
80824003
JB
10386 }
10387
7668851f 10388 /* Check for pipes that will be enabled/disabled ... */
d3fcc808 10389 for_each_intel_crtc(dev, intel_crtc) {
7668851f 10390 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
e2e1ed41 10391 continue;
7e7d76c3 10392
7668851f 10393 if (!intel_crtc->new_enabled)
e2e1ed41 10394 *disable_pipes |= 1 << intel_crtc->pipe;
7668851f
VS
10395 else
10396 *prepare_pipes |= 1 << intel_crtc->pipe;
7e7d76c3
JB
10397 }
10398
e2e1ed41
DV
10399
10400 /* set_mode is also used to update properties on life display pipes. */
10401 intel_crtc = to_intel_crtc(crtc);
7668851f 10402 if (intel_crtc->new_enabled)
e2e1ed41
DV
10403 *prepare_pipes |= 1 << intel_crtc->pipe;
10404
b6c5164d
DV
10405 /*
10406 * For simplicity do a full modeset on any pipe where the output routing
10407 * changed. We could be more clever, but that would require us to be
10408 * more careful with calling the relevant encoder->mode_set functions.
10409 */
e2e1ed41
DV
10410 if (*prepare_pipes)
10411 *modeset_pipes = *prepare_pipes;
10412
10413 /* ... and mask these out. */
10414 *modeset_pipes &= ~(*disable_pipes);
10415 *prepare_pipes &= ~(*disable_pipes);
b6c5164d
DV
10416
10417 /*
10418 * HACK: We don't (yet) fully support global modesets. intel_set_config
10419 * obies this rule, but the modeset restore mode of
10420 * intel_modeset_setup_hw_state does not.
10421 */
10422 *modeset_pipes &= 1 << intel_crtc->pipe;
10423 *prepare_pipes &= 1 << intel_crtc->pipe;
e3641d3f
DV
10424
10425 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
10426 *modeset_pipes, *prepare_pipes, *disable_pipes);
47f1c6c9 10427}
79e53945 10428
ea9d758d 10429static bool intel_crtc_in_use(struct drm_crtc *crtc)
f6e5b160 10430{
ea9d758d 10431 struct drm_encoder *encoder;
f6e5b160 10432 struct drm_device *dev = crtc->dev;
f6e5b160 10433
ea9d758d
DV
10434 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
10435 if (encoder->crtc == crtc)
10436 return true;
10437
10438 return false;
10439}
10440
10441static void
10442intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
10443{
ba41c0de 10444 struct drm_i915_private *dev_priv = dev->dev_private;
ea9d758d
DV
10445 struct intel_encoder *intel_encoder;
10446 struct intel_crtc *intel_crtc;
10447 struct drm_connector *connector;
10448
ba41c0de
DV
10449 intel_shared_dpll_commit(dev_priv);
10450
b2784e15 10451 for_each_intel_encoder(dev, intel_encoder) {
ea9d758d
DV
10452 if (!intel_encoder->base.crtc)
10453 continue;
10454
10455 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
10456
10457 if (prepare_pipes & (1 << intel_crtc->pipe))
10458 intel_encoder->connectors_active = false;
10459 }
10460
10461 intel_modeset_commit_output_state(dev);
10462
7668851f 10463 /* Double check state. */
d3fcc808 10464 for_each_intel_crtc(dev, intel_crtc) {
7668851f 10465 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
7bd0a8e7 10466 WARN_ON(intel_crtc->new_config &&
6e3c9717 10467 intel_crtc->new_config != intel_crtc->config);
7bd0a8e7 10468 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
ea9d758d
DV
10469 }
10470
10471 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
10472 if (!connector->encoder || !connector->encoder->crtc)
10473 continue;
10474
10475 intel_crtc = to_intel_crtc(connector->encoder->crtc);
10476
10477 if (prepare_pipes & (1 << intel_crtc->pipe)) {
68d34720
DV
10478 struct drm_property *dpms_property =
10479 dev->mode_config.dpms_property;
10480
ea9d758d 10481 connector->dpms = DRM_MODE_DPMS_ON;
662595df 10482 drm_object_property_set_value(&connector->base,
68d34720
DV
10483 dpms_property,
10484 DRM_MODE_DPMS_ON);
ea9d758d
DV
10485
10486 intel_encoder = to_intel_encoder(connector->encoder);
10487 intel_encoder->connectors_active = true;
10488 }
10489 }
10490
10491}
10492
3bd26263 10493static bool intel_fuzzy_clock_check(int clock1, int clock2)
f1f644dc 10494{
3bd26263 10495 int diff;
f1f644dc
JB
10496
10497 if (clock1 == clock2)
10498 return true;
10499
10500 if (!clock1 || !clock2)
10501 return false;
10502
10503 diff = abs(clock1 - clock2);
10504
10505 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
10506 return true;
10507
10508 return false;
10509}
10510
25c5b266
DV
10511#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
10512 list_for_each_entry((intel_crtc), \
10513 &(dev)->mode_config.crtc_list, \
10514 base.head) \
0973f18f 10515 if (mask & (1 <<(intel_crtc)->pipe))
25c5b266 10516
0e8ffe1b 10517static bool
2fa2fe9a 10518intel_pipe_config_compare(struct drm_device *dev,
5cec258b
ACO
10519 struct intel_crtc_state *current_config,
10520 struct intel_crtc_state *pipe_config)
0e8ffe1b 10521{
66e985c0
DV
10522#define PIPE_CONF_CHECK_X(name) \
10523 if (current_config->name != pipe_config->name) { \
10524 DRM_ERROR("mismatch in " #name " " \
10525 "(expected 0x%08x, found 0x%08x)\n", \
10526 current_config->name, \
10527 pipe_config->name); \
10528 return false; \
10529 }
10530
08a24034
DV
10531#define PIPE_CONF_CHECK_I(name) \
10532 if (current_config->name != pipe_config->name) { \
10533 DRM_ERROR("mismatch in " #name " " \
10534 "(expected %i, found %i)\n", \
10535 current_config->name, \
10536 pipe_config->name); \
10537 return false; \
88adfff1
DV
10538 }
10539
b95af8be
VK
10540/* This is required for BDW+ where there is only one set of registers for
10541 * switching between high and low RR.
10542 * This macro can be used whenever a comparison has to be made between one
10543 * hw state and multiple sw state variables.
10544 */
10545#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
10546 if ((current_config->name != pipe_config->name) && \
10547 (current_config->alt_name != pipe_config->name)) { \
10548 DRM_ERROR("mismatch in " #name " " \
10549 "(expected %i or %i, found %i)\n", \
10550 current_config->name, \
10551 current_config->alt_name, \
10552 pipe_config->name); \
10553 return false; \
10554 }
10555
1bd1bd80
DV
10556#define PIPE_CONF_CHECK_FLAGS(name, mask) \
10557 if ((current_config->name ^ pipe_config->name) & (mask)) { \
6f02488e 10558 DRM_ERROR("mismatch in " #name "(" #mask ") " \
1bd1bd80
DV
10559 "(expected %i, found %i)\n", \
10560 current_config->name & (mask), \
10561 pipe_config->name & (mask)); \
10562 return false; \
10563 }
10564
5e550656
VS
10565#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
10566 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
10567 DRM_ERROR("mismatch in " #name " " \
10568 "(expected %i, found %i)\n", \
10569 current_config->name, \
10570 pipe_config->name); \
10571 return false; \
10572 }
10573
bb760063
DV
10574#define PIPE_CONF_QUIRK(quirk) \
10575 ((current_config->quirks | pipe_config->quirks) & (quirk))
10576
eccb140b
DV
10577 PIPE_CONF_CHECK_I(cpu_transcoder);
10578
08a24034
DV
10579 PIPE_CONF_CHECK_I(has_pch_encoder);
10580 PIPE_CONF_CHECK_I(fdi_lanes);
72419203
DV
10581 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
10582 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
10583 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
10584 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
10585 PIPE_CONF_CHECK_I(fdi_m_n.tu);
08a24034 10586
eb14cb74 10587 PIPE_CONF_CHECK_I(has_dp_encoder);
b95af8be
VK
10588
10589 if (INTEL_INFO(dev)->gen < 8) {
10590 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
10591 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
10592 PIPE_CONF_CHECK_I(dp_m_n.link_m);
10593 PIPE_CONF_CHECK_I(dp_m_n.link_n);
10594 PIPE_CONF_CHECK_I(dp_m_n.tu);
10595
10596 if (current_config->has_drrs) {
10597 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
10598 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
10599 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
10600 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
10601 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
10602 }
10603 } else {
10604 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
10605 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
10606 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
10607 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
10608 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
10609 }
eb14cb74 10610
2d112de7
ACO
10611 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
10612 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
10613 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
10614 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
10615 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
10616 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
1bd1bd80 10617
2d112de7
ACO
10618 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
10619 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
10620 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
10621 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
10622 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
10623 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
1bd1bd80 10624
c93f54cf 10625 PIPE_CONF_CHECK_I(pixel_multiplier);
6897b4b5 10626 PIPE_CONF_CHECK_I(has_hdmi_sink);
b5a9fa09
DV
10627 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
10628 IS_VALLEYVIEW(dev))
10629 PIPE_CONF_CHECK_I(limited_color_range);
e43823ec 10630 PIPE_CONF_CHECK_I(has_infoframe);
6c49f241 10631
9ed109a7
DV
10632 PIPE_CONF_CHECK_I(has_audio);
10633
2d112de7 10634 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
1bd1bd80
DV
10635 DRM_MODE_FLAG_INTERLACE);
10636
bb760063 10637 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
2d112de7 10638 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 10639 DRM_MODE_FLAG_PHSYNC);
2d112de7 10640 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 10641 DRM_MODE_FLAG_NHSYNC);
2d112de7 10642 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 10643 DRM_MODE_FLAG_PVSYNC);
2d112de7 10644 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063
DV
10645 DRM_MODE_FLAG_NVSYNC);
10646 }
045ac3b5 10647
37327abd
VS
10648 PIPE_CONF_CHECK_I(pipe_src_w);
10649 PIPE_CONF_CHECK_I(pipe_src_h);
1bd1bd80 10650
9953599b
DV
10651 /*
10652 * FIXME: BIOS likes to set up a cloned config with lvds+external
10653 * screen. Since we don't yet re-compute the pipe config when moving
10654 * just the lvds port away to another pipe the sw tracking won't match.
10655 *
10656 * Proper atomic modesets with recomputed global state will fix this.
10657 * Until then just don't check gmch state for inherited modes.
10658 */
10659 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
10660 PIPE_CONF_CHECK_I(gmch_pfit.control);
10661 /* pfit ratios are autocomputed by the hw on gen4+ */
10662 if (INTEL_INFO(dev)->gen < 4)
10663 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10664 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10665 }
10666
fd4daa9c
CW
10667 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10668 if (current_config->pch_pfit.enabled) {
10669 PIPE_CONF_CHECK_I(pch_pfit.pos);
10670 PIPE_CONF_CHECK_I(pch_pfit.size);
10671 }
2fa2fe9a 10672
e59150dc
JB
10673 /* BDW+ don't expose a synchronous way to read the state */
10674 if (IS_HASWELL(dev))
10675 PIPE_CONF_CHECK_I(ips_enabled);
42db64ef 10676
282740f7
VS
10677 PIPE_CONF_CHECK_I(double_wide);
10678
26804afd
DV
10679 PIPE_CONF_CHECK_X(ddi_pll_sel);
10680
c0d43d62 10681 PIPE_CONF_CHECK_I(shared_dpll);
66e985c0 10682 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
8bcc2795 10683 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
66e985c0
DV
10684 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10685 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
d452c5b6 10686 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
3f4cd19f
DL
10687 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
10688 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
10689 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
c0d43d62 10690
42571aef
VS
10691 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10692 PIPE_CONF_CHECK_I(pipe_bpp);
10693
2d112de7 10694 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
a9a7e98a 10695 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
5e550656 10696
66e985c0 10697#undef PIPE_CONF_CHECK_X
08a24034 10698#undef PIPE_CONF_CHECK_I
b95af8be 10699#undef PIPE_CONF_CHECK_I_ALT
1bd1bd80 10700#undef PIPE_CONF_CHECK_FLAGS
5e550656 10701#undef PIPE_CONF_CHECK_CLOCK_FUZZY
bb760063 10702#undef PIPE_CONF_QUIRK
88adfff1 10703
0e8ffe1b
DV
10704 return true;
10705}
10706
08db6652
DL
10707static void check_wm_state(struct drm_device *dev)
10708{
10709 struct drm_i915_private *dev_priv = dev->dev_private;
10710 struct skl_ddb_allocation hw_ddb, *sw_ddb;
10711 struct intel_crtc *intel_crtc;
10712 int plane;
10713
10714 if (INTEL_INFO(dev)->gen < 9)
10715 return;
10716
10717 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
10718 sw_ddb = &dev_priv->wm.skl_hw.ddb;
10719
10720 for_each_intel_crtc(dev, intel_crtc) {
10721 struct skl_ddb_entry *hw_entry, *sw_entry;
10722 const enum pipe pipe = intel_crtc->pipe;
10723
10724 if (!intel_crtc->active)
10725 continue;
10726
10727 /* planes */
10728 for_each_plane(pipe, plane) {
10729 hw_entry = &hw_ddb.plane[pipe][plane];
10730 sw_entry = &sw_ddb->plane[pipe][plane];
10731
10732 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10733 continue;
10734
10735 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
10736 "(expected (%u,%u), found (%u,%u))\n",
10737 pipe_name(pipe), plane + 1,
10738 sw_entry->start, sw_entry->end,
10739 hw_entry->start, hw_entry->end);
10740 }
10741
10742 /* cursor */
10743 hw_entry = &hw_ddb.cursor[pipe];
10744 sw_entry = &sw_ddb->cursor[pipe];
10745
10746 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10747 continue;
10748
10749 DRM_ERROR("mismatch in DDB state pipe %c cursor "
10750 "(expected (%u,%u), found (%u,%u))\n",
10751 pipe_name(pipe),
10752 sw_entry->start, sw_entry->end,
10753 hw_entry->start, hw_entry->end);
10754 }
10755}
10756
91d1b4bd
DV
10757static void
10758check_connector_state(struct drm_device *dev)
8af6cf88 10759{
8af6cf88
DV
10760 struct intel_connector *connector;
10761
10762 list_for_each_entry(connector, &dev->mode_config.connector_list,
10763 base.head) {
10764 /* This also checks the encoder/connector hw state with the
10765 * ->get_hw_state callbacks. */
10766 intel_connector_check_state(connector);
10767
e2c719b7 10768 I915_STATE_WARN(&connector->new_encoder->base != connector->base.encoder,
8af6cf88
DV
10769 "connector's staged encoder doesn't match current encoder\n");
10770 }
91d1b4bd
DV
10771}
10772
10773static void
10774check_encoder_state(struct drm_device *dev)
10775{
10776 struct intel_encoder *encoder;
10777 struct intel_connector *connector;
8af6cf88 10778
b2784e15 10779 for_each_intel_encoder(dev, encoder) {
8af6cf88
DV
10780 bool enabled = false;
10781 bool active = false;
10782 enum pipe pipe, tracked_pipe;
10783
10784 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10785 encoder->base.base.id,
8e329a03 10786 encoder->base.name);
8af6cf88 10787
e2c719b7 10788 I915_STATE_WARN(&encoder->new_crtc->base != encoder->base.crtc,
8af6cf88 10789 "encoder's stage crtc doesn't match current crtc\n");
e2c719b7 10790 I915_STATE_WARN(encoder->connectors_active && !encoder->base.crtc,
8af6cf88
DV
10791 "encoder's active_connectors set, but no crtc\n");
10792
10793 list_for_each_entry(connector, &dev->mode_config.connector_list,
10794 base.head) {
10795 if (connector->base.encoder != &encoder->base)
10796 continue;
10797 enabled = true;
10798 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10799 active = true;
10800 }
0e32b39c
DA
10801 /*
10802 * for MST connectors if we unplug the connector is gone
10803 * away but the encoder is still connected to a crtc
10804 * until a modeset happens in response to the hotplug.
10805 */
10806 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
10807 continue;
10808
e2c719b7 10809 I915_STATE_WARN(!!encoder->base.crtc != enabled,
8af6cf88
DV
10810 "encoder's enabled state mismatch "
10811 "(expected %i, found %i)\n",
10812 !!encoder->base.crtc, enabled);
e2c719b7 10813 I915_STATE_WARN(active && !encoder->base.crtc,
8af6cf88
DV
10814 "active encoder with no crtc\n");
10815
e2c719b7 10816 I915_STATE_WARN(encoder->connectors_active != active,
8af6cf88
DV
10817 "encoder's computed active state doesn't match tracked active state "
10818 "(expected %i, found %i)\n", active, encoder->connectors_active);
10819
10820 active = encoder->get_hw_state(encoder, &pipe);
e2c719b7 10821 I915_STATE_WARN(active != encoder->connectors_active,
8af6cf88
DV
10822 "encoder's hw state doesn't match sw tracking "
10823 "(expected %i, found %i)\n",
10824 encoder->connectors_active, active);
10825
10826 if (!encoder->base.crtc)
10827 continue;
10828
10829 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
e2c719b7 10830 I915_STATE_WARN(active && pipe != tracked_pipe,
8af6cf88
DV
10831 "active encoder's pipe doesn't match"
10832 "(expected %i, found %i)\n",
10833 tracked_pipe, pipe);
10834
10835 }
91d1b4bd
DV
10836}
10837
10838static void
10839check_crtc_state(struct drm_device *dev)
10840{
fbee40df 10841 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
10842 struct intel_crtc *crtc;
10843 struct intel_encoder *encoder;
5cec258b 10844 struct intel_crtc_state pipe_config;
8af6cf88 10845
d3fcc808 10846 for_each_intel_crtc(dev, crtc) {
8af6cf88
DV
10847 bool enabled = false;
10848 bool active = false;
10849
045ac3b5
JB
10850 memset(&pipe_config, 0, sizeof(pipe_config));
10851
8af6cf88
DV
10852 DRM_DEBUG_KMS("[CRTC:%d]\n",
10853 crtc->base.base.id);
10854
e2c719b7 10855 I915_STATE_WARN(crtc->active && !crtc->base.enabled,
8af6cf88
DV
10856 "active crtc, but not enabled in sw tracking\n");
10857
b2784e15 10858 for_each_intel_encoder(dev, encoder) {
8af6cf88
DV
10859 if (encoder->base.crtc != &crtc->base)
10860 continue;
10861 enabled = true;
10862 if (encoder->connectors_active)
10863 active = true;
10864 }
6c49f241 10865
e2c719b7 10866 I915_STATE_WARN(active != crtc->active,
8af6cf88
DV
10867 "crtc's computed active state doesn't match tracked active state "
10868 "(expected %i, found %i)\n", active, crtc->active);
e2c719b7 10869 I915_STATE_WARN(enabled != crtc->base.enabled,
8af6cf88
DV
10870 "crtc's computed enabled state doesn't match tracked enabled state "
10871 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10872
0e8ffe1b
DV
10873 active = dev_priv->display.get_pipe_config(crtc,
10874 &pipe_config);
d62cf62a 10875
b6b5d049
VS
10876 /* hw state is inconsistent with the pipe quirk */
10877 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
10878 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
d62cf62a
DV
10879 active = crtc->active;
10880
b2784e15 10881 for_each_intel_encoder(dev, encoder) {
3eaba51c 10882 enum pipe pipe;
6c49f241
DV
10883 if (encoder->base.crtc != &crtc->base)
10884 continue;
1d37b689 10885 if (encoder->get_hw_state(encoder, &pipe))
6c49f241
DV
10886 encoder->get_config(encoder, &pipe_config);
10887 }
10888
e2c719b7 10889 I915_STATE_WARN(crtc->active != active,
0e8ffe1b
DV
10890 "crtc active state doesn't match with hw state "
10891 "(expected %i, found %i)\n", crtc->active, active);
10892
c0b03411 10893 if (active &&
6e3c9717 10894 !intel_pipe_config_compare(dev, crtc->config, &pipe_config)) {
e2c719b7 10895 I915_STATE_WARN(1, "pipe state doesn't match!\n");
c0b03411
DV
10896 intel_dump_pipe_config(crtc, &pipe_config,
10897 "[hw state]");
6e3c9717 10898 intel_dump_pipe_config(crtc, crtc->config,
c0b03411
DV
10899 "[sw state]");
10900 }
8af6cf88
DV
10901 }
10902}
10903
91d1b4bd
DV
10904static void
10905check_shared_dpll_state(struct drm_device *dev)
10906{
fbee40df 10907 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
10908 struct intel_crtc *crtc;
10909 struct intel_dpll_hw_state dpll_hw_state;
10910 int i;
5358901f
DV
10911
10912 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10913 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10914 int enabled_crtcs = 0, active_crtcs = 0;
10915 bool active;
10916
10917 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10918
10919 DRM_DEBUG_KMS("%s\n", pll->name);
10920
10921 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10922
e2c719b7 10923 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
5358901f 10924 "more active pll users than references: %i vs %i\n",
3e369b76 10925 pll->active, hweight32(pll->config.crtc_mask));
e2c719b7 10926 I915_STATE_WARN(pll->active && !pll->on,
5358901f 10927 "pll in active use but not on in sw tracking\n");
e2c719b7 10928 I915_STATE_WARN(pll->on && !pll->active,
35c95375 10929 "pll in on but not on in use in sw tracking\n");
e2c719b7 10930 I915_STATE_WARN(pll->on != active,
5358901f
DV
10931 "pll on state mismatch (expected %i, found %i)\n",
10932 pll->on, active);
10933
d3fcc808 10934 for_each_intel_crtc(dev, crtc) {
5358901f
DV
10935 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10936 enabled_crtcs++;
10937 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10938 active_crtcs++;
10939 }
e2c719b7 10940 I915_STATE_WARN(pll->active != active_crtcs,
5358901f
DV
10941 "pll active crtcs mismatch (expected %i, found %i)\n",
10942 pll->active, active_crtcs);
e2c719b7 10943 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
5358901f 10944 "pll enabled crtcs mismatch (expected %i, found %i)\n",
3e369b76 10945 hweight32(pll->config.crtc_mask), enabled_crtcs);
66e985c0 10946
e2c719b7 10947 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
66e985c0
DV
10948 sizeof(dpll_hw_state)),
10949 "pll hw state mismatch\n");
5358901f 10950 }
8af6cf88
DV
10951}
10952
91d1b4bd
DV
10953void
10954intel_modeset_check_state(struct drm_device *dev)
10955{
08db6652 10956 check_wm_state(dev);
91d1b4bd
DV
10957 check_connector_state(dev);
10958 check_encoder_state(dev);
10959 check_crtc_state(dev);
10960 check_shared_dpll_state(dev);
10961}
10962
5cec258b 10963void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
18442d08
VS
10964 int dotclock)
10965{
10966 /*
10967 * FDI already provided one idea for the dotclock.
10968 * Yell if the encoder disagrees.
10969 */
2d112de7 10970 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
18442d08 10971 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
2d112de7 10972 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
18442d08
VS
10973}
10974
80715b2f
VS
10975static void update_scanline_offset(struct intel_crtc *crtc)
10976{
10977 struct drm_device *dev = crtc->base.dev;
10978
10979 /*
10980 * The scanline counter increments at the leading edge of hsync.
10981 *
10982 * On most platforms it starts counting from vtotal-1 on the
10983 * first active line. That means the scanline counter value is
10984 * always one less than what we would expect. Ie. just after
10985 * start of vblank, which also occurs at start of hsync (on the
10986 * last active line), the scanline counter will read vblank_start-1.
10987 *
10988 * On gen2 the scanline counter starts counting from 1 instead
10989 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
10990 * to keep the value positive), instead of adding one.
10991 *
10992 * On HSW+ the behaviour of the scanline counter depends on the output
10993 * type. For DP ports it behaves like most other platforms, but on HDMI
10994 * there's an extra 1 line difference. So we need to add two instead of
10995 * one to the value.
10996 */
10997 if (IS_GEN2(dev)) {
6e3c9717 10998 const struct drm_display_mode *mode = &crtc->config->base.adjusted_mode;
80715b2f
VS
10999 int vtotal;
11000
11001 vtotal = mode->crtc_vtotal;
11002 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
11003 vtotal /= 2;
11004
11005 crtc->scanline_offset = vtotal - 1;
11006 } else if (HAS_DDI(dev) &&
409ee761 11007 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
80715b2f
VS
11008 crtc->scanline_offset = 2;
11009 } else
11010 crtc->scanline_offset = 1;
11011}
11012
5cec258b 11013static struct intel_crtc_state *
7f27126e
JB
11014intel_modeset_compute_config(struct drm_crtc *crtc,
11015 struct drm_display_mode *mode,
11016 struct drm_framebuffer *fb,
11017 unsigned *modeset_pipes,
11018 unsigned *prepare_pipes,
11019 unsigned *disable_pipes)
11020{
5cec258b 11021 struct intel_crtc_state *pipe_config = NULL;
7f27126e
JB
11022
11023 intel_modeset_affected_pipes(crtc, modeset_pipes,
11024 prepare_pipes, disable_pipes);
11025
11026 if ((*modeset_pipes) == 0)
11027 goto out;
11028
11029 /*
11030 * Note this needs changes when we start tracking multiple modes
11031 * and crtcs. At that point we'll need to compute the whole config
11032 * (i.e. one pipe_config for each crtc) rather than just the one
11033 * for this crtc.
11034 */
11035 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
11036 if (IS_ERR(pipe_config)) {
11037 goto out;
11038 }
11039 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
11040 "[modeset]");
7f27126e
JB
11041
11042out:
11043 return pipe_config;
11044}
11045
ed6739ef
ACO
11046static int __intel_set_mode_setup_plls(struct drm_device *dev,
11047 unsigned modeset_pipes,
11048 unsigned disable_pipes)
11049{
11050 struct drm_i915_private *dev_priv = to_i915(dev);
11051 unsigned clear_pipes = modeset_pipes | disable_pipes;
11052 struct intel_crtc *intel_crtc;
11053 int ret = 0;
11054
11055 if (!dev_priv->display.crtc_compute_clock)
11056 return 0;
11057
11058 ret = intel_shared_dpll_start_config(dev_priv, clear_pipes);
11059 if (ret)
11060 goto done;
11061
11062 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
11063 struct intel_crtc_state *state = intel_crtc->new_config;
11064 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
11065 state);
11066 if (ret) {
11067 intel_shared_dpll_abort_config(dev_priv);
11068 goto done;
11069 }
11070 }
11071
11072done:
11073 return ret;
11074}
11075
f30da187
DV
11076static int __intel_set_mode(struct drm_crtc *crtc,
11077 struct drm_display_mode *mode,
7f27126e 11078 int x, int y, struct drm_framebuffer *fb,
5cec258b 11079 struct intel_crtc_state *pipe_config,
7f27126e
JB
11080 unsigned modeset_pipes,
11081 unsigned prepare_pipes,
11082 unsigned disable_pipes)
a6778b3c
DV
11083{
11084 struct drm_device *dev = crtc->dev;
fbee40df 11085 struct drm_i915_private *dev_priv = dev->dev_private;
4b4b9238 11086 struct drm_display_mode *saved_mode;
25c5b266 11087 struct intel_crtc *intel_crtc;
c0c36b94 11088 int ret = 0;
a6778b3c 11089
4b4b9238 11090 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
c0c36b94
CW
11091 if (!saved_mode)
11092 return -ENOMEM;
a6778b3c 11093
3ac18232 11094 *saved_mode = crtc->mode;
a6778b3c 11095
b9950a13
VS
11096 if (modeset_pipes)
11097 to_intel_crtc(crtc)->new_config = pipe_config;
11098
30a970c6
JB
11099 /*
11100 * See if the config requires any additional preparation, e.g.
11101 * to adjust global state with pipes off. We need to do this
11102 * here so we can get the modeset_pipe updated config for the new
11103 * mode set on this crtc. For other crtcs we need to use the
11104 * adjusted_mode bits in the crtc directly.
11105 */
c164f833 11106 if (IS_VALLEYVIEW(dev)) {
2f2d7aa1 11107 valleyview_modeset_global_pipes(dev, &prepare_pipes);
30a970c6 11108
c164f833
VS
11109 /* may have added more to prepare_pipes than we should */
11110 prepare_pipes &= ~disable_pipes;
11111 }
11112
ed6739ef
ACO
11113 ret = __intel_set_mode_setup_plls(dev, modeset_pipes, disable_pipes);
11114 if (ret)
11115 goto done;
8bd31e67 11116
460da916
DV
11117 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
11118 intel_crtc_disable(&intel_crtc->base);
11119
ea9d758d
DV
11120 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11121 if (intel_crtc->base.enabled)
11122 dev_priv->display.crtc_disable(&intel_crtc->base);
11123 }
a6778b3c 11124
6c4c86f5
DV
11125 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
11126 * to set it here already despite that we pass it down the callchain.
7f27126e
JB
11127 *
11128 * Note we'll need to fix this up when we start tracking multiple
11129 * pipes; here we assume a single modeset_pipe and only track the
11130 * single crtc and mode.
f6e5b160 11131 */
b8cecdf5 11132 if (modeset_pipes) {
25c5b266 11133 crtc->mode = *mode;
b8cecdf5
DV
11134 /* mode_set/enable/disable functions rely on a correct pipe
11135 * config. */
f5de6e07 11136 intel_crtc_set_state(to_intel_crtc(crtc), pipe_config);
c326c0a9
VS
11137
11138 /*
11139 * Calculate and store various constants which
11140 * are later needed by vblank and swap-completion
11141 * timestamping. They are derived from true hwmode.
11142 */
11143 drm_calc_timestamping_constants(crtc,
2d112de7 11144 &pipe_config->base.adjusted_mode);
b8cecdf5 11145 }
7758a113 11146
ea9d758d
DV
11147 /* Only after disabling all output pipelines that will be changed can we
11148 * update the the output configuration. */
11149 intel_modeset_update_state(dev, prepare_pipes);
f6e5b160 11150
50f6e502 11151 modeset_update_crtc_power_domains(dev);
47fab737 11152
a6778b3c
DV
11153 /* Set up the DPLL and any encoders state that needs to adjust or depend
11154 * on the DPLL.
f6e5b160 11155 */
25c5b266 11156 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
455a6808
GP
11157 struct drm_plane *primary = intel_crtc->base.primary;
11158 int vdisplay, hdisplay;
4c10794f 11159
455a6808
GP
11160 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
11161 ret = primary->funcs->update_plane(primary, &intel_crtc->base,
11162 fb, 0, 0,
11163 hdisplay, vdisplay,
11164 x << 16, y << 16,
11165 hdisplay << 16, vdisplay << 16);
a6778b3c
DV
11166 }
11167
11168 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
80715b2f
VS
11169 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11170 update_scanline_offset(intel_crtc);
11171
25c5b266 11172 dev_priv->display.crtc_enable(&intel_crtc->base);
80715b2f 11173 }
a6778b3c 11174
a6778b3c
DV
11175 /* FIXME: add subpixel order */
11176done:
4b4b9238 11177 if (ret && crtc->enabled)
3ac18232 11178 crtc->mode = *saved_mode;
a6778b3c 11179
3ac18232 11180 kfree(saved_mode);
a6778b3c 11181 return ret;
f6e5b160
CW
11182}
11183
7f27126e
JB
11184static int intel_set_mode_pipes(struct drm_crtc *crtc,
11185 struct drm_display_mode *mode,
11186 int x, int y, struct drm_framebuffer *fb,
5cec258b 11187 struct intel_crtc_state *pipe_config,
7f27126e
JB
11188 unsigned modeset_pipes,
11189 unsigned prepare_pipes,
11190 unsigned disable_pipes)
f30da187
DV
11191{
11192 int ret;
11193
7f27126e
JB
11194 ret = __intel_set_mode(crtc, mode, x, y, fb, pipe_config, modeset_pipes,
11195 prepare_pipes, disable_pipes);
f30da187
DV
11196
11197 if (ret == 0)
11198 intel_modeset_check_state(crtc->dev);
11199
11200 return ret;
11201}
11202
7f27126e
JB
11203static int intel_set_mode(struct drm_crtc *crtc,
11204 struct drm_display_mode *mode,
11205 int x, int y, struct drm_framebuffer *fb)
11206{
5cec258b 11207 struct intel_crtc_state *pipe_config;
7f27126e
JB
11208 unsigned modeset_pipes, prepare_pipes, disable_pipes;
11209
11210 pipe_config = intel_modeset_compute_config(crtc, mode, fb,
11211 &modeset_pipes,
11212 &prepare_pipes,
11213 &disable_pipes);
11214
11215 if (IS_ERR(pipe_config))
11216 return PTR_ERR(pipe_config);
11217
11218 return intel_set_mode_pipes(crtc, mode, x, y, fb, pipe_config,
11219 modeset_pipes, prepare_pipes,
11220 disable_pipes);
11221}
11222
c0c36b94
CW
11223void intel_crtc_restore_mode(struct drm_crtc *crtc)
11224{
f4510a27 11225 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
c0c36b94
CW
11226}
11227
25c5b266
DV
11228#undef for_each_intel_crtc_masked
11229
d9e55608
DV
11230static void intel_set_config_free(struct intel_set_config *config)
11231{
11232 if (!config)
11233 return;
11234
1aa4b628
DV
11235 kfree(config->save_connector_encoders);
11236 kfree(config->save_encoder_crtcs);
7668851f 11237 kfree(config->save_crtc_enabled);
d9e55608
DV
11238 kfree(config);
11239}
11240
85f9eb71
DV
11241static int intel_set_config_save_state(struct drm_device *dev,
11242 struct intel_set_config *config)
11243{
7668851f 11244 struct drm_crtc *crtc;
85f9eb71
DV
11245 struct drm_encoder *encoder;
11246 struct drm_connector *connector;
11247 int count;
11248
7668851f
VS
11249 config->save_crtc_enabled =
11250 kcalloc(dev->mode_config.num_crtc,
11251 sizeof(bool), GFP_KERNEL);
11252 if (!config->save_crtc_enabled)
11253 return -ENOMEM;
11254
1aa4b628
DV
11255 config->save_encoder_crtcs =
11256 kcalloc(dev->mode_config.num_encoder,
11257 sizeof(struct drm_crtc *), GFP_KERNEL);
11258 if (!config->save_encoder_crtcs)
85f9eb71
DV
11259 return -ENOMEM;
11260
1aa4b628
DV
11261 config->save_connector_encoders =
11262 kcalloc(dev->mode_config.num_connector,
11263 sizeof(struct drm_encoder *), GFP_KERNEL);
11264 if (!config->save_connector_encoders)
85f9eb71
DV
11265 return -ENOMEM;
11266
11267 /* Copy data. Note that driver private data is not affected.
11268 * Should anything bad happen only the expected state is
11269 * restored, not the drivers personal bookkeeping.
11270 */
7668851f 11271 count = 0;
70e1e0ec 11272 for_each_crtc(dev, crtc) {
7668851f
VS
11273 config->save_crtc_enabled[count++] = crtc->enabled;
11274 }
11275
85f9eb71
DV
11276 count = 0;
11277 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
1aa4b628 11278 config->save_encoder_crtcs[count++] = encoder->crtc;
85f9eb71
DV
11279 }
11280
11281 count = 0;
11282 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1aa4b628 11283 config->save_connector_encoders[count++] = connector->encoder;
85f9eb71
DV
11284 }
11285
11286 return 0;
11287}
11288
11289static void intel_set_config_restore_state(struct drm_device *dev,
11290 struct intel_set_config *config)
11291{
7668851f 11292 struct intel_crtc *crtc;
9a935856
DV
11293 struct intel_encoder *encoder;
11294 struct intel_connector *connector;
85f9eb71
DV
11295 int count;
11296
7668851f 11297 count = 0;
d3fcc808 11298 for_each_intel_crtc(dev, crtc) {
7668851f 11299 crtc->new_enabled = config->save_crtc_enabled[count++];
7bd0a8e7
VS
11300
11301 if (crtc->new_enabled)
6e3c9717 11302 crtc->new_config = crtc->config;
7bd0a8e7
VS
11303 else
11304 crtc->new_config = NULL;
7668851f
VS
11305 }
11306
85f9eb71 11307 count = 0;
b2784e15 11308 for_each_intel_encoder(dev, encoder) {
9a935856
DV
11309 encoder->new_crtc =
11310 to_intel_crtc(config->save_encoder_crtcs[count++]);
85f9eb71
DV
11311 }
11312
11313 count = 0;
9a935856
DV
11314 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11315 connector->new_encoder =
11316 to_intel_encoder(config->save_connector_encoders[count++]);
85f9eb71
DV
11317 }
11318}
11319
e3de42b6 11320static bool
2e57f47d 11321is_crtc_connector_off(struct drm_mode_set *set)
e3de42b6
ID
11322{
11323 int i;
11324
2e57f47d
CW
11325 if (set->num_connectors == 0)
11326 return false;
11327
11328 if (WARN_ON(set->connectors == NULL))
11329 return false;
11330
11331 for (i = 0; i < set->num_connectors; i++)
11332 if (set->connectors[i]->encoder &&
11333 set->connectors[i]->encoder->crtc == set->crtc &&
11334 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
e3de42b6
ID
11335 return true;
11336
11337 return false;
11338}
11339
5e2b584e
DV
11340static void
11341intel_set_config_compute_mode_changes(struct drm_mode_set *set,
11342 struct intel_set_config *config)
11343{
11344
11345 /* We should be able to check here if the fb has the same properties
11346 * and then just flip_or_move it */
2e57f47d
CW
11347 if (is_crtc_connector_off(set)) {
11348 config->mode_changed = true;
f4510a27 11349 } else if (set->crtc->primary->fb != set->fb) {
3b150f08
MR
11350 /*
11351 * If we have no fb, we can only flip as long as the crtc is
11352 * active, otherwise we need a full mode set. The crtc may
11353 * be active if we've only disabled the primary plane, or
11354 * in fastboot situations.
11355 */
f4510a27 11356 if (set->crtc->primary->fb == NULL) {
319d9827
JB
11357 struct intel_crtc *intel_crtc =
11358 to_intel_crtc(set->crtc);
11359
3b150f08 11360 if (intel_crtc->active) {
319d9827
JB
11361 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
11362 config->fb_changed = true;
11363 } else {
11364 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
11365 config->mode_changed = true;
11366 }
5e2b584e
DV
11367 } else if (set->fb == NULL) {
11368 config->mode_changed = true;
72f4901e 11369 } else if (set->fb->pixel_format !=
f4510a27 11370 set->crtc->primary->fb->pixel_format) {
5e2b584e 11371 config->mode_changed = true;
e3de42b6 11372 } else {
5e2b584e 11373 config->fb_changed = true;
e3de42b6 11374 }
5e2b584e
DV
11375 }
11376
835c5873 11377 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
5e2b584e
DV
11378 config->fb_changed = true;
11379
11380 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
11381 DRM_DEBUG_KMS("modes are different, full mode set\n");
11382 drm_mode_debug_printmodeline(&set->crtc->mode);
11383 drm_mode_debug_printmodeline(set->mode);
11384 config->mode_changed = true;
11385 }
a1d95703
CW
11386
11387 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
11388 set->crtc->base.id, config->mode_changed, config->fb_changed);
5e2b584e
DV
11389}
11390
2e431051 11391static int
9a935856
DV
11392intel_modeset_stage_output_state(struct drm_device *dev,
11393 struct drm_mode_set *set,
11394 struct intel_set_config *config)
50f56119 11395{
9a935856
DV
11396 struct intel_connector *connector;
11397 struct intel_encoder *encoder;
7668851f 11398 struct intel_crtc *crtc;
f3f08572 11399 int ro;
50f56119 11400
9abdda74 11401 /* The upper layers ensure that we either disable a crtc or have a list
9a935856
DV
11402 * of connectors. For paranoia, double-check this. */
11403 WARN_ON(!set->fb && (set->num_connectors != 0));
11404 WARN_ON(set->fb && (set->num_connectors == 0));
11405
9a935856
DV
11406 list_for_each_entry(connector, &dev->mode_config.connector_list,
11407 base.head) {
11408 /* Otherwise traverse passed in connector list and get encoders
11409 * for them. */
50f56119 11410 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856 11411 if (set->connectors[ro] == &connector->base) {
0e32b39c 11412 connector->new_encoder = intel_find_encoder(connector, to_intel_crtc(set->crtc)->pipe);
50f56119
DV
11413 break;
11414 }
11415 }
11416
9a935856
DV
11417 /* If we disable the crtc, disable all its connectors. Also, if
11418 * the connector is on the changing crtc but not on the new
11419 * connector list, disable it. */
11420 if ((!set->fb || ro == set->num_connectors) &&
11421 connector->base.encoder &&
11422 connector->base.encoder->crtc == set->crtc) {
11423 connector->new_encoder = NULL;
11424
11425 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
11426 connector->base.base.id,
c23cc417 11427 connector->base.name);
9a935856
DV
11428 }
11429
11430
11431 if (&connector->new_encoder->base != connector->base.encoder) {
50f56119 11432 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
5e2b584e 11433 config->mode_changed = true;
50f56119
DV
11434 }
11435 }
9a935856 11436 /* connector->new_encoder is now updated for all connectors. */
50f56119 11437
9a935856 11438 /* Update crtc of enabled connectors. */
9a935856
DV
11439 list_for_each_entry(connector, &dev->mode_config.connector_list,
11440 base.head) {
7668851f
VS
11441 struct drm_crtc *new_crtc;
11442
9a935856 11443 if (!connector->new_encoder)
50f56119
DV
11444 continue;
11445
9a935856 11446 new_crtc = connector->new_encoder->base.crtc;
50f56119
DV
11447
11448 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856 11449 if (set->connectors[ro] == &connector->base)
50f56119
DV
11450 new_crtc = set->crtc;
11451 }
11452
11453 /* Make sure the new CRTC will work with the encoder */
14509916
TR
11454 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
11455 new_crtc)) {
5e2b584e 11456 return -EINVAL;
50f56119 11457 }
0e32b39c 11458 connector->new_encoder->new_crtc = to_intel_crtc(new_crtc);
9a935856
DV
11459
11460 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
11461 connector->base.base.id,
c23cc417 11462 connector->base.name,
9a935856
DV
11463 new_crtc->base.id);
11464 }
11465
11466 /* Check for any encoders that needs to be disabled. */
b2784e15 11467 for_each_intel_encoder(dev, encoder) {
5a65f358 11468 int num_connectors = 0;
9a935856
DV
11469 list_for_each_entry(connector,
11470 &dev->mode_config.connector_list,
11471 base.head) {
11472 if (connector->new_encoder == encoder) {
11473 WARN_ON(!connector->new_encoder->new_crtc);
5a65f358 11474 num_connectors++;
9a935856
DV
11475 }
11476 }
5a65f358
PZ
11477
11478 if (num_connectors == 0)
11479 encoder->new_crtc = NULL;
11480 else if (num_connectors > 1)
11481 return -EINVAL;
11482
9a935856
DV
11483 /* Only now check for crtc changes so we don't miss encoders
11484 * that will be disabled. */
11485 if (&encoder->new_crtc->base != encoder->base.crtc) {
50f56119 11486 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
5e2b584e 11487 config->mode_changed = true;
50f56119
DV
11488 }
11489 }
9a935856 11490 /* Now we've also updated encoder->new_crtc for all encoders. */
0e32b39c
DA
11491 list_for_each_entry(connector, &dev->mode_config.connector_list,
11492 base.head) {
11493 if (connector->new_encoder)
11494 if (connector->new_encoder != connector->encoder)
11495 connector->encoder = connector->new_encoder;
11496 }
d3fcc808 11497 for_each_intel_crtc(dev, crtc) {
7668851f
VS
11498 crtc->new_enabled = false;
11499
b2784e15 11500 for_each_intel_encoder(dev, encoder) {
7668851f
VS
11501 if (encoder->new_crtc == crtc) {
11502 crtc->new_enabled = true;
11503 break;
11504 }
11505 }
11506
11507 if (crtc->new_enabled != crtc->base.enabled) {
11508 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
11509 crtc->new_enabled ? "en" : "dis");
11510 config->mode_changed = true;
11511 }
7bd0a8e7
VS
11512
11513 if (crtc->new_enabled)
6e3c9717 11514 crtc->new_config = crtc->config;
7bd0a8e7
VS
11515 else
11516 crtc->new_config = NULL;
7668851f
VS
11517 }
11518
2e431051
DV
11519 return 0;
11520}
11521
7d00a1f5
VS
11522static void disable_crtc_nofb(struct intel_crtc *crtc)
11523{
11524 struct drm_device *dev = crtc->base.dev;
11525 struct intel_encoder *encoder;
11526 struct intel_connector *connector;
11527
11528 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
11529 pipe_name(crtc->pipe));
11530
11531 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11532 if (connector->new_encoder &&
11533 connector->new_encoder->new_crtc == crtc)
11534 connector->new_encoder = NULL;
11535 }
11536
b2784e15 11537 for_each_intel_encoder(dev, encoder) {
7d00a1f5
VS
11538 if (encoder->new_crtc == crtc)
11539 encoder->new_crtc = NULL;
11540 }
11541
11542 crtc->new_enabled = false;
7bd0a8e7 11543 crtc->new_config = NULL;
7d00a1f5
VS
11544}
11545
2e431051
DV
11546static int intel_crtc_set_config(struct drm_mode_set *set)
11547{
11548 struct drm_device *dev;
2e431051
DV
11549 struct drm_mode_set save_set;
11550 struct intel_set_config *config;
5cec258b 11551 struct intel_crtc_state *pipe_config;
50f52756 11552 unsigned modeset_pipes, prepare_pipes, disable_pipes;
2e431051 11553 int ret;
2e431051 11554
8d3e375e
DV
11555 BUG_ON(!set);
11556 BUG_ON(!set->crtc);
11557 BUG_ON(!set->crtc->helper_private);
2e431051 11558
7e53f3a4
DV
11559 /* Enforce sane interface api - has been abused by the fb helper. */
11560 BUG_ON(!set->mode && set->fb);
11561 BUG_ON(set->fb && set->num_connectors == 0);
431e50f7 11562
2e431051
DV
11563 if (set->fb) {
11564 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
11565 set->crtc->base.id, set->fb->base.id,
11566 (int)set->num_connectors, set->x, set->y);
11567 } else {
11568 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
2e431051
DV
11569 }
11570
11571 dev = set->crtc->dev;
11572
11573 ret = -ENOMEM;
11574 config = kzalloc(sizeof(*config), GFP_KERNEL);
11575 if (!config)
11576 goto out_config;
11577
11578 ret = intel_set_config_save_state(dev, config);
11579 if (ret)
11580 goto out_config;
11581
11582 save_set.crtc = set->crtc;
11583 save_set.mode = &set->crtc->mode;
11584 save_set.x = set->crtc->x;
11585 save_set.y = set->crtc->y;
f4510a27 11586 save_set.fb = set->crtc->primary->fb;
2e431051
DV
11587
11588 /* Compute whether we need a full modeset, only an fb base update or no
11589 * change at all. In the future we might also check whether only the
11590 * mode changed, e.g. for LVDS where we only change the panel fitter in
11591 * such cases. */
11592 intel_set_config_compute_mode_changes(set, config);
11593
9a935856 11594 ret = intel_modeset_stage_output_state(dev, set, config);
2e431051
DV
11595 if (ret)
11596 goto fail;
11597
50f52756
JB
11598 pipe_config = intel_modeset_compute_config(set->crtc, set->mode,
11599 set->fb,
11600 &modeset_pipes,
11601 &prepare_pipes,
11602 &disable_pipes);
20664591 11603 if (IS_ERR(pipe_config)) {
6ac0483b 11604 ret = PTR_ERR(pipe_config);
50f52756 11605 goto fail;
20664591 11606 } else if (pipe_config) {
b9950a13 11607 if (pipe_config->has_audio !=
6e3c9717 11608 to_intel_crtc(set->crtc)->config->has_audio)
20664591
JB
11609 config->mode_changed = true;
11610
af15d2ce
JB
11611 /*
11612 * Note we have an issue here with infoframes: current code
11613 * only updates them on the full mode set path per hw
11614 * requirements. So here we should be checking for any
11615 * required changes and forcing a mode set.
11616 */
20664591 11617 }
50f52756
JB
11618
11619 /* set_mode will free it in the mode_changed case */
11620 if (!config->mode_changed)
11621 kfree(pipe_config);
11622
1f9954d0
JB
11623 intel_update_pipe_size(to_intel_crtc(set->crtc));
11624
5e2b584e 11625 if (config->mode_changed) {
50f52756
JB
11626 ret = intel_set_mode_pipes(set->crtc, set->mode,
11627 set->x, set->y, set->fb, pipe_config,
11628 modeset_pipes, prepare_pipes,
11629 disable_pipes);
5e2b584e 11630 } else if (config->fb_changed) {
3b150f08 11631 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
455a6808
GP
11632 struct drm_plane *primary = set->crtc->primary;
11633 int vdisplay, hdisplay;
3b150f08 11634
455a6808
GP
11635 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
11636 ret = primary->funcs->update_plane(primary, set->crtc, set->fb,
11637 0, 0, hdisplay, vdisplay,
11638 set->x << 16, set->y << 16,
11639 hdisplay << 16, vdisplay << 16);
3b150f08
MR
11640
11641 /*
11642 * We need to make sure the primary plane is re-enabled if it
11643 * has previously been turned off.
11644 */
11645 if (!intel_crtc->primary_enabled && ret == 0) {
11646 WARN_ON(!intel_crtc->active);
fdd508a6 11647 intel_enable_primary_hw_plane(set->crtc->primary, set->crtc);
3b150f08
MR
11648 }
11649
7ca51a3a
JB
11650 /*
11651 * In the fastboot case this may be our only check of the
11652 * state after boot. It would be better to only do it on
11653 * the first update, but we don't have a nice way of doing that
11654 * (and really, set_config isn't used much for high freq page
11655 * flipping, so increasing its cost here shouldn't be a big
11656 * deal).
11657 */
d330a953 11658 if (i915.fastboot && ret == 0)
7ca51a3a 11659 intel_modeset_check_state(set->crtc->dev);
50f56119
DV
11660 }
11661
2d05eae1 11662 if (ret) {
bf67dfeb
DV
11663 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
11664 set->crtc->base.id, ret);
50f56119 11665fail:
2d05eae1 11666 intel_set_config_restore_state(dev, config);
50f56119 11667
7d00a1f5
VS
11668 /*
11669 * HACK: if the pipe was on, but we didn't have a framebuffer,
11670 * force the pipe off to avoid oopsing in the modeset code
11671 * due to fb==NULL. This should only happen during boot since
11672 * we don't yet reconstruct the FB from the hardware state.
11673 */
11674 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
11675 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
11676
2d05eae1
CW
11677 /* Try to restore the config */
11678 if (config->mode_changed &&
11679 intel_set_mode(save_set.crtc, save_set.mode,
11680 save_set.x, save_set.y, save_set.fb))
11681 DRM_ERROR("failed to restore config after modeset failure\n");
11682 }
50f56119 11683
d9e55608
DV
11684out_config:
11685 intel_set_config_free(config);
50f56119
DV
11686 return ret;
11687}
f6e5b160
CW
11688
11689static const struct drm_crtc_funcs intel_crtc_funcs = {
f6e5b160 11690 .gamma_set = intel_crtc_gamma_set,
50f56119 11691 .set_config = intel_crtc_set_config,
f6e5b160
CW
11692 .destroy = intel_crtc_destroy,
11693 .page_flip = intel_crtc_page_flip,
1356837e
MR
11694 .atomic_duplicate_state = intel_crtc_duplicate_state,
11695 .atomic_destroy_state = intel_crtc_destroy_state,
f6e5b160
CW
11696};
11697
5358901f
DV
11698static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
11699 struct intel_shared_dpll *pll,
11700 struct intel_dpll_hw_state *hw_state)
ee7b9f93 11701{
5358901f 11702 uint32_t val;
ee7b9f93 11703
f458ebbc 11704 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
bd2bb1b9
PZ
11705 return false;
11706
5358901f 11707 val = I915_READ(PCH_DPLL(pll->id));
66e985c0
DV
11708 hw_state->dpll = val;
11709 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
11710 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
5358901f
DV
11711
11712 return val & DPLL_VCO_ENABLE;
11713}
11714
15bdd4cf
DV
11715static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
11716 struct intel_shared_dpll *pll)
11717{
3e369b76
ACO
11718 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
11719 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
15bdd4cf
DV
11720}
11721
e7b903d2
DV
11722static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
11723 struct intel_shared_dpll *pll)
11724{
e7b903d2 11725 /* PCH refclock must be enabled first */
89eff4be 11726 ibx_assert_pch_refclk_enabled(dev_priv);
e7b903d2 11727
3e369b76 11728 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
15bdd4cf
DV
11729
11730 /* Wait for the clocks to stabilize. */
11731 POSTING_READ(PCH_DPLL(pll->id));
11732 udelay(150);
11733
11734 /* The pixel multiplier can only be updated once the
11735 * DPLL is enabled and the clocks are stable.
11736 *
11737 * So write it again.
11738 */
3e369b76 11739 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
15bdd4cf 11740 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
11741 udelay(200);
11742}
11743
11744static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
11745 struct intel_shared_dpll *pll)
11746{
11747 struct drm_device *dev = dev_priv->dev;
11748 struct intel_crtc *crtc;
e7b903d2
DV
11749
11750 /* Make sure no transcoder isn't still depending on us. */
d3fcc808 11751 for_each_intel_crtc(dev, crtc) {
e7b903d2
DV
11752 if (intel_crtc_to_shared_dpll(crtc) == pll)
11753 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
ee7b9f93
JB
11754 }
11755
15bdd4cf
DV
11756 I915_WRITE(PCH_DPLL(pll->id), 0);
11757 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
11758 udelay(200);
11759}
11760
46edb027
DV
11761static char *ibx_pch_dpll_names[] = {
11762 "PCH DPLL A",
11763 "PCH DPLL B",
11764};
11765
7c74ade1 11766static void ibx_pch_dpll_init(struct drm_device *dev)
ee7b9f93 11767{
e7b903d2 11768 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93
JB
11769 int i;
11770
7c74ade1 11771 dev_priv->num_shared_dpll = 2;
ee7b9f93 11772
e72f9fbf 11773 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
46edb027
DV
11774 dev_priv->shared_dplls[i].id = i;
11775 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
15bdd4cf 11776 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
e7b903d2
DV
11777 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
11778 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
5358901f
DV
11779 dev_priv->shared_dplls[i].get_hw_state =
11780 ibx_pch_dpll_get_hw_state;
ee7b9f93
JB
11781 }
11782}
11783
7c74ade1
DV
11784static void intel_shared_dpll_init(struct drm_device *dev)
11785{
e7b903d2 11786 struct drm_i915_private *dev_priv = dev->dev_private;
7c74ade1 11787
9cd86933
DV
11788 if (HAS_DDI(dev))
11789 intel_ddi_pll_init(dev);
11790 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7c74ade1
DV
11791 ibx_pch_dpll_init(dev);
11792 else
11793 dev_priv->num_shared_dpll = 0;
11794
11795 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
7c74ade1
DV
11796}
11797
6beb8c23
MR
11798/**
11799 * intel_prepare_plane_fb - Prepare fb for usage on plane
11800 * @plane: drm plane to prepare for
11801 * @fb: framebuffer to prepare for presentation
11802 *
11803 * Prepares a framebuffer for usage on a display plane. Generally this
11804 * involves pinning the underlying object and updating the frontbuffer tracking
11805 * bits. Some older platforms need special physical address handling for
11806 * cursor planes.
11807 *
11808 * Returns 0 on success, negative error code on failure.
11809 */
11810int
11811intel_prepare_plane_fb(struct drm_plane *plane,
11812 struct drm_framebuffer *fb)
465c120c
MR
11813{
11814 struct drm_device *dev = plane->dev;
6beb8c23
MR
11815 struct intel_plane *intel_plane = to_intel_plane(plane);
11816 enum pipe pipe = intel_plane->pipe;
11817 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11818 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
11819 unsigned frontbuffer_bits = 0;
11820 int ret = 0;
465c120c 11821
ea2c67bb 11822 if (!obj)
465c120c
MR
11823 return 0;
11824
6beb8c23
MR
11825 switch (plane->type) {
11826 case DRM_PLANE_TYPE_PRIMARY:
11827 frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(pipe);
11828 break;
11829 case DRM_PLANE_TYPE_CURSOR:
11830 frontbuffer_bits = INTEL_FRONTBUFFER_CURSOR(pipe);
11831 break;
11832 case DRM_PLANE_TYPE_OVERLAY:
11833 frontbuffer_bits = INTEL_FRONTBUFFER_SPRITE(pipe);
11834 break;
11835 }
465c120c 11836
6beb8c23 11837 mutex_lock(&dev->struct_mutex);
465c120c 11838
6beb8c23
MR
11839 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
11840 INTEL_INFO(dev)->cursor_needs_physical) {
11841 int align = IS_I830(dev) ? 16 * 1024 : 256;
11842 ret = i915_gem_object_attach_phys(obj, align);
11843 if (ret)
11844 DRM_DEBUG_KMS("failed to attach phys object\n");
11845 } else {
11846 ret = intel_pin_and_fence_fb_obj(plane, fb, NULL);
11847 }
465c120c 11848
6beb8c23
MR
11849 if (ret == 0)
11850 i915_gem_track_fb(old_obj, obj, frontbuffer_bits);
fdd508a6 11851
4c34574f 11852 mutex_unlock(&dev->struct_mutex);
465c120c 11853
6beb8c23
MR
11854 return ret;
11855}
11856
38f3ce3a
MR
11857/**
11858 * intel_cleanup_plane_fb - Cleans up an fb after plane use
11859 * @plane: drm plane to clean up for
11860 * @fb: old framebuffer that was on plane
11861 *
11862 * Cleans up a framebuffer that has just been removed from a plane.
11863 */
11864void
11865intel_cleanup_plane_fb(struct drm_plane *plane,
11866 struct drm_framebuffer *fb)
11867{
11868 struct drm_device *dev = plane->dev;
11869 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11870
11871 if (WARN_ON(!obj))
11872 return;
11873
11874 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
11875 !INTEL_INFO(dev)->cursor_needs_physical) {
11876 mutex_lock(&dev->struct_mutex);
11877 intel_unpin_fb_obj(obj);
11878 mutex_unlock(&dev->struct_mutex);
11879 }
465c120c
MR
11880}
11881
11882static int
3c692a41
GP
11883intel_check_primary_plane(struct drm_plane *plane,
11884 struct intel_plane_state *state)
11885{
32b7eeec
MR
11886 struct drm_device *dev = plane->dev;
11887 struct drm_i915_private *dev_priv = dev->dev_private;
2b875c22 11888 struct drm_crtc *crtc = state->base.crtc;
ea2c67bb 11889 struct intel_crtc *intel_crtc;
2b875c22 11890 struct drm_framebuffer *fb = state->base.fb;
3c692a41
GP
11891 struct drm_rect *dest = &state->dst;
11892 struct drm_rect *src = &state->src;
11893 const struct drm_rect *clip = &state->clip;
465c120c
MR
11894 int ret;
11895
ea2c67bb
MR
11896 crtc = crtc ? crtc : plane->crtc;
11897 intel_crtc = to_intel_crtc(crtc);
11898
c59cb179
MR
11899 ret = drm_plane_helper_check_update(plane, crtc, fb,
11900 src, dest, clip,
11901 DRM_PLANE_HELPER_NO_SCALING,
11902 DRM_PLANE_HELPER_NO_SCALING,
11903 false, true, &state->visible);
11904 if (ret)
11905 return ret;
465c120c 11906
32b7eeec
MR
11907 if (intel_crtc->active) {
11908 intel_crtc->atomic.wait_for_flips = true;
11909
11910 /*
11911 * FBC does not work on some platforms for rotated
11912 * planes, so disable it when rotation is not 0 and
11913 * update it when rotation is set back to 0.
11914 *
11915 * FIXME: This is redundant with the fbc update done in
11916 * the primary plane enable function except that that
11917 * one is done too late. We eventually need to unify
11918 * this.
11919 */
11920 if (intel_crtc->primary_enabled &&
11921 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11922 dev_priv->fbc.plane == intel_crtc->plane &&
8e7d688b 11923 state->base.rotation != BIT(DRM_ROTATE_0)) {
32b7eeec
MR
11924 intel_crtc->atomic.disable_fbc = true;
11925 }
11926
11927 if (state->visible) {
11928 /*
11929 * BDW signals flip done immediately if the plane
11930 * is disabled, even if the plane enable is already
11931 * armed to occur at the next vblank :(
11932 */
11933 if (IS_BROADWELL(dev) && !intel_crtc->primary_enabled)
11934 intel_crtc->atomic.wait_vblank = true;
11935 }
11936
11937 intel_crtc->atomic.fb_bits |=
11938 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
11939
11940 intel_crtc->atomic.update_fbc = true;
ccc759dc
GP
11941 }
11942
14af293f
GP
11943 return 0;
11944}
11945
11946static void
11947intel_commit_primary_plane(struct drm_plane *plane,
11948 struct intel_plane_state *state)
11949{
2b875c22
MR
11950 struct drm_crtc *crtc = state->base.crtc;
11951 struct drm_framebuffer *fb = state->base.fb;
11952 struct drm_device *dev = plane->dev;
14af293f 11953 struct drm_i915_private *dev_priv = dev->dev_private;
ea2c67bb 11954 struct intel_crtc *intel_crtc;
14af293f 11955 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
14af293f
GP
11956 struct intel_plane *intel_plane = to_intel_plane(plane);
11957 struct drm_rect *src = &state->src;
11958
ea2c67bb
MR
11959 crtc = crtc ? crtc : plane->crtc;
11960 intel_crtc = to_intel_crtc(crtc);
cf4c7c12
MR
11961
11962 plane->fb = fb;
9dc806fc
MR
11963 crtc->x = src->x1 >> 16;
11964 crtc->y = src->y1 >> 16;
ccc759dc 11965
ccc759dc 11966 intel_plane->obj = obj;
4c34574f 11967
ccc759dc 11968 if (intel_crtc->active) {
ccc759dc 11969 if (state->visible) {
ccc759dc
GP
11970 /* FIXME: kill this fastboot hack */
11971 intel_update_pipe_size(intel_crtc);
465c120c 11972
ccc759dc 11973 intel_crtc->primary_enabled = true;
465c120c 11974
ccc759dc
GP
11975 dev_priv->display.update_primary_plane(crtc, plane->fb,
11976 crtc->x, crtc->y);
ccc759dc
GP
11977 } else {
11978 /*
11979 * If clipping results in a non-visible primary plane,
11980 * we'll disable the primary plane. Note that this is
11981 * a bit different than what happens if userspace
11982 * explicitly disables the plane by passing fb=0
11983 * because plane->fb still gets set and pinned.
11984 */
11985 intel_disable_primary_hw_plane(plane, crtc);
48404c1e 11986 }
ccc759dc 11987 }
465c120c
MR
11988}
11989
32b7eeec 11990static void intel_begin_crtc_commit(struct drm_crtc *crtc)
3c692a41 11991{
32b7eeec 11992 struct drm_device *dev = crtc->dev;
140fd38d 11993 struct drm_i915_private *dev_priv = dev->dev_private;
3c692a41 11994 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ea2c67bb
MR
11995 struct intel_plane *intel_plane;
11996 struct drm_plane *p;
11997 unsigned fb_bits = 0;
11998
11999 /* Track fb's for any planes being disabled */
12000 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
12001 intel_plane = to_intel_plane(p);
12002
12003 if (intel_crtc->atomic.disabled_planes &
12004 (1 << drm_plane_index(p))) {
12005 switch (p->type) {
12006 case DRM_PLANE_TYPE_PRIMARY:
12007 fb_bits = INTEL_FRONTBUFFER_PRIMARY(intel_plane->pipe);
12008 break;
12009 case DRM_PLANE_TYPE_CURSOR:
12010 fb_bits = INTEL_FRONTBUFFER_CURSOR(intel_plane->pipe);
12011 break;
12012 case DRM_PLANE_TYPE_OVERLAY:
12013 fb_bits = INTEL_FRONTBUFFER_SPRITE(intel_plane->pipe);
12014 break;
12015 }
3c692a41 12016
ea2c67bb
MR
12017 mutex_lock(&dev->struct_mutex);
12018 i915_gem_track_fb(intel_fb_obj(p->fb), NULL, fb_bits);
12019 mutex_unlock(&dev->struct_mutex);
12020 }
12021 }
3c692a41 12022
32b7eeec
MR
12023 if (intel_crtc->atomic.wait_for_flips)
12024 intel_crtc_wait_for_pending_flips(crtc);
3c692a41 12025
32b7eeec
MR
12026 if (intel_crtc->atomic.disable_fbc)
12027 intel_fbc_disable(dev);
3c692a41 12028
32b7eeec
MR
12029 if (intel_crtc->atomic.pre_disable_primary)
12030 intel_pre_disable_primary(crtc);
3c692a41 12031
32b7eeec
MR
12032 if (intel_crtc->atomic.update_wm)
12033 intel_update_watermarks(crtc);
3c692a41 12034
32b7eeec 12035 intel_runtime_pm_get(dev_priv);
3c692a41 12036
c34c9ee4
MR
12037 /* Perform vblank evasion around commit operation */
12038 if (intel_crtc->active)
12039 intel_crtc->atomic.evade =
12040 intel_pipe_update_start(intel_crtc,
12041 &intel_crtc->atomic.start_vbl_count);
32b7eeec
MR
12042}
12043
12044static void intel_finish_crtc_commit(struct drm_crtc *crtc)
12045{
12046 struct drm_device *dev = crtc->dev;
12047 struct drm_i915_private *dev_priv = dev->dev_private;
12048 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12049 struct drm_plane *p;
12050
c34c9ee4
MR
12051 if (intel_crtc->atomic.evade)
12052 intel_pipe_update_end(intel_crtc,
12053 intel_crtc->atomic.start_vbl_count);
3c692a41 12054
140fd38d 12055 intel_runtime_pm_put(dev_priv);
3c692a41 12056
32b7eeec
MR
12057 if (intel_crtc->atomic.wait_vblank)
12058 intel_wait_for_vblank(dev, intel_crtc->pipe);
12059
12060 intel_frontbuffer_flip(dev, intel_crtc->atomic.fb_bits);
12061
12062 if (intel_crtc->atomic.update_fbc) {
ccc759dc 12063 mutex_lock(&dev->struct_mutex);
7ff0ebcc 12064 intel_fbc_update(dev);
ccc759dc 12065 mutex_unlock(&dev->struct_mutex);
38f3ce3a 12066 }
3c692a41 12067
32b7eeec
MR
12068 if (intel_crtc->atomic.post_enable_primary)
12069 intel_post_enable_primary(crtc);
3c692a41 12070
32b7eeec
MR
12071 drm_for_each_legacy_plane(p, &dev->mode_config.plane_list)
12072 if (intel_crtc->atomic.update_sprite_watermarks & drm_plane_index(p))
12073 intel_update_sprite_watermarks(p, crtc, 0, 0, 0,
12074 false, false);
12075
12076 memset(&intel_crtc->atomic, 0, sizeof(intel_crtc->atomic));
3c692a41
GP
12077}
12078
cf4c7c12 12079/**
4a3b8769
MR
12080 * intel_plane_destroy - destroy a plane
12081 * @plane: plane to destroy
cf4c7c12 12082 *
4a3b8769
MR
12083 * Common destruction function for all types of planes (primary, cursor,
12084 * sprite).
cf4c7c12 12085 */
4a3b8769 12086void intel_plane_destroy(struct drm_plane *plane)
465c120c
MR
12087{
12088 struct intel_plane *intel_plane = to_intel_plane(plane);
12089 drm_plane_cleanup(plane);
12090 kfree(intel_plane);
12091}
12092
65a3fea0 12093const struct drm_plane_funcs intel_plane_funcs = {
3f678c96
MR
12094 .update_plane = drm_atomic_helper_update_plane,
12095 .disable_plane = drm_atomic_helper_disable_plane,
3d7d6510 12096 .destroy = intel_plane_destroy,
c196e1d6 12097 .set_property = drm_atomic_helper_plane_set_property,
a98b3431
MR
12098 .atomic_get_property = intel_plane_atomic_get_property,
12099 .atomic_set_property = intel_plane_atomic_set_property,
ea2c67bb
MR
12100 .atomic_duplicate_state = intel_plane_duplicate_state,
12101 .atomic_destroy_state = intel_plane_destroy_state,
12102
465c120c
MR
12103};
12104
12105static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
12106 int pipe)
12107{
12108 struct intel_plane *primary;
8e7d688b 12109 struct intel_plane_state *state;
465c120c
MR
12110 const uint32_t *intel_primary_formats;
12111 int num_formats;
12112
12113 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
12114 if (primary == NULL)
12115 return NULL;
12116
8e7d688b
MR
12117 state = intel_create_plane_state(&primary->base);
12118 if (!state) {
ea2c67bb
MR
12119 kfree(primary);
12120 return NULL;
12121 }
8e7d688b 12122 primary->base.state = &state->base;
ea2c67bb 12123
465c120c
MR
12124 primary->can_scale = false;
12125 primary->max_downscale = 1;
12126 primary->pipe = pipe;
12127 primary->plane = pipe;
c59cb179
MR
12128 primary->check_plane = intel_check_primary_plane;
12129 primary->commit_plane = intel_commit_primary_plane;
465c120c
MR
12130 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
12131 primary->plane = !pipe;
12132
12133 if (INTEL_INFO(dev)->gen <= 3) {
12134 intel_primary_formats = intel_primary_formats_gen2;
12135 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
12136 } else {
12137 intel_primary_formats = intel_primary_formats_gen4;
12138 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
12139 }
12140
12141 drm_universal_plane_init(dev, &primary->base, 0,
65a3fea0 12142 &intel_plane_funcs,
465c120c
MR
12143 intel_primary_formats, num_formats,
12144 DRM_PLANE_TYPE_PRIMARY);
48404c1e
SJ
12145
12146 if (INTEL_INFO(dev)->gen >= 4) {
12147 if (!dev->mode_config.rotation_property)
12148 dev->mode_config.rotation_property =
12149 drm_mode_create_rotation_property(dev,
12150 BIT(DRM_ROTATE_0) |
12151 BIT(DRM_ROTATE_180));
12152 if (dev->mode_config.rotation_property)
12153 drm_object_attach_property(&primary->base.base,
12154 dev->mode_config.rotation_property,
8e7d688b 12155 state->base.rotation);
48404c1e
SJ
12156 }
12157
ea2c67bb
MR
12158 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
12159
465c120c
MR
12160 return &primary->base;
12161}
12162
3d7d6510 12163static int
852e787c
GP
12164intel_check_cursor_plane(struct drm_plane *plane,
12165 struct intel_plane_state *state)
3d7d6510 12166{
2b875c22 12167 struct drm_crtc *crtc = state->base.crtc;
ea2c67bb 12168 struct drm_device *dev = plane->dev;
2b875c22 12169 struct drm_framebuffer *fb = state->base.fb;
852e787c
GP
12170 struct drm_rect *dest = &state->dst;
12171 struct drm_rect *src = &state->src;
12172 const struct drm_rect *clip = &state->clip;
757f9a3e 12173 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
ea2c67bb 12174 struct intel_crtc *intel_crtc;
757f9a3e
GP
12175 unsigned stride;
12176 int ret;
3d7d6510 12177
ea2c67bb
MR
12178 crtc = crtc ? crtc : plane->crtc;
12179 intel_crtc = to_intel_crtc(crtc);
12180
757f9a3e 12181 ret = drm_plane_helper_check_update(plane, crtc, fb,
852e787c 12182 src, dest, clip,
3d7d6510
MR
12183 DRM_PLANE_HELPER_NO_SCALING,
12184 DRM_PLANE_HELPER_NO_SCALING,
852e787c 12185 true, true, &state->visible);
757f9a3e
GP
12186 if (ret)
12187 return ret;
12188
12189
12190 /* if we want to turn off the cursor ignore width and height */
12191 if (!obj)
32b7eeec 12192 goto finish;
757f9a3e 12193
757f9a3e 12194 /* Check for which cursor types we support */
ea2c67bb
MR
12195 if (!cursor_size_ok(dev, state->base.crtc_w, state->base.crtc_h)) {
12196 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
12197 state->base.crtc_w, state->base.crtc_h);
757f9a3e
GP
12198 return -EINVAL;
12199 }
12200
ea2c67bb
MR
12201 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
12202 if (obj->base.size < stride * state->base.crtc_h) {
757f9a3e
GP
12203 DRM_DEBUG_KMS("buffer is too small\n");
12204 return -ENOMEM;
12205 }
12206
e391ea88
GP
12207 if (fb == crtc->cursor->fb)
12208 return 0;
12209
757f9a3e
GP
12210 /* we only need to pin inside GTT if cursor is non-phy */
12211 mutex_lock(&dev->struct_mutex);
12212 if (!INTEL_INFO(dev)->cursor_needs_physical && obj->tiling_mode) {
12213 DRM_DEBUG_KMS("cursor cannot be tiled\n");
12214 ret = -EINVAL;
12215 }
12216 mutex_unlock(&dev->struct_mutex);
12217
32b7eeec
MR
12218finish:
12219 if (intel_crtc->active) {
ea2c67bb 12220 if (intel_crtc->cursor_width != state->base.crtc_w)
32b7eeec
MR
12221 intel_crtc->atomic.update_wm = true;
12222
12223 intel_crtc->atomic.fb_bits |=
12224 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe);
12225 }
12226
757f9a3e 12227 return ret;
852e787c 12228}
3d7d6510 12229
f4a2cf29 12230static void
852e787c
GP
12231intel_commit_cursor_plane(struct drm_plane *plane,
12232 struct intel_plane_state *state)
12233{
2b875c22 12234 struct drm_crtc *crtc = state->base.crtc;
ea2c67bb
MR
12235 struct drm_device *dev = plane->dev;
12236 struct intel_crtc *intel_crtc;
a919db90 12237 struct intel_plane *intel_plane = to_intel_plane(plane);
2b875c22 12238 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
a912f12f 12239 uint32_t addr;
852e787c 12240
ea2c67bb
MR
12241 crtc = crtc ? crtc : plane->crtc;
12242 intel_crtc = to_intel_crtc(crtc);
12243
2b875c22 12244 plane->fb = state->base.fb;
ea2c67bb
MR
12245 crtc->cursor_x = state->base.crtc_x;
12246 crtc->cursor_y = state->base.crtc_y;
12247
a919db90
SJ
12248 intel_plane->obj = obj;
12249
a912f12f
GP
12250 if (intel_crtc->cursor_bo == obj)
12251 goto update;
4ed91096 12252
f4a2cf29 12253 if (!obj)
a912f12f 12254 addr = 0;
f4a2cf29 12255 else if (!INTEL_INFO(dev)->cursor_needs_physical)
a912f12f 12256 addr = i915_gem_obj_ggtt_offset(obj);
f4a2cf29 12257 else
a912f12f 12258 addr = obj->phys_handle->busaddr;
852e787c 12259
a912f12f
GP
12260 intel_crtc->cursor_addr = addr;
12261 intel_crtc->cursor_bo = obj;
12262update:
ea2c67bb
MR
12263 intel_crtc->cursor_width = state->base.crtc_w;
12264 intel_crtc->cursor_height = state->base.crtc_h;
852e787c 12265
32b7eeec 12266 if (intel_crtc->active)
a912f12f 12267 intel_crtc_update_cursor(crtc, state->visible);
852e787c
GP
12268}
12269
3d7d6510
MR
12270static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
12271 int pipe)
12272{
12273 struct intel_plane *cursor;
8e7d688b 12274 struct intel_plane_state *state;
3d7d6510
MR
12275
12276 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
12277 if (cursor == NULL)
12278 return NULL;
12279
8e7d688b
MR
12280 state = intel_create_plane_state(&cursor->base);
12281 if (!state) {
ea2c67bb
MR
12282 kfree(cursor);
12283 return NULL;
12284 }
8e7d688b 12285 cursor->base.state = &state->base;
ea2c67bb 12286
3d7d6510
MR
12287 cursor->can_scale = false;
12288 cursor->max_downscale = 1;
12289 cursor->pipe = pipe;
12290 cursor->plane = pipe;
c59cb179
MR
12291 cursor->check_plane = intel_check_cursor_plane;
12292 cursor->commit_plane = intel_commit_cursor_plane;
3d7d6510
MR
12293
12294 drm_universal_plane_init(dev, &cursor->base, 0,
65a3fea0 12295 &intel_plane_funcs,
3d7d6510
MR
12296 intel_cursor_formats,
12297 ARRAY_SIZE(intel_cursor_formats),
12298 DRM_PLANE_TYPE_CURSOR);
4398ad45
VS
12299
12300 if (INTEL_INFO(dev)->gen >= 4) {
12301 if (!dev->mode_config.rotation_property)
12302 dev->mode_config.rotation_property =
12303 drm_mode_create_rotation_property(dev,
12304 BIT(DRM_ROTATE_0) |
12305 BIT(DRM_ROTATE_180));
12306 if (dev->mode_config.rotation_property)
12307 drm_object_attach_property(&cursor->base.base,
12308 dev->mode_config.rotation_property,
8e7d688b 12309 state->base.rotation);
4398ad45
VS
12310 }
12311
ea2c67bb
MR
12312 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
12313
3d7d6510
MR
12314 return &cursor->base;
12315}
12316
b358d0a6 12317static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 12318{
fbee40df 12319 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 12320 struct intel_crtc *intel_crtc;
f5de6e07 12321 struct intel_crtc_state *crtc_state = NULL;
3d7d6510
MR
12322 struct drm_plane *primary = NULL;
12323 struct drm_plane *cursor = NULL;
465c120c 12324 int i, ret;
79e53945 12325
955382f3 12326 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
79e53945
JB
12327 if (intel_crtc == NULL)
12328 return;
12329
f5de6e07
ACO
12330 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
12331 if (!crtc_state)
12332 goto fail;
12333 intel_crtc_set_state(intel_crtc, crtc_state);
12334
465c120c 12335 primary = intel_primary_plane_create(dev, pipe);
3d7d6510
MR
12336 if (!primary)
12337 goto fail;
12338
12339 cursor = intel_cursor_plane_create(dev, pipe);
12340 if (!cursor)
12341 goto fail;
12342
465c120c 12343 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
3d7d6510
MR
12344 cursor, &intel_crtc_funcs);
12345 if (ret)
12346 goto fail;
79e53945
JB
12347
12348 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
79e53945
JB
12349 for (i = 0; i < 256; i++) {
12350 intel_crtc->lut_r[i] = i;
12351 intel_crtc->lut_g[i] = i;
12352 intel_crtc->lut_b[i] = i;
12353 }
12354
1f1c2e24
VS
12355 /*
12356 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
8c0f92e1 12357 * is hooked to pipe B. Hence we want plane A feeding pipe B.
1f1c2e24 12358 */
80824003
JB
12359 intel_crtc->pipe = pipe;
12360 intel_crtc->plane = pipe;
3a77c4c4 12361 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
28c97730 12362 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 12363 intel_crtc->plane = !pipe;
80824003
JB
12364 }
12365
4b0e333e
CW
12366 intel_crtc->cursor_base = ~0;
12367 intel_crtc->cursor_cntl = ~0;
dc41c154 12368 intel_crtc->cursor_size = ~0;
8d7849db 12369
22fd0fab
JB
12370 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
12371 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
12372 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
12373 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
12374
9362c7c5
ACO
12375 INIT_WORK(&intel_crtc->mmio_flip.work, intel_mmio_flip_work_func);
12376
79e53945 12377 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
87b6b101
DV
12378
12379 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
3d7d6510
MR
12380 return;
12381
12382fail:
12383 if (primary)
12384 drm_plane_cleanup(primary);
12385 if (cursor)
12386 drm_plane_cleanup(cursor);
f5de6e07 12387 kfree(crtc_state);
3d7d6510 12388 kfree(intel_crtc);
79e53945
JB
12389}
12390
752aa88a
JB
12391enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
12392{
12393 struct drm_encoder *encoder = connector->base.encoder;
6e9f798d 12394 struct drm_device *dev = connector->base.dev;
752aa88a 12395
51fd371b 12396 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
752aa88a 12397
d3babd3f 12398 if (!encoder || WARN_ON(!encoder->crtc))
752aa88a
JB
12399 return INVALID_PIPE;
12400
12401 return to_intel_crtc(encoder->crtc)->pipe;
12402}
12403
08d7b3d1 12404int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 12405 struct drm_file *file)
08d7b3d1 12406{
08d7b3d1 12407 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
7707e653 12408 struct drm_crtc *drmmode_crtc;
c05422d5 12409 struct intel_crtc *crtc;
08d7b3d1 12410
1cff8f6b
DV
12411 if (!drm_core_check_feature(dev, DRIVER_MODESET))
12412 return -ENODEV;
08d7b3d1 12413
7707e653 12414 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
08d7b3d1 12415
7707e653 12416 if (!drmmode_crtc) {
08d7b3d1 12417 DRM_ERROR("no such CRTC id\n");
3f2c2057 12418 return -ENOENT;
08d7b3d1
CW
12419 }
12420
7707e653 12421 crtc = to_intel_crtc(drmmode_crtc);
c05422d5 12422 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 12423
c05422d5 12424 return 0;
08d7b3d1
CW
12425}
12426
66a9278e 12427static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 12428{
66a9278e
DV
12429 struct drm_device *dev = encoder->base.dev;
12430 struct intel_encoder *source_encoder;
79e53945 12431 int index_mask = 0;
79e53945
JB
12432 int entry = 0;
12433
b2784e15 12434 for_each_intel_encoder(dev, source_encoder) {
bc079e8b 12435 if (encoders_cloneable(encoder, source_encoder))
66a9278e
DV
12436 index_mask |= (1 << entry);
12437
79e53945
JB
12438 entry++;
12439 }
4ef69c7a 12440
79e53945
JB
12441 return index_mask;
12442}
12443
4d302442
CW
12444static bool has_edp_a(struct drm_device *dev)
12445{
12446 struct drm_i915_private *dev_priv = dev->dev_private;
12447
12448 if (!IS_MOBILE(dev))
12449 return false;
12450
12451 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
12452 return false;
12453
e3589908 12454 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
4d302442
CW
12455 return false;
12456
12457 return true;
12458}
12459
84b4e042
JB
12460static bool intel_crt_present(struct drm_device *dev)
12461{
12462 struct drm_i915_private *dev_priv = dev->dev_private;
12463
884497ed
DL
12464 if (INTEL_INFO(dev)->gen >= 9)
12465 return false;
12466
cf404ce4 12467 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
84b4e042
JB
12468 return false;
12469
12470 if (IS_CHERRYVIEW(dev))
12471 return false;
12472
12473 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
12474 return false;
12475
12476 return true;
12477}
12478
79e53945
JB
12479static void intel_setup_outputs(struct drm_device *dev)
12480{
725e30ad 12481 struct drm_i915_private *dev_priv = dev->dev_private;
4ef69c7a 12482 struct intel_encoder *encoder;
c6f95f27 12483 struct drm_connector *connector;
cb0953d7 12484 bool dpd_is_edp = false;
79e53945 12485
c9093354 12486 intel_lvds_init(dev);
79e53945 12487
84b4e042 12488 if (intel_crt_present(dev))
79935fca 12489 intel_crt_init(dev);
cb0953d7 12490
affa9354 12491 if (HAS_DDI(dev)) {
0e72a5b5
ED
12492 int found;
12493
12494 /* Haswell uses DDI functions to detect digital outputs */
12495 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
12496 /* DDI A only supports eDP */
12497 if (found)
12498 intel_ddi_init(dev, PORT_A);
12499
12500 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
12501 * register */
12502 found = I915_READ(SFUSE_STRAP);
12503
12504 if (found & SFUSE_STRAP_DDIB_DETECTED)
12505 intel_ddi_init(dev, PORT_B);
12506 if (found & SFUSE_STRAP_DDIC_DETECTED)
12507 intel_ddi_init(dev, PORT_C);
12508 if (found & SFUSE_STRAP_DDID_DETECTED)
12509 intel_ddi_init(dev, PORT_D);
12510 } else if (HAS_PCH_SPLIT(dev)) {
cb0953d7 12511 int found;
5d8a7752 12512 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
270b3042
DV
12513
12514 if (has_edp_a(dev))
12515 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 12516
dc0fa718 12517 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 12518 /* PCH SDVOB multiplex with HDMIB */
eef4eacb 12519 found = intel_sdvo_init(dev, PCH_SDVOB, true);
30ad48b7 12520 if (!found)
e2debe91 12521 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 12522 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 12523 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
12524 }
12525
dc0fa718 12526 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 12527 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 12528
dc0fa718 12529 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 12530 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 12531
5eb08b69 12532 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 12533 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 12534
270b3042 12535 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 12536 intel_dp_init(dev, PCH_DP_D, PORT_D);
4a87d65d 12537 } else if (IS_VALLEYVIEW(dev)) {
e17ac6db
VS
12538 /*
12539 * The DP_DETECTED bit is the latched state of the DDC
12540 * SDA pin at boot. However since eDP doesn't require DDC
12541 * (no way to plug in a DP->HDMI dongle) the DDC pins for
12542 * eDP ports may have been muxed to an alternate function.
12543 * Thus we can't rely on the DP_DETECTED bit alone to detect
12544 * eDP ports. Consult the VBT as well as DP_DETECTED to
12545 * detect eDP ports.
12546 */
d2182a66
VS
12547 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED &&
12548 !intel_dp_is_edp(dev, PORT_B))
585a94b8
AB
12549 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
12550 PORT_B);
e17ac6db
VS
12551 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED ||
12552 intel_dp_is_edp(dev, PORT_B))
12553 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
585a94b8 12554
d2182a66
VS
12555 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED &&
12556 !intel_dp_is_edp(dev, PORT_C))
6f6005a5
JB
12557 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
12558 PORT_C);
e17ac6db
VS
12559 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED ||
12560 intel_dp_is_edp(dev, PORT_C))
12561 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
19c03924 12562
9418c1f1 12563 if (IS_CHERRYVIEW(dev)) {
e17ac6db 12564 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED)
9418c1f1
VS
12565 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
12566 PORT_D);
e17ac6db
VS
12567 /* eDP not supported on port D, so don't check VBT */
12568 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
12569 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
9418c1f1
VS
12570 }
12571
3cfca973 12572 intel_dsi_init(dev);
103a196f 12573 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
27185ae1 12574 bool found = false;
7d57382e 12575
e2debe91 12576 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 12577 DRM_DEBUG_KMS("probing SDVOB\n");
e2debe91 12578 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
b01f2c3a
JB
12579 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
12580 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 12581 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 12582 }
27185ae1 12583
e7281eab 12584 if (!found && SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 12585 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 12586 }
13520b05
KH
12587
12588 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 12589
e2debe91 12590 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 12591 DRM_DEBUG_KMS("probing SDVOC\n");
e2debe91 12592 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
b01f2c3a 12593 }
27185ae1 12594
e2debe91 12595 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 12596
b01f2c3a
JB
12597 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
12598 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 12599 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 12600 }
e7281eab 12601 if (SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 12602 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 12603 }
27185ae1 12604
b01f2c3a 12605 if (SUPPORTS_INTEGRATED_DP(dev) &&
e7281eab 12606 (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 12607 intel_dp_init(dev, DP_D, PORT_D);
bad720ff 12608 } else if (IS_GEN2(dev))
79e53945
JB
12609 intel_dvo_init(dev);
12610
103a196f 12611 if (SUPPORTS_TV(dev))
79e53945
JB
12612 intel_tv_init(dev);
12613
c6f95f27
MR
12614 /*
12615 * FIXME: We don't have full atomic support yet, but we want to be
12616 * able to enable/test plane updates via the atomic interface in the
12617 * meantime. However as soon as we flip DRIVER_ATOMIC on, the DRM core
12618 * will take some atomic codepaths to lookup properties during
12619 * drmModeGetConnector() that unconditionally dereference
12620 * connector->state.
12621 *
12622 * We create a dummy connector state here for each connector to ensure
12623 * the DRM core doesn't try to dereference a NULL connector->state.
12624 * The actual connector properties will never be updated or contain
12625 * useful information, but since we're doing this specifically for
12626 * testing/debug of the plane operations (and only when a specific
12627 * kernel module option is given), that shouldn't really matter.
12628 *
12629 * Once atomic support for crtc's + connectors lands, this loop should
12630 * be removed since we'll be setting up real connector state, which
12631 * will contain Intel-specific properties.
12632 */
12633 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
12634 list_for_each_entry(connector,
12635 &dev->mode_config.connector_list,
12636 head) {
12637 if (!WARN_ON(connector->state)) {
12638 connector->state =
12639 kzalloc(sizeof(*connector->state),
12640 GFP_KERNEL);
12641 }
12642 }
12643 }
12644
0bc12bcb 12645 intel_psr_init(dev);
7c8f8a70 12646
b2784e15 12647 for_each_intel_encoder(dev, encoder) {
4ef69c7a
CW
12648 encoder->base.possible_crtcs = encoder->crtc_mask;
12649 encoder->base.possible_clones =
66a9278e 12650 intel_encoder_clones(encoder);
79e53945 12651 }
47356eb6 12652
dde86e2d 12653 intel_init_pch_refclk(dev);
270b3042
DV
12654
12655 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
12656}
12657
12658static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
12659{
60a5ca01 12660 struct drm_device *dev = fb->dev;
79e53945 12661 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945 12662
ef2d633e 12663 drm_framebuffer_cleanup(fb);
60a5ca01 12664 mutex_lock(&dev->struct_mutex);
ef2d633e 12665 WARN_ON(!intel_fb->obj->framebuffer_references--);
60a5ca01
VS
12666 drm_gem_object_unreference(&intel_fb->obj->base);
12667 mutex_unlock(&dev->struct_mutex);
79e53945
JB
12668 kfree(intel_fb);
12669}
12670
12671static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 12672 struct drm_file *file,
79e53945
JB
12673 unsigned int *handle)
12674{
12675 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 12676 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 12677
05394f39 12678 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
12679}
12680
12681static const struct drm_framebuffer_funcs intel_fb_funcs = {
12682 .destroy = intel_user_framebuffer_destroy,
12683 .create_handle = intel_user_framebuffer_create_handle,
12684};
12685
b5ea642a
DV
12686static int intel_framebuffer_init(struct drm_device *dev,
12687 struct intel_framebuffer *intel_fb,
12688 struct drm_mode_fb_cmd2 *mode_cmd,
12689 struct drm_i915_gem_object *obj)
79e53945 12690{
a57ce0b2 12691 int aligned_height;
a35cdaa0 12692 int pitch_limit;
79e53945
JB
12693 int ret;
12694
dd4916c5
DV
12695 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
12696
c16ed4be
CW
12697 if (obj->tiling_mode == I915_TILING_Y) {
12698 DRM_DEBUG("hardware does not support tiling Y\n");
57cd6508 12699 return -EINVAL;
c16ed4be 12700 }
57cd6508 12701
c16ed4be
CW
12702 if (mode_cmd->pitches[0] & 63) {
12703 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
12704 mode_cmd->pitches[0]);
57cd6508 12705 return -EINVAL;
c16ed4be 12706 }
57cd6508 12707
a35cdaa0
CW
12708 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
12709 pitch_limit = 32*1024;
12710 } else if (INTEL_INFO(dev)->gen >= 4) {
12711 if (obj->tiling_mode)
12712 pitch_limit = 16*1024;
12713 else
12714 pitch_limit = 32*1024;
12715 } else if (INTEL_INFO(dev)->gen >= 3) {
12716 if (obj->tiling_mode)
12717 pitch_limit = 8*1024;
12718 else
12719 pitch_limit = 16*1024;
12720 } else
12721 /* XXX DSPC is limited to 4k tiled */
12722 pitch_limit = 8*1024;
12723
12724 if (mode_cmd->pitches[0] > pitch_limit) {
12725 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
12726 obj->tiling_mode ? "tiled" : "linear",
12727 mode_cmd->pitches[0], pitch_limit);
5d7bd705 12728 return -EINVAL;
c16ed4be 12729 }
5d7bd705
VS
12730
12731 if (obj->tiling_mode != I915_TILING_NONE &&
c16ed4be
CW
12732 mode_cmd->pitches[0] != obj->stride) {
12733 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
12734 mode_cmd->pitches[0], obj->stride);
5d7bd705 12735 return -EINVAL;
c16ed4be 12736 }
5d7bd705 12737
57779d06 12738 /* Reject formats not supported by any plane early. */
308e5bcb 12739 switch (mode_cmd->pixel_format) {
57779d06 12740 case DRM_FORMAT_C8:
04b3924d
VS
12741 case DRM_FORMAT_RGB565:
12742 case DRM_FORMAT_XRGB8888:
12743 case DRM_FORMAT_ARGB8888:
57779d06
VS
12744 break;
12745 case DRM_FORMAT_XRGB1555:
12746 case DRM_FORMAT_ARGB1555:
c16ed4be 12747 if (INTEL_INFO(dev)->gen > 3) {
4ee62c76
VS
12748 DRM_DEBUG("unsupported pixel format: %s\n",
12749 drm_get_format_name(mode_cmd->pixel_format));
57779d06 12750 return -EINVAL;
c16ed4be 12751 }
57779d06
VS
12752 break;
12753 case DRM_FORMAT_XBGR8888:
12754 case DRM_FORMAT_ABGR8888:
04b3924d
VS
12755 case DRM_FORMAT_XRGB2101010:
12756 case DRM_FORMAT_ARGB2101010:
57779d06
VS
12757 case DRM_FORMAT_XBGR2101010:
12758 case DRM_FORMAT_ABGR2101010:
c16ed4be 12759 if (INTEL_INFO(dev)->gen < 4) {
4ee62c76
VS
12760 DRM_DEBUG("unsupported pixel format: %s\n",
12761 drm_get_format_name(mode_cmd->pixel_format));
57779d06 12762 return -EINVAL;
c16ed4be 12763 }
b5626747 12764 break;
04b3924d
VS
12765 case DRM_FORMAT_YUYV:
12766 case DRM_FORMAT_UYVY:
12767 case DRM_FORMAT_YVYU:
12768 case DRM_FORMAT_VYUY:
c16ed4be 12769 if (INTEL_INFO(dev)->gen < 5) {
4ee62c76
VS
12770 DRM_DEBUG("unsupported pixel format: %s\n",
12771 drm_get_format_name(mode_cmd->pixel_format));
57779d06 12772 return -EINVAL;
c16ed4be 12773 }
57cd6508
CW
12774 break;
12775 default:
4ee62c76
VS
12776 DRM_DEBUG("unsupported pixel format: %s\n",
12777 drm_get_format_name(mode_cmd->pixel_format));
57cd6508
CW
12778 return -EINVAL;
12779 }
12780
90f9a336
VS
12781 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
12782 if (mode_cmd->offsets[0] != 0)
12783 return -EINVAL;
12784
ec2c981e
DL
12785 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
12786 obj->tiling_mode);
53155c0a
DV
12787 /* FIXME drm helper for size checks (especially planar formats)? */
12788 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
12789 return -EINVAL;
12790
c7d73f6a
DV
12791 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
12792 intel_fb->obj = obj;
80075d49 12793 intel_fb->obj->framebuffer_references++;
c7d73f6a 12794
79e53945
JB
12795 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
12796 if (ret) {
12797 DRM_ERROR("framebuffer init failed %d\n", ret);
12798 return ret;
12799 }
12800
79e53945
JB
12801 return 0;
12802}
12803
79e53945
JB
12804static struct drm_framebuffer *
12805intel_user_framebuffer_create(struct drm_device *dev,
12806 struct drm_file *filp,
308e5bcb 12807 struct drm_mode_fb_cmd2 *mode_cmd)
79e53945 12808{
05394f39 12809 struct drm_i915_gem_object *obj;
79e53945 12810
308e5bcb
JB
12811 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
12812 mode_cmd->handles[0]));
c8725226 12813 if (&obj->base == NULL)
cce13ff7 12814 return ERR_PTR(-ENOENT);
79e53945 12815
d2dff872 12816 return intel_framebuffer_create(dev, mode_cmd, obj);
79e53945
JB
12817}
12818
4520f53a 12819#ifndef CONFIG_DRM_I915_FBDEV
0632fef6 12820static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
4520f53a
DV
12821{
12822}
12823#endif
12824
79e53945 12825static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 12826 .fb_create = intel_user_framebuffer_create,
0632fef6 12827 .output_poll_changed = intel_fbdev_output_poll_changed,
5ee67f1c
MR
12828 .atomic_check = intel_atomic_check,
12829 .atomic_commit = intel_atomic_commit,
79e53945
JB
12830};
12831
e70236a8
JB
12832/* Set up chip specific display functions */
12833static void intel_init_display(struct drm_device *dev)
12834{
12835 struct drm_i915_private *dev_priv = dev->dev_private;
12836
ee9300bb
DV
12837 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
12838 dev_priv->display.find_dpll = g4x_find_best_dpll;
ef9348c8
CML
12839 else if (IS_CHERRYVIEW(dev))
12840 dev_priv->display.find_dpll = chv_find_best_dpll;
ee9300bb
DV
12841 else if (IS_VALLEYVIEW(dev))
12842 dev_priv->display.find_dpll = vlv_find_best_dpll;
12843 else if (IS_PINEVIEW(dev))
12844 dev_priv->display.find_dpll = pnv_find_best_dpll;
12845 else
12846 dev_priv->display.find_dpll = i9xx_find_best_dpll;
12847
bc8d7dff
DL
12848 if (INTEL_INFO(dev)->gen >= 9) {
12849 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
12850 dev_priv->display.get_initial_plane_config =
12851 skylake_get_initial_plane_config;
bc8d7dff
DL
12852 dev_priv->display.crtc_compute_clock =
12853 haswell_crtc_compute_clock;
12854 dev_priv->display.crtc_enable = haswell_crtc_enable;
12855 dev_priv->display.crtc_disable = haswell_crtc_disable;
12856 dev_priv->display.off = ironlake_crtc_off;
12857 dev_priv->display.update_primary_plane =
12858 skylake_update_primary_plane;
12859 } else if (HAS_DDI(dev)) {
0e8ffe1b 12860 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
12861 dev_priv->display.get_initial_plane_config =
12862 ironlake_get_initial_plane_config;
797d0259
ACO
12863 dev_priv->display.crtc_compute_clock =
12864 haswell_crtc_compute_clock;
4f771f10
PZ
12865 dev_priv->display.crtc_enable = haswell_crtc_enable;
12866 dev_priv->display.crtc_disable = haswell_crtc_disable;
df8ad70c 12867 dev_priv->display.off = ironlake_crtc_off;
bc8d7dff
DL
12868 dev_priv->display.update_primary_plane =
12869 ironlake_update_primary_plane;
09b4ddf9 12870 } else if (HAS_PCH_SPLIT(dev)) {
0e8ffe1b 12871 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
5724dbd1
DL
12872 dev_priv->display.get_initial_plane_config =
12873 ironlake_get_initial_plane_config;
3fb37703
ACO
12874 dev_priv->display.crtc_compute_clock =
12875 ironlake_crtc_compute_clock;
76e5a89c
DV
12876 dev_priv->display.crtc_enable = ironlake_crtc_enable;
12877 dev_priv->display.crtc_disable = ironlake_crtc_disable;
ee7b9f93 12878 dev_priv->display.off = ironlake_crtc_off;
262ca2b0
MR
12879 dev_priv->display.update_primary_plane =
12880 ironlake_update_primary_plane;
89b667f8
JB
12881 } else if (IS_VALLEYVIEW(dev)) {
12882 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
12883 dev_priv->display.get_initial_plane_config =
12884 i9xx_get_initial_plane_config;
d6dfee7a 12885 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
89b667f8
JB
12886 dev_priv->display.crtc_enable = valleyview_crtc_enable;
12887 dev_priv->display.crtc_disable = i9xx_crtc_disable;
12888 dev_priv->display.off = i9xx_crtc_off;
262ca2b0
MR
12889 dev_priv->display.update_primary_plane =
12890 i9xx_update_primary_plane;
f564048e 12891 } else {
0e8ffe1b 12892 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
12893 dev_priv->display.get_initial_plane_config =
12894 i9xx_get_initial_plane_config;
d6dfee7a 12895 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
76e5a89c
DV
12896 dev_priv->display.crtc_enable = i9xx_crtc_enable;
12897 dev_priv->display.crtc_disable = i9xx_crtc_disable;
ee7b9f93 12898 dev_priv->display.off = i9xx_crtc_off;
262ca2b0
MR
12899 dev_priv->display.update_primary_plane =
12900 i9xx_update_primary_plane;
f564048e 12901 }
e70236a8 12902
e70236a8 12903 /* Returns the core display clock speed */
25eb05fc
JB
12904 if (IS_VALLEYVIEW(dev))
12905 dev_priv->display.get_display_clock_speed =
12906 valleyview_get_display_clock_speed;
12907 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
e70236a8
JB
12908 dev_priv->display.get_display_clock_speed =
12909 i945_get_display_clock_speed;
12910 else if (IS_I915G(dev))
12911 dev_priv->display.get_display_clock_speed =
12912 i915_get_display_clock_speed;
257a7ffc 12913 else if (IS_I945GM(dev) || IS_845G(dev))
e70236a8
JB
12914 dev_priv->display.get_display_clock_speed =
12915 i9xx_misc_get_display_clock_speed;
257a7ffc
DV
12916 else if (IS_PINEVIEW(dev))
12917 dev_priv->display.get_display_clock_speed =
12918 pnv_get_display_clock_speed;
e70236a8
JB
12919 else if (IS_I915GM(dev))
12920 dev_priv->display.get_display_clock_speed =
12921 i915gm_get_display_clock_speed;
12922 else if (IS_I865G(dev))
12923 dev_priv->display.get_display_clock_speed =
12924 i865_get_display_clock_speed;
f0f8a9ce 12925 else if (IS_I85X(dev))
e70236a8
JB
12926 dev_priv->display.get_display_clock_speed =
12927 i855_get_display_clock_speed;
12928 else /* 852, 830 */
12929 dev_priv->display.get_display_clock_speed =
12930 i830_get_display_clock_speed;
12931
7c10a2b5 12932 if (IS_GEN5(dev)) {
3bb11b53 12933 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
3bb11b53
SJ
12934 } else if (IS_GEN6(dev)) {
12935 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
3bb11b53
SJ
12936 } else if (IS_IVYBRIDGE(dev)) {
12937 /* FIXME: detect B0+ stepping and use auto training */
12938 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
3bb11b53
SJ
12939 dev_priv->display.modeset_global_resources =
12940 ivb_modeset_global_resources;
059b2fe9 12941 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
3bb11b53 12942 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
30a970c6
JB
12943 } else if (IS_VALLEYVIEW(dev)) {
12944 dev_priv->display.modeset_global_resources =
12945 valleyview_modeset_global_resources;
e70236a8 12946 }
8c9f3aaf
JB
12947
12948 /* Default just returns -ENODEV to indicate unsupported */
12949 dev_priv->display.queue_flip = intel_default_queue_flip;
12950
12951 switch (INTEL_INFO(dev)->gen) {
12952 case 2:
12953 dev_priv->display.queue_flip = intel_gen2_queue_flip;
12954 break;
12955
12956 case 3:
12957 dev_priv->display.queue_flip = intel_gen3_queue_flip;
12958 break;
12959
12960 case 4:
12961 case 5:
12962 dev_priv->display.queue_flip = intel_gen4_queue_flip;
12963 break;
12964
12965 case 6:
12966 dev_priv->display.queue_flip = intel_gen6_queue_flip;
12967 break;
7c9017e5 12968 case 7:
4e0bbc31 12969 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
7c9017e5
JB
12970 dev_priv->display.queue_flip = intel_gen7_queue_flip;
12971 break;
830c81db
DL
12972 case 9:
12973 dev_priv->display.queue_flip = intel_gen9_queue_flip;
12974 break;
8c9f3aaf 12975 }
7bd688cd
JN
12976
12977 intel_panel_init_backlight_funcs(dev);
e39b999a
VS
12978
12979 mutex_init(&dev_priv->pps_mutex);
e70236a8
JB
12980}
12981
b690e96c
JB
12982/*
12983 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
12984 * resume, or other times. This quirk makes sure that's the case for
12985 * affected systems.
12986 */
0206e353 12987static void quirk_pipea_force(struct drm_device *dev)
b690e96c
JB
12988{
12989 struct drm_i915_private *dev_priv = dev->dev_private;
12990
12991 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 12992 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
12993}
12994
b6b5d049
VS
12995static void quirk_pipeb_force(struct drm_device *dev)
12996{
12997 struct drm_i915_private *dev_priv = dev->dev_private;
12998
12999 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
13000 DRM_INFO("applying pipe b force quirk\n");
13001}
13002
435793df
KP
13003/*
13004 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
13005 */
13006static void quirk_ssc_force_disable(struct drm_device *dev)
13007{
13008 struct drm_i915_private *dev_priv = dev->dev_private;
13009 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 13010 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
13011}
13012
4dca20ef 13013/*
5a15ab5b
CE
13014 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
13015 * brightness value
4dca20ef
CE
13016 */
13017static void quirk_invert_brightness(struct drm_device *dev)
13018{
13019 struct drm_i915_private *dev_priv = dev->dev_private;
13020 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 13021 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
13022}
13023
9c72cc6f
SD
13024/* Some VBT's incorrectly indicate no backlight is present */
13025static void quirk_backlight_present(struct drm_device *dev)
13026{
13027 struct drm_i915_private *dev_priv = dev->dev_private;
13028 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
13029 DRM_INFO("applying backlight present quirk\n");
13030}
13031
b690e96c
JB
13032struct intel_quirk {
13033 int device;
13034 int subsystem_vendor;
13035 int subsystem_device;
13036 void (*hook)(struct drm_device *dev);
13037};
13038
5f85f176
EE
13039/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
13040struct intel_dmi_quirk {
13041 void (*hook)(struct drm_device *dev);
13042 const struct dmi_system_id (*dmi_id_list)[];
13043};
13044
13045static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
13046{
13047 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
13048 return 1;
13049}
13050
13051static const struct intel_dmi_quirk intel_dmi_quirks[] = {
13052 {
13053 .dmi_id_list = &(const struct dmi_system_id[]) {
13054 {
13055 .callback = intel_dmi_reverse_brightness,
13056 .ident = "NCR Corporation",
13057 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
13058 DMI_MATCH(DMI_PRODUCT_NAME, ""),
13059 },
13060 },
13061 { } /* terminating entry */
13062 },
13063 .hook = quirk_invert_brightness,
13064 },
13065};
13066
c43b5634 13067static struct intel_quirk intel_quirks[] = {
b690e96c 13068 /* HP Mini needs pipe A force quirk (LP: #322104) */
0206e353 13069 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
b690e96c 13070
b690e96c
JB
13071 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
13072 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
13073
b690e96c
JB
13074 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
13075 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
13076
5f080c0f
VS
13077 /* 830 needs to leave pipe A & dpll A up */
13078 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
13079
b6b5d049
VS
13080 /* 830 needs to leave pipe B & dpll B up */
13081 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
13082
435793df
KP
13083 /* Lenovo U160 cannot use SSC on LVDS */
13084 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
13085
13086 /* Sony Vaio Y cannot use SSC on LVDS */
13087 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b 13088
be505f64
AH
13089 /* Acer Aspire 5734Z must invert backlight brightness */
13090 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
13091
13092 /* Acer/eMachines G725 */
13093 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
13094
13095 /* Acer/eMachines e725 */
13096 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
13097
13098 /* Acer/Packard Bell NCL20 */
13099 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
13100
13101 /* Acer Aspire 4736Z */
13102 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
0f540c3a
JN
13103
13104 /* Acer Aspire 5336 */
13105 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
2e93a1aa
SD
13106
13107 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
13108 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
d4967d8c 13109
dfb3d47b
SD
13110 /* Acer C720 Chromebook (Core i3 4005U) */
13111 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
13112
b2a9601c 13113 /* Apple Macbook 2,1 (Core 2 T7400) */
13114 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
13115
d4967d8c
SD
13116 /* Toshiba CB35 Chromebook (Celeron 2955U) */
13117 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
724cb06f
SD
13118
13119 /* HP Chromebook 14 (Celeron 2955U) */
13120 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
b690e96c
JB
13121};
13122
13123static void intel_init_quirks(struct drm_device *dev)
13124{
13125 struct pci_dev *d = dev->pdev;
13126 int i;
13127
13128 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
13129 struct intel_quirk *q = &intel_quirks[i];
13130
13131 if (d->device == q->device &&
13132 (d->subsystem_vendor == q->subsystem_vendor ||
13133 q->subsystem_vendor == PCI_ANY_ID) &&
13134 (d->subsystem_device == q->subsystem_device ||
13135 q->subsystem_device == PCI_ANY_ID))
13136 q->hook(dev);
13137 }
5f85f176
EE
13138 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
13139 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
13140 intel_dmi_quirks[i].hook(dev);
13141 }
b690e96c
JB
13142}
13143
9cce37f4
JB
13144/* Disable the VGA plane that we never use */
13145static void i915_disable_vga(struct drm_device *dev)
13146{
13147 struct drm_i915_private *dev_priv = dev->dev_private;
13148 u8 sr1;
766aa1c4 13149 u32 vga_reg = i915_vgacntrl_reg(dev);
9cce37f4 13150
2b37c616 13151 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
9cce37f4 13152 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 13153 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
13154 sr1 = inb(VGA_SR_DATA);
13155 outb(sr1 | 1<<5, VGA_SR_DATA);
13156 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
13157 udelay(300);
13158
01f5a626 13159 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
9cce37f4
JB
13160 POSTING_READ(vga_reg);
13161}
13162
f817586c
DV
13163void intel_modeset_init_hw(struct drm_device *dev)
13164{
a8f78b58
ED
13165 intel_prepare_ddi(dev);
13166
f8bf63fd
VS
13167 if (IS_VALLEYVIEW(dev))
13168 vlv_update_cdclk(dev);
13169
f817586c
DV
13170 intel_init_clock_gating(dev);
13171
8090c6b9 13172 intel_enable_gt_powersave(dev);
f817586c
DV
13173}
13174
79e53945
JB
13175void intel_modeset_init(struct drm_device *dev)
13176{
652c393a 13177 struct drm_i915_private *dev_priv = dev->dev_private;
1fe47785 13178 int sprite, ret;
8cc87b75 13179 enum pipe pipe;
46f297fb 13180 struct intel_crtc *crtc;
79e53945
JB
13181
13182 drm_mode_config_init(dev);
13183
13184 dev->mode_config.min_width = 0;
13185 dev->mode_config.min_height = 0;
13186
019d96cb
DA
13187 dev->mode_config.preferred_depth = 24;
13188 dev->mode_config.prefer_shadow = 1;
13189
e6ecefaa 13190 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 13191
b690e96c
JB
13192 intel_init_quirks(dev);
13193
1fa61106
ED
13194 intel_init_pm(dev);
13195
e3c74757
BW
13196 if (INTEL_INFO(dev)->num_pipes == 0)
13197 return;
13198
e70236a8 13199 intel_init_display(dev);
7c10a2b5 13200 intel_init_audio(dev);
e70236a8 13201
a6c45cf0
CW
13202 if (IS_GEN2(dev)) {
13203 dev->mode_config.max_width = 2048;
13204 dev->mode_config.max_height = 2048;
13205 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
13206 dev->mode_config.max_width = 4096;
13207 dev->mode_config.max_height = 4096;
79e53945 13208 } else {
a6c45cf0
CW
13209 dev->mode_config.max_width = 8192;
13210 dev->mode_config.max_height = 8192;
79e53945 13211 }
068be561 13212
dc41c154
VS
13213 if (IS_845G(dev) || IS_I865G(dev)) {
13214 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
13215 dev->mode_config.cursor_height = 1023;
13216 } else if (IS_GEN2(dev)) {
068be561
DL
13217 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
13218 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
13219 } else {
13220 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
13221 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
13222 }
13223
5d4545ae 13224 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
79e53945 13225
28c97730 13226 DRM_DEBUG_KMS("%d display pipe%s available.\n",
7eb552ae
BW
13227 INTEL_INFO(dev)->num_pipes,
13228 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
79e53945 13229
055e393f 13230 for_each_pipe(dev_priv, pipe) {
8cc87b75 13231 intel_crtc_init(dev, pipe);
1fe47785
DL
13232 for_each_sprite(pipe, sprite) {
13233 ret = intel_plane_init(dev, pipe, sprite);
7f1f3851 13234 if (ret)
06da8da2 13235 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
1fe47785 13236 pipe_name(pipe), sprite_name(pipe, sprite), ret);
7f1f3851 13237 }
79e53945
JB
13238 }
13239
f42bb70d
JB
13240 intel_init_dpio(dev);
13241
e72f9fbf 13242 intel_shared_dpll_init(dev);
ee7b9f93 13243
9cce37f4
JB
13244 /* Just disable it once at startup */
13245 i915_disable_vga(dev);
79e53945 13246 intel_setup_outputs(dev);
11be49eb
CW
13247
13248 /* Just in case the BIOS is doing something questionable. */
7ff0ebcc 13249 intel_fbc_disable(dev);
fa9fa083 13250
6e9f798d 13251 drm_modeset_lock_all(dev);
fa9fa083 13252 intel_modeset_setup_hw_state(dev, false);
6e9f798d 13253 drm_modeset_unlock_all(dev);
46f297fb 13254
d3fcc808 13255 for_each_intel_crtc(dev, crtc) {
46f297fb
JB
13256 if (!crtc->active)
13257 continue;
13258
46f297fb 13259 /*
46f297fb
JB
13260 * Note that reserving the BIOS fb up front prevents us
13261 * from stuffing other stolen allocations like the ring
13262 * on top. This prevents some ugliness at boot time, and
13263 * can even allow for smooth boot transitions if the BIOS
13264 * fb is large enough for the active pipe configuration.
13265 */
5724dbd1
DL
13266 if (dev_priv->display.get_initial_plane_config) {
13267 dev_priv->display.get_initial_plane_config(crtc,
46f297fb
JB
13268 &crtc->plane_config);
13269 /*
13270 * If the fb is shared between multiple heads, we'll
13271 * just get the first one.
13272 */
484b41dd 13273 intel_find_plane_obj(crtc, &crtc->plane_config);
46f297fb 13274 }
46f297fb 13275 }
2c7111db
CW
13276}
13277
7fad798e
DV
13278static void intel_enable_pipe_a(struct drm_device *dev)
13279{
13280 struct intel_connector *connector;
13281 struct drm_connector *crt = NULL;
13282 struct intel_load_detect_pipe load_detect_temp;
208bf9fd 13283 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
7fad798e
DV
13284
13285 /* We can't just switch on the pipe A, we need to set things up with a
13286 * proper mode and output configuration. As a gross hack, enable pipe A
13287 * by enabling the load detect pipe once. */
13288 list_for_each_entry(connector,
13289 &dev->mode_config.connector_list,
13290 base.head) {
13291 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
13292 crt = &connector->base;
13293 break;
13294 }
13295 }
13296
13297 if (!crt)
13298 return;
13299
208bf9fd
VS
13300 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
13301 intel_release_load_detect_pipe(crt, &load_detect_temp);
7fad798e
DV
13302}
13303
fa555837
DV
13304static bool
13305intel_check_plane_mapping(struct intel_crtc *crtc)
13306{
7eb552ae
BW
13307 struct drm_device *dev = crtc->base.dev;
13308 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837
DV
13309 u32 reg, val;
13310
7eb552ae 13311 if (INTEL_INFO(dev)->num_pipes == 1)
fa555837
DV
13312 return true;
13313
13314 reg = DSPCNTR(!crtc->plane);
13315 val = I915_READ(reg);
13316
13317 if ((val & DISPLAY_PLANE_ENABLE) &&
13318 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
13319 return false;
13320
13321 return true;
13322}
13323
24929352
DV
13324static void intel_sanitize_crtc(struct intel_crtc *crtc)
13325{
13326 struct drm_device *dev = crtc->base.dev;
13327 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837 13328 u32 reg;
24929352 13329
24929352 13330 /* Clear any frame start delays used for debugging left by the BIOS */
6e3c9717 13331 reg = PIPECONF(crtc->config->cpu_transcoder);
24929352
DV
13332 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
13333
d3eaf884 13334 /* restore vblank interrupts to correct state */
d297e103
VS
13335 if (crtc->active) {
13336 update_scanline_offset(crtc);
d3eaf884 13337 drm_vblank_on(dev, crtc->pipe);
d297e103 13338 } else
d3eaf884
VS
13339 drm_vblank_off(dev, crtc->pipe);
13340
24929352 13341 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
13342 * disable the crtc (and hence change the state) if it is wrong. Note
13343 * that gen4+ has a fixed plane -> pipe mapping. */
13344 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
13345 struct intel_connector *connector;
13346 bool plane;
13347
24929352
DV
13348 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
13349 crtc->base.base.id);
13350
13351 /* Pipe has the wrong plane attached and the plane is active.
13352 * Temporarily change the plane mapping and disable everything
13353 * ... */
13354 plane = crtc->plane;
13355 crtc->plane = !plane;
9c8958bc 13356 crtc->primary_enabled = true;
24929352
DV
13357 dev_priv->display.crtc_disable(&crtc->base);
13358 crtc->plane = plane;
13359
13360 /* ... and break all links. */
13361 list_for_each_entry(connector, &dev->mode_config.connector_list,
13362 base.head) {
13363 if (connector->encoder->base.crtc != &crtc->base)
13364 continue;
13365
7f1950fb
EE
13366 connector->base.dpms = DRM_MODE_DPMS_OFF;
13367 connector->base.encoder = NULL;
24929352 13368 }
7f1950fb
EE
13369 /* multiple connectors may have the same encoder:
13370 * handle them and break crtc link separately */
13371 list_for_each_entry(connector, &dev->mode_config.connector_list,
13372 base.head)
13373 if (connector->encoder->base.crtc == &crtc->base) {
13374 connector->encoder->base.crtc = NULL;
13375 connector->encoder->connectors_active = false;
13376 }
24929352
DV
13377
13378 WARN_ON(crtc->active);
13379 crtc->base.enabled = false;
13380 }
24929352 13381
7fad798e
DV
13382 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
13383 crtc->pipe == PIPE_A && !crtc->active) {
13384 /* BIOS forgot to enable pipe A, this mostly happens after
13385 * resume. Force-enable the pipe to fix this, the update_dpms
13386 * call below we restore the pipe to the right state, but leave
13387 * the required bits on. */
13388 intel_enable_pipe_a(dev);
13389 }
13390
24929352
DV
13391 /* Adjust the state of the output pipe according to whether we
13392 * have active connectors/encoders. */
13393 intel_crtc_update_dpms(&crtc->base);
13394
13395 if (crtc->active != crtc->base.enabled) {
13396 struct intel_encoder *encoder;
13397
13398 /* This can happen either due to bugs in the get_hw_state
13399 * functions or because the pipe is force-enabled due to the
13400 * pipe A quirk. */
13401 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
13402 crtc->base.base.id,
13403 crtc->base.enabled ? "enabled" : "disabled",
13404 crtc->active ? "enabled" : "disabled");
13405
13406 crtc->base.enabled = crtc->active;
13407
13408 /* Because we only establish the connector -> encoder ->
13409 * crtc links if something is active, this means the
13410 * crtc is now deactivated. Break the links. connector
13411 * -> encoder links are only establish when things are
13412 * actually up, hence no need to break them. */
13413 WARN_ON(crtc->active);
13414
13415 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
13416 WARN_ON(encoder->connectors_active);
13417 encoder->base.crtc = NULL;
13418 }
13419 }
c5ab3bc0 13420
a3ed6aad 13421 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
4cc31489
DV
13422 /*
13423 * We start out with underrun reporting disabled to avoid races.
13424 * For correct bookkeeping mark this on active crtcs.
13425 *
c5ab3bc0
DV
13426 * Also on gmch platforms we dont have any hardware bits to
13427 * disable the underrun reporting. Which means we need to start
13428 * out with underrun reporting disabled also on inactive pipes,
13429 * since otherwise we'll complain about the garbage we read when
13430 * e.g. coming up after runtime pm.
13431 *
4cc31489
DV
13432 * No protection against concurrent access is required - at
13433 * worst a fifo underrun happens which also sets this to false.
13434 */
13435 crtc->cpu_fifo_underrun_disabled = true;
13436 crtc->pch_fifo_underrun_disabled = true;
13437 }
24929352
DV
13438}
13439
13440static void intel_sanitize_encoder(struct intel_encoder *encoder)
13441{
13442 struct intel_connector *connector;
13443 struct drm_device *dev = encoder->base.dev;
13444
13445 /* We need to check both for a crtc link (meaning that the
13446 * encoder is active and trying to read from a pipe) and the
13447 * pipe itself being active. */
13448 bool has_active_crtc = encoder->base.crtc &&
13449 to_intel_crtc(encoder->base.crtc)->active;
13450
13451 if (encoder->connectors_active && !has_active_crtc) {
13452 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
13453 encoder->base.base.id,
8e329a03 13454 encoder->base.name);
24929352
DV
13455
13456 /* Connector is active, but has no active pipe. This is
13457 * fallout from our resume register restoring. Disable
13458 * the encoder manually again. */
13459 if (encoder->base.crtc) {
13460 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
13461 encoder->base.base.id,
8e329a03 13462 encoder->base.name);
24929352 13463 encoder->disable(encoder);
a62d1497
VS
13464 if (encoder->post_disable)
13465 encoder->post_disable(encoder);
24929352 13466 }
7f1950fb
EE
13467 encoder->base.crtc = NULL;
13468 encoder->connectors_active = false;
24929352
DV
13469
13470 /* Inconsistent output/port/pipe state happens presumably due to
13471 * a bug in one of the get_hw_state functions. Or someplace else
13472 * in our code, like the register restore mess on resume. Clamp
13473 * things to off as a safer default. */
13474 list_for_each_entry(connector,
13475 &dev->mode_config.connector_list,
13476 base.head) {
13477 if (connector->encoder != encoder)
13478 continue;
7f1950fb
EE
13479 connector->base.dpms = DRM_MODE_DPMS_OFF;
13480 connector->base.encoder = NULL;
24929352
DV
13481 }
13482 }
13483 /* Enabled encoders without active connectors will be fixed in
13484 * the crtc fixup. */
13485}
13486
04098753 13487void i915_redisable_vga_power_on(struct drm_device *dev)
0fde901f
KM
13488{
13489 struct drm_i915_private *dev_priv = dev->dev_private;
766aa1c4 13490 u32 vga_reg = i915_vgacntrl_reg(dev);
0fde901f 13491
04098753
ID
13492 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
13493 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
13494 i915_disable_vga(dev);
13495 }
13496}
13497
13498void i915_redisable_vga(struct drm_device *dev)
13499{
13500 struct drm_i915_private *dev_priv = dev->dev_private;
13501
8dc8a27c
PZ
13502 /* This function can be called both from intel_modeset_setup_hw_state or
13503 * at a very early point in our resume sequence, where the power well
13504 * structures are not yet restored. Since this function is at a very
13505 * paranoid "someone might have enabled VGA while we were not looking"
13506 * level, just check if the power well is enabled instead of trying to
13507 * follow the "don't touch the power well if we don't need it" policy
13508 * the rest of the driver uses. */
f458ebbc 13509 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
8dc8a27c
PZ
13510 return;
13511
04098753 13512 i915_redisable_vga_power_on(dev);
0fde901f
KM
13513}
13514
98ec7739
VS
13515static bool primary_get_hw_state(struct intel_crtc *crtc)
13516{
13517 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
13518
13519 if (!crtc->active)
13520 return false;
13521
13522 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
13523}
13524
30e984df 13525static void intel_modeset_readout_hw_state(struct drm_device *dev)
24929352
DV
13526{
13527 struct drm_i915_private *dev_priv = dev->dev_private;
13528 enum pipe pipe;
24929352
DV
13529 struct intel_crtc *crtc;
13530 struct intel_encoder *encoder;
13531 struct intel_connector *connector;
5358901f 13532 int i;
24929352 13533
d3fcc808 13534 for_each_intel_crtc(dev, crtc) {
6e3c9717 13535 memset(crtc->config, 0, sizeof(*crtc->config));
3b117c8f 13536
6e3c9717 13537 crtc->config->quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
9953599b 13538
0e8ffe1b 13539 crtc->active = dev_priv->display.get_pipe_config(crtc,
6e3c9717 13540 crtc->config);
24929352
DV
13541
13542 crtc->base.enabled = crtc->active;
98ec7739 13543 crtc->primary_enabled = primary_get_hw_state(crtc);
24929352
DV
13544
13545 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
13546 crtc->base.base.id,
13547 crtc->active ? "enabled" : "disabled");
13548 }
13549
5358901f
DV
13550 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13551 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13552
3e369b76
ACO
13553 pll->on = pll->get_hw_state(dev_priv, pll,
13554 &pll->config.hw_state);
5358901f 13555 pll->active = 0;
3e369b76 13556 pll->config.crtc_mask = 0;
d3fcc808 13557 for_each_intel_crtc(dev, crtc) {
1e6f2ddc 13558 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
5358901f 13559 pll->active++;
3e369b76 13560 pll->config.crtc_mask |= 1 << crtc->pipe;
1e6f2ddc 13561 }
5358901f 13562 }
5358901f 13563
1e6f2ddc 13564 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
3e369b76 13565 pll->name, pll->config.crtc_mask, pll->on);
bd2bb1b9 13566
3e369b76 13567 if (pll->config.crtc_mask)
bd2bb1b9 13568 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5358901f
DV
13569 }
13570
b2784e15 13571 for_each_intel_encoder(dev, encoder) {
24929352
DV
13572 pipe = 0;
13573
13574 if (encoder->get_hw_state(encoder, &pipe)) {
045ac3b5
JB
13575 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13576 encoder->base.crtc = &crtc->base;
6e3c9717 13577 encoder->get_config(encoder, crtc->config);
24929352
DV
13578 } else {
13579 encoder->base.crtc = NULL;
13580 }
13581
13582 encoder->connectors_active = false;
6f2bcceb 13583 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
24929352 13584 encoder->base.base.id,
8e329a03 13585 encoder->base.name,
24929352 13586 encoder->base.crtc ? "enabled" : "disabled",
6f2bcceb 13587 pipe_name(pipe));
24929352
DV
13588 }
13589
13590 list_for_each_entry(connector, &dev->mode_config.connector_list,
13591 base.head) {
13592 if (connector->get_hw_state(connector)) {
13593 connector->base.dpms = DRM_MODE_DPMS_ON;
13594 connector->encoder->connectors_active = true;
13595 connector->base.encoder = &connector->encoder->base;
13596 } else {
13597 connector->base.dpms = DRM_MODE_DPMS_OFF;
13598 connector->base.encoder = NULL;
13599 }
13600 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
13601 connector->base.base.id,
c23cc417 13602 connector->base.name,
24929352
DV
13603 connector->base.encoder ? "enabled" : "disabled");
13604 }
30e984df
DV
13605}
13606
13607/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
13608 * and i915 state tracking structures. */
13609void intel_modeset_setup_hw_state(struct drm_device *dev,
13610 bool force_restore)
13611{
13612 struct drm_i915_private *dev_priv = dev->dev_private;
13613 enum pipe pipe;
30e984df
DV
13614 struct intel_crtc *crtc;
13615 struct intel_encoder *encoder;
35c95375 13616 int i;
30e984df
DV
13617
13618 intel_modeset_readout_hw_state(dev);
24929352 13619
babea61d
JB
13620 /*
13621 * Now that we have the config, copy it to each CRTC struct
13622 * Note that this could go away if we move to using crtc_config
13623 * checking everywhere.
13624 */
d3fcc808 13625 for_each_intel_crtc(dev, crtc) {
d330a953 13626 if (crtc->active && i915.fastboot) {
6e3c9717
ACO
13627 intel_mode_from_pipe_config(&crtc->base.mode,
13628 crtc->config);
babea61d
JB
13629 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
13630 crtc->base.base.id);
13631 drm_mode_debug_printmodeline(&crtc->base.mode);
13632 }
13633 }
13634
24929352 13635 /* HW state is read out, now we need to sanitize this mess. */
b2784e15 13636 for_each_intel_encoder(dev, encoder) {
24929352
DV
13637 intel_sanitize_encoder(encoder);
13638 }
13639
055e393f 13640 for_each_pipe(dev_priv, pipe) {
24929352
DV
13641 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13642 intel_sanitize_crtc(crtc);
6e3c9717
ACO
13643 intel_dump_pipe_config(crtc, crtc->config,
13644 "[setup_hw_state]");
24929352 13645 }
9a935856 13646
35c95375
DV
13647 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13648 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13649
13650 if (!pll->on || pll->active)
13651 continue;
13652
13653 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
13654
13655 pll->disable(dev_priv, pll);
13656 pll->on = false;
13657 }
13658
3078999f
PB
13659 if (IS_GEN9(dev))
13660 skl_wm_get_hw_state(dev);
13661 else if (HAS_PCH_SPLIT(dev))
243e6a44
VS
13662 ilk_wm_get_hw_state(dev);
13663
45e2b5f6 13664 if (force_restore) {
7d0bc1ea
VS
13665 i915_redisable_vga(dev);
13666
f30da187
DV
13667 /*
13668 * We need to use raw interfaces for restoring state to avoid
13669 * checking (bogus) intermediate states.
13670 */
055e393f 13671 for_each_pipe(dev_priv, pipe) {
b5644d05
JB
13672 struct drm_crtc *crtc =
13673 dev_priv->pipe_to_crtc_mapping[pipe];
f30da187 13674
7f27126e
JB
13675 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
13676 crtc->primary->fb);
45e2b5f6
DV
13677 }
13678 } else {
13679 intel_modeset_update_staged_output_state(dev);
13680 }
8af6cf88
DV
13681
13682 intel_modeset_check_state(dev);
2c7111db
CW
13683}
13684
13685void intel_modeset_gem_init(struct drm_device *dev)
13686{
92122789 13687 struct drm_i915_private *dev_priv = dev->dev_private;
484b41dd 13688 struct drm_crtc *c;
2ff8fde1 13689 struct drm_i915_gem_object *obj;
484b41dd 13690
ae48434c
ID
13691 mutex_lock(&dev->struct_mutex);
13692 intel_init_gt_powersave(dev);
13693 mutex_unlock(&dev->struct_mutex);
13694
92122789
JB
13695 /*
13696 * There may be no VBT; and if the BIOS enabled SSC we can
13697 * just keep using it to avoid unnecessary flicker. Whereas if the
13698 * BIOS isn't using it, don't assume it will work even if the VBT
13699 * indicates as much.
13700 */
13701 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
13702 dev_priv->vbt.lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
13703 DREF_SSC1_ENABLE);
13704
1833b134 13705 intel_modeset_init_hw(dev);
02e792fb
DV
13706
13707 intel_setup_overlay(dev);
484b41dd
JB
13708
13709 /*
13710 * Make sure any fbs we allocated at startup are properly
13711 * pinned & fenced. When we do the allocation it's too early
13712 * for this.
13713 */
13714 mutex_lock(&dev->struct_mutex);
70e1e0ec 13715 for_each_crtc(dev, c) {
2ff8fde1
MR
13716 obj = intel_fb_obj(c->primary->fb);
13717 if (obj == NULL)
484b41dd
JB
13718 continue;
13719
850c4cdc
TU
13720 if (intel_pin_and_fence_fb_obj(c->primary,
13721 c->primary->fb,
13722 NULL)) {
484b41dd
JB
13723 DRM_ERROR("failed to pin boot fb on pipe %d\n",
13724 to_intel_crtc(c)->pipe);
66e514c1
DA
13725 drm_framebuffer_unreference(c->primary->fb);
13726 c->primary->fb = NULL;
afd65eb4 13727 update_state_fb(c->primary);
484b41dd
JB
13728 }
13729 }
13730 mutex_unlock(&dev->struct_mutex);
0962c3c9
VS
13731
13732 intel_backlight_register(dev);
79e53945
JB
13733}
13734
4932e2c3
ID
13735void intel_connector_unregister(struct intel_connector *intel_connector)
13736{
13737 struct drm_connector *connector = &intel_connector->base;
13738
13739 intel_panel_destroy_backlight(connector);
34ea3d38 13740 drm_connector_unregister(connector);
4932e2c3
ID
13741}
13742
79e53945
JB
13743void intel_modeset_cleanup(struct drm_device *dev)
13744{
652c393a 13745 struct drm_i915_private *dev_priv = dev->dev_private;
d9255d57 13746 struct drm_connector *connector;
652c393a 13747
2eb5252e
ID
13748 intel_disable_gt_powersave(dev);
13749
0962c3c9
VS
13750 intel_backlight_unregister(dev);
13751
fd0c0642
DV
13752 /*
13753 * Interrupts and polling as the first thing to avoid creating havoc.
2eb5252e 13754 * Too much stuff here (turning of connectors, ...) would
fd0c0642
DV
13755 * experience fancy races otherwise.
13756 */
2aeb7d3a 13757 intel_irq_uninstall(dev_priv);
eb21b92b 13758
fd0c0642
DV
13759 /*
13760 * Due to the hpd irq storm handling the hotplug work can re-arm the
13761 * poll handlers. Hence disable polling after hpd handling is shut down.
13762 */
f87ea761 13763 drm_kms_helper_poll_fini(dev);
fd0c0642 13764
652c393a
JB
13765 mutex_lock(&dev->struct_mutex);
13766
723bfd70
JB
13767 intel_unregister_dsm_handler();
13768
7ff0ebcc 13769 intel_fbc_disable(dev);
e70236a8 13770
930ebb46
DV
13771 ironlake_teardown_rc6(dev);
13772
69341a5e
KH
13773 mutex_unlock(&dev->struct_mutex);
13774
1630fe75
CW
13775 /* flush any delayed tasks or pending work */
13776 flush_scheduled_work();
13777
db31af1d
JN
13778 /* destroy the backlight and sysfs files before encoders/connectors */
13779 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4932e2c3
ID
13780 struct intel_connector *intel_connector;
13781
13782 intel_connector = to_intel_connector(connector);
13783 intel_connector->unregister(intel_connector);
db31af1d 13784 }
d9255d57 13785
79e53945 13786 drm_mode_config_cleanup(dev);
4d7bb011
DV
13787
13788 intel_cleanup_overlay(dev);
ae48434c
ID
13789
13790 mutex_lock(&dev->struct_mutex);
13791 intel_cleanup_gt_powersave(dev);
13792 mutex_unlock(&dev->struct_mutex);
79e53945
JB
13793}
13794
f1c79df3
ZW
13795/*
13796 * Return which encoder is currently attached for connector.
13797 */
df0e9248 13798struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
79e53945 13799{
df0e9248
CW
13800 return &intel_attached_encoder(connector)->base;
13801}
f1c79df3 13802
df0e9248
CW
13803void intel_connector_attach_encoder(struct intel_connector *connector,
13804 struct intel_encoder *encoder)
13805{
13806 connector->encoder = encoder;
13807 drm_mode_connector_attach_encoder(&connector->base,
13808 &encoder->base);
79e53945 13809}
28d52043
DA
13810
13811/*
13812 * set vga decode state - true == enable VGA decode
13813 */
13814int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
13815{
13816 struct drm_i915_private *dev_priv = dev->dev_private;
a885b3cc 13817 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
28d52043
DA
13818 u16 gmch_ctrl;
13819
75fa041d
CW
13820 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
13821 DRM_ERROR("failed to read control word\n");
13822 return -EIO;
13823 }
13824
c0cc8a55
CW
13825 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
13826 return 0;
13827
28d52043
DA
13828 if (state)
13829 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
13830 else
13831 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
75fa041d
CW
13832
13833 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
13834 DRM_ERROR("failed to write control word\n");
13835 return -EIO;
13836 }
13837
28d52043
DA
13838 return 0;
13839}
c4a1d9e4 13840
c4a1d9e4 13841struct intel_display_error_state {
ff57f1b0
PZ
13842
13843 u32 power_well_driver;
13844
63b66e5b
CW
13845 int num_transcoders;
13846
c4a1d9e4
CW
13847 struct intel_cursor_error_state {
13848 u32 control;
13849 u32 position;
13850 u32 base;
13851 u32 size;
52331309 13852 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
13853
13854 struct intel_pipe_error_state {
ddf9c536 13855 bool power_domain_on;
c4a1d9e4 13856 u32 source;
f301b1e1 13857 u32 stat;
52331309 13858 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
13859
13860 struct intel_plane_error_state {
13861 u32 control;
13862 u32 stride;
13863 u32 size;
13864 u32 pos;
13865 u32 addr;
13866 u32 surface;
13867 u32 tile_offset;
52331309 13868 } plane[I915_MAX_PIPES];
63b66e5b
CW
13869
13870 struct intel_transcoder_error_state {
ddf9c536 13871 bool power_domain_on;
63b66e5b
CW
13872 enum transcoder cpu_transcoder;
13873
13874 u32 conf;
13875
13876 u32 htotal;
13877 u32 hblank;
13878 u32 hsync;
13879 u32 vtotal;
13880 u32 vblank;
13881 u32 vsync;
13882 } transcoder[4];
c4a1d9e4
CW
13883};
13884
13885struct intel_display_error_state *
13886intel_display_capture_error_state(struct drm_device *dev)
13887{
fbee40df 13888 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4 13889 struct intel_display_error_state *error;
63b66e5b
CW
13890 int transcoders[] = {
13891 TRANSCODER_A,
13892 TRANSCODER_B,
13893 TRANSCODER_C,
13894 TRANSCODER_EDP,
13895 };
c4a1d9e4
CW
13896 int i;
13897
63b66e5b
CW
13898 if (INTEL_INFO(dev)->num_pipes == 0)
13899 return NULL;
13900
9d1cb914 13901 error = kzalloc(sizeof(*error), GFP_ATOMIC);
c4a1d9e4
CW
13902 if (error == NULL)
13903 return NULL;
13904
190be112 13905 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
ff57f1b0
PZ
13906 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
13907
055e393f 13908 for_each_pipe(dev_priv, i) {
ddf9c536 13909 error->pipe[i].power_domain_on =
f458ebbc
DV
13910 __intel_display_power_is_enabled(dev_priv,
13911 POWER_DOMAIN_PIPE(i));
ddf9c536 13912 if (!error->pipe[i].power_domain_on)
9d1cb914
PZ
13913 continue;
13914
5efb3e28
VS
13915 error->cursor[i].control = I915_READ(CURCNTR(i));
13916 error->cursor[i].position = I915_READ(CURPOS(i));
13917 error->cursor[i].base = I915_READ(CURBASE(i));
c4a1d9e4
CW
13918
13919 error->plane[i].control = I915_READ(DSPCNTR(i));
13920 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
80ca378b 13921 if (INTEL_INFO(dev)->gen <= 3) {
51889b35 13922 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
13923 error->plane[i].pos = I915_READ(DSPPOS(i));
13924 }
ca291363
PZ
13925 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
13926 error->plane[i].addr = I915_READ(DSPADDR(i));
c4a1d9e4
CW
13927 if (INTEL_INFO(dev)->gen >= 4) {
13928 error->plane[i].surface = I915_READ(DSPSURF(i));
13929 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
13930 }
13931
c4a1d9e4 13932 error->pipe[i].source = I915_READ(PIPESRC(i));
f301b1e1 13933
3abfce77 13934 if (HAS_GMCH_DISPLAY(dev))
f301b1e1 13935 error->pipe[i].stat = I915_READ(PIPESTAT(i));
63b66e5b
CW
13936 }
13937
13938 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
13939 if (HAS_DDI(dev_priv->dev))
13940 error->num_transcoders++; /* Account for eDP. */
13941
13942 for (i = 0; i < error->num_transcoders; i++) {
13943 enum transcoder cpu_transcoder = transcoders[i];
13944
ddf9c536 13945 error->transcoder[i].power_domain_on =
f458ebbc 13946 __intel_display_power_is_enabled(dev_priv,
38cc1daf 13947 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
ddf9c536 13948 if (!error->transcoder[i].power_domain_on)
9d1cb914
PZ
13949 continue;
13950
63b66e5b
CW
13951 error->transcoder[i].cpu_transcoder = cpu_transcoder;
13952
13953 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
13954 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
13955 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
13956 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
13957 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
13958 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
13959 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
13960 }
13961
13962 return error;
13963}
13964
edc3d884
MK
13965#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
13966
c4a1d9e4 13967void
edc3d884 13968intel_display_print_error_state(struct drm_i915_error_state_buf *m,
c4a1d9e4
CW
13969 struct drm_device *dev,
13970 struct intel_display_error_state *error)
13971{
055e393f 13972 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4
CW
13973 int i;
13974
63b66e5b
CW
13975 if (!error)
13976 return;
13977
edc3d884 13978 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
190be112 13979 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
edc3d884 13980 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 13981 error->power_well_driver);
055e393f 13982 for_each_pipe(dev_priv, i) {
edc3d884 13983 err_printf(m, "Pipe [%d]:\n", i);
ddf9c536
ID
13984 err_printf(m, " Power: %s\n",
13985 error->pipe[i].power_domain_on ? "on" : "off");
edc3d884 13986 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
f301b1e1 13987 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
edc3d884
MK
13988
13989 err_printf(m, "Plane [%d]:\n", i);
13990 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
13991 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
80ca378b 13992 if (INTEL_INFO(dev)->gen <= 3) {
edc3d884
MK
13993 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
13994 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 13995 }
4b71a570 13996 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
edc3d884 13997 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
c4a1d9e4 13998 if (INTEL_INFO(dev)->gen >= 4) {
edc3d884
MK
13999 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
14000 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
14001 }
14002
edc3d884
MK
14003 err_printf(m, "Cursor [%d]:\n", i);
14004 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
14005 err_printf(m, " POS: %08x\n", error->cursor[i].position);
14006 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4 14007 }
63b66e5b
CW
14008
14009 for (i = 0; i < error->num_transcoders; i++) {
1cf84bb6 14010 err_printf(m, "CPU transcoder: %c\n",
63b66e5b 14011 transcoder_name(error->transcoder[i].cpu_transcoder));
ddf9c536
ID
14012 err_printf(m, " Power: %s\n",
14013 error->transcoder[i].power_domain_on ? "on" : "off");
63b66e5b
CW
14014 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
14015 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
14016 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
14017 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
14018 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
14019 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
14020 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
14021 }
c4a1d9e4 14022}
e2fcdaa9
VS
14023
14024void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
14025{
14026 struct intel_crtc *crtc;
14027
14028 for_each_intel_crtc(dev, crtc) {
14029 struct intel_unpin_work *work;
e2fcdaa9 14030
5e2d7afc 14031 spin_lock_irq(&dev->event_lock);
e2fcdaa9
VS
14032
14033 work = crtc->unpin_work;
14034
14035 if (work && work->event &&
14036 work->event->base.file_priv == file) {
14037 kfree(work->event);
14038 work->event = NULL;
14039 }
14040
5e2d7afc 14041 spin_unlock_irq(&dev->event_lock);
e2fcdaa9
VS
14042 }
14043}