Merge branch 'gadget' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_display.c
CommitLineData
79e53945
JB
1/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
618563e3 27#include <linux/dmi.h>
c1c7af60
JB
28#include <linux/module.h>
29#include <linux/input.h>
79e53945 30#include <linux/i2c.h>
7662c8bd 31#include <linux/kernel.h>
5a0e3ad6 32#include <linux/slab.h>
9cce37f4 33#include <linux/vgaarb.h>
e0dac65e 34#include <drm/drm_edid.h>
760285e7 35#include <drm/drmP.h>
79e53945 36#include "intel_drv.h"
760285e7 37#include <drm/i915_drm.h>
79e53945 38#include "i915_drv.h"
e5510fac 39#include "i915_trace.h"
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 };
f37b5c2b
DV
2374 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2375 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2376 PAGE_SIZE);
2377
2378 size_aligned -= base_aligned;
46f297fb 2379
ff2652ea
CW
2380 if (plane_config->size == 0)
2381 return false;
2382
f37b5c2b
DV
2383 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2384 base_aligned,
2385 base_aligned,
2386 size_aligned);
46f297fb 2387 if (!obj)
484b41dd 2388 return false;
46f297fb 2389
49af449b
DL
2390 obj->tiling_mode = plane_config->tiling;
2391 if (obj->tiling_mode == I915_TILING_X)
66e514c1 2392 obj->stride = crtc->base.primary->fb->pitches[0];
46f297fb 2393
66e514c1
DA
2394 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2395 mode_cmd.width = crtc->base.primary->fb->width;
2396 mode_cmd.height = crtc->base.primary->fb->height;
2397 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
46f297fb
JB
2398
2399 mutex_lock(&dev->struct_mutex);
2400
66e514c1 2401 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
484b41dd 2402 &mode_cmd, obj)) {
46f297fb
JB
2403 DRM_DEBUG_KMS("intel fb init failed\n");
2404 goto out_unref_obj;
2405 }
2406
a071fa00 2407 obj->frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(crtc->pipe);
46f297fb 2408 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2409
2410 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2411 return true;
46f297fb
JB
2412
2413out_unref_obj:
2414 drm_gem_object_unreference(&obj->base);
2415 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2416 return false;
2417}
2418
5724dbd1
DL
2419static void
2420intel_find_plane_obj(struct intel_crtc *intel_crtc,
2421 struct intel_initial_plane_config *plane_config)
484b41dd
JB
2422{
2423 struct drm_device *dev = intel_crtc->base.dev;
d9ceb816 2424 struct drm_i915_private *dev_priv = dev->dev_private;
484b41dd
JB
2425 struct drm_crtc *c;
2426 struct intel_crtc *i;
2ff8fde1 2427 struct drm_i915_gem_object *obj;
484b41dd 2428
66e514c1 2429 if (!intel_crtc->base.primary->fb)
484b41dd
JB
2430 return;
2431
2432 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2433 return;
2434
66e514c1
DA
2435 kfree(intel_crtc->base.primary->fb);
2436 intel_crtc->base.primary->fb = NULL;
484b41dd
JB
2437
2438 /*
2439 * Failed to alloc the obj, check to see if we should share
2440 * an fb with another CRTC instead
2441 */
70e1e0ec 2442 for_each_crtc(dev, c) {
484b41dd
JB
2443 i = to_intel_crtc(c);
2444
2445 if (c == &intel_crtc->base)
2446 continue;
2447
2ff8fde1
MR
2448 if (!i->active)
2449 continue;
2450
2451 obj = intel_fb_obj(c->primary->fb);
2452 if (obj == NULL)
484b41dd
JB
2453 continue;
2454
2ff8fde1 2455 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
d9ceb816
JB
2456 if (obj->tiling_mode != I915_TILING_NONE)
2457 dev_priv->preserve_bios_swizzle = true;
2458
66e514c1
DA
2459 drm_framebuffer_reference(c->primary->fb);
2460 intel_crtc->base.primary->fb = c->primary->fb;
2ff8fde1 2461 obj->frontbuffer_bits |= INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
484b41dd
JB
2462 break;
2463 }
2464 }
46f297fb
JB
2465}
2466
29b9bde6
DV
2467static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2468 struct drm_framebuffer *fb,
2469 int x, int y)
81255565
JB
2470{
2471 struct drm_device *dev = crtc->dev;
2472 struct drm_i915_private *dev_priv = dev->dev_private;
2473 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
c9ba6fad 2474 struct drm_i915_gem_object *obj;
81255565 2475 int plane = intel_crtc->plane;
e506a0c6 2476 unsigned long linear_offset;
81255565 2477 u32 dspcntr;
f45651ba 2478 u32 reg = DSPCNTR(plane);
48404c1e 2479 int pixel_size;
f45651ba 2480
fdd508a6
VS
2481 if (!intel_crtc->primary_enabled) {
2482 I915_WRITE(reg, 0);
2483 if (INTEL_INFO(dev)->gen >= 4)
2484 I915_WRITE(DSPSURF(plane), 0);
2485 else
2486 I915_WRITE(DSPADDR(plane), 0);
2487 POSTING_READ(reg);
2488 return;
2489 }
2490
c9ba6fad
VS
2491 obj = intel_fb_obj(fb);
2492 if (WARN_ON(obj == NULL))
2493 return;
2494
2495 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2496
f45651ba
VS
2497 dspcntr = DISPPLANE_GAMMA_ENABLE;
2498
fdd508a6 2499 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2500
2501 if (INTEL_INFO(dev)->gen < 4) {
2502 if (intel_crtc->pipe == PIPE_B)
2503 dspcntr |= DISPPLANE_SEL_PIPE_B;
2504
2505 /* pipesrc and dspsize control the size that is scaled from,
2506 * which should always be the user's requested size.
2507 */
2508 I915_WRITE(DSPSIZE(plane),
6e3c9717
ACO
2509 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2510 (intel_crtc->config->pipe_src_w - 1));
f45651ba 2511 I915_WRITE(DSPPOS(plane), 0);
c14b0485
VS
2512 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2513 I915_WRITE(PRIMSIZE(plane),
6e3c9717
ACO
2514 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2515 (intel_crtc->config->pipe_src_w - 1));
c14b0485
VS
2516 I915_WRITE(PRIMPOS(plane), 0);
2517 I915_WRITE(PRIMCNSTALPHA(plane), 0);
f45651ba 2518 }
81255565 2519
57779d06
VS
2520 switch (fb->pixel_format) {
2521 case DRM_FORMAT_C8:
81255565
JB
2522 dspcntr |= DISPPLANE_8BPP;
2523 break;
57779d06
VS
2524 case DRM_FORMAT_XRGB1555:
2525 case DRM_FORMAT_ARGB1555:
2526 dspcntr |= DISPPLANE_BGRX555;
81255565 2527 break;
57779d06
VS
2528 case DRM_FORMAT_RGB565:
2529 dspcntr |= DISPPLANE_BGRX565;
2530 break;
2531 case DRM_FORMAT_XRGB8888:
2532 case DRM_FORMAT_ARGB8888:
2533 dspcntr |= DISPPLANE_BGRX888;
2534 break;
2535 case DRM_FORMAT_XBGR8888:
2536 case DRM_FORMAT_ABGR8888:
2537 dspcntr |= DISPPLANE_RGBX888;
2538 break;
2539 case DRM_FORMAT_XRGB2101010:
2540 case DRM_FORMAT_ARGB2101010:
2541 dspcntr |= DISPPLANE_BGRX101010;
2542 break;
2543 case DRM_FORMAT_XBGR2101010:
2544 case DRM_FORMAT_ABGR2101010:
2545 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
2546 break;
2547 default:
baba133a 2548 BUG();
81255565 2549 }
57779d06 2550
f45651ba
VS
2551 if (INTEL_INFO(dev)->gen >= 4 &&
2552 obj->tiling_mode != I915_TILING_NONE)
2553 dspcntr |= DISPPLANE_TILED;
81255565 2554
de1aa629
VS
2555 if (IS_G4X(dev))
2556 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2557
b9897127 2558 linear_offset = y * fb->pitches[0] + x * pixel_size;
81255565 2559
c2c75131
DV
2560 if (INTEL_INFO(dev)->gen >= 4) {
2561 intel_crtc->dspaddr_offset =
bc752862 2562 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
b9897127 2563 pixel_size,
bc752862 2564 fb->pitches[0]);
c2c75131
DV
2565 linear_offset -= intel_crtc->dspaddr_offset;
2566 } else {
e506a0c6 2567 intel_crtc->dspaddr_offset = linear_offset;
c2c75131 2568 }
e506a0c6 2569
8e7d688b 2570 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2571 dspcntr |= DISPPLANE_ROTATE_180;
2572
6e3c9717
ACO
2573 x += (intel_crtc->config->pipe_src_w - 1);
2574 y += (intel_crtc->config->pipe_src_h - 1);
48404c1e
SJ
2575
2576 /* Finding the last pixel of the last line of the display
2577 data and adding to linear_offset*/
2578 linear_offset +=
6e3c9717
ACO
2579 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2580 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
48404c1e
SJ
2581 }
2582
2583 I915_WRITE(reg, dspcntr);
2584
f343c5f6
BW
2585 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2586 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2587 fb->pitches[0]);
01f2c773 2588 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
a6c45cf0 2589 if (INTEL_INFO(dev)->gen >= 4) {
85ba7b7d
DV
2590 I915_WRITE(DSPSURF(plane),
2591 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
5eddb70b 2592 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 2593 I915_WRITE(DSPLINOFF(plane), linear_offset);
5eddb70b 2594 } else
f343c5f6 2595 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
5eddb70b 2596 POSTING_READ(reg);
17638cd6
JB
2597}
2598
29b9bde6
DV
2599static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2600 struct drm_framebuffer *fb,
2601 int x, int y)
17638cd6
JB
2602{
2603 struct drm_device *dev = crtc->dev;
2604 struct drm_i915_private *dev_priv = dev->dev_private;
2605 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
c9ba6fad 2606 struct drm_i915_gem_object *obj;
17638cd6 2607 int plane = intel_crtc->plane;
e506a0c6 2608 unsigned long linear_offset;
17638cd6 2609 u32 dspcntr;
f45651ba 2610 u32 reg = DSPCNTR(plane);
48404c1e 2611 int pixel_size;
f45651ba 2612
fdd508a6
VS
2613 if (!intel_crtc->primary_enabled) {
2614 I915_WRITE(reg, 0);
2615 I915_WRITE(DSPSURF(plane), 0);
2616 POSTING_READ(reg);
2617 return;
2618 }
2619
c9ba6fad
VS
2620 obj = intel_fb_obj(fb);
2621 if (WARN_ON(obj == NULL))
2622 return;
2623
2624 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2625
f45651ba
VS
2626 dspcntr = DISPPLANE_GAMMA_ENABLE;
2627
fdd508a6 2628 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2629
2630 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2631 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
17638cd6 2632
57779d06
VS
2633 switch (fb->pixel_format) {
2634 case DRM_FORMAT_C8:
17638cd6
JB
2635 dspcntr |= DISPPLANE_8BPP;
2636 break;
57779d06
VS
2637 case DRM_FORMAT_RGB565:
2638 dspcntr |= DISPPLANE_BGRX565;
17638cd6 2639 break;
57779d06
VS
2640 case DRM_FORMAT_XRGB8888:
2641 case DRM_FORMAT_ARGB8888:
2642 dspcntr |= DISPPLANE_BGRX888;
2643 break;
2644 case DRM_FORMAT_XBGR8888:
2645 case DRM_FORMAT_ABGR8888:
2646 dspcntr |= DISPPLANE_RGBX888;
2647 break;
2648 case DRM_FORMAT_XRGB2101010:
2649 case DRM_FORMAT_ARGB2101010:
2650 dspcntr |= DISPPLANE_BGRX101010;
2651 break;
2652 case DRM_FORMAT_XBGR2101010:
2653 case DRM_FORMAT_ABGR2101010:
2654 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
2655 break;
2656 default:
baba133a 2657 BUG();
17638cd6
JB
2658 }
2659
2660 if (obj->tiling_mode != I915_TILING_NONE)
2661 dspcntr |= DISPPLANE_TILED;
17638cd6 2662
f45651ba 2663 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
1f5d76db 2664 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
17638cd6 2665
b9897127 2666 linear_offset = y * fb->pitches[0] + x * pixel_size;
c2c75131 2667 intel_crtc->dspaddr_offset =
bc752862 2668 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
b9897127 2669 pixel_size,
bc752862 2670 fb->pitches[0]);
c2c75131 2671 linear_offset -= intel_crtc->dspaddr_offset;
8e7d688b 2672 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2673 dspcntr |= DISPPLANE_ROTATE_180;
2674
2675 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
6e3c9717
ACO
2676 x += (intel_crtc->config->pipe_src_w - 1);
2677 y += (intel_crtc->config->pipe_src_h - 1);
48404c1e
SJ
2678
2679 /* Finding the last pixel of the last line of the display
2680 data and adding to linear_offset*/
2681 linear_offset +=
6e3c9717
ACO
2682 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2683 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
48404c1e
SJ
2684 }
2685 }
2686
2687 I915_WRITE(reg, dspcntr);
17638cd6 2688
f343c5f6
BW
2689 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2690 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2691 fb->pitches[0]);
01f2c773 2692 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
85ba7b7d
DV
2693 I915_WRITE(DSPSURF(plane),
2694 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
b3dc685e 2695 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
bc1c91eb
DL
2696 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2697 } else {
2698 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2699 I915_WRITE(DSPLINOFF(plane), linear_offset);
2700 }
17638cd6 2701 POSTING_READ(reg);
17638cd6
JB
2702}
2703
70d21f0e
DL
2704static void skylake_update_primary_plane(struct drm_crtc *crtc,
2705 struct drm_framebuffer *fb,
2706 int x, int y)
2707{
2708 struct drm_device *dev = crtc->dev;
2709 struct drm_i915_private *dev_priv = dev->dev_private;
2710 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2711 struct intel_framebuffer *intel_fb;
2712 struct drm_i915_gem_object *obj;
2713 int pipe = intel_crtc->pipe;
2714 u32 plane_ctl, stride;
2715
2716 if (!intel_crtc->primary_enabled) {
2717 I915_WRITE(PLANE_CTL(pipe, 0), 0);
2718 I915_WRITE(PLANE_SURF(pipe, 0), 0);
2719 POSTING_READ(PLANE_CTL(pipe, 0));
2720 return;
2721 }
2722
2723 plane_ctl = PLANE_CTL_ENABLE |
2724 PLANE_CTL_PIPE_GAMMA_ENABLE |
2725 PLANE_CTL_PIPE_CSC_ENABLE;
2726
2727 switch (fb->pixel_format) {
2728 case DRM_FORMAT_RGB565:
2729 plane_ctl |= PLANE_CTL_FORMAT_RGB_565;
2730 break;
2731 case DRM_FORMAT_XRGB8888:
2732 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2733 break;
f75fb42a
JN
2734 case DRM_FORMAT_ARGB8888:
2735 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2736 plane_ctl |= PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2737 break;
70d21f0e
DL
2738 case DRM_FORMAT_XBGR8888:
2739 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2740 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2741 break;
f75fb42a
JN
2742 case DRM_FORMAT_ABGR8888:
2743 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2744 plane_ctl |= PLANE_CTL_FORMAT_XRGB_8888;
2745 plane_ctl |= PLANE_CTL_ALPHA_SW_PREMULTIPLY;
2746 break;
70d21f0e
DL
2747 case DRM_FORMAT_XRGB2101010:
2748 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2749 break;
2750 case DRM_FORMAT_XBGR2101010:
2751 plane_ctl |= PLANE_CTL_ORDER_RGBX;
2752 plane_ctl |= PLANE_CTL_FORMAT_XRGB_2101010;
2753 break;
2754 default:
2755 BUG();
2756 }
2757
2758 intel_fb = to_intel_framebuffer(fb);
2759 obj = intel_fb->obj;
2760
2761 /*
2762 * The stride is either expressed as a multiple of 64 bytes chunks for
2763 * linear buffers or in number of tiles for tiled buffers.
2764 */
2765 switch (obj->tiling_mode) {
2766 case I915_TILING_NONE:
2767 stride = fb->pitches[0] >> 6;
2768 break;
2769 case I915_TILING_X:
2770 plane_ctl |= PLANE_CTL_TILED_X;
2771 stride = fb->pitches[0] >> 9;
2772 break;
2773 default:
2774 BUG();
2775 }
2776
2777 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
8e7d688b 2778 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180))
1447dde0 2779 plane_ctl |= PLANE_CTL_ROTATE_180;
70d21f0e
DL
2780
2781 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
2782
2783 DRM_DEBUG_KMS("Writing base %08lX %d,%d,%d,%d pitch=%d\n",
2784 i915_gem_obj_ggtt_offset(obj),
2785 x, y, fb->width, fb->height,
2786 fb->pitches[0]);
2787
2788 I915_WRITE(PLANE_POS(pipe, 0), 0);
2789 I915_WRITE(PLANE_OFFSET(pipe, 0), (y << 16) | x);
2790 I915_WRITE(PLANE_SIZE(pipe, 0),
6e3c9717
ACO
2791 (intel_crtc->config->pipe_src_h - 1) << 16 |
2792 (intel_crtc->config->pipe_src_w - 1));
70d21f0e
DL
2793 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
2794 I915_WRITE(PLANE_SURF(pipe, 0), i915_gem_obj_ggtt_offset(obj));
2795
2796 POSTING_READ(PLANE_SURF(pipe, 0));
2797}
2798
17638cd6
JB
2799/* Assume fb object is pinned & idle & fenced and just update base pointers */
2800static int
2801intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2802 int x, int y, enum mode_set_atomic state)
2803{
2804 struct drm_device *dev = crtc->dev;
2805 struct drm_i915_private *dev_priv = dev->dev_private;
17638cd6 2806
6b8e6ed0
CW
2807 if (dev_priv->display.disable_fbc)
2808 dev_priv->display.disable_fbc(dev);
81255565 2809
29b9bde6
DV
2810 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2811
2812 return 0;
81255565
JB
2813}
2814
7514747d 2815static void intel_complete_page_flips(struct drm_device *dev)
96a02917 2816{
96a02917
VS
2817 struct drm_crtc *crtc;
2818
70e1e0ec 2819 for_each_crtc(dev, crtc) {
96a02917
VS
2820 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2821 enum plane plane = intel_crtc->plane;
2822
2823 intel_prepare_page_flip(dev, plane);
2824 intel_finish_page_flip_plane(dev, plane);
2825 }
7514747d
VS
2826}
2827
2828static void intel_update_primary_planes(struct drm_device *dev)
2829{
2830 struct drm_i915_private *dev_priv = dev->dev_private;
2831 struct drm_crtc *crtc;
96a02917 2832
70e1e0ec 2833 for_each_crtc(dev, crtc) {
96a02917
VS
2834 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2835
51fd371b 2836 drm_modeset_lock(&crtc->mutex, NULL);
947fdaad
CW
2837 /*
2838 * FIXME: Once we have proper support for primary planes (and
2839 * disabling them without disabling the entire crtc) allow again
66e514c1 2840 * a NULL crtc->primary->fb.
947fdaad 2841 */
f4510a27 2842 if (intel_crtc->active && crtc->primary->fb)
262ca2b0 2843 dev_priv->display.update_primary_plane(crtc,
66e514c1 2844 crtc->primary->fb,
262ca2b0
MR
2845 crtc->x,
2846 crtc->y);
51fd371b 2847 drm_modeset_unlock(&crtc->mutex);
96a02917
VS
2848 }
2849}
2850
7514747d
VS
2851void intel_prepare_reset(struct drm_device *dev)
2852{
f98ce92f
VS
2853 struct drm_i915_private *dev_priv = to_i915(dev);
2854 struct intel_crtc *crtc;
2855
7514747d
VS
2856 /* no reset support for gen2 */
2857 if (IS_GEN2(dev))
2858 return;
2859
2860 /* reset doesn't touch the display */
2861 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
2862 return;
2863
2864 drm_modeset_lock_all(dev);
f98ce92f
VS
2865
2866 /*
2867 * Disabling the crtcs gracefully seems nicer. Also the
2868 * g33 docs say we should at least disable all the planes.
2869 */
2870 for_each_intel_crtc(dev, crtc) {
2871 if (crtc->active)
2872 dev_priv->display.crtc_disable(&crtc->base);
2873 }
7514747d
VS
2874}
2875
2876void intel_finish_reset(struct drm_device *dev)
2877{
2878 struct drm_i915_private *dev_priv = to_i915(dev);
2879
2880 /*
2881 * Flips in the rings will be nuked by the reset,
2882 * so complete all pending flips so that user space
2883 * will get its events and not get stuck.
2884 */
2885 intel_complete_page_flips(dev);
2886
2887 /* no reset support for gen2 */
2888 if (IS_GEN2(dev))
2889 return;
2890
2891 /* reset doesn't touch the display */
2892 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
2893 /*
2894 * Flips in the rings have been nuked by the reset,
2895 * so update the base address of all primary
2896 * planes to the the last fb to make sure we're
2897 * showing the correct fb after a reset.
2898 */
2899 intel_update_primary_planes(dev);
2900 return;
2901 }
2902
2903 /*
2904 * The display has been reset as well,
2905 * so need a full re-initialization.
2906 */
2907 intel_runtime_pm_disable_interrupts(dev_priv);
2908 intel_runtime_pm_enable_interrupts(dev_priv);
2909
2910 intel_modeset_init_hw(dev);
2911
2912 spin_lock_irq(&dev_priv->irq_lock);
2913 if (dev_priv->display.hpd_irq_setup)
2914 dev_priv->display.hpd_irq_setup(dev);
2915 spin_unlock_irq(&dev_priv->irq_lock);
2916
2917 intel_modeset_setup_hw_state(dev, true);
2918
2919 intel_hpd_init(dev_priv);
2920
2921 drm_modeset_unlock_all(dev);
2922}
2923
14667a4b
CW
2924static int
2925intel_finish_fb(struct drm_framebuffer *old_fb)
2926{
2ff8fde1 2927 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
14667a4b
CW
2928 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2929 bool was_interruptible = dev_priv->mm.interruptible;
2930 int ret;
2931
14667a4b
CW
2932 /* Big Hammer, we also need to ensure that any pending
2933 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2934 * current scanout is retired before unpinning the old
2935 * framebuffer.
2936 *
2937 * This should only fail upon a hung GPU, in which case we
2938 * can safely continue.
2939 */
2940 dev_priv->mm.interruptible = false;
2941 ret = i915_gem_object_finish_gpu(obj);
2942 dev_priv->mm.interruptible = was_interruptible;
2943
2944 return ret;
2945}
2946
7d5e3799
CW
2947static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2948{
2949 struct drm_device *dev = crtc->dev;
2950 struct drm_i915_private *dev_priv = dev->dev_private;
2951 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7d5e3799
CW
2952 bool pending;
2953
2954 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2955 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2956 return false;
2957
5e2d7afc 2958 spin_lock_irq(&dev->event_lock);
7d5e3799 2959 pending = to_intel_crtc(crtc)->unpin_work != NULL;
5e2d7afc 2960 spin_unlock_irq(&dev->event_lock);
7d5e3799
CW
2961
2962 return pending;
2963}
2964
e30e8f75
GP
2965static void intel_update_pipe_size(struct intel_crtc *crtc)
2966{
2967 struct drm_device *dev = crtc->base.dev;
2968 struct drm_i915_private *dev_priv = dev->dev_private;
2969 const struct drm_display_mode *adjusted_mode;
2970
2971 if (!i915.fastboot)
2972 return;
2973
2974 /*
2975 * Update pipe size and adjust fitter if needed: the reason for this is
2976 * that in compute_mode_changes we check the native mode (not the pfit
2977 * mode) to see if we can flip rather than do a full mode set. In the
2978 * fastboot case, we'll flip, but if we don't update the pipesrc and
2979 * pfit state, we'll end up with a big fb scanned out into the wrong
2980 * sized surface.
2981 *
2982 * To fix this properly, we need to hoist the checks up into
2983 * compute_mode_changes (or above), check the actual pfit state and
2984 * whether the platform allows pfit disable with pipe active, and only
2985 * then update the pipesrc and pfit state, even on the flip path.
2986 */
2987
6e3c9717 2988 adjusted_mode = &crtc->config->base.adjusted_mode;
e30e8f75
GP
2989
2990 I915_WRITE(PIPESRC(crtc->pipe),
2991 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2992 (adjusted_mode->crtc_vdisplay - 1));
6e3c9717 2993 if (!crtc->config->pch_pfit.enabled &&
409ee761
ACO
2994 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2995 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
e30e8f75
GP
2996 I915_WRITE(PF_CTL(crtc->pipe), 0);
2997 I915_WRITE(PF_WIN_POS(crtc->pipe), 0);
2998 I915_WRITE(PF_WIN_SZ(crtc->pipe), 0);
2999 }
6e3c9717
ACO
3000 crtc->config->pipe_src_w = adjusted_mode->crtc_hdisplay;
3001 crtc->config->pipe_src_h = adjusted_mode->crtc_vdisplay;
e30e8f75
GP
3002}
3003
5e84e1a4
ZW
3004static void intel_fdi_normal_train(struct drm_crtc *crtc)
3005{
3006 struct drm_device *dev = crtc->dev;
3007 struct drm_i915_private *dev_priv = dev->dev_private;
3008 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3009 int pipe = intel_crtc->pipe;
3010 u32 reg, temp;
3011
3012 /* enable normal train */
3013 reg = FDI_TX_CTL(pipe);
3014 temp = I915_READ(reg);
61e499bf 3015 if (IS_IVYBRIDGE(dev)) {
357555c0
JB
3016 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3017 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
3018 } else {
3019 temp &= ~FDI_LINK_TRAIN_NONE;
3020 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 3021 }
5e84e1a4
ZW
3022 I915_WRITE(reg, temp);
3023
3024 reg = FDI_RX_CTL(pipe);
3025 temp = I915_READ(reg);
3026 if (HAS_PCH_CPT(dev)) {
3027 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3028 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3029 } else {
3030 temp &= ~FDI_LINK_TRAIN_NONE;
3031 temp |= FDI_LINK_TRAIN_NONE;
3032 }
3033 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3034
3035 /* wait one idle pattern time */
3036 POSTING_READ(reg);
3037 udelay(1000);
357555c0
JB
3038
3039 /* IVB wants error correction enabled */
3040 if (IS_IVYBRIDGE(dev))
3041 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3042 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
3043}
3044
1fbc0d78 3045static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
1e833f40 3046{
1fbc0d78 3047 return crtc->base.enabled && crtc->active &&
6e3c9717 3048 crtc->config->has_pch_encoder;
1e833f40
DV
3049}
3050
01a415fd
DV
3051static void ivb_modeset_global_resources(struct drm_device *dev)
3052{
3053 struct drm_i915_private *dev_priv = dev->dev_private;
3054 struct intel_crtc *pipe_B_crtc =
3055 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
3056 struct intel_crtc *pipe_C_crtc =
3057 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
3058 uint32_t temp;
3059
1e833f40
DV
3060 /*
3061 * When everything is off disable fdi C so that we could enable fdi B
3062 * with all lanes. Note that we don't care about enabled pipes without
3063 * an enabled pch encoder.
3064 */
3065 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
3066 !pipe_has_enabled_pch(pipe_C_crtc)) {
01a415fd
DV
3067 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3068 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3069
3070 temp = I915_READ(SOUTH_CHICKEN1);
3071 temp &= ~FDI_BC_BIFURCATION_SELECT;
3072 DRM_DEBUG_KMS("disabling fdi C rx\n");
3073 I915_WRITE(SOUTH_CHICKEN1, temp);
3074 }
3075}
3076
8db9d77b
ZW
3077/* The FDI link training functions for ILK/Ibexpeak. */
3078static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3079{
3080 struct drm_device *dev = crtc->dev;
3081 struct drm_i915_private *dev_priv = dev->dev_private;
3082 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3083 int pipe = intel_crtc->pipe;
5eddb70b 3084 u32 reg, temp, tries;
8db9d77b 3085
1c8562f6 3086 /* FDI needs bits from pipe first */
0fc932b8 3087 assert_pipe_enabled(dev_priv, pipe);
0fc932b8 3088
e1a44743
AJ
3089 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3090 for train result */
5eddb70b
CW
3091 reg = FDI_RX_IMR(pipe);
3092 temp = I915_READ(reg);
e1a44743
AJ
3093 temp &= ~FDI_RX_SYMBOL_LOCK;
3094 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3095 I915_WRITE(reg, temp);
3096 I915_READ(reg);
e1a44743
AJ
3097 udelay(150);
3098
8db9d77b 3099 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3100 reg = FDI_TX_CTL(pipe);
3101 temp = I915_READ(reg);
627eb5a3 3102 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3103 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3104 temp &= ~FDI_LINK_TRAIN_NONE;
3105 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 3106 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3107
5eddb70b
CW
3108 reg = FDI_RX_CTL(pipe);
3109 temp = I915_READ(reg);
8db9d77b
ZW
3110 temp &= ~FDI_LINK_TRAIN_NONE;
3111 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
3112 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3113
3114 POSTING_READ(reg);
8db9d77b
ZW
3115 udelay(150);
3116
5b2adf89 3117 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
3118 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3119 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3120 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 3121
5eddb70b 3122 reg = FDI_RX_IIR(pipe);
e1a44743 3123 for (tries = 0; tries < 5; tries++) {
5eddb70b 3124 temp = I915_READ(reg);
8db9d77b
ZW
3125 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3126
3127 if ((temp & FDI_RX_BIT_LOCK)) {
3128 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 3129 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
3130 break;
3131 }
8db9d77b 3132 }
e1a44743 3133 if (tries == 5)
5eddb70b 3134 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3135
3136 /* Train 2 */
5eddb70b
CW
3137 reg = FDI_TX_CTL(pipe);
3138 temp = I915_READ(reg);
8db9d77b
ZW
3139 temp &= ~FDI_LINK_TRAIN_NONE;
3140 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3141 I915_WRITE(reg, temp);
8db9d77b 3142
5eddb70b
CW
3143 reg = FDI_RX_CTL(pipe);
3144 temp = I915_READ(reg);
8db9d77b
ZW
3145 temp &= ~FDI_LINK_TRAIN_NONE;
3146 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3147 I915_WRITE(reg, temp);
8db9d77b 3148
5eddb70b
CW
3149 POSTING_READ(reg);
3150 udelay(150);
8db9d77b 3151
5eddb70b 3152 reg = FDI_RX_IIR(pipe);
e1a44743 3153 for (tries = 0; tries < 5; tries++) {
5eddb70b 3154 temp = I915_READ(reg);
8db9d77b
ZW
3155 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3156
3157 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 3158 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
3159 DRM_DEBUG_KMS("FDI train 2 done.\n");
3160 break;
3161 }
8db9d77b 3162 }
e1a44743 3163 if (tries == 5)
5eddb70b 3164 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3165
3166 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 3167
8db9d77b
ZW
3168}
3169
0206e353 3170static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
3171 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3172 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3173 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3174 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3175};
3176
3177/* The FDI link training functions for SNB/Cougarpoint. */
3178static void gen6_fdi_link_train(struct drm_crtc *crtc)
3179{
3180 struct drm_device *dev = crtc->dev;
3181 struct drm_i915_private *dev_priv = dev->dev_private;
3182 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3183 int pipe = intel_crtc->pipe;
fa37d39e 3184 u32 reg, temp, i, retry;
8db9d77b 3185
e1a44743
AJ
3186 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3187 for train result */
5eddb70b
CW
3188 reg = FDI_RX_IMR(pipe);
3189 temp = I915_READ(reg);
e1a44743
AJ
3190 temp &= ~FDI_RX_SYMBOL_LOCK;
3191 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3192 I915_WRITE(reg, temp);
3193
3194 POSTING_READ(reg);
e1a44743
AJ
3195 udelay(150);
3196
8db9d77b 3197 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3198 reg = FDI_TX_CTL(pipe);
3199 temp = I915_READ(reg);
627eb5a3 3200 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3201 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3202 temp &= ~FDI_LINK_TRAIN_NONE;
3203 temp |= FDI_LINK_TRAIN_PATTERN_1;
3204 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3205 /* SNB-B */
3206 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 3207 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3208
d74cf324
DV
3209 I915_WRITE(FDI_RX_MISC(pipe),
3210 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3211
5eddb70b
CW
3212 reg = FDI_RX_CTL(pipe);
3213 temp = I915_READ(reg);
8db9d77b
ZW
3214 if (HAS_PCH_CPT(dev)) {
3215 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3216 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3217 } else {
3218 temp &= ~FDI_LINK_TRAIN_NONE;
3219 temp |= FDI_LINK_TRAIN_PATTERN_1;
3220 }
5eddb70b
CW
3221 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3222
3223 POSTING_READ(reg);
8db9d77b
ZW
3224 udelay(150);
3225
0206e353 3226 for (i = 0; i < 4; i++) {
5eddb70b
CW
3227 reg = FDI_TX_CTL(pipe);
3228 temp = I915_READ(reg);
8db9d77b
ZW
3229 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3230 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3231 I915_WRITE(reg, temp);
3232
3233 POSTING_READ(reg);
8db9d77b
ZW
3234 udelay(500);
3235
fa37d39e
SP
3236 for (retry = 0; retry < 5; retry++) {
3237 reg = FDI_RX_IIR(pipe);
3238 temp = I915_READ(reg);
3239 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3240 if (temp & FDI_RX_BIT_LOCK) {
3241 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3242 DRM_DEBUG_KMS("FDI train 1 done.\n");
3243 break;
3244 }
3245 udelay(50);
8db9d77b 3246 }
fa37d39e
SP
3247 if (retry < 5)
3248 break;
8db9d77b
ZW
3249 }
3250 if (i == 4)
5eddb70b 3251 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3252
3253 /* Train 2 */
5eddb70b
CW
3254 reg = FDI_TX_CTL(pipe);
3255 temp = I915_READ(reg);
8db9d77b
ZW
3256 temp &= ~FDI_LINK_TRAIN_NONE;
3257 temp |= FDI_LINK_TRAIN_PATTERN_2;
3258 if (IS_GEN6(dev)) {
3259 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3260 /* SNB-B */
3261 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3262 }
5eddb70b 3263 I915_WRITE(reg, temp);
8db9d77b 3264
5eddb70b
CW
3265 reg = FDI_RX_CTL(pipe);
3266 temp = I915_READ(reg);
8db9d77b
ZW
3267 if (HAS_PCH_CPT(dev)) {
3268 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3269 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3270 } else {
3271 temp &= ~FDI_LINK_TRAIN_NONE;
3272 temp |= FDI_LINK_TRAIN_PATTERN_2;
3273 }
5eddb70b
CW
3274 I915_WRITE(reg, temp);
3275
3276 POSTING_READ(reg);
8db9d77b
ZW
3277 udelay(150);
3278
0206e353 3279 for (i = 0; i < 4; i++) {
5eddb70b
CW
3280 reg = FDI_TX_CTL(pipe);
3281 temp = I915_READ(reg);
8db9d77b
ZW
3282 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3283 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3284 I915_WRITE(reg, temp);
3285
3286 POSTING_READ(reg);
8db9d77b
ZW
3287 udelay(500);
3288
fa37d39e
SP
3289 for (retry = 0; retry < 5; retry++) {
3290 reg = FDI_RX_IIR(pipe);
3291 temp = I915_READ(reg);
3292 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3293 if (temp & FDI_RX_SYMBOL_LOCK) {
3294 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3295 DRM_DEBUG_KMS("FDI train 2 done.\n");
3296 break;
3297 }
3298 udelay(50);
8db9d77b 3299 }
fa37d39e
SP
3300 if (retry < 5)
3301 break;
8db9d77b
ZW
3302 }
3303 if (i == 4)
5eddb70b 3304 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3305
3306 DRM_DEBUG_KMS("FDI train done.\n");
3307}
3308
357555c0
JB
3309/* Manual link training for Ivy Bridge A0 parts */
3310static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3311{
3312 struct drm_device *dev = crtc->dev;
3313 struct drm_i915_private *dev_priv = dev->dev_private;
3314 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3315 int pipe = intel_crtc->pipe;
139ccd3f 3316 u32 reg, temp, i, j;
357555c0
JB
3317
3318 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3319 for train result */
3320 reg = FDI_RX_IMR(pipe);
3321 temp = I915_READ(reg);
3322 temp &= ~FDI_RX_SYMBOL_LOCK;
3323 temp &= ~FDI_RX_BIT_LOCK;
3324 I915_WRITE(reg, temp);
3325
3326 POSTING_READ(reg);
3327 udelay(150);
3328
01a415fd
DV
3329 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3330 I915_READ(FDI_RX_IIR(pipe)));
3331
139ccd3f
JB
3332 /* Try each vswing and preemphasis setting twice before moving on */
3333 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3334 /* disable first in case we need to retry */
3335 reg = FDI_TX_CTL(pipe);
3336 temp = I915_READ(reg);
3337 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3338 temp &= ~FDI_TX_ENABLE;
3339 I915_WRITE(reg, temp);
357555c0 3340
139ccd3f
JB
3341 reg = FDI_RX_CTL(pipe);
3342 temp = I915_READ(reg);
3343 temp &= ~FDI_LINK_TRAIN_AUTO;
3344 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3345 temp &= ~FDI_RX_ENABLE;
3346 I915_WRITE(reg, temp);
357555c0 3347
139ccd3f 3348 /* enable CPU FDI TX and PCH FDI RX */
357555c0
JB
3349 reg = FDI_TX_CTL(pipe);
3350 temp = I915_READ(reg);
139ccd3f 3351 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3352 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
139ccd3f 3353 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
357555c0 3354 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
139ccd3f
JB
3355 temp |= snb_b_fdi_train_param[j/2];
3356 temp |= FDI_COMPOSITE_SYNC;
3357 I915_WRITE(reg, temp | FDI_TX_ENABLE);
357555c0 3358
139ccd3f
JB
3359 I915_WRITE(FDI_RX_MISC(pipe),
3360 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
357555c0 3361
139ccd3f 3362 reg = FDI_RX_CTL(pipe);
357555c0 3363 temp = I915_READ(reg);
139ccd3f
JB
3364 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3365 temp |= FDI_COMPOSITE_SYNC;
3366 I915_WRITE(reg, temp | FDI_RX_ENABLE);
357555c0 3367
139ccd3f
JB
3368 POSTING_READ(reg);
3369 udelay(1); /* should be 0.5us */
357555c0 3370
139ccd3f
JB
3371 for (i = 0; i < 4; i++) {
3372 reg = FDI_RX_IIR(pipe);
3373 temp = I915_READ(reg);
3374 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3375
139ccd3f
JB
3376 if (temp & FDI_RX_BIT_LOCK ||
3377 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3378 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3379 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3380 i);
3381 break;
3382 }
3383 udelay(1); /* should be 0.5us */
3384 }
3385 if (i == 4) {
3386 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3387 continue;
3388 }
357555c0 3389
139ccd3f 3390 /* Train 2 */
357555c0
JB
3391 reg = FDI_TX_CTL(pipe);
3392 temp = I915_READ(reg);
139ccd3f
JB
3393 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3394 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3395 I915_WRITE(reg, temp);
3396
3397 reg = FDI_RX_CTL(pipe);
3398 temp = I915_READ(reg);
3399 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3400 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
357555c0
JB
3401 I915_WRITE(reg, temp);
3402
3403 POSTING_READ(reg);
139ccd3f 3404 udelay(2); /* should be 1.5us */
357555c0 3405
139ccd3f
JB
3406 for (i = 0; i < 4; i++) {
3407 reg = FDI_RX_IIR(pipe);
3408 temp = I915_READ(reg);
3409 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3410
139ccd3f
JB
3411 if (temp & FDI_RX_SYMBOL_LOCK ||
3412 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3413 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3414 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3415 i);
3416 goto train_done;
3417 }
3418 udelay(2); /* should be 1.5us */
357555c0 3419 }
139ccd3f
JB
3420 if (i == 4)
3421 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
357555c0 3422 }
357555c0 3423
139ccd3f 3424train_done:
357555c0
JB
3425 DRM_DEBUG_KMS("FDI train done.\n");
3426}
3427
88cefb6c 3428static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 3429{
88cefb6c 3430 struct drm_device *dev = intel_crtc->base.dev;
2c07245f 3431 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 3432 int pipe = intel_crtc->pipe;
5eddb70b 3433 u32 reg, temp;
79e53945 3434
c64e311e 3435
c98e9dcf 3436 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
3437 reg = FDI_RX_CTL(pipe);
3438 temp = I915_READ(reg);
627eb5a3 3439 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
6e3c9717 3440 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
dfd07d72 3441 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
3442 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3443
3444 POSTING_READ(reg);
c98e9dcf
JB
3445 udelay(200);
3446
3447 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
3448 temp = I915_READ(reg);
3449 I915_WRITE(reg, temp | FDI_PCDCLK);
3450
3451 POSTING_READ(reg);
c98e9dcf
JB
3452 udelay(200);
3453
20749730
PZ
3454 /* Enable CPU FDI TX PLL, always on for Ironlake */
3455 reg = FDI_TX_CTL(pipe);
3456 temp = I915_READ(reg);
3457 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3458 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 3459
20749730
PZ
3460 POSTING_READ(reg);
3461 udelay(100);
6be4a607 3462 }
0e23b99d
JB
3463}
3464
88cefb6c
DV
3465static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3466{
3467 struct drm_device *dev = intel_crtc->base.dev;
3468 struct drm_i915_private *dev_priv = dev->dev_private;
3469 int pipe = intel_crtc->pipe;
3470 u32 reg, temp;
3471
3472 /* Switch from PCDclk to Rawclk */
3473 reg = FDI_RX_CTL(pipe);
3474 temp = I915_READ(reg);
3475 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3476
3477 /* Disable CPU FDI TX PLL */
3478 reg = FDI_TX_CTL(pipe);
3479 temp = I915_READ(reg);
3480 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3481
3482 POSTING_READ(reg);
3483 udelay(100);
3484
3485 reg = FDI_RX_CTL(pipe);
3486 temp = I915_READ(reg);
3487 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3488
3489 /* Wait for the clocks to turn off. */
3490 POSTING_READ(reg);
3491 udelay(100);
3492}
3493
0fc932b8
JB
3494static void ironlake_fdi_disable(struct drm_crtc *crtc)
3495{
3496 struct drm_device *dev = crtc->dev;
3497 struct drm_i915_private *dev_priv = dev->dev_private;
3498 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3499 int pipe = intel_crtc->pipe;
3500 u32 reg, temp;
3501
3502 /* disable CPU FDI tx and PCH FDI rx */
3503 reg = FDI_TX_CTL(pipe);
3504 temp = I915_READ(reg);
3505 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3506 POSTING_READ(reg);
3507
3508 reg = FDI_RX_CTL(pipe);
3509 temp = I915_READ(reg);
3510 temp &= ~(0x7 << 16);
dfd07d72 3511 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3512 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3513
3514 POSTING_READ(reg);
3515 udelay(100);
3516
3517 /* Ironlake workaround, disable clock pointer after downing FDI */
eba905b2 3518 if (HAS_PCH_IBX(dev))
6f06ce18 3519 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
0fc932b8
JB
3520
3521 /* still set train pattern 1 */
3522 reg = FDI_TX_CTL(pipe);
3523 temp = I915_READ(reg);
3524 temp &= ~FDI_LINK_TRAIN_NONE;
3525 temp |= FDI_LINK_TRAIN_PATTERN_1;
3526 I915_WRITE(reg, temp);
3527
3528 reg = FDI_RX_CTL(pipe);
3529 temp = I915_READ(reg);
3530 if (HAS_PCH_CPT(dev)) {
3531 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3532 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3533 } else {
3534 temp &= ~FDI_LINK_TRAIN_NONE;
3535 temp |= FDI_LINK_TRAIN_PATTERN_1;
3536 }
3537 /* BPC in FDI rx is consistent with that in PIPECONF */
3538 temp &= ~(0x07 << 16);
dfd07d72 3539 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3540 I915_WRITE(reg, temp);
3541
3542 POSTING_READ(reg);
3543 udelay(100);
3544}
3545
5dce5b93
CW
3546bool intel_has_pending_fb_unpin(struct drm_device *dev)
3547{
3548 struct intel_crtc *crtc;
3549
3550 /* Note that we don't need to be called with mode_config.lock here
3551 * as our list of CRTC objects is static for the lifetime of the
3552 * device and so cannot disappear as we iterate. Similarly, we can
3553 * happily treat the predicates as racy, atomic checks as userspace
3554 * cannot claim and pin a new fb without at least acquring the
3555 * struct_mutex and so serialising with us.
3556 */
d3fcc808 3557 for_each_intel_crtc(dev, crtc) {
5dce5b93
CW
3558 if (atomic_read(&crtc->unpin_work_count) == 0)
3559 continue;
3560
3561 if (crtc->unpin_work)
3562 intel_wait_for_vblank(dev, crtc->pipe);
3563
3564 return true;
3565 }
3566
3567 return false;
3568}
3569
d6bbafa1
CW
3570static void page_flip_completed(struct intel_crtc *intel_crtc)
3571{
3572 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3573 struct intel_unpin_work *work = intel_crtc->unpin_work;
3574
3575 /* ensure that the unpin work is consistent wrt ->pending. */
3576 smp_rmb();
3577 intel_crtc->unpin_work = NULL;
3578
3579 if (work->event)
3580 drm_send_vblank_event(intel_crtc->base.dev,
3581 intel_crtc->pipe,
3582 work->event);
3583
3584 drm_crtc_vblank_put(&intel_crtc->base);
3585
3586 wake_up_all(&dev_priv->pending_flip_queue);
3587 queue_work(dev_priv->wq, &work->work);
3588
3589 trace_i915_flip_complete(intel_crtc->plane,
3590 work->pending_flip_obj);
3591}
3592
46a55d30 3593void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
e6c3a2a6 3594{
0f91128d 3595 struct drm_device *dev = crtc->dev;
5bb61643 3596 struct drm_i915_private *dev_priv = dev->dev_private;
e6c3a2a6 3597
2c10d571 3598 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
9c787942
CW
3599 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3600 !intel_crtc_has_pending_flip(crtc),
3601 60*HZ) == 0)) {
3602 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2c10d571 3603
5e2d7afc 3604 spin_lock_irq(&dev->event_lock);
9c787942
CW
3605 if (intel_crtc->unpin_work) {
3606 WARN_ONCE(1, "Removing stuck page flip\n");
3607 page_flip_completed(intel_crtc);
3608 }
5e2d7afc 3609 spin_unlock_irq(&dev->event_lock);
9c787942 3610 }
5bb61643 3611
975d568a
CW
3612 if (crtc->primary->fb) {
3613 mutex_lock(&dev->struct_mutex);
3614 intel_finish_fb(crtc->primary->fb);
3615 mutex_unlock(&dev->struct_mutex);
3616 }
e6c3a2a6
CW
3617}
3618
e615efe4
ED
3619/* Program iCLKIP clock to the desired frequency */
3620static void lpt_program_iclkip(struct drm_crtc *crtc)
3621{
3622 struct drm_device *dev = crtc->dev;
3623 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 3624 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
e615efe4
ED
3625 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3626 u32 temp;
3627
09153000
DV
3628 mutex_lock(&dev_priv->dpio_lock);
3629
e615efe4
ED
3630 /* It is necessary to ungate the pixclk gate prior to programming
3631 * the divisors, and gate it back when it is done.
3632 */
3633 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3634
3635 /* Disable SSCCTL */
3636 intel_sbi_write(dev_priv, SBI_SSCCTL6,
988d6ee8
PZ
3637 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3638 SBI_SSCCTL_DISABLE,
3639 SBI_ICLK);
e615efe4
ED
3640
3641 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
12d7ceed 3642 if (clock == 20000) {
e615efe4
ED
3643 auxdiv = 1;
3644 divsel = 0x41;
3645 phaseinc = 0x20;
3646 } else {
3647 /* The iCLK virtual clock root frequency is in MHz,
241bfc38
DL
3648 * but the adjusted_mode->crtc_clock in in KHz. To get the
3649 * divisors, it is necessary to divide one by another, so we
e615efe4
ED
3650 * convert the virtual clock precision to KHz here for higher
3651 * precision.
3652 */
3653 u32 iclk_virtual_root_freq = 172800 * 1000;
3654 u32 iclk_pi_range = 64;
3655 u32 desired_divisor, msb_divisor_value, pi_value;
3656
12d7ceed 3657 desired_divisor = (iclk_virtual_root_freq / clock);
e615efe4
ED
3658 msb_divisor_value = desired_divisor / iclk_pi_range;
3659 pi_value = desired_divisor % iclk_pi_range;
3660
3661 auxdiv = 0;
3662 divsel = msb_divisor_value - 2;
3663 phaseinc = pi_value;
3664 }
3665
3666 /* This should not happen with any sane values */
3667 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3668 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3669 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3670 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3671
3672 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
12d7ceed 3673 clock,
e615efe4
ED
3674 auxdiv,
3675 divsel,
3676 phasedir,
3677 phaseinc);
3678
3679 /* Program SSCDIVINTPHASE6 */
988d6ee8 3680 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
3681 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3682 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3683 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3684 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3685 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3686 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 3687 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
3688
3689 /* Program SSCAUXDIV */
988d6ee8 3690 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
3691 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3692 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 3693 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
3694
3695 /* Enable modulator and associated divider */
988d6ee8 3696 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 3697 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 3698 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4
ED
3699
3700 /* Wait for initialization time */
3701 udelay(24);
3702
3703 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
09153000
DV
3704
3705 mutex_unlock(&dev_priv->dpio_lock);
e615efe4
ED
3706}
3707
275f01b2
DV
3708static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3709 enum pipe pch_transcoder)
3710{
3711 struct drm_device *dev = crtc->base.dev;
3712 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 3713 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
275f01b2
DV
3714
3715 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3716 I915_READ(HTOTAL(cpu_transcoder)));
3717 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3718 I915_READ(HBLANK(cpu_transcoder)));
3719 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3720 I915_READ(HSYNC(cpu_transcoder)));
3721
3722 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3723 I915_READ(VTOTAL(cpu_transcoder)));
3724 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3725 I915_READ(VBLANK(cpu_transcoder)));
3726 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3727 I915_READ(VSYNC(cpu_transcoder)));
3728 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3729 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3730}
3731
1fbc0d78
DV
3732static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3733{
3734 struct drm_i915_private *dev_priv = dev->dev_private;
3735 uint32_t temp;
3736
3737 temp = I915_READ(SOUTH_CHICKEN1);
3738 if (temp & FDI_BC_BIFURCATION_SELECT)
3739 return;
3740
3741 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3742 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3743
3744 temp |= FDI_BC_BIFURCATION_SELECT;
3745 DRM_DEBUG_KMS("enabling fdi C rx\n");
3746 I915_WRITE(SOUTH_CHICKEN1, temp);
3747 POSTING_READ(SOUTH_CHICKEN1);
3748}
3749
3750static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3751{
3752 struct drm_device *dev = intel_crtc->base.dev;
3753 struct drm_i915_private *dev_priv = dev->dev_private;
3754
3755 switch (intel_crtc->pipe) {
3756 case PIPE_A:
3757 break;
3758 case PIPE_B:
6e3c9717 3759 if (intel_crtc->config->fdi_lanes > 2)
1fbc0d78
DV
3760 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3761 else
3762 cpt_enable_fdi_bc_bifurcation(dev);
3763
3764 break;
3765 case PIPE_C:
3766 cpt_enable_fdi_bc_bifurcation(dev);
3767
3768 break;
3769 default:
3770 BUG();
3771 }
3772}
3773
f67a559d
JB
3774/*
3775 * Enable PCH resources required for PCH ports:
3776 * - PCH PLLs
3777 * - FDI training & RX/TX
3778 * - update transcoder timings
3779 * - DP transcoding bits
3780 * - transcoder
3781 */
3782static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
3783{
3784 struct drm_device *dev = crtc->dev;
3785 struct drm_i915_private *dev_priv = dev->dev_private;
3786 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3787 int pipe = intel_crtc->pipe;
ee7b9f93 3788 u32 reg, temp;
2c07245f 3789
ab9412ba 3790 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 3791
1fbc0d78
DV
3792 if (IS_IVYBRIDGE(dev))
3793 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3794
cd986abb
DV
3795 /* Write the TU size bits before fdi link training, so that error
3796 * detection works. */
3797 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3798 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3799
c98e9dcf 3800 /* For PCH output, training FDI link */
674cf967 3801 dev_priv->display.fdi_link_train(crtc);
2c07245f 3802
3ad8a208
DV
3803 /* We need to program the right clock selection before writing the pixel
3804 * mutliplier into the DPLL. */
303b81e0 3805 if (HAS_PCH_CPT(dev)) {
ee7b9f93 3806 u32 sel;
4b645f14 3807
c98e9dcf 3808 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
3809 temp |= TRANS_DPLL_ENABLE(pipe);
3810 sel = TRANS_DPLLB_SEL(pipe);
6e3c9717 3811 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
ee7b9f93
JB
3812 temp |= sel;
3813 else
3814 temp &= ~sel;
c98e9dcf 3815 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 3816 }
5eddb70b 3817
3ad8a208
DV
3818 /* XXX: pch pll's can be enabled any time before we enable the PCH
3819 * transcoder, and we actually should do this to not upset any PCH
3820 * transcoder that already use the clock when we share it.
3821 *
3822 * Note that enable_shared_dpll tries to do the right thing, but
3823 * get_shared_dpll unconditionally resets the pll - we need that to have
3824 * the right LVDS enable sequence. */
85b3894f 3825 intel_enable_shared_dpll(intel_crtc);
3ad8a208 3826
d9b6cb56
JB
3827 /* set transcoder timing, panel must allow it */
3828 assert_panel_unlocked(dev_priv, pipe);
275f01b2 3829 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 3830
303b81e0 3831 intel_fdi_normal_train(crtc);
5e84e1a4 3832
c98e9dcf 3833 /* For PCH DP, enable TRANS_DP_CTL */
6e3c9717 3834 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
dfd07d72 3835 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
5eddb70b
CW
3836 reg = TRANS_DP_CTL(pipe);
3837 temp = I915_READ(reg);
3838 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
3839 TRANS_DP_SYNC_MASK |
3840 TRANS_DP_BPC_MASK);
5eddb70b
CW
3841 temp |= (TRANS_DP_OUTPUT_ENABLE |
3842 TRANS_DP_ENH_FRAMING);
9325c9f0 3843 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf
JB
3844
3845 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 3846 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
c98e9dcf 3847 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 3848 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
3849
3850 switch (intel_trans_dp_port_sel(crtc)) {
3851 case PCH_DP_B:
5eddb70b 3852 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf
JB
3853 break;
3854 case PCH_DP_C:
5eddb70b 3855 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf
JB
3856 break;
3857 case PCH_DP_D:
5eddb70b 3858 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
3859 break;
3860 default:
e95d41e1 3861 BUG();
32f9d658 3862 }
2c07245f 3863
5eddb70b 3864 I915_WRITE(reg, temp);
6be4a607 3865 }
b52eb4dc 3866
b8a4f404 3867 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
3868}
3869
1507e5bd
PZ
3870static void lpt_pch_enable(struct drm_crtc *crtc)
3871{
3872 struct drm_device *dev = crtc->dev;
3873 struct drm_i915_private *dev_priv = dev->dev_private;
3874 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 3875 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
1507e5bd 3876
ab9412ba 3877 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 3878
8c52b5e8 3879 lpt_program_iclkip(crtc);
1507e5bd 3880
0540e488 3881 /* Set transcoder timing. */
275f01b2 3882 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 3883
937bb610 3884 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
3885}
3886
716c2e55 3887void intel_put_shared_dpll(struct intel_crtc *crtc)
ee7b9f93 3888{
e2b78267 3889 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
ee7b9f93
JB
3890
3891 if (pll == NULL)
3892 return;
3893
3e369b76 3894 if (!(pll->config.crtc_mask & (1 << crtc->pipe))) {
1e6f2ddc 3895 WARN(1, "bad %s crtc mask\n", pll->name);
ee7b9f93
JB
3896 return;
3897 }
3898
3e369b76
ACO
3899 pll->config.crtc_mask &= ~(1 << crtc->pipe);
3900 if (pll->config.crtc_mask == 0) {
f4a091c7
DV
3901 WARN_ON(pll->on);
3902 WARN_ON(pll->active);
3903 }
3904
6e3c9717 3905 crtc->config->shared_dpll = DPLL_ID_PRIVATE;
ee7b9f93
JB
3906}
3907
190f68c5
ACO
3908struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
3909 struct intel_crtc_state *crtc_state)
ee7b9f93 3910{
e2b78267 3911 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
8bd31e67 3912 struct intel_shared_dpll *pll;
e2b78267 3913 enum intel_dpll_id i;
ee7b9f93 3914
98b6bd99
DV
3915 if (HAS_PCH_IBX(dev_priv->dev)) {
3916 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
d94ab068 3917 i = (enum intel_dpll_id) crtc->pipe;
e72f9fbf 3918 pll = &dev_priv->shared_dplls[i];
98b6bd99 3919
46edb027
DV
3920 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3921 crtc->base.base.id, pll->name);
98b6bd99 3922
8bd31e67 3923 WARN_ON(pll->new_config->crtc_mask);
f2a69f44 3924
98b6bd99
DV
3925 goto found;
3926 }
3927
e72f9fbf
DV
3928 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3929 pll = &dev_priv->shared_dplls[i];
ee7b9f93
JB
3930
3931 /* Only want to check enabled timings first */
8bd31e67 3932 if (pll->new_config->crtc_mask == 0)
ee7b9f93
JB
3933 continue;
3934
190f68c5 3935 if (memcmp(&crtc_state->dpll_hw_state,
8bd31e67
ACO
3936 &pll->new_config->hw_state,
3937 sizeof(pll->new_config->hw_state)) == 0) {
3938 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
1e6f2ddc 3939 crtc->base.base.id, pll->name,
8bd31e67
ACO
3940 pll->new_config->crtc_mask,
3941 pll->active);
ee7b9f93
JB
3942 goto found;
3943 }
3944 }
3945
3946 /* Ok no matching timings, maybe there's a free one? */
e72f9fbf
DV
3947 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3948 pll = &dev_priv->shared_dplls[i];
8bd31e67 3949 if (pll->new_config->crtc_mask == 0) {
46edb027
DV
3950 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3951 crtc->base.base.id, pll->name);
ee7b9f93
JB
3952 goto found;
3953 }
3954 }
3955
3956 return NULL;
3957
3958found:
8bd31e67 3959 if (pll->new_config->crtc_mask == 0)
190f68c5 3960 pll->new_config->hw_state = crtc_state->dpll_hw_state;
f2a69f44 3961
190f68c5 3962 crtc_state->shared_dpll = i;
46edb027
DV
3963 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3964 pipe_name(crtc->pipe));
ee7b9f93 3965
8bd31e67 3966 pll->new_config->crtc_mask |= 1 << crtc->pipe;
e04c7350 3967
ee7b9f93
JB
3968 return pll;
3969}
3970
8bd31e67
ACO
3971/**
3972 * intel_shared_dpll_start_config - start a new PLL staged config
3973 * @dev_priv: DRM device
3974 * @clear_pipes: mask of pipes that will have their PLLs freed
3975 *
3976 * Starts a new PLL staged config, copying the current config but
3977 * releasing the references of pipes specified in clear_pipes.
3978 */
3979static int intel_shared_dpll_start_config(struct drm_i915_private *dev_priv,
3980 unsigned clear_pipes)
3981{
3982 struct intel_shared_dpll *pll;
3983 enum intel_dpll_id i;
3984
3985 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3986 pll = &dev_priv->shared_dplls[i];
3987
3988 pll->new_config = kmemdup(&pll->config, sizeof pll->config,
3989 GFP_KERNEL);
3990 if (!pll->new_config)
3991 goto cleanup;
3992
3993 pll->new_config->crtc_mask &= ~clear_pipes;
3994 }
3995
3996 return 0;
3997
3998cleanup:
3999 while (--i >= 0) {
4000 pll = &dev_priv->shared_dplls[i];
f354d733 4001 kfree(pll->new_config);
8bd31e67
ACO
4002 pll->new_config = NULL;
4003 }
4004
4005 return -ENOMEM;
4006}
4007
4008static void intel_shared_dpll_commit(struct drm_i915_private *dev_priv)
4009{
4010 struct intel_shared_dpll *pll;
4011 enum intel_dpll_id i;
4012
4013 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4014 pll = &dev_priv->shared_dplls[i];
4015
4016 WARN_ON(pll->new_config == &pll->config);
4017
4018 pll->config = *pll->new_config;
4019 kfree(pll->new_config);
4020 pll->new_config = NULL;
4021 }
4022}
4023
4024static void intel_shared_dpll_abort_config(struct drm_i915_private *dev_priv)
4025{
4026 struct intel_shared_dpll *pll;
4027 enum intel_dpll_id i;
4028
4029 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4030 pll = &dev_priv->shared_dplls[i];
4031
4032 WARN_ON(pll->new_config == &pll->config);
4033
4034 kfree(pll->new_config);
4035 pll->new_config = NULL;
4036 }
4037}
4038
a1520318 4039static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57
JB
4040{
4041 struct drm_i915_private *dev_priv = dev->dev_private;
23670b32 4042 int dslreg = PIPEDSL(pipe);
d4270e57
JB
4043 u32 temp;
4044
4045 temp = I915_READ(dslreg);
4046 udelay(500);
4047 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 4048 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 4049 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
4050 }
4051}
4052
bd2e244f
JB
4053static void skylake_pfit_enable(struct intel_crtc *crtc)
4054{
4055 struct drm_device *dev = crtc->base.dev;
4056 struct drm_i915_private *dev_priv = dev->dev_private;
4057 int pipe = crtc->pipe;
4058
6e3c9717 4059 if (crtc->config->pch_pfit.enabled) {
bd2e244f 4060 I915_WRITE(PS_CTL(pipe), PS_ENABLE);
6e3c9717
ACO
4061 I915_WRITE(PS_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4062 I915_WRITE(PS_WIN_SZ(pipe), crtc->config->pch_pfit.size);
bd2e244f
JB
4063 }
4064}
4065
b074cec8
JB
4066static void ironlake_pfit_enable(struct intel_crtc *crtc)
4067{
4068 struct drm_device *dev = crtc->base.dev;
4069 struct drm_i915_private *dev_priv = dev->dev_private;
4070 int pipe = crtc->pipe;
4071
6e3c9717 4072 if (crtc->config->pch_pfit.enabled) {
b074cec8
JB
4073 /* Force use of hard-coded filter coefficients
4074 * as some pre-programmed values are broken,
4075 * e.g. x201.
4076 */
4077 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4078 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4079 PF_PIPE_SEL_IVB(pipe));
4080 else
4081 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
6e3c9717
ACO
4082 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4083 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
d4270e57
JB
4084 }
4085}
4086
4a3b8769 4087static void intel_enable_sprite_planes(struct drm_crtc *crtc)
bb53d4ae
VS
4088{
4089 struct drm_device *dev = crtc->dev;
4090 enum pipe pipe = to_intel_crtc(crtc)->pipe;
af2b653b 4091 struct drm_plane *plane;
bb53d4ae
VS
4092 struct intel_plane *intel_plane;
4093
af2b653b
MR
4094 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4095 intel_plane = to_intel_plane(plane);
bb53d4ae
VS
4096 if (intel_plane->pipe == pipe)
4097 intel_plane_restore(&intel_plane->base);
af2b653b 4098 }
bb53d4ae
VS
4099}
4100
4a3b8769 4101static void intel_disable_sprite_planes(struct drm_crtc *crtc)
bb53d4ae
VS
4102{
4103 struct drm_device *dev = crtc->dev;
4104 enum pipe pipe = to_intel_crtc(crtc)->pipe;
af2b653b 4105 struct drm_plane *plane;
bb53d4ae
VS
4106 struct intel_plane *intel_plane;
4107
af2b653b
MR
4108 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
4109 intel_plane = to_intel_plane(plane);
bb53d4ae 4110 if (intel_plane->pipe == pipe)
cf4c7c12 4111 plane->funcs->disable_plane(plane);
af2b653b 4112 }
bb53d4ae
VS
4113}
4114
20bc8673 4115void hsw_enable_ips(struct intel_crtc *crtc)
d77e4531 4116{
cea165c3
VS
4117 struct drm_device *dev = crtc->base.dev;
4118 struct drm_i915_private *dev_priv = dev->dev_private;
d77e4531 4119
6e3c9717 4120 if (!crtc->config->ips_enabled)
d77e4531
PZ
4121 return;
4122
cea165c3
VS
4123 /* We can only enable IPS after we enable a plane and wait for a vblank */
4124 intel_wait_for_vblank(dev, crtc->pipe);
4125
d77e4531 4126 assert_plane_enabled(dev_priv, crtc->plane);
cea165c3 4127 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4128 mutex_lock(&dev_priv->rps.hw_lock);
4129 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4130 mutex_unlock(&dev_priv->rps.hw_lock);
4131 /* Quoting Art Runyan: "its not safe to expect any particular
4132 * value in IPS_CTL bit 31 after enabling IPS through the
e59150dc
JB
4133 * mailbox." Moreover, the mailbox may return a bogus state,
4134 * so we need to just enable it and continue on.
2a114cc1
BW
4135 */
4136 } else {
4137 I915_WRITE(IPS_CTL, IPS_ENABLE);
4138 /* The bit only becomes 1 in the next vblank, so this wait here
4139 * is essentially intel_wait_for_vblank. If we don't have this
4140 * and don't wait for vblanks until the end of crtc_enable, then
4141 * the HW state readout code will complain that the expected
4142 * IPS_CTL value is not the one we read. */
4143 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4144 DRM_ERROR("Timed out waiting for IPS enable\n");
4145 }
d77e4531
PZ
4146}
4147
20bc8673 4148void hsw_disable_ips(struct intel_crtc *crtc)
d77e4531
PZ
4149{
4150 struct drm_device *dev = crtc->base.dev;
4151 struct drm_i915_private *dev_priv = dev->dev_private;
4152
6e3c9717 4153 if (!crtc->config->ips_enabled)
d77e4531
PZ
4154 return;
4155
4156 assert_plane_enabled(dev_priv, crtc->plane);
23d0b130 4157 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4158 mutex_lock(&dev_priv->rps.hw_lock);
4159 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4160 mutex_unlock(&dev_priv->rps.hw_lock);
23d0b130
BW
4161 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4162 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4163 DRM_ERROR("Timed out waiting for IPS disable\n");
e59150dc 4164 } else {
2a114cc1 4165 I915_WRITE(IPS_CTL, 0);
e59150dc
JB
4166 POSTING_READ(IPS_CTL);
4167 }
d77e4531
PZ
4168
4169 /* We need to wait for a vblank before we can disable the plane. */
4170 intel_wait_for_vblank(dev, crtc->pipe);
4171}
4172
4173/** Loads the palette/gamma unit for the CRTC with the prepared values */
4174static void intel_crtc_load_lut(struct drm_crtc *crtc)
4175{
4176 struct drm_device *dev = crtc->dev;
4177 struct drm_i915_private *dev_priv = dev->dev_private;
4178 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4179 enum pipe pipe = intel_crtc->pipe;
4180 int palreg = PALETTE(pipe);
4181 int i;
4182 bool reenable_ips = false;
4183
4184 /* The clocks have to be on to load the palette. */
4185 if (!crtc->enabled || !intel_crtc->active)
4186 return;
4187
4188 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
409ee761 4189 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
d77e4531
PZ
4190 assert_dsi_pll_enabled(dev_priv);
4191 else
4192 assert_pll_enabled(dev_priv, pipe);
4193 }
4194
4195 /* use legacy palette for Ironlake */
7a1db49a 4196 if (!HAS_GMCH_DISPLAY(dev))
d77e4531
PZ
4197 palreg = LGC_PALETTE(pipe);
4198
4199 /* Workaround : Do not read or write the pipe palette/gamma data while
4200 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4201 */
6e3c9717 4202 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
d77e4531
PZ
4203 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4204 GAMMA_MODE_MODE_SPLIT)) {
4205 hsw_disable_ips(intel_crtc);
4206 reenable_ips = true;
4207 }
4208
4209 for (i = 0; i < 256; i++) {
4210 I915_WRITE(palreg + 4 * i,
4211 (intel_crtc->lut_r[i] << 16) |
4212 (intel_crtc->lut_g[i] << 8) |
4213 intel_crtc->lut_b[i]);
4214 }
4215
4216 if (reenable_ips)
4217 hsw_enable_ips(intel_crtc);
4218}
4219
d3eedb1a
VS
4220static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
4221{
4222 if (!enable && intel_crtc->overlay) {
4223 struct drm_device *dev = intel_crtc->base.dev;
4224 struct drm_i915_private *dev_priv = dev->dev_private;
4225
4226 mutex_lock(&dev->struct_mutex);
4227 dev_priv->mm.interruptible = false;
4228 (void) intel_overlay_switch_off(intel_crtc->overlay);
4229 dev_priv->mm.interruptible = true;
4230 mutex_unlock(&dev->struct_mutex);
4231 }
4232
4233 /* Let userspace switch the overlay on again. In most cases userspace
4234 * has to recompute where to put it anyway.
4235 */
4236}
4237
d3eedb1a 4238static void intel_crtc_enable_planes(struct drm_crtc *crtc)
a5c4d7bc
VS
4239{
4240 struct drm_device *dev = crtc->dev;
a5c4d7bc
VS
4241 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4242 int pipe = intel_crtc->pipe;
a5c4d7bc 4243
fdd508a6 4244 intel_enable_primary_hw_plane(crtc->primary, crtc);
4a3b8769 4245 intel_enable_sprite_planes(crtc);
a5c4d7bc 4246 intel_crtc_update_cursor(crtc, true);
d3eedb1a 4247 intel_crtc_dpms_overlay(intel_crtc, true);
a5c4d7bc
VS
4248
4249 hsw_enable_ips(intel_crtc);
4250
4251 mutex_lock(&dev->struct_mutex);
7ff0ebcc 4252 intel_fbc_update(dev);
a5c4d7bc 4253 mutex_unlock(&dev->struct_mutex);
f99d7069
DV
4254
4255 /*
4256 * FIXME: Once we grow proper nuclear flip support out of this we need
4257 * to compute the mask of flip planes precisely. For the time being
4258 * consider this a flip from a NULL plane.
4259 */
4260 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
a5c4d7bc
VS
4261}
4262
d3eedb1a 4263static void intel_crtc_disable_planes(struct drm_crtc *crtc)
a5c4d7bc
VS
4264{
4265 struct drm_device *dev = crtc->dev;
4266 struct drm_i915_private *dev_priv = dev->dev_private;
4267 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4268 int pipe = intel_crtc->pipe;
4269 int plane = intel_crtc->plane;
4270
4271 intel_crtc_wait_for_pending_flips(crtc);
a5c4d7bc
VS
4272
4273 if (dev_priv->fbc.plane == plane)
7ff0ebcc 4274 intel_fbc_disable(dev);
a5c4d7bc
VS
4275
4276 hsw_disable_ips(intel_crtc);
4277
d3eedb1a 4278 intel_crtc_dpms_overlay(intel_crtc, false);
a5c4d7bc 4279 intel_crtc_update_cursor(crtc, false);
4a3b8769 4280 intel_disable_sprite_planes(crtc);
fdd508a6 4281 intel_disable_primary_hw_plane(crtc->primary, crtc);
f98551ae 4282
f99d7069
DV
4283 /*
4284 * FIXME: Once we grow proper nuclear flip support out of this we need
4285 * to compute the mask of flip planes precisely. For the time being
4286 * consider this a flip to a NULL plane.
4287 */
4288 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
a5c4d7bc
VS
4289}
4290
f67a559d
JB
4291static void ironlake_crtc_enable(struct drm_crtc *crtc)
4292{
4293 struct drm_device *dev = crtc->dev;
4294 struct drm_i915_private *dev_priv = dev->dev_private;
4295 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4296 struct intel_encoder *encoder;
f67a559d 4297 int pipe = intel_crtc->pipe;
f67a559d 4298
08a48469
DV
4299 WARN_ON(!crtc->enabled);
4300
f67a559d
JB
4301 if (intel_crtc->active)
4302 return;
4303
6e3c9717 4304 if (intel_crtc->config->has_pch_encoder)
b14b1055
DV
4305 intel_prepare_shared_dpll(intel_crtc);
4306
6e3c9717 4307 if (intel_crtc->config->has_dp_encoder)
29407aab
DV
4308 intel_dp_set_m_n(intel_crtc);
4309
4310 intel_set_pipe_timings(intel_crtc);
4311
6e3c9717 4312 if (intel_crtc->config->has_pch_encoder) {
29407aab 4313 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4314 &intel_crtc->config->fdi_m_n, NULL);
29407aab
DV
4315 }
4316
4317 ironlake_set_pipeconf(crtc);
4318
f67a559d 4319 intel_crtc->active = true;
8664281b 4320
a72e4c9f
DV
4321 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4322 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
8664281b 4323
f6736a1a 4324 for_each_encoder_on_crtc(dev, crtc, encoder)
952735ee
DV
4325 if (encoder->pre_enable)
4326 encoder->pre_enable(encoder);
f67a559d 4327
6e3c9717 4328 if (intel_crtc->config->has_pch_encoder) {
fff367c7
DV
4329 /* Note: FDI PLL enabling _must_ be done before we enable the
4330 * cpu pipes, hence this is separate from all the other fdi/pch
4331 * enabling. */
88cefb6c 4332 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
4333 } else {
4334 assert_fdi_tx_disabled(dev_priv, pipe);
4335 assert_fdi_rx_disabled(dev_priv, pipe);
4336 }
f67a559d 4337
b074cec8 4338 ironlake_pfit_enable(intel_crtc);
f67a559d 4339
9c54c0dd
JB
4340 /*
4341 * On ILK+ LUT must be loaded before the pipe is running but with
4342 * clocks enabled
4343 */
4344 intel_crtc_load_lut(crtc);
4345
f37fcc2a 4346 intel_update_watermarks(crtc);
e1fdc473 4347 intel_enable_pipe(intel_crtc);
f67a559d 4348
6e3c9717 4349 if (intel_crtc->config->has_pch_encoder)
f67a559d 4350 ironlake_pch_enable(crtc);
c98e9dcf 4351
f9b61ff6
DV
4352 assert_vblank_disabled(crtc);
4353 drm_crtc_vblank_on(crtc);
4354
fa5c73b1
DV
4355 for_each_encoder_on_crtc(dev, crtc, encoder)
4356 encoder->enable(encoder);
61b77ddd
DV
4357
4358 if (HAS_PCH_CPT(dev))
a1520318 4359 cpt_verify_modeset(dev, intel_crtc->pipe);
6ce94100 4360
d3eedb1a 4361 intel_crtc_enable_planes(crtc);
6be4a607
JB
4362}
4363
42db64ef
PZ
4364/* IPS only exists on ULT machines and is tied to pipe A. */
4365static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4366{
f5adf94e 4367 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
42db64ef
PZ
4368}
4369
e4916946
PZ
4370/*
4371 * This implements the workaround described in the "notes" section of the mode
4372 * set sequence documentation. When going from no pipes or single pipe to
4373 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4374 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4375 */
4376static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4377{
4378 struct drm_device *dev = crtc->base.dev;
4379 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4380
4381 /* We want to get the other_active_crtc only if there's only 1 other
4382 * active crtc. */
d3fcc808 4383 for_each_intel_crtc(dev, crtc_it) {
e4916946
PZ
4384 if (!crtc_it->active || crtc_it == crtc)
4385 continue;
4386
4387 if (other_active_crtc)
4388 return;
4389
4390 other_active_crtc = crtc_it;
4391 }
4392 if (!other_active_crtc)
4393 return;
4394
4395 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4396 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4397}
4398
4f771f10
PZ
4399static void haswell_crtc_enable(struct drm_crtc *crtc)
4400{
4401 struct drm_device *dev = crtc->dev;
4402 struct drm_i915_private *dev_priv = dev->dev_private;
4403 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4404 struct intel_encoder *encoder;
4405 int pipe = intel_crtc->pipe;
4f771f10
PZ
4406
4407 WARN_ON(!crtc->enabled);
4408
4409 if (intel_crtc->active)
4410 return;
4411
df8ad70c
DV
4412 if (intel_crtc_to_shared_dpll(intel_crtc))
4413 intel_enable_shared_dpll(intel_crtc);
4414
6e3c9717 4415 if (intel_crtc->config->has_dp_encoder)
229fca97
DV
4416 intel_dp_set_m_n(intel_crtc);
4417
4418 intel_set_pipe_timings(intel_crtc);
4419
6e3c9717
ACO
4420 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4421 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4422 intel_crtc->config->pixel_multiplier - 1);
ebb69c95
CT
4423 }
4424
6e3c9717 4425 if (intel_crtc->config->has_pch_encoder) {
229fca97 4426 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4427 &intel_crtc->config->fdi_m_n, NULL);
229fca97
DV
4428 }
4429
4430 haswell_set_pipeconf(crtc);
4431
4432 intel_set_pipe_csc(crtc);
4433
4f771f10 4434 intel_crtc->active = true;
8664281b 4435
a72e4c9f 4436 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4f771f10
PZ
4437 for_each_encoder_on_crtc(dev, crtc, encoder)
4438 if (encoder->pre_enable)
4439 encoder->pre_enable(encoder);
4440
6e3c9717 4441 if (intel_crtc->config->has_pch_encoder) {
a72e4c9f
DV
4442 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4443 true);
4fe9467d
ID
4444 dev_priv->display.fdi_link_train(crtc);
4445 }
4446
1f544388 4447 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 4448
bd2e244f
JB
4449 if (IS_SKYLAKE(dev))
4450 skylake_pfit_enable(intel_crtc);
4451 else
4452 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
4453
4454 /*
4455 * On ILK+ LUT must be loaded before the pipe is running but with
4456 * clocks enabled
4457 */
4458 intel_crtc_load_lut(crtc);
4459
1f544388 4460 intel_ddi_set_pipe_settings(crtc);
8228c251 4461 intel_ddi_enable_transcoder_func(crtc);
4f771f10 4462
f37fcc2a 4463 intel_update_watermarks(crtc);
e1fdc473 4464 intel_enable_pipe(intel_crtc);
42db64ef 4465
6e3c9717 4466 if (intel_crtc->config->has_pch_encoder)
1507e5bd 4467 lpt_pch_enable(crtc);
4f771f10 4468
6e3c9717 4469 if (intel_crtc->config->dp_encoder_is_mst)
0e32b39c
DA
4470 intel_ddi_set_vc_payload_alloc(crtc, true);
4471
f9b61ff6
DV
4472 assert_vblank_disabled(crtc);
4473 drm_crtc_vblank_on(crtc);
4474
8807e55b 4475 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10 4476 encoder->enable(encoder);
8807e55b
JN
4477 intel_opregion_notify_encoder(encoder, true);
4478 }
4f771f10 4479
e4916946
PZ
4480 /* If we change the relative order between pipe/planes enabling, we need
4481 * to change the workaround. */
4482 haswell_mode_set_planes_workaround(intel_crtc);
d3eedb1a 4483 intel_crtc_enable_planes(crtc);
4f771f10
PZ
4484}
4485
bd2e244f
JB
4486static void skylake_pfit_disable(struct intel_crtc *crtc)
4487{
4488 struct drm_device *dev = crtc->base.dev;
4489 struct drm_i915_private *dev_priv = dev->dev_private;
4490 int pipe = crtc->pipe;
4491
4492 /* To avoid upsetting the power well on haswell only disable the pfit if
4493 * it's in use. The hw state code will make sure we get this right. */
6e3c9717 4494 if (crtc->config->pch_pfit.enabled) {
bd2e244f
JB
4495 I915_WRITE(PS_CTL(pipe), 0);
4496 I915_WRITE(PS_WIN_POS(pipe), 0);
4497 I915_WRITE(PS_WIN_SZ(pipe), 0);
4498 }
4499}
4500
3f8dce3a
DV
4501static void ironlake_pfit_disable(struct intel_crtc *crtc)
4502{
4503 struct drm_device *dev = crtc->base.dev;
4504 struct drm_i915_private *dev_priv = dev->dev_private;
4505 int pipe = crtc->pipe;
4506
4507 /* To avoid upsetting the power well on haswell only disable the pfit if
4508 * it's in use. The hw state code will make sure we get this right. */
6e3c9717 4509 if (crtc->config->pch_pfit.enabled) {
3f8dce3a
DV
4510 I915_WRITE(PF_CTL(pipe), 0);
4511 I915_WRITE(PF_WIN_POS(pipe), 0);
4512 I915_WRITE(PF_WIN_SZ(pipe), 0);
4513 }
4514}
4515
6be4a607
JB
4516static void ironlake_crtc_disable(struct drm_crtc *crtc)
4517{
4518 struct drm_device *dev = crtc->dev;
4519 struct drm_i915_private *dev_priv = dev->dev_private;
4520 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4521 struct intel_encoder *encoder;
6be4a607 4522 int pipe = intel_crtc->pipe;
5eddb70b 4523 u32 reg, temp;
b52eb4dc 4524
f7abfe8b
CW
4525 if (!intel_crtc->active)
4526 return;
4527
d3eedb1a 4528 intel_crtc_disable_planes(crtc);
a5c4d7bc 4529
ea9d758d
DV
4530 for_each_encoder_on_crtc(dev, crtc, encoder)
4531 encoder->disable(encoder);
4532
f9b61ff6
DV
4533 drm_crtc_vblank_off(crtc);
4534 assert_vblank_disabled(crtc);
4535
6e3c9717 4536 if (intel_crtc->config->has_pch_encoder)
a72e4c9f 4537 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
d925c59a 4538
575f7ab7 4539 intel_disable_pipe(intel_crtc);
32f9d658 4540
3f8dce3a 4541 ironlake_pfit_disable(intel_crtc);
2c07245f 4542
bf49ec8c
DV
4543 for_each_encoder_on_crtc(dev, crtc, encoder)
4544 if (encoder->post_disable)
4545 encoder->post_disable(encoder);
2c07245f 4546
6e3c9717 4547 if (intel_crtc->config->has_pch_encoder) {
d925c59a 4548 ironlake_fdi_disable(crtc);
913d8d11 4549
d925c59a 4550 ironlake_disable_pch_transcoder(dev_priv, pipe);
6be4a607 4551
d925c59a
DV
4552 if (HAS_PCH_CPT(dev)) {
4553 /* disable TRANS_DP_CTL */
4554 reg = TRANS_DP_CTL(pipe);
4555 temp = I915_READ(reg);
4556 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4557 TRANS_DP_PORT_SEL_MASK);
4558 temp |= TRANS_DP_PORT_SEL_NONE;
4559 I915_WRITE(reg, temp);
4560
4561 /* disable DPLL_SEL */
4562 temp = I915_READ(PCH_DPLL_SEL);
11887397 4563 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 4564 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 4565 }
e3421a18 4566
d925c59a 4567 /* disable PCH DPLL */
e72f9fbf 4568 intel_disable_shared_dpll(intel_crtc);
8db9d77b 4569
d925c59a
DV
4570 ironlake_fdi_pll_disable(intel_crtc);
4571 }
6b383a7f 4572
f7abfe8b 4573 intel_crtc->active = false;
46ba614c 4574 intel_update_watermarks(crtc);
d1ebd816
BW
4575
4576 mutex_lock(&dev->struct_mutex);
7ff0ebcc 4577 intel_fbc_update(dev);
d1ebd816 4578 mutex_unlock(&dev->struct_mutex);
6be4a607 4579}
1b3c7a47 4580
4f771f10 4581static void haswell_crtc_disable(struct drm_crtc *crtc)
ee7b9f93 4582{
4f771f10
PZ
4583 struct drm_device *dev = crtc->dev;
4584 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93 4585 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4f771f10 4586 struct intel_encoder *encoder;
6e3c9717 4587 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee7b9f93 4588
4f771f10
PZ
4589 if (!intel_crtc->active)
4590 return;
4591
d3eedb1a 4592 intel_crtc_disable_planes(crtc);
dda9a66a 4593
8807e55b
JN
4594 for_each_encoder_on_crtc(dev, crtc, encoder) {
4595 intel_opregion_notify_encoder(encoder, false);
4f771f10 4596 encoder->disable(encoder);
8807e55b 4597 }
4f771f10 4598
f9b61ff6
DV
4599 drm_crtc_vblank_off(crtc);
4600 assert_vblank_disabled(crtc);
4601
6e3c9717 4602 if (intel_crtc->config->has_pch_encoder)
a72e4c9f
DV
4603 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4604 false);
575f7ab7 4605 intel_disable_pipe(intel_crtc);
4f771f10 4606
6e3c9717 4607 if (intel_crtc->config->dp_encoder_is_mst)
a4bf214f
VS
4608 intel_ddi_set_vc_payload_alloc(crtc, false);
4609
ad80a810 4610 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 4611
bd2e244f
JB
4612 if (IS_SKYLAKE(dev))
4613 skylake_pfit_disable(intel_crtc);
4614 else
4615 ironlake_pfit_disable(intel_crtc);
4f771f10 4616
1f544388 4617 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10 4618
6e3c9717 4619 if (intel_crtc->config->has_pch_encoder) {
ab4d966c 4620 lpt_disable_pch_transcoder(dev_priv);
1ad960f2 4621 intel_ddi_fdi_disable(crtc);
83616634 4622 }
4f771f10 4623
97b040aa
ID
4624 for_each_encoder_on_crtc(dev, crtc, encoder)
4625 if (encoder->post_disable)
4626 encoder->post_disable(encoder);
4627
4f771f10 4628 intel_crtc->active = false;
46ba614c 4629 intel_update_watermarks(crtc);
4f771f10
PZ
4630
4631 mutex_lock(&dev->struct_mutex);
7ff0ebcc 4632 intel_fbc_update(dev);
4f771f10 4633 mutex_unlock(&dev->struct_mutex);
df8ad70c
DV
4634
4635 if (intel_crtc_to_shared_dpll(intel_crtc))
4636 intel_disable_shared_dpll(intel_crtc);
4f771f10
PZ
4637}
4638
ee7b9f93
JB
4639static void ironlake_crtc_off(struct drm_crtc *crtc)
4640{
4641 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
e72f9fbf 4642 intel_put_shared_dpll(intel_crtc);
ee7b9f93
JB
4643}
4644
6441ab5f 4645
2dd24552
JB
4646static void i9xx_pfit_enable(struct intel_crtc *crtc)
4647{
4648 struct drm_device *dev = crtc->base.dev;
4649 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 4650 struct intel_crtc_state *pipe_config = crtc->config;
2dd24552 4651
681a8504 4652 if (!pipe_config->gmch_pfit.control)
2dd24552
JB
4653 return;
4654
2dd24552 4655 /*
c0b03411
DV
4656 * The panel fitter should only be adjusted whilst the pipe is disabled,
4657 * according to register description and PRM.
2dd24552 4658 */
c0b03411
DV
4659 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4660 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 4661
b074cec8
JB
4662 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4663 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
4664
4665 /* Border color in case we don't scale up to the full screen. Black by
4666 * default, change to something else for debugging. */
4667 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
4668}
4669
d05410f9
DA
4670static enum intel_display_power_domain port_to_power_domain(enum port port)
4671{
4672 switch (port) {
4673 case PORT_A:
4674 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4675 case PORT_B:
4676 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4677 case PORT_C:
4678 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4679 case PORT_D:
4680 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4681 default:
4682 WARN_ON_ONCE(1);
4683 return POWER_DOMAIN_PORT_OTHER;
4684 }
4685}
4686
77d22dca
ID
4687#define for_each_power_domain(domain, mask) \
4688 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4689 if ((1 << (domain)) & (mask))
4690
319be8ae
ID
4691enum intel_display_power_domain
4692intel_display_port_power_domain(struct intel_encoder *intel_encoder)
4693{
4694 struct drm_device *dev = intel_encoder->base.dev;
4695 struct intel_digital_port *intel_dig_port;
4696
4697 switch (intel_encoder->type) {
4698 case INTEL_OUTPUT_UNKNOWN:
4699 /* Only DDI platforms should ever use this output type */
4700 WARN_ON_ONCE(!HAS_DDI(dev));
4701 case INTEL_OUTPUT_DISPLAYPORT:
4702 case INTEL_OUTPUT_HDMI:
4703 case INTEL_OUTPUT_EDP:
4704 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
d05410f9 4705 return port_to_power_domain(intel_dig_port->port);
0e32b39c
DA
4706 case INTEL_OUTPUT_DP_MST:
4707 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
4708 return port_to_power_domain(intel_dig_port->port);
319be8ae
ID
4709 case INTEL_OUTPUT_ANALOG:
4710 return POWER_DOMAIN_PORT_CRT;
4711 case INTEL_OUTPUT_DSI:
4712 return POWER_DOMAIN_PORT_DSI;
4713 default:
4714 return POWER_DOMAIN_PORT_OTHER;
4715 }
4716}
4717
4718static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
77d22dca 4719{
319be8ae
ID
4720 struct drm_device *dev = crtc->dev;
4721 struct intel_encoder *intel_encoder;
4722 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4723 enum pipe pipe = intel_crtc->pipe;
77d22dca
ID
4724 unsigned long mask;
4725 enum transcoder transcoder;
4726
4727 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4728
4729 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4730 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
6e3c9717
ACO
4731 if (intel_crtc->config->pch_pfit.enabled ||
4732 intel_crtc->config->pch_pfit.force_thru)
77d22dca
ID
4733 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4734
319be8ae
ID
4735 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4736 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4737
77d22dca
ID
4738 return mask;
4739}
4740
77d22dca
ID
4741static void modeset_update_crtc_power_domains(struct drm_device *dev)
4742{
4743 struct drm_i915_private *dev_priv = dev->dev_private;
4744 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4745 struct intel_crtc *crtc;
4746
4747 /*
4748 * First get all needed power domains, then put all unneeded, to avoid
4749 * any unnecessary toggling of the power wells.
4750 */
d3fcc808 4751 for_each_intel_crtc(dev, crtc) {
77d22dca
ID
4752 enum intel_display_power_domain domain;
4753
4754 if (!crtc->base.enabled)
4755 continue;
4756
319be8ae 4757 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
77d22dca
ID
4758
4759 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4760 intel_display_power_get(dev_priv, domain);
4761 }
4762
50f6e502
VS
4763 if (dev_priv->display.modeset_global_resources)
4764 dev_priv->display.modeset_global_resources(dev);
4765
d3fcc808 4766 for_each_intel_crtc(dev, crtc) {
77d22dca
ID
4767 enum intel_display_power_domain domain;
4768
4769 for_each_power_domain(domain, crtc->enabled_power_domains)
4770 intel_display_power_put(dev_priv, domain);
4771
4772 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4773 }
4774
4775 intel_display_set_init_power(dev_priv, false);
4776}
4777
dfcab17e 4778/* returns HPLL frequency in kHz */
f8bf63fd 4779static int valleyview_get_vco(struct drm_i915_private *dev_priv)
30a970c6 4780{
586f49dc 4781 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
30a970c6 4782
586f49dc
JB
4783 /* Obtain SKU information */
4784 mutex_lock(&dev_priv->dpio_lock);
4785 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4786 CCK_FUSE_HPLL_FREQ_MASK;
4787 mutex_unlock(&dev_priv->dpio_lock);
30a970c6 4788
dfcab17e 4789 return vco_freq[hpll_freq] * 1000;
30a970c6
JB
4790}
4791
f8bf63fd
VS
4792static void vlv_update_cdclk(struct drm_device *dev)
4793{
4794 struct drm_i915_private *dev_priv = dev->dev_private;
4795
4796 dev_priv->vlv_cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
43dc52c3 4797 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
f8bf63fd
VS
4798 dev_priv->vlv_cdclk_freq);
4799
4800 /*
4801 * Program the gmbus_freq based on the cdclk frequency.
4802 * BSpec erroneously claims we should aim for 4MHz, but
4803 * in fact 1MHz is the correct frequency.
4804 */
6be1e3d3 4805 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->vlv_cdclk_freq, 1000));
f8bf63fd
VS
4806}
4807
30a970c6
JB
4808/* Adjust CDclk dividers to allow high res or save power if possible */
4809static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4810{
4811 struct drm_i915_private *dev_priv = dev->dev_private;
4812 u32 val, cmd;
4813
d197b7d3 4814 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
d60c4473 4815
dfcab17e 4816 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
30a970c6 4817 cmd = 2;
dfcab17e 4818 else if (cdclk == 266667)
30a970c6
JB
4819 cmd = 1;
4820 else
4821 cmd = 0;
4822
4823 mutex_lock(&dev_priv->rps.hw_lock);
4824 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4825 val &= ~DSPFREQGUAR_MASK;
4826 val |= (cmd << DSPFREQGUAR_SHIFT);
4827 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4828 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4829 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4830 50)) {
4831 DRM_ERROR("timed out waiting for CDclk change\n");
4832 }
4833 mutex_unlock(&dev_priv->rps.hw_lock);
4834
dfcab17e 4835 if (cdclk == 400000) {
6bcda4f0 4836 u32 divider;
30a970c6 4837
6bcda4f0 4838 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
30a970c6
JB
4839
4840 mutex_lock(&dev_priv->dpio_lock);
4841 /* adjust cdclk divider */
4842 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
9cf33db5 4843 val &= ~DISPLAY_FREQUENCY_VALUES;
30a970c6
JB
4844 val |= divider;
4845 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
a877e801
VS
4846
4847 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
4848 DISPLAY_FREQUENCY_STATUS) == (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
4849 50))
4850 DRM_ERROR("timed out waiting for CDclk change\n");
30a970c6
JB
4851 mutex_unlock(&dev_priv->dpio_lock);
4852 }
4853
4854 mutex_lock(&dev_priv->dpio_lock);
4855 /* adjust self-refresh exit latency value */
4856 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4857 val &= ~0x7f;
4858
4859 /*
4860 * For high bandwidth configs, we set a higher latency in the bunit
4861 * so that the core display fetch happens in time to avoid underruns.
4862 */
dfcab17e 4863 if (cdclk == 400000)
30a970c6
JB
4864 val |= 4500 / 250; /* 4.5 usec */
4865 else
4866 val |= 3000 / 250; /* 3.0 usec */
4867 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4868 mutex_unlock(&dev_priv->dpio_lock);
4869
f8bf63fd 4870 vlv_update_cdclk(dev);
30a970c6
JB
4871}
4872
383c5a6a
VS
4873static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
4874{
4875 struct drm_i915_private *dev_priv = dev->dev_private;
4876 u32 val, cmd;
4877
4878 WARN_ON(dev_priv->display.get_display_clock_speed(dev) != dev_priv->vlv_cdclk_freq);
4879
4880 switch (cdclk) {
4881 case 400000:
4882 cmd = 3;
4883 break;
4884 case 333333:
4885 case 320000:
4886 cmd = 2;
4887 break;
4888 case 266667:
4889 cmd = 1;
4890 break;
4891 case 200000:
4892 cmd = 0;
4893 break;
4894 default:
5f77eeb0 4895 MISSING_CASE(cdclk);
383c5a6a
VS
4896 return;
4897 }
4898
4899 mutex_lock(&dev_priv->rps.hw_lock);
4900 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4901 val &= ~DSPFREQGUAR_MASK_CHV;
4902 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
4903 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4904 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4905 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
4906 50)) {
4907 DRM_ERROR("timed out waiting for CDclk change\n");
4908 }
4909 mutex_unlock(&dev_priv->rps.hw_lock);
4910
4911 vlv_update_cdclk(dev);
4912}
4913
30a970c6
JB
4914static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4915 int max_pixclk)
4916{
6bcda4f0 4917 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
29dc7ef3 4918
d49a340d
VS
4919 /* FIXME: Punit isn't quite ready yet */
4920 if (IS_CHERRYVIEW(dev_priv->dev))
4921 return 400000;
4922
30a970c6
JB
4923 /*
4924 * Really only a few cases to deal with, as only 4 CDclks are supported:
4925 * 200MHz
4926 * 267MHz
29dc7ef3 4927 * 320/333MHz (depends on HPLL freq)
30a970c6
JB
4928 * 400MHz
4929 * So we check to see whether we're above 90% of the lower bin and
4930 * adjust if needed.
e37c67a1
VS
4931 *
4932 * We seem to get an unstable or solid color picture at 200MHz.
4933 * Not sure what's wrong. For now use 200MHz only when all pipes
4934 * are off.
30a970c6 4935 */
29dc7ef3 4936 if (max_pixclk > freq_320*9/10)
dfcab17e
VS
4937 return 400000;
4938 else if (max_pixclk > 266667*9/10)
29dc7ef3 4939 return freq_320;
e37c67a1 4940 else if (max_pixclk > 0)
dfcab17e 4941 return 266667;
e37c67a1
VS
4942 else
4943 return 200000;
30a970c6
JB
4944}
4945
2f2d7aa1
VS
4946/* compute the max pixel clock for new configuration */
4947static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
30a970c6
JB
4948{
4949 struct drm_device *dev = dev_priv->dev;
4950 struct intel_crtc *intel_crtc;
4951 int max_pixclk = 0;
4952
d3fcc808 4953 for_each_intel_crtc(dev, intel_crtc) {
2f2d7aa1 4954 if (intel_crtc->new_enabled)
30a970c6 4955 max_pixclk = max(max_pixclk,
2d112de7 4956 intel_crtc->new_config->base.adjusted_mode.crtc_clock);
30a970c6
JB
4957 }
4958
4959 return max_pixclk;
4960}
4961
4962static void valleyview_modeset_global_pipes(struct drm_device *dev,
2f2d7aa1 4963 unsigned *prepare_pipes)
30a970c6
JB
4964{
4965 struct drm_i915_private *dev_priv = dev->dev_private;
4966 struct intel_crtc *intel_crtc;
2f2d7aa1 4967 int max_pixclk = intel_mode_max_pixclk(dev_priv);
30a970c6 4968
d60c4473
ID
4969 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4970 dev_priv->vlv_cdclk_freq)
30a970c6
JB
4971 return;
4972
2f2d7aa1 4973 /* disable/enable all currently active pipes while we change cdclk */
d3fcc808 4974 for_each_intel_crtc(dev, intel_crtc)
30a970c6
JB
4975 if (intel_crtc->base.enabled)
4976 *prepare_pipes |= (1 << intel_crtc->pipe);
4977}
4978
4979static void valleyview_modeset_global_resources(struct drm_device *dev)
4980{
4981 struct drm_i915_private *dev_priv = dev->dev_private;
2f2d7aa1 4982 int max_pixclk = intel_mode_max_pixclk(dev_priv);
30a970c6
JB
4983 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4984
383c5a6a 4985 if (req_cdclk != dev_priv->vlv_cdclk_freq) {
738c05c0
ID
4986 /*
4987 * FIXME: We can end up here with all power domains off, yet
4988 * with a CDCLK frequency other than the minimum. To account
4989 * for this take the PIPE-A power domain, which covers the HW
4990 * blocks needed for the following programming. This can be
4991 * removed once it's guaranteed that we get here either with
4992 * the minimum CDCLK set, or the required power domains
4993 * enabled.
4994 */
4995 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
4996
383c5a6a
VS
4997 if (IS_CHERRYVIEW(dev))
4998 cherryview_set_cdclk(dev, req_cdclk);
4999 else
5000 valleyview_set_cdclk(dev, req_cdclk);
738c05c0
ID
5001
5002 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
383c5a6a 5003 }
30a970c6
JB
5004}
5005
89b667f8
JB
5006static void valleyview_crtc_enable(struct drm_crtc *crtc)
5007{
5008 struct drm_device *dev = crtc->dev;
a72e4c9f 5009 struct drm_i915_private *dev_priv = to_i915(dev);
89b667f8
JB
5010 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5011 struct intel_encoder *encoder;
5012 int pipe = intel_crtc->pipe;
23538ef1 5013 bool is_dsi;
89b667f8
JB
5014
5015 WARN_ON(!crtc->enabled);
5016
5017 if (intel_crtc->active)
5018 return;
5019
409ee761 5020 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
8525a235 5021
1ae0d137
VS
5022 if (!is_dsi) {
5023 if (IS_CHERRYVIEW(dev))
6e3c9717 5024 chv_prepare_pll(intel_crtc, intel_crtc->config);
1ae0d137 5025 else
6e3c9717 5026 vlv_prepare_pll(intel_crtc, intel_crtc->config);
1ae0d137 5027 }
5b18e57c 5028
6e3c9717 5029 if (intel_crtc->config->has_dp_encoder)
5b18e57c
DV
5030 intel_dp_set_m_n(intel_crtc);
5031
5032 intel_set_pipe_timings(intel_crtc);
5033
c14b0485
VS
5034 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
5035 struct drm_i915_private *dev_priv = dev->dev_private;
5036
5037 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
5038 I915_WRITE(CHV_CANVAS(pipe), 0);
5039 }
5040
5b18e57c
DV
5041 i9xx_set_pipeconf(intel_crtc);
5042
89b667f8 5043 intel_crtc->active = true;
89b667f8 5044
a72e4c9f 5045 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 5046
89b667f8
JB
5047 for_each_encoder_on_crtc(dev, crtc, encoder)
5048 if (encoder->pre_pll_enable)
5049 encoder->pre_pll_enable(encoder);
5050
9d556c99
CML
5051 if (!is_dsi) {
5052 if (IS_CHERRYVIEW(dev))
6e3c9717 5053 chv_enable_pll(intel_crtc, intel_crtc->config);
9d556c99 5054 else
6e3c9717 5055 vlv_enable_pll(intel_crtc, intel_crtc->config);
9d556c99 5056 }
89b667f8
JB
5057
5058 for_each_encoder_on_crtc(dev, crtc, encoder)
5059 if (encoder->pre_enable)
5060 encoder->pre_enable(encoder);
5061
2dd24552
JB
5062 i9xx_pfit_enable(intel_crtc);
5063
63cbb074
VS
5064 intel_crtc_load_lut(crtc);
5065
f37fcc2a 5066 intel_update_watermarks(crtc);
e1fdc473 5067 intel_enable_pipe(intel_crtc);
be6a6f8e 5068
4b3a9526
VS
5069 assert_vblank_disabled(crtc);
5070 drm_crtc_vblank_on(crtc);
5071
f9b61ff6
DV
5072 for_each_encoder_on_crtc(dev, crtc, encoder)
5073 encoder->enable(encoder);
5074
9ab0460b 5075 intel_crtc_enable_planes(crtc);
d40d9187 5076
56b80e1f 5077 /* Underruns don't raise interrupts, so check manually. */
a72e4c9f 5078 i9xx_check_fifo_underruns(dev_priv);
89b667f8
JB
5079}
5080
f13c2ef3
DV
5081static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
5082{
5083 struct drm_device *dev = crtc->base.dev;
5084 struct drm_i915_private *dev_priv = dev->dev_private;
5085
6e3c9717
ACO
5086 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
5087 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
f13c2ef3
DV
5088}
5089
0b8765c6 5090static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
5091{
5092 struct drm_device *dev = crtc->dev;
a72e4c9f 5093 struct drm_i915_private *dev_priv = to_i915(dev);
79e53945 5094 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 5095 struct intel_encoder *encoder;
79e53945 5096 int pipe = intel_crtc->pipe;
79e53945 5097
08a48469
DV
5098 WARN_ON(!crtc->enabled);
5099
f7abfe8b
CW
5100 if (intel_crtc->active)
5101 return;
5102
f13c2ef3
DV
5103 i9xx_set_pll_dividers(intel_crtc);
5104
6e3c9717 5105 if (intel_crtc->config->has_dp_encoder)
5b18e57c
DV
5106 intel_dp_set_m_n(intel_crtc);
5107
5108 intel_set_pipe_timings(intel_crtc);
5109
5b18e57c
DV
5110 i9xx_set_pipeconf(intel_crtc);
5111
f7abfe8b 5112 intel_crtc->active = true;
6b383a7f 5113
4a3436e8 5114 if (!IS_GEN2(dev))
a72e4c9f 5115 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 5116
9d6d9f19
MK
5117 for_each_encoder_on_crtc(dev, crtc, encoder)
5118 if (encoder->pre_enable)
5119 encoder->pre_enable(encoder);
5120
f6736a1a
DV
5121 i9xx_enable_pll(intel_crtc);
5122
2dd24552
JB
5123 i9xx_pfit_enable(intel_crtc);
5124
63cbb074
VS
5125 intel_crtc_load_lut(crtc);
5126
f37fcc2a 5127 intel_update_watermarks(crtc);
e1fdc473 5128 intel_enable_pipe(intel_crtc);
be6a6f8e 5129
4b3a9526
VS
5130 assert_vblank_disabled(crtc);
5131 drm_crtc_vblank_on(crtc);
5132
f9b61ff6
DV
5133 for_each_encoder_on_crtc(dev, crtc, encoder)
5134 encoder->enable(encoder);
5135
9ab0460b 5136 intel_crtc_enable_planes(crtc);
d40d9187 5137
4a3436e8
VS
5138 /*
5139 * Gen2 reports pipe underruns whenever all planes are disabled.
5140 * So don't enable underrun reporting before at least some planes
5141 * are enabled.
5142 * FIXME: Need to fix the logic to work when we turn off all planes
5143 * but leave the pipe running.
5144 */
5145 if (IS_GEN2(dev))
a72e4c9f 5146 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 5147
56b80e1f 5148 /* Underruns don't raise interrupts, so check manually. */
a72e4c9f 5149 i9xx_check_fifo_underruns(dev_priv);
0b8765c6 5150}
79e53945 5151
87476d63
DV
5152static void i9xx_pfit_disable(struct intel_crtc *crtc)
5153{
5154 struct drm_device *dev = crtc->base.dev;
5155 struct drm_i915_private *dev_priv = dev->dev_private;
87476d63 5156
6e3c9717 5157 if (!crtc->config->gmch_pfit.control)
328d8e82 5158 return;
87476d63 5159
328d8e82 5160 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 5161
328d8e82
DV
5162 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
5163 I915_READ(PFIT_CONTROL));
5164 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
5165}
5166
0b8765c6
JB
5167static void i9xx_crtc_disable(struct drm_crtc *crtc)
5168{
5169 struct drm_device *dev = crtc->dev;
5170 struct drm_i915_private *dev_priv = dev->dev_private;
5171 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 5172 struct intel_encoder *encoder;
0b8765c6 5173 int pipe = intel_crtc->pipe;
ef9c3aee 5174
f7abfe8b
CW
5175 if (!intel_crtc->active)
5176 return;
5177
4a3436e8
VS
5178 /*
5179 * Gen2 reports pipe underruns whenever all planes are disabled.
5180 * So diasble underrun reporting before all the planes get disabled.
5181 * FIXME: Need to fix the logic to work when we turn off all planes
5182 * but leave the pipe running.
5183 */
5184 if (IS_GEN2(dev))
a72e4c9f 5185 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4a3436e8 5186
564ed191
ID
5187 /*
5188 * Vblank time updates from the shadow to live plane control register
5189 * are blocked if the memory self-refresh mode is active at that
5190 * moment. So to make sure the plane gets truly disabled, disable
5191 * first the self-refresh mode. The self-refresh enable bit in turn
5192 * will be checked/applied by the HW only at the next frame start
5193 * event which is after the vblank start event, so we need to have a
5194 * wait-for-vblank between disabling the plane and the pipe.
5195 */
5196 intel_set_memory_cxsr(dev_priv, false);
9ab0460b
VS
5197 intel_crtc_disable_planes(crtc);
5198
6304cd91
VS
5199 /*
5200 * On gen2 planes are double buffered but the pipe isn't, so we must
5201 * wait for planes to fully turn off before disabling the pipe.
564ed191
ID
5202 * We also need to wait on all gmch platforms because of the
5203 * self-refresh mode constraint explained above.
6304cd91 5204 */
564ed191 5205 intel_wait_for_vblank(dev, pipe);
6304cd91 5206
4b3a9526
VS
5207 for_each_encoder_on_crtc(dev, crtc, encoder)
5208 encoder->disable(encoder);
5209
f9b61ff6
DV
5210 drm_crtc_vblank_off(crtc);
5211 assert_vblank_disabled(crtc);
5212
575f7ab7 5213 intel_disable_pipe(intel_crtc);
24a1f16d 5214
87476d63 5215 i9xx_pfit_disable(intel_crtc);
24a1f16d 5216
89b667f8
JB
5217 for_each_encoder_on_crtc(dev, crtc, encoder)
5218 if (encoder->post_disable)
5219 encoder->post_disable(encoder);
5220
409ee761 5221 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
076ed3b2
CML
5222 if (IS_CHERRYVIEW(dev))
5223 chv_disable_pll(dev_priv, pipe);
5224 else if (IS_VALLEYVIEW(dev))
5225 vlv_disable_pll(dev_priv, pipe);
5226 else
1c4e0274 5227 i9xx_disable_pll(intel_crtc);
076ed3b2 5228 }
0b8765c6 5229
4a3436e8 5230 if (!IS_GEN2(dev))
a72e4c9f 5231 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4a3436e8 5232
f7abfe8b 5233 intel_crtc->active = false;
46ba614c 5234 intel_update_watermarks(crtc);
f37fcc2a 5235
efa9624e 5236 mutex_lock(&dev->struct_mutex);
7ff0ebcc 5237 intel_fbc_update(dev);
efa9624e 5238 mutex_unlock(&dev->struct_mutex);
0b8765c6
JB
5239}
5240
ee7b9f93
JB
5241static void i9xx_crtc_off(struct drm_crtc *crtc)
5242{
5243}
5244
b04c5bd6
BF
5245/* Master function to enable/disable CRTC and corresponding power wells */
5246void intel_crtc_control(struct drm_crtc *crtc, bool enable)
976f8a20
DV
5247{
5248 struct drm_device *dev = crtc->dev;
5249 struct drm_i915_private *dev_priv = dev->dev_private;
0e572fe7 5250 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
0e572fe7
DV
5251 enum intel_display_power_domain domain;
5252 unsigned long domains;
976f8a20 5253
0e572fe7
DV
5254 if (enable) {
5255 if (!intel_crtc->active) {
e1e9fb84
DV
5256 domains = get_crtc_power_domains(crtc);
5257 for_each_power_domain(domain, domains)
5258 intel_display_power_get(dev_priv, domain);
5259 intel_crtc->enabled_power_domains = domains;
0e572fe7
DV
5260
5261 dev_priv->display.crtc_enable(crtc);
5262 }
5263 } else {
5264 if (intel_crtc->active) {
5265 dev_priv->display.crtc_disable(crtc);
5266
e1e9fb84
DV
5267 domains = intel_crtc->enabled_power_domains;
5268 for_each_power_domain(domain, domains)
5269 intel_display_power_put(dev_priv, domain);
5270 intel_crtc->enabled_power_domains = 0;
0e572fe7
DV
5271 }
5272 }
b04c5bd6
BF
5273}
5274
5275/**
5276 * Sets the power management mode of the pipe and plane.
5277 */
5278void intel_crtc_update_dpms(struct drm_crtc *crtc)
5279{
5280 struct drm_device *dev = crtc->dev;
5281 struct intel_encoder *intel_encoder;
5282 bool enable = false;
5283
5284 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5285 enable |= intel_encoder->connectors_active;
5286
5287 intel_crtc_control(crtc, enable);
976f8a20
DV
5288}
5289
cdd59983
CW
5290static void intel_crtc_disable(struct drm_crtc *crtc)
5291{
cdd59983 5292 struct drm_device *dev = crtc->dev;
976f8a20 5293 struct drm_connector *connector;
ee7b9f93 5294 struct drm_i915_private *dev_priv = dev->dev_private;
cdd59983 5295
976f8a20
DV
5296 /* crtc should still be enabled when we disable it. */
5297 WARN_ON(!crtc->enabled);
5298
5299 dev_priv->display.crtc_disable(crtc);
ee7b9f93
JB
5300 dev_priv->display.off(crtc);
5301
455a6808 5302 crtc->primary->funcs->disable_plane(crtc->primary);
976f8a20
DV
5303
5304 /* Update computed state. */
5305 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5306 if (!connector->encoder || !connector->encoder->crtc)
5307 continue;
5308
5309 if (connector->encoder->crtc != crtc)
5310 continue;
5311
5312 connector->dpms = DRM_MODE_DPMS_OFF;
5313 to_intel_encoder(connector->encoder)->connectors_active = false;
cdd59983
CW
5314 }
5315}
5316
ea5b213a 5317void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 5318{
4ef69c7a 5319 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 5320
ea5b213a
CW
5321 drm_encoder_cleanup(encoder);
5322 kfree(intel_encoder);
7e7d76c3
JB
5323}
5324
9237329d 5325/* Simple dpms helper for encoders with just one connector, no cloning and only
5ab432ef
DV
5326 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
5327 * state of the entire output pipe. */
9237329d 5328static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
7e7d76c3 5329{
5ab432ef
DV
5330 if (mode == DRM_MODE_DPMS_ON) {
5331 encoder->connectors_active = true;
5332
b2cabb0e 5333 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef
DV
5334 } else {
5335 encoder->connectors_active = false;
5336
b2cabb0e 5337 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef 5338 }
79e53945
JB
5339}
5340
0a91ca29
DV
5341/* Cross check the actual hw state with our own modeset state tracking (and it's
5342 * internal consistency). */
b980514c 5343static void intel_connector_check_state(struct intel_connector *connector)
79e53945 5344{
0a91ca29
DV
5345 if (connector->get_hw_state(connector)) {
5346 struct intel_encoder *encoder = connector->encoder;
5347 struct drm_crtc *crtc;
5348 bool encoder_enabled;
5349 enum pipe pipe;
5350
5351 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
5352 connector->base.base.id,
c23cc417 5353 connector->base.name);
0a91ca29 5354
0e32b39c
DA
5355 /* there is no real hw state for MST connectors */
5356 if (connector->mst_port)
5357 return;
5358
e2c719b7 5359 I915_STATE_WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
0a91ca29 5360 "wrong connector dpms state\n");
e2c719b7 5361 I915_STATE_WARN(connector->base.encoder != &encoder->base,
0a91ca29 5362 "active connector not linked to encoder\n");
0a91ca29 5363
36cd7444 5364 if (encoder) {
e2c719b7 5365 I915_STATE_WARN(!encoder->connectors_active,
36cd7444
DA
5366 "encoder->connectors_active not set\n");
5367
5368 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
e2c719b7
RC
5369 I915_STATE_WARN(!encoder_enabled, "encoder not enabled\n");
5370 if (I915_STATE_WARN_ON(!encoder->base.crtc))
36cd7444 5371 return;
0a91ca29 5372
36cd7444 5373 crtc = encoder->base.crtc;
0a91ca29 5374
e2c719b7
RC
5375 I915_STATE_WARN(!crtc->enabled, "crtc not enabled\n");
5376 I915_STATE_WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
5377 I915_STATE_WARN(pipe != to_intel_crtc(crtc)->pipe,
36cd7444
DA
5378 "encoder active on the wrong pipe\n");
5379 }
0a91ca29 5380 }
79e53945
JB
5381}
5382
5ab432ef
DV
5383/* Even simpler default implementation, if there's really no special case to
5384 * consider. */
5385void intel_connector_dpms(struct drm_connector *connector, int mode)
79e53945 5386{
5ab432ef
DV
5387 /* All the simple cases only support two dpms states. */
5388 if (mode != DRM_MODE_DPMS_ON)
5389 mode = DRM_MODE_DPMS_OFF;
d4270e57 5390
5ab432ef
DV
5391 if (mode == connector->dpms)
5392 return;
5393
5394 connector->dpms = mode;
5395
5396 /* Only need to change hw state when actually enabled */
c9976dcf
CW
5397 if (connector->encoder)
5398 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
0a91ca29 5399
b980514c 5400 intel_modeset_check_state(connector->dev);
79e53945
JB
5401}
5402
f0947c37
DV
5403/* Simple connector->get_hw_state implementation for encoders that support only
5404 * one connector and no cloning and hence the encoder state determines the state
5405 * of the connector. */
5406bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 5407{
24929352 5408 enum pipe pipe = 0;
f0947c37 5409 struct intel_encoder *encoder = connector->encoder;
ea5b213a 5410
f0947c37 5411 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
5412}
5413
1857e1da 5414static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
5cec258b 5415 struct intel_crtc_state *pipe_config)
1857e1da
DV
5416{
5417 struct drm_i915_private *dev_priv = dev->dev_private;
5418 struct intel_crtc *pipe_B_crtc =
5419 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
5420
5421 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
5422 pipe_name(pipe), pipe_config->fdi_lanes);
5423 if (pipe_config->fdi_lanes > 4) {
5424 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
5425 pipe_name(pipe), pipe_config->fdi_lanes);
5426 return false;
5427 }
5428
bafb6553 5429 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
1857e1da
DV
5430 if (pipe_config->fdi_lanes > 2) {
5431 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5432 pipe_config->fdi_lanes);
5433 return false;
5434 } else {
5435 return true;
5436 }
5437 }
5438
5439 if (INTEL_INFO(dev)->num_pipes == 2)
5440 return true;
5441
5442 /* Ivybridge 3 pipe is really complicated */
5443 switch (pipe) {
5444 case PIPE_A:
5445 return true;
5446 case PIPE_B:
5447 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5448 pipe_config->fdi_lanes > 2) {
5449 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5450 pipe_name(pipe), pipe_config->fdi_lanes);
5451 return false;
5452 }
5453 return true;
5454 case PIPE_C:
1e833f40 5455 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
6e3c9717 5456 pipe_B_crtc->config->fdi_lanes <= 2) {
1857e1da
DV
5457 if (pipe_config->fdi_lanes > 2) {
5458 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5459 pipe_name(pipe), pipe_config->fdi_lanes);
5460 return false;
5461 }
5462 } else {
5463 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5464 return false;
5465 }
5466 return true;
5467 default:
5468 BUG();
5469 }
5470}
5471
e29c22c0
DV
5472#define RETRY 1
5473static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5cec258b 5474 struct intel_crtc_state *pipe_config)
877d48d5 5475{
1857e1da 5476 struct drm_device *dev = intel_crtc->base.dev;
2d112de7 5477 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
ff9a6750 5478 int lane, link_bw, fdi_dotclock;
e29c22c0 5479 bool setup_ok, needs_recompute = false;
877d48d5 5480
e29c22c0 5481retry:
877d48d5
DV
5482 /* FDI is a binary signal running at ~2.7GHz, encoding
5483 * each output octet as 10 bits. The actual frequency
5484 * is stored as a divider into a 100MHz clock, and the
5485 * mode pixel clock is stored in units of 1KHz.
5486 * Hence the bw of each lane in terms of the mode signal
5487 * is:
5488 */
5489 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5490
241bfc38 5491 fdi_dotclock = adjusted_mode->crtc_clock;
877d48d5 5492
2bd89a07 5493 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
5494 pipe_config->pipe_bpp);
5495
5496 pipe_config->fdi_lanes = lane;
5497
2bd89a07 5498 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 5499 link_bw, &pipe_config->fdi_m_n);
1857e1da 5500
e29c22c0
DV
5501 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5502 intel_crtc->pipe, pipe_config);
5503 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5504 pipe_config->pipe_bpp -= 2*3;
5505 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5506 pipe_config->pipe_bpp);
5507 needs_recompute = true;
5508 pipe_config->bw_constrained = true;
5509
5510 goto retry;
5511 }
5512
5513 if (needs_recompute)
5514 return RETRY;
5515
5516 return setup_ok ? 0 : -EINVAL;
877d48d5
DV
5517}
5518
42db64ef 5519static void hsw_compute_ips_config(struct intel_crtc *crtc,
5cec258b 5520 struct intel_crtc_state *pipe_config)
42db64ef 5521{
d330a953 5522 pipe_config->ips_enabled = i915.enable_ips &&
3c4ca58c 5523 hsw_crtc_supports_ips(crtc) &&
b6dfdc9b 5524 pipe_config->pipe_bpp <= 24;
42db64ef
PZ
5525}
5526
a43f6e0f 5527static int intel_crtc_compute_config(struct intel_crtc *crtc,
5cec258b 5528 struct intel_crtc_state *pipe_config)
79e53945 5529{
a43f6e0f 5530 struct drm_device *dev = crtc->base.dev;
8bd31e67 5531 struct drm_i915_private *dev_priv = dev->dev_private;
2d112de7 5532 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
89749350 5533
ad3a4479 5534 /* FIXME should check pixel clock limits on all platforms */
cf532bb2 5535 if (INTEL_INFO(dev)->gen < 4) {
cf532bb2
VS
5536 int clock_limit =
5537 dev_priv->display.get_display_clock_speed(dev);
5538
5539 /*
5540 * Enable pixel doubling when the dot clock
5541 * is > 90% of the (display) core speed.
5542 *
b397c96b
VS
5543 * GDG double wide on either pipe,
5544 * otherwise pipe A only.
cf532bb2 5545 */
b397c96b 5546 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
241bfc38 5547 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
ad3a4479 5548 clock_limit *= 2;
cf532bb2 5549 pipe_config->double_wide = true;
ad3a4479
VS
5550 }
5551
241bfc38 5552 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
e29c22c0 5553 return -EINVAL;
2c07245f 5554 }
89749350 5555
1d1d0e27
VS
5556 /*
5557 * Pipe horizontal size must be even in:
5558 * - DVO ganged mode
5559 * - LVDS dual channel mode
5560 * - Double wide pipe
5561 */
409ee761 5562 if ((intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
1d1d0e27
VS
5563 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5564 pipe_config->pipe_src_w &= ~1;
5565
8693a824
DL
5566 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5567 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42
CW
5568 */
5569 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5570 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
e29c22c0 5571 return -EINVAL;
44f46b42 5572
bd080ee5 5573 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
5d2d38dd 5574 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
bd080ee5 5575 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
5d2d38dd
DV
5576 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5577 * for lvds. */
5578 pipe_config->pipe_bpp = 8*3;
5579 }
5580
f5adf94e 5581 if (HAS_IPS(dev))
a43f6e0f
DV
5582 hsw_compute_ips_config(crtc, pipe_config);
5583
877d48d5 5584 if (pipe_config->has_pch_encoder)
a43f6e0f 5585 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 5586
e29c22c0 5587 return 0;
79e53945
JB
5588}
5589
25eb05fc
JB
5590static int valleyview_get_display_clock_speed(struct drm_device *dev)
5591{
d197b7d3 5592 struct drm_i915_private *dev_priv = dev->dev_private;
d197b7d3
VS
5593 u32 val;
5594 int divider;
5595
d49a340d
VS
5596 /* FIXME: Punit isn't quite ready yet */
5597 if (IS_CHERRYVIEW(dev))
5598 return 400000;
5599
6bcda4f0
VS
5600 if (dev_priv->hpll_freq == 0)
5601 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
5602
d197b7d3
VS
5603 mutex_lock(&dev_priv->dpio_lock);
5604 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
5605 mutex_unlock(&dev_priv->dpio_lock);
5606
5607 divider = val & DISPLAY_FREQUENCY_VALUES;
5608
7d007f40
VS
5609 WARN((val & DISPLAY_FREQUENCY_STATUS) !=
5610 (divider << DISPLAY_FREQUENCY_STATUS_SHIFT),
5611 "cdclk change in progress\n");
5612
6bcda4f0 5613 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
25eb05fc
JB
5614}
5615
e70236a8
JB
5616static int i945_get_display_clock_speed(struct drm_device *dev)
5617{
5618 return 400000;
5619}
79e53945 5620
e70236a8 5621static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 5622{
e70236a8
JB
5623 return 333000;
5624}
79e53945 5625
e70236a8
JB
5626static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5627{
5628 return 200000;
5629}
79e53945 5630
257a7ffc
DV
5631static int pnv_get_display_clock_speed(struct drm_device *dev)
5632{
5633 u16 gcfgc = 0;
5634
5635 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5636
5637 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5638 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5639 return 267000;
5640 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5641 return 333000;
5642 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5643 return 444000;
5644 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5645 return 200000;
5646 default:
5647 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5648 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5649 return 133000;
5650 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5651 return 167000;
5652 }
5653}
5654
e70236a8
JB
5655static int i915gm_get_display_clock_speed(struct drm_device *dev)
5656{
5657 u16 gcfgc = 0;
79e53945 5658
e70236a8
JB
5659 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5660
5661 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
5662 return 133000;
5663 else {
5664 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5665 case GC_DISPLAY_CLOCK_333_MHZ:
5666 return 333000;
5667 default:
5668 case GC_DISPLAY_CLOCK_190_200_MHZ:
5669 return 190000;
79e53945 5670 }
e70236a8
JB
5671 }
5672}
5673
5674static int i865_get_display_clock_speed(struct drm_device *dev)
5675{
5676 return 266000;
5677}
5678
5679static int i855_get_display_clock_speed(struct drm_device *dev)
5680{
5681 u16 hpllcc = 0;
5682 /* Assume that the hardware is in the high speed state. This
5683 * should be the default.
5684 */
5685 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5686 case GC_CLOCK_133_200:
5687 case GC_CLOCK_100_200:
5688 return 200000;
5689 case GC_CLOCK_166_250:
5690 return 250000;
5691 case GC_CLOCK_100_133:
79e53945 5692 return 133000;
e70236a8 5693 }
79e53945 5694
e70236a8
JB
5695 /* Shouldn't happen */
5696 return 0;
5697}
79e53945 5698
e70236a8
JB
5699static int i830_get_display_clock_speed(struct drm_device *dev)
5700{
5701 return 133000;
79e53945
JB
5702}
5703
2c07245f 5704static void
a65851af 5705intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 5706{
a65851af
VS
5707 while (*num > DATA_LINK_M_N_MASK ||
5708 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
5709 *num >>= 1;
5710 *den >>= 1;
5711 }
5712}
5713
a65851af
VS
5714static void compute_m_n(unsigned int m, unsigned int n,
5715 uint32_t *ret_m, uint32_t *ret_n)
5716{
5717 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5718 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5719 intel_reduce_m_n_ratio(ret_m, ret_n);
5720}
5721
e69d0bc1
DV
5722void
5723intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5724 int pixel_clock, int link_clock,
5725 struct intel_link_m_n *m_n)
2c07245f 5726{
e69d0bc1 5727 m_n->tu = 64;
a65851af
VS
5728
5729 compute_m_n(bits_per_pixel * pixel_clock,
5730 link_clock * nlanes * 8,
5731 &m_n->gmch_m, &m_n->gmch_n);
5732
5733 compute_m_n(pixel_clock, link_clock,
5734 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
5735}
5736
a7615030
CW
5737static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5738{
d330a953
JN
5739 if (i915.panel_use_ssc >= 0)
5740 return i915.panel_use_ssc != 0;
41aa3448 5741 return dev_priv->vbt.lvds_use_ssc
435793df 5742 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
5743}
5744
409ee761 5745static int i9xx_get_refclk(struct intel_crtc *crtc, int num_connectors)
c65d77d8 5746{
409ee761 5747 struct drm_device *dev = crtc->base.dev;
c65d77d8
JB
5748 struct drm_i915_private *dev_priv = dev->dev_private;
5749 int refclk;
5750
a0c4da24 5751 if (IS_VALLEYVIEW(dev)) {
9a0ea498 5752 refclk = 100000;
d0737e1d 5753 } else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
c65d77d8 5754 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b
VS
5755 refclk = dev_priv->vbt.lvds_ssc_freq;
5756 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
c65d77d8
JB
5757 } else if (!IS_GEN2(dev)) {
5758 refclk = 96000;
5759 } else {
5760 refclk = 48000;
5761 }
5762
5763 return refclk;
5764}
5765
7429e9d4 5766static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
c65d77d8 5767{
7df00d7a 5768 return (1 << dpll->n) << 16 | dpll->m2;
7429e9d4 5769}
f47709a9 5770
7429e9d4
DV
5771static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5772{
5773 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
c65d77d8
JB
5774}
5775
f47709a9 5776static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
190f68c5 5777 struct intel_crtc_state *crtc_state,
a7516a05
JB
5778 intel_clock_t *reduced_clock)
5779{
f47709a9 5780 struct drm_device *dev = crtc->base.dev;
a7516a05
JB
5781 u32 fp, fp2 = 0;
5782
5783 if (IS_PINEVIEW(dev)) {
190f68c5 5784 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
a7516a05 5785 if (reduced_clock)
7429e9d4 5786 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 5787 } else {
190f68c5 5788 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
a7516a05 5789 if (reduced_clock)
7429e9d4 5790 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
5791 }
5792
190f68c5 5793 crtc_state->dpll_hw_state.fp0 = fp;
a7516a05 5794
f47709a9 5795 crtc->lowfreq_avail = false;
e1f234bd 5796 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
d330a953 5797 reduced_clock && i915.powersave) {
190f68c5 5798 crtc_state->dpll_hw_state.fp1 = fp2;
f47709a9 5799 crtc->lowfreq_avail = true;
a7516a05 5800 } else {
190f68c5 5801 crtc_state->dpll_hw_state.fp1 = fp;
a7516a05
JB
5802 }
5803}
5804
5e69f97f
CML
5805static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5806 pipe)
89b667f8
JB
5807{
5808 u32 reg_val;
5809
5810 /*
5811 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5812 * and set it to a reasonable value instead.
5813 */
ab3c759a 5814 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8
JB
5815 reg_val &= 0xffffff00;
5816 reg_val |= 0x00000030;
ab3c759a 5817 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 5818
ab3c759a 5819 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
5820 reg_val &= 0x8cffffff;
5821 reg_val = 0x8c000000;
ab3c759a 5822 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8 5823
ab3c759a 5824 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8 5825 reg_val &= 0xffffff00;
ab3c759a 5826 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 5827
ab3c759a 5828 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
5829 reg_val &= 0x00ffffff;
5830 reg_val |= 0xb0000000;
ab3c759a 5831 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8
JB
5832}
5833
b551842d
DV
5834static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5835 struct intel_link_m_n *m_n)
5836{
5837 struct drm_device *dev = crtc->base.dev;
5838 struct drm_i915_private *dev_priv = dev->dev_private;
5839 int pipe = crtc->pipe;
5840
e3b95f1e
DV
5841 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5842 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5843 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5844 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
5845}
5846
5847static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
5848 struct intel_link_m_n *m_n,
5849 struct intel_link_m_n *m2_n2)
b551842d
DV
5850{
5851 struct drm_device *dev = crtc->base.dev;
5852 struct drm_i915_private *dev_priv = dev->dev_private;
5853 int pipe = crtc->pipe;
6e3c9717 5854 enum transcoder transcoder = crtc->config->cpu_transcoder;
b551842d
DV
5855
5856 if (INTEL_INFO(dev)->gen >= 5) {
5857 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5858 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5859 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5860 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
f769cd24
VK
5861 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
5862 * for gen < 8) and if DRRS is supported (to make sure the
5863 * registers are not unnecessarily accessed).
5864 */
5865 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
6e3c9717 5866 crtc->config->has_drrs) {
f769cd24
VK
5867 I915_WRITE(PIPE_DATA_M2(transcoder),
5868 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
5869 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
5870 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
5871 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
5872 }
b551842d 5873 } else {
e3b95f1e
DV
5874 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5875 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5876 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5877 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
5878 }
5879}
5880
f769cd24 5881void intel_dp_set_m_n(struct intel_crtc *crtc)
03afc4a2 5882{
6e3c9717
ACO
5883 if (crtc->config->has_pch_encoder)
5884 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
03afc4a2 5885 else
6e3c9717
ACO
5886 intel_cpu_transcoder_set_m_n(crtc, &crtc->config->dp_m_n,
5887 &crtc->config->dp_m2_n2);
03afc4a2
DV
5888}
5889
d288f65f 5890static void vlv_update_pll(struct intel_crtc *crtc,
5cec258b 5891 struct intel_crtc_state *pipe_config)
bdd4b6a6
DV
5892{
5893 u32 dpll, dpll_md;
5894
5895 /*
5896 * Enable DPIO clock input. We should never disable the reference
5897 * clock for pipe B, since VGA hotplug / manual detection depends
5898 * on it.
5899 */
5900 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5901 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5902 /* We should never disable this, set it here for state tracking */
5903 if (crtc->pipe == PIPE_B)
5904 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5905 dpll |= DPLL_VCO_ENABLE;
d288f65f 5906 pipe_config->dpll_hw_state.dpll = dpll;
bdd4b6a6 5907
d288f65f 5908 dpll_md = (pipe_config->pixel_multiplier - 1)
bdd4b6a6 5909 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
d288f65f 5910 pipe_config->dpll_hw_state.dpll_md = dpll_md;
bdd4b6a6
DV
5911}
5912
d288f65f 5913static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 5914 const struct intel_crtc_state *pipe_config)
a0c4da24 5915{
f47709a9 5916 struct drm_device *dev = crtc->base.dev;
a0c4da24 5917 struct drm_i915_private *dev_priv = dev->dev_private;
f47709a9 5918 int pipe = crtc->pipe;
bdd4b6a6 5919 u32 mdiv;
a0c4da24 5920 u32 bestn, bestm1, bestm2, bestp1, bestp2;
bdd4b6a6 5921 u32 coreclk, reg_val;
a0c4da24 5922
09153000
DV
5923 mutex_lock(&dev_priv->dpio_lock);
5924
d288f65f
VS
5925 bestn = pipe_config->dpll.n;
5926 bestm1 = pipe_config->dpll.m1;
5927 bestm2 = pipe_config->dpll.m2;
5928 bestp1 = pipe_config->dpll.p1;
5929 bestp2 = pipe_config->dpll.p2;
a0c4da24 5930
89b667f8
JB
5931 /* See eDP HDMI DPIO driver vbios notes doc */
5932
5933 /* PLL B needs special handling */
bdd4b6a6 5934 if (pipe == PIPE_B)
5e69f97f 5935 vlv_pllb_recal_opamp(dev_priv, pipe);
89b667f8
JB
5936
5937 /* Set up Tx target for periodic Rcomp update */
ab3c759a 5938 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
89b667f8
JB
5939
5940 /* Disable target IRef on PLL */
ab3c759a 5941 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
89b667f8 5942 reg_val &= 0x00ffffff;
ab3c759a 5943 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
89b667f8
JB
5944
5945 /* Disable fast lock */
ab3c759a 5946 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
89b667f8
JB
5947
5948 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
5949 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5950 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5951 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 5952 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
5953
5954 /*
5955 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5956 * but we don't support that).
5957 * Note: don't use the DAC post divider as it seems unstable.
5958 */
5959 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ab3c759a 5960 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 5961
a0c4da24 5962 mdiv |= DPIO_ENABLE_CALIBRATION;
ab3c759a 5963 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 5964
89b667f8 5965 /* Set HBR and RBR LPF coefficients */
d288f65f 5966 if (pipe_config->port_clock == 162000 ||
409ee761
ACO
5967 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
5968 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
ab3c759a 5969 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
885b0120 5970 0x009f0003);
89b667f8 5971 else
ab3c759a 5972 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
89b667f8
JB
5973 0x00d0000f);
5974
681a8504 5975 if (pipe_config->has_dp_encoder) {
89b667f8 5976 /* Use SSC source */
bdd4b6a6 5977 if (pipe == PIPE_A)
ab3c759a 5978 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5979 0x0df40000);
5980 else
ab3c759a 5981 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5982 0x0df70000);
5983 } else { /* HDMI or VGA */
5984 /* Use bend source */
bdd4b6a6 5985 if (pipe == PIPE_A)
ab3c759a 5986 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5987 0x0df70000);
5988 else
ab3c759a 5989 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5990 0x0df40000);
5991 }
a0c4da24 5992
ab3c759a 5993 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
89b667f8 5994 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
409ee761
ACO
5995 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
5996 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
89b667f8 5997 coreclk |= 0x01000000;
ab3c759a 5998 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
a0c4da24 5999
ab3c759a 6000 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
09153000 6001 mutex_unlock(&dev_priv->dpio_lock);
a0c4da24
JB
6002}
6003
d288f65f 6004static void chv_update_pll(struct intel_crtc *crtc,
5cec258b 6005 struct intel_crtc_state *pipe_config)
1ae0d137 6006{
d288f65f 6007 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
1ae0d137
VS
6008 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
6009 DPLL_VCO_ENABLE;
6010 if (crtc->pipe != PIPE_A)
d288f65f 6011 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
1ae0d137 6012
d288f65f
VS
6013 pipe_config->dpll_hw_state.dpll_md =
6014 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
1ae0d137
VS
6015}
6016
d288f65f 6017static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 6018 const struct intel_crtc_state *pipe_config)
9d556c99
CML
6019{
6020 struct drm_device *dev = crtc->base.dev;
6021 struct drm_i915_private *dev_priv = dev->dev_private;
6022 int pipe = crtc->pipe;
6023 int dpll_reg = DPLL(crtc->pipe);
6024 enum dpio_channel port = vlv_pipe_to_channel(pipe);
580d3811 6025 u32 loopfilter, intcoeff;
9d556c99
CML
6026 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
6027 int refclk;
6028
d288f65f
VS
6029 bestn = pipe_config->dpll.n;
6030 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
6031 bestm1 = pipe_config->dpll.m1;
6032 bestm2 = pipe_config->dpll.m2 >> 22;
6033 bestp1 = pipe_config->dpll.p1;
6034 bestp2 = pipe_config->dpll.p2;
9d556c99
CML
6035
6036 /*
6037 * Enable Refclk and SSC
6038 */
a11b0703 6039 I915_WRITE(dpll_reg,
d288f65f 6040 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
a11b0703
VS
6041
6042 mutex_lock(&dev_priv->dpio_lock);
9d556c99 6043
9d556c99
CML
6044 /* p1 and p2 divider */
6045 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
6046 5 << DPIO_CHV_S1_DIV_SHIFT |
6047 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
6048 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
6049 1 << DPIO_CHV_K_DIV_SHIFT);
6050
6051 /* Feedback post-divider - m2 */
6052 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
6053
6054 /* Feedback refclk divider - n and m1 */
6055 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
6056 DPIO_CHV_M1_DIV_BY_2 |
6057 1 << DPIO_CHV_N_DIV_SHIFT);
6058
6059 /* M2 fraction division */
6060 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
6061
6062 /* M2 fraction division enable */
6063 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
6064 DPIO_CHV_FRAC_DIV_EN |
6065 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
6066
6067 /* Loop filter */
409ee761 6068 refclk = i9xx_get_refclk(crtc, 0);
9d556c99
CML
6069 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
6070 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
6071 if (refclk == 100000)
6072 intcoeff = 11;
6073 else if (refclk == 38400)
6074 intcoeff = 10;
6075 else
6076 intcoeff = 9;
6077 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
6078 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
6079
6080 /* AFC Recal */
6081 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
6082 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
6083 DPIO_AFC_RECAL);
6084
6085 mutex_unlock(&dev_priv->dpio_lock);
6086}
6087
d288f65f
VS
6088/**
6089 * vlv_force_pll_on - forcibly enable just the PLL
6090 * @dev_priv: i915 private structure
6091 * @pipe: pipe PLL to enable
6092 * @dpll: PLL configuration
6093 *
6094 * Enable the PLL for @pipe using the supplied @dpll config. To be used
6095 * in cases where we need the PLL enabled even when @pipe is not going to
6096 * be enabled.
6097 */
6098void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
6099 const struct dpll *dpll)
6100{
6101 struct intel_crtc *crtc =
6102 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
5cec258b 6103 struct intel_crtc_state pipe_config = {
d288f65f
VS
6104 .pixel_multiplier = 1,
6105 .dpll = *dpll,
6106 };
6107
6108 if (IS_CHERRYVIEW(dev)) {
6109 chv_update_pll(crtc, &pipe_config);
6110 chv_prepare_pll(crtc, &pipe_config);
6111 chv_enable_pll(crtc, &pipe_config);
6112 } else {
6113 vlv_update_pll(crtc, &pipe_config);
6114 vlv_prepare_pll(crtc, &pipe_config);
6115 vlv_enable_pll(crtc, &pipe_config);
6116 }
6117}
6118
6119/**
6120 * vlv_force_pll_off - forcibly disable just the PLL
6121 * @dev_priv: i915 private structure
6122 * @pipe: pipe PLL to disable
6123 *
6124 * Disable the PLL for @pipe. To be used in cases where we need
6125 * the PLL enabled even when @pipe is not going to be enabled.
6126 */
6127void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
6128{
6129 if (IS_CHERRYVIEW(dev))
6130 chv_disable_pll(to_i915(dev), pipe);
6131 else
6132 vlv_disable_pll(to_i915(dev), pipe);
6133}
6134
f47709a9 6135static void i9xx_update_pll(struct intel_crtc *crtc,
190f68c5 6136 struct intel_crtc_state *crtc_state,
f47709a9 6137 intel_clock_t *reduced_clock,
eb1cbe48
DV
6138 int num_connectors)
6139{
f47709a9 6140 struct drm_device *dev = crtc->base.dev;
eb1cbe48 6141 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48
DV
6142 u32 dpll;
6143 bool is_sdvo;
190f68c5 6144 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 6145
190f68c5 6146 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 6147
d0737e1d
ACO
6148 is_sdvo = intel_pipe_will_have_type(crtc, INTEL_OUTPUT_SDVO) ||
6149 intel_pipe_will_have_type(crtc, INTEL_OUTPUT_HDMI);
eb1cbe48
DV
6150
6151 dpll = DPLL_VGA_MODE_DIS;
6152
d0737e1d 6153 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
6154 dpll |= DPLLB_MODE_LVDS;
6155 else
6156 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 6157
ef1b460d 6158 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
190f68c5 6159 dpll |= (crtc_state->pixel_multiplier - 1)
198a037f 6160 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 6161 }
198a037f
DV
6162
6163 if (is_sdvo)
4a33e48d 6164 dpll |= DPLL_SDVO_HIGH_SPEED;
198a037f 6165
190f68c5 6166 if (crtc_state->has_dp_encoder)
4a33e48d 6167 dpll |= DPLL_SDVO_HIGH_SPEED;
eb1cbe48
DV
6168
6169 /* compute bitmask from p1 value */
6170 if (IS_PINEVIEW(dev))
6171 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
6172 else {
6173 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6174 if (IS_G4X(dev) && reduced_clock)
6175 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
6176 }
6177 switch (clock->p2) {
6178 case 5:
6179 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6180 break;
6181 case 7:
6182 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6183 break;
6184 case 10:
6185 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6186 break;
6187 case 14:
6188 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6189 break;
6190 }
6191 if (INTEL_INFO(dev)->gen >= 4)
6192 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
6193
190f68c5 6194 if (crtc_state->sdvo_tv_clock)
eb1cbe48 6195 dpll |= PLL_REF_INPUT_TVCLKINBC;
d0737e1d 6196 else if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
6197 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6198 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6199 else
6200 dpll |= PLL_REF_INPUT_DREFCLK;
6201
6202 dpll |= DPLL_VCO_ENABLE;
190f68c5 6203 crtc_state->dpll_hw_state.dpll = dpll;
8bcc2795 6204
eb1cbe48 6205 if (INTEL_INFO(dev)->gen >= 4) {
190f68c5 6206 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
ef1b460d 6207 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
190f68c5 6208 crtc_state->dpll_hw_state.dpll_md = dpll_md;
eb1cbe48
DV
6209 }
6210}
6211
f47709a9 6212static void i8xx_update_pll(struct intel_crtc *crtc,
190f68c5 6213 struct intel_crtc_state *crtc_state,
f47709a9 6214 intel_clock_t *reduced_clock,
eb1cbe48
DV
6215 int num_connectors)
6216{
f47709a9 6217 struct drm_device *dev = crtc->base.dev;
eb1cbe48 6218 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48 6219 u32 dpll;
190f68c5 6220 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 6221
190f68c5 6222 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 6223
eb1cbe48
DV
6224 dpll = DPLL_VGA_MODE_DIS;
6225
d0737e1d 6226 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
6227 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6228 } else {
6229 if (clock->p1 == 2)
6230 dpll |= PLL_P1_DIVIDE_BY_TWO;
6231 else
6232 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
6233 if (clock->p2 == 4)
6234 dpll |= PLL_P2_DIVIDE_BY_4;
6235 }
6236
d0737e1d 6237 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc, INTEL_OUTPUT_DVO))
4a33e48d
DV
6238 dpll |= DPLL_DVO_2X_MODE;
6239
d0737e1d 6240 if (intel_pipe_will_have_type(crtc, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
6241 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
6242 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
6243 else
6244 dpll |= PLL_REF_INPUT_DREFCLK;
6245
6246 dpll |= DPLL_VCO_ENABLE;
190f68c5 6247 crtc_state->dpll_hw_state.dpll = dpll;
eb1cbe48
DV
6248}
6249
8a654f3b 6250static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c
PZ
6251{
6252 struct drm_device *dev = intel_crtc->base.dev;
6253 struct drm_i915_private *dev_priv = dev->dev_private;
6254 enum pipe pipe = intel_crtc->pipe;
6e3c9717 6255 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
8a654f3b 6256 struct drm_display_mode *adjusted_mode =
6e3c9717 6257 &intel_crtc->config->base.adjusted_mode;
1caea6e9
VS
6258 uint32_t crtc_vtotal, crtc_vblank_end;
6259 int vsyncshift = 0;
4d8a62ea
DV
6260
6261 /* We need to be careful not to changed the adjusted mode, for otherwise
6262 * the hw state checker will get angry at the mismatch. */
6263 crtc_vtotal = adjusted_mode->crtc_vtotal;
6264 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c 6265
609aeaca 6266 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
b0e77b9c 6267 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
6268 crtc_vtotal -= 1;
6269 crtc_vblank_end -= 1;
609aeaca 6270
409ee761 6271 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
609aeaca
VS
6272 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
6273 else
6274 vsyncshift = adjusted_mode->crtc_hsync_start -
6275 adjusted_mode->crtc_htotal / 2;
1caea6e9
VS
6276 if (vsyncshift < 0)
6277 vsyncshift += adjusted_mode->crtc_htotal;
b0e77b9c
PZ
6278 }
6279
6280 if (INTEL_INFO(dev)->gen > 3)
fe2b8f9d 6281 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 6282
fe2b8f9d 6283 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
6284 (adjusted_mode->crtc_hdisplay - 1) |
6285 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 6286 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
6287 (adjusted_mode->crtc_hblank_start - 1) |
6288 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 6289 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
6290 (adjusted_mode->crtc_hsync_start - 1) |
6291 ((adjusted_mode->crtc_hsync_end - 1) << 16));
6292
fe2b8f9d 6293 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 6294 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 6295 ((crtc_vtotal - 1) << 16));
fe2b8f9d 6296 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 6297 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 6298 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 6299 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
6300 (adjusted_mode->crtc_vsync_start - 1) |
6301 ((adjusted_mode->crtc_vsync_end - 1) << 16));
6302
b5e508d4
PZ
6303 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
6304 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
6305 * documented on the DDI_FUNC_CTL register description, EDP Input Select
6306 * bits. */
6307 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
6308 (pipe == PIPE_B || pipe == PIPE_C))
6309 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
6310
b0e77b9c
PZ
6311 /* pipesrc controls the size that is scaled from, which should
6312 * always be the user's requested size.
6313 */
6314 I915_WRITE(PIPESRC(pipe),
6e3c9717
ACO
6315 ((intel_crtc->config->pipe_src_w - 1) << 16) |
6316 (intel_crtc->config->pipe_src_h - 1));
b0e77b9c
PZ
6317}
6318
1bd1bd80 6319static void intel_get_pipe_timings(struct intel_crtc *crtc,
5cec258b 6320 struct intel_crtc_state *pipe_config)
1bd1bd80
DV
6321{
6322 struct drm_device *dev = crtc->base.dev;
6323 struct drm_i915_private *dev_priv = dev->dev_private;
6324 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
6325 uint32_t tmp;
6326
6327 tmp = I915_READ(HTOTAL(cpu_transcoder));
2d112de7
ACO
6328 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
6329 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 6330 tmp = I915_READ(HBLANK(cpu_transcoder));
2d112de7
ACO
6331 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
6332 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 6333 tmp = I915_READ(HSYNC(cpu_transcoder));
2d112de7
ACO
6334 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
6335 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
6336
6337 tmp = I915_READ(VTOTAL(cpu_transcoder));
2d112de7
ACO
6338 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
6339 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 6340 tmp = I915_READ(VBLANK(cpu_transcoder));
2d112de7
ACO
6341 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
6342 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 6343 tmp = I915_READ(VSYNC(cpu_transcoder));
2d112de7
ACO
6344 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
6345 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
6346
6347 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
2d112de7
ACO
6348 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
6349 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
6350 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
1bd1bd80
DV
6351 }
6352
6353 tmp = I915_READ(PIPESRC(crtc->pipe));
37327abd
VS
6354 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
6355 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
6356
2d112de7
ACO
6357 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
6358 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
1bd1bd80
DV
6359}
6360
f6a83288 6361void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5cec258b 6362 struct intel_crtc_state *pipe_config)
babea61d 6363{
2d112de7
ACO
6364 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
6365 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
6366 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
6367 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
babea61d 6368
2d112de7
ACO
6369 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
6370 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
6371 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
6372 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
babea61d 6373
2d112de7 6374 mode->flags = pipe_config->base.adjusted_mode.flags;
babea61d 6375
2d112de7
ACO
6376 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
6377 mode->flags |= pipe_config->base.adjusted_mode.flags;
babea61d
JB
6378}
6379
84b046f3
DV
6380static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
6381{
6382 struct drm_device *dev = intel_crtc->base.dev;
6383 struct drm_i915_private *dev_priv = dev->dev_private;
6384 uint32_t pipeconf;
6385
9f11a9e4 6386 pipeconf = 0;
84b046f3 6387
b6b5d049
VS
6388 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
6389 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
6390 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
67c72a12 6391
6e3c9717 6392 if (intel_crtc->config->double_wide)
cf532bb2 6393 pipeconf |= PIPECONF_DOUBLE_WIDE;
84b046f3 6394
ff9ce46e
DV
6395 /* only g4x and later have fancy bpc/dither controls */
6396 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
ff9ce46e 6397 /* Bspec claims that we can't use dithering for 30bpp pipes. */
6e3c9717 6398 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
ff9ce46e 6399 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 6400 PIPECONF_DITHER_TYPE_SP;
84b046f3 6401
6e3c9717 6402 switch (intel_crtc->config->pipe_bpp) {
ff9ce46e
DV
6403 case 18:
6404 pipeconf |= PIPECONF_6BPC;
6405 break;
6406 case 24:
6407 pipeconf |= PIPECONF_8BPC;
6408 break;
6409 case 30:
6410 pipeconf |= PIPECONF_10BPC;
6411 break;
6412 default:
6413 /* Case prevented by intel_choose_pipe_bpp_dither. */
6414 BUG();
84b046f3
DV
6415 }
6416 }
6417
6418 if (HAS_PIPE_CXSR(dev)) {
6419 if (intel_crtc->lowfreq_avail) {
6420 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
6421 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
6422 } else {
6423 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
84b046f3
DV
6424 }
6425 }
6426
6e3c9717 6427 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
efc2cfff 6428 if (INTEL_INFO(dev)->gen < 4 ||
409ee761 6429 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
efc2cfff
VS
6430 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
6431 else
6432 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
6433 } else
84b046f3
DV
6434 pipeconf |= PIPECONF_PROGRESSIVE;
6435
6e3c9717 6436 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
9f11a9e4 6437 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
9c8e09b7 6438
84b046f3
DV
6439 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
6440 POSTING_READ(PIPECONF(intel_crtc->pipe));
6441}
6442
190f68c5
ACO
6443static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
6444 struct intel_crtc_state *crtc_state)
79e53945 6445{
c7653199 6446 struct drm_device *dev = crtc->base.dev;
79e53945 6447 struct drm_i915_private *dev_priv = dev->dev_private;
c751ce4f 6448 int refclk, num_connectors = 0;
652c393a 6449 intel_clock_t clock, reduced_clock;
a16af721 6450 bool ok, has_reduced_clock = false;
e9fd1c02 6451 bool is_lvds = false, is_dsi = false;
5eddb70b 6452 struct intel_encoder *encoder;
d4906093 6453 const intel_limit_t *limit;
79e53945 6454
d0737e1d
ACO
6455 for_each_intel_encoder(dev, encoder) {
6456 if (encoder->new_crtc != crtc)
6457 continue;
6458
5eddb70b 6459 switch (encoder->type) {
79e53945
JB
6460 case INTEL_OUTPUT_LVDS:
6461 is_lvds = true;
6462 break;
e9fd1c02
JN
6463 case INTEL_OUTPUT_DSI:
6464 is_dsi = true;
6465 break;
6847d71b
PZ
6466 default:
6467 break;
79e53945 6468 }
43565a06 6469
c751ce4f 6470 num_connectors++;
79e53945
JB
6471 }
6472
f2335330 6473 if (is_dsi)
5b18e57c 6474 return 0;
f2335330 6475
190f68c5 6476 if (!crtc_state->clock_set) {
409ee761 6477 refclk = i9xx_get_refclk(crtc, num_connectors);
79e53945 6478
e9fd1c02
JN
6479 /*
6480 * Returns a set of divisors for the desired target clock with
6481 * the given refclk, or FALSE. The returned values represent
6482 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
6483 * 2) / p1 / p2.
6484 */
409ee761 6485 limit = intel_limit(crtc, refclk);
c7653199 6486 ok = dev_priv->display.find_dpll(limit, crtc,
190f68c5 6487 crtc_state->port_clock,
e9fd1c02 6488 refclk, NULL, &clock);
f2335330 6489 if (!ok) {
e9fd1c02
JN
6490 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6491 return -EINVAL;
6492 }
79e53945 6493
f2335330
JN
6494 if (is_lvds && dev_priv->lvds_downclock_avail) {
6495 /*
6496 * Ensure we match the reduced clock's P to the target
6497 * clock. If the clocks don't match, we can't switch
6498 * the display clock by using the FP0/FP1. In such case
6499 * we will disable the LVDS downclock feature.
6500 */
6501 has_reduced_clock =
c7653199 6502 dev_priv->display.find_dpll(limit, crtc,
f2335330
JN
6503 dev_priv->lvds_downclock,
6504 refclk, &clock,
6505 &reduced_clock);
6506 }
6507 /* Compat-code for transition, will disappear. */
190f68c5
ACO
6508 crtc_state->dpll.n = clock.n;
6509 crtc_state->dpll.m1 = clock.m1;
6510 crtc_state->dpll.m2 = clock.m2;
6511 crtc_state->dpll.p1 = clock.p1;
6512 crtc_state->dpll.p2 = clock.p2;
f47709a9 6513 }
7026d4ac 6514
e9fd1c02 6515 if (IS_GEN2(dev)) {
190f68c5 6516 i8xx_update_pll(crtc, crtc_state,
2a8f64ca
VP
6517 has_reduced_clock ? &reduced_clock : NULL,
6518 num_connectors);
9d556c99 6519 } else if (IS_CHERRYVIEW(dev)) {
190f68c5 6520 chv_update_pll(crtc, crtc_state);
e9fd1c02 6521 } else if (IS_VALLEYVIEW(dev)) {
190f68c5 6522 vlv_update_pll(crtc, crtc_state);
e9fd1c02 6523 } else {
190f68c5 6524 i9xx_update_pll(crtc, crtc_state,
eb1cbe48 6525 has_reduced_clock ? &reduced_clock : NULL,
eba905b2 6526 num_connectors);
e9fd1c02 6527 }
79e53945 6528
c8f7a0db 6529 return 0;
f564048e
EA
6530}
6531
2fa2fe9a 6532static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5cec258b 6533 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
6534{
6535 struct drm_device *dev = crtc->base.dev;
6536 struct drm_i915_private *dev_priv = dev->dev_private;
6537 uint32_t tmp;
6538
dc9e7dec
VS
6539 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6540 return;
6541
2fa2fe9a 6542 tmp = I915_READ(PFIT_CONTROL);
06922821
DV
6543 if (!(tmp & PFIT_ENABLE))
6544 return;
2fa2fe9a 6545
06922821 6546 /* Check whether the pfit is attached to our pipe. */
2fa2fe9a
DV
6547 if (INTEL_INFO(dev)->gen < 4) {
6548 if (crtc->pipe != PIPE_B)
6549 return;
2fa2fe9a
DV
6550 } else {
6551 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6552 return;
6553 }
6554
06922821 6555 pipe_config->gmch_pfit.control = tmp;
2fa2fe9a
DV
6556 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6557 if (INTEL_INFO(dev)->gen < 5)
6558 pipe_config->gmch_pfit.lvds_border_bits =
6559 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6560}
6561
acbec814 6562static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 6563 struct intel_crtc_state *pipe_config)
acbec814
JB
6564{
6565 struct drm_device *dev = crtc->base.dev;
6566 struct drm_i915_private *dev_priv = dev->dev_private;
6567 int pipe = pipe_config->cpu_transcoder;
6568 intel_clock_t clock;
6569 u32 mdiv;
662c6ecb 6570 int refclk = 100000;
acbec814 6571
f573de5a
SK
6572 /* In case of MIPI DPLL will not even be used */
6573 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
6574 return;
6575
acbec814 6576 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 6577 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
acbec814
JB
6578 mutex_unlock(&dev_priv->dpio_lock);
6579
6580 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6581 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6582 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6583 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6584 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6585
f646628b 6586 vlv_clock(refclk, &clock);
acbec814 6587
f646628b
VS
6588 /* clock.dot is the fast clock */
6589 pipe_config->port_clock = clock.dot / 5;
acbec814
JB
6590}
6591
5724dbd1
DL
6592static void
6593i9xx_get_initial_plane_config(struct intel_crtc *crtc,
6594 struct intel_initial_plane_config *plane_config)
1ad292b5
JB
6595{
6596 struct drm_device *dev = crtc->base.dev;
6597 struct drm_i915_private *dev_priv = dev->dev_private;
6598 u32 val, base, offset;
6599 int pipe = crtc->pipe, plane = crtc->plane;
6600 int fourcc, pixel_format;
6601 int aligned_height;
b113d5ee 6602 struct drm_framebuffer *fb;
1b842c89 6603 struct intel_framebuffer *intel_fb;
1ad292b5 6604
d9806c9f 6605 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 6606 if (!intel_fb) {
1ad292b5
JB
6607 DRM_DEBUG_KMS("failed to alloc fb\n");
6608 return;
6609 }
6610
1b842c89
DL
6611 fb = &intel_fb->base;
6612
1ad292b5
JB
6613 val = I915_READ(DSPCNTR(plane));
6614
6615 if (INTEL_INFO(dev)->gen >= 4)
6616 if (val & DISPPLANE_TILED)
49af449b 6617 plane_config->tiling = I915_TILING_X;
1ad292b5
JB
6618
6619 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 6620 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
6621 fb->pixel_format = fourcc;
6622 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
1ad292b5
JB
6623
6624 if (INTEL_INFO(dev)->gen >= 4) {
49af449b 6625 if (plane_config->tiling)
1ad292b5
JB
6626 offset = I915_READ(DSPTILEOFF(plane));
6627 else
6628 offset = I915_READ(DSPLINOFF(plane));
6629 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6630 } else {
6631 base = I915_READ(DSPADDR(plane));
6632 }
6633 plane_config->base = base;
6634
6635 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
6636 fb->width = ((val >> 16) & 0xfff) + 1;
6637 fb->height = ((val >> 0) & 0xfff) + 1;
1ad292b5
JB
6638
6639 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 6640 fb->pitches[0] = val & 0xffffffc0;
1ad292b5 6641
b113d5ee 6642 aligned_height = intel_fb_align_height(dev, fb->height,
ec2c981e 6643 plane_config->tiling);
1ad292b5 6644
f37b5c2b 6645 plane_config->size = fb->pitches[0] * aligned_height;
1ad292b5 6646
2844a921
DL
6647 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
6648 pipe_name(pipe), plane, fb->width, fb->height,
6649 fb->bits_per_pixel, base, fb->pitches[0],
6650 plane_config->size);
1ad292b5 6651
b113d5ee 6652 crtc->base.primary->fb = fb;
1ad292b5
JB
6653}
6654
70b23a98 6655static void chv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 6656 struct intel_crtc_state *pipe_config)
70b23a98
VS
6657{
6658 struct drm_device *dev = crtc->base.dev;
6659 struct drm_i915_private *dev_priv = dev->dev_private;
6660 int pipe = pipe_config->cpu_transcoder;
6661 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6662 intel_clock_t clock;
6663 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6664 int refclk = 100000;
6665
6666 mutex_lock(&dev_priv->dpio_lock);
6667 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6668 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6669 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6670 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6671 mutex_unlock(&dev_priv->dpio_lock);
6672
6673 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6674 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6675 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6676 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6677 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6678
6679 chv_clock(refclk, &clock);
6680
6681 /* clock.dot is the fast clock */
6682 pipe_config->port_clock = clock.dot / 5;
6683}
6684
0e8ffe1b 6685static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
5cec258b 6686 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
6687{
6688 struct drm_device *dev = crtc->base.dev;
6689 struct drm_i915_private *dev_priv = dev->dev_private;
6690 uint32_t tmp;
6691
f458ebbc
DV
6692 if (!intel_display_power_is_enabled(dev_priv,
6693 POWER_DOMAIN_PIPE(crtc->pipe)))
b5482bd0
ID
6694 return false;
6695
e143a21c 6696 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 6697 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 6698
0e8ffe1b
DV
6699 tmp = I915_READ(PIPECONF(crtc->pipe));
6700 if (!(tmp & PIPECONF_ENABLE))
6701 return false;
6702
42571aef
VS
6703 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6704 switch (tmp & PIPECONF_BPC_MASK) {
6705 case PIPECONF_6BPC:
6706 pipe_config->pipe_bpp = 18;
6707 break;
6708 case PIPECONF_8BPC:
6709 pipe_config->pipe_bpp = 24;
6710 break;
6711 case PIPECONF_10BPC:
6712 pipe_config->pipe_bpp = 30;
6713 break;
6714 default:
6715 break;
6716 }
6717 }
6718
b5a9fa09
DV
6719 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6720 pipe_config->limited_color_range = true;
6721
282740f7
VS
6722 if (INTEL_INFO(dev)->gen < 4)
6723 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6724
1bd1bd80
DV
6725 intel_get_pipe_timings(crtc, pipe_config);
6726
2fa2fe9a
DV
6727 i9xx_get_pfit_config(crtc, pipe_config);
6728
6c49f241
DV
6729 if (INTEL_INFO(dev)->gen >= 4) {
6730 tmp = I915_READ(DPLL_MD(crtc->pipe));
6731 pipe_config->pixel_multiplier =
6732 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6733 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8bcc2795 6734 pipe_config->dpll_hw_state.dpll_md = tmp;
6c49f241
DV
6735 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6736 tmp = I915_READ(DPLL(crtc->pipe));
6737 pipe_config->pixel_multiplier =
6738 ((tmp & SDVO_MULTIPLIER_MASK)
6739 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6740 } else {
6741 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6742 * port and will be fixed up in the encoder->get_config
6743 * function. */
6744 pipe_config->pixel_multiplier = 1;
6745 }
8bcc2795
DV
6746 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6747 if (!IS_VALLEYVIEW(dev)) {
1c4e0274
VS
6748 /*
6749 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
6750 * on 830. Filter it out here so that we don't
6751 * report errors due to that.
6752 */
6753 if (IS_I830(dev))
6754 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
6755
8bcc2795
DV
6756 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6757 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
165e901c
VS
6758 } else {
6759 /* Mask out read-only status bits. */
6760 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6761 DPLL_PORTC_READY_MASK |
6762 DPLL_PORTB_READY_MASK);
8bcc2795 6763 }
6c49f241 6764
70b23a98
VS
6765 if (IS_CHERRYVIEW(dev))
6766 chv_crtc_clock_get(crtc, pipe_config);
6767 else if (IS_VALLEYVIEW(dev))
acbec814
JB
6768 vlv_crtc_clock_get(crtc, pipe_config);
6769 else
6770 i9xx_crtc_clock_get(crtc, pipe_config);
18442d08 6771
0e8ffe1b
DV
6772 return true;
6773}
6774
dde86e2d 6775static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67
JB
6776{
6777 struct drm_i915_private *dev_priv = dev->dev_private;
13d83a67 6778 struct intel_encoder *encoder;
74cfd7ac 6779 u32 val, final;
13d83a67 6780 bool has_lvds = false;
199e5d79 6781 bool has_cpu_edp = false;
199e5d79 6782 bool has_panel = false;
99eb6a01
KP
6783 bool has_ck505 = false;
6784 bool can_ssc = false;
13d83a67
JB
6785
6786 /* We need to take the global config into account */
b2784e15 6787 for_each_intel_encoder(dev, encoder) {
199e5d79
KP
6788 switch (encoder->type) {
6789 case INTEL_OUTPUT_LVDS:
6790 has_panel = true;
6791 has_lvds = true;
6792 break;
6793 case INTEL_OUTPUT_EDP:
6794 has_panel = true;
2de6905f 6795 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
6796 has_cpu_edp = true;
6797 break;
6847d71b
PZ
6798 default:
6799 break;
13d83a67
JB
6800 }
6801 }
6802
99eb6a01 6803 if (HAS_PCH_IBX(dev)) {
41aa3448 6804 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
6805 can_ssc = has_ck505;
6806 } else {
6807 has_ck505 = false;
6808 can_ssc = true;
6809 }
6810
2de6905f
ID
6811 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6812 has_panel, has_lvds, has_ck505);
13d83a67
JB
6813
6814 /* Ironlake: try to setup display ref clock before DPLL
6815 * enabling. This is only under driver's control after
6816 * PCH B stepping, previous chipset stepping should be
6817 * ignoring this setting.
6818 */
74cfd7ac
CW
6819 val = I915_READ(PCH_DREF_CONTROL);
6820
6821 /* As we must carefully and slowly disable/enable each source in turn,
6822 * compute the final state we want first and check if we need to
6823 * make any changes at all.
6824 */
6825 final = val;
6826 final &= ~DREF_NONSPREAD_SOURCE_MASK;
6827 if (has_ck505)
6828 final |= DREF_NONSPREAD_CK505_ENABLE;
6829 else
6830 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6831
6832 final &= ~DREF_SSC_SOURCE_MASK;
6833 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6834 final &= ~DREF_SSC1_ENABLE;
6835
6836 if (has_panel) {
6837 final |= DREF_SSC_SOURCE_ENABLE;
6838
6839 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6840 final |= DREF_SSC1_ENABLE;
6841
6842 if (has_cpu_edp) {
6843 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6844 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6845 else
6846 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6847 } else
6848 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6849 } else {
6850 final |= DREF_SSC_SOURCE_DISABLE;
6851 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6852 }
6853
6854 if (final == val)
6855 return;
6856
13d83a67 6857 /* Always enable nonspread source */
74cfd7ac 6858 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 6859
99eb6a01 6860 if (has_ck505)
74cfd7ac 6861 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 6862 else
74cfd7ac 6863 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 6864
199e5d79 6865 if (has_panel) {
74cfd7ac
CW
6866 val &= ~DREF_SSC_SOURCE_MASK;
6867 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 6868
199e5d79 6869 /* SSC must be turned on before enabling the CPU output */
99eb6a01 6870 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 6871 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 6872 val |= DREF_SSC1_ENABLE;
e77166b5 6873 } else
74cfd7ac 6874 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
6875
6876 /* Get SSC going before enabling the outputs */
74cfd7ac 6877 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6878 POSTING_READ(PCH_DREF_CONTROL);
6879 udelay(200);
6880
74cfd7ac 6881 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
6882
6883 /* Enable CPU source on CPU attached eDP */
199e5d79 6884 if (has_cpu_edp) {
99eb6a01 6885 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 6886 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 6887 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
eba905b2 6888 } else
74cfd7ac 6889 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 6890 } else
74cfd7ac 6891 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 6892
74cfd7ac 6893 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6894 POSTING_READ(PCH_DREF_CONTROL);
6895 udelay(200);
6896 } else {
6897 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6898
74cfd7ac 6899 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
6900
6901 /* Turn off CPU output */
74cfd7ac 6902 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 6903
74cfd7ac 6904 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6905 POSTING_READ(PCH_DREF_CONTROL);
6906 udelay(200);
6907
6908 /* Turn off the SSC source */
74cfd7ac
CW
6909 val &= ~DREF_SSC_SOURCE_MASK;
6910 val |= DREF_SSC_SOURCE_DISABLE;
199e5d79
KP
6911
6912 /* Turn off SSC1 */
74cfd7ac 6913 val &= ~DREF_SSC1_ENABLE;
199e5d79 6914
74cfd7ac 6915 I915_WRITE(PCH_DREF_CONTROL, val);
13d83a67
JB
6916 POSTING_READ(PCH_DREF_CONTROL);
6917 udelay(200);
6918 }
74cfd7ac
CW
6919
6920 BUG_ON(val != final);
13d83a67
JB
6921}
6922
f31f2d55 6923static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
dde86e2d 6924{
f31f2d55 6925 uint32_t tmp;
dde86e2d 6926
0ff066a9
PZ
6927 tmp = I915_READ(SOUTH_CHICKEN2);
6928 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6929 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 6930
0ff066a9
PZ
6931 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6932 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6933 DRM_ERROR("FDI mPHY reset assert timeout\n");
dde86e2d 6934
0ff066a9
PZ
6935 tmp = I915_READ(SOUTH_CHICKEN2);
6936 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6937 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 6938
0ff066a9
PZ
6939 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6940 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6941 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
f31f2d55
PZ
6942}
6943
6944/* WaMPhyProgramming:hsw */
6945static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6946{
6947 uint32_t tmp;
dde86e2d
PZ
6948
6949 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6950 tmp &= ~(0xFF << 24);
6951 tmp |= (0x12 << 24);
6952 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6953
dde86e2d
PZ
6954 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6955 tmp |= (1 << 11);
6956 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6957
6958 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6959 tmp |= (1 << 11);
6960 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6961
dde86e2d
PZ
6962 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6963 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6964 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6965
6966 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6967 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6968 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6969
0ff066a9
PZ
6970 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6971 tmp &= ~(7 << 13);
6972 tmp |= (5 << 13);
6973 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
dde86e2d 6974
0ff066a9
PZ
6975 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6976 tmp &= ~(7 << 13);
6977 tmp |= (5 << 13);
6978 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
dde86e2d
PZ
6979
6980 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6981 tmp &= ~0xFF;
6982 tmp |= 0x1C;
6983 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6984
6985 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6986 tmp &= ~0xFF;
6987 tmp |= 0x1C;
6988 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6989
6990 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6991 tmp &= ~(0xFF << 16);
6992 tmp |= (0x1C << 16);
6993 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6994
6995 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6996 tmp &= ~(0xFF << 16);
6997 tmp |= (0x1C << 16);
6998 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6999
0ff066a9
PZ
7000 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
7001 tmp |= (1 << 27);
7002 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
dde86e2d 7003
0ff066a9
PZ
7004 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
7005 tmp |= (1 << 27);
7006 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
dde86e2d 7007
0ff066a9
PZ
7008 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
7009 tmp &= ~(0xF << 28);
7010 tmp |= (4 << 28);
7011 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
dde86e2d 7012
0ff066a9
PZ
7013 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
7014 tmp &= ~(0xF << 28);
7015 tmp |= (4 << 28);
7016 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
f31f2d55
PZ
7017}
7018
2fa86a1f
PZ
7019/* Implements 3 different sequences from BSpec chapter "Display iCLK
7020 * Programming" based on the parameters passed:
7021 * - Sequence to enable CLKOUT_DP
7022 * - Sequence to enable CLKOUT_DP without spread
7023 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
7024 */
7025static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
7026 bool with_fdi)
f31f2d55
PZ
7027{
7028 struct drm_i915_private *dev_priv = dev->dev_private;
2fa86a1f
PZ
7029 uint32_t reg, tmp;
7030
7031 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
7032 with_spread = true;
7033 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
7034 with_fdi, "LP PCH doesn't have FDI\n"))
7035 with_fdi = false;
f31f2d55
PZ
7036
7037 mutex_lock(&dev_priv->dpio_lock);
7038
7039 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7040 tmp &= ~SBI_SSCCTL_DISABLE;
7041 tmp |= SBI_SSCCTL_PATHALT;
7042 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7043
7044 udelay(24);
7045
2fa86a1f
PZ
7046 if (with_spread) {
7047 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7048 tmp &= ~SBI_SSCCTL_PATHALT;
7049 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
f31f2d55 7050
2fa86a1f
PZ
7051 if (with_fdi) {
7052 lpt_reset_fdi_mphy(dev_priv);
7053 lpt_program_fdi_mphy(dev_priv);
7054 }
7055 }
dde86e2d 7056
2fa86a1f
PZ
7057 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7058 SBI_GEN0 : SBI_DBUFF0;
7059 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7060 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7061 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
c00db246
DV
7062
7063 mutex_unlock(&dev_priv->dpio_lock);
dde86e2d
PZ
7064}
7065
47701c3b
PZ
7066/* Sequence to disable CLKOUT_DP */
7067static void lpt_disable_clkout_dp(struct drm_device *dev)
7068{
7069 struct drm_i915_private *dev_priv = dev->dev_private;
7070 uint32_t reg, tmp;
7071
7072 mutex_lock(&dev_priv->dpio_lock);
7073
7074 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
7075 SBI_GEN0 : SBI_DBUFF0;
7076 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
7077 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
7078 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
7079
7080 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
7081 if (!(tmp & SBI_SSCCTL_DISABLE)) {
7082 if (!(tmp & SBI_SSCCTL_PATHALT)) {
7083 tmp |= SBI_SSCCTL_PATHALT;
7084 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7085 udelay(32);
7086 }
7087 tmp |= SBI_SSCCTL_DISABLE;
7088 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
7089 }
7090
7091 mutex_unlock(&dev_priv->dpio_lock);
7092}
7093
bf8fa3d3
PZ
7094static void lpt_init_pch_refclk(struct drm_device *dev)
7095{
bf8fa3d3
PZ
7096 struct intel_encoder *encoder;
7097 bool has_vga = false;
7098
b2784e15 7099 for_each_intel_encoder(dev, encoder) {
bf8fa3d3
PZ
7100 switch (encoder->type) {
7101 case INTEL_OUTPUT_ANALOG:
7102 has_vga = true;
7103 break;
6847d71b
PZ
7104 default:
7105 break;
bf8fa3d3
PZ
7106 }
7107 }
7108
47701c3b
PZ
7109 if (has_vga)
7110 lpt_enable_clkout_dp(dev, true, true);
7111 else
7112 lpt_disable_clkout_dp(dev);
bf8fa3d3
PZ
7113}
7114
dde86e2d
PZ
7115/*
7116 * Initialize reference clocks when the driver loads
7117 */
7118void intel_init_pch_refclk(struct drm_device *dev)
7119{
7120 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7121 ironlake_init_pch_refclk(dev);
7122 else if (HAS_PCH_LPT(dev))
7123 lpt_init_pch_refclk(dev);
7124}
7125
d9d444cb
JB
7126static int ironlake_get_refclk(struct drm_crtc *crtc)
7127{
7128 struct drm_device *dev = crtc->dev;
7129 struct drm_i915_private *dev_priv = dev->dev_private;
7130 struct intel_encoder *encoder;
d9d444cb
JB
7131 int num_connectors = 0;
7132 bool is_lvds = false;
7133
d0737e1d
ACO
7134 for_each_intel_encoder(dev, encoder) {
7135 if (encoder->new_crtc != to_intel_crtc(crtc))
7136 continue;
7137
d9d444cb
JB
7138 switch (encoder->type) {
7139 case INTEL_OUTPUT_LVDS:
7140 is_lvds = true;
7141 break;
6847d71b
PZ
7142 default:
7143 break;
d9d444cb
JB
7144 }
7145 num_connectors++;
7146 }
7147
7148 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b 7149 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
41aa3448 7150 dev_priv->vbt.lvds_ssc_freq);
e91e941b 7151 return dev_priv->vbt.lvds_ssc_freq;
d9d444cb
JB
7152 }
7153
7154 return 120000;
7155}
7156
6ff93609 7157static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 7158{
c8203565 7159 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
79e53945
JB
7160 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7161 int pipe = intel_crtc->pipe;
c8203565
PZ
7162 uint32_t val;
7163
78114071 7164 val = 0;
c8203565 7165
6e3c9717 7166 switch (intel_crtc->config->pipe_bpp) {
c8203565 7167 case 18:
dfd07d72 7168 val |= PIPECONF_6BPC;
c8203565
PZ
7169 break;
7170 case 24:
dfd07d72 7171 val |= PIPECONF_8BPC;
c8203565
PZ
7172 break;
7173 case 30:
dfd07d72 7174 val |= PIPECONF_10BPC;
c8203565
PZ
7175 break;
7176 case 36:
dfd07d72 7177 val |= PIPECONF_12BPC;
c8203565
PZ
7178 break;
7179 default:
cc769b62
PZ
7180 /* Case prevented by intel_choose_pipe_bpp_dither. */
7181 BUG();
c8203565
PZ
7182 }
7183
6e3c9717 7184 if (intel_crtc->config->dither)
c8203565
PZ
7185 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7186
6e3c9717 7187 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
7188 val |= PIPECONF_INTERLACED_ILK;
7189 else
7190 val |= PIPECONF_PROGRESSIVE;
7191
6e3c9717 7192 if (intel_crtc->config->limited_color_range)
3685a8f3 7193 val |= PIPECONF_COLOR_RANGE_SELECT;
3685a8f3 7194
c8203565
PZ
7195 I915_WRITE(PIPECONF(pipe), val);
7196 POSTING_READ(PIPECONF(pipe));
7197}
7198
86d3efce
VS
7199/*
7200 * Set up the pipe CSC unit.
7201 *
7202 * Currently only full range RGB to limited range RGB conversion
7203 * is supported, but eventually this should handle various
7204 * RGB<->YCbCr scenarios as well.
7205 */
50f3b016 7206static void intel_set_pipe_csc(struct drm_crtc *crtc)
86d3efce
VS
7207{
7208 struct drm_device *dev = crtc->dev;
7209 struct drm_i915_private *dev_priv = dev->dev_private;
7210 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7211 int pipe = intel_crtc->pipe;
7212 uint16_t coeff = 0x7800; /* 1.0 */
7213
7214 /*
7215 * TODO: Check what kind of values actually come out of the pipe
7216 * with these coeff/postoff values and adjust to get the best
7217 * accuracy. Perhaps we even need to take the bpc value into
7218 * consideration.
7219 */
7220
6e3c9717 7221 if (intel_crtc->config->limited_color_range)
86d3efce
VS
7222 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
7223
7224 /*
7225 * GY/GU and RY/RU should be the other way around according
7226 * to BSpec, but reality doesn't agree. Just set them up in
7227 * a way that results in the correct picture.
7228 */
7229 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
7230 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
7231
7232 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
7233 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
7234
7235 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
7236 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
7237
7238 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
7239 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
7240 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
7241
7242 if (INTEL_INFO(dev)->gen > 6) {
7243 uint16_t postoff = 0;
7244
6e3c9717 7245 if (intel_crtc->config->limited_color_range)
32cf0cb0 7246 postoff = (16 * (1 << 12) / 255) & 0x1fff;
86d3efce
VS
7247
7248 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
7249 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
7250 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
7251
7252 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
7253 } else {
7254 uint32_t mode = CSC_MODE_YUV_TO_RGB;
7255
6e3c9717 7256 if (intel_crtc->config->limited_color_range)
86d3efce
VS
7257 mode |= CSC_BLACK_SCREEN_OFFSET;
7258
7259 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
7260 }
7261}
7262
6ff93609 7263static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38 7264{
756f85cf
PZ
7265 struct drm_device *dev = crtc->dev;
7266 struct drm_i915_private *dev_priv = dev->dev_private;
ee2b0b38 7267 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
756f85cf 7268 enum pipe pipe = intel_crtc->pipe;
6e3c9717 7269 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee2b0b38
PZ
7270 uint32_t val;
7271
3eff4faa 7272 val = 0;
ee2b0b38 7273
6e3c9717 7274 if (IS_HASWELL(dev) && intel_crtc->config->dither)
ee2b0b38
PZ
7275 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
7276
6e3c9717 7277 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
7278 val |= PIPECONF_INTERLACED_ILK;
7279 else
7280 val |= PIPECONF_PROGRESSIVE;
7281
702e7a56
PZ
7282 I915_WRITE(PIPECONF(cpu_transcoder), val);
7283 POSTING_READ(PIPECONF(cpu_transcoder));
3eff4faa
DV
7284
7285 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
7286 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
756f85cf 7287
3cdf122c 7288 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
756f85cf
PZ
7289 val = 0;
7290
6e3c9717 7291 switch (intel_crtc->config->pipe_bpp) {
756f85cf
PZ
7292 case 18:
7293 val |= PIPEMISC_DITHER_6_BPC;
7294 break;
7295 case 24:
7296 val |= PIPEMISC_DITHER_8_BPC;
7297 break;
7298 case 30:
7299 val |= PIPEMISC_DITHER_10_BPC;
7300 break;
7301 case 36:
7302 val |= PIPEMISC_DITHER_12_BPC;
7303 break;
7304 default:
7305 /* Case prevented by pipe_config_set_bpp. */
7306 BUG();
7307 }
7308
6e3c9717 7309 if (intel_crtc->config->dither)
756f85cf
PZ
7310 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
7311
7312 I915_WRITE(PIPEMISC(pipe), val);
7313 }
ee2b0b38
PZ
7314}
7315
6591c6e4 7316static bool ironlake_compute_clocks(struct drm_crtc *crtc,
190f68c5 7317 struct intel_crtc_state *crtc_state,
6591c6e4
PZ
7318 intel_clock_t *clock,
7319 bool *has_reduced_clock,
7320 intel_clock_t *reduced_clock)
7321{
7322 struct drm_device *dev = crtc->dev;
7323 struct drm_i915_private *dev_priv = dev->dev_private;
a919ff14 7324 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6591c6e4 7325 int refclk;
d4906093 7326 const intel_limit_t *limit;
a16af721 7327 bool ret, is_lvds = false;
79e53945 7328
d0737e1d 7329 is_lvds = intel_pipe_will_have_type(intel_crtc, INTEL_OUTPUT_LVDS);
79e53945 7330
d9d444cb 7331 refclk = ironlake_get_refclk(crtc);
79e53945 7332
d4906093
ML
7333 /*
7334 * Returns a set of divisors for the desired target clock with the given
7335 * refclk, or FALSE. The returned values represent the clock equation:
7336 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
7337 */
409ee761 7338 limit = intel_limit(intel_crtc, refclk);
a919ff14 7339 ret = dev_priv->display.find_dpll(limit, intel_crtc,
190f68c5 7340 crtc_state->port_clock,
ee9300bb 7341 refclk, NULL, clock);
6591c6e4
PZ
7342 if (!ret)
7343 return false;
cda4b7d3 7344
ddc9003c 7345 if (is_lvds && dev_priv->lvds_downclock_avail) {
cec2f356
SP
7346 /*
7347 * Ensure we match the reduced clock's P to the target clock.
7348 * If the clocks don't match, we can't switch the display clock
7349 * by using the FP0/FP1. In such case we will disable the LVDS
7350 * downclock feature.
7351 */
ee9300bb 7352 *has_reduced_clock =
a919ff14 7353 dev_priv->display.find_dpll(limit, intel_crtc,
ee9300bb
DV
7354 dev_priv->lvds_downclock,
7355 refclk, clock,
7356 reduced_clock);
652c393a 7357 }
61e9653f 7358
6591c6e4
PZ
7359 return true;
7360}
7361
d4b1931c
PZ
7362int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
7363{
7364 /*
7365 * Account for spread spectrum to avoid
7366 * oversubscribing the link. Max center spread
7367 * is 2.5%; use 5% for safety's sake.
7368 */
7369 u32 bps = target_clock * bpp * 21 / 20;
619d4d04 7370 return DIV_ROUND_UP(bps, link_bw * 8);
d4b1931c
PZ
7371}
7372
7429e9d4 7373static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
6cf86a5e 7374{
7429e9d4 7375 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
f48d8f23
PZ
7376}
7377
de13a2e3 7378static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
190f68c5 7379 struct intel_crtc_state *crtc_state,
7429e9d4 7380 u32 *fp,
9a7c7890 7381 intel_clock_t *reduced_clock, u32 *fp2)
79e53945 7382{
de13a2e3 7383 struct drm_crtc *crtc = &intel_crtc->base;
79e53945
JB
7384 struct drm_device *dev = crtc->dev;
7385 struct drm_i915_private *dev_priv = dev->dev_private;
de13a2e3
PZ
7386 struct intel_encoder *intel_encoder;
7387 uint32_t dpll;
6cc5f341 7388 int factor, num_connectors = 0;
09ede541 7389 bool is_lvds = false, is_sdvo = false;
79e53945 7390
d0737e1d
ACO
7391 for_each_intel_encoder(dev, intel_encoder) {
7392 if (intel_encoder->new_crtc != to_intel_crtc(crtc))
7393 continue;
7394
de13a2e3 7395 switch (intel_encoder->type) {
79e53945
JB
7396 case INTEL_OUTPUT_LVDS:
7397 is_lvds = true;
7398 break;
7399 case INTEL_OUTPUT_SDVO:
7d57382e 7400 case INTEL_OUTPUT_HDMI:
79e53945 7401 is_sdvo = true;
79e53945 7402 break;
6847d71b
PZ
7403 default:
7404 break;
79e53945 7405 }
43565a06 7406
c751ce4f 7407 num_connectors++;
79e53945 7408 }
79e53945 7409
c1858123 7410 /* Enable autotuning of the PLL clock (if permissible) */
8febb297
EA
7411 factor = 21;
7412 if (is_lvds) {
7413 if ((intel_panel_use_ssc(dev_priv) &&
e91e941b 7414 dev_priv->vbt.lvds_ssc_freq == 100000) ||
f0b44056 7415 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
8febb297 7416 factor = 25;
190f68c5 7417 } else if (crtc_state->sdvo_tv_clock)
8febb297 7418 factor = 20;
c1858123 7419
190f68c5 7420 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
7d0ac5b7 7421 *fp |= FP_CB_TUNE;
2c07245f 7422
9a7c7890
DV
7423 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
7424 *fp2 |= FP_CB_TUNE;
7425
5eddb70b 7426 dpll = 0;
2c07245f 7427
a07d6787
EA
7428 if (is_lvds)
7429 dpll |= DPLLB_MODE_LVDS;
7430 else
7431 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 7432
190f68c5 7433 dpll |= (crtc_state->pixel_multiplier - 1)
ef1b460d 7434 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f
DV
7435
7436 if (is_sdvo)
4a33e48d 7437 dpll |= DPLL_SDVO_HIGH_SPEED;
190f68c5 7438 if (crtc_state->has_dp_encoder)
4a33e48d 7439 dpll |= DPLL_SDVO_HIGH_SPEED;
79e53945 7440
a07d6787 7441 /* compute bitmask from p1 value */
190f68c5 7442 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 7443 /* also FPA1 */
190f68c5 7444 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 7445
190f68c5 7446 switch (crtc_state->dpll.p2) {
a07d6787
EA
7447 case 5:
7448 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7449 break;
7450 case 7:
7451 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7452 break;
7453 case 10:
7454 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7455 break;
7456 case 14:
7457 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7458 break;
79e53945
JB
7459 }
7460
b4c09f3b 7461 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
43565a06 7462 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
7463 else
7464 dpll |= PLL_REF_INPUT_DREFCLK;
7465
959e16d6 7466 return dpll | DPLL_VCO_ENABLE;
de13a2e3
PZ
7467}
7468
190f68c5
ACO
7469static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
7470 struct intel_crtc_state *crtc_state)
de13a2e3 7471{
c7653199 7472 struct drm_device *dev = crtc->base.dev;
de13a2e3 7473 intel_clock_t clock, reduced_clock;
cbbab5bd 7474 u32 dpll = 0, fp = 0, fp2 = 0;
e2f12b07 7475 bool ok, has_reduced_clock = false;
8b47047b 7476 bool is_lvds = false;
e2b78267 7477 struct intel_shared_dpll *pll;
de13a2e3 7478
409ee761 7479 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
79e53945 7480
5dc5298b
PZ
7481 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
7482 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
a07d6787 7483
190f68c5 7484 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
de13a2e3 7485 &has_reduced_clock, &reduced_clock);
190f68c5 7486 if (!ok && !crtc_state->clock_set) {
de13a2e3
PZ
7487 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7488 return -EINVAL;
79e53945 7489 }
f47709a9 7490 /* Compat-code for transition, will disappear. */
190f68c5
ACO
7491 if (!crtc_state->clock_set) {
7492 crtc_state->dpll.n = clock.n;
7493 crtc_state->dpll.m1 = clock.m1;
7494 crtc_state->dpll.m2 = clock.m2;
7495 crtc_state->dpll.p1 = clock.p1;
7496 crtc_state->dpll.p2 = clock.p2;
f47709a9 7497 }
79e53945 7498
5dc5298b 7499 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
190f68c5
ACO
7500 if (crtc_state->has_pch_encoder) {
7501 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
cbbab5bd 7502 if (has_reduced_clock)
7429e9d4 7503 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
cbbab5bd 7504
190f68c5 7505 dpll = ironlake_compute_dpll(crtc, crtc_state,
cbbab5bd
DV
7506 &fp, &reduced_clock,
7507 has_reduced_clock ? &fp2 : NULL);
7508
190f68c5
ACO
7509 crtc_state->dpll_hw_state.dpll = dpll;
7510 crtc_state->dpll_hw_state.fp0 = fp;
66e985c0 7511 if (has_reduced_clock)
190f68c5 7512 crtc_state->dpll_hw_state.fp1 = fp2;
66e985c0 7513 else
190f68c5 7514 crtc_state->dpll_hw_state.fp1 = fp;
66e985c0 7515
190f68c5 7516 pll = intel_get_shared_dpll(crtc, crtc_state);
ee7b9f93 7517 if (pll == NULL) {
84f44ce7 7518 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
c7653199 7519 pipe_name(crtc->pipe));
4b645f14
JB
7520 return -EINVAL;
7521 }
3fb37703 7522 }
79e53945 7523
d330a953 7524 if (is_lvds && has_reduced_clock && i915.powersave)
c7653199 7525 crtc->lowfreq_avail = true;
bcd644e0 7526 else
c7653199 7527 crtc->lowfreq_avail = false;
e2b78267 7528
c8f7a0db 7529 return 0;
79e53945
JB
7530}
7531
eb14cb74
VS
7532static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7533 struct intel_link_m_n *m_n)
7534{
7535 struct drm_device *dev = crtc->base.dev;
7536 struct drm_i915_private *dev_priv = dev->dev_private;
7537 enum pipe pipe = crtc->pipe;
7538
7539 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7540 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7541 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7542 & ~TU_SIZE_MASK;
7543 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7544 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7545 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7546}
7547
7548static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7549 enum transcoder transcoder,
b95af8be
VK
7550 struct intel_link_m_n *m_n,
7551 struct intel_link_m_n *m2_n2)
72419203
DV
7552{
7553 struct drm_device *dev = crtc->base.dev;
7554 struct drm_i915_private *dev_priv = dev->dev_private;
eb14cb74 7555 enum pipe pipe = crtc->pipe;
72419203 7556
eb14cb74
VS
7557 if (INTEL_INFO(dev)->gen >= 5) {
7558 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7559 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7560 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7561 & ~TU_SIZE_MASK;
7562 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7563 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7564 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
b95af8be
VK
7565 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
7566 * gen < 8) and if DRRS is supported (to make sure the
7567 * registers are not unnecessarily read).
7568 */
7569 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
6e3c9717 7570 crtc->config->has_drrs) {
b95af8be
VK
7571 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
7572 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
7573 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
7574 & ~TU_SIZE_MASK;
7575 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
7576 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
7577 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7578 }
eb14cb74
VS
7579 } else {
7580 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7581 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7582 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7583 & ~TU_SIZE_MASK;
7584 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7585 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7586 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7587 }
7588}
7589
7590void intel_dp_get_m_n(struct intel_crtc *crtc,
5cec258b 7591 struct intel_crtc_state *pipe_config)
eb14cb74 7592{
681a8504 7593 if (pipe_config->has_pch_encoder)
eb14cb74
VS
7594 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7595 else
7596 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be
VK
7597 &pipe_config->dp_m_n,
7598 &pipe_config->dp_m2_n2);
eb14cb74 7599}
72419203 7600
eb14cb74 7601static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
5cec258b 7602 struct intel_crtc_state *pipe_config)
eb14cb74
VS
7603{
7604 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be 7605 &pipe_config->fdi_m_n, NULL);
72419203
DV
7606}
7607
bd2e244f 7608static void skylake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 7609 struct intel_crtc_state *pipe_config)
bd2e244f
JB
7610{
7611 struct drm_device *dev = crtc->base.dev;
7612 struct drm_i915_private *dev_priv = dev->dev_private;
7613 uint32_t tmp;
7614
7615 tmp = I915_READ(PS_CTL(crtc->pipe));
7616
7617 if (tmp & PS_ENABLE) {
7618 pipe_config->pch_pfit.enabled = true;
7619 pipe_config->pch_pfit.pos = I915_READ(PS_WIN_POS(crtc->pipe));
7620 pipe_config->pch_pfit.size = I915_READ(PS_WIN_SZ(crtc->pipe));
7621 }
7622}
7623
5724dbd1
DL
7624static void
7625skylake_get_initial_plane_config(struct intel_crtc *crtc,
7626 struct intel_initial_plane_config *plane_config)
bc8d7dff
DL
7627{
7628 struct drm_device *dev = crtc->base.dev;
7629 struct drm_i915_private *dev_priv = dev->dev_private;
7630 u32 val, base, offset, stride_mult;
7631 int pipe = crtc->pipe;
7632 int fourcc, pixel_format;
7633 int aligned_height;
7634 struct drm_framebuffer *fb;
1b842c89 7635 struct intel_framebuffer *intel_fb;
bc8d7dff 7636
d9806c9f 7637 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 7638 if (!intel_fb) {
bc8d7dff
DL
7639 DRM_DEBUG_KMS("failed to alloc fb\n");
7640 return;
7641 }
7642
1b842c89
DL
7643 fb = &intel_fb->base;
7644
bc8d7dff
DL
7645 val = I915_READ(PLANE_CTL(pipe, 0));
7646 if (val & PLANE_CTL_TILED_MASK)
7647 plane_config->tiling = I915_TILING_X;
7648
7649 pixel_format = val & PLANE_CTL_FORMAT_MASK;
7650 fourcc = skl_format_to_fourcc(pixel_format,
7651 val & PLANE_CTL_ORDER_RGBX,
7652 val & PLANE_CTL_ALPHA_MASK);
7653 fb->pixel_format = fourcc;
7654 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
7655
7656 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
7657 plane_config->base = base;
7658
7659 offset = I915_READ(PLANE_OFFSET(pipe, 0));
7660
7661 val = I915_READ(PLANE_SIZE(pipe, 0));
7662 fb->height = ((val >> 16) & 0xfff) + 1;
7663 fb->width = ((val >> 0) & 0x1fff) + 1;
7664
7665 val = I915_READ(PLANE_STRIDE(pipe, 0));
7666 switch (plane_config->tiling) {
7667 case I915_TILING_NONE:
7668 stride_mult = 64;
7669 break;
7670 case I915_TILING_X:
7671 stride_mult = 512;
7672 break;
7673 default:
7674 MISSING_CASE(plane_config->tiling);
7675 goto error;
7676 }
7677 fb->pitches[0] = (val & 0x3ff) * stride_mult;
7678
7679 aligned_height = intel_fb_align_height(dev, fb->height,
7680 plane_config->tiling);
7681
f37b5c2b 7682 plane_config->size = fb->pitches[0] * aligned_height;
bc8d7dff
DL
7683
7684 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7685 pipe_name(pipe), fb->width, fb->height,
7686 fb->bits_per_pixel, base, fb->pitches[0],
7687 plane_config->size);
7688
7689 crtc->base.primary->fb = fb;
7690 return;
7691
7692error:
7693 kfree(fb);
7694}
7695
2fa2fe9a 7696static void ironlake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 7697 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
7698{
7699 struct drm_device *dev = crtc->base.dev;
7700 struct drm_i915_private *dev_priv = dev->dev_private;
7701 uint32_t tmp;
7702
7703 tmp = I915_READ(PF_CTL(crtc->pipe));
7704
7705 if (tmp & PF_ENABLE) {
fd4daa9c 7706 pipe_config->pch_pfit.enabled = true;
2fa2fe9a
DV
7707 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7708 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
7709
7710 /* We currently do not free assignements of panel fitters on
7711 * ivb/hsw (since we don't use the higher upscaling modes which
7712 * differentiates them) so just WARN about this case for now. */
7713 if (IS_GEN7(dev)) {
7714 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7715 PF_PIPE_SEL_IVB(crtc->pipe));
7716 }
2fa2fe9a 7717 }
79e53945
JB
7718}
7719
5724dbd1
DL
7720static void
7721ironlake_get_initial_plane_config(struct intel_crtc *crtc,
7722 struct intel_initial_plane_config *plane_config)
4c6baa59
JB
7723{
7724 struct drm_device *dev = crtc->base.dev;
7725 struct drm_i915_private *dev_priv = dev->dev_private;
7726 u32 val, base, offset;
aeee5a49 7727 int pipe = crtc->pipe;
4c6baa59
JB
7728 int fourcc, pixel_format;
7729 int aligned_height;
b113d5ee 7730 struct drm_framebuffer *fb;
1b842c89 7731 struct intel_framebuffer *intel_fb;
4c6baa59 7732
d9806c9f 7733 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 7734 if (!intel_fb) {
4c6baa59
JB
7735 DRM_DEBUG_KMS("failed to alloc fb\n");
7736 return;
7737 }
7738
1b842c89
DL
7739 fb = &intel_fb->base;
7740
aeee5a49 7741 val = I915_READ(DSPCNTR(pipe));
4c6baa59
JB
7742
7743 if (INTEL_INFO(dev)->gen >= 4)
7744 if (val & DISPPLANE_TILED)
49af449b 7745 plane_config->tiling = I915_TILING_X;
4c6baa59
JB
7746
7747 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 7748 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
7749 fb->pixel_format = fourcc;
7750 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
4c6baa59 7751
aeee5a49 7752 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
4c6baa59 7753 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
aeee5a49 7754 offset = I915_READ(DSPOFFSET(pipe));
4c6baa59 7755 } else {
49af449b 7756 if (plane_config->tiling)
aeee5a49 7757 offset = I915_READ(DSPTILEOFF(pipe));
4c6baa59 7758 else
aeee5a49 7759 offset = I915_READ(DSPLINOFF(pipe));
4c6baa59
JB
7760 }
7761 plane_config->base = base;
7762
7763 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
7764 fb->width = ((val >> 16) & 0xfff) + 1;
7765 fb->height = ((val >> 0) & 0xfff) + 1;
4c6baa59
JB
7766
7767 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 7768 fb->pitches[0] = val & 0xffffffc0;
4c6baa59 7769
b113d5ee 7770 aligned_height = intel_fb_align_height(dev, fb->height,
ec2c981e 7771 plane_config->tiling);
4c6baa59 7772
f37b5c2b 7773 plane_config->size = fb->pitches[0] * aligned_height;
4c6baa59 7774
2844a921
DL
7775 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7776 pipe_name(pipe), fb->width, fb->height,
7777 fb->bits_per_pixel, base, fb->pitches[0],
7778 plane_config->size);
b113d5ee
DL
7779
7780 crtc->base.primary->fb = fb;
4c6baa59
JB
7781}
7782
0e8ffe1b 7783static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
5cec258b 7784 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
7785{
7786 struct drm_device *dev = crtc->base.dev;
7787 struct drm_i915_private *dev_priv = dev->dev_private;
7788 uint32_t tmp;
7789
f458ebbc
DV
7790 if (!intel_display_power_is_enabled(dev_priv,
7791 POWER_DOMAIN_PIPE(crtc->pipe)))
930e8c9e
PZ
7792 return false;
7793
e143a21c 7794 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 7795 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 7796
0e8ffe1b
DV
7797 tmp = I915_READ(PIPECONF(crtc->pipe));
7798 if (!(tmp & PIPECONF_ENABLE))
7799 return false;
7800
42571aef
VS
7801 switch (tmp & PIPECONF_BPC_MASK) {
7802 case PIPECONF_6BPC:
7803 pipe_config->pipe_bpp = 18;
7804 break;
7805 case PIPECONF_8BPC:
7806 pipe_config->pipe_bpp = 24;
7807 break;
7808 case PIPECONF_10BPC:
7809 pipe_config->pipe_bpp = 30;
7810 break;
7811 case PIPECONF_12BPC:
7812 pipe_config->pipe_bpp = 36;
7813 break;
7814 default:
7815 break;
7816 }
7817
b5a9fa09
DV
7818 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7819 pipe_config->limited_color_range = true;
7820
ab9412ba 7821 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
66e985c0
DV
7822 struct intel_shared_dpll *pll;
7823
88adfff1
DV
7824 pipe_config->has_pch_encoder = true;
7825
627eb5a3
DV
7826 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7827 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7828 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
7829
7830 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241 7831
c0d43d62 7832 if (HAS_PCH_IBX(dev_priv->dev)) {
d94ab068
DV
7833 pipe_config->shared_dpll =
7834 (enum intel_dpll_id) crtc->pipe;
c0d43d62
DV
7835 } else {
7836 tmp = I915_READ(PCH_DPLL_SEL);
7837 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7838 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7839 else
7840 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7841 }
66e985c0
DV
7842
7843 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7844
7845 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7846 &pipe_config->dpll_hw_state));
c93f54cf
DV
7847
7848 tmp = pipe_config->dpll_hw_state.dpll;
7849 pipe_config->pixel_multiplier =
7850 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7851 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
18442d08
VS
7852
7853 ironlake_pch_clock_get(crtc, pipe_config);
6c49f241
DV
7854 } else {
7855 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
7856 }
7857
1bd1bd80
DV
7858 intel_get_pipe_timings(crtc, pipe_config);
7859
2fa2fe9a
DV
7860 ironlake_get_pfit_config(crtc, pipe_config);
7861
0e8ffe1b
DV
7862 return true;
7863}
7864
be256dc7
PZ
7865static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7866{
7867 struct drm_device *dev = dev_priv->dev;
be256dc7 7868 struct intel_crtc *crtc;
be256dc7 7869
d3fcc808 7870 for_each_intel_crtc(dev, crtc)
e2c719b7 7871 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
be256dc7
PZ
7872 pipe_name(crtc->pipe));
7873
e2c719b7
RC
7874 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7875 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
7876 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
7877 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
7878 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7879 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
be256dc7 7880 "CPU PWM1 enabled\n");
c5107b87 7881 if (IS_HASWELL(dev))
e2c719b7 7882 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
c5107b87 7883 "CPU PWM2 enabled\n");
e2c719b7 7884 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
be256dc7 7885 "PCH PWM1 enabled\n");
e2c719b7 7886 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
be256dc7 7887 "Utility pin enabled\n");
e2c719b7 7888 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
be256dc7 7889
9926ada1
PZ
7890 /*
7891 * In theory we can still leave IRQs enabled, as long as only the HPD
7892 * interrupts remain enabled. We used to check for that, but since it's
7893 * gen-specific and since we only disable LCPLL after we fully disable
7894 * the interrupts, the check below should be enough.
7895 */
e2c719b7 7896 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
be256dc7
PZ
7897}
7898
9ccd5aeb
PZ
7899static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
7900{
7901 struct drm_device *dev = dev_priv->dev;
7902
7903 if (IS_HASWELL(dev))
7904 return I915_READ(D_COMP_HSW);
7905 else
7906 return I915_READ(D_COMP_BDW);
7907}
7908
3c4c9b81
PZ
7909static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7910{
7911 struct drm_device *dev = dev_priv->dev;
7912
7913 if (IS_HASWELL(dev)) {
7914 mutex_lock(&dev_priv->rps.hw_lock);
7915 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7916 val))
f475dadf 7917 DRM_ERROR("Failed to write to D_COMP\n");
3c4c9b81
PZ
7918 mutex_unlock(&dev_priv->rps.hw_lock);
7919 } else {
9ccd5aeb
PZ
7920 I915_WRITE(D_COMP_BDW, val);
7921 POSTING_READ(D_COMP_BDW);
3c4c9b81 7922 }
be256dc7
PZ
7923}
7924
7925/*
7926 * This function implements pieces of two sequences from BSpec:
7927 * - Sequence for display software to disable LCPLL
7928 * - Sequence for display software to allow package C8+
7929 * The steps implemented here are just the steps that actually touch the LCPLL
7930 * register. Callers should take care of disabling all the display engine
7931 * functions, doing the mode unset, fixing interrupts, etc.
7932 */
6ff58d53
PZ
7933static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7934 bool switch_to_fclk, bool allow_power_down)
be256dc7
PZ
7935{
7936 uint32_t val;
7937
7938 assert_can_disable_lcpll(dev_priv);
7939
7940 val = I915_READ(LCPLL_CTL);
7941
7942 if (switch_to_fclk) {
7943 val |= LCPLL_CD_SOURCE_FCLK;
7944 I915_WRITE(LCPLL_CTL, val);
7945
7946 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7947 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7948 DRM_ERROR("Switching to FCLK failed\n");
7949
7950 val = I915_READ(LCPLL_CTL);
7951 }
7952
7953 val |= LCPLL_PLL_DISABLE;
7954 I915_WRITE(LCPLL_CTL, val);
7955 POSTING_READ(LCPLL_CTL);
7956
7957 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7958 DRM_ERROR("LCPLL still locked\n");
7959
9ccd5aeb 7960 val = hsw_read_dcomp(dev_priv);
be256dc7 7961 val |= D_COMP_COMP_DISABLE;
3c4c9b81 7962 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
7963 ndelay(100);
7964
9ccd5aeb
PZ
7965 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
7966 1))
be256dc7
PZ
7967 DRM_ERROR("D_COMP RCOMP still in progress\n");
7968
7969 if (allow_power_down) {
7970 val = I915_READ(LCPLL_CTL);
7971 val |= LCPLL_POWER_DOWN_ALLOW;
7972 I915_WRITE(LCPLL_CTL, val);
7973 POSTING_READ(LCPLL_CTL);
7974 }
7975}
7976
7977/*
7978 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7979 * source.
7980 */
6ff58d53 7981static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
be256dc7
PZ
7982{
7983 uint32_t val;
7984
7985 val = I915_READ(LCPLL_CTL);
7986
7987 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7988 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7989 return;
7990
a8a8bd54
PZ
7991 /*
7992 * Make sure we're not on PC8 state before disabling PC8, otherwise
7993 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
a8a8bd54 7994 */
59bad947 7995 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
215733fa 7996
be256dc7
PZ
7997 if (val & LCPLL_POWER_DOWN_ALLOW) {
7998 val &= ~LCPLL_POWER_DOWN_ALLOW;
7999 I915_WRITE(LCPLL_CTL, val);
35d8f2eb 8000 POSTING_READ(LCPLL_CTL);
be256dc7
PZ
8001 }
8002
9ccd5aeb 8003 val = hsw_read_dcomp(dev_priv);
be256dc7
PZ
8004 val |= D_COMP_COMP_FORCE;
8005 val &= ~D_COMP_COMP_DISABLE;
3c4c9b81 8006 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
8007
8008 val = I915_READ(LCPLL_CTL);
8009 val &= ~LCPLL_PLL_DISABLE;
8010 I915_WRITE(LCPLL_CTL, val);
8011
8012 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
8013 DRM_ERROR("LCPLL not locked yet\n");
8014
8015 if (val & LCPLL_CD_SOURCE_FCLK) {
8016 val = I915_READ(LCPLL_CTL);
8017 val &= ~LCPLL_CD_SOURCE_FCLK;
8018 I915_WRITE(LCPLL_CTL, val);
8019
8020 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
8021 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
8022 DRM_ERROR("Switching back to LCPLL failed\n");
8023 }
215733fa 8024
59bad947 8025 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
be256dc7
PZ
8026}
8027
765dab67
PZ
8028/*
8029 * Package states C8 and deeper are really deep PC states that can only be
8030 * reached when all the devices on the system allow it, so even if the graphics
8031 * device allows PC8+, it doesn't mean the system will actually get to these
8032 * states. Our driver only allows PC8+ when going into runtime PM.
8033 *
8034 * The requirements for PC8+ are that all the outputs are disabled, the power
8035 * well is disabled and most interrupts are disabled, and these are also
8036 * requirements for runtime PM. When these conditions are met, we manually do
8037 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
8038 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
8039 * hang the machine.
8040 *
8041 * When we really reach PC8 or deeper states (not just when we allow it) we lose
8042 * the state of some registers, so when we come back from PC8+ we need to
8043 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
8044 * need to take care of the registers kept by RC6. Notice that this happens even
8045 * if we don't put the device in PCI D3 state (which is what currently happens
8046 * because of the runtime PM support).
8047 *
8048 * For more, read "Display Sequences for Package C8" on the hardware
8049 * documentation.
8050 */
a14cb6fc 8051void hsw_enable_pc8(struct drm_i915_private *dev_priv)
c67a470b 8052{
c67a470b
PZ
8053 struct drm_device *dev = dev_priv->dev;
8054 uint32_t val;
8055
c67a470b
PZ
8056 DRM_DEBUG_KMS("Enabling package C8+\n");
8057
c67a470b
PZ
8058 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8059 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8060 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8061 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8062 }
8063
8064 lpt_disable_clkout_dp(dev);
c67a470b
PZ
8065 hsw_disable_lcpll(dev_priv, true, true);
8066}
8067
a14cb6fc 8068void hsw_disable_pc8(struct drm_i915_private *dev_priv)
c67a470b
PZ
8069{
8070 struct drm_device *dev = dev_priv->dev;
8071 uint32_t val;
8072
c67a470b
PZ
8073 DRM_DEBUG_KMS("Disabling package C8+\n");
8074
8075 hsw_restore_lcpll(dev_priv);
c67a470b
PZ
8076 lpt_init_pch_refclk(dev);
8077
8078 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
8079 val = I915_READ(SOUTH_DSPCLK_GATE_D);
8080 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
8081 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8082 }
8083
8084 intel_prepare_ddi(dev);
c67a470b
PZ
8085}
8086
190f68c5
ACO
8087static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
8088 struct intel_crtc_state *crtc_state)
09b4ddf9 8089{
190f68c5 8090 if (!intel_ddi_pll_select(crtc, crtc_state))
6441ab5f 8091 return -EINVAL;
716c2e55 8092
c7653199 8093 crtc->lowfreq_avail = false;
644cef34 8094
c8f7a0db 8095 return 0;
79e53945
JB
8096}
8097
96b7dfb7
S
8098static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
8099 enum port port,
5cec258b 8100 struct intel_crtc_state *pipe_config)
96b7dfb7 8101{
3148ade7 8102 u32 temp, dpll_ctl1;
96b7dfb7
S
8103
8104 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
8105 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
8106
8107 switch (pipe_config->ddi_pll_sel) {
3148ade7
DL
8108 case SKL_DPLL0:
8109 /*
8110 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
8111 * of the shared DPLL framework and thus needs to be read out
8112 * separately
8113 */
8114 dpll_ctl1 = I915_READ(DPLL_CTRL1);
8115 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
8116 break;
96b7dfb7
S
8117 case SKL_DPLL1:
8118 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
8119 break;
8120 case SKL_DPLL2:
8121 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
8122 break;
8123 case SKL_DPLL3:
8124 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
8125 break;
96b7dfb7
S
8126 }
8127}
8128
7d2c8175
DL
8129static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
8130 enum port port,
5cec258b 8131 struct intel_crtc_state *pipe_config)
7d2c8175
DL
8132{
8133 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
8134
8135 switch (pipe_config->ddi_pll_sel) {
8136 case PORT_CLK_SEL_WRPLL1:
8137 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
8138 break;
8139 case PORT_CLK_SEL_WRPLL2:
8140 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
8141 break;
8142 }
8143}
8144
26804afd 8145static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
5cec258b 8146 struct intel_crtc_state *pipe_config)
26804afd
DV
8147{
8148 struct drm_device *dev = crtc->base.dev;
8149 struct drm_i915_private *dev_priv = dev->dev_private;
d452c5b6 8150 struct intel_shared_dpll *pll;
26804afd
DV
8151 enum port port;
8152 uint32_t tmp;
8153
8154 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
8155
8156 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
8157
96b7dfb7
S
8158 if (IS_SKYLAKE(dev))
8159 skylake_get_ddi_pll(dev_priv, port, pipe_config);
8160 else
8161 haswell_get_ddi_pll(dev_priv, port, pipe_config);
9cd86933 8162
d452c5b6
DV
8163 if (pipe_config->shared_dpll >= 0) {
8164 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
8165
8166 WARN_ON(!pll->get_hw_state(dev_priv, pll,
8167 &pipe_config->dpll_hw_state));
8168 }
8169
26804afd
DV
8170 /*
8171 * Haswell has only FDI/PCH transcoder A. It is which is connected to
8172 * DDI E. So just check whether this pipe is wired to DDI E and whether
8173 * the PCH transcoder is on.
8174 */
ca370455
DL
8175 if (INTEL_INFO(dev)->gen < 9 &&
8176 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
26804afd
DV
8177 pipe_config->has_pch_encoder = true;
8178
8179 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
8180 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
8181 FDI_DP_PORT_WIDTH_SHIFT) + 1;
8182
8183 ironlake_get_fdi_m_n_config(crtc, pipe_config);
8184 }
8185}
8186
0e8ffe1b 8187static bool haswell_get_pipe_config(struct intel_crtc *crtc,
5cec258b 8188 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
8189{
8190 struct drm_device *dev = crtc->base.dev;
8191 struct drm_i915_private *dev_priv = dev->dev_private;
2fa2fe9a 8192 enum intel_display_power_domain pfit_domain;
0e8ffe1b
DV
8193 uint32_t tmp;
8194
f458ebbc 8195 if (!intel_display_power_is_enabled(dev_priv,
b5482bd0
ID
8196 POWER_DOMAIN_PIPE(crtc->pipe)))
8197 return false;
8198
e143a21c 8199 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62
DV
8200 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
8201
eccb140b
DV
8202 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
8203 if (tmp & TRANS_DDI_FUNC_ENABLE) {
8204 enum pipe trans_edp_pipe;
8205 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
8206 default:
8207 WARN(1, "unknown pipe linked to edp transcoder\n");
8208 case TRANS_DDI_EDP_INPUT_A_ONOFF:
8209 case TRANS_DDI_EDP_INPUT_A_ON:
8210 trans_edp_pipe = PIPE_A;
8211 break;
8212 case TRANS_DDI_EDP_INPUT_B_ONOFF:
8213 trans_edp_pipe = PIPE_B;
8214 break;
8215 case TRANS_DDI_EDP_INPUT_C_ONOFF:
8216 trans_edp_pipe = PIPE_C;
8217 break;
8218 }
8219
8220 if (trans_edp_pipe == crtc->pipe)
8221 pipe_config->cpu_transcoder = TRANSCODER_EDP;
8222 }
8223
f458ebbc 8224 if (!intel_display_power_is_enabled(dev_priv,
eccb140b 8225 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
2bfce950
PZ
8226 return false;
8227
eccb140b 8228 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
0e8ffe1b
DV
8229 if (!(tmp & PIPECONF_ENABLE))
8230 return false;
8231
26804afd 8232 haswell_get_ddi_port_state(crtc, pipe_config);
627eb5a3 8233
1bd1bd80
DV
8234 intel_get_pipe_timings(crtc, pipe_config);
8235
2fa2fe9a 8236 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
bd2e244f
JB
8237 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
8238 if (IS_SKYLAKE(dev))
8239 skylake_get_pfit_config(crtc, pipe_config);
8240 else
8241 ironlake_get_pfit_config(crtc, pipe_config);
8242 }
88adfff1 8243
e59150dc
JB
8244 if (IS_HASWELL(dev))
8245 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
8246 (I915_READ(IPS_CTL) & IPS_ENABLE);
42db64ef 8247
ebb69c95
CT
8248 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
8249 pipe_config->pixel_multiplier =
8250 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
8251 } else {
8252 pipe_config->pixel_multiplier = 1;
8253 }
6c49f241 8254
0e8ffe1b
DV
8255 return true;
8256}
8257
560b85bb
CW
8258static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
8259{
8260 struct drm_device *dev = crtc->dev;
8261 struct drm_i915_private *dev_priv = dev->dev_private;
8262 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
dc41c154 8263 uint32_t cntl = 0, size = 0;
560b85bb 8264
dc41c154
VS
8265 if (base) {
8266 unsigned int width = intel_crtc->cursor_width;
8267 unsigned int height = intel_crtc->cursor_height;
8268 unsigned int stride = roundup_pow_of_two(width) * 4;
8269
8270 switch (stride) {
8271 default:
8272 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
8273 width, stride);
8274 stride = 256;
8275 /* fallthrough */
8276 case 256:
8277 case 512:
8278 case 1024:
8279 case 2048:
8280 break;
4b0e333e
CW
8281 }
8282
dc41c154
VS
8283 cntl |= CURSOR_ENABLE |
8284 CURSOR_GAMMA_ENABLE |
8285 CURSOR_FORMAT_ARGB |
8286 CURSOR_STRIDE(stride);
8287
8288 size = (height << 12) | width;
4b0e333e 8289 }
560b85bb 8290
dc41c154
VS
8291 if (intel_crtc->cursor_cntl != 0 &&
8292 (intel_crtc->cursor_base != base ||
8293 intel_crtc->cursor_size != size ||
8294 intel_crtc->cursor_cntl != cntl)) {
8295 /* On these chipsets we can only modify the base/size/stride
8296 * whilst the cursor is disabled.
8297 */
8298 I915_WRITE(_CURACNTR, 0);
4b0e333e 8299 POSTING_READ(_CURACNTR);
dc41c154 8300 intel_crtc->cursor_cntl = 0;
4b0e333e 8301 }
560b85bb 8302
99d1f387 8303 if (intel_crtc->cursor_base != base) {
9db4a9c7 8304 I915_WRITE(_CURABASE, base);
99d1f387
VS
8305 intel_crtc->cursor_base = base;
8306 }
4726e0b0 8307
dc41c154
VS
8308 if (intel_crtc->cursor_size != size) {
8309 I915_WRITE(CURSIZE, size);
8310 intel_crtc->cursor_size = size;
4b0e333e 8311 }
560b85bb 8312
4b0e333e 8313 if (intel_crtc->cursor_cntl != cntl) {
4b0e333e
CW
8314 I915_WRITE(_CURACNTR, cntl);
8315 POSTING_READ(_CURACNTR);
4b0e333e 8316 intel_crtc->cursor_cntl = cntl;
560b85bb 8317 }
560b85bb
CW
8318}
8319
560b85bb 8320static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
65a21cd6
JB
8321{
8322 struct drm_device *dev = crtc->dev;
8323 struct drm_i915_private *dev_priv = dev->dev_private;
8324 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8325 int pipe = intel_crtc->pipe;
4b0e333e
CW
8326 uint32_t cntl;
8327
8328 cntl = 0;
8329 if (base) {
8330 cntl = MCURSOR_GAMMA_ENABLE;
8331 switch (intel_crtc->cursor_width) {
4726e0b0
SK
8332 case 64:
8333 cntl |= CURSOR_MODE_64_ARGB_AX;
8334 break;
8335 case 128:
8336 cntl |= CURSOR_MODE_128_ARGB_AX;
8337 break;
8338 case 256:
8339 cntl |= CURSOR_MODE_256_ARGB_AX;
8340 break;
8341 default:
5f77eeb0 8342 MISSING_CASE(intel_crtc->cursor_width);
4726e0b0 8343 return;
65a21cd6 8344 }
4b0e333e 8345 cntl |= pipe << 28; /* Connect to correct pipe */
47bf17a7
VS
8346
8347 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
8348 cntl |= CURSOR_PIPE_CSC_ENABLE;
4b0e333e 8349 }
65a21cd6 8350
8e7d688b 8351 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
4398ad45
VS
8352 cntl |= CURSOR_ROTATE_180;
8353
4b0e333e
CW
8354 if (intel_crtc->cursor_cntl != cntl) {
8355 I915_WRITE(CURCNTR(pipe), cntl);
8356 POSTING_READ(CURCNTR(pipe));
8357 intel_crtc->cursor_cntl = cntl;
65a21cd6 8358 }
4b0e333e 8359
65a21cd6 8360 /* and commit changes on next vblank */
5efb3e28
VS
8361 I915_WRITE(CURBASE(pipe), base);
8362 POSTING_READ(CURBASE(pipe));
99d1f387
VS
8363
8364 intel_crtc->cursor_base = base;
65a21cd6
JB
8365}
8366
cda4b7d3 8367/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f
CW
8368static void intel_crtc_update_cursor(struct drm_crtc *crtc,
8369 bool on)
cda4b7d3
CW
8370{
8371 struct drm_device *dev = crtc->dev;
8372 struct drm_i915_private *dev_priv = dev->dev_private;
8373 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8374 int pipe = intel_crtc->pipe;
3d7d6510
MR
8375 int x = crtc->cursor_x;
8376 int y = crtc->cursor_y;
d6e4db15 8377 u32 base = 0, pos = 0;
cda4b7d3 8378
d6e4db15 8379 if (on)
cda4b7d3 8380 base = intel_crtc->cursor_addr;
cda4b7d3 8381
6e3c9717 8382 if (x >= intel_crtc->config->pipe_src_w)
d6e4db15
VS
8383 base = 0;
8384
6e3c9717 8385 if (y >= intel_crtc->config->pipe_src_h)
cda4b7d3
CW
8386 base = 0;
8387
8388 if (x < 0) {
efc9064e 8389 if (x + intel_crtc->cursor_width <= 0)
cda4b7d3
CW
8390 base = 0;
8391
8392 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8393 x = -x;
8394 }
8395 pos |= x << CURSOR_X_SHIFT;
8396
8397 if (y < 0) {
efc9064e 8398 if (y + intel_crtc->cursor_height <= 0)
cda4b7d3
CW
8399 base = 0;
8400
8401 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8402 y = -y;
8403 }
8404 pos |= y << CURSOR_Y_SHIFT;
8405
4b0e333e 8406 if (base == 0 && intel_crtc->cursor_base == 0)
cda4b7d3
CW
8407 return;
8408
5efb3e28
VS
8409 I915_WRITE(CURPOS(pipe), pos);
8410
4398ad45
VS
8411 /* ILK+ do this automagically */
8412 if (HAS_GMCH_DISPLAY(dev) &&
8e7d688b 8413 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
4398ad45
VS
8414 base += (intel_crtc->cursor_height *
8415 intel_crtc->cursor_width - 1) * 4;
8416 }
8417
8ac54669 8418 if (IS_845G(dev) || IS_I865G(dev))
5efb3e28
VS
8419 i845_update_cursor(crtc, base);
8420 else
8421 i9xx_update_cursor(crtc, base);
cda4b7d3
CW
8422}
8423
dc41c154
VS
8424static bool cursor_size_ok(struct drm_device *dev,
8425 uint32_t width, uint32_t height)
8426{
8427 if (width == 0 || height == 0)
8428 return false;
8429
8430 /*
8431 * 845g/865g are special in that they are only limited by
8432 * the width of their cursors, the height is arbitrary up to
8433 * the precision of the register. Everything else requires
8434 * square cursors, limited to a few power-of-two sizes.
8435 */
8436 if (IS_845G(dev) || IS_I865G(dev)) {
8437 if ((width & 63) != 0)
8438 return false;
8439
8440 if (width > (IS_845G(dev) ? 64 : 512))
8441 return false;
8442
8443 if (height > 1023)
8444 return false;
8445 } else {
8446 switch (width | height) {
8447 case 256:
8448 case 128:
8449 if (IS_GEN2(dev))
8450 return false;
8451 case 64:
8452 break;
8453 default:
8454 return false;
8455 }
8456 }
8457
8458 return true;
8459}
8460
79e53945 8461static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
7203425a 8462 u16 *blue, uint32_t start, uint32_t size)
79e53945 8463{
7203425a 8464 int end = (start + size > 256) ? 256 : start + size, i;
79e53945 8465 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8466
7203425a 8467 for (i = start; i < end; i++) {
79e53945
JB
8468 intel_crtc->lut_r[i] = red[i] >> 8;
8469 intel_crtc->lut_g[i] = green[i] >> 8;
8470 intel_crtc->lut_b[i] = blue[i] >> 8;
8471 }
8472
8473 intel_crtc_load_lut(crtc);
8474}
8475
79e53945
JB
8476/* VESA 640x480x72Hz mode to set on the pipe */
8477static struct drm_display_mode load_detect_mode = {
8478 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8479 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8480};
8481
a8bb6818
DV
8482struct drm_framebuffer *
8483__intel_framebuffer_create(struct drm_device *dev,
8484 struct drm_mode_fb_cmd2 *mode_cmd,
8485 struct drm_i915_gem_object *obj)
d2dff872
CW
8486{
8487 struct intel_framebuffer *intel_fb;
8488 int ret;
8489
8490 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8491 if (!intel_fb) {
6ccb81f2 8492 drm_gem_object_unreference(&obj->base);
d2dff872
CW
8493 return ERR_PTR(-ENOMEM);
8494 }
8495
8496 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
dd4916c5
DV
8497 if (ret)
8498 goto err;
d2dff872
CW
8499
8500 return &intel_fb->base;
dd4916c5 8501err:
6ccb81f2 8502 drm_gem_object_unreference(&obj->base);
dd4916c5
DV
8503 kfree(intel_fb);
8504
8505 return ERR_PTR(ret);
d2dff872
CW
8506}
8507
b5ea642a 8508static struct drm_framebuffer *
a8bb6818
DV
8509intel_framebuffer_create(struct drm_device *dev,
8510 struct drm_mode_fb_cmd2 *mode_cmd,
8511 struct drm_i915_gem_object *obj)
8512{
8513 struct drm_framebuffer *fb;
8514 int ret;
8515
8516 ret = i915_mutex_lock_interruptible(dev);
8517 if (ret)
8518 return ERR_PTR(ret);
8519 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8520 mutex_unlock(&dev->struct_mutex);
8521
8522 return fb;
8523}
8524
d2dff872
CW
8525static u32
8526intel_framebuffer_pitch_for_width(int width, int bpp)
8527{
8528 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8529 return ALIGN(pitch, 64);
8530}
8531
8532static u32
8533intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8534{
8535 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
1267a26b 8536 return PAGE_ALIGN(pitch * mode->vdisplay);
d2dff872
CW
8537}
8538
8539static struct drm_framebuffer *
8540intel_framebuffer_create_for_mode(struct drm_device *dev,
8541 struct drm_display_mode *mode,
8542 int depth, int bpp)
8543{
8544 struct drm_i915_gem_object *obj;
0fed39bd 8545 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872
CW
8546
8547 obj = i915_gem_alloc_object(dev,
8548 intel_framebuffer_size_for_mode(mode, bpp));
8549 if (obj == NULL)
8550 return ERR_PTR(-ENOMEM);
8551
8552 mode_cmd.width = mode->hdisplay;
8553 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
8554 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8555 bpp);
5ca0c34a 8556 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872
CW
8557
8558 return intel_framebuffer_create(dev, &mode_cmd, obj);
8559}
8560
8561static struct drm_framebuffer *
8562mode_fits_in_fbdev(struct drm_device *dev,
8563 struct drm_display_mode *mode)
8564{
4520f53a 8565#ifdef CONFIG_DRM_I915_FBDEV
d2dff872
CW
8566 struct drm_i915_private *dev_priv = dev->dev_private;
8567 struct drm_i915_gem_object *obj;
8568 struct drm_framebuffer *fb;
8569
4c0e5528 8570 if (!dev_priv->fbdev)
d2dff872
CW
8571 return NULL;
8572
4c0e5528 8573 if (!dev_priv->fbdev->fb)
d2dff872
CW
8574 return NULL;
8575
4c0e5528
DV
8576 obj = dev_priv->fbdev->fb->obj;
8577 BUG_ON(!obj);
8578
8bcd4553 8579 fb = &dev_priv->fbdev->fb->base;
01f2c773
VS
8580 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8581 fb->bits_per_pixel))
d2dff872
CW
8582 return NULL;
8583
01f2c773 8584 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
8585 return NULL;
8586
8587 return fb;
4520f53a
DV
8588#else
8589 return NULL;
8590#endif
d2dff872
CW
8591}
8592
d2434ab7 8593bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 8594 struct drm_display_mode *mode,
51fd371b
RC
8595 struct intel_load_detect_pipe *old,
8596 struct drm_modeset_acquire_ctx *ctx)
79e53945
JB
8597{
8598 struct intel_crtc *intel_crtc;
d2434ab7
DV
8599 struct intel_encoder *intel_encoder =
8600 intel_attached_encoder(connector);
79e53945 8601 struct drm_crtc *possible_crtc;
4ef69c7a 8602 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
8603 struct drm_crtc *crtc = NULL;
8604 struct drm_device *dev = encoder->dev;
94352cf9 8605 struct drm_framebuffer *fb;
51fd371b
RC
8606 struct drm_mode_config *config = &dev->mode_config;
8607 int ret, i = -1;
79e53945 8608
d2dff872 8609 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 8610 connector->base.id, connector->name,
8e329a03 8611 encoder->base.id, encoder->name);
d2dff872 8612
51fd371b
RC
8613retry:
8614 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8615 if (ret)
8616 goto fail_unlock;
6e9f798d 8617
79e53945
JB
8618 /*
8619 * Algorithm gets a little messy:
7a5e4805 8620 *
79e53945
JB
8621 * - if the connector already has an assigned crtc, use it (but make
8622 * sure it's on first)
7a5e4805 8623 *
79e53945
JB
8624 * - try to find the first unused crtc that can drive this connector,
8625 * and use that if we find one
79e53945
JB
8626 */
8627
8628 /* See if we already have a CRTC for this connector */
8629 if (encoder->crtc) {
8630 crtc = encoder->crtc;
8261b191 8631
51fd371b 8632 ret = drm_modeset_lock(&crtc->mutex, ctx);
4d02e2de
DV
8633 if (ret)
8634 goto fail_unlock;
8635 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
51fd371b
RC
8636 if (ret)
8637 goto fail_unlock;
7b24056b 8638
24218aac 8639 old->dpms_mode = connector->dpms;
8261b191
CW
8640 old->load_detect_temp = false;
8641
8642 /* Make sure the crtc and connector are running */
24218aac
DV
8643 if (connector->dpms != DRM_MODE_DPMS_ON)
8644 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
8261b191 8645
7173188d 8646 return true;
79e53945
JB
8647 }
8648
8649 /* Find an unused one (if possible) */
70e1e0ec 8650 for_each_crtc(dev, possible_crtc) {
79e53945
JB
8651 i++;
8652 if (!(encoder->possible_crtcs & (1 << i)))
8653 continue;
a459249c
VS
8654 if (possible_crtc->enabled)
8655 continue;
8656 /* This can occur when applying the pipe A quirk on resume. */
8657 if (to_intel_crtc(possible_crtc)->new_enabled)
8658 continue;
8659
8660 crtc = possible_crtc;
8661 break;
79e53945
JB
8662 }
8663
8664 /*
8665 * If we didn't find an unused CRTC, don't use any.
8666 */
8667 if (!crtc) {
7173188d 8668 DRM_DEBUG_KMS("no pipe available for load-detect\n");
51fd371b 8669 goto fail_unlock;
79e53945
JB
8670 }
8671
51fd371b
RC
8672 ret = drm_modeset_lock(&crtc->mutex, ctx);
8673 if (ret)
4d02e2de
DV
8674 goto fail_unlock;
8675 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
8676 if (ret)
51fd371b 8677 goto fail_unlock;
fc303101
DV
8678 intel_encoder->new_crtc = to_intel_crtc(crtc);
8679 to_intel_connector(connector)->new_encoder = intel_encoder;
79e53945
JB
8680
8681 intel_crtc = to_intel_crtc(crtc);
412b61d8 8682 intel_crtc->new_enabled = true;
6e3c9717 8683 intel_crtc->new_config = intel_crtc->config;
24218aac 8684 old->dpms_mode = connector->dpms;
8261b191 8685 old->load_detect_temp = true;
d2dff872 8686 old->release_fb = NULL;
79e53945 8687
6492711d
CW
8688 if (!mode)
8689 mode = &load_detect_mode;
79e53945 8690
d2dff872
CW
8691 /* We need a framebuffer large enough to accommodate all accesses
8692 * that the plane may generate whilst we perform load detection.
8693 * We can not rely on the fbcon either being present (we get called
8694 * during its initialisation to detect all boot displays, or it may
8695 * not even exist) or that it is large enough to satisfy the
8696 * requested mode.
8697 */
94352cf9
DV
8698 fb = mode_fits_in_fbdev(dev, mode);
8699 if (fb == NULL) {
d2dff872 8700 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9
DV
8701 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8702 old->release_fb = fb;
d2dff872
CW
8703 } else
8704 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 8705 if (IS_ERR(fb)) {
d2dff872 8706 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
412b61d8 8707 goto fail;
79e53945 8708 }
79e53945 8709
c0c36b94 8710 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
6492711d 8711 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
d2dff872
CW
8712 if (old->release_fb)
8713 old->release_fb->funcs->destroy(old->release_fb);
412b61d8 8714 goto fail;
79e53945 8715 }
9128b040 8716 crtc->primary->crtc = crtc;
7173188d 8717
79e53945 8718 /* let the connector get through one full cycle before testing */
9d0498a2 8719 intel_wait_for_vblank(dev, intel_crtc->pipe);
7173188d 8720 return true;
412b61d8
VS
8721
8722 fail:
8723 intel_crtc->new_enabled = crtc->enabled;
8724 if (intel_crtc->new_enabled)
6e3c9717 8725 intel_crtc->new_config = intel_crtc->config;
412b61d8
VS
8726 else
8727 intel_crtc->new_config = NULL;
51fd371b
RC
8728fail_unlock:
8729 if (ret == -EDEADLK) {
8730 drm_modeset_backoff(ctx);
8731 goto retry;
8732 }
8733
412b61d8 8734 return false;
79e53945
JB
8735}
8736
d2434ab7 8737void intel_release_load_detect_pipe(struct drm_connector *connector,
208bf9fd 8738 struct intel_load_detect_pipe *old)
79e53945 8739{
d2434ab7
DV
8740 struct intel_encoder *intel_encoder =
8741 intel_attached_encoder(connector);
4ef69c7a 8742 struct drm_encoder *encoder = &intel_encoder->base;
7b24056b 8743 struct drm_crtc *crtc = encoder->crtc;
412b61d8 8744 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8745
d2dff872 8746 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 8747 connector->base.id, connector->name,
8e329a03 8748 encoder->base.id, encoder->name);
d2dff872 8749
8261b191 8750 if (old->load_detect_temp) {
fc303101
DV
8751 to_intel_connector(connector)->new_encoder = NULL;
8752 intel_encoder->new_crtc = NULL;
412b61d8
VS
8753 intel_crtc->new_enabled = false;
8754 intel_crtc->new_config = NULL;
fc303101 8755 intel_set_mode(crtc, NULL, 0, 0, NULL);
d2dff872 8756
36206361
DV
8757 if (old->release_fb) {
8758 drm_framebuffer_unregister_private(old->release_fb);
8759 drm_framebuffer_unreference(old->release_fb);
8760 }
d2dff872 8761
0622a53c 8762 return;
79e53945
JB
8763 }
8764
c751ce4f 8765 /* Switch crtc and encoder back off if necessary */
24218aac
DV
8766 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8767 connector->funcs->dpms(connector, old->dpms_mode);
79e53945
JB
8768}
8769
da4a1efa 8770static int i9xx_pll_refclk(struct drm_device *dev,
5cec258b 8771 const struct intel_crtc_state *pipe_config)
da4a1efa
VS
8772{
8773 struct drm_i915_private *dev_priv = dev->dev_private;
8774 u32 dpll = pipe_config->dpll_hw_state.dpll;
8775
8776 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
e91e941b 8777 return dev_priv->vbt.lvds_ssc_freq;
da4a1efa
VS
8778 else if (HAS_PCH_SPLIT(dev))
8779 return 120000;
8780 else if (!IS_GEN2(dev))
8781 return 96000;
8782 else
8783 return 48000;
8784}
8785
79e53945 8786/* Returns the clock of the currently programmed mode of the given pipe. */
f1f644dc 8787static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8788 struct intel_crtc_state *pipe_config)
79e53945 8789{
f1f644dc 8790 struct drm_device *dev = crtc->base.dev;
79e53945 8791 struct drm_i915_private *dev_priv = dev->dev_private;
f1f644dc 8792 int pipe = pipe_config->cpu_transcoder;
293623f7 8793 u32 dpll = pipe_config->dpll_hw_state.dpll;
79e53945
JB
8794 u32 fp;
8795 intel_clock_t clock;
da4a1efa 8796 int refclk = i9xx_pll_refclk(dev, pipe_config);
79e53945
JB
8797
8798 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
293623f7 8799 fp = pipe_config->dpll_hw_state.fp0;
79e53945 8800 else
293623f7 8801 fp = pipe_config->dpll_hw_state.fp1;
79e53945
JB
8802
8803 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
8804 if (IS_PINEVIEW(dev)) {
8805 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8806 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
8807 } else {
8808 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8809 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8810 }
8811
a6c45cf0 8812 if (!IS_GEN2(dev)) {
f2b115e6
AJ
8813 if (IS_PINEVIEW(dev))
8814 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8815 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
8816 else
8817 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
8818 DPLL_FPA01_P1_POST_DIV_SHIFT);
8819
8820 switch (dpll & DPLL_MODE_MASK) {
8821 case DPLLB_MODE_DAC_SERIAL:
8822 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8823 5 : 10;
8824 break;
8825 case DPLLB_MODE_LVDS:
8826 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8827 7 : 14;
8828 break;
8829 default:
28c97730 8830 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945 8831 "mode\n", (int)(dpll & DPLL_MODE_MASK));
f1f644dc 8832 return;
79e53945
JB
8833 }
8834
ac58c3f0 8835 if (IS_PINEVIEW(dev))
da4a1efa 8836 pineview_clock(refclk, &clock);
ac58c3f0 8837 else
da4a1efa 8838 i9xx_clock(refclk, &clock);
79e53945 8839 } else {
0fb58223 8840 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
b1c560d1 8841 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
79e53945
JB
8842
8843 if (is_lvds) {
8844 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8845 DPLL_FPA01_P1_POST_DIV_SHIFT);
b1c560d1
VS
8846
8847 if (lvds & LVDS_CLKB_POWER_UP)
8848 clock.p2 = 7;
8849 else
8850 clock.p2 = 14;
79e53945
JB
8851 } else {
8852 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8853 clock.p1 = 2;
8854 else {
8855 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8856 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8857 }
8858 if (dpll & PLL_P2_DIVIDE_BY_4)
8859 clock.p2 = 4;
8860 else
8861 clock.p2 = 2;
79e53945 8862 }
da4a1efa
VS
8863
8864 i9xx_clock(refclk, &clock);
79e53945
JB
8865 }
8866
18442d08
VS
8867 /*
8868 * This value includes pixel_multiplier. We will use
241bfc38 8869 * port_clock to compute adjusted_mode.crtc_clock in the
18442d08
VS
8870 * encoder's get_config() function.
8871 */
8872 pipe_config->port_clock = clock.dot;
f1f644dc
JB
8873}
8874
6878da05
VS
8875int intel_dotclock_calculate(int link_freq,
8876 const struct intel_link_m_n *m_n)
f1f644dc 8877{
f1f644dc
JB
8878 /*
8879 * The calculation for the data clock is:
1041a02f 8880 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
f1f644dc 8881 * But we want to avoid losing precison if possible, so:
1041a02f 8882 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
f1f644dc
JB
8883 *
8884 * and the link clock is simpler:
1041a02f 8885 * link_clock = (m * link_clock) / n
f1f644dc
JB
8886 */
8887
6878da05
VS
8888 if (!m_n->link_n)
8889 return 0;
f1f644dc 8890
6878da05
VS
8891 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8892}
f1f644dc 8893
18442d08 8894static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 8895 struct intel_crtc_state *pipe_config)
6878da05
VS
8896{
8897 struct drm_device *dev = crtc->base.dev;
79e53945 8898
18442d08
VS
8899 /* read out port_clock from the DPLL */
8900 i9xx_crtc_clock_get(crtc, pipe_config);
f1f644dc 8901
f1f644dc 8902 /*
18442d08 8903 * This value does not include pixel_multiplier.
241bfc38 8904 * We will check that port_clock and adjusted_mode.crtc_clock
18442d08
VS
8905 * agree once we know their relationship in the encoder's
8906 * get_config() function.
79e53945 8907 */
2d112de7 8908 pipe_config->base.adjusted_mode.crtc_clock =
18442d08
VS
8909 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8910 &pipe_config->fdi_m_n);
79e53945
JB
8911}
8912
8913/** Returns the currently programmed mode of the given pipe. */
8914struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8915 struct drm_crtc *crtc)
8916{
548f245b 8917 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 8918 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 8919 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
79e53945 8920 struct drm_display_mode *mode;
5cec258b 8921 struct intel_crtc_state pipe_config;
fe2b8f9d
PZ
8922 int htot = I915_READ(HTOTAL(cpu_transcoder));
8923 int hsync = I915_READ(HSYNC(cpu_transcoder));
8924 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8925 int vsync = I915_READ(VSYNC(cpu_transcoder));
293623f7 8926 enum pipe pipe = intel_crtc->pipe;
79e53945
JB
8927
8928 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8929 if (!mode)
8930 return NULL;
8931
f1f644dc
JB
8932 /*
8933 * Construct a pipe_config sufficient for getting the clock info
8934 * back out of crtc_clock_get.
8935 *
8936 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8937 * to use a real value here instead.
8938 */
293623f7 8939 pipe_config.cpu_transcoder = (enum transcoder) pipe;
f1f644dc 8940 pipe_config.pixel_multiplier = 1;
293623f7
VS
8941 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8942 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8943 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
f1f644dc
JB
8944 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8945
773ae034 8946 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
79e53945
JB
8947 mode->hdisplay = (htot & 0xffff) + 1;
8948 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8949 mode->hsync_start = (hsync & 0xffff) + 1;
8950 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8951 mode->vdisplay = (vtot & 0xffff) + 1;
8952 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8953 mode->vsync_start = (vsync & 0xffff) + 1;
8954 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8955
8956 drm_mode_set_name(mode);
79e53945
JB
8957
8958 return mode;
8959}
8960
652c393a
JB
8961static void intel_decrease_pllclock(struct drm_crtc *crtc)
8962{
8963 struct drm_device *dev = crtc->dev;
fbee40df 8964 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 8965 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
652c393a 8966
baff296c 8967 if (!HAS_GMCH_DISPLAY(dev))
652c393a
JB
8968 return;
8969
8970 if (!dev_priv->lvds_downclock_avail)
8971 return;
8972
8973 /*
8974 * Since this is called by a timer, we should never get here in
8975 * the manual case.
8976 */
8977 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
dc257cf1
DV
8978 int pipe = intel_crtc->pipe;
8979 int dpll_reg = DPLL(pipe);
8980 int dpll;
f6e5b160 8981
44d98a61 8982 DRM_DEBUG_DRIVER("downclocking LVDS\n");
652c393a 8983
8ac5a6d5 8984 assert_panel_unlocked(dev_priv, pipe);
652c393a 8985
dc257cf1 8986 dpll = I915_READ(dpll_reg);
652c393a
JB
8987 dpll |= DISPLAY_RATE_SELECT_FPA1;
8988 I915_WRITE(dpll_reg, dpll);
9d0498a2 8989 intel_wait_for_vblank(dev, pipe);
652c393a
JB
8990 dpll = I915_READ(dpll_reg);
8991 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
44d98a61 8992 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
652c393a
JB
8993 }
8994
8995}
8996
f047e395
CW
8997void intel_mark_busy(struct drm_device *dev)
8998{
c67a470b
PZ
8999 struct drm_i915_private *dev_priv = dev->dev_private;
9000
f62a0076
CW
9001 if (dev_priv->mm.busy)
9002 return;
9003
43694d69 9004 intel_runtime_pm_get(dev_priv);
c67a470b 9005 i915_update_gfx_val(dev_priv);
f62a0076 9006 dev_priv->mm.busy = true;
f047e395
CW
9007}
9008
9009void intel_mark_idle(struct drm_device *dev)
652c393a 9010{
c67a470b 9011 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 9012 struct drm_crtc *crtc;
652c393a 9013
f62a0076
CW
9014 if (!dev_priv->mm.busy)
9015 return;
9016
9017 dev_priv->mm.busy = false;
9018
d330a953 9019 if (!i915.powersave)
bb4cdd53 9020 goto out;
652c393a 9021
70e1e0ec 9022 for_each_crtc(dev, crtc) {
f4510a27 9023 if (!crtc->primary->fb)
652c393a
JB
9024 continue;
9025
725a5b54 9026 intel_decrease_pllclock(crtc);
652c393a 9027 }
b29c19b6 9028
3d13ef2e 9029 if (INTEL_INFO(dev)->gen >= 6)
b29c19b6 9030 gen6_rps_idle(dev->dev_private);
bb4cdd53
PZ
9031
9032out:
43694d69 9033 intel_runtime_pm_put(dev_priv);
652c393a
JB
9034}
9035
f5de6e07
ACO
9036static void intel_crtc_set_state(struct intel_crtc *crtc,
9037 struct intel_crtc_state *crtc_state)
9038{
9039 kfree(crtc->config);
9040 crtc->config = crtc_state;
16f3f658 9041 crtc->base.state = &crtc_state->base;
f5de6e07
ACO
9042}
9043
79e53945
JB
9044static void intel_crtc_destroy(struct drm_crtc *crtc)
9045{
9046 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a
DV
9047 struct drm_device *dev = crtc->dev;
9048 struct intel_unpin_work *work;
67e77c5a 9049
5e2d7afc 9050 spin_lock_irq(&dev->event_lock);
67e77c5a
DV
9051 work = intel_crtc->unpin_work;
9052 intel_crtc->unpin_work = NULL;
5e2d7afc 9053 spin_unlock_irq(&dev->event_lock);
67e77c5a
DV
9054
9055 if (work) {
9056 cancel_work_sync(&work->work);
9057 kfree(work);
9058 }
79e53945 9059
f5de6e07 9060 intel_crtc_set_state(intel_crtc, NULL);
79e53945 9061 drm_crtc_cleanup(crtc);
67e77c5a 9062
79e53945
JB
9063 kfree(intel_crtc);
9064}
9065
6b95a207
KH
9066static void intel_unpin_work_fn(struct work_struct *__work)
9067{
9068 struct intel_unpin_work *work =
9069 container_of(__work, struct intel_unpin_work, work);
b4a98e57 9070 struct drm_device *dev = work->crtc->dev;
f99d7069 9071 enum pipe pipe = to_intel_crtc(work->crtc)->pipe;
6b95a207 9072
b4a98e57 9073 mutex_lock(&dev->struct_mutex);
1690e1eb 9074 intel_unpin_fb_obj(work->old_fb_obj);
05394f39
CW
9075 drm_gem_object_unreference(&work->pending_flip_obj->base);
9076 drm_gem_object_unreference(&work->old_fb_obj->base);
d9e86c0e 9077
7ff0ebcc 9078 intel_fbc_update(dev);
f06cc1b9
JH
9079
9080 if (work->flip_queued_req)
146d84f0 9081 i915_gem_request_assign(&work->flip_queued_req, NULL);
b4a98e57
CW
9082 mutex_unlock(&dev->struct_mutex);
9083
f99d7069
DV
9084 intel_frontbuffer_flip_complete(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
9085
b4a98e57
CW
9086 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
9087 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
9088
6b95a207
KH
9089 kfree(work);
9090}
9091
1afe3e9d 9092static void do_intel_finish_page_flip(struct drm_device *dev,
49b14a5c 9093 struct drm_crtc *crtc)
6b95a207 9094{
6b95a207
KH
9095 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9096 struct intel_unpin_work *work;
6b95a207
KH
9097 unsigned long flags;
9098
9099 /* Ignore early vblank irqs */
9100 if (intel_crtc == NULL)
9101 return;
9102
f326038a
DV
9103 /*
9104 * This is called both by irq handlers and the reset code (to complete
9105 * lost pageflips) so needs the full irqsave spinlocks.
9106 */
6b95a207
KH
9107 spin_lock_irqsave(&dev->event_lock, flags);
9108 work = intel_crtc->unpin_work;
e7d841ca
CW
9109
9110 /* Ensure we don't miss a work->pending update ... */
9111 smp_rmb();
9112
9113 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
6b95a207
KH
9114 spin_unlock_irqrestore(&dev->event_lock, flags);
9115 return;
9116 }
9117
d6bbafa1 9118 page_flip_completed(intel_crtc);
0af7e4df 9119
6b95a207 9120 spin_unlock_irqrestore(&dev->event_lock, flags);
6b95a207
KH
9121}
9122
1afe3e9d
JB
9123void intel_finish_page_flip(struct drm_device *dev, int pipe)
9124{
fbee40df 9125 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
9126 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9127
49b14a5c 9128 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
9129}
9130
9131void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
9132{
fbee40df 9133 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
9134 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
9135
49b14a5c 9136 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
9137}
9138
75f7f3ec
VS
9139/* Is 'a' after or equal to 'b'? */
9140static bool g4x_flip_count_after_eq(u32 a, u32 b)
9141{
9142 return !((a - b) & 0x80000000);
9143}
9144
9145static bool page_flip_finished(struct intel_crtc *crtc)
9146{
9147 struct drm_device *dev = crtc->base.dev;
9148 struct drm_i915_private *dev_priv = dev->dev_private;
9149
bdfa7542
VS
9150 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
9151 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
9152 return true;
9153
75f7f3ec
VS
9154 /*
9155 * The relevant registers doen't exist on pre-ctg.
9156 * As the flip done interrupt doesn't trigger for mmio
9157 * flips on gmch platforms, a flip count check isn't
9158 * really needed there. But since ctg has the registers,
9159 * include it in the check anyway.
9160 */
9161 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
9162 return true;
9163
9164 /*
9165 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
9166 * used the same base address. In that case the mmio flip might
9167 * have completed, but the CS hasn't even executed the flip yet.
9168 *
9169 * A flip count check isn't enough as the CS might have updated
9170 * the base address just after start of vblank, but before we
9171 * managed to process the interrupt. This means we'd complete the
9172 * CS flip too soon.
9173 *
9174 * Combining both checks should get us a good enough result. It may
9175 * still happen that the CS flip has been executed, but has not
9176 * yet actually completed. But in case the base address is the same
9177 * anyway, we don't really care.
9178 */
9179 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
9180 crtc->unpin_work->gtt_offset &&
9181 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
9182 crtc->unpin_work->flip_count);
9183}
9184
6b95a207
KH
9185void intel_prepare_page_flip(struct drm_device *dev, int plane)
9186{
fbee40df 9187 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
9188 struct intel_crtc *intel_crtc =
9189 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
9190 unsigned long flags;
9191
f326038a
DV
9192
9193 /*
9194 * This is called both by irq handlers and the reset code (to complete
9195 * lost pageflips) so needs the full irqsave spinlocks.
9196 *
9197 * NB: An MMIO update of the plane base pointer will also
e7d841ca
CW
9198 * generate a page-flip completion irq, i.e. every modeset
9199 * is also accompanied by a spurious intel_prepare_page_flip().
9200 */
6b95a207 9201 spin_lock_irqsave(&dev->event_lock, flags);
75f7f3ec 9202 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
e7d841ca 9203 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
6b95a207
KH
9204 spin_unlock_irqrestore(&dev->event_lock, flags);
9205}
9206
eba905b2 9207static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
e7d841ca
CW
9208{
9209 /* Ensure that the work item is consistent when activating it ... */
9210 smp_wmb();
9211 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
9212 /* and that it is marked active as soon as the irq could fire. */
9213 smp_wmb();
9214}
9215
8c9f3aaf
JB
9216static int intel_gen2_queue_flip(struct drm_device *dev,
9217 struct drm_crtc *crtc,
9218 struct drm_framebuffer *fb,
ed8d1975 9219 struct drm_i915_gem_object *obj,
a4872ba6 9220 struct intel_engine_cs *ring,
ed8d1975 9221 uint32_t flags)
8c9f3aaf 9222{
8c9f3aaf 9223 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
9224 u32 flip_mask;
9225 int ret;
9226
6d90c952 9227 ret = intel_ring_begin(ring, 6);
8c9f3aaf 9228 if (ret)
4fa62c89 9229 return ret;
8c9f3aaf
JB
9230
9231 /* Can't queue multiple flips, so wait for the previous
9232 * one to finish before executing the next.
9233 */
9234 if (intel_crtc->plane)
9235 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9236 else
9237 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
9238 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9239 intel_ring_emit(ring, MI_NOOP);
9240 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9241 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9242 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 9243 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
6d90c952 9244 intel_ring_emit(ring, 0); /* aux display base address, unused */
e7d841ca
CW
9245
9246 intel_mark_page_flip_active(intel_crtc);
09246732 9247 __intel_ring_advance(ring);
83d4092b 9248 return 0;
8c9f3aaf
JB
9249}
9250
9251static int intel_gen3_queue_flip(struct drm_device *dev,
9252 struct drm_crtc *crtc,
9253 struct drm_framebuffer *fb,
ed8d1975 9254 struct drm_i915_gem_object *obj,
a4872ba6 9255 struct intel_engine_cs *ring,
ed8d1975 9256 uint32_t flags)
8c9f3aaf 9257{
8c9f3aaf 9258 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
9259 u32 flip_mask;
9260 int ret;
9261
6d90c952 9262 ret = intel_ring_begin(ring, 6);
8c9f3aaf 9263 if (ret)
4fa62c89 9264 return ret;
8c9f3aaf
JB
9265
9266 if (intel_crtc->plane)
9267 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9268 else
9269 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
9270 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9271 intel_ring_emit(ring, MI_NOOP);
9272 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9273 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9274 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 9275 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
6d90c952
DV
9276 intel_ring_emit(ring, MI_NOOP);
9277
e7d841ca 9278 intel_mark_page_flip_active(intel_crtc);
09246732 9279 __intel_ring_advance(ring);
83d4092b 9280 return 0;
8c9f3aaf
JB
9281}
9282
9283static int intel_gen4_queue_flip(struct drm_device *dev,
9284 struct drm_crtc *crtc,
9285 struct drm_framebuffer *fb,
ed8d1975 9286 struct drm_i915_gem_object *obj,
a4872ba6 9287 struct intel_engine_cs *ring,
ed8d1975 9288 uint32_t flags)
8c9f3aaf
JB
9289{
9290 struct drm_i915_private *dev_priv = dev->dev_private;
9291 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9292 uint32_t pf, pipesrc;
9293 int ret;
9294
6d90c952 9295 ret = intel_ring_begin(ring, 4);
8c9f3aaf 9296 if (ret)
4fa62c89 9297 return ret;
8c9f3aaf
JB
9298
9299 /* i965+ uses the linear or tiled offsets from the
9300 * Display Registers (which do not change across a page-flip)
9301 * so we need only reprogram the base address.
9302 */
6d90c952
DV
9303 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9304 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9305 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 9306 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
c2c75131 9307 obj->tiling_mode);
8c9f3aaf
JB
9308
9309 /* XXX Enabling the panel-fitter across page-flip is so far
9310 * untested on non-native modes, so ignore it for now.
9311 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9312 */
9313 pf = 0;
9314 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 9315 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
9316
9317 intel_mark_page_flip_active(intel_crtc);
09246732 9318 __intel_ring_advance(ring);
83d4092b 9319 return 0;
8c9f3aaf
JB
9320}
9321
9322static int intel_gen6_queue_flip(struct drm_device *dev,
9323 struct drm_crtc *crtc,
9324 struct drm_framebuffer *fb,
ed8d1975 9325 struct drm_i915_gem_object *obj,
a4872ba6 9326 struct intel_engine_cs *ring,
ed8d1975 9327 uint32_t flags)
8c9f3aaf
JB
9328{
9329 struct drm_i915_private *dev_priv = dev->dev_private;
9330 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9331 uint32_t pf, pipesrc;
9332 int ret;
9333
6d90c952 9334 ret = intel_ring_begin(ring, 4);
8c9f3aaf 9335 if (ret)
4fa62c89 9336 return ret;
8c9f3aaf 9337
6d90c952
DV
9338 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9339 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9340 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
75f7f3ec 9341 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
8c9f3aaf 9342
dc257cf1
DV
9343 /* Contrary to the suggestions in the documentation,
9344 * "Enable Panel Fitter" does not seem to be required when page
9345 * flipping with a non-native mode, and worse causes a normal
9346 * modeset to fail.
9347 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9348 */
9349 pf = 0;
8c9f3aaf 9350 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 9351 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
9352
9353 intel_mark_page_flip_active(intel_crtc);
09246732 9354 __intel_ring_advance(ring);
83d4092b 9355 return 0;
8c9f3aaf
JB
9356}
9357
7c9017e5
JB
9358static int intel_gen7_queue_flip(struct drm_device *dev,
9359 struct drm_crtc *crtc,
9360 struct drm_framebuffer *fb,
ed8d1975 9361 struct drm_i915_gem_object *obj,
a4872ba6 9362 struct intel_engine_cs *ring,
ed8d1975 9363 uint32_t flags)
7c9017e5 9364{
7c9017e5 9365 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cb05d8de 9366 uint32_t plane_bit = 0;
ffe74d75
CW
9367 int len, ret;
9368
eba905b2 9369 switch (intel_crtc->plane) {
cb05d8de
DV
9370 case PLANE_A:
9371 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9372 break;
9373 case PLANE_B:
9374 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9375 break;
9376 case PLANE_C:
9377 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9378 break;
9379 default:
9380 WARN_ONCE(1, "unknown plane in flip command\n");
4fa62c89 9381 return -ENODEV;
cb05d8de
DV
9382 }
9383
ffe74d75 9384 len = 4;
f476828a 9385 if (ring->id == RCS) {
ffe74d75 9386 len += 6;
f476828a
DL
9387 /*
9388 * On Gen 8, SRM is now taking an extra dword to accommodate
9389 * 48bits addresses, and we need a NOOP for the batch size to
9390 * stay even.
9391 */
9392 if (IS_GEN8(dev))
9393 len += 2;
9394 }
ffe74d75 9395
f66fab8e
VS
9396 /*
9397 * BSpec MI_DISPLAY_FLIP for IVB:
9398 * "The full packet must be contained within the same cache line."
9399 *
9400 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9401 * cacheline, if we ever start emitting more commands before
9402 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9403 * then do the cacheline alignment, and finally emit the
9404 * MI_DISPLAY_FLIP.
9405 */
9406 ret = intel_ring_cacheline_align(ring);
9407 if (ret)
4fa62c89 9408 return ret;
f66fab8e 9409
ffe74d75 9410 ret = intel_ring_begin(ring, len);
7c9017e5 9411 if (ret)
4fa62c89 9412 return ret;
7c9017e5 9413
ffe74d75
CW
9414 /* Unmask the flip-done completion message. Note that the bspec says that
9415 * we should do this for both the BCS and RCS, and that we must not unmask
9416 * more than one flip event at any time (or ensure that one flip message
9417 * can be sent by waiting for flip-done prior to queueing new flips).
9418 * Experimentation says that BCS works despite DERRMR masking all
9419 * flip-done completion events and that unmasking all planes at once
9420 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9421 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9422 */
9423 if (ring->id == RCS) {
9424 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9425 intel_ring_emit(ring, DERRMR);
9426 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9427 DERRMR_PIPEB_PRI_FLIP_DONE |
9428 DERRMR_PIPEC_PRI_FLIP_DONE));
f476828a
DL
9429 if (IS_GEN8(dev))
9430 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9431 MI_SRM_LRM_GLOBAL_GTT);
9432 else
9433 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9434 MI_SRM_LRM_GLOBAL_GTT);
ffe74d75
CW
9435 intel_ring_emit(ring, DERRMR);
9436 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
f476828a
DL
9437 if (IS_GEN8(dev)) {
9438 intel_ring_emit(ring, 0);
9439 intel_ring_emit(ring, MI_NOOP);
9440 }
ffe74d75
CW
9441 }
9442
cb05d8de 9443 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
01f2c773 9444 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
75f7f3ec 9445 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
7c9017e5 9446 intel_ring_emit(ring, (MI_NOOP));
e7d841ca
CW
9447
9448 intel_mark_page_flip_active(intel_crtc);
09246732 9449 __intel_ring_advance(ring);
83d4092b 9450 return 0;
7c9017e5
JB
9451}
9452
84c33a64
SG
9453static bool use_mmio_flip(struct intel_engine_cs *ring,
9454 struct drm_i915_gem_object *obj)
9455{
9456 /*
9457 * This is not being used for older platforms, because
9458 * non-availability of flip done interrupt forces us to use
9459 * CS flips. Older platforms derive flip done using some clever
9460 * tricks involving the flip_pending status bits and vblank irqs.
9461 * So using MMIO flips there would disrupt this mechanism.
9462 */
9463
8e09bf83
CW
9464 if (ring == NULL)
9465 return true;
9466
84c33a64
SG
9467 if (INTEL_INFO(ring->dev)->gen < 5)
9468 return false;
9469
9470 if (i915.use_mmio_flip < 0)
9471 return false;
9472 else if (i915.use_mmio_flip > 0)
9473 return true;
14bf993e
OM
9474 else if (i915.enable_execlists)
9475 return true;
84c33a64 9476 else
41c52415 9477 return ring != i915_gem_request_get_ring(obj->last_read_req);
84c33a64
SG
9478}
9479
ff944564
DL
9480static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
9481{
9482 struct drm_device *dev = intel_crtc->base.dev;
9483 struct drm_i915_private *dev_priv = dev->dev_private;
9484 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
9485 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
9486 struct drm_i915_gem_object *obj = intel_fb->obj;
9487 const enum pipe pipe = intel_crtc->pipe;
9488 u32 ctl, stride;
9489
9490 ctl = I915_READ(PLANE_CTL(pipe, 0));
9491 ctl &= ~PLANE_CTL_TILED_MASK;
9492 if (obj->tiling_mode == I915_TILING_X)
9493 ctl |= PLANE_CTL_TILED_X;
9494
9495 /*
9496 * The stride is either expressed as a multiple of 64 bytes chunks for
9497 * linear buffers or in number of tiles for tiled buffers.
9498 */
9499 stride = fb->pitches[0] >> 6;
9500 if (obj->tiling_mode == I915_TILING_X)
9501 stride = fb->pitches[0] >> 9; /* X tiles are 512 bytes wide */
9502
9503 /*
9504 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
9505 * PLANE_SURF updates, the update is then guaranteed to be atomic.
9506 */
9507 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
9508 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
9509
9510 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
9511 POSTING_READ(PLANE_SURF(pipe, 0));
9512}
9513
9514static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
84c33a64
SG
9515{
9516 struct drm_device *dev = intel_crtc->base.dev;
9517 struct drm_i915_private *dev_priv = dev->dev_private;
9518 struct intel_framebuffer *intel_fb =
9519 to_intel_framebuffer(intel_crtc->base.primary->fb);
9520 struct drm_i915_gem_object *obj = intel_fb->obj;
9521 u32 dspcntr;
9522 u32 reg;
9523
84c33a64
SG
9524 reg = DSPCNTR(intel_crtc->plane);
9525 dspcntr = I915_READ(reg);
9526
c5d97472
DL
9527 if (obj->tiling_mode != I915_TILING_NONE)
9528 dspcntr |= DISPPLANE_TILED;
9529 else
9530 dspcntr &= ~DISPPLANE_TILED;
9531
84c33a64
SG
9532 I915_WRITE(reg, dspcntr);
9533
9534 I915_WRITE(DSPSURF(intel_crtc->plane),
9535 intel_crtc->unpin_work->gtt_offset);
9536 POSTING_READ(DSPSURF(intel_crtc->plane));
84c33a64 9537
ff944564
DL
9538}
9539
9540/*
9541 * XXX: This is the temporary way to update the plane registers until we get
9542 * around to using the usual plane update functions for MMIO flips
9543 */
9544static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
9545{
9546 struct drm_device *dev = intel_crtc->base.dev;
9547 bool atomic_update;
9548 u32 start_vbl_count;
9549
9550 intel_mark_page_flip_active(intel_crtc);
9551
9552 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
9553
9554 if (INTEL_INFO(dev)->gen >= 9)
9555 skl_do_mmio_flip(intel_crtc);
9556 else
9557 /* use_mmio_flip() retricts MMIO flips to ilk+ */
9558 ilk_do_mmio_flip(intel_crtc);
9559
9362c7c5
ACO
9560 if (atomic_update)
9561 intel_pipe_update_end(intel_crtc, start_vbl_count);
84c33a64
SG
9562}
9563
9362c7c5 9564static void intel_mmio_flip_work_func(struct work_struct *work)
84c33a64 9565{
cc8c4cc2 9566 struct intel_crtc *crtc =
9362c7c5 9567 container_of(work, struct intel_crtc, mmio_flip.work);
cc8c4cc2 9568 struct intel_mmio_flip *mmio_flip;
84c33a64 9569
cc8c4cc2
JH
9570 mmio_flip = &crtc->mmio_flip;
9571 if (mmio_flip->req)
9c654818
JH
9572 WARN_ON(__i915_wait_request(mmio_flip->req,
9573 crtc->reset_counter,
9574 false, NULL, NULL) != 0);
84c33a64 9575
cc8c4cc2
JH
9576 intel_do_mmio_flip(crtc);
9577 if (mmio_flip->req) {
9578 mutex_lock(&crtc->base.dev->struct_mutex);
146d84f0 9579 i915_gem_request_assign(&mmio_flip->req, NULL);
cc8c4cc2
JH
9580 mutex_unlock(&crtc->base.dev->struct_mutex);
9581 }
84c33a64
SG
9582}
9583
9584static int intel_queue_mmio_flip(struct drm_device *dev,
9585 struct drm_crtc *crtc,
9586 struct drm_framebuffer *fb,
9587 struct drm_i915_gem_object *obj,
9588 struct intel_engine_cs *ring,
9589 uint32_t flags)
9590{
84c33a64 9591 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
84c33a64 9592
cc8c4cc2
JH
9593 i915_gem_request_assign(&intel_crtc->mmio_flip.req,
9594 obj->last_write_req);
536f5b5e
ACO
9595
9596 schedule_work(&intel_crtc->mmio_flip.work);
84c33a64 9597
84c33a64
SG
9598 return 0;
9599}
9600
830c81db
DL
9601static int intel_gen9_queue_flip(struct drm_device *dev,
9602 struct drm_crtc *crtc,
9603 struct drm_framebuffer *fb,
9604 struct drm_i915_gem_object *obj,
9605 struct intel_engine_cs *ring,
9606 uint32_t flags)
9607{
9608 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9609 uint32_t plane = 0, stride;
9610 int ret;
9611
9612 switch(intel_crtc->pipe) {
9613 case PIPE_A:
9614 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_A;
9615 break;
9616 case PIPE_B:
9617 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_B;
9618 break;
9619 case PIPE_C:
9620 plane = MI_DISPLAY_FLIP_SKL_PLANE_1_C;
9621 break;
9622 default:
9623 WARN_ONCE(1, "unknown plane in flip command\n");
9624 return -ENODEV;
9625 }
9626
9627 switch (obj->tiling_mode) {
9628 case I915_TILING_NONE:
9629 stride = fb->pitches[0] >> 6;
9630 break;
9631 case I915_TILING_X:
9632 stride = fb->pitches[0] >> 9;
9633 break;
9634 default:
9635 WARN_ONCE(1, "unknown tiling in flip command\n");
9636 return -ENODEV;
9637 }
9638
9639 ret = intel_ring_begin(ring, 10);
9640 if (ret)
9641 return ret;
9642
9643 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9644 intel_ring_emit(ring, DERRMR);
9645 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9646 DERRMR_PIPEB_PRI_FLIP_DONE |
9647 DERRMR_PIPEC_PRI_FLIP_DONE));
9648 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9649 MI_SRM_LRM_GLOBAL_GTT);
9650 intel_ring_emit(ring, DERRMR);
9651 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
9652 intel_ring_emit(ring, 0);
9653
9654 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane);
9655 intel_ring_emit(ring, stride << 6 | obj->tiling_mode);
9656 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
9657
9658 intel_mark_page_flip_active(intel_crtc);
9659 __intel_ring_advance(ring);
9660
9661 return 0;
9662}
9663
8c9f3aaf
JB
9664static int intel_default_queue_flip(struct drm_device *dev,
9665 struct drm_crtc *crtc,
9666 struct drm_framebuffer *fb,
ed8d1975 9667 struct drm_i915_gem_object *obj,
a4872ba6 9668 struct intel_engine_cs *ring,
ed8d1975 9669 uint32_t flags)
8c9f3aaf
JB
9670{
9671 return -ENODEV;
9672}
9673
d6bbafa1
CW
9674static bool __intel_pageflip_stall_check(struct drm_device *dev,
9675 struct drm_crtc *crtc)
9676{
9677 struct drm_i915_private *dev_priv = dev->dev_private;
9678 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9679 struct intel_unpin_work *work = intel_crtc->unpin_work;
9680 u32 addr;
9681
9682 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
9683 return true;
9684
9685 if (!work->enable_stall_check)
9686 return false;
9687
9688 if (work->flip_ready_vblank == 0) {
3a8a946e
DV
9689 if (work->flip_queued_req &&
9690 !i915_gem_request_completed(work->flip_queued_req, true))
d6bbafa1
CW
9691 return false;
9692
9693 work->flip_ready_vblank = drm_vblank_count(dev, intel_crtc->pipe);
9694 }
9695
9696 if (drm_vblank_count(dev, intel_crtc->pipe) - work->flip_ready_vblank < 3)
9697 return false;
9698
9699 /* Potential stall - if we see that the flip has happened,
9700 * assume a missed interrupt. */
9701 if (INTEL_INFO(dev)->gen >= 4)
9702 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
9703 else
9704 addr = I915_READ(DSPADDR(intel_crtc->plane));
9705
9706 /* There is a potential issue here with a false positive after a flip
9707 * to the same address. We could address this by checking for a
9708 * non-incrementing frame counter.
9709 */
9710 return addr == work->gtt_offset;
9711}
9712
9713void intel_check_page_flip(struct drm_device *dev, int pipe)
9714{
9715 struct drm_i915_private *dev_priv = dev->dev_private;
9716 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
9717 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
f326038a
DV
9718
9719 WARN_ON(!in_irq());
d6bbafa1
CW
9720
9721 if (crtc == NULL)
9722 return;
9723
f326038a 9724 spin_lock(&dev->event_lock);
d6bbafa1
CW
9725 if (intel_crtc->unpin_work && __intel_pageflip_stall_check(dev, crtc)) {
9726 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
9727 intel_crtc->unpin_work->flip_queued_vblank, drm_vblank_count(dev, pipe));
9728 page_flip_completed(intel_crtc);
9729 }
f326038a 9730 spin_unlock(&dev->event_lock);
d6bbafa1
CW
9731}
9732
6b95a207
KH
9733static int intel_crtc_page_flip(struct drm_crtc *crtc,
9734 struct drm_framebuffer *fb,
ed8d1975
KP
9735 struct drm_pending_vblank_event *event,
9736 uint32_t page_flip_flags)
6b95a207
KH
9737{
9738 struct drm_device *dev = crtc->dev;
9739 struct drm_i915_private *dev_priv = dev->dev_private;
f4510a27 9740 struct drm_framebuffer *old_fb = crtc->primary->fb;
2ff8fde1 9741 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
6b95a207 9742 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
455a6808 9743 struct drm_plane *primary = crtc->primary;
a071fa00 9744 enum pipe pipe = intel_crtc->pipe;
6b95a207 9745 struct intel_unpin_work *work;
a4872ba6 9746 struct intel_engine_cs *ring;
52e68630 9747 int ret;
6b95a207 9748
2ff8fde1
MR
9749 /*
9750 * drm_mode_page_flip_ioctl() should already catch this, but double
9751 * check to be safe. In the future we may enable pageflipping from
9752 * a disabled primary plane.
9753 */
9754 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
9755 return -EBUSY;
9756
e6a595d2 9757 /* Can't change pixel format via MI display flips. */
f4510a27 9758 if (fb->pixel_format != crtc->primary->fb->pixel_format)
e6a595d2
VS
9759 return -EINVAL;
9760
9761 /*
9762 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9763 * Note that pitch changes could also affect these register.
9764 */
9765 if (INTEL_INFO(dev)->gen > 3 &&
f4510a27
MR
9766 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9767 fb->pitches[0] != crtc->primary->fb->pitches[0]))
e6a595d2
VS
9768 return -EINVAL;
9769
f900db47
CW
9770 if (i915_terminally_wedged(&dev_priv->gpu_error))
9771 goto out_hang;
9772
b14c5679 9773 work = kzalloc(sizeof(*work), GFP_KERNEL);
6b95a207
KH
9774 if (work == NULL)
9775 return -ENOMEM;
9776
6b95a207 9777 work->event = event;
b4a98e57 9778 work->crtc = crtc;
2ff8fde1 9779 work->old_fb_obj = intel_fb_obj(old_fb);
6b95a207
KH
9780 INIT_WORK(&work->work, intel_unpin_work_fn);
9781
87b6b101 9782 ret = drm_crtc_vblank_get(crtc);
7317c75e
JB
9783 if (ret)
9784 goto free_work;
9785
6b95a207 9786 /* We borrow the event spin lock for protecting unpin_work */
5e2d7afc 9787 spin_lock_irq(&dev->event_lock);
6b95a207 9788 if (intel_crtc->unpin_work) {
d6bbafa1
CW
9789 /* Before declaring the flip queue wedged, check if
9790 * the hardware completed the operation behind our backs.
9791 */
9792 if (__intel_pageflip_stall_check(dev, crtc)) {
9793 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
9794 page_flip_completed(intel_crtc);
9795 } else {
9796 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
5e2d7afc 9797 spin_unlock_irq(&dev->event_lock);
468f0b44 9798
d6bbafa1
CW
9799 drm_crtc_vblank_put(crtc);
9800 kfree(work);
9801 return -EBUSY;
9802 }
6b95a207
KH
9803 }
9804 intel_crtc->unpin_work = work;
5e2d7afc 9805 spin_unlock_irq(&dev->event_lock);
6b95a207 9806
b4a98e57
CW
9807 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9808 flush_workqueue(dev_priv->wq);
9809
79158103
CW
9810 ret = i915_mutex_lock_interruptible(dev);
9811 if (ret)
9812 goto cleanup;
6b95a207 9813
75dfca80 9814 /* Reference the objects for the scheduled work. */
05394f39
CW
9815 drm_gem_object_reference(&work->old_fb_obj->base);
9816 drm_gem_object_reference(&obj->base);
6b95a207 9817
f4510a27 9818 crtc->primary->fb = fb;
96b099fd 9819
e1f99ce6 9820 work->pending_flip_obj = obj;
e1f99ce6 9821
b4a98e57 9822 atomic_inc(&intel_crtc->unpin_work_count);
10d83730 9823 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
e1f99ce6 9824
75f7f3ec 9825 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
a071fa00 9826 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
75f7f3ec 9827
4fa62c89
VS
9828 if (IS_VALLEYVIEW(dev)) {
9829 ring = &dev_priv->ring[BCS];
8e09bf83
CW
9830 if (obj->tiling_mode != work->old_fb_obj->tiling_mode)
9831 /* vlv: DISPLAY_FLIP fails to change tiling */
9832 ring = NULL;
48bf5b2d 9833 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
2a92d5bc 9834 ring = &dev_priv->ring[BCS];
4fa62c89 9835 } else if (INTEL_INFO(dev)->gen >= 7) {
41c52415 9836 ring = i915_gem_request_get_ring(obj->last_read_req);
4fa62c89
VS
9837 if (ring == NULL || ring->id != RCS)
9838 ring = &dev_priv->ring[BCS];
9839 } else {
9840 ring = &dev_priv->ring[RCS];
9841 }
9842
850c4cdc 9843 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb, ring);
8c9f3aaf
JB
9844 if (ret)
9845 goto cleanup_pending;
6b95a207 9846
4fa62c89
VS
9847 work->gtt_offset =
9848 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9849
d6bbafa1 9850 if (use_mmio_flip(ring, obj)) {
84c33a64
SG
9851 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
9852 page_flip_flags);
d6bbafa1
CW
9853 if (ret)
9854 goto cleanup_unpin;
9855
f06cc1b9
JH
9856 i915_gem_request_assign(&work->flip_queued_req,
9857 obj->last_write_req);
d6bbafa1 9858 } else {
84c33a64 9859 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring,
d6bbafa1
CW
9860 page_flip_flags);
9861 if (ret)
9862 goto cleanup_unpin;
9863
f06cc1b9
JH
9864 i915_gem_request_assign(&work->flip_queued_req,
9865 intel_ring_get_request(ring));
d6bbafa1
CW
9866 }
9867
9868 work->flip_queued_vblank = drm_vblank_count(dev, intel_crtc->pipe);
9869 work->enable_stall_check = true;
4fa62c89 9870
a071fa00
DV
9871 i915_gem_track_fb(work->old_fb_obj, obj,
9872 INTEL_FRONTBUFFER_PRIMARY(pipe));
9873
7ff0ebcc 9874 intel_fbc_disable(dev);
f99d7069 9875 intel_frontbuffer_flip_prepare(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
6b95a207
KH
9876 mutex_unlock(&dev->struct_mutex);
9877
e5510fac
JB
9878 trace_i915_flip_request(intel_crtc->plane, obj);
9879
6b95a207 9880 return 0;
96b099fd 9881
4fa62c89
VS
9882cleanup_unpin:
9883 intel_unpin_fb_obj(obj);
8c9f3aaf 9884cleanup_pending:
b4a98e57 9885 atomic_dec(&intel_crtc->unpin_work_count);
f4510a27 9886 crtc->primary->fb = old_fb;
05394f39
CW
9887 drm_gem_object_unreference(&work->old_fb_obj->base);
9888 drm_gem_object_unreference(&obj->base);
96b099fd
CW
9889 mutex_unlock(&dev->struct_mutex);
9890
79158103 9891cleanup:
5e2d7afc 9892 spin_lock_irq(&dev->event_lock);
96b099fd 9893 intel_crtc->unpin_work = NULL;
5e2d7afc 9894 spin_unlock_irq(&dev->event_lock);
96b099fd 9895
87b6b101 9896 drm_crtc_vblank_put(crtc);
7317c75e 9897free_work:
96b099fd
CW
9898 kfree(work);
9899
f900db47
CW
9900 if (ret == -EIO) {
9901out_hang:
53a366b9 9902 ret = intel_plane_restore(primary);
f0d3dad3 9903 if (ret == 0 && event) {
5e2d7afc 9904 spin_lock_irq(&dev->event_lock);
a071fa00 9905 drm_send_vblank_event(dev, pipe, event);
5e2d7afc 9906 spin_unlock_irq(&dev->event_lock);
f0d3dad3 9907 }
f900db47 9908 }
96b099fd 9909 return ret;
6b95a207
KH
9910}
9911
f6e5b160 9912static struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160
CW
9913 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9914 .load_lut = intel_crtc_load_lut,
ea2c67bb
MR
9915 .atomic_begin = intel_begin_crtc_commit,
9916 .atomic_flush = intel_finish_crtc_commit,
f6e5b160
CW
9917};
9918
9a935856
DV
9919/**
9920 * intel_modeset_update_staged_output_state
9921 *
9922 * Updates the staged output configuration state, e.g. after we've read out the
9923 * current hw state.
9924 */
9925static void intel_modeset_update_staged_output_state(struct drm_device *dev)
f6e5b160 9926{
7668851f 9927 struct intel_crtc *crtc;
9a935856
DV
9928 struct intel_encoder *encoder;
9929 struct intel_connector *connector;
f6e5b160 9930
9a935856
DV
9931 list_for_each_entry(connector, &dev->mode_config.connector_list,
9932 base.head) {
9933 connector->new_encoder =
9934 to_intel_encoder(connector->base.encoder);
9935 }
f6e5b160 9936
b2784e15 9937 for_each_intel_encoder(dev, encoder) {
9a935856
DV
9938 encoder->new_crtc =
9939 to_intel_crtc(encoder->base.crtc);
9940 }
7668851f 9941
d3fcc808 9942 for_each_intel_crtc(dev, crtc) {
7668851f 9943 crtc->new_enabled = crtc->base.enabled;
7bd0a8e7
VS
9944
9945 if (crtc->new_enabled)
6e3c9717 9946 crtc->new_config = crtc->config;
7bd0a8e7
VS
9947 else
9948 crtc->new_config = NULL;
7668851f 9949 }
f6e5b160
CW
9950}
9951
9a935856
DV
9952/**
9953 * intel_modeset_commit_output_state
9954 *
9955 * This function copies the stage display pipe configuration to the real one.
9956 */
9957static void intel_modeset_commit_output_state(struct drm_device *dev)
9958{
7668851f 9959 struct intel_crtc *crtc;
9a935856
DV
9960 struct intel_encoder *encoder;
9961 struct intel_connector *connector;
f6e5b160 9962
9a935856
DV
9963 list_for_each_entry(connector, &dev->mode_config.connector_list,
9964 base.head) {
9965 connector->base.encoder = &connector->new_encoder->base;
9966 }
f6e5b160 9967
b2784e15 9968 for_each_intel_encoder(dev, encoder) {
9a935856
DV
9969 encoder->base.crtc = &encoder->new_crtc->base;
9970 }
7668851f 9971
d3fcc808 9972 for_each_intel_crtc(dev, crtc) {
7668851f
VS
9973 crtc->base.enabled = crtc->new_enabled;
9974 }
9a935856
DV
9975}
9976
050f7aeb 9977static void
eba905b2 9978connected_sink_compute_bpp(struct intel_connector *connector,
5cec258b 9979 struct intel_crtc_state *pipe_config)
050f7aeb
DV
9980{
9981 int bpp = pipe_config->pipe_bpp;
9982
9983 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9984 connector->base.base.id,
c23cc417 9985 connector->base.name);
050f7aeb
DV
9986
9987 /* Don't use an invalid EDID bpc value */
9988 if (connector->base.display_info.bpc &&
9989 connector->base.display_info.bpc * 3 < bpp) {
9990 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9991 bpp, connector->base.display_info.bpc*3);
9992 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9993 }
9994
9995 /* Clamp bpp to 8 on screens without EDID 1.4 */
9996 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9997 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9998 bpp);
9999 pipe_config->pipe_bpp = 24;
10000 }
10001}
10002
4e53c2e0 10003static int
050f7aeb
DV
10004compute_baseline_pipe_bpp(struct intel_crtc *crtc,
10005 struct drm_framebuffer *fb,
5cec258b 10006 struct intel_crtc_state *pipe_config)
4e53c2e0 10007{
050f7aeb
DV
10008 struct drm_device *dev = crtc->base.dev;
10009 struct intel_connector *connector;
4e53c2e0
DV
10010 int bpp;
10011
d42264b1
DV
10012 switch (fb->pixel_format) {
10013 case DRM_FORMAT_C8:
4e53c2e0
DV
10014 bpp = 8*3; /* since we go through a colormap */
10015 break;
d42264b1
DV
10016 case DRM_FORMAT_XRGB1555:
10017 case DRM_FORMAT_ARGB1555:
10018 /* checked in intel_framebuffer_init already */
10019 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
10020 return -EINVAL;
10021 case DRM_FORMAT_RGB565:
4e53c2e0
DV
10022 bpp = 6*3; /* min is 18bpp */
10023 break;
d42264b1
DV
10024 case DRM_FORMAT_XBGR8888:
10025 case DRM_FORMAT_ABGR8888:
10026 /* checked in intel_framebuffer_init already */
10027 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
10028 return -EINVAL;
10029 case DRM_FORMAT_XRGB8888:
10030 case DRM_FORMAT_ARGB8888:
4e53c2e0
DV
10031 bpp = 8*3;
10032 break;
d42264b1
DV
10033 case DRM_FORMAT_XRGB2101010:
10034 case DRM_FORMAT_ARGB2101010:
10035 case DRM_FORMAT_XBGR2101010:
10036 case DRM_FORMAT_ABGR2101010:
10037 /* checked in intel_framebuffer_init already */
10038 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
baba133a 10039 return -EINVAL;
4e53c2e0
DV
10040 bpp = 10*3;
10041 break;
baba133a 10042 /* TODO: gen4+ supports 16 bpc floating point, too. */
4e53c2e0
DV
10043 default:
10044 DRM_DEBUG_KMS("unsupported depth\n");
10045 return -EINVAL;
10046 }
10047
4e53c2e0
DV
10048 pipe_config->pipe_bpp = bpp;
10049
10050 /* Clamp display bpp to EDID value */
10051 list_for_each_entry(connector, &dev->mode_config.connector_list,
050f7aeb 10052 base.head) {
1b829e05
DV
10053 if (!connector->new_encoder ||
10054 connector->new_encoder->new_crtc != crtc)
4e53c2e0
DV
10055 continue;
10056
050f7aeb 10057 connected_sink_compute_bpp(connector, pipe_config);
4e53c2e0
DV
10058 }
10059
10060 return bpp;
10061}
10062
644db711
DV
10063static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
10064{
10065 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
10066 "type: 0x%x flags: 0x%x\n",
1342830c 10067 mode->crtc_clock,
644db711
DV
10068 mode->crtc_hdisplay, mode->crtc_hsync_start,
10069 mode->crtc_hsync_end, mode->crtc_htotal,
10070 mode->crtc_vdisplay, mode->crtc_vsync_start,
10071 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
10072}
10073
c0b03411 10074static void intel_dump_pipe_config(struct intel_crtc *crtc,
5cec258b 10075 struct intel_crtc_state *pipe_config,
c0b03411
DV
10076 const char *context)
10077{
10078 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
10079 context, pipe_name(crtc->pipe));
10080
10081 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
10082 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
10083 pipe_config->pipe_bpp, pipe_config->dither);
10084 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10085 pipe_config->has_pch_encoder,
10086 pipe_config->fdi_lanes,
10087 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
10088 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
10089 pipe_config->fdi_m_n.tu);
eb14cb74
VS
10090 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10091 pipe_config->has_dp_encoder,
10092 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
10093 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
10094 pipe_config->dp_m_n.tu);
b95af8be
VK
10095
10096 DRM_DEBUG_KMS("dp: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
10097 pipe_config->has_dp_encoder,
10098 pipe_config->dp_m2_n2.gmch_m,
10099 pipe_config->dp_m2_n2.gmch_n,
10100 pipe_config->dp_m2_n2.link_m,
10101 pipe_config->dp_m2_n2.link_n,
10102 pipe_config->dp_m2_n2.tu);
10103
55072d19
DV
10104 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
10105 pipe_config->has_audio,
10106 pipe_config->has_infoframe);
10107
c0b03411 10108 DRM_DEBUG_KMS("requested mode:\n");
2d112de7 10109 drm_mode_debug_printmodeline(&pipe_config->base.mode);
c0b03411 10110 DRM_DEBUG_KMS("adjusted mode:\n");
2d112de7
ACO
10111 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
10112 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
d71b8d4a 10113 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
37327abd
VS
10114 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
10115 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
c0b03411
DV
10116 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
10117 pipe_config->gmch_pfit.control,
10118 pipe_config->gmch_pfit.pgm_ratios,
10119 pipe_config->gmch_pfit.lvds_border_bits);
fd4daa9c 10120 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
c0b03411 10121 pipe_config->pch_pfit.pos,
fd4daa9c
CW
10122 pipe_config->pch_pfit.size,
10123 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
42db64ef 10124 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
cf532bb2 10125 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
c0b03411
DV
10126}
10127
bc079e8b
VS
10128static bool encoders_cloneable(const struct intel_encoder *a,
10129 const struct intel_encoder *b)
accfc0c5 10130{
bc079e8b
VS
10131 /* masks could be asymmetric, so check both ways */
10132 return a == b || (a->cloneable & (1 << b->type) &&
10133 b->cloneable & (1 << a->type));
10134}
10135
10136static bool check_single_encoder_cloning(struct intel_crtc *crtc,
10137 struct intel_encoder *encoder)
10138{
10139 struct drm_device *dev = crtc->base.dev;
10140 struct intel_encoder *source_encoder;
10141
b2784e15 10142 for_each_intel_encoder(dev, source_encoder) {
bc079e8b
VS
10143 if (source_encoder->new_crtc != crtc)
10144 continue;
10145
10146 if (!encoders_cloneable(encoder, source_encoder))
10147 return false;
10148 }
10149
10150 return true;
10151}
10152
10153static bool check_encoder_cloning(struct intel_crtc *crtc)
10154{
10155 struct drm_device *dev = crtc->base.dev;
accfc0c5
DV
10156 struct intel_encoder *encoder;
10157
b2784e15 10158 for_each_intel_encoder(dev, encoder) {
bc079e8b 10159 if (encoder->new_crtc != crtc)
accfc0c5
DV
10160 continue;
10161
bc079e8b
VS
10162 if (!check_single_encoder_cloning(crtc, encoder))
10163 return false;
accfc0c5
DV
10164 }
10165
bc079e8b 10166 return true;
accfc0c5
DV
10167}
10168
00f0b378
VS
10169static bool check_digital_port_conflicts(struct drm_device *dev)
10170{
10171 struct intel_connector *connector;
10172 unsigned int used_ports = 0;
10173
10174 /*
10175 * Walk the connector list instead of the encoder
10176 * list to detect the problem on ddi platforms
10177 * where there's just one encoder per digital port.
10178 */
10179 list_for_each_entry(connector,
10180 &dev->mode_config.connector_list, base.head) {
10181 struct intel_encoder *encoder = connector->new_encoder;
10182
10183 if (!encoder)
10184 continue;
10185
10186 WARN_ON(!encoder->new_crtc);
10187
10188 switch (encoder->type) {
10189 unsigned int port_mask;
10190 case INTEL_OUTPUT_UNKNOWN:
10191 if (WARN_ON(!HAS_DDI(dev)))
10192 break;
10193 case INTEL_OUTPUT_DISPLAYPORT:
10194 case INTEL_OUTPUT_HDMI:
10195 case INTEL_OUTPUT_EDP:
10196 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
10197
10198 /* the same port mustn't appear more than once */
10199 if (used_ports & port_mask)
10200 return false;
10201
10202 used_ports |= port_mask;
10203 default:
10204 break;
10205 }
10206 }
10207
10208 return true;
10209}
10210
5cec258b 10211static struct intel_crtc_state *
b8cecdf5 10212intel_modeset_pipe_config(struct drm_crtc *crtc,
4e53c2e0 10213 struct drm_framebuffer *fb,
b8cecdf5 10214 struct drm_display_mode *mode)
ee7b9f93 10215{
7758a113 10216 struct drm_device *dev = crtc->dev;
7758a113 10217 struct intel_encoder *encoder;
5cec258b 10218 struct intel_crtc_state *pipe_config;
e29c22c0
DV
10219 int plane_bpp, ret = -EINVAL;
10220 bool retry = true;
ee7b9f93 10221
bc079e8b 10222 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
accfc0c5
DV
10223 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
10224 return ERR_PTR(-EINVAL);
10225 }
10226
00f0b378
VS
10227 if (!check_digital_port_conflicts(dev)) {
10228 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
10229 return ERR_PTR(-EINVAL);
10230 }
10231
b8cecdf5
DV
10232 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10233 if (!pipe_config)
7758a113
DV
10234 return ERR_PTR(-ENOMEM);
10235
2d112de7
ACO
10236 drm_mode_copy(&pipe_config->base.adjusted_mode, mode);
10237 drm_mode_copy(&pipe_config->base.mode, mode);
37327abd 10238
e143a21c
DV
10239 pipe_config->cpu_transcoder =
10240 (enum transcoder) to_intel_crtc(crtc)->pipe;
c0d43d62 10241 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
b8cecdf5 10242
2960bc9c
ID
10243 /*
10244 * Sanitize sync polarity flags based on requested ones. If neither
10245 * positive or negative polarity is requested, treat this as meaning
10246 * negative polarity.
10247 */
2d112de7 10248 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 10249 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
2d112de7 10250 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
2960bc9c 10251
2d112de7 10252 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 10253 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
2d112de7 10254 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
2960bc9c 10255
050f7aeb
DV
10256 /* Compute a starting value for pipe_config->pipe_bpp taking the source
10257 * plane pixel format and any sink constraints into account. Returns the
10258 * source plane bpp so that dithering can be selected on mismatches
10259 * after encoders and crtc also have had their say. */
10260 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
10261 fb, pipe_config);
4e53c2e0
DV
10262 if (plane_bpp < 0)
10263 goto fail;
10264
e41a56be
VS
10265 /*
10266 * Determine the real pipe dimensions. Note that stereo modes can
10267 * increase the actual pipe size due to the frame doubling and
10268 * insertion of additional space for blanks between the frame. This
10269 * is stored in the crtc timings. We use the requested mode to do this
10270 * computation to clearly distinguish it from the adjusted mode, which
10271 * can be changed by the connectors in the below retry loop.
10272 */
2d112de7 10273 drm_crtc_get_hv_timing(&pipe_config->base.mode,
ecb7e16b
GP
10274 &pipe_config->pipe_src_w,
10275 &pipe_config->pipe_src_h);
e41a56be 10276
e29c22c0 10277encoder_retry:
ef1b460d 10278 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 10279 pipe_config->port_clock = 0;
ef1b460d 10280 pipe_config->pixel_multiplier = 1;
ff9a6750 10281
135c81b8 10282 /* Fill in default crtc timings, allow encoders to overwrite them. */
2d112de7
ACO
10283 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
10284 CRTC_STEREO_DOUBLE);
135c81b8 10285
7758a113
DV
10286 /* Pass our mode to the connectors and the CRTC to give them a chance to
10287 * adjust it according to limitations or connector properties, and also
10288 * a chance to reject the mode entirely.
47f1c6c9 10289 */
b2784e15 10290 for_each_intel_encoder(dev, encoder) {
47f1c6c9 10291
7758a113
DV
10292 if (&encoder->new_crtc->base != crtc)
10293 continue;
7ae89233 10294
efea6e8e
DV
10295 if (!(encoder->compute_config(encoder, pipe_config))) {
10296 DRM_DEBUG_KMS("Encoder config failure\n");
7758a113
DV
10297 goto fail;
10298 }
ee7b9f93 10299 }
47f1c6c9 10300
ff9a6750
DV
10301 /* Set default port clock if not overwritten by the encoder. Needs to be
10302 * done afterwards in case the encoder adjusts the mode. */
10303 if (!pipe_config->port_clock)
2d112de7 10304 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
241bfc38 10305 * pipe_config->pixel_multiplier;
ff9a6750 10306
a43f6e0f 10307 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 10308 if (ret < 0) {
7758a113
DV
10309 DRM_DEBUG_KMS("CRTC fixup failed\n");
10310 goto fail;
ee7b9f93 10311 }
e29c22c0
DV
10312
10313 if (ret == RETRY) {
10314 if (WARN(!retry, "loop in pipe configuration computation\n")) {
10315 ret = -EINVAL;
10316 goto fail;
10317 }
10318
10319 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
10320 retry = false;
10321 goto encoder_retry;
10322 }
10323
4e53c2e0
DV
10324 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
10325 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
10326 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
10327
b8cecdf5 10328 return pipe_config;
7758a113 10329fail:
b8cecdf5 10330 kfree(pipe_config);
e29c22c0 10331 return ERR_PTR(ret);
ee7b9f93 10332}
47f1c6c9 10333
e2e1ed41
DV
10334/* Computes which crtcs are affected and sets the relevant bits in the mask. For
10335 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
10336static void
10337intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
10338 unsigned *prepare_pipes, unsigned *disable_pipes)
79e53945
JB
10339{
10340 struct intel_crtc *intel_crtc;
e2e1ed41
DV
10341 struct drm_device *dev = crtc->dev;
10342 struct intel_encoder *encoder;
10343 struct intel_connector *connector;
10344 struct drm_crtc *tmp_crtc;
79e53945 10345
e2e1ed41 10346 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
79e53945 10347
e2e1ed41
DV
10348 /* Check which crtcs have changed outputs connected to them, these need
10349 * to be part of the prepare_pipes mask. We don't (yet) support global
10350 * modeset across multiple crtcs, so modeset_pipes will only have one
10351 * bit set at most. */
10352 list_for_each_entry(connector, &dev->mode_config.connector_list,
10353 base.head) {
10354 if (connector->base.encoder == &connector->new_encoder->base)
10355 continue;
79e53945 10356
e2e1ed41
DV
10357 if (connector->base.encoder) {
10358 tmp_crtc = connector->base.encoder->crtc;
10359
10360 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10361 }
10362
10363 if (connector->new_encoder)
10364 *prepare_pipes |=
10365 1 << connector->new_encoder->new_crtc->pipe;
79e53945
JB
10366 }
10367
b2784e15 10368 for_each_intel_encoder(dev, encoder) {
e2e1ed41
DV
10369 if (encoder->base.crtc == &encoder->new_crtc->base)
10370 continue;
10371
10372 if (encoder->base.crtc) {
10373 tmp_crtc = encoder->base.crtc;
10374
10375 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
10376 }
10377
10378 if (encoder->new_crtc)
10379 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
80824003
JB
10380 }
10381
7668851f 10382 /* Check for pipes that will be enabled/disabled ... */
d3fcc808 10383 for_each_intel_crtc(dev, intel_crtc) {
7668851f 10384 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
e2e1ed41 10385 continue;
7e7d76c3 10386
7668851f 10387 if (!intel_crtc->new_enabled)
e2e1ed41 10388 *disable_pipes |= 1 << intel_crtc->pipe;
7668851f
VS
10389 else
10390 *prepare_pipes |= 1 << intel_crtc->pipe;
7e7d76c3
JB
10391 }
10392
e2e1ed41
DV
10393
10394 /* set_mode is also used to update properties on life display pipes. */
10395 intel_crtc = to_intel_crtc(crtc);
7668851f 10396 if (intel_crtc->new_enabled)
e2e1ed41
DV
10397 *prepare_pipes |= 1 << intel_crtc->pipe;
10398
b6c5164d
DV
10399 /*
10400 * For simplicity do a full modeset on any pipe where the output routing
10401 * changed. We could be more clever, but that would require us to be
10402 * more careful with calling the relevant encoder->mode_set functions.
10403 */
e2e1ed41
DV
10404 if (*prepare_pipes)
10405 *modeset_pipes = *prepare_pipes;
10406
10407 /* ... and mask these out. */
10408 *modeset_pipes &= ~(*disable_pipes);
10409 *prepare_pipes &= ~(*disable_pipes);
b6c5164d
DV
10410
10411 /*
10412 * HACK: We don't (yet) fully support global modesets. intel_set_config
10413 * obies this rule, but the modeset restore mode of
10414 * intel_modeset_setup_hw_state does not.
10415 */
10416 *modeset_pipes &= 1 << intel_crtc->pipe;
10417 *prepare_pipes &= 1 << intel_crtc->pipe;
e3641d3f
DV
10418
10419 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
10420 *modeset_pipes, *prepare_pipes, *disable_pipes);
47f1c6c9 10421}
79e53945 10422
ea9d758d 10423static bool intel_crtc_in_use(struct drm_crtc *crtc)
f6e5b160 10424{
ea9d758d 10425 struct drm_encoder *encoder;
f6e5b160 10426 struct drm_device *dev = crtc->dev;
f6e5b160 10427
ea9d758d
DV
10428 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
10429 if (encoder->crtc == crtc)
10430 return true;
10431
10432 return false;
10433}
10434
10435static void
10436intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
10437{
ba41c0de 10438 struct drm_i915_private *dev_priv = dev->dev_private;
ea9d758d
DV
10439 struct intel_encoder *intel_encoder;
10440 struct intel_crtc *intel_crtc;
10441 struct drm_connector *connector;
10442
ba41c0de
DV
10443 intel_shared_dpll_commit(dev_priv);
10444
b2784e15 10445 for_each_intel_encoder(dev, intel_encoder) {
ea9d758d
DV
10446 if (!intel_encoder->base.crtc)
10447 continue;
10448
10449 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
10450
10451 if (prepare_pipes & (1 << intel_crtc->pipe))
10452 intel_encoder->connectors_active = false;
10453 }
10454
10455 intel_modeset_commit_output_state(dev);
10456
7668851f 10457 /* Double check state. */
d3fcc808 10458 for_each_intel_crtc(dev, intel_crtc) {
7668851f 10459 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
7bd0a8e7 10460 WARN_ON(intel_crtc->new_config &&
6e3c9717 10461 intel_crtc->new_config != intel_crtc->config);
7bd0a8e7 10462 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
ea9d758d
DV
10463 }
10464
10465 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
10466 if (!connector->encoder || !connector->encoder->crtc)
10467 continue;
10468
10469 intel_crtc = to_intel_crtc(connector->encoder->crtc);
10470
10471 if (prepare_pipes & (1 << intel_crtc->pipe)) {
68d34720
DV
10472 struct drm_property *dpms_property =
10473 dev->mode_config.dpms_property;
10474
ea9d758d 10475 connector->dpms = DRM_MODE_DPMS_ON;
662595df 10476 drm_object_property_set_value(&connector->base,
68d34720
DV
10477 dpms_property,
10478 DRM_MODE_DPMS_ON);
ea9d758d
DV
10479
10480 intel_encoder = to_intel_encoder(connector->encoder);
10481 intel_encoder->connectors_active = true;
10482 }
10483 }
10484
10485}
10486
3bd26263 10487static bool intel_fuzzy_clock_check(int clock1, int clock2)
f1f644dc 10488{
3bd26263 10489 int diff;
f1f644dc
JB
10490
10491 if (clock1 == clock2)
10492 return true;
10493
10494 if (!clock1 || !clock2)
10495 return false;
10496
10497 diff = abs(clock1 - clock2);
10498
10499 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
10500 return true;
10501
10502 return false;
10503}
10504
25c5b266
DV
10505#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
10506 list_for_each_entry((intel_crtc), \
10507 &(dev)->mode_config.crtc_list, \
10508 base.head) \
0973f18f 10509 if (mask & (1 <<(intel_crtc)->pipe))
25c5b266 10510
0e8ffe1b 10511static bool
2fa2fe9a 10512intel_pipe_config_compare(struct drm_device *dev,
5cec258b
ACO
10513 struct intel_crtc_state *current_config,
10514 struct intel_crtc_state *pipe_config)
0e8ffe1b 10515{
66e985c0
DV
10516#define PIPE_CONF_CHECK_X(name) \
10517 if (current_config->name != pipe_config->name) { \
10518 DRM_ERROR("mismatch in " #name " " \
10519 "(expected 0x%08x, found 0x%08x)\n", \
10520 current_config->name, \
10521 pipe_config->name); \
10522 return false; \
10523 }
10524
08a24034
DV
10525#define PIPE_CONF_CHECK_I(name) \
10526 if (current_config->name != pipe_config->name) { \
10527 DRM_ERROR("mismatch in " #name " " \
10528 "(expected %i, found %i)\n", \
10529 current_config->name, \
10530 pipe_config->name); \
10531 return false; \
88adfff1
DV
10532 }
10533
b95af8be
VK
10534/* This is required for BDW+ where there is only one set of registers for
10535 * switching between high and low RR.
10536 * This macro can be used whenever a comparison has to be made between one
10537 * hw state and multiple sw state variables.
10538 */
10539#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
10540 if ((current_config->name != pipe_config->name) && \
10541 (current_config->alt_name != pipe_config->name)) { \
10542 DRM_ERROR("mismatch in " #name " " \
10543 "(expected %i or %i, found %i)\n", \
10544 current_config->name, \
10545 current_config->alt_name, \
10546 pipe_config->name); \
10547 return false; \
10548 }
10549
1bd1bd80
DV
10550#define PIPE_CONF_CHECK_FLAGS(name, mask) \
10551 if ((current_config->name ^ pipe_config->name) & (mask)) { \
6f02488e 10552 DRM_ERROR("mismatch in " #name "(" #mask ") " \
1bd1bd80
DV
10553 "(expected %i, found %i)\n", \
10554 current_config->name & (mask), \
10555 pipe_config->name & (mask)); \
10556 return false; \
10557 }
10558
5e550656
VS
10559#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
10560 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
10561 DRM_ERROR("mismatch in " #name " " \
10562 "(expected %i, found %i)\n", \
10563 current_config->name, \
10564 pipe_config->name); \
10565 return false; \
10566 }
10567
bb760063
DV
10568#define PIPE_CONF_QUIRK(quirk) \
10569 ((current_config->quirks | pipe_config->quirks) & (quirk))
10570
eccb140b
DV
10571 PIPE_CONF_CHECK_I(cpu_transcoder);
10572
08a24034
DV
10573 PIPE_CONF_CHECK_I(has_pch_encoder);
10574 PIPE_CONF_CHECK_I(fdi_lanes);
72419203
DV
10575 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
10576 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
10577 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
10578 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
10579 PIPE_CONF_CHECK_I(fdi_m_n.tu);
08a24034 10580
eb14cb74 10581 PIPE_CONF_CHECK_I(has_dp_encoder);
b95af8be
VK
10582
10583 if (INTEL_INFO(dev)->gen < 8) {
10584 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
10585 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
10586 PIPE_CONF_CHECK_I(dp_m_n.link_m);
10587 PIPE_CONF_CHECK_I(dp_m_n.link_n);
10588 PIPE_CONF_CHECK_I(dp_m_n.tu);
10589
10590 if (current_config->has_drrs) {
10591 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_m);
10592 PIPE_CONF_CHECK_I(dp_m2_n2.gmch_n);
10593 PIPE_CONF_CHECK_I(dp_m2_n2.link_m);
10594 PIPE_CONF_CHECK_I(dp_m2_n2.link_n);
10595 PIPE_CONF_CHECK_I(dp_m2_n2.tu);
10596 }
10597 } else {
10598 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_m, dp_m2_n2.gmch_m);
10599 PIPE_CONF_CHECK_I_ALT(dp_m_n.gmch_n, dp_m2_n2.gmch_n);
10600 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_m, dp_m2_n2.link_m);
10601 PIPE_CONF_CHECK_I_ALT(dp_m_n.link_n, dp_m2_n2.link_n);
10602 PIPE_CONF_CHECK_I_ALT(dp_m_n.tu, dp_m2_n2.tu);
10603 }
eb14cb74 10604
2d112de7
ACO
10605 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
10606 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
10607 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
10608 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
10609 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
10610 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
1bd1bd80 10611
2d112de7
ACO
10612 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
10613 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
10614 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
10615 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
10616 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
10617 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
1bd1bd80 10618
c93f54cf 10619 PIPE_CONF_CHECK_I(pixel_multiplier);
6897b4b5 10620 PIPE_CONF_CHECK_I(has_hdmi_sink);
b5a9fa09
DV
10621 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
10622 IS_VALLEYVIEW(dev))
10623 PIPE_CONF_CHECK_I(limited_color_range);
e43823ec 10624 PIPE_CONF_CHECK_I(has_infoframe);
6c49f241 10625
9ed109a7
DV
10626 PIPE_CONF_CHECK_I(has_audio);
10627
2d112de7 10628 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
1bd1bd80
DV
10629 DRM_MODE_FLAG_INTERLACE);
10630
bb760063 10631 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
2d112de7 10632 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 10633 DRM_MODE_FLAG_PHSYNC);
2d112de7 10634 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 10635 DRM_MODE_FLAG_NHSYNC);
2d112de7 10636 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 10637 DRM_MODE_FLAG_PVSYNC);
2d112de7 10638 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063
DV
10639 DRM_MODE_FLAG_NVSYNC);
10640 }
045ac3b5 10641
37327abd
VS
10642 PIPE_CONF_CHECK_I(pipe_src_w);
10643 PIPE_CONF_CHECK_I(pipe_src_h);
1bd1bd80 10644
9953599b
DV
10645 /*
10646 * FIXME: BIOS likes to set up a cloned config with lvds+external
10647 * screen. Since we don't yet re-compute the pipe config when moving
10648 * just the lvds port away to another pipe the sw tracking won't match.
10649 *
10650 * Proper atomic modesets with recomputed global state will fix this.
10651 * Until then just don't check gmch state for inherited modes.
10652 */
10653 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
10654 PIPE_CONF_CHECK_I(gmch_pfit.control);
10655 /* pfit ratios are autocomputed by the hw on gen4+ */
10656 if (INTEL_INFO(dev)->gen < 4)
10657 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10658 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10659 }
10660
fd4daa9c
CW
10661 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10662 if (current_config->pch_pfit.enabled) {
10663 PIPE_CONF_CHECK_I(pch_pfit.pos);
10664 PIPE_CONF_CHECK_I(pch_pfit.size);
10665 }
2fa2fe9a 10666
e59150dc
JB
10667 /* BDW+ don't expose a synchronous way to read the state */
10668 if (IS_HASWELL(dev))
10669 PIPE_CONF_CHECK_I(ips_enabled);
42db64ef 10670
282740f7
VS
10671 PIPE_CONF_CHECK_I(double_wide);
10672
26804afd
DV
10673 PIPE_CONF_CHECK_X(ddi_pll_sel);
10674
c0d43d62 10675 PIPE_CONF_CHECK_I(shared_dpll);
66e985c0 10676 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
8bcc2795 10677 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
66e985c0
DV
10678 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10679 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
d452c5b6 10680 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
3f4cd19f
DL
10681 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
10682 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
10683 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
c0d43d62 10684
42571aef
VS
10685 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10686 PIPE_CONF_CHECK_I(pipe_bpp);
10687
2d112de7 10688 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
a9a7e98a 10689 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
5e550656 10690
66e985c0 10691#undef PIPE_CONF_CHECK_X
08a24034 10692#undef PIPE_CONF_CHECK_I
b95af8be 10693#undef PIPE_CONF_CHECK_I_ALT
1bd1bd80 10694#undef PIPE_CONF_CHECK_FLAGS
5e550656 10695#undef PIPE_CONF_CHECK_CLOCK_FUZZY
bb760063 10696#undef PIPE_CONF_QUIRK
88adfff1 10697
0e8ffe1b
DV
10698 return true;
10699}
10700
08db6652
DL
10701static void check_wm_state(struct drm_device *dev)
10702{
10703 struct drm_i915_private *dev_priv = dev->dev_private;
10704 struct skl_ddb_allocation hw_ddb, *sw_ddb;
10705 struct intel_crtc *intel_crtc;
10706 int plane;
10707
10708 if (INTEL_INFO(dev)->gen < 9)
10709 return;
10710
10711 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
10712 sw_ddb = &dev_priv->wm.skl_hw.ddb;
10713
10714 for_each_intel_crtc(dev, intel_crtc) {
10715 struct skl_ddb_entry *hw_entry, *sw_entry;
10716 const enum pipe pipe = intel_crtc->pipe;
10717
10718 if (!intel_crtc->active)
10719 continue;
10720
10721 /* planes */
10722 for_each_plane(pipe, plane) {
10723 hw_entry = &hw_ddb.plane[pipe][plane];
10724 sw_entry = &sw_ddb->plane[pipe][plane];
10725
10726 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10727 continue;
10728
10729 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
10730 "(expected (%u,%u), found (%u,%u))\n",
10731 pipe_name(pipe), plane + 1,
10732 sw_entry->start, sw_entry->end,
10733 hw_entry->start, hw_entry->end);
10734 }
10735
10736 /* cursor */
10737 hw_entry = &hw_ddb.cursor[pipe];
10738 sw_entry = &sw_ddb->cursor[pipe];
10739
10740 if (skl_ddb_entry_equal(hw_entry, sw_entry))
10741 continue;
10742
10743 DRM_ERROR("mismatch in DDB state pipe %c cursor "
10744 "(expected (%u,%u), found (%u,%u))\n",
10745 pipe_name(pipe),
10746 sw_entry->start, sw_entry->end,
10747 hw_entry->start, hw_entry->end);
10748 }
10749}
10750
91d1b4bd
DV
10751static void
10752check_connector_state(struct drm_device *dev)
8af6cf88 10753{
8af6cf88
DV
10754 struct intel_connector *connector;
10755
10756 list_for_each_entry(connector, &dev->mode_config.connector_list,
10757 base.head) {
10758 /* This also checks the encoder/connector hw state with the
10759 * ->get_hw_state callbacks. */
10760 intel_connector_check_state(connector);
10761
e2c719b7 10762 I915_STATE_WARN(&connector->new_encoder->base != connector->base.encoder,
8af6cf88
DV
10763 "connector's staged encoder doesn't match current encoder\n");
10764 }
91d1b4bd
DV
10765}
10766
10767static void
10768check_encoder_state(struct drm_device *dev)
10769{
10770 struct intel_encoder *encoder;
10771 struct intel_connector *connector;
8af6cf88 10772
b2784e15 10773 for_each_intel_encoder(dev, encoder) {
8af6cf88
DV
10774 bool enabled = false;
10775 bool active = false;
10776 enum pipe pipe, tracked_pipe;
10777
10778 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10779 encoder->base.base.id,
8e329a03 10780 encoder->base.name);
8af6cf88 10781
e2c719b7 10782 I915_STATE_WARN(&encoder->new_crtc->base != encoder->base.crtc,
8af6cf88 10783 "encoder's stage crtc doesn't match current crtc\n");
e2c719b7 10784 I915_STATE_WARN(encoder->connectors_active && !encoder->base.crtc,
8af6cf88
DV
10785 "encoder's active_connectors set, but no crtc\n");
10786
10787 list_for_each_entry(connector, &dev->mode_config.connector_list,
10788 base.head) {
10789 if (connector->base.encoder != &encoder->base)
10790 continue;
10791 enabled = true;
10792 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10793 active = true;
10794 }
0e32b39c
DA
10795 /*
10796 * for MST connectors if we unplug the connector is gone
10797 * away but the encoder is still connected to a crtc
10798 * until a modeset happens in response to the hotplug.
10799 */
10800 if (!enabled && encoder->base.encoder_type == DRM_MODE_ENCODER_DPMST)
10801 continue;
10802
e2c719b7 10803 I915_STATE_WARN(!!encoder->base.crtc != enabled,
8af6cf88
DV
10804 "encoder's enabled state mismatch "
10805 "(expected %i, found %i)\n",
10806 !!encoder->base.crtc, enabled);
e2c719b7 10807 I915_STATE_WARN(active && !encoder->base.crtc,
8af6cf88
DV
10808 "active encoder with no crtc\n");
10809
e2c719b7 10810 I915_STATE_WARN(encoder->connectors_active != active,
8af6cf88
DV
10811 "encoder's computed active state doesn't match tracked active state "
10812 "(expected %i, found %i)\n", active, encoder->connectors_active);
10813
10814 active = encoder->get_hw_state(encoder, &pipe);
e2c719b7 10815 I915_STATE_WARN(active != encoder->connectors_active,
8af6cf88
DV
10816 "encoder's hw state doesn't match sw tracking "
10817 "(expected %i, found %i)\n",
10818 encoder->connectors_active, active);
10819
10820 if (!encoder->base.crtc)
10821 continue;
10822
10823 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
e2c719b7 10824 I915_STATE_WARN(active && pipe != tracked_pipe,
8af6cf88
DV
10825 "active encoder's pipe doesn't match"
10826 "(expected %i, found %i)\n",
10827 tracked_pipe, pipe);
10828
10829 }
91d1b4bd
DV
10830}
10831
10832static void
10833check_crtc_state(struct drm_device *dev)
10834{
fbee40df 10835 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
10836 struct intel_crtc *crtc;
10837 struct intel_encoder *encoder;
5cec258b 10838 struct intel_crtc_state pipe_config;
8af6cf88 10839
d3fcc808 10840 for_each_intel_crtc(dev, crtc) {
8af6cf88
DV
10841 bool enabled = false;
10842 bool active = false;
10843
045ac3b5
JB
10844 memset(&pipe_config, 0, sizeof(pipe_config));
10845
8af6cf88
DV
10846 DRM_DEBUG_KMS("[CRTC:%d]\n",
10847 crtc->base.base.id);
10848
e2c719b7 10849 I915_STATE_WARN(crtc->active && !crtc->base.enabled,
8af6cf88
DV
10850 "active crtc, but not enabled in sw tracking\n");
10851
b2784e15 10852 for_each_intel_encoder(dev, encoder) {
8af6cf88
DV
10853 if (encoder->base.crtc != &crtc->base)
10854 continue;
10855 enabled = true;
10856 if (encoder->connectors_active)
10857 active = true;
10858 }
6c49f241 10859
e2c719b7 10860 I915_STATE_WARN(active != crtc->active,
8af6cf88
DV
10861 "crtc's computed active state doesn't match tracked active state "
10862 "(expected %i, found %i)\n", active, crtc->active);
e2c719b7 10863 I915_STATE_WARN(enabled != crtc->base.enabled,
8af6cf88
DV
10864 "crtc's computed enabled state doesn't match tracked enabled state "
10865 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10866
0e8ffe1b
DV
10867 active = dev_priv->display.get_pipe_config(crtc,
10868 &pipe_config);
d62cf62a 10869
b6b5d049
VS
10870 /* hw state is inconsistent with the pipe quirk */
10871 if ((crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
10872 (crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
d62cf62a
DV
10873 active = crtc->active;
10874
b2784e15 10875 for_each_intel_encoder(dev, encoder) {
3eaba51c 10876 enum pipe pipe;
6c49f241
DV
10877 if (encoder->base.crtc != &crtc->base)
10878 continue;
1d37b689 10879 if (encoder->get_hw_state(encoder, &pipe))
6c49f241
DV
10880 encoder->get_config(encoder, &pipe_config);
10881 }
10882
e2c719b7 10883 I915_STATE_WARN(crtc->active != active,
0e8ffe1b
DV
10884 "crtc active state doesn't match with hw state "
10885 "(expected %i, found %i)\n", crtc->active, active);
10886
c0b03411 10887 if (active &&
6e3c9717 10888 !intel_pipe_config_compare(dev, crtc->config, &pipe_config)) {
e2c719b7 10889 I915_STATE_WARN(1, "pipe state doesn't match!\n");
c0b03411
DV
10890 intel_dump_pipe_config(crtc, &pipe_config,
10891 "[hw state]");
6e3c9717 10892 intel_dump_pipe_config(crtc, crtc->config,
c0b03411
DV
10893 "[sw state]");
10894 }
8af6cf88
DV
10895 }
10896}
10897
91d1b4bd
DV
10898static void
10899check_shared_dpll_state(struct drm_device *dev)
10900{
fbee40df 10901 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
10902 struct intel_crtc *crtc;
10903 struct intel_dpll_hw_state dpll_hw_state;
10904 int i;
5358901f
DV
10905
10906 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10907 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10908 int enabled_crtcs = 0, active_crtcs = 0;
10909 bool active;
10910
10911 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10912
10913 DRM_DEBUG_KMS("%s\n", pll->name);
10914
10915 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10916
e2c719b7 10917 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
5358901f 10918 "more active pll users than references: %i vs %i\n",
3e369b76 10919 pll->active, hweight32(pll->config.crtc_mask));
e2c719b7 10920 I915_STATE_WARN(pll->active && !pll->on,
5358901f 10921 "pll in active use but not on in sw tracking\n");
e2c719b7 10922 I915_STATE_WARN(pll->on && !pll->active,
35c95375 10923 "pll in on but not on in use in sw tracking\n");
e2c719b7 10924 I915_STATE_WARN(pll->on != active,
5358901f
DV
10925 "pll on state mismatch (expected %i, found %i)\n",
10926 pll->on, active);
10927
d3fcc808 10928 for_each_intel_crtc(dev, crtc) {
5358901f
DV
10929 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10930 enabled_crtcs++;
10931 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10932 active_crtcs++;
10933 }
e2c719b7 10934 I915_STATE_WARN(pll->active != active_crtcs,
5358901f
DV
10935 "pll active crtcs mismatch (expected %i, found %i)\n",
10936 pll->active, active_crtcs);
e2c719b7 10937 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
5358901f 10938 "pll enabled crtcs mismatch (expected %i, found %i)\n",
3e369b76 10939 hweight32(pll->config.crtc_mask), enabled_crtcs);
66e985c0 10940
e2c719b7 10941 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
66e985c0
DV
10942 sizeof(dpll_hw_state)),
10943 "pll hw state mismatch\n");
5358901f 10944 }
8af6cf88
DV
10945}
10946
91d1b4bd
DV
10947void
10948intel_modeset_check_state(struct drm_device *dev)
10949{
08db6652 10950 check_wm_state(dev);
91d1b4bd
DV
10951 check_connector_state(dev);
10952 check_encoder_state(dev);
10953 check_crtc_state(dev);
10954 check_shared_dpll_state(dev);
10955}
10956
5cec258b 10957void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
18442d08
VS
10958 int dotclock)
10959{
10960 /*
10961 * FDI already provided one idea for the dotclock.
10962 * Yell if the encoder disagrees.
10963 */
2d112de7 10964 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
18442d08 10965 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
2d112de7 10966 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
18442d08
VS
10967}
10968
80715b2f
VS
10969static void update_scanline_offset(struct intel_crtc *crtc)
10970{
10971 struct drm_device *dev = crtc->base.dev;
10972
10973 /*
10974 * The scanline counter increments at the leading edge of hsync.
10975 *
10976 * On most platforms it starts counting from vtotal-1 on the
10977 * first active line. That means the scanline counter value is
10978 * always one less than what we would expect. Ie. just after
10979 * start of vblank, which also occurs at start of hsync (on the
10980 * last active line), the scanline counter will read vblank_start-1.
10981 *
10982 * On gen2 the scanline counter starts counting from 1 instead
10983 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
10984 * to keep the value positive), instead of adding one.
10985 *
10986 * On HSW+ the behaviour of the scanline counter depends on the output
10987 * type. For DP ports it behaves like most other platforms, but on HDMI
10988 * there's an extra 1 line difference. So we need to add two instead of
10989 * one to the value.
10990 */
10991 if (IS_GEN2(dev)) {
6e3c9717 10992 const struct drm_display_mode *mode = &crtc->config->base.adjusted_mode;
80715b2f
VS
10993 int vtotal;
10994
10995 vtotal = mode->crtc_vtotal;
10996 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
10997 vtotal /= 2;
10998
10999 crtc->scanline_offset = vtotal - 1;
11000 } else if (HAS_DDI(dev) &&
409ee761 11001 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
80715b2f
VS
11002 crtc->scanline_offset = 2;
11003 } else
11004 crtc->scanline_offset = 1;
11005}
11006
5cec258b 11007static struct intel_crtc_state *
7f27126e
JB
11008intel_modeset_compute_config(struct drm_crtc *crtc,
11009 struct drm_display_mode *mode,
11010 struct drm_framebuffer *fb,
11011 unsigned *modeset_pipes,
11012 unsigned *prepare_pipes,
11013 unsigned *disable_pipes)
11014{
5cec258b 11015 struct intel_crtc_state *pipe_config = NULL;
7f27126e
JB
11016
11017 intel_modeset_affected_pipes(crtc, modeset_pipes,
11018 prepare_pipes, disable_pipes);
11019
11020 if ((*modeset_pipes) == 0)
11021 goto out;
11022
11023 /*
11024 * Note this needs changes when we start tracking multiple modes
11025 * and crtcs. At that point we'll need to compute the whole config
11026 * (i.e. one pipe_config for each crtc) rather than just the one
11027 * for this crtc.
11028 */
11029 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
11030 if (IS_ERR(pipe_config)) {
11031 goto out;
11032 }
11033 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
11034 "[modeset]");
7f27126e
JB
11035
11036out:
11037 return pipe_config;
11038}
11039
ed6739ef
ACO
11040static int __intel_set_mode_setup_plls(struct drm_device *dev,
11041 unsigned modeset_pipes,
11042 unsigned disable_pipes)
11043{
11044 struct drm_i915_private *dev_priv = to_i915(dev);
11045 unsigned clear_pipes = modeset_pipes | disable_pipes;
11046 struct intel_crtc *intel_crtc;
11047 int ret = 0;
11048
11049 if (!dev_priv->display.crtc_compute_clock)
11050 return 0;
11051
11052 ret = intel_shared_dpll_start_config(dev_priv, clear_pipes);
11053 if (ret)
11054 goto done;
11055
11056 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
11057 struct intel_crtc_state *state = intel_crtc->new_config;
11058 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
11059 state);
11060 if (ret) {
11061 intel_shared_dpll_abort_config(dev_priv);
11062 goto done;
11063 }
11064 }
11065
11066done:
11067 return ret;
11068}
11069
f30da187
DV
11070static int __intel_set_mode(struct drm_crtc *crtc,
11071 struct drm_display_mode *mode,
7f27126e 11072 int x, int y, struct drm_framebuffer *fb,
5cec258b 11073 struct intel_crtc_state *pipe_config,
7f27126e
JB
11074 unsigned modeset_pipes,
11075 unsigned prepare_pipes,
11076 unsigned disable_pipes)
a6778b3c
DV
11077{
11078 struct drm_device *dev = crtc->dev;
fbee40df 11079 struct drm_i915_private *dev_priv = dev->dev_private;
4b4b9238 11080 struct drm_display_mode *saved_mode;
25c5b266 11081 struct intel_crtc *intel_crtc;
c0c36b94 11082 int ret = 0;
a6778b3c 11083
4b4b9238 11084 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
c0c36b94
CW
11085 if (!saved_mode)
11086 return -ENOMEM;
a6778b3c 11087
3ac18232 11088 *saved_mode = crtc->mode;
a6778b3c 11089
b9950a13
VS
11090 if (modeset_pipes)
11091 to_intel_crtc(crtc)->new_config = pipe_config;
11092
30a970c6
JB
11093 /*
11094 * See if the config requires any additional preparation, e.g.
11095 * to adjust global state with pipes off. We need to do this
11096 * here so we can get the modeset_pipe updated config for the new
11097 * mode set on this crtc. For other crtcs we need to use the
11098 * adjusted_mode bits in the crtc directly.
11099 */
c164f833 11100 if (IS_VALLEYVIEW(dev)) {
2f2d7aa1 11101 valleyview_modeset_global_pipes(dev, &prepare_pipes);
30a970c6 11102
c164f833
VS
11103 /* may have added more to prepare_pipes than we should */
11104 prepare_pipes &= ~disable_pipes;
11105 }
11106
ed6739ef
ACO
11107 ret = __intel_set_mode_setup_plls(dev, modeset_pipes, disable_pipes);
11108 if (ret)
11109 goto done;
8bd31e67 11110
460da916
DV
11111 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
11112 intel_crtc_disable(&intel_crtc->base);
11113
ea9d758d
DV
11114 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11115 if (intel_crtc->base.enabled)
11116 dev_priv->display.crtc_disable(&intel_crtc->base);
11117 }
a6778b3c 11118
6c4c86f5
DV
11119 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
11120 * to set it here already despite that we pass it down the callchain.
7f27126e
JB
11121 *
11122 * Note we'll need to fix this up when we start tracking multiple
11123 * pipes; here we assume a single modeset_pipe and only track the
11124 * single crtc and mode.
f6e5b160 11125 */
b8cecdf5 11126 if (modeset_pipes) {
25c5b266 11127 crtc->mode = *mode;
b8cecdf5
DV
11128 /* mode_set/enable/disable functions rely on a correct pipe
11129 * config. */
f5de6e07 11130 intel_crtc_set_state(to_intel_crtc(crtc), pipe_config);
c326c0a9
VS
11131
11132 /*
11133 * Calculate and store various constants which
11134 * are later needed by vblank and swap-completion
11135 * timestamping. They are derived from true hwmode.
11136 */
11137 drm_calc_timestamping_constants(crtc,
2d112de7 11138 &pipe_config->base.adjusted_mode);
b8cecdf5 11139 }
7758a113 11140
ea9d758d
DV
11141 /* Only after disabling all output pipelines that will be changed can we
11142 * update the the output configuration. */
11143 intel_modeset_update_state(dev, prepare_pipes);
f6e5b160 11144
50f6e502 11145 modeset_update_crtc_power_domains(dev);
47fab737 11146
a6778b3c
DV
11147 /* Set up the DPLL and any encoders state that needs to adjust or depend
11148 * on the DPLL.
f6e5b160 11149 */
25c5b266 11150 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
455a6808
GP
11151 struct drm_plane *primary = intel_crtc->base.primary;
11152 int vdisplay, hdisplay;
4c10794f 11153
455a6808
GP
11154 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
11155 ret = primary->funcs->update_plane(primary, &intel_crtc->base,
11156 fb, 0, 0,
11157 hdisplay, vdisplay,
11158 x << 16, y << 16,
11159 hdisplay << 16, vdisplay << 16);
a6778b3c
DV
11160 }
11161
11162 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
80715b2f
VS
11163 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
11164 update_scanline_offset(intel_crtc);
11165
25c5b266 11166 dev_priv->display.crtc_enable(&intel_crtc->base);
80715b2f 11167 }
a6778b3c 11168
a6778b3c
DV
11169 /* FIXME: add subpixel order */
11170done:
4b4b9238 11171 if (ret && crtc->enabled)
3ac18232 11172 crtc->mode = *saved_mode;
a6778b3c 11173
3ac18232 11174 kfree(saved_mode);
a6778b3c 11175 return ret;
f6e5b160
CW
11176}
11177
7f27126e
JB
11178static int intel_set_mode_pipes(struct drm_crtc *crtc,
11179 struct drm_display_mode *mode,
11180 int x, int y, struct drm_framebuffer *fb,
5cec258b 11181 struct intel_crtc_state *pipe_config,
7f27126e
JB
11182 unsigned modeset_pipes,
11183 unsigned prepare_pipes,
11184 unsigned disable_pipes)
f30da187
DV
11185{
11186 int ret;
11187
7f27126e
JB
11188 ret = __intel_set_mode(crtc, mode, x, y, fb, pipe_config, modeset_pipes,
11189 prepare_pipes, disable_pipes);
f30da187
DV
11190
11191 if (ret == 0)
11192 intel_modeset_check_state(crtc->dev);
11193
11194 return ret;
11195}
11196
7f27126e
JB
11197static int intel_set_mode(struct drm_crtc *crtc,
11198 struct drm_display_mode *mode,
11199 int x, int y, struct drm_framebuffer *fb)
11200{
5cec258b 11201 struct intel_crtc_state *pipe_config;
7f27126e
JB
11202 unsigned modeset_pipes, prepare_pipes, disable_pipes;
11203
11204 pipe_config = intel_modeset_compute_config(crtc, mode, fb,
11205 &modeset_pipes,
11206 &prepare_pipes,
11207 &disable_pipes);
11208
11209 if (IS_ERR(pipe_config))
11210 return PTR_ERR(pipe_config);
11211
11212 return intel_set_mode_pipes(crtc, mode, x, y, fb, pipe_config,
11213 modeset_pipes, prepare_pipes,
11214 disable_pipes);
11215}
11216
c0c36b94
CW
11217void intel_crtc_restore_mode(struct drm_crtc *crtc)
11218{
f4510a27 11219 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
c0c36b94
CW
11220}
11221
25c5b266
DV
11222#undef for_each_intel_crtc_masked
11223
d9e55608
DV
11224static void intel_set_config_free(struct intel_set_config *config)
11225{
11226 if (!config)
11227 return;
11228
1aa4b628
DV
11229 kfree(config->save_connector_encoders);
11230 kfree(config->save_encoder_crtcs);
7668851f 11231 kfree(config->save_crtc_enabled);
d9e55608
DV
11232 kfree(config);
11233}
11234
85f9eb71
DV
11235static int intel_set_config_save_state(struct drm_device *dev,
11236 struct intel_set_config *config)
11237{
7668851f 11238 struct drm_crtc *crtc;
85f9eb71
DV
11239 struct drm_encoder *encoder;
11240 struct drm_connector *connector;
11241 int count;
11242
7668851f
VS
11243 config->save_crtc_enabled =
11244 kcalloc(dev->mode_config.num_crtc,
11245 sizeof(bool), GFP_KERNEL);
11246 if (!config->save_crtc_enabled)
11247 return -ENOMEM;
11248
1aa4b628
DV
11249 config->save_encoder_crtcs =
11250 kcalloc(dev->mode_config.num_encoder,
11251 sizeof(struct drm_crtc *), GFP_KERNEL);
11252 if (!config->save_encoder_crtcs)
85f9eb71
DV
11253 return -ENOMEM;
11254
1aa4b628
DV
11255 config->save_connector_encoders =
11256 kcalloc(dev->mode_config.num_connector,
11257 sizeof(struct drm_encoder *), GFP_KERNEL);
11258 if (!config->save_connector_encoders)
85f9eb71
DV
11259 return -ENOMEM;
11260
11261 /* Copy data. Note that driver private data is not affected.
11262 * Should anything bad happen only the expected state is
11263 * restored, not the drivers personal bookkeeping.
11264 */
7668851f 11265 count = 0;
70e1e0ec 11266 for_each_crtc(dev, crtc) {
7668851f
VS
11267 config->save_crtc_enabled[count++] = crtc->enabled;
11268 }
11269
85f9eb71
DV
11270 count = 0;
11271 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
1aa4b628 11272 config->save_encoder_crtcs[count++] = encoder->crtc;
85f9eb71
DV
11273 }
11274
11275 count = 0;
11276 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1aa4b628 11277 config->save_connector_encoders[count++] = connector->encoder;
85f9eb71
DV
11278 }
11279
11280 return 0;
11281}
11282
11283static void intel_set_config_restore_state(struct drm_device *dev,
11284 struct intel_set_config *config)
11285{
7668851f 11286 struct intel_crtc *crtc;
9a935856
DV
11287 struct intel_encoder *encoder;
11288 struct intel_connector *connector;
85f9eb71
DV
11289 int count;
11290
7668851f 11291 count = 0;
d3fcc808 11292 for_each_intel_crtc(dev, crtc) {
7668851f 11293 crtc->new_enabled = config->save_crtc_enabled[count++];
7bd0a8e7
VS
11294
11295 if (crtc->new_enabled)
6e3c9717 11296 crtc->new_config = crtc->config;
7bd0a8e7
VS
11297 else
11298 crtc->new_config = NULL;
7668851f
VS
11299 }
11300
85f9eb71 11301 count = 0;
b2784e15 11302 for_each_intel_encoder(dev, encoder) {
9a935856
DV
11303 encoder->new_crtc =
11304 to_intel_crtc(config->save_encoder_crtcs[count++]);
85f9eb71
DV
11305 }
11306
11307 count = 0;
9a935856
DV
11308 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11309 connector->new_encoder =
11310 to_intel_encoder(config->save_connector_encoders[count++]);
85f9eb71
DV
11311 }
11312}
11313
e3de42b6 11314static bool
2e57f47d 11315is_crtc_connector_off(struct drm_mode_set *set)
e3de42b6
ID
11316{
11317 int i;
11318
2e57f47d
CW
11319 if (set->num_connectors == 0)
11320 return false;
11321
11322 if (WARN_ON(set->connectors == NULL))
11323 return false;
11324
11325 for (i = 0; i < set->num_connectors; i++)
11326 if (set->connectors[i]->encoder &&
11327 set->connectors[i]->encoder->crtc == set->crtc &&
11328 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
e3de42b6
ID
11329 return true;
11330
11331 return false;
11332}
11333
5e2b584e
DV
11334static void
11335intel_set_config_compute_mode_changes(struct drm_mode_set *set,
11336 struct intel_set_config *config)
11337{
11338
11339 /* We should be able to check here if the fb has the same properties
11340 * and then just flip_or_move it */
2e57f47d
CW
11341 if (is_crtc_connector_off(set)) {
11342 config->mode_changed = true;
f4510a27 11343 } else if (set->crtc->primary->fb != set->fb) {
3b150f08
MR
11344 /*
11345 * If we have no fb, we can only flip as long as the crtc is
11346 * active, otherwise we need a full mode set. The crtc may
11347 * be active if we've only disabled the primary plane, or
11348 * in fastboot situations.
11349 */
f4510a27 11350 if (set->crtc->primary->fb == NULL) {
319d9827
JB
11351 struct intel_crtc *intel_crtc =
11352 to_intel_crtc(set->crtc);
11353
3b150f08 11354 if (intel_crtc->active) {
319d9827
JB
11355 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
11356 config->fb_changed = true;
11357 } else {
11358 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
11359 config->mode_changed = true;
11360 }
5e2b584e
DV
11361 } else if (set->fb == NULL) {
11362 config->mode_changed = true;
72f4901e 11363 } else if (set->fb->pixel_format !=
f4510a27 11364 set->crtc->primary->fb->pixel_format) {
5e2b584e 11365 config->mode_changed = true;
e3de42b6 11366 } else {
5e2b584e 11367 config->fb_changed = true;
e3de42b6 11368 }
5e2b584e
DV
11369 }
11370
835c5873 11371 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
5e2b584e
DV
11372 config->fb_changed = true;
11373
11374 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
11375 DRM_DEBUG_KMS("modes are different, full mode set\n");
11376 drm_mode_debug_printmodeline(&set->crtc->mode);
11377 drm_mode_debug_printmodeline(set->mode);
11378 config->mode_changed = true;
11379 }
a1d95703
CW
11380
11381 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
11382 set->crtc->base.id, config->mode_changed, config->fb_changed);
5e2b584e
DV
11383}
11384
2e431051 11385static int
9a935856
DV
11386intel_modeset_stage_output_state(struct drm_device *dev,
11387 struct drm_mode_set *set,
11388 struct intel_set_config *config)
50f56119 11389{
9a935856
DV
11390 struct intel_connector *connector;
11391 struct intel_encoder *encoder;
7668851f 11392 struct intel_crtc *crtc;
f3f08572 11393 int ro;
50f56119 11394
9abdda74 11395 /* The upper layers ensure that we either disable a crtc or have a list
9a935856
DV
11396 * of connectors. For paranoia, double-check this. */
11397 WARN_ON(!set->fb && (set->num_connectors != 0));
11398 WARN_ON(set->fb && (set->num_connectors == 0));
11399
9a935856
DV
11400 list_for_each_entry(connector, &dev->mode_config.connector_list,
11401 base.head) {
11402 /* Otherwise traverse passed in connector list and get encoders
11403 * for them. */
50f56119 11404 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856 11405 if (set->connectors[ro] == &connector->base) {
0e32b39c 11406 connector->new_encoder = intel_find_encoder(connector, to_intel_crtc(set->crtc)->pipe);
50f56119
DV
11407 break;
11408 }
11409 }
11410
9a935856
DV
11411 /* If we disable the crtc, disable all its connectors. Also, if
11412 * the connector is on the changing crtc but not on the new
11413 * connector list, disable it. */
11414 if ((!set->fb || ro == set->num_connectors) &&
11415 connector->base.encoder &&
11416 connector->base.encoder->crtc == set->crtc) {
11417 connector->new_encoder = NULL;
11418
11419 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
11420 connector->base.base.id,
c23cc417 11421 connector->base.name);
9a935856
DV
11422 }
11423
11424
11425 if (&connector->new_encoder->base != connector->base.encoder) {
50f56119 11426 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
5e2b584e 11427 config->mode_changed = true;
50f56119
DV
11428 }
11429 }
9a935856 11430 /* connector->new_encoder is now updated for all connectors. */
50f56119 11431
9a935856 11432 /* Update crtc of enabled connectors. */
9a935856
DV
11433 list_for_each_entry(connector, &dev->mode_config.connector_list,
11434 base.head) {
7668851f
VS
11435 struct drm_crtc *new_crtc;
11436
9a935856 11437 if (!connector->new_encoder)
50f56119
DV
11438 continue;
11439
9a935856 11440 new_crtc = connector->new_encoder->base.crtc;
50f56119
DV
11441
11442 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856 11443 if (set->connectors[ro] == &connector->base)
50f56119
DV
11444 new_crtc = set->crtc;
11445 }
11446
11447 /* Make sure the new CRTC will work with the encoder */
14509916
TR
11448 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
11449 new_crtc)) {
5e2b584e 11450 return -EINVAL;
50f56119 11451 }
0e32b39c 11452 connector->new_encoder->new_crtc = to_intel_crtc(new_crtc);
9a935856
DV
11453
11454 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
11455 connector->base.base.id,
c23cc417 11456 connector->base.name,
9a935856
DV
11457 new_crtc->base.id);
11458 }
11459
11460 /* Check for any encoders that needs to be disabled. */
b2784e15 11461 for_each_intel_encoder(dev, encoder) {
5a65f358 11462 int num_connectors = 0;
9a935856
DV
11463 list_for_each_entry(connector,
11464 &dev->mode_config.connector_list,
11465 base.head) {
11466 if (connector->new_encoder == encoder) {
11467 WARN_ON(!connector->new_encoder->new_crtc);
5a65f358 11468 num_connectors++;
9a935856
DV
11469 }
11470 }
5a65f358
PZ
11471
11472 if (num_connectors == 0)
11473 encoder->new_crtc = NULL;
11474 else if (num_connectors > 1)
11475 return -EINVAL;
11476
9a935856
DV
11477 /* Only now check for crtc changes so we don't miss encoders
11478 * that will be disabled. */
11479 if (&encoder->new_crtc->base != encoder->base.crtc) {
50f56119 11480 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
5e2b584e 11481 config->mode_changed = true;
50f56119
DV
11482 }
11483 }
9a935856 11484 /* Now we've also updated encoder->new_crtc for all encoders. */
0e32b39c
DA
11485 list_for_each_entry(connector, &dev->mode_config.connector_list,
11486 base.head) {
11487 if (connector->new_encoder)
11488 if (connector->new_encoder != connector->encoder)
11489 connector->encoder = connector->new_encoder;
11490 }
d3fcc808 11491 for_each_intel_crtc(dev, crtc) {
7668851f
VS
11492 crtc->new_enabled = false;
11493
b2784e15 11494 for_each_intel_encoder(dev, encoder) {
7668851f
VS
11495 if (encoder->new_crtc == crtc) {
11496 crtc->new_enabled = true;
11497 break;
11498 }
11499 }
11500
11501 if (crtc->new_enabled != crtc->base.enabled) {
11502 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
11503 crtc->new_enabled ? "en" : "dis");
11504 config->mode_changed = true;
11505 }
7bd0a8e7
VS
11506
11507 if (crtc->new_enabled)
6e3c9717 11508 crtc->new_config = crtc->config;
7bd0a8e7
VS
11509 else
11510 crtc->new_config = NULL;
7668851f
VS
11511 }
11512
2e431051
DV
11513 return 0;
11514}
11515
7d00a1f5
VS
11516static void disable_crtc_nofb(struct intel_crtc *crtc)
11517{
11518 struct drm_device *dev = crtc->base.dev;
11519 struct intel_encoder *encoder;
11520 struct intel_connector *connector;
11521
11522 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
11523 pipe_name(crtc->pipe));
11524
11525 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
11526 if (connector->new_encoder &&
11527 connector->new_encoder->new_crtc == crtc)
11528 connector->new_encoder = NULL;
11529 }
11530
b2784e15 11531 for_each_intel_encoder(dev, encoder) {
7d00a1f5
VS
11532 if (encoder->new_crtc == crtc)
11533 encoder->new_crtc = NULL;
11534 }
11535
11536 crtc->new_enabled = false;
7bd0a8e7 11537 crtc->new_config = NULL;
7d00a1f5
VS
11538}
11539
2e431051
DV
11540static int intel_crtc_set_config(struct drm_mode_set *set)
11541{
11542 struct drm_device *dev;
2e431051
DV
11543 struct drm_mode_set save_set;
11544 struct intel_set_config *config;
5cec258b 11545 struct intel_crtc_state *pipe_config;
50f52756 11546 unsigned modeset_pipes, prepare_pipes, disable_pipes;
2e431051 11547 int ret;
2e431051 11548
8d3e375e
DV
11549 BUG_ON(!set);
11550 BUG_ON(!set->crtc);
11551 BUG_ON(!set->crtc->helper_private);
2e431051 11552
7e53f3a4
DV
11553 /* Enforce sane interface api - has been abused by the fb helper. */
11554 BUG_ON(!set->mode && set->fb);
11555 BUG_ON(set->fb && set->num_connectors == 0);
431e50f7 11556
2e431051
DV
11557 if (set->fb) {
11558 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
11559 set->crtc->base.id, set->fb->base.id,
11560 (int)set->num_connectors, set->x, set->y);
11561 } else {
11562 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
2e431051
DV
11563 }
11564
11565 dev = set->crtc->dev;
11566
11567 ret = -ENOMEM;
11568 config = kzalloc(sizeof(*config), GFP_KERNEL);
11569 if (!config)
11570 goto out_config;
11571
11572 ret = intel_set_config_save_state(dev, config);
11573 if (ret)
11574 goto out_config;
11575
11576 save_set.crtc = set->crtc;
11577 save_set.mode = &set->crtc->mode;
11578 save_set.x = set->crtc->x;
11579 save_set.y = set->crtc->y;
f4510a27 11580 save_set.fb = set->crtc->primary->fb;
2e431051
DV
11581
11582 /* Compute whether we need a full modeset, only an fb base update or no
11583 * change at all. In the future we might also check whether only the
11584 * mode changed, e.g. for LVDS where we only change the panel fitter in
11585 * such cases. */
11586 intel_set_config_compute_mode_changes(set, config);
11587
9a935856 11588 ret = intel_modeset_stage_output_state(dev, set, config);
2e431051
DV
11589 if (ret)
11590 goto fail;
11591
50f52756
JB
11592 pipe_config = intel_modeset_compute_config(set->crtc, set->mode,
11593 set->fb,
11594 &modeset_pipes,
11595 &prepare_pipes,
11596 &disable_pipes);
20664591 11597 if (IS_ERR(pipe_config)) {
6ac0483b 11598 ret = PTR_ERR(pipe_config);
50f52756 11599 goto fail;
20664591 11600 } else if (pipe_config) {
b9950a13 11601 if (pipe_config->has_audio !=
6e3c9717 11602 to_intel_crtc(set->crtc)->config->has_audio)
20664591
JB
11603 config->mode_changed = true;
11604
af15d2ce
JB
11605 /*
11606 * Note we have an issue here with infoframes: current code
11607 * only updates them on the full mode set path per hw
11608 * requirements. So here we should be checking for any
11609 * required changes and forcing a mode set.
11610 */
20664591 11611 }
50f52756
JB
11612
11613 /* set_mode will free it in the mode_changed case */
11614 if (!config->mode_changed)
11615 kfree(pipe_config);
11616
1f9954d0
JB
11617 intel_update_pipe_size(to_intel_crtc(set->crtc));
11618
5e2b584e 11619 if (config->mode_changed) {
50f52756
JB
11620 ret = intel_set_mode_pipes(set->crtc, set->mode,
11621 set->x, set->y, set->fb, pipe_config,
11622 modeset_pipes, prepare_pipes,
11623 disable_pipes);
5e2b584e 11624 } else if (config->fb_changed) {
3b150f08 11625 struct intel_crtc *intel_crtc = to_intel_crtc(set->crtc);
455a6808
GP
11626 struct drm_plane *primary = set->crtc->primary;
11627 int vdisplay, hdisplay;
3b150f08 11628
455a6808
GP
11629 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
11630 ret = primary->funcs->update_plane(primary, set->crtc, set->fb,
11631 0, 0, hdisplay, vdisplay,
11632 set->x << 16, set->y << 16,
11633 hdisplay << 16, vdisplay << 16);
3b150f08
MR
11634
11635 /*
11636 * We need to make sure the primary plane is re-enabled if it
11637 * has previously been turned off.
11638 */
11639 if (!intel_crtc->primary_enabled && ret == 0) {
11640 WARN_ON(!intel_crtc->active);
fdd508a6 11641 intel_enable_primary_hw_plane(set->crtc->primary, set->crtc);
3b150f08
MR
11642 }
11643
7ca51a3a
JB
11644 /*
11645 * In the fastboot case this may be our only check of the
11646 * state after boot. It would be better to only do it on
11647 * the first update, but we don't have a nice way of doing that
11648 * (and really, set_config isn't used much for high freq page
11649 * flipping, so increasing its cost here shouldn't be a big
11650 * deal).
11651 */
d330a953 11652 if (i915.fastboot && ret == 0)
7ca51a3a 11653 intel_modeset_check_state(set->crtc->dev);
50f56119
DV
11654 }
11655
2d05eae1 11656 if (ret) {
bf67dfeb
DV
11657 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
11658 set->crtc->base.id, ret);
50f56119 11659fail:
2d05eae1 11660 intel_set_config_restore_state(dev, config);
50f56119 11661
7d00a1f5
VS
11662 /*
11663 * HACK: if the pipe was on, but we didn't have a framebuffer,
11664 * force the pipe off to avoid oopsing in the modeset code
11665 * due to fb==NULL. This should only happen during boot since
11666 * we don't yet reconstruct the FB from the hardware state.
11667 */
11668 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
11669 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
11670
2d05eae1
CW
11671 /* Try to restore the config */
11672 if (config->mode_changed &&
11673 intel_set_mode(save_set.crtc, save_set.mode,
11674 save_set.x, save_set.y, save_set.fb))
11675 DRM_ERROR("failed to restore config after modeset failure\n");
11676 }
50f56119 11677
d9e55608
DV
11678out_config:
11679 intel_set_config_free(config);
50f56119
DV
11680 return ret;
11681}
f6e5b160
CW
11682
11683static const struct drm_crtc_funcs intel_crtc_funcs = {
f6e5b160 11684 .gamma_set = intel_crtc_gamma_set,
50f56119 11685 .set_config = intel_crtc_set_config,
f6e5b160
CW
11686 .destroy = intel_crtc_destroy,
11687 .page_flip = intel_crtc_page_flip,
1356837e
MR
11688 .atomic_duplicate_state = intel_crtc_duplicate_state,
11689 .atomic_destroy_state = intel_crtc_destroy_state,
f6e5b160
CW
11690};
11691
5358901f
DV
11692static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
11693 struct intel_shared_dpll *pll,
11694 struct intel_dpll_hw_state *hw_state)
ee7b9f93 11695{
5358901f 11696 uint32_t val;
ee7b9f93 11697
f458ebbc 11698 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
bd2bb1b9
PZ
11699 return false;
11700
5358901f 11701 val = I915_READ(PCH_DPLL(pll->id));
66e985c0
DV
11702 hw_state->dpll = val;
11703 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
11704 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
5358901f
DV
11705
11706 return val & DPLL_VCO_ENABLE;
11707}
11708
15bdd4cf
DV
11709static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
11710 struct intel_shared_dpll *pll)
11711{
3e369b76
ACO
11712 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
11713 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
15bdd4cf
DV
11714}
11715
e7b903d2
DV
11716static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
11717 struct intel_shared_dpll *pll)
11718{
e7b903d2 11719 /* PCH refclock must be enabled first */
89eff4be 11720 ibx_assert_pch_refclk_enabled(dev_priv);
e7b903d2 11721
3e369b76 11722 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
15bdd4cf
DV
11723
11724 /* Wait for the clocks to stabilize. */
11725 POSTING_READ(PCH_DPLL(pll->id));
11726 udelay(150);
11727
11728 /* The pixel multiplier can only be updated once the
11729 * DPLL is enabled and the clocks are stable.
11730 *
11731 * So write it again.
11732 */
3e369b76 11733 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
15bdd4cf 11734 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
11735 udelay(200);
11736}
11737
11738static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
11739 struct intel_shared_dpll *pll)
11740{
11741 struct drm_device *dev = dev_priv->dev;
11742 struct intel_crtc *crtc;
e7b903d2
DV
11743
11744 /* Make sure no transcoder isn't still depending on us. */
d3fcc808 11745 for_each_intel_crtc(dev, crtc) {
e7b903d2
DV
11746 if (intel_crtc_to_shared_dpll(crtc) == pll)
11747 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
ee7b9f93
JB
11748 }
11749
15bdd4cf
DV
11750 I915_WRITE(PCH_DPLL(pll->id), 0);
11751 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
11752 udelay(200);
11753}
11754
46edb027
DV
11755static char *ibx_pch_dpll_names[] = {
11756 "PCH DPLL A",
11757 "PCH DPLL B",
11758};
11759
7c74ade1 11760static void ibx_pch_dpll_init(struct drm_device *dev)
ee7b9f93 11761{
e7b903d2 11762 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93
JB
11763 int i;
11764
7c74ade1 11765 dev_priv->num_shared_dpll = 2;
ee7b9f93 11766
e72f9fbf 11767 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
46edb027
DV
11768 dev_priv->shared_dplls[i].id = i;
11769 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
15bdd4cf 11770 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
e7b903d2
DV
11771 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
11772 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
5358901f
DV
11773 dev_priv->shared_dplls[i].get_hw_state =
11774 ibx_pch_dpll_get_hw_state;
ee7b9f93
JB
11775 }
11776}
11777
7c74ade1
DV
11778static void intel_shared_dpll_init(struct drm_device *dev)
11779{
e7b903d2 11780 struct drm_i915_private *dev_priv = dev->dev_private;
7c74ade1 11781
9cd86933
DV
11782 if (HAS_DDI(dev))
11783 intel_ddi_pll_init(dev);
11784 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7c74ade1
DV
11785 ibx_pch_dpll_init(dev);
11786 else
11787 dev_priv->num_shared_dpll = 0;
11788
11789 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
7c74ade1
DV
11790}
11791
6beb8c23
MR
11792/**
11793 * intel_prepare_plane_fb - Prepare fb for usage on plane
11794 * @plane: drm plane to prepare for
11795 * @fb: framebuffer to prepare for presentation
11796 *
11797 * Prepares a framebuffer for usage on a display plane. Generally this
11798 * involves pinning the underlying object and updating the frontbuffer tracking
11799 * bits. Some older platforms need special physical address handling for
11800 * cursor planes.
11801 *
11802 * Returns 0 on success, negative error code on failure.
11803 */
11804int
11805intel_prepare_plane_fb(struct drm_plane *plane,
11806 struct drm_framebuffer *fb)
465c120c
MR
11807{
11808 struct drm_device *dev = plane->dev;
6beb8c23
MR
11809 struct intel_plane *intel_plane = to_intel_plane(plane);
11810 enum pipe pipe = intel_plane->pipe;
11811 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11812 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
11813 unsigned frontbuffer_bits = 0;
11814 int ret = 0;
465c120c 11815
ea2c67bb 11816 if (!obj)
465c120c
MR
11817 return 0;
11818
6beb8c23
MR
11819 switch (plane->type) {
11820 case DRM_PLANE_TYPE_PRIMARY:
11821 frontbuffer_bits = INTEL_FRONTBUFFER_PRIMARY(pipe);
11822 break;
11823 case DRM_PLANE_TYPE_CURSOR:
11824 frontbuffer_bits = INTEL_FRONTBUFFER_CURSOR(pipe);
11825 break;
11826 case DRM_PLANE_TYPE_OVERLAY:
11827 frontbuffer_bits = INTEL_FRONTBUFFER_SPRITE(pipe);
11828 break;
11829 }
465c120c 11830
6beb8c23 11831 mutex_lock(&dev->struct_mutex);
465c120c 11832
6beb8c23
MR
11833 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
11834 INTEL_INFO(dev)->cursor_needs_physical) {
11835 int align = IS_I830(dev) ? 16 * 1024 : 256;
11836 ret = i915_gem_object_attach_phys(obj, align);
11837 if (ret)
11838 DRM_DEBUG_KMS("failed to attach phys object\n");
11839 } else {
11840 ret = intel_pin_and_fence_fb_obj(plane, fb, NULL);
11841 }
465c120c 11842
6beb8c23
MR
11843 if (ret == 0)
11844 i915_gem_track_fb(old_obj, obj, frontbuffer_bits);
fdd508a6 11845
4c34574f 11846 mutex_unlock(&dev->struct_mutex);
465c120c 11847
6beb8c23
MR
11848 return ret;
11849}
11850
38f3ce3a
MR
11851/**
11852 * intel_cleanup_plane_fb - Cleans up an fb after plane use
11853 * @plane: drm plane to clean up for
11854 * @fb: old framebuffer that was on plane
11855 *
11856 * Cleans up a framebuffer that has just been removed from a plane.
11857 */
11858void
11859intel_cleanup_plane_fb(struct drm_plane *plane,
11860 struct drm_framebuffer *fb)
11861{
11862 struct drm_device *dev = plane->dev;
11863 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11864
11865 if (WARN_ON(!obj))
11866 return;
11867
11868 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
11869 !INTEL_INFO(dev)->cursor_needs_physical) {
11870 mutex_lock(&dev->struct_mutex);
11871 intel_unpin_fb_obj(obj);
11872 mutex_unlock(&dev->struct_mutex);
11873 }
465c120c
MR
11874}
11875
11876static int
3c692a41
GP
11877intel_check_primary_plane(struct drm_plane *plane,
11878 struct intel_plane_state *state)
11879{
32b7eeec
MR
11880 struct drm_device *dev = plane->dev;
11881 struct drm_i915_private *dev_priv = dev->dev_private;
2b875c22 11882 struct drm_crtc *crtc = state->base.crtc;
ea2c67bb 11883 struct intel_crtc *intel_crtc;
2b875c22 11884 struct drm_framebuffer *fb = state->base.fb;
3c692a41
GP
11885 struct drm_rect *dest = &state->dst;
11886 struct drm_rect *src = &state->src;
11887 const struct drm_rect *clip = &state->clip;
465c120c
MR
11888 int ret;
11889
ea2c67bb
MR
11890 crtc = crtc ? crtc : plane->crtc;
11891 intel_crtc = to_intel_crtc(crtc);
11892
c59cb179
MR
11893 ret = drm_plane_helper_check_update(plane, crtc, fb,
11894 src, dest, clip,
11895 DRM_PLANE_HELPER_NO_SCALING,
11896 DRM_PLANE_HELPER_NO_SCALING,
11897 false, true, &state->visible);
11898 if (ret)
11899 return ret;
465c120c 11900
32b7eeec
MR
11901 if (intel_crtc->active) {
11902 intel_crtc->atomic.wait_for_flips = true;
11903
11904 /*
11905 * FBC does not work on some platforms for rotated
11906 * planes, so disable it when rotation is not 0 and
11907 * update it when rotation is set back to 0.
11908 *
11909 * FIXME: This is redundant with the fbc update done in
11910 * the primary plane enable function except that that
11911 * one is done too late. We eventually need to unify
11912 * this.
11913 */
11914 if (intel_crtc->primary_enabled &&
11915 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11916 dev_priv->fbc.plane == intel_crtc->plane &&
8e7d688b 11917 state->base.rotation != BIT(DRM_ROTATE_0)) {
32b7eeec
MR
11918 intel_crtc->atomic.disable_fbc = true;
11919 }
11920
11921 if (state->visible) {
11922 /*
11923 * BDW signals flip done immediately if the plane
11924 * is disabled, even if the plane enable is already
11925 * armed to occur at the next vblank :(
11926 */
11927 if (IS_BROADWELL(dev) && !intel_crtc->primary_enabled)
11928 intel_crtc->atomic.wait_vblank = true;
11929 }
11930
11931 intel_crtc->atomic.fb_bits |=
11932 INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe);
11933
11934 intel_crtc->atomic.update_fbc = true;
ccc759dc
GP
11935 }
11936
14af293f
GP
11937 return 0;
11938}
11939
11940static void
11941intel_commit_primary_plane(struct drm_plane *plane,
11942 struct intel_plane_state *state)
11943{
2b875c22
MR
11944 struct drm_crtc *crtc = state->base.crtc;
11945 struct drm_framebuffer *fb = state->base.fb;
11946 struct drm_device *dev = plane->dev;
14af293f 11947 struct drm_i915_private *dev_priv = dev->dev_private;
ea2c67bb 11948 struct intel_crtc *intel_crtc;
14af293f 11949 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
14af293f
GP
11950 struct intel_plane *intel_plane = to_intel_plane(plane);
11951 struct drm_rect *src = &state->src;
11952
ea2c67bb
MR
11953 crtc = crtc ? crtc : plane->crtc;
11954 intel_crtc = to_intel_crtc(crtc);
cf4c7c12
MR
11955
11956 plane->fb = fb;
9dc806fc
MR
11957 crtc->x = src->x1 >> 16;
11958 crtc->y = src->y1 >> 16;
ccc759dc 11959
ccc759dc 11960 intel_plane->obj = obj;
4c34574f 11961
ccc759dc 11962 if (intel_crtc->active) {
ccc759dc 11963 if (state->visible) {
ccc759dc
GP
11964 /* FIXME: kill this fastboot hack */
11965 intel_update_pipe_size(intel_crtc);
465c120c 11966
ccc759dc 11967 intel_crtc->primary_enabled = true;
465c120c 11968
ccc759dc
GP
11969 dev_priv->display.update_primary_plane(crtc, plane->fb,
11970 crtc->x, crtc->y);
ccc759dc
GP
11971 } else {
11972 /*
11973 * If clipping results in a non-visible primary plane,
11974 * we'll disable the primary plane. Note that this is
11975 * a bit different than what happens if userspace
11976 * explicitly disables the plane by passing fb=0
11977 * because plane->fb still gets set and pinned.
11978 */
11979 intel_disable_primary_hw_plane(plane, crtc);
48404c1e 11980 }
ccc759dc 11981 }
465c120c
MR
11982}
11983
32b7eeec 11984static void intel_begin_crtc_commit(struct drm_crtc *crtc)
3c692a41 11985{
32b7eeec 11986 struct drm_device *dev = crtc->dev;
140fd38d 11987 struct drm_i915_private *dev_priv = dev->dev_private;
3c692a41 11988 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ea2c67bb
MR
11989 struct intel_plane *intel_plane;
11990 struct drm_plane *p;
11991 unsigned fb_bits = 0;
11992
11993 /* Track fb's for any planes being disabled */
11994 list_for_each_entry(p, &dev->mode_config.plane_list, head) {
11995 intel_plane = to_intel_plane(p);
11996
11997 if (intel_crtc->atomic.disabled_planes &
11998 (1 << drm_plane_index(p))) {
11999 switch (p->type) {
12000 case DRM_PLANE_TYPE_PRIMARY:
12001 fb_bits = INTEL_FRONTBUFFER_PRIMARY(intel_plane->pipe);
12002 break;
12003 case DRM_PLANE_TYPE_CURSOR:
12004 fb_bits = INTEL_FRONTBUFFER_CURSOR(intel_plane->pipe);
12005 break;
12006 case DRM_PLANE_TYPE_OVERLAY:
12007 fb_bits = INTEL_FRONTBUFFER_SPRITE(intel_plane->pipe);
12008 break;
12009 }
3c692a41 12010
ea2c67bb
MR
12011 mutex_lock(&dev->struct_mutex);
12012 i915_gem_track_fb(intel_fb_obj(p->fb), NULL, fb_bits);
12013 mutex_unlock(&dev->struct_mutex);
12014 }
12015 }
3c692a41 12016
32b7eeec
MR
12017 if (intel_crtc->atomic.wait_for_flips)
12018 intel_crtc_wait_for_pending_flips(crtc);
3c692a41 12019
32b7eeec
MR
12020 if (intel_crtc->atomic.disable_fbc)
12021 intel_fbc_disable(dev);
3c692a41 12022
32b7eeec
MR
12023 if (intel_crtc->atomic.pre_disable_primary)
12024 intel_pre_disable_primary(crtc);
3c692a41 12025
32b7eeec
MR
12026 if (intel_crtc->atomic.update_wm)
12027 intel_update_watermarks(crtc);
3c692a41 12028
32b7eeec 12029 intel_runtime_pm_get(dev_priv);
3c692a41 12030
c34c9ee4
MR
12031 /* Perform vblank evasion around commit operation */
12032 if (intel_crtc->active)
12033 intel_crtc->atomic.evade =
12034 intel_pipe_update_start(intel_crtc,
12035 &intel_crtc->atomic.start_vbl_count);
32b7eeec
MR
12036}
12037
12038static void intel_finish_crtc_commit(struct drm_crtc *crtc)
12039{
12040 struct drm_device *dev = crtc->dev;
12041 struct drm_i915_private *dev_priv = dev->dev_private;
12042 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12043 struct drm_plane *p;
12044
c34c9ee4
MR
12045 if (intel_crtc->atomic.evade)
12046 intel_pipe_update_end(intel_crtc,
12047 intel_crtc->atomic.start_vbl_count);
3c692a41 12048
140fd38d 12049 intel_runtime_pm_put(dev_priv);
3c692a41 12050
32b7eeec
MR
12051 if (intel_crtc->atomic.wait_vblank)
12052 intel_wait_for_vblank(dev, intel_crtc->pipe);
12053
12054 intel_frontbuffer_flip(dev, intel_crtc->atomic.fb_bits);
12055
12056 if (intel_crtc->atomic.update_fbc) {
ccc759dc 12057 mutex_lock(&dev->struct_mutex);
7ff0ebcc 12058 intel_fbc_update(dev);
ccc759dc 12059 mutex_unlock(&dev->struct_mutex);
38f3ce3a 12060 }
3c692a41 12061
32b7eeec
MR
12062 if (intel_crtc->atomic.post_enable_primary)
12063 intel_post_enable_primary(crtc);
3c692a41 12064
32b7eeec
MR
12065 drm_for_each_legacy_plane(p, &dev->mode_config.plane_list)
12066 if (intel_crtc->atomic.update_sprite_watermarks & drm_plane_index(p))
12067 intel_update_sprite_watermarks(p, crtc, 0, 0, 0,
12068 false, false);
12069
12070 memset(&intel_crtc->atomic, 0, sizeof(intel_crtc->atomic));
3c692a41
GP
12071}
12072
cf4c7c12 12073/**
4a3b8769
MR
12074 * intel_plane_destroy - destroy a plane
12075 * @plane: plane to destroy
cf4c7c12 12076 *
4a3b8769
MR
12077 * Common destruction function for all types of planes (primary, cursor,
12078 * sprite).
cf4c7c12 12079 */
4a3b8769 12080void intel_plane_destroy(struct drm_plane *plane)
465c120c
MR
12081{
12082 struct intel_plane *intel_plane = to_intel_plane(plane);
12083 drm_plane_cleanup(plane);
12084 kfree(intel_plane);
12085}
12086
65a3fea0 12087const struct drm_plane_funcs intel_plane_funcs = {
ea2c67bb
MR
12088 .update_plane = drm_plane_helper_update,
12089 .disable_plane = drm_plane_helper_disable,
3d7d6510 12090 .destroy = intel_plane_destroy,
c196e1d6 12091 .set_property = drm_atomic_helper_plane_set_property,
a98b3431
MR
12092 .atomic_get_property = intel_plane_atomic_get_property,
12093 .atomic_set_property = intel_plane_atomic_set_property,
ea2c67bb
MR
12094 .atomic_duplicate_state = intel_plane_duplicate_state,
12095 .atomic_destroy_state = intel_plane_destroy_state,
12096
465c120c
MR
12097};
12098
12099static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
12100 int pipe)
12101{
12102 struct intel_plane *primary;
8e7d688b 12103 struct intel_plane_state *state;
465c120c
MR
12104 const uint32_t *intel_primary_formats;
12105 int num_formats;
12106
12107 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
12108 if (primary == NULL)
12109 return NULL;
12110
8e7d688b
MR
12111 state = intel_create_plane_state(&primary->base);
12112 if (!state) {
ea2c67bb
MR
12113 kfree(primary);
12114 return NULL;
12115 }
8e7d688b 12116 primary->base.state = &state->base;
ea2c67bb 12117
465c120c
MR
12118 primary->can_scale = false;
12119 primary->max_downscale = 1;
12120 primary->pipe = pipe;
12121 primary->plane = pipe;
c59cb179
MR
12122 primary->check_plane = intel_check_primary_plane;
12123 primary->commit_plane = intel_commit_primary_plane;
465c120c
MR
12124 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
12125 primary->plane = !pipe;
12126
12127 if (INTEL_INFO(dev)->gen <= 3) {
12128 intel_primary_formats = intel_primary_formats_gen2;
12129 num_formats = ARRAY_SIZE(intel_primary_formats_gen2);
12130 } else {
12131 intel_primary_formats = intel_primary_formats_gen4;
12132 num_formats = ARRAY_SIZE(intel_primary_formats_gen4);
12133 }
12134
12135 drm_universal_plane_init(dev, &primary->base, 0,
65a3fea0 12136 &intel_plane_funcs,
465c120c
MR
12137 intel_primary_formats, num_formats,
12138 DRM_PLANE_TYPE_PRIMARY);
48404c1e
SJ
12139
12140 if (INTEL_INFO(dev)->gen >= 4) {
12141 if (!dev->mode_config.rotation_property)
12142 dev->mode_config.rotation_property =
12143 drm_mode_create_rotation_property(dev,
12144 BIT(DRM_ROTATE_0) |
12145 BIT(DRM_ROTATE_180));
12146 if (dev->mode_config.rotation_property)
12147 drm_object_attach_property(&primary->base.base,
12148 dev->mode_config.rotation_property,
8e7d688b 12149 state->base.rotation);
48404c1e
SJ
12150 }
12151
ea2c67bb
MR
12152 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
12153
465c120c
MR
12154 return &primary->base;
12155}
12156
3d7d6510 12157static int
852e787c
GP
12158intel_check_cursor_plane(struct drm_plane *plane,
12159 struct intel_plane_state *state)
3d7d6510 12160{
2b875c22 12161 struct drm_crtc *crtc = state->base.crtc;
ea2c67bb 12162 struct drm_device *dev = plane->dev;
2b875c22 12163 struct drm_framebuffer *fb = state->base.fb;
852e787c
GP
12164 struct drm_rect *dest = &state->dst;
12165 struct drm_rect *src = &state->src;
12166 const struct drm_rect *clip = &state->clip;
757f9a3e 12167 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
ea2c67bb 12168 struct intel_crtc *intel_crtc;
757f9a3e
GP
12169 unsigned stride;
12170 int ret;
3d7d6510 12171
ea2c67bb
MR
12172 crtc = crtc ? crtc : plane->crtc;
12173 intel_crtc = to_intel_crtc(crtc);
12174
757f9a3e 12175 ret = drm_plane_helper_check_update(plane, crtc, fb,
852e787c 12176 src, dest, clip,
3d7d6510
MR
12177 DRM_PLANE_HELPER_NO_SCALING,
12178 DRM_PLANE_HELPER_NO_SCALING,
852e787c 12179 true, true, &state->visible);
757f9a3e
GP
12180 if (ret)
12181 return ret;
12182
12183
12184 /* if we want to turn off the cursor ignore width and height */
12185 if (!obj)
32b7eeec 12186 goto finish;
757f9a3e 12187
757f9a3e 12188 /* Check for which cursor types we support */
ea2c67bb
MR
12189 if (!cursor_size_ok(dev, state->base.crtc_w, state->base.crtc_h)) {
12190 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
12191 state->base.crtc_w, state->base.crtc_h);
757f9a3e
GP
12192 return -EINVAL;
12193 }
12194
ea2c67bb
MR
12195 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
12196 if (obj->base.size < stride * state->base.crtc_h) {
757f9a3e
GP
12197 DRM_DEBUG_KMS("buffer is too small\n");
12198 return -ENOMEM;
12199 }
12200
12201 /* we only need to pin inside GTT if cursor is non-phy */
12202 mutex_lock(&dev->struct_mutex);
12203 if (!INTEL_INFO(dev)->cursor_needs_physical && obj->tiling_mode) {
12204 DRM_DEBUG_KMS("cursor cannot be tiled\n");
12205 ret = -EINVAL;
12206 }
12207 mutex_unlock(&dev->struct_mutex);
12208
32b7eeec
MR
12209finish:
12210 if (intel_crtc->active) {
ea2c67bb 12211 if (intel_crtc->cursor_width != state->base.crtc_w)
32b7eeec
MR
12212 intel_crtc->atomic.update_wm = true;
12213
12214 intel_crtc->atomic.fb_bits |=
12215 INTEL_FRONTBUFFER_CURSOR(intel_crtc->pipe);
12216 }
12217
757f9a3e 12218 return ret;
852e787c 12219}
3d7d6510 12220
f4a2cf29 12221static void
852e787c
GP
12222intel_commit_cursor_plane(struct drm_plane *plane,
12223 struct intel_plane_state *state)
12224{
2b875c22 12225 struct drm_crtc *crtc = state->base.crtc;
ea2c67bb
MR
12226 struct drm_device *dev = plane->dev;
12227 struct intel_crtc *intel_crtc;
a919db90 12228 struct intel_plane *intel_plane = to_intel_plane(plane);
2b875c22 12229 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
a912f12f 12230 uint32_t addr;
852e787c 12231
ea2c67bb
MR
12232 crtc = crtc ? crtc : plane->crtc;
12233 intel_crtc = to_intel_crtc(crtc);
12234
2b875c22 12235 plane->fb = state->base.fb;
ea2c67bb
MR
12236 crtc->cursor_x = state->base.crtc_x;
12237 crtc->cursor_y = state->base.crtc_y;
12238
a919db90
SJ
12239 intel_plane->obj = obj;
12240
a912f12f
GP
12241 if (intel_crtc->cursor_bo == obj)
12242 goto update;
4ed91096 12243
f4a2cf29 12244 if (!obj)
a912f12f 12245 addr = 0;
f4a2cf29 12246 else if (!INTEL_INFO(dev)->cursor_needs_physical)
a912f12f 12247 addr = i915_gem_obj_ggtt_offset(obj);
f4a2cf29 12248 else
a912f12f 12249 addr = obj->phys_handle->busaddr;
852e787c 12250
a912f12f
GP
12251 intel_crtc->cursor_addr = addr;
12252 intel_crtc->cursor_bo = obj;
12253update:
ea2c67bb
MR
12254 intel_crtc->cursor_width = state->base.crtc_w;
12255 intel_crtc->cursor_height = state->base.crtc_h;
852e787c 12256
32b7eeec 12257 if (intel_crtc->active)
a912f12f 12258 intel_crtc_update_cursor(crtc, state->visible);
852e787c
GP
12259}
12260
3d7d6510
MR
12261static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
12262 int pipe)
12263{
12264 struct intel_plane *cursor;
8e7d688b 12265 struct intel_plane_state *state;
3d7d6510
MR
12266
12267 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
12268 if (cursor == NULL)
12269 return NULL;
12270
8e7d688b
MR
12271 state = intel_create_plane_state(&cursor->base);
12272 if (!state) {
ea2c67bb
MR
12273 kfree(cursor);
12274 return NULL;
12275 }
8e7d688b 12276 cursor->base.state = &state->base;
ea2c67bb 12277
3d7d6510
MR
12278 cursor->can_scale = false;
12279 cursor->max_downscale = 1;
12280 cursor->pipe = pipe;
12281 cursor->plane = pipe;
c59cb179
MR
12282 cursor->check_plane = intel_check_cursor_plane;
12283 cursor->commit_plane = intel_commit_cursor_plane;
3d7d6510
MR
12284
12285 drm_universal_plane_init(dev, &cursor->base, 0,
65a3fea0 12286 &intel_plane_funcs,
3d7d6510
MR
12287 intel_cursor_formats,
12288 ARRAY_SIZE(intel_cursor_formats),
12289 DRM_PLANE_TYPE_CURSOR);
4398ad45
VS
12290
12291 if (INTEL_INFO(dev)->gen >= 4) {
12292 if (!dev->mode_config.rotation_property)
12293 dev->mode_config.rotation_property =
12294 drm_mode_create_rotation_property(dev,
12295 BIT(DRM_ROTATE_0) |
12296 BIT(DRM_ROTATE_180));
12297 if (dev->mode_config.rotation_property)
12298 drm_object_attach_property(&cursor->base.base,
12299 dev->mode_config.rotation_property,
8e7d688b 12300 state->base.rotation);
4398ad45
VS
12301 }
12302
ea2c67bb
MR
12303 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
12304
3d7d6510
MR
12305 return &cursor->base;
12306}
12307
b358d0a6 12308static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 12309{
fbee40df 12310 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 12311 struct intel_crtc *intel_crtc;
f5de6e07 12312 struct intel_crtc_state *crtc_state = NULL;
3d7d6510
MR
12313 struct drm_plane *primary = NULL;
12314 struct drm_plane *cursor = NULL;
465c120c 12315 int i, ret;
79e53945 12316
955382f3 12317 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
79e53945
JB
12318 if (intel_crtc == NULL)
12319 return;
12320
f5de6e07
ACO
12321 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
12322 if (!crtc_state)
12323 goto fail;
12324 intel_crtc_set_state(intel_crtc, crtc_state);
12325
465c120c 12326 primary = intel_primary_plane_create(dev, pipe);
3d7d6510
MR
12327 if (!primary)
12328 goto fail;
12329
12330 cursor = intel_cursor_plane_create(dev, pipe);
12331 if (!cursor)
12332 goto fail;
12333
465c120c 12334 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
3d7d6510
MR
12335 cursor, &intel_crtc_funcs);
12336 if (ret)
12337 goto fail;
79e53945
JB
12338
12339 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
79e53945
JB
12340 for (i = 0; i < 256; i++) {
12341 intel_crtc->lut_r[i] = i;
12342 intel_crtc->lut_g[i] = i;
12343 intel_crtc->lut_b[i] = i;
12344 }
12345
1f1c2e24
VS
12346 /*
12347 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
8c0f92e1 12348 * is hooked to pipe B. Hence we want plane A feeding pipe B.
1f1c2e24 12349 */
80824003
JB
12350 intel_crtc->pipe = pipe;
12351 intel_crtc->plane = pipe;
3a77c4c4 12352 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
28c97730 12353 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 12354 intel_crtc->plane = !pipe;
80824003
JB
12355 }
12356
4b0e333e
CW
12357 intel_crtc->cursor_base = ~0;
12358 intel_crtc->cursor_cntl = ~0;
dc41c154 12359 intel_crtc->cursor_size = ~0;
8d7849db 12360
22fd0fab
JB
12361 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
12362 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
12363 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
12364 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
12365
9362c7c5
ACO
12366 INIT_WORK(&intel_crtc->mmio_flip.work, intel_mmio_flip_work_func);
12367
79e53945 12368 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
87b6b101
DV
12369
12370 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
3d7d6510
MR
12371 return;
12372
12373fail:
12374 if (primary)
12375 drm_plane_cleanup(primary);
12376 if (cursor)
12377 drm_plane_cleanup(cursor);
f5de6e07 12378 kfree(crtc_state);
3d7d6510 12379 kfree(intel_crtc);
79e53945
JB
12380}
12381
752aa88a
JB
12382enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
12383{
12384 struct drm_encoder *encoder = connector->base.encoder;
6e9f798d 12385 struct drm_device *dev = connector->base.dev;
752aa88a 12386
51fd371b 12387 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
752aa88a 12388
d3babd3f 12389 if (!encoder || WARN_ON(!encoder->crtc))
752aa88a
JB
12390 return INVALID_PIPE;
12391
12392 return to_intel_crtc(encoder->crtc)->pipe;
12393}
12394
08d7b3d1 12395int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 12396 struct drm_file *file)
08d7b3d1 12397{
08d7b3d1 12398 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
7707e653 12399 struct drm_crtc *drmmode_crtc;
c05422d5 12400 struct intel_crtc *crtc;
08d7b3d1 12401
1cff8f6b
DV
12402 if (!drm_core_check_feature(dev, DRIVER_MODESET))
12403 return -ENODEV;
08d7b3d1 12404
7707e653 12405 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
08d7b3d1 12406
7707e653 12407 if (!drmmode_crtc) {
08d7b3d1 12408 DRM_ERROR("no such CRTC id\n");
3f2c2057 12409 return -ENOENT;
08d7b3d1
CW
12410 }
12411
7707e653 12412 crtc = to_intel_crtc(drmmode_crtc);
c05422d5 12413 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 12414
c05422d5 12415 return 0;
08d7b3d1
CW
12416}
12417
66a9278e 12418static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 12419{
66a9278e
DV
12420 struct drm_device *dev = encoder->base.dev;
12421 struct intel_encoder *source_encoder;
79e53945 12422 int index_mask = 0;
79e53945
JB
12423 int entry = 0;
12424
b2784e15 12425 for_each_intel_encoder(dev, source_encoder) {
bc079e8b 12426 if (encoders_cloneable(encoder, source_encoder))
66a9278e
DV
12427 index_mask |= (1 << entry);
12428
79e53945
JB
12429 entry++;
12430 }
4ef69c7a 12431
79e53945
JB
12432 return index_mask;
12433}
12434
4d302442
CW
12435static bool has_edp_a(struct drm_device *dev)
12436{
12437 struct drm_i915_private *dev_priv = dev->dev_private;
12438
12439 if (!IS_MOBILE(dev))
12440 return false;
12441
12442 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
12443 return false;
12444
e3589908 12445 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
4d302442
CW
12446 return false;
12447
12448 return true;
12449}
12450
84b4e042
JB
12451static bool intel_crt_present(struct drm_device *dev)
12452{
12453 struct drm_i915_private *dev_priv = dev->dev_private;
12454
884497ed
DL
12455 if (INTEL_INFO(dev)->gen >= 9)
12456 return false;
12457
cf404ce4 12458 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
84b4e042
JB
12459 return false;
12460
12461 if (IS_CHERRYVIEW(dev))
12462 return false;
12463
12464 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
12465 return false;
12466
12467 return true;
12468}
12469
79e53945
JB
12470static void intel_setup_outputs(struct drm_device *dev)
12471{
725e30ad 12472 struct drm_i915_private *dev_priv = dev->dev_private;
4ef69c7a 12473 struct intel_encoder *encoder;
c6f95f27 12474 struct drm_connector *connector;
cb0953d7 12475 bool dpd_is_edp = false;
79e53945 12476
c9093354 12477 intel_lvds_init(dev);
79e53945 12478
84b4e042 12479 if (intel_crt_present(dev))
79935fca 12480 intel_crt_init(dev);
cb0953d7 12481
affa9354 12482 if (HAS_DDI(dev)) {
0e72a5b5
ED
12483 int found;
12484
12485 /* Haswell uses DDI functions to detect digital outputs */
12486 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
12487 /* DDI A only supports eDP */
12488 if (found)
12489 intel_ddi_init(dev, PORT_A);
12490
12491 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
12492 * register */
12493 found = I915_READ(SFUSE_STRAP);
12494
12495 if (found & SFUSE_STRAP_DDIB_DETECTED)
12496 intel_ddi_init(dev, PORT_B);
12497 if (found & SFUSE_STRAP_DDIC_DETECTED)
12498 intel_ddi_init(dev, PORT_C);
12499 if (found & SFUSE_STRAP_DDID_DETECTED)
12500 intel_ddi_init(dev, PORT_D);
12501 } else if (HAS_PCH_SPLIT(dev)) {
cb0953d7 12502 int found;
5d8a7752 12503 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
270b3042
DV
12504
12505 if (has_edp_a(dev))
12506 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 12507
dc0fa718 12508 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 12509 /* PCH SDVOB multiplex with HDMIB */
eef4eacb 12510 found = intel_sdvo_init(dev, PCH_SDVOB, true);
30ad48b7 12511 if (!found)
e2debe91 12512 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 12513 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 12514 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
12515 }
12516
dc0fa718 12517 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 12518 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 12519
dc0fa718 12520 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 12521 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 12522
5eb08b69 12523 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 12524 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 12525
270b3042 12526 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 12527 intel_dp_init(dev, PCH_DP_D, PORT_D);
4a87d65d 12528 } else if (IS_VALLEYVIEW(dev)) {
e17ac6db
VS
12529 /*
12530 * The DP_DETECTED bit is the latched state of the DDC
12531 * SDA pin at boot. However since eDP doesn't require DDC
12532 * (no way to plug in a DP->HDMI dongle) the DDC pins for
12533 * eDP ports may have been muxed to an alternate function.
12534 * Thus we can't rely on the DP_DETECTED bit alone to detect
12535 * eDP ports. Consult the VBT as well as DP_DETECTED to
12536 * detect eDP ports.
12537 */
d2182a66
VS
12538 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED &&
12539 !intel_dp_is_edp(dev, PORT_B))
585a94b8
AB
12540 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
12541 PORT_B);
e17ac6db
VS
12542 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED ||
12543 intel_dp_is_edp(dev, PORT_B))
12544 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
585a94b8 12545
d2182a66
VS
12546 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED &&
12547 !intel_dp_is_edp(dev, PORT_C))
6f6005a5
JB
12548 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
12549 PORT_C);
e17ac6db
VS
12550 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED ||
12551 intel_dp_is_edp(dev, PORT_C))
12552 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
19c03924 12553
9418c1f1 12554 if (IS_CHERRYVIEW(dev)) {
e17ac6db 12555 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED)
9418c1f1
VS
12556 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
12557 PORT_D);
e17ac6db
VS
12558 /* eDP not supported on port D, so don't check VBT */
12559 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
12560 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
9418c1f1
VS
12561 }
12562
3cfca973 12563 intel_dsi_init(dev);
103a196f 12564 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
27185ae1 12565 bool found = false;
7d57382e 12566
e2debe91 12567 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 12568 DRM_DEBUG_KMS("probing SDVOB\n");
e2debe91 12569 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
b01f2c3a
JB
12570 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
12571 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 12572 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 12573 }
27185ae1 12574
e7281eab 12575 if (!found && SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 12576 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 12577 }
13520b05
KH
12578
12579 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 12580
e2debe91 12581 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 12582 DRM_DEBUG_KMS("probing SDVOC\n");
e2debe91 12583 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
b01f2c3a 12584 }
27185ae1 12585
e2debe91 12586 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 12587
b01f2c3a
JB
12588 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
12589 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 12590 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 12591 }
e7281eab 12592 if (SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 12593 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 12594 }
27185ae1 12595
b01f2c3a 12596 if (SUPPORTS_INTEGRATED_DP(dev) &&
e7281eab 12597 (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 12598 intel_dp_init(dev, DP_D, PORT_D);
bad720ff 12599 } else if (IS_GEN2(dev))
79e53945
JB
12600 intel_dvo_init(dev);
12601
103a196f 12602 if (SUPPORTS_TV(dev))
79e53945
JB
12603 intel_tv_init(dev);
12604
c6f95f27
MR
12605 /*
12606 * FIXME: We don't have full atomic support yet, but we want to be
12607 * able to enable/test plane updates via the atomic interface in the
12608 * meantime. However as soon as we flip DRIVER_ATOMIC on, the DRM core
12609 * will take some atomic codepaths to lookup properties during
12610 * drmModeGetConnector() that unconditionally dereference
12611 * connector->state.
12612 *
12613 * We create a dummy connector state here for each connector to ensure
12614 * the DRM core doesn't try to dereference a NULL connector->state.
12615 * The actual connector properties will never be updated or contain
12616 * useful information, but since we're doing this specifically for
12617 * testing/debug of the plane operations (and only when a specific
12618 * kernel module option is given), that shouldn't really matter.
12619 *
12620 * Once atomic support for crtc's + connectors lands, this loop should
12621 * be removed since we'll be setting up real connector state, which
12622 * will contain Intel-specific properties.
12623 */
12624 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
12625 list_for_each_entry(connector,
12626 &dev->mode_config.connector_list,
12627 head) {
12628 if (!WARN_ON(connector->state)) {
12629 connector->state =
12630 kzalloc(sizeof(*connector->state),
12631 GFP_KERNEL);
12632 }
12633 }
12634 }
12635
0bc12bcb 12636 intel_psr_init(dev);
7c8f8a70 12637
b2784e15 12638 for_each_intel_encoder(dev, encoder) {
4ef69c7a
CW
12639 encoder->base.possible_crtcs = encoder->crtc_mask;
12640 encoder->base.possible_clones =
66a9278e 12641 intel_encoder_clones(encoder);
79e53945 12642 }
47356eb6 12643
dde86e2d 12644 intel_init_pch_refclk(dev);
270b3042
DV
12645
12646 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
12647}
12648
12649static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
12650{
60a5ca01 12651 struct drm_device *dev = fb->dev;
79e53945 12652 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945 12653
ef2d633e 12654 drm_framebuffer_cleanup(fb);
60a5ca01 12655 mutex_lock(&dev->struct_mutex);
ef2d633e 12656 WARN_ON(!intel_fb->obj->framebuffer_references--);
60a5ca01
VS
12657 drm_gem_object_unreference(&intel_fb->obj->base);
12658 mutex_unlock(&dev->struct_mutex);
79e53945
JB
12659 kfree(intel_fb);
12660}
12661
12662static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 12663 struct drm_file *file,
79e53945
JB
12664 unsigned int *handle)
12665{
12666 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 12667 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 12668
05394f39 12669 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
12670}
12671
12672static const struct drm_framebuffer_funcs intel_fb_funcs = {
12673 .destroy = intel_user_framebuffer_destroy,
12674 .create_handle = intel_user_framebuffer_create_handle,
12675};
12676
b5ea642a
DV
12677static int intel_framebuffer_init(struct drm_device *dev,
12678 struct intel_framebuffer *intel_fb,
12679 struct drm_mode_fb_cmd2 *mode_cmd,
12680 struct drm_i915_gem_object *obj)
79e53945 12681{
a57ce0b2 12682 int aligned_height;
a35cdaa0 12683 int pitch_limit;
79e53945
JB
12684 int ret;
12685
dd4916c5
DV
12686 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
12687
c16ed4be
CW
12688 if (obj->tiling_mode == I915_TILING_Y) {
12689 DRM_DEBUG("hardware does not support tiling Y\n");
57cd6508 12690 return -EINVAL;
c16ed4be 12691 }
57cd6508 12692
c16ed4be
CW
12693 if (mode_cmd->pitches[0] & 63) {
12694 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
12695 mode_cmd->pitches[0]);
57cd6508 12696 return -EINVAL;
c16ed4be 12697 }
57cd6508 12698
a35cdaa0
CW
12699 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
12700 pitch_limit = 32*1024;
12701 } else if (INTEL_INFO(dev)->gen >= 4) {
12702 if (obj->tiling_mode)
12703 pitch_limit = 16*1024;
12704 else
12705 pitch_limit = 32*1024;
12706 } else if (INTEL_INFO(dev)->gen >= 3) {
12707 if (obj->tiling_mode)
12708 pitch_limit = 8*1024;
12709 else
12710 pitch_limit = 16*1024;
12711 } else
12712 /* XXX DSPC is limited to 4k tiled */
12713 pitch_limit = 8*1024;
12714
12715 if (mode_cmd->pitches[0] > pitch_limit) {
12716 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
12717 obj->tiling_mode ? "tiled" : "linear",
12718 mode_cmd->pitches[0], pitch_limit);
5d7bd705 12719 return -EINVAL;
c16ed4be 12720 }
5d7bd705
VS
12721
12722 if (obj->tiling_mode != I915_TILING_NONE &&
c16ed4be
CW
12723 mode_cmd->pitches[0] != obj->stride) {
12724 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
12725 mode_cmd->pitches[0], obj->stride);
5d7bd705 12726 return -EINVAL;
c16ed4be 12727 }
5d7bd705 12728
57779d06 12729 /* Reject formats not supported by any plane early. */
308e5bcb 12730 switch (mode_cmd->pixel_format) {
57779d06 12731 case DRM_FORMAT_C8:
04b3924d
VS
12732 case DRM_FORMAT_RGB565:
12733 case DRM_FORMAT_XRGB8888:
12734 case DRM_FORMAT_ARGB8888:
57779d06
VS
12735 break;
12736 case DRM_FORMAT_XRGB1555:
12737 case DRM_FORMAT_ARGB1555:
c16ed4be 12738 if (INTEL_INFO(dev)->gen > 3) {
4ee62c76
VS
12739 DRM_DEBUG("unsupported pixel format: %s\n",
12740 drm_get_format_name(mode_cmd->pixel_format));
57779d06 12741 return -EINVAL;
c16ed4be 12742 }
57779d06
VS
12743 break;
12744 case DRM_FORMAT_XBGR8888:
12745 case DRM_FORMAT_ABGR8888:
04b3924d
VS
12746 case DRM_FORMAT_XRGB2101010:
12747 case DRM_FORMAT_ARGB2101010:
57779d06
VS
12748 case DRM_FORMAT_XBGR2101010:
12749 case DRM_FORMAT_ABGR2101010:
c16ed4be 12750 if (INTEL_INFO(dev)->gen < 4) {
4ee62c76
VS
12751 DRM_DEBUG("unsupported pixel format: %s\n",
12752 drm_get_format_name(mode_cmd->pixel_format));
57779d06 12753 return -EINVAL;
c16ed4be 12754 }
b5626747 12755 break;
04b3924d
VS
12756 case DRM_FORMAT_YUYV:
12757 case DRM_FORMAT_UYVY:
12758 case DRM_FORMAT_YVYU:
12759 case DRM_FORMAT_VYUY:
c16ed4be 12760 if (INTEL_INFO(dev)->gen < 5) {
4ee62c76
VS
12761 DRM_DEBUG("unsupported pixel format: %s\n",
12762 drm_get_format_name(mode_cmd->pixel_format));
57779d06 12763 return -EINVAL;
c16ed4be 12764 }
57cd6508
CW
12765 break;
12766 default:
4ee62c76
VS
12767 DRM_DEBUG("unsupported pixel format: %s\n",
12768 drm_get_format_name(mode_cmd->pixel_format));
57cd6508
CW
12769 return -EINVAL;
12770 }
12771
90f9a336
VS
12772 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
12773 if (mode_cmd->offsets[0] != 0)
12774 return -EINVAL;
12775
ec2c981e
DL
12776 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
12777 obj->tiling_mode);
53155c0a
DV
12778 /* FIXME drm helper for size checks (especially planar formats)? */
12779 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
12780 return -EINVAL;
12781
c7d73f6a
DV
12782 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
12783 intel_fb->obj = obj;
80075d49 12784 intel_fb->obj->framebuffer_references++;
c7d73f6a 12785
79e53945
JB
12786 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
12787 if (ret) {
12788 DRM_ERROR("framebuffer init failed %d\n", ret);
12789 return ret;
12790 }
12791
79e53945
JB
12792 return 0;
12793}
12794
79e53945
JB
12795static struct drm_framebuffer *
12796intel_user_framebuffer_create(struct drm_device *dev,
12797 struct drm_file *filp,
308e5bcb 12798 struct drm_mode_fb_cmd2 *mode_cmd)
79e53945 12799{
05394f39 12800 struct drm_i915_gem_object *obj;
79e53945 12801
308e5bcb
JB
12802 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
12803 mode_cmd->handles[0]));
c8725226 12804 if (&obj->base == NULL)
cce13ff7 12805 return ERR_PTR(-ENOENT);
79e53945 12806
d2dff872 12807 return intel_framebuffer_create(dev, mode_cmd, obj);
79e53945
JB
12808}
12809
4520f53a 12810#ifndef CONFIG_DRM_I915_FBDEV
0632fef6 12811static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
4520f53a
DV
12812{
12813}
12814#endif
12815
79e53945 12816static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 12817 .fb_create = intel_user_framebuffer_create,
0632fef6 12818 .output_poll_changed = intel_fbdev_output_poll_changed,
5ee67f1c
MR
12819 .atomic_check = intel_atomic_check,
12820 .atomic_commit = intel_atomic_commit,
79e53945
JB
12821};
12822
e70236a8
JB
12823/* Set up chip specific display functions */
12824static void intel_init_display(struct drm_device *dev)
12825{
12826 struct drm_i915_private *dev_priv = dev->dev_private;
12827
ee9300bb
DV
12828 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
12829 dev_priv->display.find_dpll = g4x_find_best_dpll;
ef9348c8
CML
12830 else if (IS_CHERRYVIEW(dev))
12831 dev_priv->display.find_dpll = chv_find_best_dpll;
ee9300bb
DV
12832 else if (IS_VALLEYVIEW(dev))
12833 dev_priv->display.find_dpll = vlv_find_best_dpll;
12834 else if (IS_PINEVIEW(dev))
12835 dev_priv->display.find_dpll = pnv_find_best_dpll;
12836 else
12837 dev_priv->display.find_dpll = i9xx_find_best_dpll;
12838
bc8d7dff
DL
12839 if (INTEL_INFO(dev)->gen >= 9) {
12840 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
12841 dev_priv->display.get_initial_plane_config =
12842 skylake_get_initial_plane_config;
bc8d7dff
DL
12843 dev_priv->display.crtc_compute_clock =
12844 haswell_crtc_compute_clock;
12845 dev_priv->display.crtc_enable = haswell_crtc_enable;
12846 dev_priv->display.crtc_disable = haswell_crtc_disable;
12847 dev_priv->display.off = ironlake_crtc_off;
12848 dev_priv->display.update_primary_plane =
12849 skylake_update_primary_plane;
12850 } else if (HAS_DDI(dev)) {
0e8ffe1b 12851 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
12852 dev_priv->display.get_initial_plane_config =
12853 ironlake_get_initial_plane_config;
797d0259
ACO
12854 dev_priv->display.crtc_compute_clock =
12855 haswell_crtc_compute_clock;
4f771f10
PZ
12856 dev_priv->display.crtc_enable = haswell_crtc_enable;
12857 dev_priv->display.crtc_disable = haswell_crtc_disable;
df8ad70c 12858 dev_priv->display.off = ironlake_crtc_off;
bc8d7dff
DL
12859 dev_priv->display.update_primary_plane =
12860 ironlake_update_primary_plane;
09b4ddf9 12861 } else if (HAS_PCH_SPLIT(dev)) {
0e8ffe1b 12862 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
5724dbd1
DL
12863 dev_priv->display.get_initial_plane_config =
12864 ironlake_get_initial_plane_config;
3fb37703
ACO
12865 dev_priv->display.crtc_compute_clock =
12866 ironlake_crtc_compute_clock;
76e5a89c
DV
12867 dev_priv->display.crtc_enable = ironlake_crtc_enable;
12868 dev_priv->display.crtc_disable = ironlake_crtc_disable;
ee7b9f93 12869 dev_priv->display.off = ironlake_crtc_off;
262ca2b0
MR
12870 dev_priv->display.update_primary_plane =
12871 ironlake_update_primary_plane;
89b667f8
JB
12872 } else if (IS_VALLEYVIEW(dev)) {
12873 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
12874 dev_priv->display.get_initial_plane_config =
12875 i9xx_get_initial_plane_config;
d6dfee7a 12876 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
89b667f8
JB
12877 dev_priv->display.crtc_enable = valleyview_crtc_enable;
12878 dev_priv->display.crtc_disable = i9xx_crtc_disable;
12879 dev_priv->display.off = i9xx_crtc_off;
262ca2b0
MR
12880 dev_priv->display.update_primary_plane =
12881 i9xx_update_primary_plane;
f564048e 12882 } else {
0e8ffe1b 12883 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
12884 dev_priv->display.get_initial_plane_config =
12885 i9xx_get_initial_plane_config;
d6dfee7a 12886 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
76e5a89c
DV
12887 dev_priv->display.crtc_enable = i9xx_crtc_enable;
12888 dev_priv->display.crtc_disable = i9xx_crtc_disable;
ee7b9f93 12889 dev_priv->display.off = i9xx_crtc_off;
262ca2b0
MR
12890 dev_priv->display.update_primary_plane =
12891 i9xx_update_primary_plane;
f564048e 12892 }
e70236a8 12893
e70236a8 12894 /* Returns the core display clock speed */
25eb05fc
JB
12895 if (IS_VALLEYVIEW(dev))
12896 dev_priv->display.get_display_clock_speed =
12897 valleyview_get_display_clock_speed;
12898 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
e70236a8
JB
12899 dev_priv->display.get_display_clock_speed =
12900 i945_get_display_clock_speed;
12901 else if (IS_I915G(dev))
12902 dev_priv->display.get_display_clock_speed =
12903 i915_get_display_clock_speed;
257a7ffc 12904 else if (IS_I945GM(dev) || IS_845G(dev))
e70236a8
JB
12905 dev_priv->display.get_display_clock_speed =
12906 i9xx_misc_get_display_clock_speed;
257a7ffc
DV
12907 else if (IS_PINEVIEW(dev))
12908 dev_priv->display.get_display_clock_speed =
12909 pnv_get_display_clock_speed;
e70236a8
JB
12910 else if (IS_I915GM(dev))
12911 dev_priv->display.get_display_clock_speed =
12912 i915gm_get_display_clock_speed;
12913 else if (IS_I865G(dev))
12914 dev_priv->display.get_display_clock_speed =
12915 i865_get_display_clock_speed;
f0f8a9ce 12916 else if (IS_I85X(dev))
e70236a8
JB
12917 dev_priv->display.get_display_clock_speed =
12918 i855_get_display_clock_speed;
12919 else /* 852, 830 */
12920 dev_priv->display.get_display_clock_speed =
12921 i830_get_display_clock_speed;
12922
7c10a2b5 12923 if (IS_GEN5(dev)) {
3bb11b53 12924 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
3bb11b53
SJ
12925 } else if (IS_GEN6(dev)) {
12926 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
3bb11b53
SJ
12927 } else if (IS_IVYBRIDGE(dev)) {
12928 /* FIXME: detect B0+ stepping and use auto training */
12929 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
3bb11b53
SJ
12930 dev_priv->display.modeset_global_resources =
12931 ivb_modeset_global_resources;
059b2fe9 12932 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
3bb11b53 12933 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
30a970c6
JB
12934 } else if (IS_VALLEYVIEW(dev)) {
12935 dev_priv->display.modeset_global_resources =
12936 valleyview_modeset_global_resources;
e70236a8 12937 }
8c9f3aaf
JB
12938
12939 /* Default just returns -ENODEV to indicate unsupported */
12940 dev_priv->display.queue_flip = intel_default_queue_flip;
12941
12942 switch (INTEL_INFO(dev)->gen) {
12943 case 2:
12944 dev_priv->display.queue_flip = intel_gen2_queue_flip;
12945 break;
12946
12947 case 3:
12948 dev_priv->display.queue_flip = intel_gen3_queue_flip;
12949 break;
12950
12951 case 4:
12952 case 5:
12953 dev_priv->display.queue_flip = intel_gen4_queue_flip;
12954 break;
12955
12956 case 6:
12957 dev_priv->display.queue_flip = intel_gen6_queue_flip;
12958 break;
7c9017e5 12959 case 7:
4e0bbc31 12960 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
7c9017e5
JB
12961 dev_priv->display.queue_flip = intel_gen7_queue_flip;
12962 break;
830c81db
DL
12963 case 9:
12964 dev_priv->display.queue_flip = intel_gen9_queue_flip;
12965 break;
8c9f3aaf 12966 }
7bd688cd
JN
12967
12968 intel_panel_init_backlight_funcs(dev);
e39b999a
VS
12969
12970 mutex_init(&dev_priv->pps_mutex);
e70236a8
JB
12971}
12972
b690e96c
JB
12973/*
12974 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
12975 * resume, or other times. This quirk makes sure that's the case for
12976 * affected systems.
12977 */
0206e353 12978static void quirk_pipea_force(struct drm_device *dev)
b690e96c
JB
12979{
12980 struct drm_i915_private *dev_priv = dev->dev_private;
12981
12982 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 12983 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
12984}
12985
b6b5d049
VS
12986static void quirk_pipeb_force(struct drm_device *dev)
12987{
12988 struct drm_i915_private *dev_priv = dev->dev_private;
12989
12990 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
12991 DRM_INFO("applying pipe b force quirk\n");
12992}
12993
435793df
KP
12994/*
12995 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
12996 */
12997static void quirk_ssc_force_disable(struct drm_device *dev)
12998{
12999 struct drm_i915_private *dev_priv = dev->dev_private;
13000 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 13001 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
13002}
13003
4dca20ef 13004/*
5a15ab5b
CE
13005 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
13006 * brightness value
4dca20ef
CE
13007 */
13008static void quirk_invert_brightness(struct drm_device *dev)
13009{
13010 struct drm_i915_private *dev_priv = dev->dev_private;
13011 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 13012 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
13013}
13014
9c72cc6f
SD
13015/* Some VBT's incorrectly indicate no backlight is present */
13016static void quirk_backlight_present(struct drm_device *dev)
13017{
13018 struct drm_i915_private *dev_priv = dev->dev_private;
13019 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
13020 DRM_INFO("applying backlight present quirk\n");
13021}
13022
b690e96c
JB
13023struct intel_quirk {
13024 int device;
13025 int subsystem_vendor;
13026 int subsystem_device;
13027 void (*hook)(struct drm_device *dev);
13028};
13029
5f85f176
EE
13030/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
13031struct intel_dmi_quirk {
13032 void (*hook)(struct drm_device *dev);
13033 const struct dmi_system_id (*dmi_id_list)[];
13034};
13035
13036static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
13037{
13038 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
13039 return 1;
13040}
13041
13042static const struct intel_dmi_quirk intel_dmi_quirks[] = {
13043 {
13044 .dmi_id_list = &(const struct dmi_system_id[]) {
13045 {
13046 .callback = intel_dmi_reverse_brightness,
13047 .ident = "NCR Corporation",
13048 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
13049 DMI_MATCH(DMI_PRODUCT_NAME, ""),
13050 },
13051 },
13052 { } /* terminating entry */
13053 },
13054 .hook = quirk_invert_brightness,
13055 },
13056};
13057
c43b5634 13058static struct intel_quirk intel_quirks[] = {
b690e96c 13059 /* HP Mini needs pipe A force quirk (LP: #322104) */
0206e353 13060 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
b690e96c 13061
b690e96c
JB
13062 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
13063 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
13064
b690e96c
JB
13065 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
13066 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
13067
5f080c0f
VS
13068 /* 830 needs to leave pipe A & dpll A up */
13069 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
13070
b6b5d049
VS
13071 /* 830 needs to leave pipe B & dpll B up */
13072 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
13073
435793df
KP
13074 /* Lenovo U160 cannot use SSC on LVDS */
13075 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
13076
13077 /* Sony Vaio Y cannot use SSC on LVDS */
13078 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b 13079
be505f64
AH
13080 /* Acer Aspire 5734Z must invert backlight brightness */
13081 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
13082
13083 /* Acer/eMachines G725 */
13084 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
13085
13086 /* Acer/eMachines e725 */
13087 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
13088
13089 /* Acer/Packard Bell NCL20 */
13090 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
13091
13092 /* Acer Aspire 4736Z */
13093 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
0f540c3a
JN
13094
13095 /* Acer Aspire 5336 */
13096 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
2e93a1aa
SD
13097
13098 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
13099 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
d4967d8c 13100
dfb3d47b
SD
13101 /* Acer C720 Chromebook (Core i3 4005U) */
13102 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
13103
b2a9601c 13104 /* Apple Macbook 2,1 (Core 2 T7400) */
13105 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
13106
d4967d8c
SD
13107 /* Toshiba CB35 Chromebook (Celeron 2955U) */
13108 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
724cb06f
SD
13109
13110 /* HP Chromebook 14 (Celeron 2955U) */
13111 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
cf6f0af9
JN
13112
13113 /* Dell Chromebook 11 */
13114 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
b690e96c
JB
13115};
13116
13117static void intel_init_quirks(struct drm_device *dev)
13118{
13119 struct pci_dev *d = dev->pdev;
13120 int i;
13121
13122 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
13123 struct intel_quirk *q = &intel_quirks[i];
13124
13125 if (d->device == q->device &&
13126 (d->subsystem_vendor == q->subsystem_vendor ||
13127 q->subsystem_vendor == PCI_ANY_ID) &&
13128 (d->subsystem_device == q->subsystem_device ||
13129 q->subsystem_device == PCI_ANY_ID))
13130 q->hook(dev);
13131 }
5f85f176
EE
13132 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
13133 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
13134 intel_dmi_quirks[i].hook(dev);
13135 }
b690e96c
JB
13136}
13137
9cce37f4
JB
13138/* Disable the VGA plane that we never use */
13139static void i915_disable_vga(struct drm_device *dev)
13140{
13141 struct drm_i915_private *dev_priv = dev->dev_private;
13142 u8 sr1;
766aa1c4 13143 u32 vga_reg = i915_vgacntrl_reg(dev);
9cce37f4 13144
2b37c616 13145 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
9cce37f4 13146 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 13147 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
13148 sr1 = inb(VGA_SR_DATA);
13149 outb(sr1 | 1<<5, VGA_SR_DATA);
13150 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
13151 udelay(300);
13152
01f5a626 13153 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
9cce37f4
JB
13154 POSTING_READ(vga_reg);
13155}
13156
f817586c
DV
13157void intel_modeset_init_hw(struct drm_device *dev)
13158{
a8f78b58
ED
13159 intel_prepare_ddi(dev);
13160
f8bf63fd
VS
13161 if (IS_VALLEYVIEW(dev))
13162 vlv_update_cdclk(dev);
13163
f817586c
DV
13164 intel_init_clock_gating(dev);
13165
8090c6b9 13166 intel_enable_gt_powersave(dev);
f817586c
DV
13167}
13168
79e53945
JB
13169void intel_modeset_init(struct drm_device *dev)
13170{
652c393a 13171 struct drm_i915_private *dev_priv = dev->dev_private;
1fe47785 13172 int sprite, ret;
8cc87b75 13173 enum pipe pipe;
46f297fb 13174 struct intel_crtc *crtc;
79e53945
JB
13175
13176 drm_mode_config_init(dev);
13177
13178 dev->mode_config.min_width = 0;
13179 dev->mode_config.min_height = 0;
13180
019d96cb
DA
13181 dev->mode_config.preferred_depth = 24;
13182 dev->mode_config.prefer_shadow = 1;
13183
e6ecefaa 13184 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 13185
b690e96c
JB
13186 intel_init_quirks(dev);
13187
1fa61106
ED
13188 intel_init_pm(dev);
13189
e3c74757
BW
13190 if (INTEL_INFO(dev)->num_pipes == 0)
13191 return;
13192
e70236a8 13193 intel_init_display(dev);
7c10a2b5 13194 intel_init_audio(dev);
e70236a8 13195
a6c45cf0
CW
13196 if (IS_GEN2(dev)) {
13197 dev->mode_config.max_width = 2048;
13198 dev->mode_config.max_height = 2048;
13199 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
13200 dev->mode_config.max_width = 4096;
13201 dev->mode_config.max_height = 4096;
79e53945 13202 } else {
a6c45cf0
CW
13203 dev->mode_config.max_width = 8192;
13204 dev->mode_config.max_height = 8192;
79e53945 13205 }
068be561 13206
dc41c154
VS
13207 if (IS_845G(dev) || IS_I865G(dev)) {
13208 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
13209 dev->mode_config.cursor_height = 1023;
13210 } else if (IS_GEN2(dev)) {
068be561
DL
13211 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
13212 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
13213 } else {
13214 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
13215 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
13216 }
13217
5d4545ae 13218 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
79e53945 13219
28c97730 13220 DRM_DEBUG_KMS("%d display pipe%s available.\n",
7eb552ae
BW
13221 INTEL_INFO(dev)->num_pipes,
13222 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
79e53945 13223
055e393f 13224 for_each_pipe(dev_priv, pipe) {
8cc87b75 13225 intel_crtc_init(dev, pipe);
1fe47785
DL
13226 for_each_sprite(pipe, sprite) {
13227 ret = intel_plane_init(dev, pipe, sprite);
7f1f3851 13228 if (ret)
06da8da2 13229 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
1fe47785 13230 pipe_name(pipe), sprite_name(pipe, sprite), ret);
7f1f3851 13231 }
79e53945
JB
13232 }
13233
f42bb70d
JB
13234 intel_init_dpio(dev);
13235
e72f9fbf 13236 intel_shared_dpll_init(dev);
ee7b9f93 13237
9cce37f4
JB
13238 /* Just disable it once at startup */
13239 i915_disable_vga(dev);
79e53945 13240 intel_setup_outputs(dev);
11be49eb
CW
13241
13242 /* Just in case the BIOS is doing something questionable. */
7ff0ebcc 13243 intel_fbc_disable(dev);
fa9fa083 13244
6e9f798d 13245 drm_modeset_lock_all(dev);
fa9fa083 13246 intel_modeset_setup_hw_state(dev, false);
6e9f798d 13247 drm_modeset_unlock_all(dev);
46f297fb 13248
d3fcc808 13249 for_each_intel_crtc(dev, crtc) {
46f297fb
JB
13250 if (!crtc->active)
13251 continue;
13252
46f297fb 13253 /*
46f297fb
JB
13254 * Note that reserving the BIOS fb up front prevents us
13255 * from stuffing other stolen allocations like the ring
13256 * on top. This prevents some ugliness at boot time, and
13257 * can even allow for smooth boot transitions if the BIOS
13258 * fb is large enough for the active pipe configuration.
13259 */
5724dbd1
DL
13260 if (dev_priv->display.get_initial_plane_config) {
13261 dev_priv->display.get_initial_plane_config(crtc,
46f297fb
JB
13262 &crtc->plane_config);
13263 /*
13264 * If the fb is shared between multiple heads, we'll
13265 * just get the first one.
13266 */
484b41dd 13267 intel_find_plane_obj(crtc, &crtc->plane_config);
46f297fb 13268 }
46f297fb 13269 }
2c7111db
CW
13270}
13271
7fad798e
DV
13272static void intel_enable_pipe_a(struct drm_device *dev)
13273{
13274 struct intel_connector *connector;
13275 struct drm_connector *crt = NULL;
13276 struct intel_load_detect_pipe load_detect_temp;
208bf9fd 13277 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
7fad798e
DV
13278
13279 /* We can't just switch on the pipe A, we need to set things up with a
13280 * proper mode and output configuration. As a gross hack, enable pipe A
13281 * by enabling the load detect pipe once. */
13282 list_for_each_entry(connector,
13283 &dev->mode_config.connector_list,
13284 base.head) {
13285 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
13286 crt = &connector->base;
13287 break;
13288 }
13289 }
13290
13291 if (!crt)
13292 return;
13293
208bf9fd
VS
13294 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
13295 intel_release_load_detect_pipe(crt, &load_detect_temp);
7fad798e
DV
13296}
13297
fa555837
DV
13298static bool
13299intel_check_plane_mapping(struct intel_crtc *crtc)
13300{
7eb552ae
BW
13301 struct drm_device *dev = crtc->base.dev;
13302 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837
DV
13303 u32 reg, val;
13304
7eb552ae 13305 if (INTEL_INFO(dev)->num_pipes == 1)
fa555837
DV
13306 return true;
13307
13308 reg = DSPCNTR(!crtc->plane);
13309 val = I915_READ(reg);
13310
13311 if ((val & DISPLAY_PLANE_ENABLE) &&
13312 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
13313 return false;
13314
13315 return true;
13316}
13317
24929352
DV
13318static void intel_sanitize_crtc(struct intel_crtc *crtc)
13319{
13320 struct drm_device *dev = crtc->base.dev;
13321 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837 13322 u32 reg;
24929352 13323
24929352 13324 /* Clear any frame start delays used for debugging left by the BIOS */
6e3c9717 13325 reg = PIPECONF(crtc->config->cpu_transcoder);
24929352
DV
13326 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
13327
d3eaf884 13328 /* restore vblank interrupts to correct state */
d297e103
VS
13329 if (crtc->active) {
13330 update_scanline_offset(crtc);
d3eaf884 13331 drm_vblank_on(dev, crtc->pipe);
d297e103 13332 } else
d3eaf884
VS
13333 drm_vblank_off(dev, crtc->pipe);
13334
24929352 13335 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
13336 * disable the crtc (and hence change the state) if it is wrong. Note
13337 * that gen4+ has a fixed plane -> pipe mapping. */
13338 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
13339 struct intel_connector *connector;
13340 bool plane;
13341
24929352
DV
13342 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
13343 crtc->base.base.id);
13344
13345 /* Pipe has the wrong plane attached and the plane is active.
13346 * Temporarily change the plane mapping and disable everything
13347 * ... */
13348 plane = crtc->plane;
13349 crtc->plane = !plane;
9c8958bc 13350 crtc->primary_enabled = true;
24929352
DV
13351 dev_priv->display.crtc_disable(&crtc->base);
13352 crtc->plane = plane;
13353
13354 /* ... and break all links. */
13355 list_for_each_entry(connector, &dev->mode_config.connector_list,
13356 base.head) {
13357 if (connector->encoder->base.crtc != &crtc->base)
13358 continue;
13359
7f1950fb
EE
13360 connector->base.dpms = DRM_MODE_DPMS_OFF;
13361 connector->base.encoder = NULL;
24929352 13362 }
7f1950fb
EE
13363 /* multiple connectors may have the same encoder:
13364 * handle them and break crtc link separately */
13365 list_for_each_entry(connector, &dev->mode_config.connector_list,
13366 base.head)
13367 if (connector->encoder->base.crtc == &crtc->base) {
13368 connector->encoder->base.crtc = NULL;
13369 connector->encoder->connectors_active = false;
13370 }
24929352
DV
13371
13372 WARN_ON(crtc->active);
13373 crtc->base.enabled = false;
13374 }
24929352 13375
7fad798e
DV
13376 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
13377 crtc->pipe == PIPE_A && !crtc->active) {
13378 /* BIOS forgot to enable pipe A, this mostly happens after
13379 * resume. Force-enable the pipe to fix this, the update_dpms
13380 * call below we restore the pipe to the right state, but leave
13381 * the required bits on. */
13382 intel_enable_pipe_a(dev);
13383 }
13384
24929352
DV
13385 /* Adjust the state of the output pipe according to whether we
13386 * have active connectors/encoders. */
13387 intel_crtc_update_dpms(&crtc->base);
13388
13389 if (crtc->active != crtc->base.enabled) {
13390 struct intel_encoder *encoder;
13391
13392 /* This can happen either due to bugs in the get_hw_state
13393 * functions or because the pipe is force-enabled due to the
13394 * pipe A quirk. */
13395 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
13396 crtc->base.base.id,
13397 crtc->base.enabled ? "enabled" : "disabled",
13398 crtc->active ? "enabled" : "disabled");
13399
13400 crtc->base.enabled = crtc->active;
13401
13402 /* Because we only establish the connector -> encoder ->
13403 * crtc links if something is active, this means the
13404 * crtc is now deactivated. Break the links. connector
13405 * -> encoder links are only establish when things are
13406 * actually up, hence no need to break them. */
13407 WARN_ON(crtc->active);
13408
13409 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
13410 WARN_ON(encoder->connectors_active);
13411 encoder->base.crtc = NULL;
13412 }
13413 }
c5ab3bc0 13414
a3ed6aad 13415 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
4cc31489
DV
13416 /*
13417 * We start out with underrun reporting disabled to avoid races.
13418 * For correct bookkeeping mark this on active crtcs.
13419 *
c5ab3bc0
DV
13420 * Also on gmch platforms we dont have any hardware bits to
13421 * disable the underrun reporting. Which means we need to start
13422 * out with underrun reporting disabled also on inactive pipes,
13423 * since otherwise we'll complain about the garbage we read when
13424 * e.g. coming up after runtime pm.
13425 *
4cc31489
DV
13426 * No protection against concurrent access is required - at
13427 * worst a fifo underrun happens which also sets this to false.
13428 */
13429 crtc->cpu_fifo_underrun_disabled = true;
13430 crtc->pch_fifo_underrun_disabled = true;
13431 }
24929352
DV
13432}
13433
13434static void intel_sanitize_encoder(struct intel_encoder *encoder)
13435{
13436 struct intel_connector *connector;
13437 struct drm_device *dev = encoder->base.dev;
13438
13439 /* We need to check both for a crtc link (meaning that the
13440 * encoder is active and trying to read from a pipe) and the
13441 * pipe itself being active. */
13442 bool has_active_crtc = encoder->base.crtc &&
13443 to_intel_crtc(encoder->base.crtc)->active;
13444
13445 if (encoder->connectors_active && !has_active_crtc) {
13446 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
13447 encoder->base.base.id,
8e329a03 13448 encoder->base.name);
24929352
DV
13449
13450 /* Connector is active, but has no active pipe. This is
13451 * fallout from our resume register restoring. Disable
13452 * the encoder manually again. */
13453 if (encoder->base.crtc) {
13454 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
13455 encoder->base.base.id,
8e329a03 13456 encoder->base.name);
24929352 13457 encoder->disable(encoder);
a62d1497
VS
13458 if (encoder->post_disable)
13459 encoder->post_disable(encoder);
24929352 13460 }
7f1950fb
EE
13461 encoder->base.crtc = NULL;
13462 encoder->connectors_active = false;
24929352
DV
13463
13464 /* Inconsistent output/port/pipe state happens presumably due to
13465 * a bug in one of the get_hw_state functions. Or someplace else
13466 * in our code, like the register restore mess on resume. Clamp
13467 * things to off as a safer default. */
13468 list_for_each_entry(connector,
13469 &dev->mode_config.connector_list,
13470 base.head) {
13471 if (connector->encoder != encoder)
13472 continue;
7f1950fb
EE
13473 connector->base.dpms = DRM_MODE_DPMS_OFF;
13474 connector->base.encoder = NULL;
24929352
DV
13475 }
13476 }
13477 /* Enabled encoders without active connectors will be fixed in
13478 * the crtc fixup. */
13479}
13480
04098753 13481void i915_redisable_vga_power_on(struct drm_device *dev)
0fde901f
KM
13482{
13483 struct drm_i915_private *dev_priv = dev->dev_private;
766aa1c4 13484 u32 vga_reg = i915_vgacntrl_reg(dev);
0fde901f 13485
04098753
ID
13486 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
13487 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
13488 i915_disable_vga(dev);
13489 }
13490}
13491
13492void i915_redisable_vga(struct drm_device *dev)
13493{
13494 struct drm_i915_private *dev_priv = dev->dev_private;
13495
8dc8a27c
PZ
13496 /* This function can be called both from intel_modeset_setup_hw_state or
13497 * at a very early point in our resume sequence, where the power well
13498 * structures are not yet restored. Since this function is at a very
13499 * paranoid "someone might have enabled VGA while we were not looking"
13500 * level, just check if the power well is enabled instead of trying to
13501 * follow the "don't touch the power well if we don't need it" policy
13502 * the rest of the driver uses. */
f458ebbc 13503 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
8dc8a27c
PZ
13504 return;
13505
04098753 13506 i915_redisable_vga_power_on(dev);
0fde901f
KM
13507}
13508
98ec7739
VS
13509static bool primary_get_hw_state(struct intel_crtc *crtc)
13510{
13511 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
13512
13513 if (!crtc->active)
13514 return false;
13515
13516 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
13517}
13518
30e984df 13519static void intel_modeset_readout_hw_state(struct drm_device *dev)
24929352
DV
13520{
13521 struct drm_i915_private *dev_priv = dev->dev_private;
13522 enum pipe pipe;
24929352
DV
13523 struct intel_crtc *crtc;
13524 struct intel_encoder *encoder;
13525 struct intel_connector *connector;
5358901f 13526 int i;
24929352 13527
d3fcc808 13528 for_each_intel_crtc(dev, crtc) {
6e3c9717 13529 memset(crtc->config, 0, sizeof(*crtc->config));
3b117c8f 13530
6e3c9717 13531 crtc->config->quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
9953599b 13532
0e8ffe1b 13533 crtc->active = dev_priv->display.get_pipe_config(crtc,
6e3c9717 13534 crtc->config);
24929352
DV
13535
13536 crtc->base.enabled = crtc->active;
98ec7739 13537 crtc->primary_enabled = primary_get_hw_state(crtc);
24929352
DV
13538
13539 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
13540 crtc->base.base.id,
13541 crtc->active ? "enabled" : "disabled");
13542 }
13543
5358901f
DV
13544 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13545 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13546
3e369b76
ACO
13547 pll->on = pll->get_hw_state(dev_priv, pll,
13548 &pll->config.hw_state);
5358901f 13549 pll->active = 0;
3e369b76 13550 pll->config.crtc_mask = 0;
d3fcc808 13551 for_each_intel_crtc(dev, crtc) {
1e6f2ddc 13552 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
5358901f 13553 pll->active++;
3e369b76 13554 pll->config.crtc_mask |= 1 << crtc->pipe;
1e6f2ddc 13555 }
5358901f 13556 }
5358901f 13557
1e6f2ddc 13558 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
3e369b76 13559 pll->name, pll->config.crtc_mask, pll->on);
bd2bb1b9 13560
3e369b76 13561 if (pll->config.crtc_mask)
bd2bb1b9 13562 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5358901f
DV
13563 }
13564
b2784e15 13565 for_each_intel_encoder(dev, encoder) {
24929352
DV
13566 pipe = 0;
13567
13568 if (encoder->get_hw_state(encoder, &pipe)) {
045ac3b5
JB
13569 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13570 encoder->base.crtc = &crtc->base;
6e3c9717 13571 encoder->get_config(encoder, crtc->config);
24929352
DV
13572 } else {
13573 encoder->base.crtc = NULL;
13574 }
13575
13576 encoder->connectors_active = false;
6f2bcceb 13577 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
24929352 13578 encoder->base.base.id,
8e329a03 13579 encoder->base.name,
24929352 13580 encoder->base.crtc ? "enabled" : "disabled",
6f2bcceb 13581 pipe_name(pipe));
24929352
DV
13582 }
13583
13584 list_for_each_entry(connector, &dev->mode_config.connector_list,
13585 base.head) {
13586 if (connector->get_hw_state(connector)) {
13587 connector->base.dpms = DRM_MODE_DPMS_ON;
13588 connector->encoder->connectors_active = true;
13589 connector->base.encoder = &connector->encoder->base;
13590 } else {
13591 connector->base.dpms = DRM_MODE_DPMS_OFF;
13592 connector->base.encoder = NULL;
13593 }
13594 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
13595 connector->base.base.id,
c23cc417 13596 connector->base.name,
24929352
DV
13597 connector->base.encoder ? "enabled" : "disabled");
13598 }
30e984df
DV
13599}
13600
13601/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
13602 * and i915 state tracking structures. */
13603void intel_modeset_setup_hw_state(struct drm_device *dev,
13604 bool force_restore)
13605{
13606 struct drm_i915_private *dev_priv = dev->dev_private;
13607 enum pipe pipe;
30e984df
DV
13608 struct intel_crtc *crtc;
13609 struct intel_encoder *encoder;
35c95375 13610 int i;
30e984df
DV
13611
13612 intel_modeset_readout_hw_state(dev);
24929352 13613
babea61d
JB
13614 /*
13615 * Now that we have the config, copy it to each CRTC struct
13616 * Note that this could go away if we move to using crtc_config
13617 * checking everywhere.
13618 */
d3fcc808 13619 for_each_intel_crtc(dev, crtc) {
d330a953 13620 if (crtc->active && i915.fastboot) {
6e3c9717
ACO
13621 intel_mode_from_pipe_config(&crtc->base.mode,
13622 crtc->config);
babea61d
JB
13623 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
13624 crtc->base.base.id);
13625 drm_mode_debug_printmodeline(&crtc->base.mode);
13626 }
13627 }
13628
24929352 13629 /* HW state is read out, now we need to sanitize this mess. */
b2784e15 13630 for_each_intel_encoder(dev, encoder) {
24929352
DV
13631 intel_sanitize_encoder(encoder);
13632 }
13633
055e393f 13634 for_each_pipe(dev_priv, pipe) {
24929352
DV
13635 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
13636 intel_sanitize_crtc(crtc);
6e3c9717
ACO
13637 intel_dump_pipe_config(crtc, crtc->config,
13638 "[setup_hw_state]");
24929352 13639 }
9a935856 13640
35c95375
DV
13641 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13642 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13643
13644 if (!pll->on || pll->active)
13645 continue;
13646
13647 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
13648
13649 pll->disable(dev_priv, pll);
13650 pll->on = false;
13651 }
13652
3078999f
PB
13653 if (IS_GEN9(dev))
13654 skl_wm_get_hw_state(dev);
13655 else if (HAS_PCH_SPLIT(dev))
243e6a44
VS
13656 ilk_wm_get_hw_state(dev);
13657
45e2b5f6 13658 if (force_restore) {
7d0bc1ea
VS
13659 i915_redisable_vga(dev);
13660
f30da187
DV
13661 /*
13662 * We need to use raw interfaces for restoring state to avoid
13663 * checking (bogus) intermediate states.
13664 */
055e393f 13665 for_each_pipe(dev_priv, pipe) {
b5644d05
JB
13666 struct drm_crtc *crtc =
13667 dev_priv->pipe_to_crtc_mapping[pipe];
f30da187 13668
7f27126e
JB
13669 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
13670 crtc->primary->fb);
45e2b5f6
DV
13671 }
13672 } else {
13673 intel_modeset_update_staged_output_state(dev);
13674 }
8af6cf88
DV
13675
13676 intel_modeset_check_state(dev);
2c7111db
CW
13677}
13678
13679void intel_modeset_gem_init(struct drm_device *dev)
13680{
92122789 13681 struct drm_i915_private *dev_priv = dev->dev_private;
484b41dd 13682 struct drm_crtc *c;
2ff8fde1 13683 struct drm_i915_gem_object *obj;
484b41dd 13684
ae48434c
ID
13685 mutex_lock(&dev->struct_mutex);
13686 intel_init_gt_powersave(dev);
13687 mutex_unlock(&dev->struct_mutex);
13688
92122789
JB
13689 /*
13690 * There may be no VBT; and if the BIOS enabled SSC we can
13691 * just keep using it to avoid unnecessary flicker. Whereas if the
13692 * BIOS isn't using it, don't assume it will work even if the VBT
13693 * indicates as much.
13694 */
13695 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
13696 dev_priv->vbt.lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
13697 DREF_SSC1_ENABLE);
13698
1833b134 13699 intel_modeset_init_hw(dev);
02e792fb
DV
13700
13701 intel_setup_overlay(dev);
484b41dd
JB
13702
13703 /*
13704 * Make sure any fbs we allocated at startup are properly
13705 * pinned & fenced. When we do the allocation it's too early
13706 * for this.
13707 */
13708 mutex_lock(&dev->struct_mutex);
70e1e0ec 13709 for_each_crtc(dev, c) {
2ff8fde1
MR
13710 obj = intel_fb_obj(c->primary->fb);
13711 if (obj == NULL)
484b41dd
JB
13712 continue;
13713
850c4cdc
TU
13714 if (intel_pin_and_fence_fb_obj(c->primary,
13715 c->primary->fb,
13716 NULL)) {
484b41dd
JB
13717 DRM_ERROR("failed to pin boot fb on pipe %d\n",
13718 to_intel_crtc(c)->pipe);
66e514c1
DA
13719 drm_framebuffer_unreference(c->primary->fb);
13720 c->primary->fb = NULL;
484b41dd
JB
13721 }
13722 }
13723 mutex_unlock(&dev->struct_mutex);
0962c3c9
VS
13724
13725 intel_backlight_register(dev);
79e53945
JB
13726}
13727
4932e2c3
ID
13728void intel_connector_unregister(struct intel_connector *intel_connector)
13729{
13730 struct drm_connector *connector = &intel_connector->base;
13731
13732 intel_panel_destroy_backlight(connector);
34ea3d38 13733 drm_connector_unregister(connector);
4932e2c3
ID
13734}
13735
79e53945
JB
13736void intel_modeset_cleanup(struct drm_device *dev)
13737{
652c393a 13738 struct drm_i915_private *dev_priv = dev->dev_private;
d9255d57 13739 struct drm_connector *connector;
652c393a 13740
2eb5252e
ID
13741 intel_disable_gt_powersave(dev);
13742
0962c3c9
VS
13743 intel_backlight_unregister(dev);
13744
fd0c0642
DV
13745 /*
13746 * Interrupts and polling as the first thing to avoid creating havoc.
2eb5252e 13747 * Too much stuff here (turning of connectors, ...) would
fd0c0642
DV
13748 * experience fancy races otherwise.
13749 */
2aeb7d3a 13750 intel_irq_uninstall(dev_priv);
eb21b92b 13751
fd0c0642
DV
13752 /*
13753 * Due to the hpd irq storm handling the hotplug work can re-arm the
13754 * poll handlers. Hence disable polling after hpd handling is shut down.
13755 */
f87ea761 13756 drm_kms_helper_poll_fini(dev);
fd0c0642 13757
652c393a
JB
13758 mutex_lock(&dev->struct_mutex);
13759
723bfd70
JB
13760 intel_unregister_dsm_handler();
13761
7ff0ebcc 13762 intel_fbc_disable(dev);
e70236a8 13763
930ebb46
DV
13764 ironlake_teardown_rc6(dev);
13765
69341a5e
KH
13766 mutex_unlock(&dev->struct_mutex);
13767
1630fe75
CW
13768 /* flush any delayed tasks or pending work */
13769 flush_scheduled_work();
13770
db31af1d
JN
13771 /* destroy the backlight and sysfs files before encoders/connectors */
13772 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4932e2c3
ID
13773 struct intel_connector *intel_connector;
13774
13775 intel_connector = to_intel_connector(connector);
13776 intel_connector->unregister(intel_connector);
db31af1d 13777 }
d9255d57 13778
79e53945 13779 drm_mode_config_cleanup(dev);
4d7bb011
DV
13780
13781 intel_cleanup_overlay(dev);
ae48434c
ID
13782
13783 mutex_lock(&dev->struct_mutex);
13784 intel_cleanup_gt_powersave(dev);
13785 mutex_unlock(&dev->struct_mutex);
79e53945
JB
13786}
13787
f1c79df3
ZW
13788/*
13789 * Return which encoder is currently attached for connector.
13790 */
df0e9248 13791struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
79e53945 13792{
df0e9248
CW
13793 return &intel_attached_encoder(connector)->base;
13794}
f1c79df3 13795
df0e9248
CW
13796void intel_connector_attach_encoder(struct intel_connector *connector,
13797 struct intel_encoder *encoder)
13798{
13799 connector->encoder = encoder;
13800 drm_mode_connector_attach_encoder(&connector->base,
13801 &encoder->base);
79e53945 13802}
28d52043
DA
13803
13804/*
13805 * set vga decode state - true == enable VGA decode
13806 */
13807int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
13808{
13809 struct drm_i915_private *dev_priv = dev->dev_private;
a885b3cc 13810 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
28d52043
DA
13811 u16 gmch_ctrl;
13812
75fa041d
CW
13813 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
13814 DRM_ERROR("failed to read control word\n");
13815 return -EIO;
13816 }
13817
c0cc8a55
CW
13818 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
13819 return 0;
13820
28d52043
DA
13821 if (state)
13822 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
13823 else
13824 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
75fa041d
CW
13825
13826 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
13827 DRM_ERROR("failed to write control word\n");
13828 return -EIO;
13829 }
13830
28d52043
DA
13831 return 0;
13832}
c4a1d9e4 13833
c4a1d9e4 13834struct intel_display_error_state {
ff57f1b0
PZ
13835
13836 u32 power_well_driver;
13837
63b66e5b
CW
13838 int num_transcoders;
13839
c4a1d9e4
CW
13840 struct intel_cursor_error_state {
13841 u32 control;
13842 u32 position;
13843 u32 base;
13844 u32 size;
52331309 13845 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
13846
13847 struct intel_pipe_error_state {
ddf9c536 13848 bool power_domain_on;
c4a1d9e4 13849 u32 source;
f301b1e1 13850 u32 stat;
52331309 13851 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
13852
13853 struct intel_plane_error_state {
13854 u32 control;
13855 u32 stride;
13856 u32 size;
13857 u32 pos;
13858 u32 addr;
13859 u32 surface;
13860 u32 tile_offset;
52331309 13861 } plane[I915_MAX_PIPES];
63b66e5b
CW
13862
13863 struct intel_transcoder_error_state {
ddf9c536 13864 bool power_domain_on;
63b66e5b
CW
13865 enum transcoder cpu_transcoder;
13866
13867 u32 conf;
13868
13869 u32 htotal;
13870 u32 hblank;
13871 u32 hsync;
13872 u32 vtotal;
13873 u32 vblank;
13874 u32 vsync;
13875 } transcoder[4];
c4a1d9e4
CW
13876};
13877
13878struct intel_display_error_state *
13879intel_display_capture_error_state(struct drm_device *dev)
13880{
fbee40df 13881 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4 13882 struct intel_display_error_state *error;
63b66e5b
CW
13883 int transcoders[] = {
13884 TRANSCODER_A,
13885 TRANSCODER_B,
13886 TRANSCODER_C,
13887 TRANSCODER_EDP,
13888 };
c4a1d9e4
CW
13889 int i;
13890
63b66e5b
CW
13891 if (INTEL_INFO(dev)->num_pipes == 0)
13892 return NULL;
13893
9d1cb914 13894 error = kzalloc(sizeof(*error), GFP_ATOMIC);
c4a1d9e4
CW
13895 if (error == NULL)
13896 return NULL;
13897
190be112 13898 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
ff57f1b0
PZ
13899 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
13900
055e393f 13901 for_each_pipe(dev_priv, i) {
ddf9c536 13902 error->pipe[i].power_domain_on =
f458ebbc
DV
13903 __intel_display_power_is_enabled(dev_priv,
13904 POWER_DOMAIN_PIPE(i));
ddf9c536 13905 if (!error->pipe[i].power_domain_on)
9d1cb914
PZ
13906 continue;
13907
5efb3e28
VS
13908 error->cursor[i].control = I915_READ(CURCNTR(i));
13909 error->cursor[i].position = I915_READ(CURPOS(i));
13910 error->cursor[i].base = I915_READ(CURBASE(i));
c4a1d9e4
CW
13911
13912 error->plane[i].control = I915_READ(DSPCNTR(i));
13913 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
80ca378b 13914 if (INTEL_INFO(dev)->gen <= 3) {
51889b35 13915 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
13916 error->plane[i].pos = I915_READ(DSPPOS(i));
13917 }
ca291363
PZ
13918 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
13919 error->plane[i].addr = I915_READ(DSPADDR(i));
c4a1d9e4
CW
13920 if (INTEL_INFO(dev)->gen >= 4) {
13921 error->plane[i].surface = I915_READ(DSPSURF(i));
13922 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
13923 }
13924
c4a1d9e4 13925 error->pipe[i].source = I915_READ(PIPESRC(i));
f301b1e1 13926
3abfce77 13927 if (HAS_GMCH_DISPLAY(dev))
f301b1e1 13928 error->pipe[i].stat = I915_READ(PIPESTAT(i));
63b66e5b
CW
13929 }
13930
13931 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
13932 if (HAS_DDI(dev_priv->dev))
13933 error->num_transcoders++; /* Account for eDP. */
13934
13935 for (i = 0; i < error->num_transcoders; i++) {
13936 enum transcoder cpu_transcoder = transcoders[i];
13937
ddf9c536 13938 error->transcoder[i].power_domain_on =
f458ebbc 13939 __intel_display_power_is_enabled(dev_priv,
38cc1daf 13940 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
ddf9c536 13941 if (!error->transcoder[i].power_domain_on)
9d1cb914
PZ
13942 continue;
13943
63b66e5b
CW
13944 error->transcoder[i].cpu_transcoder = cpu_transcoder;
13945
13946 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
13947 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
13948 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
13949 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
13950 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
13951 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
13952 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
13953 }
13954
13955 return error;
13956}
13957
edc3d884
MK
13958#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
13959
c4a1d9e4 13960void
edc3d884 13961intel_display_print_error_state(struct drm_i915_error_state_buf *m,
c4a1d9e4
CW
13962 struct drm_device *dev,
13963 struct intel_display_error_state *error)
13964{
055e393f 13965 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4
CW
13966 int i;
13967
63b66e5b
CW
13968 if (!error)
13969 return;
13970
edc3d884 13971 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
190be112 13972 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
edc3d884 13973 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 13974 error->power_well_driver);
055e393f 13975 for_each_pipe(dev_priv, i) {
edc3d884 13976 err_printf(m, "Pipe [%d]:\n", i);
ddf9c536
ID
13977 err_printf(m, " Power: %s\n",
13978 error->pipe[i].power_domain_on ? "on" : "off");
edc3d884 13979 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
f301b1e1 13980 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
edc3d884
MK
13981
13982 err_printf(m, "Plane [%d]:\n", i);
13983 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
13984 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
80ca378b 13985 if (INTEL_INFO(dev)->gen <= 3) {
edc3d884
MK
13986 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
13987 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 13988 }
4b71a570 13989 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
edc3d884 13990 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
c4a1d9e4 13991 if (INTEL_INFO(dev)->gen >= 4) {
edc3d884
MK
13992 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
13993 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
13994 }
13995
edc3d884
MK
13996 err_printf(m, "Cursor [%d]:\n", i);
13997 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
13998 err_printf(m, " POS: %08x\n", error->cursor[i].position);
13999 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4 14000 }
63b66e5b
CW
14001
14002 for (i = 0; i < error->num_transcoders; i++) {
1cf84bb6 14003 err_printf(m, "CPU transcoder: %c\n",
63b66e5b 14004 transcoder_name(error->transcoder[i].cpu_transcoder));
ddf9c536
ID
14005 err_printf(m, " Power: %s\n",
14006 error->transcoder[i].power_domain_on ? "on" : "off");
63b66e5b
CW
14007 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
14008 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
14009 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
14010 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
14011 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
14012 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
14013 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
14014 }
c4a1d9e4 14015}
e2fcdaa9
VS
14016
14017void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
14018{
14019 struct intel_crtc *crtc;
14020
14021 for_each_intel_crtc(dev, crtc) {
14022 struct intel_unpin_work *work;
e2fcdaa9 14023
5e2d7afc 14024 spin_lock_irq(&dev->event_lock);
e2fcdaa9
VS
14025
14026 work = crtc->unpin_work;
14027
14028 if (work && work->event &&
14029 work->event->base.file_priv == file) {
14030 kfree(work->event);
14031 work->event = NULL;
14032 }
14033
5e2d7afc 14034 spin_unlock_irq(&dev->event_lock);
e2fcdaa9
VS
14035 }
14036}
This page took 3.596268 seconds and 5 git commands to generate.