drm/i915: refactor PCH_DPLL_SEL #defines
[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"
760285e7
DH
40#include <drm/drm_dp_helper.h>
41#include <drm/drm_crtc_helper.h>
c0f372b3 42#include <linux/dma_remapping.h>
79e53945 43
0206e353 44bool intel_pipe_has_type(struct drm_crtc *crtc, int type);
3dec0095 45static void intel_increase_pllclock(struct drm_crtc *crtc);
6b383a7f 46static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
79e53945 47
79e53945 48typedef struct {
0206e353 49 int min, max;
79e53945
JB
50} intel_range_t;
51
52typedef struct {
0206e353
AJ
53 int dot_limit;
54 int p2_slow, p2_fast;
79e53945
JB
55} intel_p2_t;
56
57#define INTEL_P2_NUM 2
d4906093
ML
58typedef struct intel_limit intel_limit_t;
59struct intel_limit {
0206e353
AJ
60 intel_range_t dot, vco, n, m, m1, m2, p, p1;
61 intel_p2_t p2;
d4906093 62};
79e53945 63
2377b741
JB
64/* FDI */
65#define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */
66
d2acd215
DV
67int
68intel_pch_rawclk(struct drm_device *dev)
69{
70 struct drm_i915_private *dev_priv = dev->dev_private;
71
72 WARN_ON(!HAS_PCH_SPLIT(dev));
73
74 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
75}
76
021357ac
CW
77static inline u32 /* units of 100MHz */
78intel_fdi_link_freq(struct drm_device *dev)
79{
8b99e68c
CW
80 if (IS_GEN5(dev)) {
81 struct drm_i915_private *dev_priv = dev->dev_private;
82 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
83 } else
84 return 27;
021357ac
CW
85}
86
e4b36699 87static const intel_limit_t intel_limits_i8xx_dvo = {
0206e353
AJ
88 .dot = { .min = 25000, .max = 350000 },
89 .vco = { .min = 930000, .max = 1400000 },
90 .n = { .min = 3, .max = 16 },
91 .m = { .min = 96, .max = 140 },
92 .m1 = { .min = 18, .max = 26 },
93 .m2 = { .min = 6, .max = 16 },
94 .p = { .min = 4, .max = 128 },
95 .p1 = { .min = 2, .max = 33 },
273e27ca
EA
96 .p2 = { .dot_limit = 165000,
97 .p2_slow = 4, .p2_fast = 2 },
e4b36699
KP
98};
99
100static const intel_limit_t intel_limits_i8xx_lvds = {
0206e353
AJ
101 .dot = { .min = 25000, .max = 350000 },
102 .vco = { .min = 930000, .max = 1400000 },
103 .n = { .min = 3, .max = 16 },
104 .m = { .min = 96, .max = 140 },
105 .m1 = { .min = 18, .max = 26 },
106 .m2 = { .min = 6, .max = 16 },
107 .p = { .min = 4, .max = 128 },
108 .p1 = { .min = 1, .max = 6 },
273e27ca
EA
109 .p2 = { .dot_limit = 165000,
110 .p2_slow = 14, .p2_fast = 7 },
e4b36699 111};
273e27ca 112
e4b36699 113static const intel_limit_t intel_limits_i9xx_sdvo = {
0206e353
AJ
114 .dot = { .min = 20000, .max = 400000 },
115 .vco = { .min = 1400000, .max = 2800000 },
116 .n = { .min = 1, .max = 6 },
117 .m = { .min = 70, .max = 120 },
4f7dfb67
PJ
118 .m1 = { .min = 8, .max = 18 },
119 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
120 .p = { .min = 5, .max = 80 },
121 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
122 .p2 = { .dot_limit = 200000,
123 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
124};
125
126static const intel_limit_t intel_limits_i9xx_lvds = {
0206e353
AJ
127 .dot = { .min = 20000, .max = 400000 },
128 .vco = { .min = 1400000, .max = 2800000 },
129 .n = { .min = 1, .max = 6 },
130 .m = { .min = 70, .max = 120 },
53a7d2d1
PJ
131 .m1 = { .min = 8, .max = 18 },
132 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
133 .p = { .min = 7, .max = 98 },
134 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
135 .p2 = { .dot_limit = 112000,
136 .p2_slow = 14, .p2_fast = 7 },
e4b36699
KP
137};
138
273e27ca 139
e4b36699 140static const intel_limit_t intel_limits_g4x_sdvo = {
273e27ca
EA
141 .dot = { .min = 25000, .max = 270000 },
142 .vco = { .min = 1750000, .max = 3500000},
143 .n = { .min = 1, .max = 4 },
144 .m = { .min = 104, .max = 138 },
145 .m1 = { .min = 17, .max = 23 },
146 .m2 = { .min = 5, .max = 11 },
147 .p = { .min = 10, .max = 30 },
148 .p1 = { .min = 1, .max = 3},
149 .p2 = { .dot_limit = 270000,
150 .p2_slow = 10,
151 .p2_fast = 10
044c7c41 152 },
e4b36699
KP
153};
154
155static const intel_limit_t intel_limits_g4x_hdmi = {
273e27ca
EA
156 .dot = { .min = 22000, .max = 400000 },
157 .vco = { .min = 1750000, .max = 3500000},
158 .n = { .min = 1, .max = 4 },
159 .m = { .min = 104, .max = 138 },
160 .m1 = { .min = 16, .max = 23 },
161 .m2 = { .min = 5, .max = 11 },
162 .p = { .min = 5, .max = 80 },
163 .p1 = { .min = 1, .max = 8},
164 .p2 = { .dot_limit = 165000,
165 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
166};
167
168static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
273e27ca
EA
169 .dot = { .min = 20000, .max = 115000 },
170 .vco = { .min = 1750000, .max = 3500000 },
171 .n = { .min = 1, .max = 3 },
172 .m = { .min = 104, .max = 138 },
173 .m1 = { .min = 17, .max = 23 },
174 .m2 = { .min = 5, .max = 11 },
175 .p = { .min = 28, .max = 112 },
176 .p1 = { .min = 2, .max = 8 },
177 .p2 = { .dot_limit = 0,
178 .p2_slow = 14, .p2_fast = 14
044c7c41 179 },
e4b36699
KP
180};
181
182static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
273e27ca
EA
183 .dot = { .min = 80000, .max = 224000 },
184 .vco = { .min = 1750000, .max = 3500000 },
185 .n = { .min = 1, .max = 3 },
186 .m = { .min = 104, .max = 138 },
187 .m1 = { .min = 17, .max = 23 },
188 .m2 = { .min = 5, .max = 11 },
189 .p = { .min = 14, .max = 42 },
190 .p1 = { .min = 2, .max = 6 },
191 .p2 = { .dot_limit = 0,
192 .p2_slow = 7, .p2_fast = 7
044c7c41 193 },
e4b36699
KP
194};
195
f2b115e6 196static const intel_limit_t intel_limits_pineview_sdvo = {
0206e353
AJ
197 .dot = { .min = 20000, .max = 400000},
198 .vco = { .min = 1700000, .max = 3500000 },
273e27ca 199 /* Pineview's Ncounter is a ring counter */
0206e353
AJ
200 .n = { .min = 3, .max = 6 },
201 .m = { .min = 2, .max = 256 },
273e27ca 202 /* Pineview only has one combined m divider, which we treat as m2. */
0206e353
AJ
203 .m1 = { .min = 0, .max = 0 },
204 .m2 = { .min = 0, .max = 254 },
205 .p = { .min = 5, .max = 80 },
206 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
207 .p2 = { .dot_limit = 200000,
208 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
209};
210
f2b115e6 211static const intel_limit_t intel_limits_pineview_lvds = {
0206e353
AJ
212 .dot = { .min = 20000, .max = 400000 },
213 .vco = { .min = 1700000, .max = 3500000 },
214 .n = { .min = 3, .max = 6 },
215 .m = { .min = 2, .max = 256 },
216 .m1 = { .min = 0, .max = 0 },
217 .m2 = { .min = 0, .max = 254 },
218 .p = { .min = 7, .max = 112 },
219 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
220 .p2 = { .dot_limit = 112000,
221 .p2_slow = 14, .p2_fast = 14 },
e4b36699
KP
222};
223
273e27ca
EA
224/* Ironlake / Sandybridge
225 *
226 * We calculate clock using (register_value + 2) for N/M1/M2, so here
227 * the range value for them is (actual_value - 2).
228 */
b91ad0ec 229static const intel_limit_t intel_limits_ironlake_dac = {
273e27ca
EA
230 .dot = { .min = 25000, .max = 350000 },
231 .vco = { .min = 1760000, .max = 3510000 },
232 .n = { .min = 1, .max = 5 },
233 .m = { .min = 79, .max = 127 },
234 .m1 = { .min = 12, .max = 22 },
235 .m2 = { .min = 5, .max = 9 },
236 .p = { .min = 5, .max = 80 },
237 .p1 = { .min = 1, .max = 8 },
238 .p2 = { .dot_limit = 225000,
239 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
240};
241
b91ad0ec 242static const intel_limit_t intel_limits_ironlake_single_lvds = {
273e27ca
EA
243 .dot = { .min = 25000, .max = 350000 },
244 .vco = { .min = 1760000, .max = 3510000 },
245 .n = { .min = 1, .max = 3 },
246 .m = { .min = 79, .max = 118 },
247 .m1 = { .min = 12, .max = 22 },
248 .m2 = { .min = 5, .max = 9 },
249 .p = { .min = 28, .max = 112 },
250 .p1 = { .min = 2, .max = 8 },
251 .p2 = { .dot_limit = 225000,
252 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
253};
254
255static const intel_limit_t intel_limits_ironlake_dual_lvds = {
273e27ca
EA
256 .dot = { .min = 25000, .max = 350000 },
257 .vco = { .min = 1760000, .max = 3510000 },
258 .n = { .min = 1, .max = 3 },
259 .m = { .min = 79, .max = 127 },
260 .m1 = { .min = 12, .max = 22 },
261 .m2 = { .min = 5, .max = 9 },
262 .p = { .min = 14, .max = 56 },
263 .p1 = { .min = 2, .max = 8 },
264 .p2 = { .dot_limit = 225000,
265 .p2_slow = 7, .p2_fast = 7 },
b91ad0ec
ZW
266};
267
273e27ca 268/* LVDS 100mhz refclk limits. */
b91ad0ec 269static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
273e27ca
EA
270 .dot = { .min = 25000, .max = 350000 },
271 .vco = { .min = 1760000, .max = 3510000 },
272 .n = { .min = 1, .max = 2 },
273 .m = { .min = 79, .max = 126 },
274 .m1 = { .min = 12, .max = 22 },
275 .m2 = { .min = 5, .max = 9 },
276 .p = { .min = 28, .max = 112 },
0206e353 277 .p1 = { .min = 2, .max = 8 },
273e27ca
EA
278 .p2 = { .dot_limit = 225000,
279 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
280};
281
282static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
273e27ca
EA
283 .dot = { .min = 25000, .max = 350000 },
284 .vco = { .min = 1760000, .max = 3510000 },
285 .n = { .min = 1, .max = 3 },
286 .m = { .min = 79, .max = 126 },
287 .m1 = { .min = 12, .max = 22 },
288 .m2 = { .min = 5, .max = 9 },
289 .p = { .min = 14, .max = 42 },
0206e353 290 .p1 = { .min = 2, .max = 6 },
273e27ca
EA
291 .p2 = { .dot_limit = 225000,
292 .p2_slow = 7, .p2_fast = 7 },
4547668a
ZY
293};
294
a0c4da24
JB
295static const intel_limit_t intel_limits_vlv_dac = {
296 .dot = { .min = 25000, .max = 270000 },
297 .vco = { .min = 4000000, .max = 6000000 },
298 .n = { .min = 1, .max = 7 },
299 .m = { .min = 22, .max = 450 }, /* guess */
300 .m1 = { .min = 2, .max = 3 },
301 .m2 = { .min = 11, .max = 156 },
302 .p = { .min = 10, .max = 30 },
75e53986 303 .p1 = { .min = 1, .max = 3 },
a0c4da24
JB
304 .p2 = { .dot_limit = 270000,
305 .p2_slow = 2, .p2_fast = 20 },
a0c4da24
JB
306};
307
308static const intel_limit_t intel_limits_vlv_hdmi = {
75e53986
DV
309 .dot = { .min = 25000, .max = 270000 },
310 .vco = { .min = 4000000, .max = 6000000 },
a0c4da24
JB
311 .n = { .min = 1, .max = 7 },
312 .m = { .min = 60, .max = 300 }, /* guess */
313 .m1 = { .min = 2, .max = 3 },
314 .m2 = { .min = 11, .max = 156 },
315 .p = { .min = 10, .max = 30 },
316 .p1 = { .min = 2, .max = 3 },
317 .p2 = { .dot_limit = 270000,
318 .p2_slow = 2, .p2_fast = 20 },
a0c4da24
JB
319};
320
321static const intel_limit_t intel_limits_vlv_dp = {
74a4dd2e
VP
322 .dot = { .min = 25000, .max = 270000 },
323 .vco = { .min = 4000000, .max = 6000000 },
a0c4da24 324 .n = { .min = 1, .max = 7 },
74a4dd2e 325 .m = { .min = 22, .max = 450 },
a0c4da24
JB
326 .m1 = { .min = 2, .max = 3 },
327 .m2 = { .min = 11, .max = 156 },
328 .p = { .min = 10, .max = 30 },
75e53986 329 .p1 = { .min = 1, .max = 3 },
a0c4da24
JB
330 .p2 = { .dot_limit = 270000,
331 .p2_slow = 2, .p2_fast = 20 },
a0c4da24
JB
332};
333
1b894b59
CW
334static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
335 int refclk)
2c07245f 336{
b91ad0ec 337 struct drm_device *dev = crtc->dev;
2c07245f 338 const intel_limit_t *limit;
b91ad0ec
ZW
339
340 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 341 if (intel_is_dual_link_lvds(dev)) {
1b894b59 342 if (refclk == 100000)
b91ad0ec
ZW
343 limit = &intel_limits_ironlake_dual_lvds_100m;
344 else
345 limit = &intel_limits_ironlake_dual_lvds;
346 } else {
1b894b59 347 if (refclk == 100000)
b91ad0ec
ZW
348 limit = &intel_limits_ironlake_single_lvds_100m;
349 else
350 limit = &intel_limits_ironlake_single_lvds;
351 }
c6bb3538 352 } else
b91ad0ec 353 limit = &intel_limits_ironlake_dac;
2c07245f
ZW
354
355 return limit;
356}
357
044c7c41
ML
358static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
359{
360 struct drm_device *dev = crtc->dev;
044c7c41
ML
361 const intel_limit_t *limit;
362
363 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 364 if (intel_is_dual_link_lvds(dev))
e4b36699 365 limit = &intel_limits_g4x_dual_channel_lvds;
044c7c41 366 else
e4b36699 367 limit = &intel_limits_g4x_single_channel_lvds;
044c7c41
ML
368 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
369 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
e4b36699 370 limit = &intel_limits_g4x_hdmi;
044c7c41 371 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
e4b36699 372 limit = &intel_limits_g4x_sdvo;
044c7c41 373 } else /* The option is for other outputs */
e4b36699 374 limit = &intel_limits_i9xx_sdvo;
044c7c41
ML
375
376 return limit;
377}
378
1b894b59 379static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
79e53945
JB
380{
381 struct drm_device *dev = crtc->dev;
382 const intel_limit_t *limit;
383
bad720ff 384 if (HAS_PCH_SPLIT(dev))
1b894b59 385 limit = intel_ironlake_limit(crtc, refclk);
2c07245f 386 else if (IS_G4X(dev)) {
044c7c41 387 limit = intel_g4x_limit(crtc);
f2b115e6 388 } else if (IS_PINEVIEW(dev)) {
2177832f 389 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
f2b115e6 390 limit = &intel_limits_pineview_lvds;
2177832f 391 else
f2b115e6 392 limit = &intel_limits_pineview_sdvo;
a0c4da24
JB
393 } else if (IS_VALLEYVIEW(dev)) {
394 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG))
395 limit = &intel_limits_vlv_dac;
396 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
397 limit = &intel_limits_vlv_hdmi;
398 else
399 limit = &intel_limits_vlv_dp;
a6c45cf0
CW
400 } else if (!IS_GEN2(dev)) {
401 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
402 limit = &intel_limits_i9xx_lvds;
403 else
404 limit = &intel_limits_i9xx_sdvo;
79e53945
JB
405 } else {
406 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
e4b36699 407 limit = &intel_limits_i8xx_lvds;
79e53945 408 else
e4b36699 409 limit = &intel_limits_i8xx_dvo;
79e53945
JB
410 }
411 return limit;
412}
413
f2b115e6
AJ
414/* m1 is reserved as 0 in Pineview, n is a ring counter */
415static void pineview_clock(int refclk, intel_clock_t *clock)
79e53945 416{
2177832f
SL
417 clock->m = clock->m2 + 2;
418 clock->p = clock->p1 * clock->p2;
419 clock->vco = refclk * clock->m / clock->n;
420 clock->dot = clock->vco / clock->p;
421}
422
7429e9d4
DV
423static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
424{
425 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
426}
427
ac58c3f0 428static void i9xx_clock(int refclk, intel_clock_t *clock)
2177832f 429{
7429e9d4 430 clock->m = i9xx_dpll_compute_m(clock);
79e53945
JB
431 clock->p = clock->p1 * clock->p2;
432 clock->vco = refclk * clock->m / (clock->n + 2);
433 clock->dot = clock->vco / clock->p;
434}
435
79e53945
JB
436/**
437 * Returns whether any output on the specified pipe is of the specified type
438 */
4ef69c7a 439bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
79e53945 440{
4ef69c7a 441 struct drm_device *dev = crtc->dev;
4ef69c7a
CW
442 struct intel_encoder *encoder;
443
6c2b7c12
DV
444 for_each_encoder_on_crtc(dev, crtc, encoder)
445 if (encoder->type == type)
4ef69c7a
CW
446 return true;
447
448 return false;
79e53945
JB
449}
450
7c04d1d9 451#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
79e53945
JB
452/**
453 * Returns whether the given set of divisors are valid for a given refclk with
454 * the given connectors.
455 */
456
1b894b59
CW
457static bool intel_PLL_is_valid(struct drm_device *dev,
458 const intel_limit_t *limit,
459 const intel_clock_t *clock)
79e53945 460{
79e53945 461 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
0206e353 462 INTELPllInvalid("p1 out of range\n");
79e53945 463 if (clock->p < limit->p.min || limit->p.max < clock->p)
0206e353 464 INTELPllInvalid("p out of range\n");
79e53945 465 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
0206e353 466 INTELPllInvalid("m2 out of range\n");
79e53945 467 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
0206e353 468 INTELPllInvalid("m1 out of range\n");
f2b115e6 469 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
0206e353 470 INTELPllInvalid("m1 <= m2\n");
79e53945 471 if (clock->m < limit->m.min || limit->m.max < clock->m)
0206e353 472 INTELPllInvalid("m out of range\n");
79e53945 473 if (clock->n < limit->n.min || limit->n.max < clock->n)
0206e353 474 INTELPllInvalid("n out of range\n");
79e53945 475 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
0206e353 476 INTELPllInvalid("vco out of range\n");
79e53945
JB
477 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
478 * connector, etc., rather than just a single range.
479 */
480 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
0206e353 481 INTELPllInvalid("dot out of range\n");
79e53945
JB
482
483 return true;
484}
485
d4906093 486static bool
ee9300bb 487i9xx_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
cec2f356
SP
488 int target, int refclk, intel_clock_t *match_clock,
489 intel_clock_t *best_clock)
ac58c3f0
DV
490{
491 struct drm_device *dev = crtc->dev;
492 intel_clock_t clock;
493 int err = target;
494
495 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
496 /*
497 * For LVDS just rely on its current settings for dual-channel.
498 * We haven't figured out how to reliably set up different
499 * single/dual channel state, if we even can.
500 */
501 if (intel_is_dual_link_lvds(dev))
502 clock.p2 = limit->p2.p2_fast;
503 else
504 clock.p2 = limit->p2.p2_slow;
505 } else {
506 if (target < limit->p2.dot_limit)
507 clock.p2 = limit->p2.p2_slow;
508 else
509 clock.p2 = limit->p2.p2_fast;
510 }
511
512 memset(best_clock, 0, sizeof(*best_clock));
513
514 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
515 clock.m1++) {
516 for (clock.m2 = limit->m2.min;
517 clock.m2 <= limit->m2.max; clock.m2++) {
c0efc387 518 if (clock.m2 >= clock.m1)
ac58c3f0
DV
519 break;
520 for (clock.n = limit->n.min;
521 clock.n <= limit->n.max; clock.n++) {
522 for (clock.p1 = limit->p1.min;
523 clock.p1 <= limit->p1.max; clock.p1++) {
524 int this_err;
d4906093 525
ac58c3f0
DV
526 i9xx_clock(refclk, &clock);
527 if (!intel_PLL_is_valid(dev, limit,
528 &clock))
529 continue;
530 if (match_clock &&
531 clock.p != match_clock->p)
532 continue;
533
534 this_err = abs(clock.dot - target);
535 if (this_err < err) {
536 *best_clock = clock;
537 err = this_err;
538 }
539 }
540 }
541 }
542 }
543
544 return (err != target);
545}
546
547static bool
ee9300bb
DV
548pnv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
549 int target, int refclk, intel_clock_t *match_clock,
550 intel_clock_t *best_clock)
79e53945
JB
551{
552 struct drm_device *dev = crtc->dev;
79e53945 553 intel_clock_t clock;
79e53945
JB
554 int err = target;
555
a210b028 556 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
79e53945 557 /*
a210b028
DV
558 * For LVDS just rely on its current settings for dual-channel.
559 * We haven't figured out how to reliably set up different
560 * single/dual channel state, if we even can.
79e53945 561 */
1974cad0 562 if (intel_is_dual_link_lvds(dev))
79e53945
JB
563 clock.p2 = limit->p2.p2_fast;
564 else
565 clock.p2 = limit->p2.p2_slow;
566 } else {
567 if (target < limit->p2.dot_limit)
568 clock.p2 = limit->p2.p2_slow;
569 else
570 clock.p2 = limit->p2.p2_fast;
571 }
572
0206e353 573 memset(best_clock, 0, sizeof(*best_clock));
79e53945 574
42158660
ZY
575 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
576 clock.m1++) {
577 for (clock.m2 = limit->m2.min;
578 clock.m2 <= limit->m2.max; clock.m2++) {
42158660
ZY
579 for (clock.n = limit->n.min;
580 clock.n <= limit->n.max; clock.n++) {
581 for (clock.p1 = limit->p1.min;
582 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
583 int this_err;
584
ac58c3f0 585 pineview_clock(refclk, &clock);
1b894b59
CW
586 if (!intel_PLL_is_valid(dev, limit,
587 &clock))
79e53945 588 continue;
cec2f356
SP
589 if (match_clock &&
590 clock.p != match_clock->p)
591 continue;
79e53945
JB
592
593 this_err = abs(clock.dot - target);
594 if (this_err < err) {
595 *best_clock = clock;
596 err = this_err;
597 }
598 }
599 }
600 }
601 }
602
603 return (err != target);
604}
605
d4906093 606static bool
ee9300bb
DV
607g4x_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
608 int target, int refclk, intel_clock_t *match_clock,
609 intel_clock_t *best_clock)
d4906093
ML
610{
611 struct drm_device *dev = crtc->dev;
d4906093
ML
612 intel_clock_t clock;
613 int max_n;
614 bool found;
6ba770dc
AJ
615 /* approximately equals target * 0.00585 */
616 int err_most = (target >> 8) + (target >> 9);
d4906093
ML
617 found = false;
618
619 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 620 if (intel_is_dual_link_lvds(dev))
d4906093
ML
621 clock.p2 = limit->p2.p2_fast;
622 else
623 clock.p2 = limit->p2.p2_slow;
624 } else {
625 if (target < limit->p2.dot_limit)
626 clock.p2 = limit->p2.p2_slow;
627 else
628 clock.p2 = limit->p2.p2_fast;
629 }
630
631 memset(best_clock, 0, sizeof(*best_clock));
632 max_n = limit->n.max;
f77f13e2 633 /* based on hardware requirement, prefer smaller n to precision */
d4906093 634 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
f77f13e2 635 /* based on hardware requirement, prefere larger m1,m2 */
d4906093
ML
636 for (clock.m1 = limit->m1.max;
637 clock.m1 >= limit->m1.min; clock.m1--) {
638 for (clock.m2 = limit->m2.max;
639 clock.m2 >= limit->m2.min; clock.m2--) {
640 for (clock.p1 = limit->p1.max;
641 clock.p1 >= limit->p1.min; clock.p1--) {
642 int this_err;
643
ac58c3f0 644 i9xx_clock(refclk, &clock);
1b894b59
CW
645 if (!intel_PLL_is_valid(dev, limit,
646 &clock))
d4906093 647 continue;
1b894b59
CW
648
649 this_err = abs(clock.dot - target);
d4906093
ML
650 if (this_err < err_most) {
651 *best_clock = clock;
652 err_most = this_err;
653 max_n = clock.n;
654 found = true;
655 }
656 }
657 }
658 }
659 }
2c07245f
ZW
660 return found;
661}
662
a0c4da24 663static bool
ee9300bb
DV
664vlv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
665 int target, int refclk, intel_clock_t *match_clock,
666 intel_clock_t *best_clock)
a0c4da24
JB
667{
668 u32 p1, p2, m1, m2, vco, bestn, bestm1, bestm2, bestp1, bestp2;
669 u32 m, n, fastclk;
670 u32 updrate, minupdate, fracbits, p;
671 unsigned long bestppm, ppm, absppm;
672 int dotclk, flag;
673
af447bd3 674 flag = 0;
a0c4da24
JB
675 dotclk = target * 1000;
676 bestppm = 1000000;
677 ppm = absppm = 0;
678 fastclk = dotclk / (2*100);
679 updrate = 0;
680 minupdate = 19200;
681 fracbits = 1;
682 n = p = p1 = p2 = m = m1 = m2 = vco = bestn = 0;
683 bestm1 = bestm2 = bestp1 = bestp2 = 0;
684
685 /* based on hardware requirement, prefer smaller n to precision */
686 for (n = limit->n.min; n <= ((refclk) / minupdate); n++) {
687 updrate = refclk / n;
688 for (p1 = limit->p1.max; p1 > limit->p1.min; p1--) {
689 for (p2 = limit->p2.p2_fast+1; p2 > 0; p2--) {
690 if (p2 > 10)
691 p2 = p2 - 1;
692 p = p1 * p2;
693 /* based on hardware requirement, prefer bigger m1,m2 values */
694 for (m1 = limit->m1.min; m1 <= limit->m1.max; m1++) {
695 m2 = (((2*(fastclk * p * n / m1 )) +
696 refclk) / (2*refclk));
697 m = m1 * m2;
698 vco = updrate * m;
699 if (vco >= limit->vco.min && vco < limit->vco.max) {
700 ppm = 1000000 * ((vco / p) - fastclk) / fastclk;
701 absppm = (ppm > 0) ? ppm : (-ppm);
702 if (absppm < 100 && ((p1 * p2) > (bestp1 * bestp2))) {
703 bestppm = 0;
704 flag = 1;
705 }
706 if (absppm < bestppm - 10) {
707 bestppm = absppm;
708 flag = 1;
709 }
710 if (flag) {
711 bestn = n;
712 bestm1 = m1;
713 bestm2 = m2;
714 bestp1 = p1;
715 bestp2 = p2;
716 flag = 0;
717 }
718 }
719 }
720 }
721 }
722 }
723 best_clock->n = bestn;
724 best_clock->m1 = bestm1;
725 best_clock->m2 = bestm2;
726 best_clock->p1 = bestp1;
727 best_clock->p2 = bestp2;
728
729 return true;
730}
a4fc5ed6 731
a5c961d1
PZ
732enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
733 enum pipe pipe)
734{
735 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
736 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
737
3b117c8f 738 return intel_crtc->config.cpu_transcoder;
a5c961d1
PZ
739}
740
a928d536
PZ
741static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe)
742{
743 struct drm_i915_private *dev_priv = dev->dev_private;
744 u32 frame, frame_reg = PIPEFRAME(pipe);
745
746 frame = I915_READ(frame_reg);
747
748 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
749 DRM_DEBUG_KMS("vblank wait timed out\n");
750}
751
9d0498a2
JB
752/**
753 * intel_wait_for_vblank - wait for vblank on a given pipe
754 * @dev: drm device
755 * @pipe: pipe to wait for
756 *
757 * Wait for vblank to occur on a given pipe. Needed for various bits of
758 * mode setting code.
759 */
760void intel_wait_for_vblank(struct drm_device *dev, int pipe)
79e53945 761{
9d0498a2 762 struct drm_i915_private *dev_priv = dev->dev_private;
9db4a9c7 763 int pipestat_reg = PIPESTAT(pipe);
9d0498a2 764
a928d536
PZ
765 if (INTEL_INFO(dev)->gen >= 5) {
766 ironlake_wait_for_vblank(dev, pipe);
767 return;
768 }
769
300387c0
CW
770 /* Clear existing vblank status. Note this will clear any other
771 * sticky status fields as well.
772 *
773 * This races with i915_driver_irq_handler() with the result
774 * that either function could miss a vblank event. Here it is not
775 * fatal, as we will either wait upon the next vblank interrupt or
776 * timeout. Generally speaking intel_wait_for_vblank() is only
777 * called during modeset at which time the GPU should be idle and
778 * should *not* be performing page flips and thus not waiting on
779 * vblanks...
780 * Currently, the result of us stealing a vblank from the irq
781 * handler is that a single frame will be skipped during swapbuffers.
782 */
783 I915_WRITE(pipestat_reg,
784 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
785
9d0498a2 786 /* Wait for vblank interrupt bit to set */
481b6af3
CW
787 if (wait_for(I915_READ(pipestat_reg) &
788 PIPE_VBLANK_INTERRUPT_STATUS,
789 50))
9d0498a2
JB
790 DRM_DEBUG_KMS("vblank wait timed out\n");
791}
792
ab7ad7f6
KP
793/*
794 * intel_wait_for_pipe_off - wait for pipe to turn off
9d0498a2
JB
795 * @dev: drm device
796 * @pipe: pipe to wait for
797 *
798 * After disabling a pipe, we can't wait for vblank in the usual way,
799 * spinning on the vblank interrupt status bit, since we won't actually
800 * see an interrupt when the pipe is disabled.
801 *
ab7ad7f6
KP
802 * On Gen4 and above:
803 * wait for the pipe register state bit to turn off
804 *
805 * Otherwise:
806 * wait for the display line value to settle (it usually
807 * ends up stopping at the start of the next frame).
58e10eb9 808 *
9d0498a2 809 */
58e10eb9 810void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
9d0498a2
JB
811{
812 struct drm_i915_private *dev_priv = dev->dev_private;
702e7a56
PZ
813 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
814 pipe);
ab7ad7f6
KP
815
816 if (INTEL_INFO(dev)->gen >= 4) {
702e7a56 817 int reg = PIPECONF(cpu_transcoder);
ab7ad7f6
KP
818
819 /* Wait for the Pipe State to go off */
58e10eb9
CW
820 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
821 100))
284637d9 822 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 823 } else {
837ba00f 824 u32 last_line, line_mask;
58e10eb9 825 int reg = PIPEDSL(pipe);
ab7ad7f6
KP
826 unsigned long timeout = jiffies + msecs_to_jiffies(100);
827
837ba00f
PZ
828 if (IS_GEN2(dev))
829 line_mask = DSL_LINEMASK_GEN2;
830 else
831 line_mask = DSL_LINEMASK_GEN3;
832
ab7ad7f6
KP
833 /* Wait for the display line to settle */
834 do {
837ba00f 835 last_line = I915_READ(reg) & line_mask;
ab7ad7f6 836 mdelay(5);
837ba00f 837 } while (((I915_READ(reg) & line_mask) != last_line) &&
ab7ad7f6
KP
838 time_after(timeout, jiffies));
839 if (time_after(jiffies, timeout))
284637d9 840 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 841 }
79e53945
JB
842}
843
b0ea7d37
DL
844/*
845 * ibx_digital_port_connected - is the specified port connected?
846 * @dev_priv: i915 private structure
847 * @port: the port to test
848 *
849 * Returns true if @port is connected, false otherwise.
850 */
851bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
852 struct intel_digital_port *port)
853{
854 u32 bit;
855
c36346e3
DL
856 if (HAS_PCH_IBX(dev_priv->dev)) {
857 switch(port->port) {
858 case PORT_B:
859 bit = SDE_PORTB_HOTPLUG;
860 break;
861 case PORT_C:
862 bit = SDE_PORTC_HOTPLUG;
863 break;
864 case PORT_D:
865 bit = SDE_PORTD_HOTPLUG;
866 break;
867 default:
868 return true;
869 }
870 } else {
871 switch(port->port) {
872 case PORT_B:
873 bit = SDE_PORTB_HOTPLUG_CPT;
874 break;
875 case PORT_C:
876 bit = SDE_PORTC_HOTPLUG_CPT;
877 break;
878 case PORT_D:
879 bit = SDE_PORTD_HOTPLUG_CPT;
880 break;
881 default:
882 return true;
883 }
b0ea7d37
DL
884 }
885
886 return I915_READ(SDEISR) & bit;
887}
888
b24e7179
JB
889static const char *state_string(bool enabled)
890{
891 return enabled ? "on" : "off";
892}
893
894/* Only for pre-ILK configs */
895static void assert_pll(struct drm_i915_private *dev_priv,
896 enum pipe pipe, bool state)
897{
898 int reg;
899 u32 val;
900 bool cur_state;
901
902 reg = DPLL(pipe);
903 val = I915_READ(reg);
904 cur_state = !!(val & DPLL_VCO_ENABLE);
905 WARN(cur_state != state,
906 "PLL state assertion failure (expected %s, current %s)\n",
907 state_string(state), state_string(cur_state));
908}
909#define assert_pll_enabled(d, p) assert_pll(d, p, true)
910#define assert_pll_disabled(d, p) assert_pll(d, p, false)
911
e2b78267
DV
912static struct intel_shared_dpll *
913intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
914{
915 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
916
a43f6e0f 917 if (crtc->config.shared_dpll < 0)
e2b78267
DV
918 return NULL;
919
a43f6e0f 920 return &dev_priv->shared_dplls[crtc->config.shared_dpll];
e2b78267
DV
921}
922
040484af 923/* For ILK+ */
e72f9fbf
DV
924static void assert_shared_dpll(struct drm_i915_private *dev_priv,
925 struct intel_shared_dpll *pll,
926 struct intel_crtc *crtc,
927 bool state)
040484af 928{
040484af
JB
929 u32 val;
930 bool cur_state;
931
9d82aa17
ED
932 if (HAS_PCH_LPT(dev_priv->dev)) {
933 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
934 return;
935 }
936
92b27b08
CW
937 if (WARN (!pll,
938 "asserting PCH PLL %s with no PLL\n", state_string(state)))
ee7b9f93 939 return;
ee7b9f93 940
92b27b08
CW
941 val = I915_READ(pll->pll_reg);
942 cur_state = !!(val & DPLL_VCO_ENABLE);
943 WARN(cur_state != state,
944 "PCH PLL state for reg %x assertion failure (expected %s, current %s), val=%08x\n",
945 pll->pll_reg, state_string(state), state_string(cur_state), val);
946
947 /* Make sure the selected PLL is correctly attached to the transcoder */
948 if (crtc && HAS_PCH_CPT(dev_priv->dev)) {
d3ccbe86
JB
949 u32 pch_dpll;
950
951 pch_dpll = I915_READ(PCH_DPLL_SEL);
92b27b08
CW
952 cur_state = pll->pll_reg == _PCH_DPLL_B;
953 if (!WARN(((pch_dpll >> (4 * crtc->pipe)) & 1) != cur_state,
4bb6f1f3
VS
954 "PLL[%d] not attached to this transcoder %c: %08x\n",
955 cur_state, pipe_name(crtc->pipe), pch_dpll)) {
92b27b08
CW
956 cur_state = !!(val >> (4*crtc->pipe + 3));
957 WARN(cur_state != state,
4bb6f1f3 958 "PLL[%d] not %s on this transcoder %c: %08x\n",
92b27b08
CW
959 pll->pll_reg == _PCH_DPLL_B,
960 state_string(state),
4bb6f1f3 961 pipe_name(crtc->pipe),
92b27b08
CW
962 val);
963 }
d3ccbe86 964 }
040484af 965}
e72f9fbf
DV
966#define assert_shared_dpll_enabled(d, p, c) assert_shared_dpll(d, p, c, true)
967#define assert_shared_dpll_disabled(d, p, c) assert_shared_dpll(d, p, c, false)
040484af
JB
968
969static void assert_fdi_tx(struct drm_i915_private *dev_priv,
970 enum pipe pipe, bool state)
971{
972 int reg;
973 u32 val;
974 bool cur_state;
ad80a810
PZ
975 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
976 pipe);
040484af 977
affa9354
PZ
978 if (HAS_DDI(dev_priv->dev)) {
979 /* DDI does not have a specific FDI_TX register */
ad80a810 980 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
bf507ef7 981 val = I915_READ(reg);
ad80a810 982 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
bf507ef7
ED
983 } else {
984 reg = FDI_TX_CTL(pipe);
985 val = I915_READ(reg);
986 cur_state = !!(val & FDI_TX_ENABLE);
987 }
040484af
JB
988 WARN(cur_state != state,
989 "FDI TX state assertion failure (expected %s, current %s)\n",
990 state_string(state), state_string(cur_state));
991}
992#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
993#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
994
995static void assert_fdi_rx(struct drm_i915_private *dev_priv,
996 enum pipe pipe, bool state)
997{
998 int reg;
999 u32 val;
1000 bool cur_state;
1001
d63fa0dc
PZ
1002 reg = FDI_RX_CTL(pipe);
1003 val = I915_READ(reg);
1004 cur_state = !!(val & FDI_RX_ENABLE);
040484af
JB
1005 WARN(cur_state != state,
1006 "FDI RX state assertion failure (expected %s, current %s)\n",
1007 state_string(state), state_string(cur_state));
1008}
1009#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1010#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1011
1012static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1013 enum pipe pipe)
1014{
1015 int reg;
1016 u32 val;
1017
1018 /* ILK FDI PLL is always enabled */
1019 if (dev_priv->info->gen == 5)
1020 return;
1021
bf507ef7 1022 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
affa9354 1023 if (HAS_DDI(dev_priv->dev))
bf507ef7
ED
1024 return;
1025
040484af
JB
1026 reg = FDI_TX_CTL(pipe);
1027 val = I915_READ(reg);
1028 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1029}
1030
1031static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv,
1032 enum pipe pipe)
1033{
1034 int reg;
1035 u32 val;
1036
1037 reg = FDI_RX_CTL(pipe);
1038 val = I915_READ(reg);
1039 WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n");
1040}
1041
ea0760cf
JB
1042static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1043 enum pipe pipe)
1044{
1045 int pp_reg, lvds_reg;
1046 u32 val;
1047 enum pipe panel_pipe = PIPE_A;
0de3b485 1048 bool locked = true;
ea0760cf
JB
1049
1050 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1051 pp_reg = PCH_PP_CONTROL;
1052 lvds_reg = PCH_LVDS;
1053 } else {
1054 pp_reg = PP_CONTROL;
1055 lvds_reg = LVDS;
1056 }
1057
1058 val = I915_READ(pp_reg);
1059 if (!(val & PANEL_POWER_ON) ||
1060 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1061 locked = false;
1062
1063 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1064 panel_pipe = PIPE_B;
1065
1066 WARN(panel_pipe == pipe && locked,
1067 "panel assertion failure, pipe %c regs locked\n",
9db4a9c7 1068 pipe_name(pipe));
ea0760cf
JB
1069}
1070
b840d907
JB
1071void assert_pipe(struct drm_i915_private *dev_priv,
1072 enum pipe pipe, bool state)
b24e7179
JB
1073{
1074 int reg;
1075 u32 val;
63d7bbe9 1076 bool cur_state;
702e7a56
PZ
1077 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1078 pipe);
b24e7179 1079
8e636784
DV
1080 /* if we need the pipe A quirk it must be always on */
1081 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1082 state = true;
1083
b97186f0
PZ
1084 if (!intel_display_power_enabled(dev_priv->dev,
1085 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
69310161
PZ
1086 cur_state = false;
1087 } else {
1088 reg = PIPECONF(cpu_transcoder);
1089 val = I915_READ(reg);
1090 cur_state = !!(val & PIPECONF_ENABLE);
1091 }
1092
63d7bbe9
JB
1093 WARN(cur_state != state,
1094 "pipe %c assertion failure (expected %s, current %s)\n",
9db4a9c7 1095 pipe_name(pipe), state_string(state), state_string(cur_state));
b24e7179
JB
1096}
1097
931872fc
CW
1098static void assert_plane(struct drm_i915_private *dev_priv,
1099 enum plane plane, bool state)
b24e7179
JB
1100{
1101 int reg;
1102 u32 val;
931872fc 1103 bool cur_state;
b24e7179
JB
1104
1105 reg = DSPCNTR(plane);
1106 val = I915_READ(reg);
931872fc
CW
1107 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1108 WARN(cur_state != state,
1109 "plane %c assertion failure (expected %s, current %s)\n",
1110 plane_name(plane), state_string(state), state_string(cur_state));
b24e7179
JB
1111}
1112
931872fc
CW
1113#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1114#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1115
b24e7179
JB
1116static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1117 enum pipe pipe)
1118{
653e1026 1119 struct drm_device *dev = dev_priv->dev;
b24e7179
JB
1120 int reg, i;
1121 u32 val;
1122 int cur_pipe;
1123
653e1026
VS
1124 /* Primary planes are fixed to pipes on gen4+ */
1125 if (INTEL_INFO(dev)->gen >= 4) {
28c05794
AJ
1126 reg = DSPCNTR(pipe);
1127 val = I915_READ(reg);
1128 WARN((val & DISPLAY_PLANE_ENABLE),
1129 "plane %c assertion failure, should be disabled but not\n",
1130 plane_name(pipe));
19ec1358 1131 return;
28c05794 1132 }
19ec1358 1133
b24e7179 1134 /* Need to check both planes against the pipe */
653e1026 1135 for (i = 0; i < INTEL_INFO(dev)->num_pipes; i++) {
b24e7179
JB
1136 reg = DSPCNTR(i);
1137 val = I915_READ(reg);
1138 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1139 DISPPLANE_SEL_PIPE_SHIFT;
1140 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
9db4a9c7
JB
1141 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1142 plane_name(i), pipe_name(pipe));
b24e7179
JB
1143 }
1144}
1145
19332d7a
JB
1146static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1147 enum pipe pipe)
1148{
20674eef 1149 struct drm_device *dev = dev_priv->dev;
19332d7a
JB
1150 int reg, i;
1151 u32 val;
1152
20674eef
VS
1153 if (IS_VALLEYVIEW(dev)) {
1154 for (i = 0; i < dev_priv->num_plane; i++) {
1155 reg = SPCNTR(pipe, i);
1156 val = I915_READ(reg);
1157 WARN((val & SP_ENABLE),
1158 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1159 sprite_name(pipe, i), pipe_name(pipe));
1160 }
1161 } else if (INTEL_INFO(dev)->gen >= 7) {
1162 reg = SPRCTL(pipe);
1163 val = I915_READ(reg);
1164 WARN((val & SPRITE_ENABLE),
1165 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1166 plane_name(pipe), pipe_name(pipe));
1167 } else if (INTEL_INFO(dev)->gen >= 5) {
1168 reg = DVSCNTR(pipe);
19332d7a 1169 val = I915_READ(reg);
20674eef 1170 WARN((val & DVS_ENABLE),
06da8da2 1171 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef 1172 plane_name(pipe), pipe_name(pipe));
19332d7a
JB
1173 }
1174}
1175
92f2584a
JB
1176static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1177{
1178 u32 val;
1179 bool enabled;
1180
9d82aa17
ED
1181 if (HAS_PCH_LPT(dev_priv->dev)) {
1182 DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n");
1183 return;
1184 }
1185
92f2584a
JB
1186 val = I915_READ(PCH_DREF_CONTROL);
1187 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1188 DREF_SUPERSPREAD_SOURCE_MASK));
1189 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1190}
1191
ab9412ba
DV
1192static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1193 enum pipe pipe)
92f2584a
JB
1194{
1195 int reg;
1196 u32 val;
1197 bool enabled;
1198
ab9412ba 1199 reg = PCH_TRANSCONF(pipe);
92f2584a
JB
1200 val = I915_READ(reg);
1201 enabled = !!(val & TRANS_ENABLE);
9db4a9c7
JB
1202 WARN(enabled,
1203 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1204 pipe_name(pipe));
92f2584a
JB
1205}
1206
4e634389
KP
1207static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1208 enum pipe pipe, u32 port_sel, u32 val)
f0575e92
KP
1209{
1210 if ((val & DP_PORT_EN) == 0)
1211 return false;
1212
1213 if (HAS_PCH_CPT(dev_priv->dev)) {
1214 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1215 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1216 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1217 return false;
1218 } else {
1219 if ((val & DP_PIPE_MASK) != (pipe << 30))
1220 return false;
1221 }
1222 return true;
1223}
1224
1519b995
KP
1225static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1226 enum pipe pipe, u32 val)
1227{
dc0fa718 1228 if ((val & SDVO_ENABLE) == 0)
1519b995
KP
1229 return false;
1230
1231 if (HAS_PCH_CPT(dev_priv->dev)) {
dc0fa718 1232 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
1519b995
KP
1233 return false;
1234 } else {
dc0fa718 1235 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
1519b995
KP
1236 return false;
1237 }
1238 return true;
1239}
1240
1241static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1242 enum pipe pipe, u32 val)
1243{
1244 if ((val & LVDS_PORT_EN) == 0)
1245 return false;
1246
1247 if (HAS_PCH_CPT(dev_priv->dev)) {
1248 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1249 return false;
1250 } else {
1251 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1252 return false;
1253 }
1254 return true;
1255}
1256
1257static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1258 enum pipe pipe, u32 val)
1259{
1260 if ((val & ADPA_DAC_ENABLE) == 0)
1261 return false;
1262 if (HAS_PCH_CPT(dev_priv->dev)) {
1263 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1264 return false;
1265 } else {
1266 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1267 return false;
1268 }
1269 return true;
1270}
1271
291906f1 1272static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
f0575e92 1273 enum pipe pipe, int reg, u32 port_sel)
291906f1 1274{
47a05eca 1275 u32 val = I915_READ(reg);
4e634389 1276 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
291906f1 1277 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
9db4a9c7 1278 reg, pipe_name(pipe));
de9a35ab 1279
75c5da27
DV
1280 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1281 && (val & DP_PIPEB_SELECT),
de9a35ab 1282 "IBX PCH dp port still using transcoder B\n");
291906f1
JB
1283}
1284
1285static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1286 enum pipe pipe, int reg)
1287{
47a05eca 1288 u32 val = I915_READ(reg);
b70ad586 1289 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
23c99e77 1290 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
9db4a9c7 1291 reg, pipe_name(pipe));
de9a35ab 1292
dc0fa718 1293 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
75c5da27 1294 && (val & SDVO_PIPE_B_SELECT),
de9a35ab 1295 "IBX PCH hdmi port still using transcoder B\n");
291906f1
JB
1296}
1297
1298static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1299 enum pipe pipe)
1300{
1301 int reg;
1302 u32 val;
291906f1 1303
f0575e92
KP
1304 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1305 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1306 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
291906f1
JB
1307
1308 reg = PCH_ADPA;
1309 val = I915_READ(reg);
b70ad586 1310 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
291906f1 1311 "PCH VGA enabled on transcoder %c, should be disabled\n",
9db4a9c7 1312 pipe_name(pipe));
291906f1
JB
1313
1314 reg = PCH_LVDS;
1315 val = I915_READ(reg);
b70ad586 1316 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
291906f1 1317 "PCH LVDS enabled on transcoder %c, should be disabled\n",
9db4a9c7 1318 pipe_name(pipe));
291906f1 1319
e2debe91
PZ
1320 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1321 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1322 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
291906f1
JB
1323}
1324
63d7bbe9
JB
1325/**
1326 * intel_enable_pll - enable a PLL
1327 * @dev_priv: i915 private structure
1328 * @pipe: pipe PLL to enable
1329 *
1330 * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to
1331 * make sure the PLL reg is writable first though, since the panel write
1332 * protect mechanism may be enabled.
1333 *
1334 * Note! This is for pre-ILK only.
7434a255
TR
1335 *
1336 * Unfortunately needed by dvo_ns2501 since the dvo depends on it running.
63d7bbe9
JB
1337 */
1338static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1339{
1340 int reg;
1341 u32 val;
1342
58c6eaa2
DV
1343 assert_pipe_disabled(dev_priv, pipe);
1344
63d7bbe9 1345 /* No really, not for ILK+ */
a0c4da24 1346 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev) && dev_priv->info->gen >= 5);
63d7bbe9
JB
1347
1348 /* PLL is protected by panel, make sure we can write it */
1349 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
1350 assert_panel_unlocked(dev_priv, pipe);
1351
1352 reg = DPLL(pipe);
1353 val = I915_READ(reg);
1354 val |= DPLL_VCO_ENABLE;
1355
1356 /* We do this three times for luck */
1357 I915_WRITE(reg, val);
1358 POSTING_READ(reg);
1359 udelay(150); /* wait for warmup */
1360 I915_WRITE(reg, val);
1361 POSTING_READ(reg);
1362 udelay(150); /* wait for warmup */
1363 I915_WRITE(reg, val);
1364 POSTING_READ(reg);
1365 udelay(150); /* wait for warmup */
1366}
1367
1368/**
1369 * intel_disable_pll - disable a PLL
1370 * @dev_priv: i915 private structure
1371 * @pipe: pipe PLL to disable
1372 *
1373 * Disable the PLL for @pipe, making sure the pipe is off first.
1374 *
1375 * Note! This is for pre-ILK only.
1376 */
1377static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1378{
1379 int reg;
1380 u32 val;
1381
1382 /* Don't disable pipe A or pipe A PLLs if needed */
1383 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1384 return;
1385
1386 /* Make sure the pipe isn't still relying on us */
1387 assert_pipe_disabled(dev_priv, pipe);
1388
1389 reg = DPLL(pipe);
1390 val = I915_READ(reg);
1391 val &= ~DPLL_VCO_ENABLE;
1392 I915_WRITE(reg, val);
1393 POSTING_READ(reg);
1394}
1395
89b667f8
JB
1396void vlv_wait_port_ready(struct drm_i915_private *dev_priv, int port)
1397{
1398 u32 port_mask;
1399
1400 if (!port)
1401 port_mask = DPLL_PORTB_READY_MASK;
1402 else
1403 port_mask = DPLL_PORTC_READY_MASK;
1404
1405 if (wait_for((I915_READ(DPLL(0)) & port_mask) == 0, 1000))
1406 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
1407 'B' + port, I915_READ(DPLL(0)));
1408}
1409
92f2584a 1410/**
e72f9fbf 1411 * ironlake_enable_shared_dpll - enable PCH PLL
92f2584a
JB
1412 * @dev_priv: i915 private structure
1413 * @pipe: pipe PLL to enable
1414 *
1415 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1416 * drives the transcoder clock.
1417 */
e2b78267 1418static void ironlake_enable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1419{
e2b78267
DV
1420 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1421 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
92f2584a
JB
1422 int reg;
1423 u32 val;
1424
48da64a8 1425 /* PCH PLLs only available on ILK, SNB and IVB */
92f2584a 1426 BUG_ON(dev_priv->info->gen < 5);
48da64a8
CW
1427 if (pll == NULL)
1428 return;
1429
1430 if (WARN_ON(pll->refcount == 0))
1431 return;
ee7b9f93
JB
1432
1433 DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n",
1434 pll->pll_reg, pll->active, pll->on,
e2b78267 1435 crtc->base.base.id);
92f2584a
JB
1436
1437 /* PCH refclock must be enabled first */
1438 assert_pch_refclk_enabled(dev_priv);
1439
cdbd2316
DV
1440 if (pll->active++) {
1441 WARN_ON(!pll->on);
e72f9fbf 1442 assert_shared_dpll_enabled(dev_priv, pll, NULL);
ee7b9f93
JB
1443 return;
1444 }
f4a091c7 1445 WARN_ON(pll->on);
ee7b9f93
JB
1446
1447 DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg);
1448
1449 reg = pll->pll_reg;
92f2584a
JB
1450 val = I915_READ(reg);
1451 val |= DPLL_VCO_ENABLE;
1452 I915_WRITE(reg, val);
1453 POSTING_READ(reg);
1454 udelay(200);
ee7b9f93
JB
1455
1456 pll->on = true;
92f2584a
JB
1457}
1458
e2b78267 1459static void intel_disable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1460{
e2b78267
DV
1461 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1462 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
92f2584a 1463 int reg;
ee7b9f93 1464 u32 val;
4c609cb8 1465
92f2584a
JB
1466 /* PCH only available on ILK+ */
1467 BUG_ON(dev_priv->info->gen < 5);
ee7b9f93
JB
1468 if (pll == NULL)
1469 return;
92f2584a 1470
48da64a8
CW
1471 if (WARN_ON(pll->refcount == 0))
1472 return;
7a419866 1473
ee7b9f93
JB
1474 DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n",
1475 pll->pll_reg, pll->active, pll->on,
e2b78267 1476 crtc->base.base.id);
7a419866 1477
48da64a8 1478 if (WARN_ON(pll->active == 0)) {
e72f9fbf 1479 assert_shared_dpll_disabled(dev_priv, pll, NULL);
48da64a8
CW
1480 return;
1481 }
1482
e72f9fbf 1483 assert_shared_dpll_enabled(dev_priv, pll, NULL);
f4a091c7 1484 WARN_ON(!pll->on);
cdbd2316 1485 if (--pll->active)
7a419866 1486 return;
ee7b9f93
JB
1487
1488 DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg);
1489
1490 /* Make sure transcoder isn't still depending on us */
e2b78267 1491 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
7a419866 1492
ee7b9f93 1493 reg = pll->pll_reg;
92f2584a
JB
1494 val = I915_READ(reg);
1495 val &= ~DPLL_VCO_ENABLE;
1496 I915_WRITE(reg, val);
1497 POSTING_READ(reg);
1498 udelay(200);
ee7b9f93
JB
1499
1500 pll->on = false;
92f2584a
JB
1501}
1502
b8a4f404
PZ
1503static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1504 enum pipe pipe)
040484af 1505{
23670b32 1506 struct drm_device *dev = dev_priv->dev;
7c26e5c6 1507 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e2b78267 1508 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
23670b32 1509 uint32_t reg, val, pipeconf_val;
040484af
JB
1510
1511 /* PCH only available on ILK+ */
1512 BUG_ON(dev_priv->info->gen < 5);
1513
1514 /* Make sure PCH DPLL is enabled */
e72f9fbf 1515 assert_shared_dpll_enabled(dev_priv,
e2b78267
DV
1516 intel_crtc_to_shared_dpll(intel_crtc),
1517 intel_crtc);
040484af
JB
1518
1519 /* FDI must be feeding us bits for PCH ports */
1520 assert_fdi_tx_enabled(dev_priv, pipe);
1521 assert_fdi_rx_enabled(dev_priv, pipe);
1522
23670b32
DV
1523 if (HAS_PCH_CPT(dev)) {
1524 /* Workaround: Set the timing override bit before enabling the
1525 * pch transcoder. */
1526 reg = TRANS_CHICKEN2(pipe);
1527 val = I915_READ(reg);
1528 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1529 I915_WRITE(reg, val);
59c859d6 1530 }
23670b32 1531
ab9412ba 1532 reg = PCH_TRANSCONF(pipe);
040484af 1533 val = I915_READ(reg);
5f7f726d 1534 pipeconf_val = I915_READ(PIPECONF(pipe));
e9bcff5c
JB
1535
1536 if (HAS_PCH_IBX(dev_priv->dev)) {
1537 /*
1538 * make the BPC in transcoder be consistent with
1539 * that in pipeconf reg.
1540 */
dfd07d72
DV
1541 val &= ~PIPECONF_BPC_MASK;
1542 val |= pipeconf_val & PIPECONF_BPC_MASK;
e9bcff5c 1543 }
5f7f726d
PZ
1544
1545 val &= ~TRANS_INTERLACE_MASK;
1546 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
7c26e5c6
PZ
1547 if (HAS_PCH_IBX(dev_priv->dev) &&
1548 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1549 val |= TRANS_LEGACY_INTERLACED_ILK;
1550 else
1551 val |= TRANS_INTERLACED;
5f7f726d
PZ
1552 else
1553 val |= TRANS_PROGRESSIVE;
1554
040484af
JB
1555 I915_WRITE(reg, val | TRANS_ENABLE);
1556 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
4bb6f1f3 1557 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
040484af
JB
1558}
1559
8fb033d7 1560static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
937bb610 1561 enum transcoder cpu_transcoder)
040484af 1562{
8fb033d7 1563 u32 val, pipeconf_val;
8fb033d7
PZ
1564
1565 /* PCH only available on ILK+ */
1566 BUG_ON(dev_priv->info->gen < 5);
1567
8fb033d7 1568 /* FDI must be feeding us bits for PCH ports */
1a240d4d 1569 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
937bb610 1570 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
8fb033d7 1571
223a6fdf
PZ
1572 /* Workaround: set timing override bit. */
1573 val = I915_READ(_TRANSA_CHICKEN2);
23670b32 1574 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
223a6fdf
PZ
1575 I915_WRITE(_TRANSA_CHICKEN2, val);
1576
25f3ef11 1577 val = TRANS_ENABLE;
937bb610 1578 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
8fb033d7 1579
9a76b1c6
PZ
1580 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1581 PIPECONF_INTERLACED_ILK)
a35f2679 1582 val |= TRANS_INTERLACED;
8fb033d7
PZ
1583 else
1584 val |= TRANS_PROGRESSIVE;
1585
ab9412ba
DV
1586 I915_WRITE(LPT_TRANSCONF, val);
1587 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
937bb610 1588 DRM_ERROR("Failed to enable PCH transcoder\n");
8fb033d7
PZ
1589}
1590
b8a4f404
PZ
1591static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1592 enum pipe pipe)
040484af 1593{
23670b32
DV
1594 struct drm_device *dev = dev_priv->dev;
1595 uint32_t reg, val;
040484af
JB
1596
1597 /* FDI relies on the transcoder */
1598 assert_fdi_tx_disabled(dev_priv, pipe);
1599 assert_fdi_rx_disabled(dev_priv, pipe);
1600
291906f1
JB
1601 /* Ports must be off as well */
1602 assert_pch_ports_disabled(dev_priv, pipe);
1603
ab9412ba 1604 reg = PCH_TRANSCONF(pipe);
040484af
JB
1605 val = I915_READ(reg);
1606 val &= ~TRANS_ENABLE;
1607 I915_WRITE(reg, val);
1608 /* wait for PCH transcoder off, transcoder state */
1609 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
4bb6f1f3 1610 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
23670b32
DV
1611
1612 if (!HAS_PCH_IBX(dev)) {
1613 /* Workaround: Clear the timing override chicken bit again. */
1614 reg = TRANS_CHICKEN2(pipe);
1615 val = I915_READ(reg);
1616 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1617 I915_WRITE(reg, val);
1618 }
040484af
JB
1619}
1620
ab4d966c 1621static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
8fb033d7 1622{
8fb033d7
PZ
1623 u32 val;
1624
ab9412ba 1625 val = I915_READ(LPT_TRANSCONF);
8fb033d7 1626 val &= ~TRANS_ENABLE;
ab9412ba 1627 I915_WRITE(LPT_TRANSCONF, val);
8fb033d7 1628 /* wait for PCH transcoder off, transcoder state */
ab9412ba 1629 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
8a52fd9f 1630 DRM_ERROR("Failed to disable PCH transcoder\n");
223a6fdf
PZ
1631
1632 /* Workaround: clear timing override bit. */
1633 val = I915_READ(_TRANSA_CHICKEN2);
23670b32 1634 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
223a6fdf 1635 I915_WRITE(_TRANSA_CHICKEN2, val);
040484af
JB
1636}
1637
b24e7179 1638/**
309cfea8 1639 * intel_enable_pipe - enable a pipe, asserting requirements
b24e7179
JB
1640 * @dev_priv: i915 private structure
1641 * @pipe: pipe to enable
040484af 1642 * @pch_port: on ILK+, is this pipe driving a PCH port or not
b24e7179
JB
1643 *
1644 * Enable @pipe, making sure that various hardware specific requirements
1645 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1646 *
1647 * @pipe should be %PIPE_A or %PIPE_B.
1648 *
1649 * Will wait until the pipe is actually running (i.e. first vblank) before
1650 * returning.
1651 */
040484af
JB
1652static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
1653 bool pch_port)
b24e7179 1654{
702e7a56
PZ
1655 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1656 pipe);
1a240d4d 1657 enum pipe pch_transcoder;
b24e7179
JB
1658 int reg;
1659 u32 val;
1660
58c6eaa2
DV
1661 assert_planes_disabled(dev_priv, pipe);
1662 assert_sprites_disabled(dev_priv, pipe);
1663
681e5811 1664 if (HAS_PCH_LPT(dev_priv->dev))
cc391bbb
PZ
1665 pch_transcoder = TRANSCODER_A;
1666 else
1667 pch_transcoder = pipe;
1668
b24e7179
JB
1669 /*
1670 * A pipe without a PLL won't actually be able to drive bits from
1671 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1672 * need the check.
1673 */
1674 if (!HAS_PCH_SPLIT(dev_priv->dev))
1675 assert_pll_enabled(dev_priv, pipe);
040484af
JB
1676 else {
1677 if (pch_port) {
1678 /* if driving the PCH, we need FDI enabled */
cc391bbb 1679 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
1a240d4d
DV
1680 assert_fdi_tx_pll_enabled(dev_priv,
1681 (enum pipe) cpu_transcoder);
040484af
JB
1682 }
1683 /* FIXME: assert CPU port conditions for SNB+ */
1684 }
b24e7179 1685
702e7a56 1686 reg = PIPECONF(cpu_transcoder);
b24e7179 1687 val = I915_READ(reg);
00d70b15
CW
1688 if (val & PIPECONF_ENABLE)
1689 return;
1690
1691 I915_WRITE(reg, val | PIPECONF_ENABLE);
b24e7179
JB
1692 intel_wait_for_vblank(dev_priv->dev, pipe);
1693}
1694
1695/**
309cfea8 1696 * intel_disable_pipe - disable a pipe, asserting requirements
b24e7179
JB
1697 * @dev_priv: i915 private structure
1698 * @pipe: pipe to disable
1699 *
1700 * Disable @pipe, making sure that various hardware specific requirements
1701 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1702 *
1703 * @pipe should be %PIPE_A or %PIPE_B.
1704 *
1705 * Will wait until the pipe has shut down before returning.
1706 */
1707static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1708 enum pipe pipe)
1709{
702e7a56
PZ
1710 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1711 pipe);
b24e7179
JB
1712 int reg;
1713 u32 val;
1714
1715 /*
1716 * Make sure planes won't keep trying to pump pixels to us,
1717 * or we might hang the display.
1718 */
1719 assert_planes_disabled(dev_priv, pipe);
19332d7a 1720 assert_sprites_disabled(dev_priv, pipe);
b24e7179
JB
1721
1722 /* Don't disable pipe A or pipe A PLLs if needed */
1723 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1724 return;
1725
702e7a56 1726 reg = PIPECONF(cpu_transcoder);
b24e7179 1727 val = I915_READ(reg);
00d70b15
CW
1728 if ((val & PIPECONF_ENABLE) == 0)
1729 return;
1730
1731 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
b24e7179
JB
1732 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1733}
1734
d74362c9
KP
1735/*
1736 * Plane regs are double buffered, going from enabled->disabled needs a
1737 * trigger in order to latch. The display address reg provides this.
1738 */
6f1d69b0 1739void intel_flush_display_plane(struct drm_i915_private *dev_priv,
d74362c9
KP
1740 enum plane plane)
1741{
14f86147
DL
1742 if (dev_priv->info->gen >= 4)
1743 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1744 else
1745 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
d74362c9
KP
1746}
1747
b24e7179
JB
1748/**
1749 * intel_enable_plane - enable a display plane on a given pipe
1750 * @dev_priv: i915 private structure
1751 * @plane: plane to enable
1752 * @pipe: pipe being fed
1753 *
1754 * Enable @plane on @pipe, making sure that @pipe is running first.
1755 */
1756static void intel_enable_plane(struct drm_i915_private *dev_priv,
1757 enum plane plane, enum pipe pipe)
1758{
1759 int reg;
1760 u32 val;
1761
1762 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1763 assert_pipe_enabled(dev_priv, pipe);
1764
1765 reg = DSPCNTR(plane);
1766 val = I915_READ(reg);
00d70b15
CW
1767 if (val & DISPLAY_PLANE_ENABLE)
1768 return;
1769
1770 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
d74362c9 1771 intel_flush_display_plane(dev_priv, plane);
b24e7179
JB
1772 intel_wait_for_vblank(dev_priv->dev, pipe);
1773}
1774
b24e7179
JB
1775/**
1776 * intel_disable_plane - disable a display plane
1777 * @dev_priv: i915 private structure
1778 * @plane: plane to disable
1779 * @pipe: pipe consuming the data
1780 *
1781 * Disable @plane; should be an independent operation.
1782 */
1783static void intel_disable_plane(struct drm_i915_private *dev_priv,
1784 enum plane plane, enum pipe pipe)
1785{
1786 int reg;
1787 u32 val;
1788
1789 reg = DSPCNTR(plane);
1790 val = I915_READ(reg);
00d70b15
CW
1791 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1792 return;
1793
1794 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
b24e7179
JB
1795 intel_flush_display_plane(dev_priv, plane);
1796 intel_wait_for_vblank(dev_priv->dev, pipe);
1797}
1798
693db184
CW
1799static bool need_vtd_wa(struct drm_device *dev)
1800{
1801#ifdef CONFIG_INTEL_IOMMU
1802 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
1803 return true;
1804#endif
1805 return false;
1806}
1807
127bd2ac 1808int
48b956c5 1809intel_pin_and_fence_fb_obj(struct drm_device *dev,
05394f39 1810 struct drm_i915_gem_object *obj,
919926ae 1811 struct intel_ring_buffer *pipelined)
6b95a207 1812{
ce453d81 1813 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
1814 u32 alignment;
1815 int ret;
1816
05394f39 1817 switch (obj->tiling_mode) {
6b95a207 1818 case I915_TILING_NONE:
534843da
CW
1819 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1820 alignment = 128 * 1024;
a6c45cf0 1821 else if (INTEL_INFO(dev)->gen >= 4)
534843da
CW
1822 alignment = 4 * 1024;
1823 else
1824 alignment = 64 * 1024;
6b95a207
KH
1825 break;
1826 case I915_TILING_X:
1827 /* pin() will align the object as required by fence */
1828 alignment = 0;
1829 break;
1830 case I915_TILING_Y:
8bb6e959
DV
1831 /* Despite that we check this in framebuffer_init userspace can
1832 * screw us over and change the tiling after the fact. Only
1833 * pinned buffers can't change their tiling. */
1834 DRM_DEBUG_DRIVER("Y tiled not allowed for scan out buffers\n");
6b95a207
KH
1835 return -EINVAL;
1836 default:
1837 BUG();
1838 }
1839
693db184
CW
1840 /* Note that the w/a also requires 64 PTE of padding following the
1841 * bo. We currently fill all unused PTE with the shadow page and so
1842 * we should always have valid PTE following the scanout preventing
1843 * the VT-d warning.
1844 */
1845 if (need_vtd_wa(dev) && alignment < 256 * 1024)
1846 alignment = 256 * 1024;
1847
ce453d81 1848 dev_priv->mm.interruptible = false;
2da3b9b9 1849 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
48b956c5 1850 if (ret)
ce453d81 1851 goto err_interruptible;
6b95a207
KH
1852
1853 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1854 * fence, whereas 965+ only requires a fence if using
1855 * framebuffer compression. For simplicity, we always install
1856 * a fence as the cost is not that onerous.
1857 */
06d98131 1858 ret = i915_gem_object_get_fence(obj);
9a5a53b3
CW
1859 if (ret)
1860 goto err_unpin;
1690e1eb 1861
9a5a53b3 1862 i915_gem_object_pin_fence(obj);
6b95a207 1863
ce453d81 1864 dev_priv->mm.interruptible = true;
6b95a207 1865 return 0;
48b956c5
CW
1866
1867err_unpin:
1868 i915_gem_object_unpin(obj);
ce453d81
CW
1869err_interruptible:
1870 dev_priv->mm.interruptible = true;
48b956c5 1871 return ret;
6b95a207
KH
1872}
1873
1690e1eb
CW
1874void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1875{
1876 i915_gem_object_unpin_fence(obj);
1877 i915_gem_object_unpin(obj);
1878}
1879
c2c75131
DV
1880/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
1881 * is assumed to be a power-of-two. */
bc752862
CW
1882unsigned long intel_gen4_compute_page_offset(int *x, int *y,
1883 unsigned int tiling_mode,
1884 unsigned int cpp,
1885 unsigned int pitch)
c2c75131 1886{
bc752862
CW
1887 if (tiling_mode != I915_TILING_NONE) {
1888 unsigned int tile_rows, tiles;
c2c75131 1889
bc752862
CW
1890 tile_rows = *y / 8;
1891 *y %= 8;
c2c75131 1892
bc752862
CW
1893 tiles = *x / (512/cpp);
1894 *x %= 512/cpp;
1895
1896 return tile_rows * pitch * 8 + tiles * 4096;
1897 } else {
1898 unsigned int offset;
1899
1900 offset = *y * pitch + *x * cpp;
1901 *y = 0;
1902 *x = (offset & 4095) / cpp;
1903 return offset & -4096;
1904 }
c2c75131
DV
1905}
1906
17638cd6
JB
1907static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1908 int x, int y)
81255565
JB
1909{
1910 struct drm_device *dev = crtc->dev;
1911 struct drm_i915_private *dev_priv = dev->dev_private;
1912 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1913 struct intel_framebuffer *intel_fb;
05394f39 1914 struct drm_i915_gem_object *obj;
81255565 1915 int plane = intel_crtc->plane;
e506a0c6 1916 unsigned long linear_offset;
81255565 1917 u32 dspcntr;
5eddb70b 1918 u32 reg;
81255565
JB
1919
1920 switch (plane) {
1921 case 0:
1922 case 1:
1923 break;
1924 default:
84f44ce7 1925 DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane));
81255565
JB
1926 return -EINVAL;
1927 }
1928
1929 intel_fb = to_intel_framebuffer(fb);
1930 obj = intel_fb->obj;
81255565 1931
5eddb70b
CW
1932 reg = DSPCNTR(plane);
1933 dspcntr = I915_READ(reg);
81255565
JB
1934 /* Mask out pixel format bits in case we change it */
1935 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
57779d06
VS
1936 switch (fb->pixel_format) {
1937 case DRM_FORMAT_C8:
81255565
JB
1938 dspcntr |= DISPPLANE_8BPP;
1939 break;
57779d06
VS
1940 case DRM_FORMAT_XRGB1555:
1941 case DRM_FORMAT_ARGB1555:
1942 dspcntr |= DISPPLANE_BGRX555;
81255565 1943 break;
57779d06
VS
1944 case DRM_FORMAT_RGB565:
1945 dspcntr |= DISPPLANE_BGRX565;
1946 break;
1947 case DRM_FORMAT_XRGB8888:
1948 case DRM_FORMAT_ARGB8888:
1949 dspcntr |= DISPPLANE_BGRX888;
1950 break;
1951 case DRM_FORMAT_XBGR8888:
1952 case DRM_FORMAT_ABGR8888:
1953 dspcntr |= DISPPLANE_RGBX888;
1954 break;
1955 case DRM_FORMAT_XRGB2101010:
1956 case DRM_FORMAT_ARGB2101010:
1957 dspcntr |= DISPPLANE_BGRX101010;
1958 break;
1959 case DRM_FORMAT_XBGR2101010:
1960 case DRM_FORMAT_ABGR2101010:
1961 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
1962 break;
1963 default:
baba133a 1964 BUG();
81255565 1965 }
57779d06 1966
a6c45cf0 1967 if (INTEL_INFO(dev)->gen >= 4) {
05394f39 1968 if (obj->tiling_mode != I915_TILING_NONE)
81255565
JB
1969 dspcntr |= DISPPLANE_TILED;
1970 else
1971 dspcntr &= ~DISPPLANE_TILED;
1972 }
1973
de1aa629
VS
1974 if (IS_G4X(dev))
1975 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1976
5eddb70b 1977 I915_WRITE(reg, dspcntr);
81255565 1978
e506a0c6 1979 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
81255565 1980
c2c75131
DV
1981 if (INTEL_INFO(dev)->gen >= 4) {
1982 intel_crtc->dspaddr_offset =
bc752862
CW
1983 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
1984 fb->bits_per_pixel / 8,
1985 fb->pitches[0]);
c2c75131
DV
1986 linear_offset -= intel_crtc->dspaddr_offset;
1987 } else {
e506a0c6 1988 intel_crtc->dspaddr_offset = linear_offset;
c2c75131 1989 }
e506a0c6
DV
1990
1991 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
1992 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
01f2c773 1993 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
a6c45cf0 1994 if (INTEL_INFO(dev)->gen >= 4) {
c2c75131
DV
1995 I915_MODIFY_DISPBASE(DSPSURF(plane),
1996 obj->gtt_offset + intel_crtc->dspaddr_offset);
5eddb70b 1997 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 1998 I915_WRITE(DSPLINOFF(plane), linear_offset);
5eddb70b 1999 } else
e506a0c6 2000 I915_WRITE(DSPADDR(plane), obj->gtt_offset + linear_offset);
5eddb70b 2001 POSTING_READ(reg);
81255565 2002
17638cd6
JB
2003 return 0;
2004}
2005
2006static int ironlake_update_plane(struct drm_crtc *crtc,
2007 struct drm_framebuffer *fb, int x, int y)
2008{
2009 struct drm_device *dev = crtc->dev;
2010 struct drm_i915_private *dev_priv = dev->dev_private;
2011 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2012 struct intel_framebuffer *intel_fb;
2013 struct drm_i915_gem_object *obj;
2014 int plane = intel_crtc->plane;
e506a0c6 2015 unsigned long linear_offset;
17638cd6
JB
2016 u32 dspcntr;
2017 u32 reg;
2018
2019 switch (plane) {
2020 case 0:
2021 case 1:
27f8227b 2022 case 2:
17638cd6
JB
2023 break;
2024 default:
84f44ce7 2025 DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane));
17638cd6
JB
2026 return -EINVAL;
2027 }
2028
2029 intel_fb = to_intel_framebuffer(fb);
2030 obj = intel_fb->obj;
2031
2032 reg = DSPCNTR(plane);
2033 dspcntr = I915_READ(reg);
2034 /* Mask out pixel format bits in case we change it */
2035 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
57779d06
VS
2036 switch (fb->pixel_format) {
2037 case DRM_FORMAT_C8:
17638cd6
JB
2038 dspcntr |= DISPPLANE_8BPP;
2039 break;
57779d06
VS
2040 case DRM_FORMAT_RGB565:
2041 dspcntr |= DISPPLANE_BGRX565;
17638cd6 2042 break;
57779d06
VS
2043 case DRM_FORMAT_XRGB8888:
2044 case DRM_FORMAT_ARGB8888:
2045 dspcntr |= DISPPLANE_BGRX888;
2046 break;
2047 case DRM_FORMAT_XBGR8888:
2048 case DRM_FORMAT_ABGR8888:
2049 dspcntr |= DISPPLANE_RGBX888;
2050 break;
2051 case DRM_FORMAT_XRGB2101010:
2052 case DRM_FORMAT_ARGB2101010:
2053 dspcntr |= DISPPLANE_BGRX101010;
2054 break;
2055 case DRM_FORMAT_XBGR2101010:
2056 case DRM_FORMAT_ABGR2101010:
2057 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
2058 break;
2059 default:
baba133a 2060 BUG();
17638cd6
JB
2061 }
2062
2063 if (obj->tiling_mode != I915_TILING_NONE)
2064 dspcntr |= DISPPLANE_TILED;
2065 else
2066 dspcntr &= ~DISPPLANE_TILED;
2067
2068 /* must disable */
2069 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2070
2071 I915_WRITE(reg, dspcntr);
2072
e506a0c6 2073 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
c2c75131 2074 intel_crtc->dspaddr_offset =
bc752862
CW
2075 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2076 fb->bits_per_pixel / 8,
2077 fb->pitches[0]);
c2c75131 2078 linear_offset -= intel_crtc->dspaddr_offset;
17638cd6 2079
e506a0c6
DV
2080 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2081 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
01f2c773 2082 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
c2c75131
DV
2083 I915_MODIFY_DISPBASE(DSPSURF(plane),
2084 obj->gtt_offset + intel_crtc->dspaddr_offset);
bc1c91eb
DL
2085 if (IS_HASWELL(dev)) {
2086 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2087 } else {
2088 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2089 I915_WRITE(DSPLINOFF(plane), linear_offset);
2090 }
17638cd6
JB
2091 POSTING_READ(reg);
2092
2093 return 0;
2094}
2095
2096/* Assume fb object is pinned & idle & fenced and just update base pointers */
2097static int
2098intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2099 int x, int y, enum mode_set_atomic state)
2100{
2101 struct drm_device *dev = crtc->dev;
2102 struct drm_i915_private *dev_priv = dev->dev_private;
17638cd6 2103
6b8e6ed0
CW
2104 if (dev_priv->display.disable_fbc)
2105 dev_priv->display.disable_fbc(dev);
3dec0095 2106 intel_increase_pllclock(crtc);
81255565 2107
6b8e6ed0 2108 return dev_priv->display.update_plane(crtc, fb, x, y);
81255565
JB
2109}
2110
96a02917
VS
2111void intel_display_handle_reset(struct drm_device *dev)
2112{
2113 struct drm_i915_private *dev_priv = dev->dev_private;
2114 struct drm_crtc *crtc;
2115
2116 /*
2117 * Flips in the rings have been nuked by the reset,
2118 * so complete all pending flips so that user space
2119 * will get its events and not get stuck.
2120 *
2121 * Also update the base address of all primary
2122 * planes to the the last fb to make sure we're
2123 * showing the correct fb after a reset.
2124 *
2125 * Need to make two loops over the crtcs so that we
2126 * don't try to grab a crtc mutex before the
2127 * pending_flip_queue really got woken up.
2128 */
2129
2130 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2131 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2132 enum plane plane = intel_crtc->plane;
2133
2134 intel_prepare_page_flip(dev, plane);
2135 intel_finish_page_flip_plane(dev, plane);
2136 }
2137
2138 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2139 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2140
2141 mutex_lock(&crtc->mutex);
2142 if (intel_crtc->active)
2143 dev_priv->display.update_plane(crtc, crtc->fb,
2144 crtc->x, crtc->y);
2145 mutex_unlock(&crtc->mutex);
2146 }
2147}
2148
14667a4b
CW
2149static int
2150intel_finish_fb(struct drm_framebuffer *old_fb)
2151{
2152 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2153 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2154 bool was_interruptible = dev_priv->mm.interruptible;
2155 int ret;
2156
14667a4b
CW
2157 /* Big Hammer, we also need to ensure that any pending
2158 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2159 * current scanout is retired before unpinning the old
2160 * framebuffer.
2161 *
2162 * This should only fail upon a hung GPU, in which case we
2163 * can safely continue.
2164 */
2165 dev_priv->mm.interruptible = false;
2166 ret = i915_gem_object_finish_gpu(obj);
2167 dev_priv->mm.interruptible = was_interruptible;
2168
2169 return ret;
2170}
2171
198598d0
VS
2172static void intel_crtc_update_sarea_pos(struct drm_crtc *crtc, int x, int y)
2173{
2174 struct drm_device *dev = crtc->dev;
2175 struct drm_i915_master_private *master_priv;
2176 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2177
2178 if (!dev->primary->master)
2179 return;
2180
2181 master_priv = dev->primary->master->driver_priv;
2182 if (!master_priv->sarea_priv)
2183 return;
2184
2185 switch (intel_crtc->pipe) {
2186 case 0:
2187 master_priv->sarea_priv->pipeA_x = x;
2188 master_priv->sarea_priv->pipeA_y = y;
2189 break;
2190 case 1:
2191 master_priv->sarea_priv->pipeB_x = x;
2192 master_priv->sarea_priv->pipeB_y = y;
2193 break;
2194 default:
2195 break;
2196 }
2197}
2198
5c3b82e2 2199static int
3c4fdcfb 2200intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
94352cf9 2201 struct drm_framebuffer *fb)
79e53945
JB
2202{
2203 struct drm_device *dev = crtc->dev;
6b8e6ed0 2204 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 2205 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
94352cf9 2206 struct drm_framebuffer *old_fb;
5c3b82e2 2207 int ret;
79e53945
JB
2208
2209 /* no fb bound */
94352cf9 2210 if (!fb) {
a5071c2f 2211 DRM_ERROR("No FB bound\n");
5c3b82e2
CW
2212 return 0;
2213 }
2214
7eb552ae 2215 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
84f44ce7
VS
2216 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2217 plane_name(intel_crtc->plane),
2218 INTEL_INFO(dev)->num_pipes);
5c3b82e2 2219 return -EINVAL;
79e53945
JB
2220 }
2221
5c3b82e2 2222 mutex_lock(&dev->struct_mutex);
265db958 2223 ret = intel_pin_and_fence_fb_obj(dev,
94352cf9 2224 to_intel_framebuffer(fb)->obj,
919926ae 2225 NULL);
5c3b82e2
CW
2226 if (ret != 0) {
2227 mutex_unlock(&dev->struct_mutex);
a5071c2f 2228 DRM_ERROR("pin & fence failed\n");
5c3b82e2
CW
2229 return ret;
2230 }
79e53945 2231
94352cf9 2232 ret = dev_priv->display.update_plane(crtc, fb, x, y);
4e6cfefc 2233 if (ret) {
94352cf9 2234 intel_unpin_fb_obj(to_intel_framebuffer(fb)->obj);
5c3b82e2 2235 mutex_unlock(&dev->struct_mutex);
a5071c2f 2236 DRM_ERROR("failed to update base address\n");
4e6cfefc 2237 return ret;
79e53945 2238 }
3c4fdcfb 2239
94352cf9
DV
2240 old_fb = crtc->fb;
2241 crtc->fb = fb;
6c4c86f5
DV
2242 crtc->x = x;
2243 crtc->y = y;
94352cf9 2244
b7f1de28 2245 if (old_fb) {
d7697eea
DV
2246 if (intel_crtc->active && old_fb != fb)
2247 intel_wait_for_vblank(dev, intel_crtc->pipe);
1690e1eb 2248 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
b7f1de28 2249 }
652c393a 2250
6b8e6ed0 2251 intel_update_fbc(dev);
5c3b82e2 2252 mutex_unlock(&dev->struct_mutex);
79e53945 2253
198598d0 2254 intel_crtc_update_sarea_pos(crtc, x, y);
5c3b82e2
CW
2255
2256 return 0;
79e53945
JB
2257}
2258
5e84e1a4
ZW
2259static void intel_fdi_normal_train(struct drm_crtc *crtc)
2260{
2261 struct drm_device *dev = crtc->dev;
2262 struct drm_i915_private *dev_priv = dev->dev_private;
2263 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2264 int pipe = intel_crtc->pipe;
2265 u32 reg, temp;
2266
2267 /* enable normal train */
2268 reg = FDI_TX_CTL(pipe);
2269 temp = I915_READ(reg);
61e499bf 2270 if (IS_IVYBRIDGE(dev)) {
357555c0
JB
2271 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2272 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
2273 } else {
2274 temp &= ~FDI_LINK_TRAIN_NONE;
2275 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 2276 }
5e84e1a4
ZW
2277 I915_WRITE(reg, temp);
2278
2279 reg = FDI_RX_CTL(pipe);
2280 temp = I915_READ(reg);
2281 if (HAS_PCH_CPT(dev)) {
2282 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2283 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2284 } else {
2285 temp &= ~FDI_LINK_TRAIN_NONE;
2286 temp |= FDI_LINK_TRAIN_NONE;
2287 }
2288 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2289
2290 /* wait one idle pattern time */
2291 POSTING_READ(reg);
2292 udelay(1000);
357555c0
JB
2293
2294 /* IVB wants error correction enabled */
2295 if (IS_IVYBRIDGE(dev))
2296 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2297 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
2298}
2299
1e833f40
DV
2300static bool pipe_has_enabled_pch(struct intel_crtc *intel_crtc)
2301{
2302 return intel_crtc->base.enabled && intel_crtc->config.has_pch_encoder;
2303}
2304
01a415fd
DV
2305static void ivb_modeset_global_resources(struct drm_device *dev)
2306{
2307 struct drm_i915_private *dev_priv = dev->dev_private;
2308 struct intel_crtc *pipe_B_crtc =
2309 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2310 struct intel_crtc *pipe_C_crtc =
2311 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2312 uint32_t temp;
2313
1e833f40
DV
2314 /*
2315 * When everything is off disable fdi C so that we could enable fdi B
2316 * with all lanes. Note that we don't care about enabled pipes without
2317 * an enabled pch encoder.
2318 */
2319 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2320 !pipe_has_enabled_pch(pipe_C_crtc)) {
01a415fd
DV
2321 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2322 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2323
2324 temp = I915_READ(SOUTH_CHICKEN1);
2325 temp &= ~FDI_BC_BIFURCATION_SELECT;
2326 DRM_DEBUG_KMS("disabling fdi C rx\n");
2327 I915_WRITE(SOUTH_CHICKEN1, temp);
2328 }
2329}
2330
8db9d77b
ZW
2331/* The FDI link training functions for ILK/Ibexpeak. */
2332static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2333{
2334 struct drm_device *dev = crtc->dev;
2335 struct drm_i915_private *dev_priv = dev->dev_private;
2336 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2337 int pipe = intel_crtc->pipe;
0fc932b8 2338 int plane = intel_crtc->plane;
5eddb70b 2339 u32 reg, temp, tries;
8db9d77b 2340
0fc932b8
JB
2341 /* FDI needs bits from pipe & plane first */
2342 assert_pipe_enabled(dev_priv, pipe);
2343 assert_plane_enabled(dev_priv, plane);
2344
e1a44743
AJ
2345 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2346 for train result */
5eddb70b
CW
2347 reg = FDI_RX_IMR(pipe);
2348 temp = I915_READ(reg);
e1a44743
AJ
2349 temp &= ~FDI_RX_SYMBOL_LOCK;
2350 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
2351 I915_WRITE(reg, temp);
2352 I915_READ(reg);
e1a44743
AJ
2353 udelay(150);
2354
8db9d77b 2355 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
2356 reg = FDI_TX_CTL(pipe);
2357 temp = I915_READ(reg);
627eb5a3
DV
2358 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2359 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
8db9d77b
ZW
2360 temp &= ~FDI_LINK_TRAIN_NONE;
2361 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 2362 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 2363
5eddb70b
CW
2364 reg = FDI_RX_CTL(pipe);
2365 temp = I915_READ(reg);
8db9d77b
ZW
2366 temp &= ~FDI_LINK_TRAIN_NONE;
2367 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
2368 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2369
2370 POSTING_READ(reg);
8db9d77b
ZW
2371 udelay(150);
2372
5b2adf89 2373 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
2374 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2375 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2376 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 2377
5eddb70b 2378 reg = FDI_RX_IIR(pipe);
e1a44743 2379 for (tries = 0; tries < 5; tries++) {
5eddb70b 2380 temp = I915_READ(reg);
8db9d77b
ZW
2381 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2382
2383 if ((temp & FDI_RX_BIT_LOCK)) {
2384 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 2385 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
2386 break;
2387 }
8db9d77b 2388 }
e1a44743 2389 if (tries == 5)
5eddb70b 2390 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
2391
2392 /* Train 2 */
5eddb70b
CW
2393 reg = FDI_TX_CTL(pipe);
2394 temp = I915_READ(reg);
8db9d77b
ZW
2395 temp &= ~FDI_LINK_TRAIN_NONE;
2396 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 2397 I915_WRITE(reg, temp);
8db9d77b 2398
5eddb70b
CW
2399 reg = FDI_RX_CTL(pipe);
2400 temp = I915_READ(reg);
8db9d77b
ZW
2401 temp &= ~FDI_LINK_TRAIN_NONE;
2402 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 2403 I915_WRITE(reg, temp);
8db9d77b 2404
5eddb70b
CW
2405 POSTING_READ(reg);
2406 udelay(150);
8db9d77b 2407
5eddb70b 2408 reg = FDI_RX_IIR(pipe);
e1a44743 2409 for (tries = 0; tries < 5; tries++) {
5eddb70b 2410 temp = I915_READ(reg);
8db9d77b
ZW
2411 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2412
2413 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 2414 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
2415 DRM_DEBUG_KMS("FDI train 2 done.\n");
2416 break;
2417 }
8db9d77b 2418 }
e1a44743 2419 if (tries == 5)
5eddb70b 2420 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
2421
2422 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 2423
8db9d77b
ZW
2424}
2425
0206e353 2426static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
2427 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2428 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2429 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2430 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2431};
2432
2433/* The FDI link training functions for SNB/Cougarpoint. */
2434static void gen6_fdi_link_train(struct drm_crtc *crtc)
2435{
2436 struct drm_device *dev = crtc->dev;
2437 struct drm_i915_private *dev_priv = dev->dev_private;
2438 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2439 int pipe = intel_crtc->pipe;
fa37d39e 2440 u32 reg, temp, i, retry;
8db9d77b 2441
e1a44743
AJ
2442 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2443 for train result */
5eddb70b
CW
2444 reg = FDI_RX_IMR(pipe);
2445 temp = I915_READ(reg);
e1a44743
AJ
2446 temp &= ~FDI_RX_SYMBOL_LOCK;
2447 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
2448 I915_WRITE(reg, temp);
2449
2450 POSTING_READ(reg);
e1a44743
AJ
2451 udelay(150);
2452
8db9d77b 2453 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
2454 reg = FDI_TX_CTL(pipe);
2455 temp = I915_READ(reg);
627eb5a3
DV
2456 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2457 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
8db9d77b
ZW
2458 temp &= ~FDI_LINK_TRAIN_NONE;
2459 temp |= FDI_LINK_TRAIN_PATTERN_1;
2460 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2461 /* SNB-B */
2462 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 2463 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 2464
d74cf324
DV
2465 I915_WRITE(FDI_RX_MISC(pipe),
2466 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2467
5eddb70b
CW
2468 reg = FDI_RX_CTL(pipe);
2469 temp = I915_READ(reg);
8db9d77b
ZW
2470 if (HAS_PCH_CPT(dev)) {
2471 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2472 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2473 } else {
2474 temp &= ~FDI_LINK_TRAIN_NONE;
2475 temp |= FDI_LINK_TRAIN_PATTERN_1;
2476 }
5eddb70b
CW
2477 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2478
2479 POSTING_READ(reg);
8db9d77b
ZW
2480 udelay(150);
2481
0206e353 2482 for (i = 0; i < 4; i++) {
5eddb70b
CW
2483 reg = FDI_TX_CTL(pipe);
2484 temp = I915_READ(reg);
8db9d77b
ZW
2485 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2486 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
2487 I915_WRITE(reg, temp);
2488
2489 POSTING_READ(reg);
8db9d77b
ZW
2490 udelay(500);
2491
fa37d39e
SP
2492 for (retry = 0; retry < 5; retry++) {
2493 reg = FDI_RX_IIR(pipe);
2494 temp = I915_READ(reg);
2495 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2496 if (temp & FDI_RX_BIT_LOCK) {
2497 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2498 DRM_DEBUG_KMS("FDI train 1 done.\n");
2499 break;
2500 }
2501 udelay(50);
8db9d77b 2502 }
fa37d39e
SP
2503 if (retry < 5)
2504 break;
8db9d77b
ZW
2505 }
2506 if (i == 4)
5eddb70b 2507 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
2508
2509 /* Train 2 */
5eddb70b
CW
2510 reg = FDI_TX_CTL(pipe);
2511 temp = I915_READ(reg);
8db9d77b
ZW
2512 temp &= ~FDI_LINK_TRAIN_NONE;
2513 temp |= FDI_LINK_TRAIN_PATTERN_2;
2514 if (IS_GEN6(dev)) {
2515 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2516 /* SNB-B */
2517 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2518 }
5eddb70b 2519 I915_WRITE(reg, temp);
8db9d77b 2520
5eddb70b
CW
2521 reg = FDI_RX_CTL(pipe);
2522 temp = I915_READ(reg);
8db9d77b
ZW
2523 if (HAS_PCH_CPT(dev)) {
2524 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2525 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2526 } else {
2527 temp &= ~FDI_LINK_TRAIN_NONE;
2528 temp |= FDI_LINK_TRAIN_PATTERN_2;
2529 }
5eddb70b
CW
2530 I915_WRITE(reg, temp);
2531
2532 POSTING_READ(reg);
8db9d77b
ZW
2533 udelay(150);
2534
0206e353 2535 for (i = 0; i < 4; i++) {
5eddb70b
CW
2536 reg = FDI_TX_CTL(pipe);
2537 temp = I915_READ(reg);
8db9d77b
ZW
2538 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2539 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
2540 I915_WRITE(reg, temp);
2541
2542 POSTING_READ(reg);
8db9d77b
ZW
2543 udelay(500);
2544
fa37d39e
SP
2545 for (retry = 0; retry < 5; retry++) {
2546 reg = FDI_RX_IIR(pipe);
2547 temp = I915_READ(reg);
2548 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2549 if (temp & FDI_RX_SYMBOL_LOCK) {
2550 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2551 DRM_DEBUG_KMS("FDI train 2 done.\n");
2552 break;
2553 }
2554 udelay(50);
8db9d77b 2555 }
fa37d39e
SP
2556 if (retry < 5)
2557 break;
8db9d77b
ZW
2558 }
2559 if (i == 4)
5eddb70b 2560 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
2561
2562 DRM_DEBUG_KMS("FDI train done.\n");
2563}
2564
357555c0
JB
2565/* Manual link training for Ivy Bridge A0 parts */
2566static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2567{
2568 struct drm_device *dev = crtc->dev;
2569 struct drm_i915_private *dev_priv = dev->dev_private;
2570 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2571 int pipe = intel_crtc->pipe;
2572 u32 reg, temp, i;
2573
2574 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2575 for train result */
2576 reg = FDI_RX_IMR(pipe);
2577 temp = I915_READ(reg);
2578 temp &= ~FDI_RX_SYMBOL_LOCK;
2579 temp &= ~FDI_RX_BIT_LOCK;
2580 I915_WRITE(reg, temp);
2581
2582 POSTING_READ(reg);
2583 udelay(150);
2584
01a415fd
DV
2585 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
2586 I915_READ(FDI_RX_IIR(pipe)));
2587
357555c0
JB
2588 /* enable CPU FDI TX and PCH FDI RX */
2589 reg = FDI_TX_CTL(pipe);
2590 temp = I915_READ(reg);
627eb5a3
DV
2591 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2592 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
357555c0
JB
2593 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2594 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
2595 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2596 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
c4f9c4c2 2597 temp |= FDI_COMPOSITE_SYNC;
357555c0
JB
2598 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2599
d74cf324
DV
2600 I915_WRITE(FDI_RX_MISC(pipe),
2601 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2602
357555c0
JB
2603 reg = FDI_RX_CTL(pipe);
2604 temp = I915_READ(reg);
2605 temp &= ~FDI_LINK_TRAIN_AUTO;
2606 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2607 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
c4f9c4c2 2608 temp |= FDI_COMPOSITE_SYNC;
357555c0
JB
2609 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2610
2611 POSTING_READ(reg);
2612 udelay(150);
2613
0206e353 2614 for (i = 0; i < 4; i++) {
357555c0
JB
2615 reg = FDI_TX_CTL(pipe);
2616 temp = I915_READ(reg);
2617 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2618 temp |= snb_b_fdi_train_param[i];
2619 I915_WRITE(reg, temp);
2620
2621 POSTING_READ(reg);
2622 udelay(500);
2623
2624 reg = FDI_RX_IIR(pipe);
2625 temp = I915_READ(reg);
2626 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2627
2628 if (temp & FDI_RX_BIT_LOCK ||
2629 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2630 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
01a415fd 2631 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n", i);
357555c0
JB
2632 break;
2633 }
2634 }
2635 if (i == 4)
2636 DRM_ERROR("FDI train 1 fail!\n");
2637
2638 /* Train 2 */
2639 reg = FDI_TX_CTL(pipe);
2640 temp = I915_READ(reg);
2641 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2642 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2643 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2644 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2645 I915_WRITE(reg, temp);
2646
2647 reg = FDI_RX_CTL(pipe);
2648 temp = I915_READ(reg);
2649 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2650 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2651 I915_WRITE(reg, temp);
2652
2653 POSTING_READ(reg);
2654 udelay(150);
2655
0206e353 2656 for (i = 0; i < 4; i++) {
357555c0
JB
2657 reg = FDI_TX_CTL(pipe);
2658 temp = I915_READ(reg);
2659 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2660 temp |= snb_b_fdi_train_param[i];
2661 I915_WRITE(reg, temp);
2662
2663 POSTING_READ(reg);
2664 udelay(500);
2665
2666 reg = FDI_RX_IIR(pipe);
2667 temp = I915_READ(reg);
2668 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2669
2670 if (temp & FDI_RX_SYMBOL_LOCK) {
2671 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
01a415fd 2672 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n", i);
357555c0
JB
2673 break;
2674 }
2675 }
2676 if (i == 4)
2677 DRM_ERROR("FDI train 2 fail!\n");
2678
2679 DRM_DEBUG_KMS("FDI train done.\n");
2680}
2681
88cefb6c 2682static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 2683{
88cefb6c 2684 struct drm_device *dev = intel_crtc->base.dev;
2c07245f 2685 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 2686 int pipe = intel_crtc->pipe;
5eddb70b 2687 u32 reg, temp;
79e53945 2688
c64e311e 2689
c98e9dcf 2690 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
2691 reg = FDI_RX_CTL(pipe);
2692 temp = I915_READ(reg);
627eb5a3
DV
2693 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
2694 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
dfd07d72 2695 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
2696 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2697
2698 POSTING_READ(reg);
c98e9dcf
JB
2699 udelay(200);
2700
2701 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
2702 temp = I915_READ(reg);
2703 I915_WRITE(reg, temp | FDI_PCDCLK);
2704
2705 POSTING_READ(reg);
c98e9dcf
JB
2706 udelay(200);
2707
20749730
PZ
2708 /* Enable CPU FDI TX PLL, always on for Ironlake */
2709 reg = FDI_TX_CTL(pipe);
2710 temp = I915_READ(reg);
2711 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
2712 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 2713
20749730
PZ
2714 POSTING_READ(reg);
2715 udelay(100);
6be4a607 2716 }
0e23b99d
JB
2717}
2718
88cefb6c
DV
2719static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
2720{
2721 struct drm_device *dev = intel_crtc->base.dev;
2722 struct drm_i915_private *dev_priv = dev->dev_private;
2723 int pipe = intel_crtc->pipe;
2724 u32 reg, temp;
2725
2726 /* Switch from PCDclk to Rawclk */
2727 reg = FDI_RX_CTL(pipe);
2728 temp = I915_READ(reg);
2729 I915_WRITE(reg, temp & ~FDI_PCDCLK);
2730
2731 /* Disable CPU FDI TX PLL */
2732 reg = FDI_TX_CTL(pipe);
2733 temp = I915_READ(reg);
2734 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2735
2736 POSTING_READ(reg);
2737 udelay(100);
2738
2739 reg = FDI_RX_CTL(pipe);
2740 temp = I915_READ(reg);
2741 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
2742
2743 /* Wait for the clocks to turn off. */
2744 POSTING_READ(reg);
2745 udelay(100);
2746}
2747
0fc932b8
JB
2748static void ironlake_fdi_disable(struct drm_crtc *crtc)
2749{
2750 struct drm_device *dev = crtc->dev;
2751 struct drm_i915_private *dev_priv = dev->dev_private;
2752 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2753 int pipe = intel_crtc->pipe;
2754 u32 reg, temp;
2755
2756 /* disable CPU FDI tx and PCH FDI rx */
2757 reg = FDI_TX_CTL(pipe);
2758 temp = I915_READ(reg);
2759 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2760 POSTING_READ(reg);
2761
2762 reg = FDI_RX_CTL(pipe);
2763 temp = I915_READ(reg);
2764 temp &= ~(0x7 << 16);
dfd07d72 2765 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
2766 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2767
2768 POSTING_READ(reg);
2769 udelay(100);
2770
2771 /* Ironlake workaround, disable clock pointer after downing FDI */
6f06ce18
JB
2772 if (HAS_PCH_IBX(dev)) {
2773 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
6f06ce18 2774 }
0fc932b8
JB
2775
2776 /* still set train pattern 1 */
2777 reg = FDI_TX_CTL(pipe);
2778 temp = I915_READ(reg);
2779 temp &= ~FDI_LINK_TRAIN_NONE;
2780 temp |= FDI_LINK_TRAIN_PATTERN_1;
2781 I915_WRITE(reg, temp);
2782
2783 reg = FDI_RX_CTL(pipe);
2784 temp = I915_READ(reg);
2785 if (HAS_PCH_CPT(dev)) {
2786 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2787 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2788 } else {
2789 temp &= ~FDI_LINK_TRAIN_NONE;
2790 temp |= FDI_LINK_TRAIN_PATTERN_1;
2791 }
2792 /* BPC in FDI rx is consistent with that in PIPECONF */
2793 temp &= ~(0x07 << 16);
dfd07d72 2794 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
2795 I915_WRITE(reg, temp);
2796
2797 POSTING_READ(reg);
2798 udelay(100);
2799}
2800
5bb61643
CW
2801static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2802{
2803 struct drm_device *dev = crtc->dev;
2804 struct drm_i915_private *dev_priv = dev->dev_private;
10d83730 2805 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5bb61643
CW
2806 unsigned long flags;
2807 bool pending;
2808
10d83730
VS
2809 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2810 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
5bb61643
CW
2811 return false;
2812
2813 spin_lock_irqsave(&dev->event_lock, flags);
2814 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2815 spin_unlock_irqrestore(&dev->event_lock, flags);
2816
2817 return pending;
2818}
2819
e6c3a2a6
CW
2820static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2821{
0f91128d 2822 struct drm_device *dev = crtc->dev;
5bb61643 2823 struct drm_i915_private *dev_priv = dev->dev_private;
e6c3a2a6
CW
2824
2825 if (crtc->fb == NULL)
2826 return;
2827
2c10d571
DV
2828 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
2829
5bb61643
CW
2830 wait_event(dev_priv->pending_flip_queue,
2831 !intel_crtc_has_pending_flip(crtc));
2832
0f91128d
CW
2833 mutex_lock(&dev->struct_mutex);
2834 intel_finish_fb(crtc->fb);
2835 mutex_unlock(&dev->struct_mutex);
e6c3a2a6
CW
2836}
2837
e615efe4
ED
2838/* Program iCLKIP clock to the desired frequency */
2839static void lpt_program_iclkip(struct drm_crtc *crtc)
2840{
2841 struct drm_device *dev = crtc->dev;
2842 struct drm_i915_private *dev_priv = dev->dev_private;
2843 u32 divsel, phaseinc, auxdiv, phasedir = 0;
2844 u32 temp;
2845
09153000
DV
2846 mutex_lock(&dev_priv->dpio_lock);
2847
e615efe4
ED
2848 /* It is necessary to ungate the pixclk gate prior to programming
2849 * the divisors, and gate it back when it is done.
2850 */
2851 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
2852
2853 /* Disable SSCCTL */
2854 intel_sbi_write(dev_priv, SBI_SSCCTL6,
988d6ee8
PZ
2855 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
2856 SBI_SSCCTL_DISABLE,
2857 SBI_ICLK);
e615efe4
ED
2858
2859 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
2860 if (crtc->mode.clock == 20000) {
2861 auxdiv = 1;
2862 divsel = 0x41;
2863 phaseinc = 0x20;
2864 } else {
2865 /* The iCLK virtual clock root frequency is in MHz,
2866 * but the crtc->mode.clock in in KHz. To get the divisors,
2867 * it is necessary to divide one by another, so we
2868 * convert the virtual clock precision to KHz here for higher
2869 * precision.
2870 */
2871 u32 iclk_virtual_root_freq = 172800 * 1000;
2872 u32 iclk_pi_range = 64;
2873 u32 desired_divisor, msb_divisor_value, pi_value;
2874
2875 desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock);
2876 msb_divisor_value = desired_divisor / iclk_pi_range;
2877 pi_value = desired_divisor % iclk_pi_range;
2878
2879 auxdiv = 0;
2880 divsel = msb_divisor_value - 2;
2881 phaseinc = pi_value;
2882 }
2883
2884 /* This should not happen with any sane values */
2885 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
2886 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
2887 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
2888 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
2889
2890 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
2891 crtc->mode.clock,
2892 auxdiv,
2893 divsel,
2894 phasedir,
2895 phaseinc);
2896
2897 /* Program SSCDIVINTPHASE6 */
988d6ee8 2898 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
2899 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
2900 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
2901 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
2902 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
2903 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
2904 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 2905 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
2906
2907 /* Program SSCAUXDIV */
988d6ee8 2908 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
2909 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
2910 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 2911 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
2912
2913 /* Enable modulator and associated divider */
988d6ee8 2914 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 2915 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 2916 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4
ED
2917
2918 /* Wait for initialization time */
2919 udelay(24);
2920
2921 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
09153000
DV
2922
2923 mutex_unlock(&dev_priv->dpio_lock);
e615efe4
ED
2924}
2925
275f01b2
DV
2926static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
2927 enum pipe pch_transcoder)
2928{
2929 struct drm_device *dev = crtc->base.dev;
2930 struct drm_i915_private *dev_priv = dev->dev_private;
2931 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
2932
2933 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
2934 I915_READ(HTOTAL(cpu_transcoder)));
2935 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
2936 I915_READ(HBLANK(cpu_transcoder)));
2937 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
2938 I915_READ(HSYNC(cpu_transcoder)));
2939
2940 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
2941 I915_READ(VTOTAL(cpu_transcoder)));
2942 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
2943 I915_READ(VBLANK(cpu_transcoder)));
2944 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
2945 I915_READ(VSYNC(cpu_transcoder)));
2946 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
2947 I915_READ(VSYNCSHIFT(cpu_transcoder)));
2948}
2949
f67a559d
JB
2950/*
2951 * Enable PCH resources required for PCH ports:
2952 * - PCH PLLs
2953 * - FDI training & RX/TX
2954 * - update transcoder timings
2955 * - DP transcoding bits
2956 * - transcoder
2957 */
2958static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
2959{
2960 struct drm_device *dev = crtc->dev;
2961 struct drm_i915_private *dev_priv = dev->dev_private;
2962 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2963 int pipe = intel_crtc->pipe;
ee7b9f93 2964 u32 reg, temp;
2c07245f 2965
ab9412ba 2966 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 2967
cd986abb
DV
2968 /* Write the TU size bits before fdi link training, so that error
2969 * detection works. */
2970 I915_WRITE(FDI_RX_TUSIZE1(pipe),
2971 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
2972
c98e9dcf 2973 /* For PCH output, training FDI link */
674cf967 2974 dev_priv->display.fdi_link_train(crtc);
2c07245f 2975
572deb37
DV
2976 /* XXX: pch pll's can be enabled any time before we enable the PCH
2977 * transcoder, and we actually should do this to not upset any PCH
2978 * transcoder that already use the clock when we share it.
2979 *
e72f9fbf
DV
2980 * Note that enable_shared_dpll tries to do the right thing, but
2981 * get_shared_dpll unconditionally resets the pll - we need that to have
2982 * the right LVDS enable sequence. */
2983 ironlake_enable_shared_dpll(intel_crtc);
6f13b7b5 2984
303b81e0 2985 if (HAS_PCH_CPT(dev)) {
ee7b9f93 2986 u32 sel;
4b645f14 2987
c98e9dcf 2988 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
2989 temp |= TRANS_DPLL_ENABLE(pipe);
2990 sel = TRANS_DPLLB_SEL(pipe);
a43f6e0f 2991 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
ee7b9f93
JB
2992 temp |= sel;
2993 else
2994 temp &= ~sel;
c98e9dcf 2995 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 2996 }
5eddb70b 2997
d9b6cb56
JB
2998 /* set transcoder timing, panel must allow it */
2999 assert_panel_unlocked(dev_priv, pipe);
275f01b2 3000 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 3001
303b81e0 3002 intel_fdi_normal_train(crtc);
5e84e1a4 3003
c98e9dcf
JB
3004 /* For PCH DP, enable TRANS_DP_CTL */
3005 if (HAS_PCH_CPT(dev) &&
417e822d
KP
3006 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3007 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
dfd07d72 3008 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
5eddb70b
CW
3009 reg = TRANS_DP_CTL(pipe);
3010 temp = I915_READ(reg);
3011 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
3012 TRANS_DP_SYNC_MASK |
3013 TRANS_DP_BPC_MASK);
5eddb70b
CW
3014 temp |= (TRANS_DP_OUTPUT_ENABLE |
3015 TRANS_DP_ENH_FRAMING);
9325c9f0 3016 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf
JB
3017
3018 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 3019 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
c98e9dcf 3020 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 3021 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
3022
3023 switch (intel_trans_dp_port_sel(crtc)) {
3024 case PCH_DP_B:
5eddb70b 3025 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf
JB
3026 break;
3027 case PCH_DP_C:
5eddb70b 3028 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf
JB
3029 break;
3030 case PCH_DP_D:
5eddb70b 3031 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
3032 break;
3033 default:
e95d41e1 3034 BUG();
32f9d658 3035 }
2c07245f 3036
5eddb70b 3037 I915_WRITE(reg, temp);
6be4a607 3038 }
b52eb4dc 3039
b8a4f404 3040 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
3041}
3042
1507e5bd
PZ
3043static void lpt_pch_enable(struct drm_crtc *crtc)
3044{
3045 struct drm_device *dev = crtc->dev;
3046 struct drm_i915_private *dev_priv = dev->dev_private;
3047 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3b117c8f 3048 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
1507e5bd 3049
ab9412ba 3050 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 3051
8c52b5e8 3052 lpt_program_iclkip(crtc);
1507e5bd 3053
0540e488 3054 /* Set transcoder timing. */
275f01b2 3055 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 3056
937bb610 3057 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
3058}
3059
e2b78267 3060static void intel_put_shared_dpll(struct intel_crtc *crtc)
ee7b9f93 3061{
e2b78267 3062 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
ee7b9f93
JB
3063
3064 if (pll == NULL)
3065 return;
3066
3067 if (pll->refcount == 0) {
3068 WARN(1, "bad PCH PLL refcount\n");
3069 return;
3070 }
3071
f4a091c7
DV
3072 if (--pll->refcount == 0) {
3073 WARN_ON(pll->on);
3074 WARN_ON(pll->active);
3075 }
3076
a43f6e0f 3077 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
ee7b9f93
JB
3078}
3079
e2b78267 3080static struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc, u32 dpll, u32 fp)
ee7b9f93 3081{
e2b78267
DV
3082 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3083 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3084 enum intel_dpll_id i;
ee7b9f93 3085
ee7b9f93 3086 if (pll) {
cdbd2316 3087 DRM_DEBUG_KMS("CRTC:%d dropping existing PCH PLL %x\n",
e2b78267
DV
3088 crtc->base.base.id, pll->pll_reg);
3089 intel_put_shared_dpll(crtc);
ee7b9f93
JB
3090 }
3091
98b6bd99
DV
3092 if (HAS_PCH_IBX(dev_priv->dev)) {
3093 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
e2b78267 3094 i = crtc->pipe;
e72f9fbf 3095 pll = &dev_priv->shared_dplls[i];
98b6bd99
DV
3096
3097 DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n",
e2b78267 3098 crtc->base.base.id, pll->pll_reg);
98b6bd99
DV
3099
3100 goto found;
3101 }
3102
e72f9fbf
DV
3103 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3104 pll = &dev_priv->shared_dplls[i];
ee7b9f93
JB
3105
3106 /* Only want to check enabled timings first */
3107 if (pll->refcount == 0)
3108 continue;
3109
3110 if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) &&
3111 fp == I915_READ(pll->fp0_reg)) {
3112 DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n",
e2b78267 3113 crtc->base.base.id,
ee7b9f93
JB
3114 pll->pll_reg, pll->refcount, pll->active);
3115
3116 goto found;
3117 }
3118 }
3119
3120 /* Ok no matching timings, maybe there's a free one? */
e72f9fbf
DV
3121 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3122 pll = &dev_priv->shared_dplls[i];
ee7b9f93
JB
3123 if (pll->refcount == 0) {
3124 DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n",
e2b78267 3125 crtc->base.base.id, pll->pll_reg);
ee7b9f93
JB
3126 goto found;
3127 }
3128 }
3129
3130 return NULL;
3131
3132found:
a43f6e0f 3133 crtc->config.shared_dpll = i;
e2b78267 3134 DRM_DEBUG_DRIVER("using pll %d for pipe %c\n", i, pipe_name(crtc->pipe));
cdbd2316
DV
3135 if (pll->active == 0) {
3136 DRM_DEBUG_DRIVER("setting up pll %d\n", i);
3137 WARN_ON(pll->on);
e72f9fbf 3138 assert_shared_dpll_disabled(dev_priv, pll, NULL);
ee7b9f93 3139
cdbd2316
DV
3140 /* Wait for the clocks to stabilize before rewriting the regs */
3141 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
3142 POSTING_READ(pll->pll_reg);
3143 udelay(150);
3144
3145 I915_WRITE(pll->fp0_reg, fp);
3146 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
3147 }
3148 pll->refcount++;
e04c7350 3149
ee7b9f93
JB
3150 return pll;
3151}
3152
a1520318 3153static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57
JB
3154{
3155 struct drm_i915_private *dev_priv = dev->dev_private;
23670b32 3156 int dslreg = PIPEDSL(pipe);
d4270e57
JB
3157 u32 temp;
3158
3159 temp = I915_READ(dslreg);
3160 udelay(500);
3161 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 3162 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 3163 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
3164 }
3165}
3166
b074cec8
JB
3167static void ironlake_pfit_enable(struct intel_crtc *crtc)
3168{
3169 struct drm_device *dev = crtc->base.dev;
3170 struct drm_i915_private *dev_priv = dev->dev_private;
3171 int pipe = crtc->pipe;
3172
0ef37f3f 3173 if (crtc->config.pch_pfit.size) {
b074cec8
JB
3174 /* Force use of hard-coded filter coefficients
3175 * as some pre-programmed values are broken,
3176 * e.g. x201.
3177 */
3178 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3179 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3180 PF_PIPE_SEL_IVB(pipe));
3181 else
3182 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3183 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3184 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
3185 }
3186}
3187
bb53d4ae
VS
3188static void intel_enable_planes(struct drm_crtc *crtc)
3189{
3190 struct drm_device *dev = crtc->dev;
3191 enum pipe pipe = to_intel_crtc(crtc)->pipe;
3192 struct intel_plane *intel_plane;
3193
3194 list_for_each_entry(intel_plane, &dev->mode_config.plane_list, base.head)
3195 if (intel_plane->pipe == pipe)
3196 intel_plane_restore(&intel_plane->base);
3197}
3198
3199static void intel_disable_planes(struct drm_crtc *crtc)
3200{
3201 struct drm_device *dev = crtc->dev;
3202 enum pipe pipe = to_intel_crtc(crtc)->pipe;
3203 struct intel_plane *intel_plane;
3204
3205 list_for_each_entry(intel_plane, &dev->mode_config.plane_list, base.head)
3206 if (intel_plane->pipe == pipe)
3207 intel_plane_disable(&intel_plane->base);
3208}
3209
f67a559d
JB
3210static void ironlake_crtc_enable(struct drm_crtc *crtc)
3211{
3212 struct drm_device *dev = crtc->dev;
3213 struct drm_i915_private *dev_priv = dev->dev_private;
3214 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 3215 struct intel_encoder *encoder;
f67a559d
JB
3216 int pipe = intel_crtc->pipe;
3217 int plane = intel_crtc->plane;
3218 u32 temp;
f67a559d 3219
08a48469
DV
3220 WARN_ON(!crtc->enabled);
3221
f67a559d
JB
3222 if (intel_crtc->active)
3223 return;
3224
3225 intel_crtc->active = true;
8664281b
PZ
3226
3227 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3228 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3229
f67a559d
JB
3230 intel_update_watermarks(dev);
3231
3232 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3233 temp = I915_READ(PCH_LVDS);
3234 if ((temp & LVDS_PORT_EN) == 0)
3235 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
3236 }
3237
f67a559d 3238
5bfe2ac0 3239 if (intel_crtc->config.has_pch_encoder) {
fff367c7
DV
3240 /* Note: FDI PLL enabling _must_ be done before we enable the
3241 * cpu pipes, hence this is separate from all the other fdi/pch
3242 * enabling. */
88cefb6c 3243 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
3244 } else {
3245 assert_fdi_tx_disabled(dev_priv, pipe);
3246 assert_fdi_rx_disabled(dev_priv, pipe);
3247 }
f67a559d 3248
bf49ec8c
DV
3249 for_each_encoder_on_crtc(dev, crtc, encoder)
3250 if (encoder->pre_enable)
3251 encoder->pre_enable(encoder);
f67a559d
JB
3252
3253 /* Enable panel fitting for LVDS */
b074cec8 3254 ironlake_pfit_enable(intel_crtc);
f67a559d 3255
9c54c0dd
JB
3256 /*
3257 * On ILK+ LUT must be loaded before the pipe is running but with
3258 * clocks enabled
3259 */
3260 intel_crtc_load_lut(crtc);
3261
5bfe2ac0
DV
3262 intel_enable_pipe(dev_priv, pipe,
3263 intel_crtc->config.has_pch_encoder);
f67a559d 3264 intel_enable_plane(dev_priv, plane, pipe);
bb53d4ae 3265 intel_enable_planes(crtc);
5c38d48c 3266 intel_crtc_update_cursor(crtc, true);
f67a559d 3267
5bfe2ac0 3268 if (intel_crtc->config.has_pch_encoder)
f67a559d 3269 ironlake_pch_enable(crtc);
c98e9dcf 3270
d1ebd816 3271 mutex_lock(&dev->struct_mutex);
bed4a673 3272 intel_update_fbc(dev);
d1ebd816
BW
3273 mutex_unlock(&dev->struct_mutex);
3274
fa5c73b1
DV
3275 for_each_encoder_on_crtc(dev, crtc, encoder)
3276 encoder->enable(encoder);
61b77ddd
DV
3277
3278 if (HAS_PCH_CPT(dev))
a1520318 3279 cpt_verify_modeset(dev, intel_crtc->pipe);
6ce94100
DV
3280
3281 /*
3282 * There seems to be a race in PCH platform hw (at least on some
3283 * outputs) where an enabled pipe still completes any pageflip right
3284 * away (as if the pipe is off) instead of waiting for vblank. As soon
3285 * as the first vblank happend, everything works as expected. Hence just
3286 * wait for one vblank before returning to avoid strange things
3287 * happening.
3288 */
3289 intel_wait_for_vblank(dev, intel_crtc->pipe);
6be4a607
JB
3290}
3291
42db64ef
PZ
3292/* IPS only exists on ULT machines and is tied to pipe A. */
3293static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
3294{
3295 return IS_ULT(crtc->base.dev) && crtc->pipe == PIPE_A;
3296}
3297
3298static void hsw_enable_ips(struct intel_crtc *crtc)
3299{
3300 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3301
3302 if (!crtc->config.ips_enabled)
3303 return;
3304
3305 /* We can only enable IPS after we enable a plane and wait for a vblank.
3306 * We guarantee that the plane is enabled by calling intel_enable_ips
3307 * only after intel_enable_plane. And intel_enable_plane already waits
3308 * for a vblank, so all we need to do here is to enable the IPS bit. */
3309 assert_plane_enabled(dev_priv, crtc->plane);
3310 I915_WRITE(IPS_CTL, IPS_ENABLE);
3311}
3312
3313static void hsw_disable_ips(struct intel_crtc *crtc)
3314{
3315 struct drm_device *dev = crtc->base.dev;
3316 struct drm_i915_private *dev_priv = dev->dev_private;
3317
3318 if (!crtc->config.ips_enabled)
3319 return;
3320
3321 assert_plane_enabled(dev_priv, crtc->plane);
3322 I915_WRITE(IPS_CTL, 0);
3323
3324 /* We need to wait for a vblank before we can disable the plane. */
3325 intel_wait_for_vblank(dev, crtc->pipe);
3326}
3327
4f771f10
PZ
3328static void haswell_crtc_enable(struct drm_crtc *crtc)
3329{
3330 struct drm_device *dev = crtc->dev;
3331 struct drm_i915_private *dev_priv = dev->dev_private;
3332 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3333 struct intel_encoder *encoder;
3334 int pipe = intel_crtc->pipe;
3335 int plane = intel_crtc->plane;
4f771f10
PZ
3336
3337 WARN_ON(!crtc->enabled);
3338
3339 if (intel_crtc->active)
3340 return;
3341
3342 intel_crtc->active = true;
8664281b
PZ
3343
3344 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3345 if (intel_crtc->config.has_pch_encoder)
3346 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
3347
4f771f10
PZ
3348 intel_update_watermarks(dev);
3349
5bfe2ac0 3350 if (intel_crtc->config.has_pch_encoder)
04945641 3351 dev_priv->display.fdi_link_train(crtc);
4f771f10
PZ
3352
3353 for_each_encoder_on_crtc(dev, crtc, encoder)
3354 if (encoder->pre_enable)
3355 encoder->pre_enable(encoder);
3356
1f544388 3357 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 3358
1f544388 3359 /* Enable panel fitting for eDP */
b074cec8 3360 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
3361
3362 /*
3363 * On ILK+ LUT must be loaded before the pipe is running but with
3364 * clocks enabled
3365 */
3366 intel_crtc_load_lut(crtc);
3367
1f544388 3368 intel_ddi_set_pipe_settings(crtc);
8228c251 3369 intel_ddi_enable_transcoder_func(crtc);
4f771f10 3370
5bfe2ac0
DV
3371 intel_enable_pipe(dev_priv, pipe,
3372 intel_crtc->config.has_pch_encoder);
4f771f10 3373 intel_enable_plane(dev_priv, plane, pipe);
bb53d4ae 3374 intel_enable_planes(crtc);
5c38d48c 3375 intel_crtc_update_cursor(crtc, true);
4f771f10 3376
42db64ef
PZ
3377 hsw_enable_ips(intel_crtc);
3378
5bfe2ac0 3379 if (intel_crtc->config.has_pch_encoder)
1507e5bd 3380 lpt_pch_enable(crtc);
4f771f10
PZ
3381
3382 mutex_lock(&dev->struct_mutex);
3383 intel_update_fbc(dev);
3384 mutex_unlock(&dev->struct_mutex);
3385
4f771f10
PZ
3386 for_each_encoder_on_crtc(dev, crtc, encoder)
3387 encoder->enable(encoder);
3388
4f771f10
PZ
3389 /*
3390 * There seems to be a race in PCH platform hw (at least on some
3391 * outputs) where an enabled pipe still completes any pageflip right
3392 * away (as if the pipe is off) instead of waiting for vblank. As soon
3393 * as the first vblank happend, everything works as expected. Hence just
3394 * wait for one vblank before returning to avoid strange things
3395 * happening.
3396 */
3397 intel_wait_for_vblank(dev, intel_crtc->pipe);
3398}
3399
3f8dce3a
DV
3400static void ironlake_pfit_disable(struct intel_crtc *crtc)
3401{
3402 struct drm_device *dev = crtc->base.dev;
3403 struct drm_i915_private *dev_priv = dev->dev_private;
3404 int pipe = crtc->pipe;
3405
3406 /* To avoid upsetting the power well on haswell only disable the pfit if
3407 * it's in use. The hw state code will make sure we get this right. */
3408 if (crtc->config.pch_pfit.size) {
3409 I915_WRITE(PF_CTL(pipe), 0);
3410 I915_WRITE(PF_WIN_POS(pipe), 0);
3411 I915_WRITE(PF_WIN_SZ(pipe), 0);
3412 }
3413}
3414
6be4a607
JB
3415static void ironlake_crtc_disable(struct drm_crtc *crtc)
3416{
3417 struct drm_device *dev = crtc->dev;
3418 struct drm_i915_private *dev_priv = dev->dev_private;
3419 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 3420 struct intel_encoder *encoder;
6be4a607
JB
3421 int pipe = intel_crtc->pipe;
3422 int plane = intel_crtc->plane;
5eddb70b 3423 u32 reg, temp;
b52eb4dc 3424
ef9c3aee 3425
f7abfe8b
CW
3426 if (!intel_crtc->active)
3427 return;
3428
ea9d758d
DV
3429 for_each_encoder_on_crtc(dev, crtc, encoder)
3430 encoder->disable(encoder);
3431
e6c3a2a6 3432 intel_crtc_wait_for_pending_flips(crtc);
6be4a607 3433 drm_vblank_off(dev, pipe);
913d8d11 3434
973d04f9
CW
3435 if (dev_priv->cfb_plane == plane)
3436 intel_disable_fbc(dev);
2c07245f 3437
0d5b8c61 3438 intel_crtc_update_cursor(crtc, false);
bb53d4ae 3439 intel_disable_planes(crtc);
0d5b8c61
VS
3440 intel_disable_plane(dev_priv, plane, pipe);
3441
d925c59a
DV
3442 if (intel_crtc->config.has_pch_encoder)
3443 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
3444
b24e7179 3445 intel_disable_pipe(dev_priv, pipe);
32f9d658 3446
3f8dce3a 3447 ironlake_pfit_disable(intel_crtc);
2c07245f 3448
bf49ec8c
DV
3449 for_each_encoder_on_crtc(dev, crtc, encoder)
3450 if (encoder->post_disable)
3451 encoder->post_disable(encoder);
2c07245f 3452
d925c59a
DV
3453 if (intel_crtc->config.has_pch_encoder) {
3454 ironlake_fdi_disable(crtc);
249c0e64 3455
d925c59a
DV
3456 ironlake_disable_pch_transcoder(dev_priv, pipe);
3457 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
913d8d11 3458
d925c59a
DV
3459 if (HAS_PCH_CPT(dev)) {
3460 /* disable TRANS_DP_CTL */
3461 reg = TRANS_DP_CTL(pipe);
3462 temp = I915_READ(reg);
3463 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
3464 TRANS_DP_PORT_SEL_MASK);
3465 temp |= TRANS_DP_PORT_SEL_NONE;
3466 I915_WRITE(reg, temp);
3467
3468 /* disable DPLL_SEL */
3469 temp = I915_READ(PCH_DPLL_SEL);
11887397 3470 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 3471 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 3472 }
e3421a18 3473
d925c59a 3474 /* disable PCH DPLL */
e72f9fbf 3475 intel_disable_shared_dpll(intel_crtc);
8db9d77b 3476
d925c59a
DV
3477 ironlake_fdi_pll_disable(intel_crtc);
3478 }
6b383a7f 3479
f7abfe8b 3480 intel_crtc->active = false;
6b383a7f 3481 intel_update_watermarks(dev);
d1ebd816
BW
3482
3483 mutex_lock(&dev->struct_mutex);
6b383a7f 3484 intel_update_fbc(dev);
d1ebd816 3485 mutex_unlock(&dev->struct_mutex);
6be4a607 3486}
1b3c7a47 3487
4f771f10 3488static void haswell_crtc_disable(struct drm_crtc *crtc)
ee7b9f93 3489{
4f771f10
PZ
3490 struct drm_device *dev = crtc->dev;
3491 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93 3492 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4f771f10
PZ
3493 struct intel_encoder *encoder;
3494 int pipe = intel_crtc->pipe;
3495 int plane = intel_crtc->plane;
3b117c8f 3496 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
ee7b9f93 3497
4f771f10
PZ
3498 if (!intel_crtc->active)
3499 return;
3500
3501 for_each_encoder_on_crtc(dev, crtc, encoder)
3502 encoder->disable(encoder);
3503
3504 intel_crtc_wait_for_pending_flips(crtc);
3505 drm_vblank_off(dev, pipe);
4f771f10 3506
891348b2 3507 /* FBC must be disabled before disabling the plane on HSW. */
4f771f10
PZ
3508 if (dev_priv->cfb_plane == plane)
3509 intel_disable_fbc(dev);
3510
42db64ef
PZ
3511 hsw_disable_ips(intel_crtc);
3512
0d5b8c61 3513 intel_crtc_update_cursor(crtc, false);
bb53d4ae 3514 intel_disable_planes(crtc);
891348b2
RV
3515 intel_disable_plane(dev_priv, plane, pipe);
3516
8664281b
PZ
3517 if (intel_crtc->config.has_pch_encoder)
3518 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
4f771f10
PZ
3519 intel_disable_pipe(dev_priv, pipe);
3520
ad80a810 3521 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 3522
3f8dce3a 3523 ironlake_pfit_disable(intel_crtc);
4f771f10 3524
1f544388 3525 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10
PZ
3526
3527 for_each_encoder_on_crtc(dev, crtc, encoder)
3528 if (encoder->post_disable)
3529 encoder->post_disable(encoder);
3530
88adfff1 3531 if (intel_crtc->config.has_pch_encoder) {
ab4d966c 3532 lpt_disable_pch_transcoder(dev_priv);
8664281b 3533 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
1ad960f2 3534 intel_ddi_fdi_disable(crtc);
83616634 3535 }
4f771f10
PZ
3536
3537 intel_crtc->active = false;
3538 intel_update_watermarks(dev);
3539
3540 mutex_lock(&dev->struct_mutex);
3541 intel_update_fbc(dev);
3542 mutex_unlock(&dev->struct_mutex);
3543}
3544
ee7b9f93
JB
3545static void ironlake_crtc_off(struct drm_crtc *crtc)
3546{
3547 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
e72f9fbf 3548 intel_put_shared_dpll(intel_crtc);
ee7b9f93
JB
3549}
3550
6441ab5f
PZ
3551static void haswell_crtc_off(struct drm_crtc *crtc)
3552{
3553 intel_ddi_put_crtc_pll(crtc);
3554}
3555
02e792fb
DV
3556static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3557{
02e792fb 3558 if (!enable && intel_crtc->overlay) {
23f09ce3 3559 struct drm_device *dev = intel_crtc->base.dev;
ce453d81 3560 struct drm_i915_private *dev_priv = dev->dev_private;
03f77ea5 3561
23f09ce3 3562 mutex_lock(&dev->struct_mutex);
ce453d81
CW
3563 dev_priv->mm.interruptible = false;
3564 (void) intel_overlay_switch_off(intel_crtc->overlay);
3565 dev_priv->mm.interruptible = true;
23f09ce3 3566 mutex_unlock(&dev->struct_mutex);
02e792fb 3567 }
02e792fb 3568
5dcdbcb0
CW
3569 /* Let userspace switch the overlay on again. In most cases userspace
3570 * has to recompute where to put it anyway.
3571 */
02e792fb
DV
3572}
3573
61bc95c1
EE
3574/**
3575 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3576 * cursor plane briefly if not already running after enabling the display
3577 * plane.
3578 * This workaround avoids occasional blank screens when self refresh is
3579 * enabled.
3580 */
3581static void
3582g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3583{
3584 u32 cntl = I915_READ(CURCNTR(pipe));
3585
3586 if ((cntl & CURSOR_MODE) == 0) {
3587 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3588
3589 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3590 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3591 intel_wait_for_vblank(dev_priv->dev, pipe);
3592 I915_WRITE(CURCNTR(pipe), cntl);
3593 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3594 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3595 }
3596}
3597
2dd24552
JB
3598static void i9xx_pfit_enable(struct intel_crtc *crtc)
3599{
3600 struct drm_device *dev = crtc->base.dev;
3601 struct drm_i915_private *dev_priv = dev->dev_private;
3602 struct intel_crtc_config *pipe_config = &crtc->config;
3603
328d8e82 3604 if (!crtc->config.gmch_pfit.control)
2dd24552
JB
3605 return;
3606
2dd24552 3607 /*
c0b03411
DV
3608 * The panel fitter should only be adjusted whilst the pipe is disabled,
3609 * according to register description and PRM.
2dd24552 3610 */
c0b03411
DV
3611 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
3612 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 3613
b074cec8
JB
3614 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
3615 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
3616
3617 /* Border color in case we don't scale up to the full screen. Black by
3618 * default, change to something else for debugging. */
3619 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
3620}
3621
89b667f8
JB
3622static void valleyview_crtc_enable(struct drm_crtc *crtc)
3623{
3624 struct drm_device *dev = crtc->dev;
3625 struct drm_i915_private *dev_priv = dev->dev_private;
3626 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3627 struct intel_encoder *encoder;
3628 int pipe = intel_crtc->pipe;
3629 int plane = intel_crtc->plane;
3630
3631 WARN_ON(!crtc->enabled);
3632
3633 if (intel_crtc->active)
3634 return;
3635
3636 intel_crtc->active = true;
3637 intel_update_watermarks(dev);
3638
3639 mutex_lock(&dev_priv->dpio_lock);
3640
3641 for_each_encoder_on_crtc(dev, crtc, encoder)
3642 if (encoder->pre_pll_enable)
3643 encoder->pre_pll_enable(encoder);
3644
3645 intel_enable_pll(dev_priv, pipe);
3646
3647 for_each_encoder_on_crtc(dev, crtc, encoder)
3648 if (encoder->pre_enable)
3649 encoder->pre_enable(encoder);
3650
3651 /* VLV wants encoder enabling _before_ the pipe is up. */
3652 for_each_encoder_on_crtc(dev, crtc, encoder)
3653 encoder->enable(encoder);
3654
2dd24552
JB
3655 /* Enable panel fitting for eDP */
3656 i9xx_pfit_enable(intel_crtc);
3657
63cbb074
VS
3658 intel_crtc_load_lut(crtc);
3659
89b667f8
JB
3660 intel_enable_pipe(dev_priv, pipe, false);
3661 intel_enable_plane(dev_priv, plane, pipe);
bb53d4ae 3662 intel_enable_planes(crtc);
5c38d48c 3663 intel_crtc_update_cursor(crtc, true);
89b667f8 3664
f440eb13
VS
3665 intel_update_fbc(dev);
3666
89b667f8
JB
3667 mutex_unlock(&dev_priv->dpio_lock);
3668}
3669
0b8765c6 3670static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
3671{
3672 struct drm_device *dev = crtc->dev;
79e53945
JB
3673 struct drm_i915_private *dev_priv = dev->dev_private;
3674 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 3675 struct intel_encoder *encoder;
79e53945 3676 int pipe = intel_crtc->pipe;
80824003 3677 int plane = intel_crtc->plane;
79e53945 3678
08a48469
DV
3679 WARN_ON(!crtc->enabled);
3680
f7abfe8b
CW
3681 if (intel_crtc->active)
3682 return;
3683
3684 intel_crtc->active = true;
6b383a7f
CW
3685 intel_update_watermarks(dev);
3686
63d7bbe9 3687 intel_enable_pll(dev_priv, pipe);
9d6d9f19
MK
3688
3689 for_each_encoder_on_crtc(dev, crtc, encoder)
3690 if (encoder->pre_enable)
3691 encoder->pre_enable(encoder);
3692
2dd24552
JB
3693 /* Enable panel fitting for LVDS */
3694 i9xx_pfit_enable(intel_crtc);
3695
63cbb074
VS
3696 intel_crtc_load_lut(crtc);
3697
040484af 3698 intel_enable_pipe(dev_priv, pipe, false);
b24e7179 3699 intel_enable_plane(dev_priv, plane, pipe);
bb53d4ae 3700 intel_enable_planes(crtc);
22e407d7 3701 /* The fixup needs to happen before cursor is enabled */
61bc95c1
EE
3702 if (IS_G4X(dev))
3703 g4x_fixup_plane(dev_priv, pipe);
22e407d7 3704 intel_crtc_update_cursor(crtc, true);
79e53945 3705
0b8765c6
JB
3706 /* Give the overlay scaler a chance to enable if it's on this pipe */
3707 intel_crtc_dpms_overlay(intel_crtc, true);
ef9c3aee 3708
f440eb13
VS
3709 intel_update_fbc(dev);
3710
fa5c73b1
DV
3711 for_each_encoder_on_crtc(dev, crtc, encoder)
3712 encoder->enable(encoder);
0b8765c6 3713}
79e53945 3714
87476d63
DV
3715static void i9xx_pfit_disable(struct intel_crtc *crtc)
3716{
3717 struct drm_device *dev = crtc->base.dev;
3718 struct drm_i915_private *dev_priv = dev->dev_private;
87476d63 3719
328d8e82
DV
3720 if (!crtc->config.gmch_pfit.control)
3721 return;
87476d63 3722
328d8e82 3723 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 3724
328d8e82
DV
3725 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
3726 I915_READ(PFIT_CONTROL));
3727 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
3728}
3729
0b8765c6
JB
3730static void i9xx_crtc_disable(struct drm_crtc *crtc)
3731{
3732 struct drm_device *dev = crtc->dev;
3733 struct drm_i915_private *dev_priv = dev->dev_private;
3734 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 3735 struct intel_encoder *encoder;
0b8765c6
JB
3736 int pipe = intel_crtc->pipe;
3737 int plane = intel_crtc->plane;
ef9c3aee 3738
f7abfe8b
CW
3739 if (!intel_crtc->active)
3740 return;
3741
ea9d758d
DV
3742 for_each_encoder_on_crtc(dev, crtc, encoder)
3743 encoder->disable(encoder);
3744
0b8765c6 3745 /* Give the overlay scaler a chance to disable if it's on this pipe */
e6c3a2a6
CW
3746 intel_crtc_wait_for_pending_flips(crtc);
3747 drm_vblank_off(dev, pipe);
0b8765c6 3748
973d04f9
CW
3749 if (dev_priv->cfb_plane == plane)
3750 intel_disable_fbc(dev);
79e53945 3751
0d5b8c61
VS
3752 intel_crtc_dpms_overlay(intel_crtc, false);
3753 intel_crtc_update_cursor(crtc, false);
bb53d4ae 3754 intel_disable_planes(crtc);
b24e7179 3755 intel_disable_plane(dev_priv, plane, pipe);
0d5b8c61 3756
b24e7179 3757 intel_disable_pipe(dev_priv, pipe);
24a1f16d 3758
87476d63 3759 i9xx_pfit_disable(intel_crtc);
24a1f16d 3760
89b667f8
JB
3761 for_each_encoder_on_crtc(dev, crtc, encoder)
3762 if (encoder->post_disable)
3763 encoder->post_disable(encoder);
3764
63d7bbe9 3765 intel_disable_pll(dev_priv, pipe);
0b8765c6 3766
f7abfe8b 3767 intel_crtc->active = false;
6b383a7f
CW
3768 intel_update_fbc(dev);
3769 intel_update_watermarks(dev);
0b8765c6
JB
3770}
3771
ee7b9f93
JB
3772static void i9xx_crtc_off(struct drm_crtc *crtc)
3773{
3774}
3775
976f8a20
DV
3776static void intel_crtc_update_sarea(struct drm_crtc *crtc,
3777 bool enabled)
2c07245f
ZW
3778{
3779 struct drm_device *dev = crtc->dev;
3780 struct drm_i915_master_private *master_priv;
3781 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3782 int pipe = intel_crtc->pipe;
79e53945
JB
3783
3784 if (!dev->primary->master)
3785 return;
3786
3787 master_priv = dev->primary->master->driver_priv;
3788 if (!master_priv->sarea_priv)
3789 return;
3790
79e53945
JB
3791 switch (pipe) {
3792 case 0:
3793 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
3794 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
3795 break;
3796 case 1:
3797 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
3798 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
3799 break;
3800 default:
9db4a9c7 3801 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
79e53945
JB
3802 break;
3803 }
79e53945
JB
3804}
3805
976f8a20
DV
3806/**
3807 * Sets the power management mode of the pipe and plane.
3808 */
3809void intel_crtc_update_dpms(struct drm_crtc *crtc)
3810{
3811 struct drm_device *dev = crtc->dev;
3812 struct drm_i915_private *dev_priv = dev->dev_private;
3813 struct intel_encoder *intel_encoder;
3814 bool enable = false;
3815
3816 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
3817 enable |= intel_encoder->connectors_active;
3818
3819 if (enable)
3820 dev_priv->display.crtc_enable(crtc);
3821 else
3822 dev_priv->display.crtc_disable(crtc);
3823
3824 intel_crtc_update_sarea(crtc, enable);
3825}
3826
cdd59983
CW
3827static void intel_crtc_disable(struct drm_crtc *crtc)
3828{
cdd59983 3829 struct drm_device *dev = crtc->dev;
976f8a20 3830 struct drm_connector *connector;
ee7b9f93 3831 struct drm_i915_private *dev_priv = dev->dev_private;
7b9f35a6 3832 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cdd59983 3833
976f8a20
DV
3834 /* crtc should still be enabled when we disable it. */
3835 WARN_ON(!crtc->enabled);
3836
3837 dev_priv->display.crtc_disable(crtc);
c77bf565 3838 intel_crtc->eld_vld = false;
976f8a20 3839 intel_crtc_update_sarea(crtc, false);
ee7b9f93
JB
3840 dev_priv->display.off(crtc);
3841
931872fc
CW
3842 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
3843 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
cdd59983
CW
3844
3845 if (crtc->fb) {
3846 mutex_lock(&dev->struct_mutex);
1690e1eb 3847 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
cdd59983 3848 mutex_unlock(&dev->struct_mutex);
976f8a20
DV
3849 crtc->fb = NULL;
3850 }
3851
3852 /* Update computed state. */
3853 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3854 if (!connector->encoder || !connector->encoder->crtc)
3855 continue;
3856
3857 if (connector->encoder->crtc != crtc)
3858 continue;
3859
3860 connector->dpms = DRM_MODE_DPMS_OFF;
3861 to_intel_encoder(connector->encoder)->connectors_active = false;
cdd59983
CW
3862 }
3863}
3864
a261b246 3865void intel_modeset_disable(struct drm_device *dev)
79e53945 3866{
a261b246
DV
3867 struct drm_crtc *crtc;
3868
3869 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3870 if (crtc->enabled)
3871 intel_crtc_disable(crtc);
3872 }
79e53945
JB
3873}
3874
ea5b213a 3875void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 3876{
4ef69c7a 3877 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 3878
ea5b213a
CW
3879 drm_encoder_cleanup(encoder);
3880 kfree(intel_encoder);
7e7d76c3
JB
3881}
3882
5ab432ef
DV
3883/* Simple dpms helper for encodres with just one connector, no cloning and only
3884 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
3885 * state of the entire output pipe. */
3886void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
7e7d76c3 3887{
5ab432ef
DV
3888 if (mode == DRM_MODE_DPMS_ON) {
3889 encoder->connectors_active = true;
3890
b2cabb0e 3891 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef
DV
3892 } else {
3893 encoder->connectors_active = false;
3894
b2cabb0e 3895 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef 3896 }
79e53945
JB
3897}
3898
0a91ca29
DV
3899/* Cross check the actual hw state with our own modeset state tracking (and it's
3900 * internal consistency). */
b980514c 3901static void intel_connector_check_state(struct intel_connector *connector)
79e53945 3902{
0a91ca29
DV
3903 if (connector->get_hw_state(connector)) {
3904 struct intel_encoder *encoder = connector->encoder;
3905 struct drm_crtc *crtc;
3906 bool encoder_enabled;
3907 enum pipe pipe;
3908
3909 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
3910 connector->base.base.id,
3911 drm_get_connector_name(&connector->base));
3912
3913 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
3914 "wrong connector dpms state\n");
3915 WARN(connector->base.encoder != &encoder->base,
3916 "active connector not linked to encoder\n");
3917 WARN(!encoder->connectors_active,
3918 "encoder->connectors_active not set\n");
3919
3920 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
3921 WARN(!encoder_enabled, "encoder not enabled\n");
3922 if (WARN_ON(!encoder->base.crtc))
3923 return;
3924
3925 crtc = encoder->base.crtc;
3926
3927 WARN(!crtc->enabled, "crtc not enabled\n");
3928 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
3929 WARN(pipe != to_intel_crtc(crtc)->pipe,
3930 "encoder active on the wrong pipe\n");
3931 }
79e53945
JB
3932}
3933
5ab432ef
DV
3934/* Even simpler default implementation, if there's really no special case to
3935 * consider. */
3936void intel_connector_dpms(struct drm_connector *connector, int mode)
79e53945 3937{
5ab432ef 3938 struct intel_encoder *encoder = intel_attached_encoder(connector);
d4270e57 3939
5ab432ef
DV
3940 /* All the simple cases only support two dpms states. */
3941 if (mode != DRM_MODE_DPMS_ON)
3942 mode = DRM_MODE_DPMS_OFF;
d4270e57 3943
5ab432ef
DV
3944 if (mode == connector->dpms)
3945 return;
3946
3947 connector->dpms = mode;
3948
3949 /* Only need to change hw state when actually enabled */
3950 if (encoder->base.crtc)
3951 intel_encoder_dpms(encoder, mode);
3952 else
8af6cf88 3953 WARN_ON(encoder->connectors_active != false);
0a91ca29 3954
b980514c 3955 intel_modeset_check_state(connector->dev);
79e53945
JB
3956}
3957
f0947c37
DV
3958/* Simple connector->get_hw_state implementation for encoders that support only
3959 * one connector and no cloning and hence the encoder state determines the state
3960 * of the connector. */
3961bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 3962{
24929352 3963 enum pipe pipe = 0;
f0947c37 3964 struct intel_encoder *encoder = connector->encoder;
ea5b213a 3965
f0947c37 3966 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
3967}
3968
1857e1da
DV
3969static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
3970 struct intel_crtc_config *pipe_config)
3971{
3972 struct drm_i915_private *dev_priv = dev->dev_private;
3973 struct intel_crtc *pipe_B_crtc =
3974 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
3975
3976 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
3977 pipe_name(pipe), pipe_config->fdi_lanes);
3978 if (pipe_config->fdi_lanes > 4) {
3979 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
3980 pipe_name(pipe), pipe_config->fdi_lanes);
3981 return false;
3982 }
3983
3984 if (IS_HASWELL(dev)) {
3985 if (pipe_config->fdi_lanes > 2) {
3986 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
3987 pipe_config->fdi_lanes);
3988 return false;
3989 } else {
3990 return true;
3991 }
3992 }
3993
3994 if (INTEL_INFO(dev)->num_pipes == 2)
3995 return true;
3996
3997 /* Ivybridge 3 pipe is really complicated */
3998 switch (pipe) {
3999 case PIPE_A:
4000 return true;
4001 case PIPE_B:
4002 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
4003 pipe_config->fdi_lanes > 2) {
4004 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4005 pipe_name(pipe), pipe_config->fdi_lanes);
4006 return false;
4007 }
4008 return true;
4009 case PIPE_C:
1e833f40 4010 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
1857e1da
DV
4011 pipe_B_crtc->config.fdi_lanes <= 2) {
4012 if (pipe_config->fdi_lanes > 2) {
4013 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4014 pipe_name(pipe), pipe_config->fdi_lanes);
4015 return false;
4016 }
4017 } else {
4018 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
4019 return false;
4020 }
4021 return true;
4022 default:
4023 BUG();
4024 }
4025}
4026
e29c22c0
DV
4027#define RETRY 1
4028static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
4029 struct intel_crtc_config *pipe_config)
877d48d5 4030{
1857e1da 4031 struct drm_device *dev = intel_crtc->base.dev;
877d48d5 4032 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
ff9a6750 4033 int lane, link_bw, fdi_dotclock;
e29c22c0 4034 bool setup_ok, needs_recompute = false;
877d48d5 4035
e29c22c0 4036retry:
877d48d5
DV
4037 /* FDI is a binary signal running at ~2.7GHz, encoding
4038 * each output octet as 10 bits. The actual frequency
4039 * is stored as a divider into a 100MHz clock, and the
4040 * mode pixel clock is stored in units of 1KHz.
4041 * Hence the bw of each lane in terms of the mode signal
4042 * is:
4043 */
4044 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
4045
ff9a6750 4046 fdi_dotclock = adjusted_mode->clock;
ef1b460d 4047 fdi_dotclock /= pipe_config->pixel_multiplier;
2bd89a07
DV
4048
4049 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
4050 pipe_config->pipe_bpp);
4051
4052 pipe_config->fdi_lanes = lane;
4053
2bd89a07 4054 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 4055 link_bw, &pipe_config->fdi_m_n);
1857e1da 4056
e29c22c0
DV
4057 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
4058 intel_crtc->pipe, pipe_config);
4059 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
4060 pipe_config->pipe_bpp -= 2*3;
4061 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
4062 pipe_config->pipe_bpp);
4063 needs_recompute = true;
4064 pipe_config->bw_constrained = true;
4065
4066 goto retry;
4067 }
4068
4069 if (needs_recompute)
4070 return RETRY;
4071
4072 return setup_ok ? 0 : -EINVAL;
877d48d5
DV
4073}
4074
42db64ef
PZ
4075static void hsw_compute_ips_config(struct intel_crtc *crtc,
4076 struct intel_crtc_config *pipe_config)
4077{
3c4ca58c
PZ
4078 pipe_config->ips_enabled = i915_enable_ips &&
4079 hsw_crtc_supports_ips(crtc) &&
42db64ef
PZ
4080 pipe_config->pipe_bpp == 24;
4081}
4082
a43f6e0f 4083static int intel_crtc_compute_config(struct intel_crtc *crtc,
e29c22c0 4084 struct intel_crtc_config *pipe_config)
79e53945 4085{
a43f6e0f 4086 struct drm_device *dev = crtc->base.dev;
b8cecdf5 4087 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
89749350 4088
bad720ff 4089 if (HAS_PCH_SPLIT(dev)) {
2c07245f 4090 /* FDI link clock is fixed at 2.7G */
b8cecdf5
DV
4091 if (pipe_config->requested_mode.clock * 3
4092 > IRONLAKE_FDI_FREQ * 4)
e29c22c0 4093 return -EINVAL;
2c07245f 4094 }
89749350 4095
f9bef081
DV
4096 /* All interlaced capable intel hw wants timings in frames. Note though
4097 * that intel_lvds_mode_fixup does some funny tricks with the crtc
4098 * timings, so we need to be careful not to clobber these.*/
7ae89233 4099 if (!pipe_config->timings_set)
f9bef081 4100 drm_mode_set_crtcinfo(adjusted_mode, 0);
89749350 4101
8693a824
DL
4102 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
4103 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42
CW
4104 */
4105 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
4106 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
e29c22c0 4107 return -EINVAL;
44f46b42 4108
bd080ee5 4109 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
5d2d38dd 4110 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
bd080ee5 4111 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
5d2d38dd
DV
4112 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
4113 * for lvds. */
4114 pipe_config->pipe_bpp = 8*3;
4115 }
4116
42db64ef 4117 if (IS_HASWELL(dev))
a43f6e0f
DV
4118 hsw_compute_ips_config(crtc, pipe_config);
4119
4120 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
4121 * clock survives for now. */
4122 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
4123 pipe_config->shared_dpll = crtc->config.shared_dpll;
42db64ef 4124
877d48d5 4125 if (pipe_config->has_pch_encoder)
a43f6e0f 4126 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 4127
e29c22c0 4128 return 0;
79e53945
JB
4129}
4130
25eb05fc
JB
4131static int valleyview_get_display_clock_speed(struct drm_device *dev)
4132{
4133 return 400000; /* FIXME */
4134}
4135
e70236a8
JB
4136static int i945_get_display_clock_speed(struct drm_device *dev)
4137{
4138 return 400000;
4139}
79e53945 4140
e70236a8 4141static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 4142{
e70236a8
JB
4143 return 333000;
4144}
79e53945 4145
e70236a8
JB
4146static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
4147{
4148 return 200000;
4149}
79e53945 4150
e70236a8
JB
4151static int i915gm_get_display_clock_speed(struct drm_device *dev)
4152{
4153 u16 gcfgc = 0;
79e53945 4154
e70236a8
JB
4155 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
4156
4157 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
4158 return 133000;
4159 else {
4160 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
4161 case GC_DISPLAY_CLOCK_333_MHZ:
4162 return 333000;
4163 default:
4164 case GC_DISPLAY_CLOCK_190_200_MHZ:
4165 return 190000;
79e53945 4166 }
e70236a8
JB
4167 }
4168}
4169
4170static int i865_get_display_clock_speed(struct drm_device *dev)
4171{
4172 return 266000;
4173}
4174
4175static int i855_get_display_clock_speed(struct drm_device *dev)
4176{
4177 u16 hpllcc = 0;
4178 /* Assume that the hardware is in the high speed state. This
4179 * should be the default.
4180 */
4181 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
4182 case GC_CLOCK_133_200:
4183 case GC_CLOCK_100_200:
4184 return 200000;
4185 case GC_CLOCK_166_250:
4186 return 250000;
4187 case GC_CLOCK_100_133:
79e53945 4188 return 133000;
e70236a8 4189 }
79e53945 4190
e70236a8
JB
4191 /* Shouldn't happen */
4192 return 0;
4193}
79e53945 4194
e70236a8
JB
4195static int i830_get_display_clock_speed(struct drm_device *dev)
4196{
4197 return 133000;
79e53945
JB
4198}
4199
2c07245f 4200static void
a65851af 4201intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 4202{
a65851af
VS
4203 while (*num > DATA_LINK_M_N_MASK ||
4204 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
4205 *num >>= 1;
4206 *den >>= 1;
4207 }
4208}
4209
a65851af
VS
4210static void compute_m_n(unsigned int m, unsigned int n,
4211 uint32_t *ret_m, uint32_t *ret_n)
4212{
4213 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
4214 *ret_m = div_u64((uint64_t) m * *ret_n, n);
4215 intel_reduce_m_n_ratio(ret_m, ret_n);
4216}
4217
e69d0bc1
DV
4218void
4219intel_link_compute_m_n(int bits_per_pixel, int nlanes,
4220 int pixel_clock, int link_clock,
4221 struct intel_link_m_n *m_n)
2c07245f 4222{
e69d0bc1 4223 m_n->tu = 64;
a65851af
VS
4224
4225 compute_m_n(bits_per_pixel * pixel_clock,
4226 link_clock * nlanes * 8,
4227 &m_n->gmch_m, &m_n->gmch_n);
4228
4229 compute_m_n(pixel_clock, link_clock,
4230 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
4231}
4232
a7615030
CW
4233static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
4234{
72bbe58c
KP
4235 if (i915_panel_use_ssc >= 0)
4236 return i915_panel_use_ssc != 0;
41aa3448 4237 return dev_priv->vbt.lvds_use_ssc
435793df 4238 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
4239}
4240
a0c4da24
JB
4241static int vlv_get_refclk(struct drm_crtc *crtc)
4242{
4243 struct drm_device *dev = crtc->dev;
4244 struct drm_i915_private *dev_priv = dev->dev_private;
4245 int refclk = 27000; /* for DP & HDMI */
4246
4247 return 100000; /* only one validated so far */
4248
4249 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
4250 refclk = 96000;
4251 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4252 if (intel_panel_use_ssc(dev_priv))
4253 refclk = 100000;
4254 else
4255 refclk = 96000;
4256 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
4257 refclk = 100000;
4258 }
4259
4260 return refclk;
4261}
4262
c65d77d8
JB
4263static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
4264{
4265 struct drm_device *dev = crtc->dev;
4266 struct drm_i915_private *dev_priv = dev->dev_private;
4267 int refclk;
4268
a0c4da24
JB
4269 if (IS_VALLEYVIEW(dev)) {
4270 refclk = vlv_get_refclk(crtc);
4271 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
c65d77d8 4272 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
41aa3448 4273 refclk = dev_priv->vbt.lvds_ssc_freq * 1000;
c65d77d8
JB
4274 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4275 refclk / 1000);
4276 } else if (!IS_GEN2(dev)) {
4277 refclk = 96000;
4278 } else {
4279 refclk = 48000;
4280 }
4281
4282 return refclk;
4283}
4284
7429e9d4
DV
4285static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
4286{
4287 return (1 << dpll->n) << 16 | dpll->m1 << 8 | dpll->m2;
4288}
4289
4290static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
4291{
4292 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
4293}
4294
f47709a9 4295static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
a7516a05
JB
4296 intel_clock_t *reduced_clock)
4297{
f47709a9 4298 struct drm_device *dev = crtc->base.dev;
a7516a05 4299 struct drm_i915_private *dev_priv = dev->dev_private;
f47709a9 4300 int pipe = crtc->pipe;
a7516a05
JB
4301 u32 fp, fp2 = 0;
4302
4303 if (IS_PINEVIEW(dev)) {
7429e9d4 4304 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
a7516a05 4305 if (reduced_clock)
7429e9d4 4306 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 4307 } else {
7429e9d4 4308 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
a7516a05 4309 if (reduced_clock)
7429e9d4 4310 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
4311 }
4312
4313 I915_WRITE(FP0(pipe), fp);
4314
f47709a9
DV
4315 crtc->lowfreq_avail = false;
4316 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
a7516a05
JB
4317 reduced_clock && i915_powersave) {
4318 I915_WRITE(FP1(pipe), fp2);
f47709a9 4319 crtc->lowfreq_avail = true;
a7516a05
JB
4320 } else {
4321 I915_WRITE(FP1(pipe), fp);
4322 }
4323}
4324
89b667f8
JB
4325static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv)
4326{
4327 u32 reg_val;
4328
4329 /*
4330 * PLLB opamp always calibrates to max value of 0x3f, force enable it
4331 * and set it to a reasonable value instead.
4332 */
ae99258f 4333 reg_val = vlv_dpio_read(dev_priv, DPIO_IREF(1));
89b667f8
JB
4334 reg_val &= 0xffffff00;
4335 reg_val |= 0x00000030;
ae99258f 4336 vlv_dpio_write(dev_priv, DPIO_IREF(1), reg_val);
89b667f8 4337
ae99258f 4338 reg_val = vlv_dpio_read(dev_priv, DPIO_CALIBRATION);
89b667f8
JB
4339 reg_val &= 0x8cffffff;
4340 reg_val = 0x8c000000;
ae99258f 4341 vlv_dpio_write(dev_priv, DPIO_CALIBRATION, reg_val);
89b667f8 4342
ae99258f 4343 reg_val = vlv_dpio_read(dev_priv, DPIO_IREF(1));
89b667f8 4344 reg_val &= 0xffffff00;
ae99258f 4345 vlv_dpio_write(dev_priv, DPIO_IREF(1), reg_val);
89b667f8 4346
ae99258f 4347 reg_val = vlv_dpio_read(dev_priv, DPIO_CALIBRATION);
89b667f8
JB
4348 reg_val &= 0x00ffffff;
4349 reg_val |= 0xb0000000;
ae99258f 4350 vlv_dpio_write(dev_priv, DPIO_CALIBRATION, reg_val);
89b667f8
JB
4351}
4352
b551842d
DV
4353static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
4354 struct intel_link_m_n *m_n)
4355{
4356 struct drm_device *dev = crtc->base.dev;
4357 struct drm_i915_private *dev_priv = dev->dev_private;
4358 int pipe = crtc->pipe;
4359
e3b95f1e
DV
4360 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
4361 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
4362 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
4363 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
4364}
4365
4366static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
4367 struct intel_link_m_n *m_n)
4368{
4369 struct drm_device *dev = crtc->base.dev;
4370 struct drm_i915_private *dev_priv = dev->dev_private;
4371 int pipe = crtc->pipe;
4372 enum transcoder transcoder = crtc->config.cpu_transcoder;
4373
4374 if (INTEL_INFO(dev)->gen >= 5) {
4375 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
4376 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
4377 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
4378 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
4379 } else {
e3b95f1e
DV
4380 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
4381 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
4382 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
4383 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
4384 }
4385}
4386
03afc4a2
DV
4387static void intel_dp_set_m_n(struct intel_crtc *crtc)
4388{
4389 if (crtc->config.has_pch_encoder)
4390 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
4391 else
4392 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
4393}
4394
f47709a9 4395static void vlv_update_pll(struct intel_crtc *crtc)
a0c4da24 4396{
f47709a9 4397 struct drm_device *dev = crtc->base.dev;
a0c4da24 4398 struct drm_i915_private *dev_priv = dev->dev_private;
89b667f8 4399 struct intel_encoder *encoder;
f47709a9 4400 int pipe = crtc->pipe;
89b667f8 4401 u32 dpll, mdiv;
a0c4da24 4402 u32 bestn, bestm1, bestm2, bestp1, bestp2;
89b667f8 4403 bool is_hdmi;
198a037f 4404 u32 coreclk, reg_val, dpll_md;
a0c4da24 4405
09153000
DV
4406 mutex_lock(&dev_priv->dpio_lock);
4407
89b667f8 4408 is_hdmi = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
a0c4da24 4409
f47709a9
DV
4410 bestn = crtc->config.dpll.n;
4411 bestm1 = crtc->config.dpll.m1;
4412 bestm2 = crtc->config.dpll.m2;
4413 bestp1 = crtc->config.dpll.p1;
4414 bestp2 = crtc->config.dpll.p2;
a0c4da24 4415
89b667f8
JB
4416 /* See eDP HDMI DPIO driver vbios notes doc */
4417
4418 /* PLL B needs special handling */
4419 if (pipe)
4420 vlv_pllb_recal_opamp(dev_priv);
4421
4422 /* Set up Tx target for periodic Rcomp update */
ae99258f 4423 vlv_dpio_write(dev_priv, DPIO_IREF_BCAST, 0x0100000f);
89b667f8
JB
4424
4425 /* Disable target IRef on PLL */
ae99258f 4426 reg_val = vlv_dpio_read(dev_priv, DPIO_IREF_CTL(pipe));
89b667f8 4427 reg_val &= 0x00ffffff;
ae99258f 4428 vlv_dpio_write(dev_priv, DPIO_IREF_CTL(pipe), reg_val);
89b667f8
JB
4429
4430 /* Disable fast lock */
ae99258f 4431 vlv_dpio_write(dev_priv, DPIO_FASTCLK_DISABLE, 0x610);
89b667f8
JB
4432
4433 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
4434 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
4435 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
4436 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 4437 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
4438
4439 /*
4440 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
4441 * but we don't support that).
4442 * Note: don't use the DAC post divider as it seems unstable.
4443 */
4444 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ae99258f 4445 vlv_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv);
a0c4da24 4446
89b667f8 4447 mdiv |= DPIO_ENABLE_CALIBRATION;
ae99258f 4448 vlv_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv);
a0c4da24 4449
89b667f8 4450 /* Set HBR and RBR LPF coefficients */
ff9a6750 4451 if (crtc->config.port_clock == 162000 ||
89b667f8 4452 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
ae99258f 4453 vlv_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe),
89b667f8
JB
4454 0x005f0021);
4455 else
ae99258f 4456 vlv_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe),
89b667f8
JB
4457 0x00d0000f);
4458
4459 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
4460 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
4461 /* Use SSC source */
4462 if (!pipe)
ae99258f 4463 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
89b667f8
JB
4464 0x0df40000);
4465 else
ae99258f 4466 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
89b667f8
JB
4467 0x0df70000);
4468 } else { /* HDMI or VGA */
4469 /* Use bend source */
4470 if (!pipe)
ae99258f 4471 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
89b667f8
JB
4472 0x0df70000);
4473 else
ae99258f 4474 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
89b667f8
JB
4475 0x0df40000);
4476 }
a0c4da24 4477
ae99258f 4478 coreclk = vlv_dpio_read(dev_priv, DPIO_CORE_CLK(pipe));
89b667f8
JB
4479 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
4480 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
4481 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
4482 coreclk |= 0x01000000;
ae99258f 4483 vlv_dpio_write(dev_priv, DPIO_CORE_CLK(pipe), coreclk);
a0c4da24 4484
ae99258f 4485 vlv_dpio_write(dev_priv, DPIO_PLL_CML(pipe), 0x87871000);
a0c4da24 4486
89b667f8
JB
4487 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
4488 if (encoder->pre_pll_enable)
4489 encoder->pre_pll_enable(encoder);
2a8f64ca 4490
89b667f8
JB
4491 /* Enable DPIO clock input */
4492 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
4493 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
4494 if (pipe)
4495 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
2a8f64ca 4496
89b667f8 4497 dpll |= DPLL_VCO_ENABLE;
2a8f64ca 4498 I915_WRITE(DPLL(pipe), dpll);
2a8f64ca
VP
4499 POSTING_READ(DPLL(pipe));
4500 udelay(150);
a0c4da24 4501
89b667f8
JB
4502 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
4503 DRM_ERROR("DPLL %d failed to lock\n", pipe);
4504
ef1b460d
DV
4505 dpll_md = (crtc->config.pixel_multiplier - 1)
4506 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
198a037f
DV
4507 I915_WRITE(DPLL_MD(pipe), dpll_md);
4508 POSTING_READ(DPLL_MD(pipe));
f47709a9 4509
89b667f8
JB
4510 if (crtc->config.has_dp_encoder)
4511 intel_dp_set_m_n(crtc);
09153000
DV
4512
4513 mutex_unlock(&dev_priv->dpio_lock);
a0c4da24
JB
4514}
4515
f47709a9
DV
4516static void i9xx_update_pll(struct intel_crtc *crtc,
4517 intel_clock_t *reduced_clock,
eb1cbe48
DV
4518 int num_connectors)
4519{
f47709a9 4520 struct drm_device *dev = crtc->base.dev;
eb1cbe48 4521 struct drm_i915_private *dev_priv = dev->dev_private;
dafd226c 4522 struct intel_encoder *encoder;
f47709a9 4523 int pipe = crtc->pipe;
eb1cbe48
DV
4524 u32 dpll;
4525 bool is_sdvo;
f47709a9 4526 struct dpll *clock = &crtc->config.dpll;
eb1cbe48 4527
f47709a9 4528 i9xx_update_pll_dividers(crtc, reduced_clock);
2a8f64ca 4529
f47709a9
DV
4530 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
4531 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
eb1cbe48
DV
4532
4533 dpll = DPLL_VGA_MODE_DIS;
4534
f47709a9 4535 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
4536 dpll |= DPLLB_MODE_LVDS;
4537 else
4538 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 4539
ef1b460d 4540 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
198a037f
DV
4541 dpll |= (crtc->config.pixel_multiplier - 1)
4542 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 4543 }
198a037f
DV
4544
4545 if (is_sdvo)
4546 dpll |= DPLL_DVO_HIGH_SPEED;
4547
f47709a9 4548 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
eb1cbe48
DV
4549 dpll |= DPLL_DVO_HIGH_SPEED;
4550
4551 /* compute bitmask from p1 value */
4552 if (IS_PINEVIEW(dev))
4553 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
4554 else {
4555 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4556 if (IS_G4X(dev) && reduced_clock)
4557 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4558 }
4559 switch (clock->p2) {
4560 case 5:
4561 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4562 break;
4563 case 7:
4564 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4565 break;
4566 case 10:
4567 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4568 break;
4569 case 14:
4570 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4571 break;
4572 }
4573 if (INTEL_INFO(dev)->gen >= 4)
4574 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
4575
09ede541 4576 if (crtc->config.sdvo_tv_clock)
eb1cbe48 4577 dpll |= PLL_REF_INPUT_TVCLKINBC;
f47709a9 4578 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
4579 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4580 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4581 else
4582 dpll |= PLL_REF_INPUT_DREFCLK;
4583
4584 dpll |= DPLL_VCO_ENABLE;
4585 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4586 POSTING_READ(DPLL(pipe));
4587 udelay(150);
4588
f47709a9 4589 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
dafd226c
DV
4590 if (encoder->pre_pll_enable)
4591 encoder->pre_pll_enable(encoder);
eb1cbe48 4592
f47709a9
DV
4593 if (crtc->config.has_dp_encoder)
4594 intel_dp_set_m_n(crtc);
eb1cbe48
DV
4595
4596 I915_WRITE(DPLL(pipe), dpll);
4597
4598 /* Wait for the clocks to stabilize. */
4599 POSTING_READ(DPLL(pipe));
4600 udelay(150);
4601
4602 if (INTEL_INFO(dev)->gen >= 4) {
ef1b460d
DV
4603 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
4604 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
198a037f 4605 I915_WRITE(DPLL_MD(pipe), dpll_md);
eb1cbe48
DV
4606 } else {
4607 /* The pixel multiplier can only be updated once the
4608 * DPLL is enabled and the clocks are stable.
4609 *
4610 * So write it again.
4611 */
4612 I915_WRITE(DPLL(pipe), dpll);
4613 }
4614}
4615
f47709a9 4616static void i8xx_update_pll(struct intel_crtc *crtc,
f47709a9 4617 intel_clock_t *reduced_clock,
eb1cbe48
DV
4618 int num_connectors)
4619{
f47709a9 4620 struct drm_device *dev = crtc->base.dev;
eb1cbe48 4621 struct drm_i915_private *dev_priv = dev->dev_private;
dafd226c 4622 struct intel_encoder *encoder;
f47709a9 4623 int pipe = crtc->pipe;
eb1cbe48 4624 u32 dpll;
f47709a9 4625 struct dpll *clock = &crtc->config.dpll;
eb1cbe48 4626
f47709a9 4627 i9xx_update_pll_dividers(crtc, reduced_clock);
2a8f64ca 4628
eb1cbe48
DV
4629 dpll = DPLL_VGA_MODE_DIS;
4630
f47709a9 4631 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
4632 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4633 } else {
4634 if (clock->p1 == 2)
4635 dpll |= PLL_P1_DIVIDE_BY_TWO;
4636 else
4637 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4638 if (clock->p2 == 4)
4639 dpll |= PLL_P2_DIVIDE_BY_4;
4640 }
4641
f47709a9 4642 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
4643 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4644 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4645 else
4646 dpll |= PLL_REF_INPUT_DREFCLK;
4647
4648 dpll |= DPLL_VCO_ENABLE;
4649 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4650 POSTING_READ(DPLL(pipe));
4651 udelay(150);
4652
f47709a9 4653 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
dafd226c
DV
4654 if (encoder->pre_pll_enable)
4655 encoder->pre_pll_enable(encoder);
eb1cbe48 4656
5b5896e4
DV
4657 I915_WRITE(DPLL(pipe), dpll);
4658
4659 /* Wait for the clocks to stabilize. */
4660 POSTING_READ(DPLL(pipe));
4661 udelay(150);
4662
eb1cbe48
DV
4663 /* The pixel multiplier can only be updated once the
4664 * DPLL is enabled and the clocks are stable.
4665 *
4666 * So write it again.
4667 */
4668 I915_WRITE(DPLL(pipe), dpll);
4669}
4670
8a654f3b 4671static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c
PZ
4672{
4673 struct drm_device *dev = intel_crtc->base.dev;
4674 struct drm_i915_private *dev_priv = dev->dev_private;
4675 enum pipe pipe = intel_crtc->pipe;
3b117c8f 4676 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
8a654f3b
DV
4677 struct drm_display_mode *adjusted_mode =
4678 &intel_crtc->config.adjusted_mode;
4679 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
4d8a62ea
DV
4680 uint32_t vsyncshift, crtc_vtotal, crtc_vblank_end;
4681
4682 /* We need to be careful not to changed the adjusted mode, for otherwise
4683 * the hw state checker will get angry at the mismatch. */
4684 crtc_vtotal = adjusted_mode->crtc_vtotal;
4685 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c
PZ
4686
4687 if (!IS_GEN2(dev) && adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4688 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
4689 crtc_vtotal -= 1;
4690 crtc_vblank_end -= 1;
b0e77b9c
PZ
4691 vsyncshift = adjusted_mode->crtc_hsync_start
4692 - adjusted_mode->crtc_htotal / 2;
4693 } else {
4694 vsyncshift = 0;
4695 }
4696
4697 if (INTEL_INFO(dev)->gen > 3)
fe2b8f9d 4698 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 4699
fe2b8f9d 4700 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
4701 (adjusted_mode->crtc_hdisplay - 1) |
4702 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 4703 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
4704 (adjusted_mode->crtc_hblank_start - 1) |
4705 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 4706 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
4707 (adjusted_mode->crtc_hsync_start - 1) |
4708 ((adjusted_mode->crtc_hsync_end - 1) << 16));
4709
fe2b8f9d 4710 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 4711 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 4712 ((crtc_vtotal - 1) << 16));
fe2b8f9d 4713 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 4714 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 4715 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 4716 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
4717 (adjusted_mode->crtc_vsync_start - 1) |
4718 ((adjusted_mode->crtc_vsync_end - 1) << 16));
4719
b5e508d4
PZ
4720 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
4721 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
4722 * documented on the DDI_FUNC_CTL register description, EDP Input Select
4723 * bits. */
4724 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
4725 (pipe == PIPE_B || pipe == PIPE_C))
4726 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
4727
b0e77b9c
PZ
4728 /* pipesrc controls the size that is scaled from, which should
4729 * always be the user's requested size.
4730 */
4731 I915_WRITE(PIPESRC(pipe),
4732 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
4733}
4734
1bd1bd80
DV
4735static void intel_get_pipe_timings(struct intel_crtc *crtc,
4736 struct intel_crtc_config *pipe_config)
4737{
4738 struct drm_device *dev = crtc->base.dev;
4739 struct drm_i915_private *dev_priv = dev->dev_private;
4740 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
4741 uint32_t tmp;
4742
4743 tmp = I915_READ(HTOTAL(cpu_transcoder));
4744 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
4745 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
4746 tmp = I915_READ(HBLANK(cpu_transcoder));
4747 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
4748 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
4749 tmp = I915_READ(HSYNC(cpu_transcoder));
4750 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
4751 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
4752
4753 tmp = I915_READ(VTOTAL(cpu_transcoder));
4754 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
4755 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
4756 tmp = I915_READ(VBLANK(cpu_transcoder));
4757 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
4758 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
4759 tmp = I915_READ(VSYNC(cpu_transcoder));
4760 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
4761 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
4762
4763 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
4764 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
4765 pipe_config->adjusted_mode.crtc_vtotal += 1;
4766 pipe_config->adjusted_mode.crtc_vblank_end += 1;
4767 }
4768
4769 tmp = I915_READ(PIPESRC(crtc->pipe));
4770 pipe_config->requested_mode.vdisplay = (tmp & 0xffff) + 1;
4771 pipe_config->requested_mode.hdisplay = ((tmp >> 16) & 0xffff) + 1;
4772}
4773
84b046f3
DV
4774static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
4775{
4776 struct drm_device *dev = intel_crtc->base.dev;
4777 struct drm_i915_private *dev_priv = dev->dev_private;
4778 uint32_t pipeconf;
4779
4780 pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
4781
4782 if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
4783 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4784 * core speed.
4785 *
4786 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4787 * pipe == 0 check?
4788 */
4789 if (intel_crtc->config.requested_mode.clock >
4790 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
4791 pipeconf |= PIPECONF_DOUBLE_WIDE;
4792 else
4793 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
4794 }
4795
ff9ce46e
DV
4796 /* only g4x and later have fancy bpc/dither controls */
4797 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
4798 pipeconf &= ~(PIPECONF_BPC_MASK |
4799 PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
4800
4801 /* Bspec claims that we can't use dithering for 30bpp pipes. */
4802 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
4803 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 4804 PIPECONF_DITHER_TYPE_SP;
84b046f3 4805
ff9ce46e
DV
4806 switch (intel_crtc->config.pipe_bpp) {
4807 case 18:
4808 pipeconf |= PIPECONF_6BPC;
4809 break;
4810 case 24:
4811 pipeconf |= PIPECONF_8BPC;
4812 break;
4813 case 30:
4814 pipeconf |= PIPECONF_10BPC;
4815 break;
4816 default:
4817 /* Case prevented by intel_choose_pipe_bpp_dither. */
4818 BUG();
84b046f3
DV
4819 }
4820 }
4821
4822 if (HAS_PIPE_CXSR(dev)) {
4823 if (intel_crtc->lowfreq_avail) {
4824 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4825 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
4826 } else {
4827 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4828 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4829 }
4830 }
4831
4832 pipeconf &= ~PIPECONF_INTERLACE_MASK;
4833 if (!IS_GEN2(dev) &&
4834 intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
4835 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
4836 else
4837 pipeconf |= PIPECONF_PROGRESSIVE;
4838
9c8e09b7
VS
4839 if (IS_VALLEYVIEW(dev)) {
4840 if (intel_crtc->config.limited_color_range)
4841 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
4842 else
4843 pipeconf &= ~PIPECONF_COLOR_RANGE_SELECT;
4844 }
4845
84b046f3
DV
4846 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
4847 POSTING_READ(PIPECONF(intel_crtc->pipe));
4848}
4849
f564048e 4850static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
f564048e 4851 int x, int y,
94352cf9 4852 struct drm_framebuffer *fb)
79e53945
JB
4853{
4854 struct drm_device *dev = crtc->dev;
4855 struct drm_i915_private *dev_priv = dev->dev_private;
4856 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
b8cecdf5 4857 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
79e53945 4858 int pipe = intel_crtc->pipe;
80824003 4859 int plane = intel_crtc->plane;
c751ce4f 4860 int refclk, num_connectors = 0;
652c393a 4861 intel_clock_t clock, reduced_clock;
84b046f3 4862 u32 dspcntr;
a16af721
DV
4863 bool ok, has_reduced_clock = false;
4864 bool is_lvds = false;
5eddb70b 4865 struct intel_encoder *encoder;
d4906093 4866 const intel_limit_t *limit;
5c3b82e2 4867 int ret;
79e53945 4868
6c2b7c12 4869 for_each_encoder_on_crtc(dev, crtc, encoder) {
5eddb70b 4870 switch (encoder->type) {
79e53945
JB
4871 case INTEL_OUTPUT_LVDS:
4872 is_lvds = true;
4873 break;
79e53945 4874 }
43565a06 4875
c751ce4f 4876 num_connectors++;
79e53945
JB
4877 }
4878
c65d77d8 4879 refclk = i9xx_get_refclk(crtc, num_connectors);
79e53945 4880
d4906093
ML
4881 /*
4882 * Returns a set of divisors for the desired target clock with the given
4883 * refclk, or FALSE. The returned values represent the clock equation:
4884 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4885 */
1b894b59 4886 limit = intel_limit(crtc, refclk);
ff9a6750
DV
4887 ok = dev_priv->display.find_dpll(limit, crtc,
4888 intel_crtc->config.port_clock,
ee9300bb
DV
4889 refclk, NULL, &clock);
4890 if (!ok && !intel_crtc->config.clock_set) {
79e53945 4891 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5c3b82e2 4892 return -EINVAL;
79e53945
JB
4893 }
4894
cda4b7d3 4895 /* Ensure that the cursor is valid for the new mode before changing... */
6b383a7f 4896 intel_crtc_update_cursor(crtc, true);
cda4b7d3 4897
ddc9003c 4898 if (is_lvds && dev_priv->lvds_downclock_avail) {
cec2f356
SP
4899 /*
4900 * Ensure we match the reduced clock's P to the target clock.
4901 * If the clocks don't match, we can't switch the display clock
4902 * by using the FP0/FP1. In such case we will disable the LVDS
4903 * downclock feature.
4904 */
ee9300bb
DV
4905 has_reduced_clock =
4906 dev_priv->display.find_dpll(limit, crtc,
5eddb70b 4907 dev_priv->lvds_downclock,
ee9300bb 4908 refclk, &clock,
5eddb70b 4909 &reduced_clock);
7026d4ac 4910 }
f47709a9
DV
4911 /* Compat-code for transition, will disappear. */
4912 if (!intel_crtc->config.clock_set) {
4913 intel_crtc->config.dpll.n = clock.n;
4914 intel_crtc->config.dpll.m1 = clock.m1;
4915 intel_crtc->config.dpll.m2 = clock.m2;
4916 intel_crtc->config.dpll.p1 = clock.p1;
4917 intel_crtc->config.dpll.p2 = clock.p2;
4918 }
7026d4ac 4919
eb1cbe48 4920 if (IS_GEN2(dev))
8a654f3b 4921 i8xx_update_pll(intel_crtc,
2a8f64ca
VP
4922 has_reduced_clock ? &reduced_clock : NULL,
4923 num_connectors);
a0c4da24 4924 else if (IS_VALLEYVIEW(dev))
f47709a9 4925 vlv_update_pll(intel_crtc);
79e53945 4926 else
f47709a9 4927 i9xx_update_pll(intel_crtc,
eb1cbe48 4928 has_reduced_clock ? &reduced_clock : NULL,
89b667f8 4929 num_connectors);
79e53945 4930
79e53945
JB
4931 /* Set up the display plane register */
4932 dspcntr = DISPPLANE_GAMMA_ENABLE;
4933
da6ecc5d
JB
4934 if (!IS_VALLEYVIEW(dev)) {
4935 if (pipe == 0)
4936 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4937 else
4938 dspcntr |= DISPPLANE_SEL_PIPE_B;
4939 }
79e53945 4940
8a654f3b 4941 intel_set_pipe_timings(intel_crtc);
5eddb70b
CW
4942
4943 /* pipesrc and dspsize control the size that is scaled from,
4944 * which should always be the user's requested size.
79e53945 4945 */
929c77fb
EA
4946 I915_WRITE(DSPSIZE(plane),
4947 ((mode->vdisplay - 1) << 16) |
4948 (mode->hdisplay - 1));
4949 I915_WRITE(DSPPOS(plane), 0);
2c07245f 4950
84b046f3
DV
4951 i9xx_set_pipeconf(intel_crtc);
4952
f564048e
EA
4953 I915_WRITE(DSPCNTR(plane), dspcntr);
4954 POSTING_READ(DSPCNTR(plane));
4955
94352cf9 4956 ret = intel_pipe_set_base(crtc, x, y, fb);
f564048e
EA
4957
4958 intel_update_watermarks(dev);
4959
f564048e
EA
4960 return ret;
4961}
4962
2fa2fe9a
DV
4963static void i9xx_get_pfit_config(struct intel_crtc *crtc,
4964 struct intel_crtc_config *pipe_config)
4965{
4966 struct drm_device *dev = crtc->base.dev;
4967 struct drm_i915_private *dev_priv = dev->dev_private;
4968 uint32_t tmp;
4969
4970 tmp = I915_READ(PFIT_CONTROL);
4971
4972 if (INTEL_INFO(dev)->gen < 4) {
4973 if (crtc->pipe != PIPE_B)
4974 return;
4975
4976 /* gen2/3 store dither state in pfit control, needs to match */
4977 pipe_config->gmch_pfit.control = tmp & PANEL_8TO6_DITHER_ENABLE;
4978 } else {
4979 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
4980 return;
4981 }
4982
4983 if (!(tmp & PFIT_ENABLE))
4984 return;
4985
4986 pipe_config->gmch_pfit.control = I915_READ(PFIT_CONTROL);
4987 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
4988 if (INTEL_INFO(dev)->gen < 5)
4989 pipe_config->gmch_pfit.lvds_border_bits =
4990 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
4991}
4992
0e8ffe1b
DV
4993static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
4994 struct intel_crtc_config *pipe_config)
4995{
4996 struct drm_device *dev = crtc->base.dev;
4997 struct drm_i915_private *dev_priv = dev->dev_private;
4998 uint32_t tmp;
4999
eccb140b
DV
5000 pipe_config->cpu_transcoder = crtc->pipe;
5001
0e8ffe1b
DV
5002 tmp = I915_READ(PIPECONF(crtc->pipe));
5003 if (!(tmp & PIPECONF_ENABLE))
5004 return false;
5005
1bd1bd80
DV
5006 intel_get_pipe_timings(crtc, pipe_config);
5007
2fa2fe9a
DV
5008 i9xx_get_pfit_config(crtc, pipe_config);
5009
6c49f241
DV
5010 if (INTEL_INFO(dev)->gen >= 4) {
5011 tmp = I915_READ(DPLL_MD(crtc->pipe));
5012 pipe_config->pixel_multiplier =
5013 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
5014 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
5015 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
5016 tmp = I915_READ(DPLL(crtc->pipe));
5017 pipe_config->pixel_multiplier =
5018 ((tmp & SDVO_MULTIPLIER_MASK)
5019 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
5020 } else {
5021 /* Note that on i915G/GM the pixel multiplier is in the sdvo
5022 * port and will be fixed up in the encoder->get_config
5023 * function. */
5024 pipe_config->pixel_multiplier = 1;
5025 }
5026
0e8ffe1b
DV
5027 return true;
5028}
5029
dde86e2d 5030static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67
JB
5031{
5032 struct drm_i915_private *dev_priv = dev->dev_private;
5033 struct drm_mode_config *mode_config = &dev->mode_config;
13d83a67 5034 struct intel_encoder *encoder;
74cfd7ac 5035 u32 val, final;
13d83a67 5036 bool has_lvds = false;
199e5d79 5037 bool has_cpu_edp = false;
199e5d79 5038 bool has_panel = false;
99eb6a01
KP
5039 bool has_ck505 = false;
5040 bool can_ssc = false;
13d83a67
JB
5041
5042 /* We need to take the global config into account */
199e5d79
KP
5043 list_for_each_entry(encoder, &mode_config->encoder_list,
5044 base.head) {
5045 switch (encoder->type) {
5046 case INTEL_OUTPUT_LVDS:
5047 has_panel = true;
5048 has_lvds = true;
5049 break;
5050 case INTEL_OUTPUT_EDP:
5051 has_panel = true;
2de6905f 5052 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
5053 has_cpu_edp = true;
5054 break;
13d83a67
JB
5055 }
5056 }
5057
99eb6a01 5058 if (HAS_PCH_IBX(dev)) {
41aa3448 5059 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
5060 can_ssc = has_ck505;
5061 } else {
5062 has_ck505 = false;
5063 can_ssc = true;
5064 }
5065
2de6905f
ID
5066 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
5067 has_panel, has_lvds, has_ck505);
13d83a67
JB
5068
5069 /* Ironlake: try to setup display ref clock before DPLL
5070 * enabling. This is only under driver's control after
5071 * PCH B stepping, previous chipset stepping should be
5072 * ignoring this setting.
5073 */
74cfd7ac
CW
5074 val = I915_READ(PCH_DREF_CONTROL);
5075
5076 /* As we must carefully and slowly disable/enable each source in turn,
5077 * compute the final state we want first and check if we need to
5078 * make any changes at all.
5079 */
5080 final = val;
5081 final &= ~DREF_NONSPREAD_SOURCE_MASK;
5082 if (has_ck505)
5083 final |= DREF_NONSPREAD_CK505_ENABLE;
5084 else
5085 final |= DREF_NONSPREAD_SOURCE_ENABLE;
5086
5087 final &= ~DREF_SSC_SOURCE_MASK;
5088 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
5089 final &= ~DREF_SSC1_ENABLE;
5090
5091 if (has_panel) {
5092 final |= DREF_SSC_SOURCE_ENABLE;
5093
5094 if (intel_panel_use_ssc(dev_priv) && can_ssc)
5095 final |= DREF_SSC1_ENABLE;
5096
5097 if (has_cpu_edp) {
5098 if (intel_panel_use_ssc(dev_priv) && can_ssc)
5099 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
5100 else
5101 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
5102 } else
5103 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
5104 } else {
5105 final |= DREF_SSC_SOURCE_DISABLE;
5106 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
5107 }
5108
5109 if (final == val)
5110 return;
5111
13d83a67 5112 /* Always enable nonspread source */
74cfd7ac 5113 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 5114
99eb6a01 5115 if (has_ck505)
74cfd7ac 5116 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 5117 else
74cfd7ac 5118 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 5119
199e5d79 5120 if (has_panel) {
74cfd7ac
CW
5121 val &= ~DREF_SSC_SOURCE_MASK;
5122 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 5123
199e5d79 5124 /* SSC must be turned on before enabling the CPU output */
99eb6a01 5125 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 5126 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 5127 val |= DREF_SSC1_ENABLE;
e77166b5 5128 } else
74cfd7ac 5129 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
5130
5131 /* Get SSC going before enabling the outputs */
74cfd7ac 5132 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
5133 POSTING_READ(PCH_DREF_CONTROL);
5134 udelay(200);
5135
74cfd7ac 5136 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
5137
5138 /* Enable CPU source on CPU attached eDP */
199e5d79 5139 if (has_cpu_edp) {
99eb6a01 5140 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 5141 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 5142 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
199e5d79 5143 }
13d83a67 5144 else
74cfd7ac 5145 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 5146 } else
74cfd7ac 5147 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 5148
74cfd7ac 5149 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
5150 POSTING_READ(PCH_DREF_CONTROL);
5151 udelay(200);
5152 } else {
5153 DRM_DEBUG_KMS("Disabling SSC entirely\n");
5154
74cfd7ac 5155 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
5156
5157 /* Turn off CPU output */
74cfd7ac 5158 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 5159
74cfd7ac 5160 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
5161 POSTING_READ(PCH_DREF_CONTROL);
5162 udelay(200);
5163
5164 /* Turn off the SSC source */
74cfd7ac
CW
5165 val &= ~DREF_SSC_SOURCE_MASK;
5166 val |= DREF_SSC_SOURCE_DISABLE;
199e5d79
KP
5167
5168 /* Turn off SSC1 */
74cfd7ac 5169 val &= ~DREF_SSC1_ENABLE;
199e5d79 5170
74cfd7ac 5171 I915_WRITE(PCH_DREF_CONTROL, val);
13d83a67
JB
5172 POSTING_READ(PCH_DREF_CONTROL);
5173 udelay(200);
5174 }
74cfd7ac
CW
5175
5176 BUG_ON(val != final);
13d83a67
JB
5177}
5178
dde86e2d
PZ
5179/* Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O. */
5180static void lpt_init_pch_refclk(struct drm_device *dev)
5181{
5182 struct drm_i915_private *dev_priv = dev->dev_private;
5183 struct drm_mode_config *mode_config = &dev->mode_config;
5184 struct intel_encoder *encoder;
5185 bool has_vga = false;
5186 bool is_sdv = false;
5187 u32 tmp;
5188
5189 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
5190 switch (encoder->type) {
5191 case INTEL_OUTPUT_ANALOG:
5192 has_vga = true;
5193 break;
5194 }
5195 }
5196
5197 if (!has_vga)
5198 return;
5199
c00db246
DV
5200 mutex_lock(&dev_priv->dpio_lock);
5201
dde86e2d
PZ
5202 /* XXX: Rip out SDV support once Haswell ships for real. */
5203 if (IS_HASWELL(dev) && (dev->pci_device & 0xFF00) == 0x0C00)
5204 is_sdv = true;
5205
5206 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
5207 tmp &= ~SBI_SSCCTL_DISABLE;
5208 tmp |= SBI_SSCCTL_PATHALT;
5209 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
5210
5211 udelay(24);
5212
5213 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
5214 tmp &= ~SBI_SSCCTL_PATHALT;
5215 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
5216
5217 if (!is_sdv) {
5218 tmp = I915_READ(SOUTH_CHICKEN2);
5219 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
5220 I915_WRITE(SOUTH_CHICKEN2, tmp);
5221
5222 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
5223 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
5224 DRM_ERROR("FDI mPHY reset assert timeout\n");
5225
5226 tmp = I915_READ(SOUTH_CHICKEN2);
5227 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
5228 I915_WRITE(SOUTH_CHICKEN2, tmp);
5229
5230 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
5231 FDI_MPHY_IOSFSB_RESET_STATUS) == 0,
5232 100))
5233 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
5234 }
5235
5236 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
5237 tmp &= ~(0xFF << 24);
5238 tmp |= (0x12 << 24);
5239 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
5240
dde86e2d
PZ
5241 if (is_sdv) {
5242 tmp = intel_sbi_read(dev_priv, 0x800C, SBI_MPHY);
5243 tmp |= 0x7FFF;
5244 intel_sbi_write(dev_priv, 0x800C, tmp, SBI_MPHY);
5245 }
5246
5247 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
5248 tmp |= (1 << 11);
5249 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
5250
5251 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
5252 tmp |= (1 << 11);
5253 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
5254
5255 if (is_sdv) {
5256 tmp = intel_sbi_read(dev_priv, 0x2038, SBI_MPHY);
5257 tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16);
5258 intel_sbi_write(dev_priv, 0x2038, tmp, SBI_MPHY);
5259
5260 tmp = intel_sbi_read(dev_priv, 0x2138, SBI_MPHY);
5261 tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16);
5262 intel_sbi_write(dev_priv, 0x2138, tmp, SBI_MPHY);
5263
5264 tmp = intel_sbi_read(dev_priv, 0x203C, SBI_MPHY);
5265 tmp |= (0x3F << 8);
5266 intel_sbi_write(dev_priv, 0x203C, tmp, SBI_MPHY);
5267
5268 tmp = intel_sbi_read(dev_priv, 0x213C, SBI_MPHY);
5269 tmp |= (0x3F << 8);
5270 intel_sbi_write(dev_priv, 0x213C, tmp, SBI_MPHY);
5271 }
5272
5273 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
5274 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
5275 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
5276
5277 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
5278 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
5279 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
5280
5281 if (!is_sdv) {
5282 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
5283 tmp &= ~(7 << 13);
5284 tmp |= (5 << 13);
5285 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
5286
5287 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
5288 tmp &= ~(7 << 13);
5289 tmp |= (5 << 13);
5290 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
5291 }
5292
5293 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
5294 tmp &= ~0xFF;
5295 tmp |= 0x1C;
5296 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
5297
5298 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
5299 tmp &= ~0xFF;
5300 tmp |= 0x1C;
5301 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
5302
5303 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
5304 tmp &= ~(0xFF << 16);
5305 tmp |= (0x1C << 16);
5306 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
5307
5308 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
5309 tmp &= ~(0xFF << 16);
5310 tmp |= (0x1C << 16);
5311 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
5312
5313 if (!is_sdv) {
5314 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
5315 tmp |= (1 << 27);
5316 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
5317
5318 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
5319 tmp |= (1 << 27);
5320 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
5321
5322 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
5323 tmp &= ~(0xF << 28);
5324 tmp |= (4 << 28);
5325 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
5326
5327 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
5328 tmp &= ~(0xF << 28);
5329 tmp |= (4 << 28);
5330 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
5331 }
5332
5333 /* ULT uses SBI_GEN0, but ULT doesn't have VGA, so we don't care. */
5334 tmp = intel_sbi_read(dev_priv, SBI_DBUFF0, SBI_ICLK);
5335 tmp |= SBI_DBUFF0_ENABLE;
5336 intel_sbi_write(dev_priv, SBI_DBUFF0, tmp, SBI_ICLK);
c00db246
DV
5337
5338 mutex_unlock(&dev_priv->dpio_lock);
dde86e2d
PZ
5339}
5340
5341/*
5342 * Initialize reference clocks when the driver loads
5343 */
5344void intel_init_pch_refclk(struct drm_device *dev)
5345{
5346 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5347 ironlake_init_pch_refclk(dev);
5348 else if (HAS_PCH_LPT(dev))
5349 lpt_init_pch_refclk(dev);
5350}
5351
d9d444cb
JB
5352static int ironlake_get_refclk(struct drm_crtc *crtc)
5353{
5354 struct drm_device *dev = crtc->dev;
5355 struct drm_i915_private *dev_priv = dev->dev_private;
5356 struct intel_encoder *encoder;
d9d444cb
JB
5357 int num_connectors = 0;
5358 bool is_lvds = false;
5359
6c2b7c12 5360 for_each_encoder_on_crtc(dev, crtc, encoder) {
d9d444cb
JB
5361 switch (encoder->type) {
5362 case INTEL_OUTPUT_LVDS:
5363 is_lvds = true;
5364 break;
d9d444cb
JB
5365 }
5366 num_connectors++;
5367 }
5368
5369 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
5370 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
41aa3448
RV
5371 dev_priv->vbt.lvds_ssc_freq);
5372 return dev_priv->vbt.lvds_ssc_freq * 1000;
d9d444cb
JB
5373 }
5374
5375 return 120000;
5376}
5377
6ff93609 5378static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 5379{
c8203565 5380 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
79e53945
JB
5381 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5382 int pipe = intel_crtc->pipe;
c8203565
PZ
5383 uint32_t val;
5384
5385 val = I915_READ(PIPECONF(pipe));
5386
dfd07d72 5387 val &= ~PIPECONF_BPC_MASK;
965e0c48 5388 switch (intel_crtc->config.pipe_bpp) {
c8203565 5389 case 18:
dfd07d72 5390 val |= PIPECONF_6BPC;
c8203565
PZ
5391 break;
5392 case 24:
dfd07d72 5393 val |= PIPECONF_8BPC;
c8203565
PZ
5394 break;
5395 case 30:
dfd07d72 5396 val |= PIPECONF_10BPC;
c8203565
PZ
5397 break;
5398 case 36:
dfd07d72 5399 val |= PIPECONF_12BPC;
c8203565
PZ
5400 break;
5401 default:
cc769b62
PZ
5402 /* Case prevented by intel_choose_pipe_bpp_dither. */
5403 BUG();
c8203565
PZ
5404 }
5405
5406 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
d8b32247 5407 if (intel_crtc->config.dither)
c8203565
PZ
5408 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
5409
5410 val &= ~PIPECONF_INTERLACE_MASK;
6ff93609 5411 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
5412 val |= PIPECONF_INTERLACED_ILK;
5413 else
5414 val |= PIPECONF_PROGRESSIVE;
5415
50f3b016 5416 if (intel_crtc->config.limited_color_range)
3685a8f3
VS
5417 val |= PIPECONF_COLOR_RANGE_SELECT;
5418 else
5419 val &= ~PIPECONF_COLOR_RANGE_SELECT;
5420
c8203565
PZ
5421 I915_WRITE(PIPECONF(pipe), val);
5422 POSTING_READ(PIPECONF(pipe));
5423}
5424
86d3efce
VS
5425/*
5426 * Set up the pipe CSC unit.
5427 *
5428 * Currently only full range RGB to limited range RGB conversion
5429 * is supported, but eventually this should handle various
5430 * RGB<->YCbCr scenarios as well.
5431 */
50f3b016 5432static void intel_set_pipe_csc(struct drm_crtc *crtc)
86d3efce
VS
5433{
5434 struct drm_device *dev = crtc->dev;
5435 struct drm_i915_private *dev_priv = dev->dev_private;
5436 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5437 int pipe = intel_crtc->pipe;
5438 uint16_t coeff = 0x7800; /* 1.0 */
5439
5440 /*
5441 * TODO: Check what kind of values actually come out of the pipe
5442 * with these coeff/postoff values and adjust to get the best
5443 * accuracy. Perhaps we even need to take the bpc value into
5444 * consideration.
5445 */
5446
50f3b016 5447 if (intel_crtc->config.limited_color_range)
86d3efce
VS
5448 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
5449
5450 /*
5451 * GY/GU and RY/RU should be the other way around according
5452 * to BSpec, but reality doesn't agree. Just set them up in
5453 * a way that results in the correct picture.
5454 */
5455 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
5456 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
5457
5458 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
5459 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
5460
5461 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
5462 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
5463
5464 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
5465 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
5466 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
5467
5468 if (INTEL_INFO(dev)->gen > 6) {
5469 uint16_t postoff = 0;
5470
50f3b016 5471 if (intel_crtc->config.limited_color_range)
86d3efce
VS
5472 postoff = (16 * (1 << 13) / 255) & 0x1fff;
5473
5474 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
5475 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
5476 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
5477
5478 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
5479 } else {
5480 uint32_t mode = CSC_MODE_YUV_TO_RGB;
5481
50f3b016 5482 if (intel_crtc->config.limited_color_range)
86d3efce
VS
5483 mode |= CSC_BLACK_SCREEN_OFFSET;
5484
5485 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
5486 }
5487}
5488
6ff93609 5489static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38
PZ
5490{
5491 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5492 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3b117c8f 5493 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
ee2b0b38
PZ
5494 uint32_t val;
5495
702e7a56 5496 val = I915_READ(PIPECONF(cpu_transcoder));
ee2b0b38
PZ
5497
5498 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
d8b32247 5499 if (intel_crtc->config.dither)
ee2b0b38
PZ
5500 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
5501
5502 val &= ~PIPECONF_INTERLACE_MASK_HSW;
6ff93609 5503 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
5504 val |= PIPECONF_INTERLACED_ILK;
5505 else
5506 val |= PIPECONF_PROGRESSIVE;
5507
702e7a56
PZ
5508 I915_WRITE(PIPECONF(cpu_transcoder), val);
5509 POSTING_READ(PIPECONF(cpu_transcoder));
ee2b0b38
PZ
5510}
5511
6591c6e4 5512static bool ironlake_compute_clocks(struct drm_crtc *crtc,
6591c6e4
PZ
5513 intel_clock_t *clock,
5514 bool *has_reduced_clock,
5515 intel_clock_t *reduced_clock)
5516{
5517 struct drm_device *dev = crtc->dev;
5518 struct drm_i915_private *dev_priv = dev->dev_private;
5519 struct intel_encoder *intel_encoder;
5520 int refclk;
d4906093 5521 const intel_limit_t *limit;
a16af721 5522 bool ret, is_lvds = false;
79e53945 5523
6591c6e4
PZ
5524 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5525 switch (intel_encoder->type) {
79e53945
JB
5526 case INTEL_OUTPUT_LVDS:
5527 is_lvds = true;
5528 break;
79e53945
JB
5529 }
5530 }
5531
d9d444cb 5532 refclk = ironlake_get_refclk(crtc);
79e53945 5533
d4906093
ML
5534 /*
5535 * Returns a set of divisors for the desired target clock with the given
5536 * refclk, or FALSE. The returned values represent the clock equation:
5537 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
5538 */
1b894b59 5539 limit = intel_limit(crtc, refclk);
ff9a6750
DV
5540 ret = dev_priv->display.find_dpll(limit, crtc,
5541 to_intel_crtc(crtc)->config.port_clock,
ee9300bb 5542 refclk, NULL, clock);
6591c6e4
PZ
5543 if (!ret)
5544 return false;
cda4b7d3 5545
ddc9003c 5546 if (is_lvds && dev_priv->lvds_downclock_avail) {
cec2f356
SP
5547 /*
5548 * Ensure we match the reduced clock's P to the target clock.
5549 * If the clocks don't match, we can't switch the display clock
5550 * by using the FP0/FP1. In such case we will disable the LVDS
5551 * downclock feature.
5552 */
ee9300bb
DV
5553 *has_reduced_clock =
5554 dev_priv->display.find_dpll(limit, crtc,
5555 dev_priv->lvds_downclock,
5556 refclk, clock,
5557 reduced_clock);
652c393a 5558 }
61e9653f 5559
6591c6e4
PZ
5560 return true;
5561}
5562
01a415fd
DV
5563static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
5564{
5565 struct drm_i915_private *dev_priv = dev->dev_private;
5566 uint32_t temp;
5567
5568 temp = I915_READ(SOUTH_CHICKEN1);
5569 if (temp & FDI_BC_BIFURCATION_SELECT)
5570 return;
5571
5572 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
5573 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
5574
5575 temp |= FDI_BC_BIFURCATION_SELECT;
5576 DRM_DEBUG_KMS("enabling fdi C rx\n");
5577 I915_WRITE(SOUTH_CHICKEN1, temp);
5578 POSTING_READ(SOUTH_CHICKEN1);
5579}
5580
ebfd86fd
DV
5581static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
5582{
5583 struct drm_device *dev = intel_crtc->base.dev;
5584 struct drm_i915_private *dev_priv = dev->dev_private;
5585
5586 switch (intel_crtc->pipe) {
5587 case PIPE_A:
5588 break;
5589 case PIPE_B:
5590 if (intel_crtc->config.fdi_lanes > 2)
5591 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
5592 else
5593 cpt_enable_fdi_bc_bifurcation(dev);
5594
5595 break;
5596 case PIPE_C:
01a415fd
DV
5597 cpt_enable_fdi_bc_bifurcation(dev);
5598
ebfd86fd 5599 break;
01a415fd
DV
5600 default:
5601 BUG();
5602 }
5603}
5604
d4b1931c
PZ
5605int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
5606{
5607 /*
5608 * Account for spread spectrum to avoid
5609 * oversubscribing the link. Max center spread
5610 * is 2.5%; use 5% for safety's sake.
5611 */
5612 u32 bps = target_clock * bpp * 21 / 20;
5613 return bps / (link_bw * 8) + 1;
5614}
5615
7429e9d4
DV
5616static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
5617{
5618 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
5619}
5620
de13a2e3 5621static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
7429e9d4 5622 u32 *fp,
9a7c7890 5623 intel_clock_t *reduced_clock, u32 *fp2)
79e53945 5624{
de13a2e3 5625 struct drm_crtc *crtc = &intel_crtc->base;
79e53945
JB
5626 struct drm_device *dev = crtc->dev;
5627 struct drm_i915_private *dev_priv = dev->dev_private;
de13a2e3
PZ
5628 struct intel_encoder *intel_encoder;
5629 uint32_t dpll;
6cc5f341 5630 int factor, num_connectors = 0;
09ede541 5631 bool is_lvds = false, is_sdvo = false;
79e53945 5632
de13a2e3
PZ
5633 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5634 switch (intel_encoder->type) {
79e53945
JB
5635 case INTEL_OUTPUT_LVDS:
5636 is_lvds = true;
5637 break;
5638 case INTEL_OUTPUT_SDVO:
7d57382e 5639 case INTEL_OUTPUT_HDMI:
79e53945
JB
5640 is_sdvo = true;
5641 break;
79e53945 5642 }
43565a06 5643
c751ce4f 5644 num_connectors++;
79e53945 5645 }
79e53945 5646
c1858123 5647 /* Enable autotuning of the PLL clock (if permissible) */
8febb297
EA
5648 factor = 21;
5649 if (is_lvds) {
5650 if ((intel_panel_use_ssc(dev_priv) &&
41aa3448 5651 dev_priv->vbt.lvds_ssc_freq == 100) ||
f0b44056 5652 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
8febb297 5653 factor = 25;
09ede541 5654 } else if (intel_crtc->config.sdvo_tv_clock)
8febb297 5655 factor = 20;
c1858123 5656
7429e9d4 5657 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
7d0ac5b7 5658 *fp |= FP_CB_TUNE;
2c07245f 5659
9a7c7890
DV
5660 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
5661 *fp2 |= FP_CB_TUNE;
5662
5eddb70b 5663 dpll = 0;
2c07245f 5664
a07d6787
EA
5665 if (is_lvds)
5666 dpll |= DPLLB_MODE_LVDS;
5667 else
5668 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 5669
ef1b460d
DV
5670 dpll |= (intel_crtc->config.pixel_multiplier - 1)
5671 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f
DV
5672
5673 if (is_sdvo)
5674 dpll |= DPLL_DVO_HIGH_SPEED;
9566e9af 5675 if (intel_crtc->config.has_dp_encoder)
a07d6787 5676 dpll |= DPLL_DVO_HIGH_SPEED;
79e53945 5677
a07d6787 5678 /* compute bitmask from p1 value */
7429e9d4 5679 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 5680 /* also FPA1 */
7429e9d4 5681 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 5682
7429e9d4 5683 switch (intel_crtc->config.dpll.p2) {
a07d6787
EA
5684 case 5:
5685 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5686 break;
5687 case 7:
5688 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5689 break;
5690 case 10:
5691 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5692 break;
5693 case 14:
5694 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5695 break;
79e53945
JB
5696 }
5697
b4c09f3b 5698 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
43565a06 5699 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
5700 else
5701 dpll |= PLL_REF_INPUT_DREFCLK;
5702
de13a2e3
PZ
5703 return dpll;
5704}
5705
5706static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
de13a2e3
PZ
5707 int x, int y,
5708 struct drm_framebuffer *fb)
5709{
5710 struct drm_device *dev = crtc->dev;
5711 struct drm_i915_private *dev_priv = dev->dev_private;
5712 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5713 int pipe = intel_crtc->pipe;
5714 int plane = intel_crtc->plane;
5715 int num_connectors = 0;
5716 intel_clock_t clock, reduced_clock;
cbbab5bd 5717 u32 dpll = 0, fp = 0, fp2 = 0;
e2f12b07 5718 bool ok, has_reduced_clock = false;
8b47047b 5719 bool is_lvds = false;
de13a2e3 5720 struct intel_encoder *encoder;
e2b78267 5721 struct intel_shared_dpll *pll;
de13a2e3 5722 int ret;
de13a2e3
PZ
5723
5724 for_each_encoder_on_crtc(dev, crtc, encoder) {
5725 switch (encoder->type) {
5726 case INTEL_OUTPUT_LVDS:
5727 is_lvds = true;
5728 break;
de13a2e3
PZ
5729 }
5730
5731 num_connectors++;
a07d6787 5732 }
79e53945 5733
5dc5298b
PZ
5734 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
5735 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
a07d6787 5736
ff9a6750 5737 ok = ironlake_compute_clocks(crtc, &clock,
de13a2e3 5738 &has_reduced_clock, &reduced_clock);
ee9300bb 5739 if (!ok && !intel_crtc->config.clock_set) {
de13a2e3
PZ
5740 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5741 return -EINVAL;
79e53945 5742 }
f47709a9
DV
5743 /* Compat-code for transition, will disappear. */
5744 if (!intel_crtc->config.clock_set) {
5745 intel_crtc->config.dpll.n = clock.n;
5746 intel_crtc->config.dpll.m1 = clock.m1;
5747 intel_crtc->config.dpll.m2 = clock.m2;
5748 intel_crtc->config.dpll.p1 = clock.p1;
5749 intel_crtc->config.dpll.p2 = clock.p2;
5750 }
79e53945 5751
de13a2e3
PZ
5752 /* Ensure that the cursor is valid for the new mode before changing... */
5753 intel_crtc_update_cursor(crtc, true);
5754
5dc5298b 5755 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
8b47047b 5756 if (intel_crtc->config.has_pch_encoder) {
7429e9d4 5757 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
cbbab5bd 5758 if (has_reduced_clock)
7429e9d4 5759 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
cbbab5bd 5760
7429e9d4 5761 dpll = ironlake_compute_dpll(intel_crtc,
cbbab5bd
DV
5762 &fp, &reduced_clock,
5763 has_reduced_clock ? &fp2 : NULL);
5764
e72f9fbf 5765 pll = intel_get_shared_dpll(intel_crtc, dpll, fp);
ee7b9f93 5766 if (pll == NULL) {
84f44ce7
VS
5767 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
5768 pipe_name(pipe));
4b645f14
JB
5769 return -EINVAL;
5770 }
ee7b9f93 5771 } else
e72f9fbf 5772 intel_put_shared_dpll(intel_crtc);
79e53945 5773
03afc4a2
DV
5774 if (intel_crtc->config.has_dp_encoder)
5775 intel_dp_set_m_n(intel_crtc);
79e53945 5776
dafd226c
DV
5777 for_each_encoder_on_crtc(dev, crtc, encoder)
5778 if (encoder->pre_pll_enable)
5779 encoder->pre_pll_enable(encoder);
79e53945 5780
e2b78267
DV
5781 intel_crtc->lowfreq_avail = false;
5782
5783 if (intel_crtc->config.has_pch_encoder) {
5784 pll = intel_crtc_to_shared_dpll(intel_crtc);
5785
5786 I915_WRITE(pll->pll_reg, dpll);
5eddb70b 5787
32f9d658 5788 /* Wait for the clocks to stabilize. */
e2b78267 5789 POSTING_READ(pll->pll_reg);
32f9d658
ZW
5790 udelay(150);
5791
8febb297
EA
5792 /* The pixel multiplier can only be updated once the
5793 * DPLL is enabled and the clocks are stable.
5794 *
5795 * So write it again.
5796 */
e2b78267 5797 I915_WRITE(pll->pll_reg, dpll);
79e53945 5798
4b645f14 5799 if (is_lvds && has_reduced_clock && i915_powersave) {
e2b78267 5800 I915_WRITE(pll->fp1_reg, fp2);
4b645f14 5801 intel_crtc->lowfreq_avail = true;
4b645f14 5802 } else {
e2b78267 5803 I915_WRITE(pll->fp1_reg, fp);
652c393a
JB
5804 }
5805 }
5806
8a654f3b 5807 intel_set_pipe_timings(intel_crtc);
5eddb70b 5808
ca3a0ff8 5809 if (intel_crtc->config.has_pch_encoder) {
ca3a0ff8
DV
5810 intel_cpu_transcoder_set_m_n(intel_crtc,
5811 &intel_crtc->config.fdi_m_n);
5812 }
2c07245f 5813
ebfd86fd
DV
5814 if (IS_IVYBRIDGE(dev))
5815 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
2c07245f 5816
6ff93609 5817 ironlake_set_pipeconf(crtc);
79e53945 5818
a1f9e77e
PZ
5819 /* Set up the display plane register */
5820 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
b24e7179 5821 POSTING_READ(DSPCNTR(plane));
79e53945 5822
94352cf9 5823 ret = intel_pipe_set_base(crtc, x, y, fb);
7662c8bd
SL
5824
5825 intel_update_watermarks(dev);
5826
1857e1da 5827 return ret;
79e53945
JB
5828}
5829
72419203
DV
5830static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
5831 struct intel_crtc_config *pipe_config)
5832{
5833 struct drm_device *dev = crtc->base.dev;
5834 struct drm_i915_private *dev_priv = dev->dev_private;
5835 enum transcoder transcoder = pipe_config->cpu_transcoder;
5836
5837 pipe_config->fdi_m_n.link_m = I915_READ(PIPE_LINK_M1(transcoder));
5838 pipe_config->fdi_m_n.link_n = I915_READ(PIPE_LINK_N1(transcoder));
5839 pipe_config->fdi_m_n.gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
5840 & ~TU_SIZE_MASK;
5841 pipe_config->fdi_m_n.gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
5842 pipe_config->fdi_m_n.tu = ((I915_READ(PIPE_DATA_M1(transcoder))
5843 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
5844}
5845
2fa2fe9a
DV
5846static void ironlake_get_pfit_config(struct intel_crtc *crtc,
5847 struct intel_crtc_config *pipe_config)
5848{
5849 struct drm_device *dev = crtc->base.dev;
5850 struct drm_i915_private *dev_priv = dev->dev_private;
5851 uint32_t tmp;
5852
5853 tmp = I915_READ(PF_CTL(crtc->pipe));
5854
5855 if (tmp & PF_ENABLE) {
5856 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
5857 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
5858
5859 /* We currently do not free assignements of panel fitters on
5860 * ivb/hsw (since we don't use the higher upscaling modes which
5861 * differentiates them) so just WARN about this case for now. */
5862 if (IS_GEN7(dev)) {
5863 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
5864 PF_PIPE_SEL_IVB(crtc->pipe));
5865 }
2fa2fe9a
DV
5866 }
5867}
5868
0e8ffe1b
DV
5869static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
5870 struct intel_crtc_config *pipe_config)
5871{
5872 struct drm_device *dev = crtc->base.dev;
5873 struct drm_i915_private *dev_priv = dev->dev_private;
5874 uint32_t tmp;
5875
eccb140b
DV
5876 pipe_config->cpu_transcoder = crtc->pipe;
5877
0e8ffe1b
DV
5878 tmp = I915_READ(PIPECONF(crtc->pipe));
5879 if (!(tmp & PIPECONF_ENABLE))
5880 return false;
5881
ab9412ba 5882 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
88adfff1
DV
5883 pipe_config->has_pch_encoder = true;
5884
627eb5a3
DV
5885 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
5886 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
5887 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
5888
5889 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241
DV
5890
5891 /* XXX: Can't properly read out the pch dpll pixel multiplier
5892 * since we don't have state tracking for pch clocks yet. */
5893 pipe_config->pixel_multiplier = 1;
5894 } else {
5895 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
5896 }
5897
1bd1bd80
DV
5898 intel_get_pipe_timings(crtc, pipe_config);
5899
2fa2fe9a
DV
5900 ironlake_get_pfit_config(crtc, pipe_config);
5901
0e8ffe1b
DV
5902 return true;
5903}
5904
d6dd9eb1
DV
5905static void haswell_modeset_global_resources(struct drm_device *dev)
5906{
d6dd9eb1
DV
5907 bool enable = false;
5908 struct intel_crtc *crtc;
d6dd9eb1
DV
5909
5910 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
e7a639c4
DV
5911 if (!crtc->base.enabled)
5912 continue;
d6dd9eb1 5913
e7a639c4
DV
5914 if (crtc->pipe != PIPE_A || crtc->config.pch_pfit.size ||
5915 crtc->config.cpu_transcoder != TRANSCODER_EDP)
d6dd9eb1
DV
5916 enable = true;
5917 }
5918
d6dd9eb1
DV
5919 intel_set_power_well(dev, enable);
5920}
5921
09b4ddf9 5922static int haswell_crtc_mode_set(struct drm_crtc *crtc,
09b4ddf9
PZ
5923 int x, int y,
5924 struct drm_framebuffer *fb)
5925{
5926 struct drm_device *dev = crtc->dev;
5927 struct drm_i915_private *dev_priv = dev->dev_private;
5928 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
09b4ddf9 5929 int plane = intel_crtc->plane;
09b4ddf9 5930 int ret;
09b4ddf9 5931
ff9a6750 5932 if (!intel_ddi_pll_mode_set(crtc))
6441ab5f
PZ
5933 return -EINVAL;
5934
09b4ddf9
PZ
5935 /* Ensure that the cursor is valid for the new mode before changing... */
5936 intel_crtc_update_cursor(crtc, true);
5937
03afc4a2
DV
5938 if (intel_crtc->config.has_dp_encoder)
5939 intel_dp_set_m_n(intel_crtc);
09b4ddf9
PZ
5940
5941 intel_crtc->lowfreq_avail = false;
09b4ddf9 5942
8a654f3b 5943 intel_set_pipe_timings(intel_crtc);
09b4ddf9 5944
ca3a0ff8 5945 if (intel_crtc->config.has_pch_encoder) {
ca3a0ff8
DV
5946 intel_cpu_transcoder_set_m_n(intel_crtc,
5947 &intel_crtc->config.fdi_m_n);
5948 }
09b4ddf9 5949
6ff93609 5950 haswell_set_pipeconf(crtc);
09b4ddf9 5951
50f3b016 5952 intel_set_pipe_csc(crtc);
86d3efce 5953
09b4ddf9 5954 /* Set up the display plane register */
86d3efce 5955 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
09b4ddf9
PZ
5956 POSTING_READ(DSPCNTR(plane));
5957
5958 ret = intel_pipe_set_base(crtc, x, y, fb);
5959
5960 intel_update_watermarks(dev);
5961
1f803ee5 5962 return ret;
79e53945
JB
5963}
5964
0e8ffe1b
DV
5965static bool haswell_get_pipe_config(struct intel_crtc *crtc,
5966 struct intel_crtc_config *pipe_config)
5967{
5968 struct drm_device *dev = crtc->base.dev;
5969 struct drm_i915_private *dev_priv = dev->dev_private;
2fa2fe9a 5970 enum intel_display_power_domain pfit_domain;
0e8ffe1b
DV
5971 uint32_t tmp;
5972
eccb140b
DV
5973 pipe_config->cpu_transcoder = crtc->pipe;
5974 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
5975 if (tmp & TRANS_DDI_FUNC_ENABLE) {
5976 enum pipe trans_edp_pipe;
5977 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
5978 default:
5979 WARN(1, "unknown pipe linked to edp transcoder\n");
5980 case TRANS_DDI_EDP_INPUT_A_ONOFF:
5981 case TRANS_DDI_EDP_INPUT_A_ON:
5982 trans_edp_pipe = PIPE_A;
5983 break;
5984 case TRANS_DDI_EDP_INPUT_B_ONOFF:
5985 trans_edp_pipe = PIPE_B;
5986 break;
5987 case TRANS_DDI_EDP_INPUT_C_ONOFF:
5988 trans_edp_pipe = PIPE_C;
5989 break;
5990 }
5991
5992 if (trans_edp_pipe == crtc->pipe)
5993 pipe_config->cpu_transcoder = TRANSCODER_EDP;
5994 }
5995
b97186f0 5996 if (!intel_display_power_enabled(dev,
eccb140b 5997 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
2bfce950
PZ
5998 return false;
5999
eccb140b 6000 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
0e8ffe1b
DV
6001 if (!(tmp & PIPECONF_ENABLE))
6002 return false;
6003
88adfff1 6004 /*
f196e6be 6005 * Haswell has only FDI/PCH transcoder A. It is which is connected to
88adfff1
DV
6006 * DDI E. So just check whether this pipe is wired to DDI E and whether
6007 * the PCH transcoder is on.
6008 */
eccb140b 6009 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
88adfff1 6010 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
ab9412ba 6011 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
88adfff1
DV
6012 pipe_config->has_pch_encoder = true;
6013
627eb5a3
DV
6014 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
6015 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
6016 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
6017
6018 ironlake_get_fdi_m_n_config(crtc, pipe_config);
627eb5a3
DV
6019 }
6020
1bd1bd80
DV
6021 intel_get_pipe_timings(crtc, pipe_config);
6022
2fa2fe9a
DV
6023 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
6024 if (intel_display_power_enabled(dev, pfit_domain))
6025 ironlake_get_pfit_config(crtc, pipe_config);
6026
42db64ef
PZ
6027 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
6028 (I915_READ(IPS_CTL) & IPS_ENABLE);
6029
6c49f241
DV
6030 pipe_config->pixel_multiplier = 1;
6031
0e8ffe1b
DV
6032 return true;
6033}
6034
f564048e 6035static int intel_crtc_mode_set(struct drm_crtc *crtc,
f564048e 6036 int x, int y,
94352cf9 6037 struct drm_framebuffer *fb)
f564048e
EA
6038{
6039 struct drm_device *dev = crtc->dev;
6040 struct drm_i915_private *dev_priv = dev->dev_private;
9256aa19
DV
6041 struct drm_encoder_helper_funcs *encoder_funcs;
6042 struct intel_encoder *encoder;
0b701d27 6043 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
b8cecdf5
DV
6044 struct drm_display_mode *adjusted_mode =
6045 &intel_crtc->config.adjusted_mode;
6046 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
0b701d27 6047 int pipe = intel_crtc->pipe;
f564048e
EA
6048 int ret;
6049
0b701d27 6050 drm_vblank_pre_modeset(dev, pipe);
7662c8bd 6051
b8cecdf5
DV
6052 ret = dev_priv->display.crtc_mode_set(crtc, x, y, fb);
6053
79e53945 6054 drm_vblank_post_modeset(dev, pipe);
5c3b82e2 6055
9256aa19
DV
6056 if (ret != 0)
6057 return ret;
6058
6059 for_each_encoder_on_crtc(dev, crtc, encoder) {
6060 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
6061 encoder->base.base.id,
6062 drm_get_encoder_name(&encoder->base),
6063 mode->base.id, mode->name);
6cc5f341
DV
6064 if (encoder->mode_set) {
6065 encoder->mode_set(encoder);
6066 } else {
6067 encoder_funcs = encoder->base.helper_private;
6068 encoder_funcs->mode_set(&encoder->base, mode, adjusted_mode);
6069 }
9256aa19
DV
6070 }
6071
6072 return 0;
79e53945
JB
6073}
6074
3a9627f4
WF
6075static bool intel_eld_uptodate(struct drm_connector *connector,
6076 int reg_eldv, uint32_t bits_eldv,
6077 int reg_elda, uint32_t bits_elda,
6078 int reg_edid)
6079{
6080 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6081 uint8_t *eld = connector->eld;
6082 uint32_t i;
6083
6084 i = I915_READ(reg_eldv);
6085 i &= bits_eldv;
6086
6087 if (!eld[0])
6088 return !i;
6089
6090 if (!i)
6091 return false;
6092
6093 i = I915_READ(reg_elda);
6094 i &= ~bits_elda;
6095 I915_WRITE(reg_elda, i);
6096
6097 for (i = 0; i < eld[2]; i++)
6098 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
6099 return false;
6100
6101 return true;
6102}
6103
e0dac65e
WF
6104static void g4x_write_eld(struct drm_connector *connector,
6105 struct drm_crtc *crtc)
6106{
6107 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6108 uint8_t *eld = connector->eld;
6109 uint32_t eldv;
6110 uint32_t len;
6111 uint32_t i;
6112
6113 i = I915_READ(G4X_AUD_VID_DID);
6114
6115 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
6116 eldv = G4X_ELDV_DEVCL_DEVBLC;
6117 else
6118 eldv = G4X_ELDV_DEVCTG;
6119
3a9627f4
WF
6120 if (intel_eld_uptodate(connector,
6121 G4X_AUD_CNTL_ST, eldv,
6122 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
6123 G4X_HDMIW_HDMIEDID))
6124 return;
6125
e0dac65e
WF
6126 i = I915_READ(G4X_AUD_CNTL_ST);
6127 i &= ~(eldv | G4X_ELD_ADDR);
6128 len = (i >> 9) & 0x1f; /* ELD buffer size */
6129 I915_WRITE(G4X_AUD_CNTL_ST, i);
6130
6131 if (!eld[0])
6132 return;
6133
6134 len = min_t(uint8_t, eld[2], len);
6135 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6136 for (i = 0; i < len; i++)
6137 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
6138
6139 i = I915_READ(G4X_AUD_CNTL_ST);
6140 i |= eldv;
6141 I915_WRITE(G4X_AUD_CNTL_ST, i);
6142}
6143
83358c85
WX
6144static void haswell_write_eld(struct drm_connector *connector,
6145 struct drm_crtc *crtc)
6146{
6147 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6148 uint8_t *eld = connector->eld;
6149 struct drm_device *dev = crtc->dev;
7b9f35a6 6150 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
83358c85
WX
6151 uint32_t eldv;
6152 uint32_t i;
6153 int len;
6154 int pipe = to_intel_crtc(crtc)->pipe;
6155 int tmp;
6156
6157 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
6158 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
6159 int aud_config = HSW_AUD_CFG(pipe);
6160 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
6161
6162
6163 DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n");
6164
6165 /* Audio output enable */
6166 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
6167 tmp = I915_READ(aud_cntrl_st2);
6168 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
6169 I915_WRITE(aud_cntrl_st2, tmp);
6170
6171 /* Wait for 1 vertical blank */
6172 intel_wait_for_vblank(dev, pipe);
6173
6174 /* Set ELD valid state */
6175 tmp = I915_READ(aud_cntrl_st2);
6176 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%8x\n", tmp);
6177 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
6178 I915_WRITE(aud_cntrl_st2, tmp);
6179 tmp = I915_READ(aud_cntrl_st2);
6180 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%8x\n", tmp);
6181
6182 /* Enable HDMI mode */
6183 tmp = I915_READ(aud_config);
6184 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%8x\n", tmp);
6185 /* clear N_programing_enable and N_value_index */
6186 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
6187 I915_WRITE(aud_config, tmp);
6188
6189 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
6190
6191 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7b9f35a6 6192 intel_crtc->eld_vld = true;
83358c85
WX
6193
6194 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
6195 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
6196 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
6197 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
6198 } else
6199 I915_WRITE(aud_config, 0);
6200
6201 if (intel_eld_uptodate(connector,
6202 aud_cntrl_st2, eldv,
6203 aud_cntl_st, IBX_ELD_ADDRESS,
6204 hdmiw_hdmiedid))
6205 return;
6206
6207 i = I915_READ(aud_cntrl_st2);
6208 i &= ~eldv;
6209 I915_WRITE(aud_cntrl_st2, i);
6210
6211 if (!eld[0])
6212 return;
6213
6214 i = I915_READ(aud_cntl_st);
6215 i &= ~IBX_ELD_ADDRESS;
6216 I915_WRITE(aud_cntl_st, i);
6217 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
6218 DRM_DEBUG_DRIVER("port num:%d\n", i);
6219
6220 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
6221 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6222 for (i = 0; i < len; i++)
6223 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
6224
6225 i = I915_READ(aud_cntrl_st2);
6226 i |= eldv;
6227 I915_WRITE(aud_cntrl_st2, i);
6228
6229}
6230
e0dac65e
WF
6231static void ironlake_write_eld(struct drm_connector *connector,
6232 struct drm_crtc *crtc)
6233{
6234 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6235 uint8_t *eld = connector->eld;
6236 uint32_t eldv;
6237 uint32_t i;
6238 int len;
6239 int hdmiw_hdmiedid;
b6daa025 6240 int aud_config;
e0dac65e
WF
6241 int aud_cntl_st;
6242 int aud_cntrl_st2;
9b138a83 6243 int pipe = to_intel_crtc(crtc)->pipe;
e0dac65e 6244
b3f33cbf 6245 if (HAS_PCH_IBX(connector->dev)) {
9b138a83
WX
6246 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
6247 aud_config = IBX_AUD_CFG(pipe);
6248 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
1202b4c6 6249 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
e0dac65e 6250 } else {
9b138a83
WX
6251 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
6252 aud_config = CPT_AUD_CFG(pipe);
6253 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
1202b4c6 6254 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
e0dac65e
WF
6255 }
6256
9b138a83 6257 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
e0dac65e
WF
6258
6259 i = I915_READ(aud_cntl_st);
9b138a83 6260 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
e0dac65e
WF
6261 if (!i) {
6262 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
6263 /* operate blindly on all ports */
1202b4c6
WF
6264 eldv = IBX_ELD_VALIDB;
6265 eldv |= IBX_ELD_VALIDB << 4;
6266 eldv |= IBX_ELD_VALIDB << 8;
e0dac65e 6267 } else {
2582a850 6268 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
1202b4c6 6269 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
e0dac65e
WF
6270 }
6271
3a9627f4
WF
6272 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
6273 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
6274 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
b6daa025
WF
6275 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
6276 } else
6277 I915_WRITE(aud_config, 0);
e0dac65e 6278
3a9627f4
WF
6279 if (intel_eld_uptodate(connector,
6280 aud_cntrl_st2, eldv,
6281 aud_cntl_st, IBX_ELD_ADDRESS,
6282 hdmiw_hdmiedid))
6283 return;
6284
e0dac65e
WF
6285 i = I915_READ(aud_cntrl_st2);
6286 i &= ~eldv;
6287 I915_WRITE(aud_cntrl_st2, i);
6288
6289 if (!eld[0])
6290 return;
6291
e0dac65e 6292 i = I915_READ(aud_cntl_st);
1202b4c6 6293 i &= ~IBX_ELD_ADDRESS;
e0dac65e
WF
6294 I915_WRITE(aud_cntl_st, i);
6295
6296 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
6297 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6298 for (i = 0; i < len; i++)
6299 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
6300
6301 i = I915_READ(aud_cntrl_st2);
6302 i |= eldv;
6303 I915_WRITE(aud_cntrl_st2, i);
6304}
6305
6306void intel_write_eld(struct drm_encoder *encoder,
6307 struct drm_display_mode *mode)
6308{
6309 struct drm_crtc *crtc = encoder->crtc;
6310 struct drm_connector *connector;
6311 struct drm_device *dev = encoder->dev;
6312 struct drm_i915_private *dev_priv = dev->dev_private;
6313
6314 connector = drm_select_eld(encoder, mode);
6315 if (!connector)
6316 return;
6317
6318 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6319 connector->base.id,
6320 drm_get_connector_name(connector),
6321 connector->encoder->base.id,
6322 drm_get_encoder_name(connector->encoder));
6323
6324 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
6325
6326 if (dev_priv->display.write_eld)
6327 dev_priv->display.write_eld(connector, crtc);
6328}
6329
79e53945
JB
6330/** Loads the palette/gamma unit for the CRTC with the prepared values */
6331void intel_crtc_load_lut(struct drm_crtc *crtc)
6332{
6333 struct drm_device *dev = crtc->dev;
6334 struct drm_i915_private *dev_priv = dev->dev_private;
6335 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
42db64ef
PZ
6336 enum pipe pipe = intel_crtc->pipe;
6337 int palreg = PALETTE(pipe);
79e53945 6338 int i;
42db64ef 6339 bool reenable_ips = false;
79e53945
JB
6340
6341 /* The clocks have to be on to load the palette. */
aed3f09d 6342 if (!crtc->enabled || !intel_crtc->active)
79e53945
JB
6343 return;
6344
14420bd0
VS
6345 if (!HAS_PCH_SPLIT(dev_priv->dev))
6346 assert_pll_enabled(dev_priv, pipe);
6347
f2b115e6 6348 /* use legacy palette for Ironlake */
bad720ff 6349 if (HAS_PCH_SPLIT(dev))
42db64ef
PZ
6350 palreg = LGC_PALETTE(pipe);
6351
6352 /* Workaround : Do not read or write the pipe palette/gamma data while
6353 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
6354 */
6355 if (intel_crtc->config.ips_enabled &&
6356 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
6357 GAMMA_MODE_MODE_SPLIT)) {
6358 hsw_disable_ips(intel_crtc);
6359 reenable_ips = true;
6360 }
2c07245f 6361
79e53945
JB
6362 for (i = 0; i < 256; i++) {
6363 I915_WRITE(palreg + 4 * i,
6364 (intel_crtc->lut_r[i] << 16) |
6365 (intel_crtc->lut_g[i] << 8) |
6366 intel_crtc->lut_b[i]);
6367 }
42db64ef
PZ
6368
6369 if (reenable_ips)
6370 hsw_enable_ips(intel_crtc);
79e53945
JB
6371}
6372
560b85bb
CW
6373static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
6374{
6375 struct drm_device *dev = crtc->dev;
6376 struct drm_i915_private *dev_priv = dev->dev_private;
6377 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6378 bool visible = base != 0;
6379 u32 cntl;
6380
6381 if (intel_crtc->cursor_visible == visible)
6382 return;
6383
9db4a9c7 6384 cntl = I915_READ(_CURACNTR);
560b85bb
CW
6385 if (visible) {
6386 /* On these chipsets we can only modify the base whilst
6387 * the cursor is disabled.
6388 */
9db4a9c7 6389 I915_WRITE(_CURABASE, base);
560b85bb
CW
6390
6391 cntl &= ~(CURSOR_FORMAT_MASK);
6392 /* XXX width must be 64, stride 256 => 0x00 << 28 */
6393 cntl |= CURSOR_ENABLE |
6394 CURSOR_GAMMA_ENABLE |
6395 CURSOR_FORMAT_ARGB;
6396 } else
6397 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
9db4a9c7 6398 I915_WRITE(_CURACNTR, cntl);
560b85bb
CW
6399
6400 intel_crtc->cursor_visible = visible;
6401}
6402
6403static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
6404{
6405 struct drm_device *dev = crtc->dev;
6406 struct drm_i915_private *dev_priv = dev->dev_private;
6407 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6408 int pipe = intel_crtc->pipe;
6409 bool visible = base != 0;
6410
6411 if (intel_crtc->cursor_visible != visible) {
548f245b 6412 uint32_t cntl = I915_READ(CURCNTR(pipe));
560b85bb
CW
6413 if (base) {
6414 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
6415 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
6416 cntl |= pipe << 28; /* Connect to correct pipe */
6417 } else {
6418 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
6419 cntl |= CURSOR_MODE_DISABLE;
6420 }
9db4a9c7 6421 I915_WRITE(CURCNTR(pipe), cntl);
560b85bb
CW
6422
6423 intel_crtc->cursor_visible = visible;
6424 }
6425 /* and commit changes on next vblank */
9db4a9c7 6426 I915_WRITE(CURBASE(pipe), base);
560b85bb
CW
6427}
6428
65a21cd6
JB
6429static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
6430{
6431 struct drm_device *dev = crtc->dev;
6432 struct drm_i915_private *dev_priv = dev->dev_private;
6433 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6434 int pipe = intel_crtc->pipe;
6435 bool visible = base != 0;
6436
6437 if (intel_crtc->cursor_visible != visible) {
6438 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
6439 if (base) {
6440 cntl &= ~CURSOR_MODE;
6441 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
6442 } else {
6443 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
6444 cntl |= CURSOR_MODE_DISABLE;
6445 }
86d3efce
VS
6446 if (IS_HASWELL(dev))
6447 cntl |= CURSOR_PIPE_CSC_ENABLE;
65a21cd6
JB
6448 I915_WRITE(CURCNTR_IVB(pipe), cntl);
6449
6450 intel_crtc->cursor_visible = visible;
6451 }
6452 /* and commit changes on next vblank */
6453 I915_WRITE(CURBASE_IVB(pipe), base);
6454}
6455
cda4b7d3 6456/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f
CW
6457static void intel_crtc_update_cursor(struct drm_crtc *crtc,
6458 bool on)
cda4b7d3
CW
6459{
6460 struct drm_device *dev = crtc->dev;
6461 struct drm_i915_private *dev_priv = dev->dev_private;
6462 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6463 int pipe = intel_crtc->pipe;
6464 int x = intel_crtc->cursor_x;
6465 int y = intel_crtc->cursor_y;
560b85bb 6466 u32 base, pos;
cda4b7d3
CW
6467 bool visible;
6468
6469 pos = 0;
6470
6b383a7f 6471 if (on && crtc->enabled && crtc->fb) {
cda4b7d3
CW
6472 base = intel_crtc->cursor_addr;
6473 if (x > (int) crtc->fb->width)
6474 base = 0;
6475
6476 if (y > (int) crtc->fb->height)
6477 base = 0;
6478 } else
6479 base = 0;
6480
6481 if (x < 0) {
6482 if (x + intel_crtc->cursor_width < 0)
6483 base = 0;
6484
6485 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
6486 x = -x;
6487 }
6488 pos |= x << CURSOR_X_SHIFT;
6489
6490 if (y < 0) {
6491 if (y + intel_crtc->cursor_height < 0)
6492 base = 0;
6493
6494 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
6495 y = -y;
6496 }
6497 pos |= y << CURSOR_Y_SHIFT;
6498
6499 visible = base != 0;
560b85bb 6500 if (!visible && !intel_crtc->cursor_visible)
cda4b7d3
CW
6501 return;
6502
0cd83aa9 6503 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
65a21cd6
JB
6504 I915_WRITE(CURPOS_IVB(pipe), pos);
6505 ivb_update_cursor(crtc, base);
6506 } else {
6507 I915_WRITE(CURPOS(pipe), pos);
6508 if (IS_845G(dev) || IS_I865G(dev))
6509 i845_update_cursor(crtc, base);
6510 else
6511 i9xx_update_cursor(crtc, base);
6512 }
cda4b7d3
CW
6513}
6514
79e53945 6515static int intel_crtc_cursor_set(struct drm_crtc *crtc,
05394f39 6516 struct drm_file *file,
79e53945
JB
6517 uint32_t handle,
6518 uint32_t width, uint32_t height)
6519{
6520 struct drm_device *dev = crtc->dev;
6521 struct drm_i915_private *dev_priv = dev->dev_private;
6522 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
05394f39 6523 struct drm_i915_gem_object *obj;
cda4b7d3 6524 uint32_t addr;
3f8bc370 6525 int ret;
79e53945 6526
79e53945
JB
6527 /* if we want to turn off the cursor ignore width and height */
6528 if (!handle) {
28c97730 6529 DRM_DEBUG_KMS("cursor off\n");
3f8bc370 6530 addr = 0;
05394f39 6531 obj = NULL;
5004417d 6532 mutex_lock(&dev->struct_mutex);
3f8bc370 6533 goto finish;
79e53945
JB
6534 }
6535
6536 /* Currently we only support 64x64 cursors */
6537 if (width != 64 || height != 64) {
6538 DRM_ERROR("we currently only support 64x64 cursors\n");
6539 return -EINVAL;
6540 }
6541
05394f39 6542 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
c8725226 6543 if (&obj->base == NULL)
79e53945
JB
6544 return -ENOENT;
6545
05394f39 6546 if (obj->base.size < width * height * 4) {
79e53945 6547 DRM_ERROR("buffer is to small\n");
34b8686e
DA
6548 ret = -ENOMEM;
6549 goto fail;
79e53945
JB
6550 }
6551
71acb5eb 6552 /* we only need to pin inside GTT if cursor is non-phy */
7f9872e0 6553 mutex_lock(&dev->struct_mutex);
b295d1b6 6554 if (!dev_priv->info->cursor_needs_physical) {
693db184
CW
6555 unsigned alignment;
6556
d9e86c0e
CW
6557 if (obj->tiling_mode) {
6558 DRM_ERROR("cursor cannot be tiled\n");
6559 ret = -EINVAL;
6560 goto fail_locked;
6561 }
6562
693db184
CW
6563 /* Note that the w/a also requires 2 PTE of padding following
6564 * the bo. We currently fill all unused PTE with the shadow
6565 * page and so we should always have valid PTE following the
6566 * cursor preventing the VT-d warning.
6567 */
6568 alignment = 0;
6569 if (need_vtd_wa(dev))
6570 alignment = 64*1024;
6571
6572 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
e7b526bb
CW
6573 if (ret) {
6574 DRM_ERROR("failed to move cursor bo into the GTT\n");
2da3b9b9 6575 goto fail_locked;
e7b526bb
CW
6576 }
6577
d9e86c0e
CW
6578 ret = i915_gem_object_put_fence(obj);
6579 if (ret) {
2da3b9b9 6580 DRM_ERROR("failed to release fence for cursor");
d9e86c0e
CW
6581 goto fail_unpin;
6582 }
6583
05394f39 6584 addr = obj->gtt_offset;
71acb5eb 6585 } else {
6eeefaf3 6586 int align = IS_I830(dev) ? 16 * 1024 : 256;
05394f39 6587 ret = i915_gem_attach_phys_object(dev, obj,
6eeefaf3
CW
6588 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
6589 align);
71acb5eb
DA
6590 if (ret) {
6591 DRM_ERROR("failed to attach phys object\n");
7f9872e0 6592 goto fail_locked;
71acb5eb 6593 }
05394f39 6594 addr = obj->phys_obj->handle->busaddr;
3f8bc370
KH
6595 }
6596
a6c45cf0 6597 if (IS_GEN2(dev))
14b60391
JB
6598 I915_WRITE(CURSIZE, (height << 12) | width);
6599
3f8bc370 6600 finish:
3f8bc370 6601 if (intel_crtc->cursor_bo) {
b295d1b6 6602 if (dev_priv->info->cursor_needs_physical) {
05394f39 6603 if (intel_crtc->cursor_bo != obj)
71acb5eb
DA
6604 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
6605 } else
6606 i915_gem_object_unpin(intel_crtc->cursor_bo);
05394f39 6607 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
3f8bc370 6608 }
80824003 6609
7f9872e0 6610 mutex_unlock(&dev->struct_mutex);
3f8bc370
KH
6611
6612 intel_crtc->cursor_addr = addr;
05394f39 6613 intel_crtc->cursor_bo = obj;
cda4b7d3
CW
6614 intel_crtc->cursor_width = width;
6615 intel_crtc->cursor_height = height;
6616
40ccc72b 6617 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
3f8bc370 6618
79e53945 6619 return 0;
e7b526bb 6620fail_unpin:
05394f39 6621 i915_gem_object_unpin(obj);
7f9872e0 6622fail_locked:
34b8686e 6623 mutex_unlock(&dev->struct_mutex);
bc9025bd 6624fail:
05394f39 6625 drm_gem_object_unreference_unlocked(&obj->base);
34b8686e 6626 return ret;
79e53945
JB
6627}
6628
6629static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
6630{
79e53945 6631 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 6632
cda4b7d3
CW
6633 intel_crtc->cursor_x = x;
6634 intel_crtc->cursor_y = y;
652c393a 6635
40ccc72b 6636 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
79e53945
JB
6637
6638 return 0;
6639}
6640
6641/** Sets the color ramps on behalf of RandR */
6642void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
6643 u16 blue, int regno)
6644{
6645 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6646
6647 intel_crtc->lut_r[regno] = red >> 8;
6648 intel_crtc->lut_g[regno] = green >> 8;
6649 intel_crtc->lut_b[regno] = blue >> 8;
6650}
6651
b8c00ac5
DA
6652void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
6653 u16 *blue, int regno)
6654{
6655 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6656
6657 *red = intel_crtc->lut_r[regno] << 8;
6658 *green = intel_crtc->lut_g[regno] << 8;
6659 *blue = intel_crtc->lut_b[regno] << 8;
6660}
6661
79e53945 6662static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
7203425a 6663 u16 *blue, uint32_t start, uint32_t size)
79e53945 6664{
7203425a 6665 int end = (start + size > 256) ? 256 : start + size, i;
79e53945 6666 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 6667
7203425a 6668 for (i = start; i < end; i++) {
79e53945
JB
6669 intel_crtc->lut_r[i] = red[i] >> 8;
6670 intel_crtc->lut_g[i] = green[i] >> 8;
6671 intel_crtc->lut_b[i] = blue[i] >> 8;
6672 }
6673
6674 intel_crtc_load_lut(crtc);
6675}
6676
79e53945
JB
6677/* VESA 640x480x72Hz mode to set on the pipe */
6678static struct drm_display_mode load_detect_mode = {
6679 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
6680 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
6681};
6682
d2dff872
CW
6683static struct drm_framebuffer *
6684intel_framebuffer_create(struct drm_device *dev,
308e5bcb 6685 struct drm_mode_fb_cmd2 *mode_cmd,
d2dff872
CW
6686 struct drm_i915_gem_object *obj)
6687{
6688 struct intel_framebuffer *intel_fb;
6689 int ret;
6690
6691 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
6692 if (!intel_fb) {
6693 drm_gem_object_unreference_unlocked(&obj->base);
6694 return ERR_PTR(-ENOMEM);
6695 }
6696
6697 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
6698 if (ret) {
6699 drm_gem_object_unreference_unlocked(&obj->base);
6700 kfree(intel_fb);
6701 return ERR_PTR(ret);
6702 }
6703
6704 return &intel_fb->base;
6705}
6706
6707static u32
6708intel_framebuffer_pitch_for_width(int width, int bpp)
6709{
6710 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
6711 return ALIGN(pitch, 64);
6712}
6713
6714static u32
6715intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
6716{
6717 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
6718 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
6719}
6720
6721static struct drm_framebuffer *
6722intel_framebuffer_create_for_mode(struct drm_device *dev,
6723 struct drm_display_mode *mode,
6724 int depth, int bpp)
6725{
6726 struct drm_i915_gem_object *obj;
0fed39bd 6727 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872
CW
6728
6729 obj = i915_gem_alloc_object(dev,
6730 intel_framebuffer_size_for_mode(mode, bpp));
6731 if (obj == NULL)
6732 return ERR_PTR(-ENOMEM);
6733
6734 mode_cmd.width = mode->hdisplay;
6735 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
6736 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
6737 bpp);
5ca0c34a 6738 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872
CW
6739
6740 return intel_framebuffer_create(dev, &mode_cmd, obj);
6741}
6742
6743static struct drm_framebuffer *
6744mode_fits_in_fbdev(struct drm_device *dev,
6745 struct drm_display_mode *mode)
6746{
6747 struct drm_i915_private *dev_priv = dev->dev_private;
6748 struct drm_i915_gem_object *obj;
6749 struct drm_framebuffer *fb;
6750
6751 if (dev_priv->fbdev == NULL)
6752 return NULL;
6753
6754 obj = dev_priv->fbdev->ifb.obj;
6755 if (obj == NULL)
6756 return NULL;
6757
6758 fb = &dev_priv->fbdev->ifb.base;
01f2c773
VS
6759 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
6760 fb->bits_per_pixel))
d2dff872
CW
6761 return NULL;
6762
01f2c773 6763 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
6764 return NULL;
6765
6766 return fb;
6767}
6768
d2434ab7 6769bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 6770 struct drm_display_mode *mode,
8261b191 6771 struct intel_load_detect_pipe *old)
79e53945
JB
6772{
6773 struct intel_crtc *intel_crtc;
d2434ab7
DV
6774 struct intel_encoder *intel_encoder =
6775 intel_attached_encoder(connector);
79e53945 6776 struct drm_crtc *possible_crtc;
4ef69c7a 6777 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
6778 struct drm_crtc *crtc = NULL;
6779 struct drm_device *dev = encoder->dev;
94352cf9 6780 struct drm_framebuffer *fb;
79e53945
JB
6781 int i = -1;
6782
d2dff872
CW
6783 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6784 connector->base.id, drm_get_connector_name(connector),
6785 encoder->base.id, drm_get_encoder_name(encoder));
6786
79e53945
JB
6787 /*
6788 * Algorithm gets a little messy:
7a5e4805 6789 *
79e53945
JB
6790 * - if the connector already has an assigned crtc, use it (but make
6791 * sure it's on first)
7a5e4805 6792 *
79e53945
JB
6793 * - try to find the first unused crtc that can drive this connector,
6794 * and use that if we find one
79e53945
JB
6795 */
6796
6797 /* See if we already have a CRTC for this connector */
6798 if (encoder->crtc) {
6799 crtc = encoder->crtc;
8261b191 6800
7b24056b
DV
6801 mutex_lock(&crtc->mutex);
6802
24218aac 6803 old->dpms_mode = connector->dpms;
8261b191
CW
6804 old->load_detect_temp = false;
6805
6806 /* Make sure the crtc and connector are running */
24218aac
DV
6807 if (connector->dpms != DRM_MODE_DPMS_ON)
6808 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
8261b191 6809
7173188d 6810 return true;
79e53945
JB
6811 }
6812
6813 /* Find an unused one (if possible) */
6814 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
6815 i++;
6816 if (!(encoder->possible_crtcs & (1 << i)))
6817 continue;
6818 if (!possible_crtc->enabled) {
6819 crtc = possible_crtc;
6820 break;
6821 }
79e53945
JB
6822 }
6823
6824 /*
6825 * If we didn't find an unused CRTC, don't use any.
6826 */
6827 if (!crtc) {
7173188d
CW
6828 DRM_DEBUG_KMS("no pipe available for load-detect\n");
6829 return false;
79e53945
JB
6830 }
6831
7b24056b 6832 mutex_lock(&crtc->mutex);
fc303101
DV
6833 intel_encoder->new_crtc = to_intel_crtc(crtc);
6834 to_intel_connector(connector)->new_encoder = intel_encoder;
79e53945
JB
6835
6836 intel_crtc = to_intel_crtc(crtc);
24218aac 6837 old->dpms_mode = connector->dpms;
8261b191 6838 old->load_detect_temp = true;
d2dff872 6839 old->release_fb = NULL;
79e53945 6840
6492711d
CW
6841 if (!mode)
6842 mode = &load_detect_mode;
79e53945 6843
d2dff872
CW
6844 /* We need a framebuffer large enough to accommodate all accesses
6845 * that the plane may generate whilst we perform load detection.
6846 * We can not rely on the fbcon either being present (we get called
6847 * during its initialisation to detect all boot displays, or it may
6848 * not even exist) or that it is large enough to satisfy the
6849 * requested mode.
6850 */
94352cf9
DV
6851 fb = mode_fits_in_fbdev(dev, mode);
6852 if (fb == NULL) {
d2dff872 6853 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9
DV
6854 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
6855 old->release_fb = fb;
d2dff872
CW
6856 } else
6857 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 6858 if (IS_ERR(fb)) {
d2dff872 6859 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
7b24056b 6860 mutex_unlock(&crtc->mutex);
0e8b3d3e 6861 return false;
79e53945 6862 }
79e53945 6863
c0c36b94 6864 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
6492711d 6865 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
d2dff872
CW
6866 if (old->release_fb)
6867 old->release_fb->funcs->destroy(old->release_fb);
7b24056b 6868 mutex_unlock(&crtc->mutex);
0e8b3d3e 6869 return false;
79e53945 6870 }
7173188d 6871
79e53945 6872 /* let the connector get through one full cycle before testing */
9d0498a2 6873 intel_wait_for_vblank(dev, intel_crtc->pipe);
7173188d 6874 return true;
79e53945
JB
6875}
6876
d2434ab7 6877void intel_release_load_detect_pipe(struct drm_connector *connector,
8261b191 6878 struct intel_load_detect_pipe *old)
79e53945 6879{
d2434ab7
DV
6880 struct intel_encoder *intel_encoder =
6881 intel_attached_encoder(connector);
4ef69c7a 6882 struct drm_encoder *encoder = &intel_encoder->base;
7b24056b 6883 struct drm_crtc *crtc = encoder->crtc;
79e53945 6884
d2dff872
CW
6885 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6886 connector->base.id, drm_get_connector_name(connector),
6887 encoder->base.id, drm_get_encoder_name(encoder));
6888
8261b191 6889 if (old->load_detect_temp) {
fc303101
DV
6890 to_intel_connector(connector)->new_encoder = NULL;
6891 intel_encoder->new_crtc = NULL;
6892 intel_set_mode(crtc, NULL, 0, 0, NULL);
d2dff872 6893
36206361
DV
6894 if (old->release_fb) {
6895 drm_framebuffer_unregister_private(old->release_fb);
6896 drm_framebuffer_unreference(old->release_fb);
6897 }
d2dff872 6898
67c96400 6899 mutex_unlock(&crtc->mutex);
0622a53c 6900 return;
79e53945
JB
6901 }
6902
c751ce4f 6903 /* Switch crtc and encoder back off if necessary */
24218aac
DV
6904 if (old->dpms_mode != DRM_MODE_DPMS_ON)
6905 connector->funcs->dpms(connector, old->dpms_mode);
7b24056b
DV
6906
6907 mutex_unlock(&crtc->mutex);
79e53945
JB
6908}
6909
6910/* Returns the clock of the currently programmed mode of the given pipe. */
6911static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
6912{
6913 struct drm_i915_private *dev_priv = dev->dev_private;
6914 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6915 int pipe = intel_crtc->pipe;
548f245b 6916 u32 dpll = I915_READ(DPLL(pipe));
79e53945
JB
6917 u32 fp;
6918 intel_clock_t clock;
6919
6920 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
39adb7a5 6921 fp = I915_READ(FP0(pipe));
79e53945 6922 else
39adb7a5 6923 fp = I915_READ(FP1(pipe));
79e53945
JB
6924
6925 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
6926 if (IS_PINEVIEW(dev)) {
6927 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
6928 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
6929 } else {
6930 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
6931 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
6932 }
6933
a6c45cf0 6934 if (!IS_GEN2(dev)) {
f2b115e6
AJ
6935 if (IS_PINEVIEW(dev))
6936 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
6937 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
6938 else
6939 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
6940 DPLL_FPA01_P1_POST_DIV_SHIFT);
6941
6942 switch (dpll & DPLL_MODE_MASK) {
6943 case DPLLB_MODE_DAC_SERIAL:
6944 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
6945 5 : 10;
6946 break;
6947 case DPLLB_MODE_LVDS:
6948 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
6949 7 : 14;
6950 break;
6951 default:
28c97730 6952 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945
JB
6953 "mode\n", (int)(dpll & DPLL_MODE_MASK));
6954 return 0;
6955 }
6956
ac58c3f0
DV
6957 if (IS_PINEVIEW(dev))
6958 pineview_clock(96000, &clock);
6959 else
6960 i9xx_clock(96000, &clock);
79e53945
JB
6961 } else {
6962 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
6963
6964 if (is_lvds) {
6965 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
6966 DPLL_FPA01_P1_POST_DIV_SHIFT);
6967 clock.p2 = 14;
6968
6969 if ((dpll & PLL_REF_INPUT_MASK) ==
6970 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
6971 /* XXX: might not be 66MHz */
ac58c3f0 6972 i9xx_clock(66000, &clock);
79e53945 6973 } else
ac58c3f0 6974 i9xx_clock(48000, &clock);
79e53945
JB
6975 } else {
6976 if (dpll & PLL_P1_DIVIDE_BY_TWO)
6977 clock.p1 = 2;
6978 else {
6979 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
6980 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
6981 }
6982 if (dpll & PLL_P2_DIVIDE_BY_4)
6983 clock.p2 = 4;
6984 else
6985 clock.p2 = 2;
6986
ac58c3f0 6987 i9xx_clock(48000, &clock);
79e53945
JB
6988 }
6989 }
6990
6991 /* XXX: It would be nice to validate the clocks, but we can't reuse
6992 * i830PllIsValid() because it relies on the xf86_config connector
6993 * configuration being accurate, which it isn't necessarily.
6994 */
6995
6996 return clock.dot;
6997}
6998
6999/** Returns the currently programmed mode of the given pipe. */
7000struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
7001 struct drm_crtc *crtc)
7002{
548f245b 7003 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 7004 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3b117c8f 7005 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
79e53945 7006 struct drm_display_mode *mode;
fe2b8f9d
PZ
7007 int htot = I915_READ(HTOTAL(cpu_transcoder));
7008 int hsync = I915_READ(HSYNC(cpu_transcoder));
7009 int vtot = I915_READ(VTOTAL(cpu_transcoder));
7010 int vsync = I915_READ(VSYNC(cpu_transcoder));
79e53945
JB
7011
7012 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
7013 if (!mode)
7014 return NULL;
7015
7016 mode->clock = intel_crtc_clock_get(dev, crtc);
7017 mode->hdisplay = (htot & 0xffff) + 1;
7018 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
7019 mode->hsync_start = (hsync & 0xffff) + 1;
7020 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
7021 mode->vdisplay = (vtot & 0xffff) + 1;
7022 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
7023 mode->vsync_start = (vsync & 0xffff) + 1;
7024 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
7025
7026 drm_mode_set_name(mode);
79e53945
JB
7027
7028 return mode;
7029}
7030
3dec0095 7031static void intel_increase_pllclock(struct drm_crtc *crtc)
652c393a
JB
7032{
7033 struct drm_device *dev = crtc->dev;
7034 drm_i915_private_t *dev_priv = dev->dev_private;
7035 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7036 int pipe = intel_crtc->pipe;
dbdc6479
JB
7037 int dpll_reg = DPLL(pipe);
7038 int dpll;
652c393a 7039
bad720ff 7040 if (HAS_PCH_SPLIT(dev))
652c393a
JB
7041 return;
7042
7043 if (!dev_priv->lvds_downclock_avail)
7044 return;
7045
dbdc6479 7046 dpll = I915_READ(dpll_reg);
652c393a 7047 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
44d98a61 7048 DRM_DEBUG_DRIVER("upclocking LVDS\n");
652c393a 7049
8ac5a6d5 7050 assert_panel_unlocked(dev_priv, pipe);
652c393a
JB
7051
7052 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
7053 I915_WRITE(dpll_reg, dpll);
9d0498a2 7054 intel_wait_for_vblank(dev, pipe);
dbdc6479 7055
652c393a
JB
7056 dpll = I915_READ(dpll_reg);
7057 if (dpll & DISPLAY_RATE_SELECT_FPA1)
44d98a61 7058 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
652c393a 7059 }
652c393a
JB
7060}
7061
7062static void intel_decrease_pllclock(struct drm_crtc *crtc)
7063{
7064 struct drm_device *dev = crtc->dev;
7065 drm_i915_private_t *dev_priv = dev->dev_private;
7066 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
652c393a 7067
bad720ff 7068 if (HAS_PCH_SPLIT(dev))
652c393a
JB
7069 return;
7070
7071 if (!dev_priv->lvds_downclock_avail)
7072 return;
7073
7074 /*
7075 * Since this is called by a timer, we should never get here in
7076 * the manual case.
7077 */
7078 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
dc257cf1
DV
7079 int pipe = intel_crtc->pipe;
7080 int dpll_reg = DPLL(pipe);
7081 int dpll;
f6e5b160 7082
44d98a61 7083 DRM_DEBUG_DRIVER("downclocking LVDS\n");
652c393a 7084
8ac5a6d5 7085 assert_panel_unlocked(dev_priv, pipe);
652c393a 7086
dc257cf1 7087 dpll = I915_READ(dpll_reg);
652c393a
JB
7088 dpll |= DISPLAY_RATE_SELECT_FPA1;
7089 I915_WRITE(dpll_reg, dpll);
9d0498a2 7090 intel_wait_for_vblank(dev, pipe);
652c393a
JB
7091 dpll = I915_READ(dpll_reg);
7092 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
44d98a61 7093 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
652c393a
JB
7094 }
7095
7096}
7097
f047e395
CW
7098void intel_mark_busy(struct drm_device *dev)
7099{
f047e395
CW
7100 i915_update_gfx_val(dev->dev_private);
7101}
7102
7103void intel_mark_idle(struct drm_device *dev)
652c393a 7104{
652c393a 7105 struct drm_crtc *crtc;
652c393a
JB
7106
7107 if (!i915_powersave)
7108 return;
7109
652c393a 7110 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
652c393a
JB
7111 if (!crtc->fb)
7112 continue;
7113
725a5b54 7114 intel_decrease_pllclock(crtc);
652c393a 7115 }
652c393a
JB
7116}
7117
c65355bb
CW
7118void intel_mark_fb_busy(struct drm_i915_gem_object *obj,
7119 struct intel_ring_buffer *ring)
652c393a 7120{
f047e395
CW
7121 struct drm_device *dev = obj->base.dev;
7122 struct drm_crtc *crtc;
652c393a 7123
f047e395 7124 if (!i915_powersave)
acb87dfb
CW
7125 return;
7126
652c393a
JB
7127 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
7128 if (!crtc->fb)
7129 continue;
7130
c65355bb
CW
7131 if (to_intel_framebuffer(crtc->fb)->obj != obj)
7132 continue;
7133
7134 intel_increase_pllclock(crtc);
7135 if (ring && intel_fbc_enabled(dev))
7136 ring->fbc_dirty = true;
652c393a
JB
7137 }
7138}
7139
79e53945
JB
7140static void intel_crtc_destroy(struct drm_crtc *crtc)
7141{
7142 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a
DV
7143 struct drm_device *dev = crtc->dev;
7144 struct intel_unpin_work *work;
7145 unsigned long flags;
7146
7147 spin_lock_irqsave(&dev->event_lock, flags);
7148 work = intel_crtc->unpin_work;
7149 intel_crtc->unpin_work = NULL;
7150 spin_unlock_irqrestore(&dev->event_lock, flags);
7151
7152 if (work) {
7153 cancel_work_sync(&work->work);
7154 kfree(work);
7155 }
79e53945 7156
40ccc72b
MK
7157 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
7158
79e53945 7159 drm_crtc_cleanup(crtc);
67e77c5a 7160
79e53945
JB
7161 kfree(intel_crtc);
7162}
7163
6b95a207
KH
7164static void intel_unpin_work_fn(struct work_struct *__work)
7165{
7166 struct intel_unpin_work *work =
7167 container_of(__work, struct intel_unpin_work, work);
b4a98e57 7168 struct drm_device *dev = work->crtc->dev;
6b95a207 7169
b4a98e57 7170 mutex_lock(&dev->struct_mutex);
1690e1eb 7171 intel_unpin_fb_obj(work->old_fb_obj);
05394f39
CW
7172 drm_gem_object_unreference(&work->pending_flip_obj->base);
7173 drm_gem_object_unreference(&work->old_fb_obj->base);
d9e86c0e 7174
b4a98e57
CW
7175 intel_update_fbc(dev);
7176 mutex_unlock(&dev->struct_mutex);
7177
7178 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
7179 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
7180
6b95a207
KH
7181 kfree(work);
7182}
7183
1afe3e9d 7184static void do_intel_finish_page_flip(struct drm_device *dev,
49b14a5c 7185 struct drm_crtc *crtc)
6b95a207
KH
7186{
7187 drm_i915_private_t *dev_priv = dev->dev_private;
6b95a207
KH
7188 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7189 struct intel_unpin_work *work;
6b95a207
KH
7190 unsigned long flags;
7191
7192 /* Ignore early vblank irqs */
7193 if (intel_crtc == NULL)
7194 return;
7195
7196 spin_lock_irqsave(&dev->event_lock, flags);
7197 work = intel_crtc->unpin_work;
e7d841ca
CW
7198
7199 /* Ensure we don't miss a work->pending update ... */
7200 smp_rmb();
7201
7202 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
6b95a207
KH
7203 spin_unlock_irqrestore(&dev->event_lock, flags);
7204 return;
7205 }
7206
e7d841ca
CW
7207 /* and that the unpin work is consistent wrt ->pending. */
7208 smp_rmb();
7209
6b95a207 7210 intel_crtc->unpin_work = NULL;
6b95a207 7211
45a066eb
RC
7212 if (work->event)
7213 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
6b95a207 7214
0af7e4df
MK
7215 drm_vblank_put(dev, intel_crtc->pipe);
7216
6b95a207
KH
7217 spin_unlock_irqrestore(&dev->event_lock, flags);
7218
2c10d571 7219 wake_up_all(&dev_priv->pending_flip_queue);
b4a98e57
CW
7220
7221 queue_work(dev_priv->wq, &work->work);
e5510fac
JB
7222
7223 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
6b95a207
KH
7224}
7225
1afe3e9d
JB
7226void intel_finish_page_flip(struct drm_device *dev, int pipe)
7227{
7228 drm_i915_private_t *dev_priv = dev->dev_private;
7229 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
7230
49b14a5c 7231 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
7232}
7233
7234void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
7235{
7236 drm_i915_private_t *dev_priv = dev->dev_private;
7237 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
7238
49b14a5c 7239 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
7240}
7241
6b95a207
KH
7242void intel_prepare_page_flip(struct drm_device *dev, int plane)
7243{
7244 drm_i915_private_t *dev_priv = dev->dev_private;
7245 struct intel_crtc *intel_crtc =
7246 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
7247 unsigned long flags;
7248
e7d841ca
CW
7249 /* NB: An MMIO update of the plane base pointer will also
7250 * generate a page-flip completion irq, i.e. every modeset
7251 * is also accompanied by a spurious intel_prepare_page_flip().
7252 */
6b95a207 7253 spin_lock_irqsave(&dev->event_lock, flags);
e7d841ca
CW
7254 if (intel_crtc->unpin_work)
7255 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
6b95a207
KH
7256 spin_unlock_irqrestore(&dev->event_lock, flags);
7257}
7258
e7d841ca
CW
7259inline static void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
7260{
7261 /* Ensure that the work item is consistent when activating it ... */
7262 smp_wmb();
7263 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
7264 /* and that it is marked active as soon as the irq could fire. */
7265 smp_wmb();
7266}
7267
8c9f3aaf
JB
7268static int intel_gen2_queue_flip(struct drm_device *dev,
7269 struct drm_crtc *crtc,
7270 struct drm_framebuffer *fb,
7271 struct drm_i915_gem_object *obj)
7272{
7273 struct drm_i915_private *dev_priv = dev->dev_private;
7274 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf 7275 u32 flip_mask;
6d90c952 7276 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
8c9f3aaf
JB
7277 int ret;
7278
6d90c952 7279 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
8c9f3aaf 7280 if (ret)
83d4092b 7281 goto err;
8c9f3aaf 7282
6d90c952 7283 ret = intel_ring_begin(ring, 6);
8c9f3aaf 7284 if (ret)
83d4092b 7285 goto err_unpin;
8c9f3aaf
JB
7286
7287 /* Can't queue multiple flips, so wait for the previous
7288 * one to finish before executing the next.
7289 */
7290 if (intel_crtc->plane)
7291 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
7292 else
7293 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
7294 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
7295 intel_ring_emit(ring, MI_NOOP);
7296 intel_ring_emit(ring, MI_DISPLAY_FLIP |
7297 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7298 intel_ring_emit(ring, fb->pitches[0]);
e506a0c6 7299 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
6d90c952 7300 intel_ring_emit(ring, 0); /* aux display base address, unused */
e7d841ca
CW
7301
7302 intel_mark_page_flip_active(intel_crtc);
6d90c952 7303 intel_ring_advance(ring);
83d4092b
CW
7304 return 0;
7305
7306err_unpin:
7307 intel_unpin_fb_obj(obj);
7308err:
8c9f3aaf
JB
7309 return ret;
7310}
7311
7312static int intel_gen3_queue_flip(struct drm_device *dev,
7313 struct drm_crtc *crtc,
7314 struct drm_framebuffer *fb,
7315 struct drm_i915_gem_object *obj)
7316{
7317 struct drm_i915_private *dev_priv = dev->dev_private;
7318 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf 7319 u32 flip_mask;
6d90c952 7320 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
8c9f3aaf
JB
7321 int ret;
7322
6d90c952 7323 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
8c9f3aaf 7324 if (ret)
83d4092b 7325 goto err;
8c9f3aaf 7326
6d90c952 7327 ret = intel_ring_begin(ring, 6);
8c9f3aaf 7328 if (ret)
83d4092b 7329 goto err_unpin;
8c9f3aaf
JB
7330
7331 if (intel_crtc->plane)
7332 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
7333 else
7334 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
7335 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
7336 intel_ring_emit(ring, MI_NOOP);
7337 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
7338 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7339 intel_ring_emit(ring, fb->pitches[0]);
e506a0c6 7340 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
6d90c952
DV
7341 intel_ring_emit(ring, MI_NOOP);
7342
e7d841ca 7343 intel_mark_page_flip_active(intel_crtc);
6d90c952 7344 intel_ring_advance(ring);
83d4092b
CW
7345 return 0;
7346
7347err_unpin:
7348 intel_unpin_fb_obj(obj);
7349err:
8c9f3aaf
JB
7350 return ret;
7351}
7352
7353static int intel_gen4_queue_flip(struct drm_device *dev,
7354 struct drm_crtc *crtc,
7355 struct drm_framebuffer *fb,
7356 struct drm_i915_gem_object *obj)
7357{
7358 struct drm_i915_private *dev_priv = dev->dev_private;
7359 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7360 uint32_t pf, pipesrc;
6d90c952 7361 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
8c9f3aaf
JB
7362 int ret;
7363
6d90c952 7364 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
8c9f3aaf 7365 if (ret)
83d4092b 7366 goto err;
8c9f3aaf 7367
6d90c952 7368 ret = intel_ring_begin(ring, 4);
8c9f3aaf 7369 if (ret)
83d4092b 7370 goto err_unpin;
8c9f3aaf
JB
7371
7372 /* i965+ uses the linear or tiled offsets from the
7373 * Display Registers (which do not change across a page-flip)
7374 * so we need only reprogram the base address.
7375 */
6d90c952
DV
7376 intel_ring_emit(ring, MI_DISPLAY_FLIP |
7377 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7378 intel_ring_emit(ring, fb->pitches[0]);
c2c75131
DV
7379 intel_ring_emit(ring,
7380 (obj->gtt_offset + intel_crtc->dspaddr_offset) |
7381 obj->tiling_mode);
8c9f3aaf
JB
7382
7383 /* XXX Enabling the panel-fitter across page-flip is so far
7384 * untested on non-native modes, so ignore it for now.
7385 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
7386 */
7387 pf = 0;
7388 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 7389 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
7390
7391 intel_mark_page_flip_active(intel_crtc);
6d90c952 7392 intel_ring_advance(ring);
83d4092b
CW
7393 return 0;
7394
7395err_unpin:
7396 intel_unpin_fb_obj(obj);
7397err:
8c9f3aaf
JB
7398 return ret;
7399}
7400
7401static int intel_gen6_queue_flip(struct drm_device *dev,
7402 struct drm_crtc *crtc,
7403 struct drm_framebuffer *fb,
7404 struct drm_i915_gem_object *obj)
7405{
7406 struct drm_i915_private *dev_priv = dev->dev_private;
7407 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6d90c952 7408 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
8c9f3aaf
JB
7409 uint32_t pf, pipesrc;
7410 int ret;
7411
6d90c952 7412 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
8c9f3aaf 7413 if (ret)
83d4092b 7414 goto err;
8c9f3aaf 7415
6d90c952 7416 ret = intel_ring_begin(ring, 4);
8c9f3aaf 7417 if (ret)
83d4092b 7418 goto err_unpin;
8c9f3aaf 7419
6d90c952
DV
7420 intel_ring_emit(ring, MI_DISPLAY_FLIP |
7421 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7422 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
c2c75131 7423 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
8c9f3aaf 7424
dc257cf1
DV
7425 /* Contrary to the suggestions in the documentation,
7426 * "Enable Panel Fitter" does not seem to be required when page
7427 * flipping with a non-native mode, and worse causes a normal
7428 * modeset to fail.
7429 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
7430 */
7431 pf = 0;
8c9f3aaf 7432 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 7433 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
7434
7435 intel_mark_page_flip_active(intel_crtc);
6d90c952 7436 intel_ring_advance(ring);
83d4092b
CW
7437 return 0;
7438
7439err_unpin:
7440 intel_unpin_fb_obj(obj);
7441err:
8c9f3aaf
JB
7442 return ret;
7443}
7444
7c9017e5
JB
7445/*
7446 * On gen7 we currently use the blit ring because (in early silicon at least)
7447 * the render ring doesn't give us interrpts for page flip completion, which
7448 * means clients will hang after the first flip is queued. Fortunately the
7449 * blit ring generates interrupts properly, so use it instead.
7450 */
7451static int intel_gen7_queue_flip(struct drm_device *dev,
7452 struct drm_crtc *crtc,
7453 struct drm_framebuffer *fb,
7454 struct drm_i915_gem_object *obj)
7455{
7456 struct drm_i915_private *dev_priv = dev->dev_private;
7457 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7458 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
cb05d8de 7459 uint32_t plane_bit = 0;
7c9017e5
JB
7460 int ret;
7461
7462 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
7463 if (ret)
83d4092b 7464 goto err;
7c9017e5 7465
cb05d8de
DV
7466 switch(intel_crtc->plane) {
7467 case PLANE_A:
7468 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
7469 break;
7470 case PLANE_B:
7471 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
7472 break;
7473 case PLANE_C:
7474 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
7475 break;
7476 default:
7477 WARN_ONCE(1, "unknown plane in flip command\n");
7478 ret = -ENODEV;
ab3951eb 7479 goto err_unpin;
cb05d8de
DV
7480 }
7481
7c9017e5
JB
7482 ret = intel_ring_begin(ring, 4);
7483 if (ret)
83d4092b 7484 goto err_unpin;
7c9017e5 7485
cb05d8de 7486 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
01f2c773 7487 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
c2c75131 7488 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
7c9017e5 7489 intel_ring_emit(ring, (MI_NOOP));
e7d841ca
CW
7490
7491 intel_mark_page_flip_active(intel_crtc);
7c9017e5 7492 intel_ring_advance(ring);
83d4092b
CW
7493 return 0;
7494
7495err_unpin:
7496 intel_unpin_fb_obj(obj);
7497err:
7c9017e5
JB
7498 return ret;
7499}
7500
8c9f3aaf
JB
7501static int intel_default_queue_flip(struct drm_device *dev,
7502 struct drm_crtc *crtc,
7503 struct drm_framebuffer *fb,
7504 struct drm_i915_gem_object *obj)
7505{
7506 return -ENODEV;
7507}
7508
6b95a207
KH
7509static int intel_crtc_page_flip(struct drm_crtc *crtc,
7510 struct drm_framebuffer *fb,
7511 struct drm_pending_vblank_event *event)
7512{
7513 struct drm_device *dev = crtc->dev;
7514 struct drm_i915_private *dev_priv = dev->dev_private;
4a35f83b
VS
7515 struct drm_framebuffer *old_fb = crtc->fb;
7516 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
6b95a207
KH
7517 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7518 struct intel_unpin_work *work;
8c9f3aaf 7519 unsigned long flags;
52e68630 7520 int ret;
6b95a207 7521
e6a595d2
VS
7522 /* Can't change pixel format via MI display flips. */
7523 if (fb->pixel_format != crtc->fb->pixel_format)
7524 return -EINVAL;
7525
7526 /*
7527 * TILEOFF/LINOFF registers can't be changed via MI display flips.
7528 * Note that pitch changes could also affect these register.
7529 */
7530 if (INTEL_INFO(dev)->gen > 3 &&
7531 (fb->offsets[0] != crtc->fb->offsets[0] ||
7532 fb->pitches[0] != crtc->fb->pitches[0]))
7533 return -EINVAL;
7534
6b95a207
KH
7535 work = kzalloc(sizeof *work, GFP_KERNEL);
7536 if (work == NULL)
7537 return -ENOMEM;
7538
6b95a207 7539 work->event = event;
b4a98e57 7540 work->crtc = crtc;
4a35f83b 7541 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
6b95a207
KH
7542 INIT_WORK(&work->work, intel_unpin_work_fn);
7543
7317c75e
JB
7544 ret = drm_vblank_get(dev, intel_crtc->pipe);
7545 if (ret)
7546 goto free_work;
7547
6b95a207
KH
7548 /* We borrow the event spin lock for protecting unpin_work */
7549 spin_lock_irqsave(&dev->event_lock, flags);
7550 if (intel_crtc->unpin_work) {
7551 spin_unlock_irqrestore(&dev->event_lock, flags);
7552 kfree(work);
7317c75e 7553 drm_vblank_put(dev, intel_crtc->pipe);
468f0b44
CW
7554
7555 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
6b95a207
KH
7556 return -EBUSY;
7557 }
7558 intel_crtc->unpin_work = work;
7559 spin_unlock_irqrestore(&dev->event_lock, flags);
7560
b4a98e57
CW
7561 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
7562 flush_workqueue(dev_priv->wq);
7563
79158103
CW
7564 ret = i915_mutex_lock_interruptible(dev);
7565 if (ret)
7566 goto cleanup;
6b95a207 7567
75dfca80 7568 /* Reference the objects for the scheduled work. */
05394f39
CW
7569 drm_gem_object_reference(&work->old_fb_obj->base);
7570 drm_gem_object_reference(&obj->base);
6b95a207
KH
7571
7572 crtc->fb = fb;
96b099fd 7573
e1f99ce6 7574 work->pending_flip_obj = obj;
e1f99ce6 7575
4e5359cd
SF
7576 work->enable_stall_check = true;
7577
b4a98e57 7578 atomic_inc(&intel_crtc->unpin_work_count);
10d83730 7579 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
e1f99ce6 7580
8c9f3aaf
JB
7581 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
7582 if (ret)
7583 goto cleanup_pending;
6b95a207 7584
7782de3b 7585 intel_disable_fbc(dev);
c65355bb 7586 intel_mark_fb_busy(obj, NULL);
6b95a207
KH
7587 mutex_unlock(&dev->struct_mutex);
7588
e5510fac
JB
7589 trace_i915_flip_request(intel_crtc->plane, obj);
7590
6b95a207 7591 return 0;
96b099fd 7592
8c9f3aaf 7593cleanup_pending:
b4a98e57 7594 atomic_dec(&intel_crtc->unpin_work_count);
4a35f83b 7595 crtc->fb = old_fb;
05394f39
CW
7596 drm_gem_object_unreference(&work->old_fb_obj->base);
7597 drm_gem_object_unreference(&obj->base);
96b099fd
CW
7598 mutex_unlock(&dev->struct_mutex);
7599
79158103 7600cleanup:
96b099fd
CW
7601 spin_lock_irqsave(&dev->event_lock, flags);
7602 intel_crtc->unpin_work = NULL;
7603 spin_unlock_irqrestore(&dev->event_lock, flags);
7604
7317c75e
JB
7605 drm_vblank_put(dev, intel_crtc->pipe);
7606free_work:
96b099fd
CW
7607 kfree(work);
7608
7609 return ret;
6b95a207
KH
7610}
7611
f6e5b160 7612static struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160
CW
7613 .mode_set_base_atomic = intel_pipe_set_base_atomic,
7614 .load_lut = intel_crtc_load_lut,
f6e5b160
CW
7615};
7616
50f56119
DV
7617static bool intel_encoder_crtc_ok(struct drm_encoder *encoder,
7618 struct drm_crtc *crtc)
7619{
7620 struct drm_device *dev;
7621 struct drm_crtc *tmp;
7622 int crtc_mask = 1;
47f1c6c9 7623
50f56119 7624 WARN(!crtc, "checking null crtc?\n");
47f1c6c9 7625
50f56119 7626 dev = crtc->dev;
47f1c6c9 7627
50f56119
DV
7628 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
7629 if (tmp == crtc)
7630 break;
7631 crtc_mask <<= 1;
7632 }
47f1c6c9 7633
50f56119
DV
7634 if (encoder->possible_crtcs & crtc_mask)
7635 return true;
7636 return false;
47f1c6c9 7637}
79e53945 7638
9a935856
DV
7639/**
7640 * intel_modeset_update_staged_output_state
7641 *
7642 * Updates the staged output configuration state, e.g. after we've read out the
7643 * current hw state.
7644 */
7645static void intel_modeset_update_staged_output_state(struct drm_device *dev)
f6e5b160 7646{
9a935856
DV
7647 struct intel_encoder *encoder;
7648 struct intel_connector *connector;
f6e5b160 7649
9a935856
DV
7650 list_for_each_entry(connector, &dev->mode_config.connector_list,
7651 base.head) {
7652 connector->new_encoder =
7653 to_intel_encoder(connector->base.encoder);
7654 }
f6e5b160 7655
9a935856
DV
7656 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7657 base.head) {
7658 encoder->new_crtc =
7659 to_intel_crtc(encoder->base.crtc);
7660 }
f6e5b160
CW
7661}
7662
9a935856
DV
7663/**
7664 * intel_modeset_commit_output_state
7665 *
7666 * This function copies the stage display pipe configuration to the real one.
7667 */
7668static void intel_modeset_commit_output_state(struct drm_device *dev)
7669{
7670 struct intel_encoder *encoder;
7671 struct intel_connector *connector;
f6e5b160 7672
9a935856
DV
7673 list_for_each_entry(connector, &dev->mode_config.connector_list,
7674 base.head) {
7675 connector->base.encoder = &connector->new_encoder->base;
7676 }
f6e5b160 7677
9a935856
DV
7678 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7679 base.head) {
7680 encoder->base.crtc = &encoder->new_crtc->base;
7681 }
7682}
7683
050f7aeb
DV
7684static void
7685connected_sink_compute_bpp(struct intel_connector * connector,
7686 struct intel_crtc_config *pipe_config)
7687{
7688 int bpp = pipe_config->pipe_bpp;
7689
7690 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
7691 connector->base.base.id,
7692 drm_get_connector_name(&connector->base));
7693
7694 /* Don't use an invalid EDID bpc value */
7695 if (connector->base.display_info.bpc &&
7696 connector->base.display_info.bpc * 3 < bpp) {
7697 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
7698 bpp, connector->base.display_info.bpc*3);
7699 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
7700 }
7701
7702 /* Clamp bpp to 8 on screens without EDID 1.4 */
7703 if (connector->base.display_info.bpc == 0 && bpp > 24) {
7704 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
7705 bpp);
7706 pipe_config->pipe_bpp = 24;
7707 }
7708}
7709
4e53c2e0 7710static int
050f7aeb
DV
7711compute_baseline_pipe_bpp(struct intel_crtc *crtc,
7712 struct drm_framebuffer *fb,
7713 struct intel_crtc_config *pipe_config)
4e53c2e0 7714{
050f7aeb
DV
7715 struct drm_device *dev = crtc->base.dev;
7716 struct intel_connector *connector;
4e53c2e0
DV
7717 int bpp;
7718
d42264b1
DV
7719 switch (fb->pixel_format) {
7720 case DRM_FORMAT_C8:
4e53c2e0
DV
7721 bpp = 8*3; /* since we go through a colormap */
7722 break;
d42264b1
DV
7723 case DRM_FORMAT_XRGB1555:
7724 case DRM_FORMAT_ARGB1555:
7725 /* checked in intel_framebuffer_init already */
7726 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
7727 return -EINVAL;
7728 case DRM_FORMAT_RGB565:
4e53c2e0
DV
7729 bpp = 6*3; /* min is 18bpp */
7730 break;
d42264b1
DV
7731 case DRM_FORMAT_XBGR8888:
7732 case DRM_FORMAT_ABGR8888:
7733 /* checked in intel_framebuffer_init already */
7734 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
7735 return -EINVAL;
7736 case DRM_FORMAT_XRGB8888:
7737 case DRM_FORMAT_ARGB8888:
4e53c2e0
DV
7738 bpp = 8*3;
7739 break;
d42264b1
DV
7740 case DRM_FORMAT_XRGB2101010:
7741 case DRM_FORMAT_ARGB2101010:
7742 case DRM_FORMAT_XBGR2101010:
7743 case DRM_FORMAT_ABGR2101010:
7744 /* checked in intel_framebuffer_init already */
7745 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
baba133a 7746 return -EINVAL;
4e53c2e0
DV
7747 bpp = 10*3;
7748 break;
baba133a 7749 /* TODO: gen4+ supports 16 bpc floating point, too. */
4e53c2e0
DV
7750 default:
7751 DRM_DEBUG_KMS("unsupported depth\n");
7752 return -EINVAL;
7753 }
7754
4e53c2e0
DV
7755 pipe_config->pipe_bpp = bpp;
7756
7757 /* Clamp display bpp to EDID value */
7758 list_for_each_entry(connector, &dev->mode_config.connector_list,
050f7aeb 7759 base.head) {
1b829e05
DV
7760 if (!connector->new_encoder ||
7761 connector->new_encoder->new_crtc != crtc)
4e53c2e0
DV
7762 continue;
7763
050f7aeb 7764 connected_sink_compute_bpp(connector, pipe_config);
4e53c2e0
DV
7765 }
7766
7767 return bpp;
7768}
7769
c0b03411
DV
7770static void intel_dump_pipe_config(struct intel_crtc *crtc,
7771 struct intel_crtc_config *pipe_config,
7772 const char *context)
7773{
7774 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
7775 context, pipe_name(crtc->pipe));
7776
7777 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
7778 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
7779 pipe_config->pipe_bpp, pipe_config->dither);
7780 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
7781 pipe_config->has_pch_encoder,
7782 pipe_config->fdi_lanes,
7783 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
7784 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
7785 pipe_config->fdi_m_n.tu);
7786 DRM_DEBUG_KMS("requested mode:\n");
7787 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
7788 DRM_DEBUG_KMS("adjusted mode:\n");
7789 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
7790 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
7791 pipe_config->gmch_pfit.control,
7792 pipe_config->gmch_pfit.pgm_ratios,
7793 pipe_config->gmch_pfit.lvds_border_bits);
7794 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x\n",
7795 pipe_config->pch_pfit.pos,
7796 pipe_config->pch_pfit.size);
42db64ef 7797 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
c0b03411
DV
7798}
7799
accfc0c5
DV
7800static bool check_encoder_cloning(struct drm_crtc *crtc)
7801{
7802 int num_encoders = 0;
7803 bool uncloneable_encoders = false;
7804 struct intel_encoder *encoder;
7805
7806 list_for_each_entry(encoder, &crtc->dev->mode_config.encoder_list,
7807 base.head) {
7808 if (&encoder->new_crtc->base != crtc)
7809 continue;
7810
7811 num_encoders++;
7812 if (!encoder->cloneable)
7813 uncloneable_encoders = true;
7814 }
7815
7816 return !(num_encoders > 1 && uncloneable_encoders);
7817}
7818
b8cecdf5
DV
7819static struct intel_crtc_config *
7820intel_modeset_pipe_config(struct drm_crtc *crtc,
4e53c2e0 7821 struct drm_framebuffer *fb,
b8cecdf5 7822 struct drm_display_mode *mode)
ee7b9f93 7823{
7758a113 7824 struct drm_device *dev = crtc->dev;
7758a113
DV
7825 struct drm_encoder_helper_funcs *encoder_funcs;
7826 struct intel_encoder *encoder;
b8cecdf5 7827 struct intel_crtc_config *pipe_config;
e29c22c0
DV
7828 int plane_bpp, ret = -EINVAL;
7829 bool retry = true;
ee7b9f93 7830
accfc0c5
DV
7831 if (!check_encoder_cloning(crtc)) {
7832 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
7833 return ERR_PTR(-EINVAL);
7834 }
7835
b8cecdf5
DV
7836 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
7837 if (!pipe_config)
7758a113
DV
7838 return ERR_PTR(-ENOMEM);
7839
b8cecdf5
DV
7840 drm_mode_copy(&pipe_config->adjusted_mode, mode);
7841 drm_mode_copy(&pipe_config->requested_mode, mode);
eccb140b 7842 pipe_config->cpu_transcoder = to_intel_crtc(crtc)->pipe;
b8cecdf5 7843
050f7aeb
DV
7844 /* Compute a starting value for pipe_config->pipe_bpp taking the source
7845 * plane pixel format and any sink constraints into account. Returns the
7846 * source plane bpp so that dithering can be selected on mismatches
7847 * after encoders and crtc also have had their say. */
7848 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
7849 fb, pipe_config);
4e53c2e0
DV
7850 if (plane_bpp < 0)
7851 goto fail;
7852
e29c22c0 7853encoder_retry:
ef1b460d 7854 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 7855 pipe_config->port_clock = 0;
ef1b460d 7856 pipe_config->pixel_multiplier = 1;
ff9a6750 7857
7758a113
DV
7858 /* Pass our mode to the connectors and the CRTC to give them a chance to
7859 * adjust it according to limitations or connector properties, and also
7860 * a chance to reject the mode entirely.
47f1c6c9 7861 */
7758a113
DV
7862 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7863 base.head) {
47f1c6c9 7864
7758a113
DV
7865 if (&encoder->new_crtc->base != crtc)
7866 continue;
7ae89233
DV
7867
7868 if (encoder->compute_config) {
7869 if (!(encoder->compute_config(encoder, pipe_config))) {
7870 DRM_DEBUG_KMS("Encoder config failure\n");
7871 goto fail;
7872 }
7873
7874 continue;
7875 }
7876
7758a113 7877 encoder_funcs = encoder->base.helper_private;
b8cecdf5
DV
7878 if (!(encoder_funcs->mode_fixup(&encoder->base,
7879 &pipe_config->requested_mode,
7880 &pipe_config->adjusted_mode))) {
7758a113
DV
7881 DRM_DEBUG_KMS("Encoder fixup failed\n");
7882 goto fail;
7883 }
ee7b9f93 7884 }
47f1c6c9 7885
ff9a6750
DV
7886 /* Set default port clock if not overwritten by the encoder. Needs to be
7887 * done afterwards in case the encoder adjusts the mode. */
7888 if (!pipe_config->port_clock)
7889 pipe_config->port_clock = pipe_config->adjusted_mode.clock;
7890
a43f6e0f 7891 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 7892 if (ret < 0) {
7758a113
DV
7893 DRM_DEBUG_KMS("CRTC fixup failed\n");
7894 goto fail;
ee7b9f93 7895 }
e29c22c0
DV
7896
7897 if (ret == RETRY) {
7898 if (WARN(!retry, "loop in pipe configuration computation\n")) {
7899 ret = -EINVAL;
7900 goto fail;
7901 }
7902
7903 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
7904 retry = false;
7905 goto encoder_retry;
7906 }
7907
4e53c2e0
DV
7908 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
7909 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
7910 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
7911
b8cecdf5 7912 return pipe_config;
7758a113 7913fail:
b8cecdf5 7914 kfree(pipe_config);
e29c22c0 7915 return ERR_PTR(ret);
ee7b9f93 7916}
47f1c6c9 7917
e2e1ed41
DV
7918/* Computes which crtcs are affected and sets the relevant bits in the mask. For
7919 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
7920static void
7921intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
7922 unsigned *prepare_pipes, unsigned *disable_pipes)
79e53945
JB
7923{
7924 struct intel_crtc *intel_crtc;
e2e1ed41
DV
7925 struct drm_device *dev = crtc->dev;
7926 struct intel_encoder *encoder;
7927 struct intel_connector *connector;
7928 struct drm_crtc *tmp_crtc;
79e53945 7929
e2e1ed41 7930 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
79e53945 7931
e2e1ed41
DV
7932 /* Check which crtcs have changed outputs connected to them, these need
7933 * to be part of the prepare_pipes mask. We don't (yet) support global
7934 * modeset across multiple crtcs, so modeset_pipes will only have one
7935 * bit set at most. */
7936 list_for_each_entry(connector, &dev->mode_config.connector_list,
7937 base.head) {
7938 if (connector->base.encoder == &connector->new_encoder->base)
7939 continue;
79e53945 7940
e2e1ed41
DV
7941 if (connector->base.encoder) {
7942 tmp_crtc = connector->base.encoder->crtc;
7943
7944 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7945 }
7946
7947 if (connector->new_encoder)
7948 *prepare_pipes |=
7949 1 << connector->new_encoder->new_crtc->pipe;
79e53945
JB
7950 }
7951
e2e1ed41
DV
7952 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7953 base.head) {
7954 if (encoder->base.crtc == &encoder->new_crtc->base)
7955 continue;
7956
7957 if (encoder->base.crtc) {
7958 tmp_crtc = encoder->base.crtc;
7959
7960 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7961 }
7962
7963 if (encoder->new_crtc)
7964 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
80824003
JB
7965 }
7966
e2e1ed41
DV
7967 /* Check for any pipes that will be fully disabled ... */
7968 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7969 base.head) {
7970 bool used = false;
22fd0fab 7971
e2e1ed41
DV
7972 /* Don't try to disable disabled crtcs. */
7973 if (!intel_crtc->base.enabled)
7974 continue;
7e7d76c3 7975
e2e1ed41
DV
7976 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7977 base.head) {
7978 if (encoder->new_crtc == intel_crtc)
7979 used = true;
7980 }
7981
7982 if (!used)
7983 *disable_pipes |= 1 << intel_crtc->pipe;
7e7d76c3
JB
7984 }
7985
e2e1ed41
DV
7986
7987 /* set_mode is also used to update properties on life display pipes. */
7988 intel_crtc = to_intel_crtc(crtc);
7989 if (crtc->enabled)
7990 *prepare_pipes |= 1 << intel_crtc->pipe;
7991
b6c5164d
DV
7992 /*
7993 * For simplicity do a full modeset on any pipe where the output routing
7994 * changed. We could be more clever, but that would require us to be
7995 * more careful with calling the relevant encoder->mode_set functions.
7996 */
e2e1ed41
DV
7997 if (*prepare_pipes)
7998 *modeset_pipes = *prepare_pipes;
7999
8000 /* ... and mask these out. */
8001 *modeset_pipes &= ~(*disable_pipes);
8002 *prepare_pipes &= ~(*disable_pipes);
b6c5164d
DV
8003
8004 /*
8005 * HACK: We don't (yet) fully support global modesets. intel_set_config
8006 * obies this rule, but the modeset restore mode of
8007 * intel_modeset_setup_hw_state does not.
8008 */
8009 *modeset_pipes &= 1 << intel_crtc->pipe;
8010 *prepare_pipes &= 1 << intel_crtc->pipe;
e3641d3f
DV
8011
8012 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
8013 *modeset_pipes, *prepare_pipes, *disable_pipes);
47f1c6c9 8014}
79e53945 8015
ea9d758d 8016static bool intel_crtc_in_use(struct drm_crtc *crtc)
f6e5b160 8017{
ea9d758d 8018 struct drm_encoder *encoder;
f6e5b160 8019 struct drm_device *dev = crtc->dev;
f6e5b160 8020
ea9d758d
DV
8021 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
8022 if (encoder->crtc == crtc)
8023 return true;
8024
8025 return false;
8026}
8027
8028static void
8029intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
8030{
8031 struct intel_encoder *intel_encoder;
8032 struct intel_crtc *intel_crtc;
8033 struct drm_connector *connector;
8034
8035 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
8036 base.head) {
8037 if (!intel_encoder->base.crtc)
8038 continue;
8039
8040 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
8041
8042 if (prepare_pipes & (1 << intel_crtc->pipe))
8043 intel_encoder->connectors_active = false;
8044 }
8045
8046 intel_modeset_commit_output_state(dev);
8047
8048 /* Update computed state. */
8049 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
8050 base.head) {
8051 intel_crtc->base.enabled = intel_crtc_in_use(&intel_crtc->base);
8052 }
8053
8054 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
8055 if (!connector->encoder || !connector->encoder->crtc)
8056 continue;
8057
8058 intel_crtc = to_intel_crtc(connector->encoder->crtc);
8059
8060 if (prepare_pipes & (1 << intel_crtc->pipe)) {
68d34720
DV
8061 struct drm_property *dpms_property =
8062 dev->mode_config.dpms_property;
8063
ea9d758d 8064 connector->dpms = DRM_MODE_DPMS_ON;
662595df 8065 drm_object_property_set_value(&connector->base,
68d34720
DV
8066 dpms_property,
8067 DRM_MODE_DPMS_ON);
ea9d758d
DV
8068
8069 intel_encoder = to_intel_encoder(connector->encoder);
8070 intel_encoder->connectors_active = true;
8071 }
8072 }
8073
8074}
8075
25c5b266
DV
8076#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
8077 list_for_each_entry((intel_crtc), \
8078 &(dev)->mode_config.crtc_list, \
8079 base.head) \
0973f18f 8080 if (mask & (1 <<(intel_crtc)->pipe))
25c5b266 8081
0e8ffe1b 8082static bool
2fa2fe9a
DV
8083intel_pipe_config_compare(struct drm_device *dev,
8084 struct intel_crtc_config *current_config,
0e8ffe1b
DV
8085 struct intel_crtc_config *pipe_config)
8086{
08a24034
DV
8087#define PIPE_CONF_CHECK_I(name) \
8088 if (current_config->name != pipe_config->name) { \
8089 DRM_ERROR("mismatch in " #name " " \
8090 "(expected %i, found %i)\n", \
8091 current_config->name, \
8092 pipe_config->name); \
8093 return false; \
88adfff1
DV
8094 }
8095
1bd1bd80
DV
8096#define PIPE_CONF_CHECK_FLAGS(name, mask) \
8097 if ((current_config->name ^ pipe_config->name) & (mask)) { \
8098 DRM_ERROR("mismatch in " #name " " \
8099 "(expected %i, found %i)\n", \
8100 current_config->name & (mask), \
8101 pipe_config->name & (mask)); \
8102 return false; \
8103 }
8104
bb760063
DV
8105#define PIPE_CONF_QUIRK(quirk) \
8106 ((current_config->quirks | pipe_config->quirks) & (quirk))
8107
eccb140b
DV
8108 PIPE_CONF_CHECK_I(cpu_transcoder);
8109
08a24034
DV
8110 PIPE_CONF_CHECK_I(has_pch_encoder);
8111 PIPE_CONF_CHECK_I(fdi_lanes);
72419203
DV
8112 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
8113 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
8114 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
8115 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
8116 PIPE_CONF_CHECK_I(fdi_m_n.tu);
08a24034 8117
1bd1bd80
DV
8118 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
8119 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
8120 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
8121 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
8122 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
8123 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
8124
8125 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
8126 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
8127 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
8128 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
8129 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
8130 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
8131
6c49f241
DV
8132 if (!HAS_PCH_SPLIT(dev))
8133 PIPE_CONF_CHECK_I(pixel_multiplier);
8134
1bd1bd80
DV
8135 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8136 DRM_MODE_FLAG_INTERLACE);
8137
bb760063
DV
8138 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
8139 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8140 DRM_MODE_FLAG_PHSYNC);
8141 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8142 DRM_MODE_FLAG_NHSYNC);
8143 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8144 DRM_MODE_FLAG_PVSYNC);
8145 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8146 DRM_MODE_FLAG_NVSYNC);
8147 }
045ac3b5 8148
1bd1bd80
DV
8149 PIPE_CONF_CHECK_I(requested_mode.hdisplay);
8150 PIPE_CONF_CHECK_I(requested_mode.vdisplay);
8151
2fa2fe9a
DV
8152 PIPE_CONF_CHECK_I(gmch_pfit.control);
8153 /* pfit ratios are autocomputed by the hw on gen4+ */
8154 if (INTEL_INFO(dev)->gen < 4)
8155 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
8156 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
8157 PIPE_CONF_CHECK_I(pch_pfit.pos);
8158 PIPE_CONF_CHECK_I(pch_pfit.size);
8159
42db64ef
PZ
8160 PIPE_CONF_CHECK_I(ips_enabled);
8161
08a24034 8162#undef PIPE_CONF_CHECK_I
1bd1bd80 8163#undef PIPE_CONF_CHECK_FLAGS
bb760063 8164#undef PIPE_CONF_QUIRK
627eb5a3 8165
0e8ffe1b
DV
8166 return true;
8167}
8168
b980514c 8169void
8af6cf88
DV
8170intel_modeset_check_state(struct drm_device *dev)
8171{
0e8ffe1b 8172 drm_i915_private_t *dev_priv = dev->dev_private;
8af6cf88
DV
8173 struct intel_crtc *crtc;
8174 struct intel_encoder *encoder;
8175 struct intel_connector *connector;
0e8ffe1b 8176 struct intel_crtc_config pipe_config;
8af6cf88
DV
8177
8178 list_for_each_entry(connector, &dev->mode_config.connector_list,
8179 base.head) {
8180 /* This also checks the encoder/connector hw state with the
8181 * ->get_hw_state callbacks. */
8182 intel_connector_check_state(connector);
8183
8184 WARN(&connector->new_encoder->base != connector->base.encoder,
8185 "connector's staged encoder doesn't match current encoder\n");
8186 }
8187
8188 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8189 base.head) {
8190 bool enabled = false;
8191 bool active = false;
8192 enum pipe pipe, tracked_pipe;
8193
8194 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
8195 encoder->base.base.id,
8196 drm_get_encoder_name(&encoder->base));
8197
8198 WARN(&encoder->new_crtc->base != encoder->base.crtc,
8199 "encoder's stage crtc doesn't match current crtc\n");
8200 WARN(encoder->connectors_active && !encoder->base.crtc,
8201 "encoder's active_connectors set, but no crtc\n");
8202
8203 list_for_each_entry(connector, &dev->mode_config.connector_list,
8204 base.head) {
8205 if (connector->base.encoder != &encoder->base)
8206 continue;
8207 enabled = true;
8208 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
8209 active = true;
8210 }
8211 WARN(!!encoder->base.crtc != enabled,
8212 "encoder's enabled state mismatch "
8213 "(expected %i, found %i)\n",
8214 !!encoder->base.crtc, enabled);
8215 WARN(active && !encoder->base.crtc,
8216 "active encoder with no crtc\n");
8217
8218 WARN(encoder->connectors_active != active,
8219 "encoder's computed active state doesn't match tracked active state "
8220 "(expected %i, found %i)\n", active, encoder->connectors_active);
8221
8222 active = encoder->get_hw_state(encoder, &pipe);
8223 WARN(active != encoder->connectors_active,
8224 "encoder's hw state doesn't match sw tracking "
8225 "(expected %i, found %i)\n",
8226 encoder->connectors_active, active);
8227
8228 if (!encoder->base.crtc)
8229 continue;
8230
8231 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
8232 WARN(active && pipe != tracked_pipe,
8233 "active encoder's pipe doesn't match"
8234 "(expected %i, found %i)\n",
8235 tracked_pipe, pipe);
8236
8237 }
8238
8239 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
8240 base.head) {
8241 bool enabled = false;
8242 bool active = false;
8243
045ac3b5
JB
8244 memset(&pipe_config, 0, sizeof(pipe_config));
8245
8af6cf88
DV
8246 DRM_DEBUG_KMS("[CRTC:%d]\n",
8247 crtc->base.base.id);
8248
8249 WARN(crtc->active && !crtc->base.enabled,
8250 "active crtc, but not enabled in sw tracking\n");
8251
8252 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8253 base.head) {
8254 if (encoder->base.crtc != &crtc->base)
8255 continue;
8256 enabled = true;
8257 if (encoder->connectors_active)
8258 active = true;
8259 }
6c49f241 8260
8af6cf88
DV
8261 WARN(active != crtc->active,
8262 "crtc's computed active state doesn't match tracked active state "
8263 "(expected %i, found %i)\n", active, crtc->active);
8264 WARN(enabled != crtc->base.enabled,
8265 "crtc's computed enabled state doesn't match tracked enabled state "
8266 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
8267
0e8ffe1b
DV
8268 active = dev_priv->display.get_pipe_config(crtc,
8269 &pipe_config);
6c49f241
DV
8270 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8271 base.head) {
8272 if (encoder->base.crtc != &crtc->base)
8273 continue;
8274 if (encoder->get_config)
8275 encoder->get_config(encoder, &pipe_config);
8276 }
8277
0e8ffe1b
DV
8278 WARN(crtc->active != active,
8279 "crtc active state doesn't match with hw state "
8280 "(expected %i, found %i)\n", crtc->active, active);
8281
c0b03411
DV
8282 if (active &&
8283 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
8284 WARN(1, "pipe state doesn't match!\n");
8285 intel_dump_pipe_config(crtc, &pipe_config,
8286 "[hw state]");
8287 intel_dump_pipe_config(crtc, &crtc->config,
8288 "[sw state]");
8289 }
8af6cf88
DV
8290 }
8291}
8292
f30da187
DV
8293static int __intel_set_mode(struct drm_crtc *crtc,
8294 struct drm_display_mode *mode,
8295 int x, int y, struct drm_framebuffer *fb)
a6778b3c
DV
8296{
8297 struct drm_device *dev = crtc->dev;
dbf2b54e 8298 drm_i915_private_t *dev_priv = dev->dev_private;
b8cecdf5
DV
8299 struct drm_display_mode *saved_mode, *saved_hwmode;
8300 struct intel_crtc_config *pipe_config = NULL;
25c5b266
DV
8301 struct intel_crtc *intel_crtc;
8302 unsigned disable_pipes, prepare_pipes, modeset_pipes;
c0c36b94 8303 int ret = 0;
a6778b3c 8304
3ac18232 8305 saved_mode = kmalloc(2 * sizeof(*saved_mode), GFP_KERNEL);
c0c36b94
CW
8306 if (!saved_mode)
8307 return -ENOMEM;
3ac18232 8308 saved_hwmode = saved_mode + 1;
a6778b3c 8309
e2e1ed41 8310 intel_modeset_affected_pipes(crtc, &modeset_pipes,
25c5b266
DV
8311 &prepare_pipes, &disable_pipes);
8312
3ac18232
TG
8313 *saved_hwmode = crtc->hwmode;
8314 *saved_mode = crtc->mode;
a6778b3c 8315
25c5b266
DV
8316 /* Hack: Because we don't (yet) support global modeset on multiple
8317 * crtcs, we don't keep track of the new mode for more than one crtc.
8318 * Hence simply check whether any bit is set in modeset_pipes in all the
8319 * pieces of code that are not yet converted to deal with mutliple crtcs
8320 * changing their mode at the same time. */
25c5b266 8321 if (modeset_pipes) {
4e53c2e0 8322 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
b8cecdf5
DV
8323 if (IS_ERR(pipe_config)) {
8324 ret = PTR_ERR(pipe_config);
8325 pipe_config = NULL;
8326
3ac18232 8327 goto out;
25c5b266 8328 }
c0b03411
DV
8329 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
8330 "[modeset]");
25c5b266 8331 }
a6778b3c 8332
460da916
DV
8333 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
8334 intel_crtc_disable(&intel_crtc->base);
8335
ea9d758d
DV
8336 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
8337 if (intel_crtc->base.enabled)
8338 dev_priv->display.crtc_disable(&intel_crtc->base);
8339 }
a6778b3c 8340
6c4c86f5
DV
8341 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
8342 * to set it here already despite that we pass it down the callchain.
f6e5b160 8343 */
b8cecdf5 8344 if (modeset_pipes) {
25c5b266 8345 crtc->mode = *mode;
b8cecdf5
DV
8346 /* mode_set/enable/disable functions rely on a correct pipe
8347 * config. */
8348 to_intel_crtc(crtc)->config = *pipe_config;
8349 }
7758a113 8350
ea9d758d
DV
8351 /* Only after disabling all output pipelines that will be changed can we
8352 * update the the output configuration. */
8353 intel_modeset_update_state(dev, prepare_pipes);
f6e5b160 8354
47fab737
DV
8355 if (dev_priv->display.modeset_global_resources)
8356 dev_priv->display.modeset_global_resources(dev);
8357
a6778b3c
DV
8358 /* Set up the DPLL and any encoders state that needs to adjust or depend
8359 * on the DPLL.
f6e5b160 8360 */
25c5b266 8361 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
c0c36b94 8362 ret = intel_crtc_mode_set(&intel_crtc->base,
c0c36b94
CW
8363 x, y, fb);
8364 if (ret)
8365 goto done;
a6778b3c
DV
8366 }
8367
8368 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
25c5b266
DV
8369 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
8370 dev_priv->display.crtc_enable(&intel_crtc->base);
a6778b3c 8371
25c5b266
DV
8372 if (modeset_pipes) {
8373 /* Store real post-adjustment hardware mode. */
b8cecdf5 8374 crtc->hwmode = pipe_config->adjusted_mode;
a6778b3c 8375
25c5b266
DV
8376 /* Calculate and store various constants which
8377 * are later needed by vblank and swap-completion
8378 * timestamping. They are derived from true hwmode.
8379 */
8380 drm_calc_timestamping_constants(crtc);
8381 }
a6778b3c
DV
8382
8383 /* FIXME: add subpixel order */
8384done:
c0c36b94 8385 if (ret && crtc->enabled) {
3ac18232
TG
8386 crtc->hwmode = *saved_hwmode;
8387 crtc->mode = *saved_mode;
a6778b3c
DV
8388 }
8389
3ac18232 8390out:
b8cecdf5 8391 kfree(pipe_config);
3ac18232 8392 kfree(saved_mode);
a6778b3c 8393 return ret;
f6e5b160
CW
8394}
8395
f30da187
DV
8396int intel_set_mode(struct drm_crtc *crtc,
8397 struct drm_display_mode *mode,
8398 int x, int y, struct drm_framebuffer *fb)
8399{
8400 int ret;
8401
8402 ret = __intel_set_mode(crtc, mode, x, y, fb);
8403
8404 if (ret == 0)
8405 intel_modeset_check_state(crtc->dev);
8406
8407 return ret;
8408}
8409
c0c36b94
CW
8410void intel_crtc_restore_mode(struct drm_crtc *crtc)
8411{
8412 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->fb);
8413}
8414
25c5b266
DV
8415#undef for_each_intel_crtc_masked
8416
d9e55608
DV
8417static void intel_set_config_free(struct intel_set_config *config)
8418{
8419 if (!config)
8420 return;
8421
1aa4b628
DV
8422 kfree(config->save_connector_encoders);
8423 kfree(config->save_encoder_crtcs);
d9e55608
DV
8424 kfree(config);
8425}
8426
85f9eb71
DV
8427static int intel_set_config_save_state(struct drm_device *dev,
8428 struct intel_set_config *config)
8429{
85f9eb71
DV
8430 struct drm_encoder *encoder;
8431 struct drm_connector *connector;
8432 int count;
8433
1aa4b628
DV
8434 config->save_encoder_crtcs =
8435 kcalloc(dev->mode_config.num_encoder,
8436 sizeof(struct drm_crtc *), GFP_KERNEL);
8437 if (!config->save_encoder_crtcs)
85f9eb71
DV
8438 return -ENOMEM;
8439
1aa4b628
DV
8440 config->save_connector_encoders =
8441 kcalloc(dev->mode_config.num_connector,
8442 sizeof(struct drm_encoder *), GFP_KERNEL);
8443 if (!config->save_connector_encoders)
85f9eb71
DV
8444 return -ENOMEM;
8445
8446 /* Copy data. Note that driver private data is not affected.
8447 * Should anything bad happen only the expected state is
8448 * restored, not the drivers personal bookkeeping.
8449 */
85f9eb71
DV
8450 count = 0;
8451 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
1aa4b628 8452 config->save_encoder_crtcs[count++] = encoder->crtc;
85f9eb71
DV
8453 }
8454
8455 count = 0;
8456 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1aa4b628 8457 config->save_connector_encoders[count++] = connector->encoder;
85f9eb71
DV
8458 }
8459
8460 return 0;
8461}
8462
8463static void intel_set_config_restore_state(struct drm_device *dev,
8464 struct intel_set_config *config)
8465{
9a935856
DV
8466 struct intel_encoder *encoder;
8467 struct intel_connector *connector;
85f9eb71
DV
8468 int count;
8469
85f9eb71 8470 count = 0;
9a935856
DV
8471 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
8472 encoder->new_crtc =
8473 to_intel_crtc(config->save_encoder_crtcs[count++]);
85f9eb71
DV
8474 }
8475
8476 count = 0;
9a935856
DV
8477 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
8478 connector->new_encoder =
8479 to_intel_encoder(config->save_connector_encoders[count++]);
85f9eb71
DV
8480 }
8481}
8482
5e2b584e
DV
8483static void
8484intel_set_config_compute_mode_changes(struct drm_mode_set *set,
8485 struct intel_set_config *config)
8486{
8487
8488 /* We should be able to check here if the fb has the same properties
8489 * and then just flip_or_move it */
8490 if (set->crtc->fb != set->fb) {
8491 /* If we have no fb then treat it as a full mode set */
8492 if (set->crtc->fb == NULL) {
8493 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
8494 config->mode_changed = true;
8495 } else if (set->fb == NULL) {
8496 config->mode_changed = true;
72f4901e
DV
8497 } else if (set->fb->pixel_format !=
8498 set->crtc->fb->pixel_format) {
5e2b584e
DV
8499 config->mode_changed = true;
8500 } else
8501 config->fb_changed = true;
8502 }
8503
835c5873 8504 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
5e2b584e
DV
8505 config->fb_changed = true;
8506
8507 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
8508 DRM_DEBUG_KMS("modes are different, full mode set\n");
8509 drm_mode_debug_printmodeline(&set->crtc->mode);
8510 drm_mode_debug_printmodeline(set->mode);
8511 config->mode_changed = true;
8512 }
8513}
8514
2e431051 8515static int
9a935856
DV
8516intel_modeset_stage_output_state(struct drm_device *dev,
8517 struct drm_mode_set *set,
8518 struct intel_set_config *config)
50f56119 8519{
85f9eb71 8520 struct drm_crtc *new_crtc;
9a935856
DV
8521 struct intel_connector *connector;
8522 struct intel_encoder *encoder;
2e431051 8523 int count, ro;
50f56119 8524
9abdda74 8525 /* The upper layers ensure that we either disable a crtc or have a list
9a935856
DV
8526 * of connectors. For paranoia, double-check this. */
8527 WARN_ON(!set->fb && (set->num_connectors != 0));
8528 WARN_ON(set->fb && (set->num_connectors == 0));
8529
50f56119 8530 count = 0;
9a935856
DV
8531 list_for_each_entry(connector, &dev->mode_config.connector_list,
8532 base.head) {
8533 /* Otherwise traverse passed in connector list and get encoders
8534 * for them. */
50f56119 8535 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856
DV
8536 if (set->connectors[ro] == &connector->base) {
8537 connector->new_encoder = connector->encoder;
50f56119
DV
8538 break;
8539 }
8540 }
8541
9a935856
DV
8542 /* If we disable the crtc, disable all its connectors. Also, if
8543 * the connector is on the changing crtc but not on the new
8544 * connector list, disable it. */
8545 if ((!set->fb || ro == set->num_connectors) &&
8546 connector->base.encoder &&
8547 connector->base.encoder->crtc == set->crtc) {
8548 connector->new_encoder = NULL;
8549
8550 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
8551 connector->base.base.id,
8552 drm_get_connector_name(&connector->base));
8553 }
8554
8555
8556 if (&connector->new_encoder->base != connector->base.encoder) {
50f56119 8557 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
5e2b584e 8558 config->mode_changed = true;
50f56119
DV
8559 }
8560 }
9a935856 8561 /* connector->new_encoder is now updated for all connectors. */
50f56119 8562
9a935856 8563 /* Update crtc of enabled connectors. */
50f56119 8564 count = 0;
9a935856
DV
8565 list_for_each_entry(connector, &dev->mode_config.connector_list,
8566 base.head) {
8567 if (!connector->new_encoder)
50f56119
DV
8568 continue;
8569
9a935856 8570 new_crtc = connector->new_encoder->base.crtc;
50f56119
DV
8571
8572 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856 8573 if (set->connectors[ro] == &connector->base)
50f56119
DV
8574 new_crtc = set->crtc;
8575 }
8576
8577 /* Make sure the new CRTC will work with the encoder */
9a935856
DV
8578 if (!intel_encoder_crtc_ok(&connector->new_encoder->base,
8579 new_crtc)) {
5e2b584e 8580 return -EINVAL;
50f56119 8581 }
9a935856
DV
8582 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
8583
8584 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
8585 connector->base.base.id,
8586 drm_get_connector_name(&connector->base),
8587 new_crtc->base.id);
8588 }
8589
8590 /* Check for any encoders that needs to be disabled. */
8591 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8592 base.head) {
8593 list_for_each_entry(connector,
8594 &dev->mode_config.connector_list,
8595 base.head) {
8596 if (connector->new_encoder == encoder) {
8597 WARN_ON(!connector->new_encoder->new_crtc);
8598
8599 goto next_encoder;
8600 }
8601 }
8602 encoder->new_crtc = NULL;
8603next_encoder:
8604 /* Only now check for crtc changes so we don't miss encoders
8605 * that will be disabled. */
8606 if (&encoder->new_crtc->base != encoder->base.crtc) {
50f56119 8607 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
5e2b584e 8608 config->mode_changed = true;
50f56119
DV
8609 }
8610 }
9a935856 8611 /* Now we've also updated encoder->new_crtc for all encoders. */
50f56119 8612
2e431051
DV
8613 return 0;
8614}
8615
8616static int intel_crtc_set_config(struct drm_mode_set *set)
8617{
8618 struct drm_device *dev;
2e431051
DV
8619 struct drm_mode_set save_set;
8620 struct intel_set_config *config;
8621 int ret;
2e431051 8622
8d3e375e
DV
8623 BUG_ON(!set);
8624 BUG_ON(!set->crtc);
8625 BUG_ON(!set->crtc->helper_private);
2e431051 8626
7e53f3a4
DV
8627 /* Enforce sane interface api - has been abused by the fb helper. */
8628 BUG_ON(!set->mode && set->fb);
8629 BUG_ON(set->fb && set->num_connectors == 0);
431e50f7 8630
2e431051
DV
8631 if (set->fb) {
8632 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
8633 set->crtc->base.id, set->fb->base.id,
8634 (int)set->num_connectors, set->x, set->y);
8635 } else {
8636 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
2e431051
DV
8637 }
8638
8639 dev = set->crtc->dev;
8640
8641 ret = -ENOMEM;
8642 config = kzalloc(sizeof(*config), GFP_KERNEL);
8643 if (!config)
8644 goto out_config;
8645
8646 ret = intel_set_config_save_state(dev, config);
8647 if (ret)
8648 goto out_config;
8649
8650 save_set.crtc = set->crtc;
8651 save_set.mode = &set->crtc->mode;
8652 save_set.x = set->crtc->x;
8653 save_set.y = set->crtc->y;
8654 save_set.fb = set->crtc->fb;
8655
8656 /* Compute whether we need a full modeset, only an fb base update or no
8657 * change at all. In the future we might also check whether only the
8658 * mode changed, e.g. for LVDS where we only change the panel fitter in
8659 * such cases. */
8660 intel_set_config_compute_mode_changes(set, config);
8661
9a935856 8662 ret = intel_modeset_stage_output_state(dev, set, config);
2e431051
DV
8663 if (ret)
8664 goto fail;
8665
5e2b584e 8666 if (config->mode_changed) {
c0c36b94
CW
8667 ret = intel_set_mode(set->crtc, set->mode,
8668 set->x, set->y, set->fb);
8669 if (ret) {
8670 DRM_ERROR("failed to set mode on [CRTC:%d], err = %d\n",
8671 set->crtc->base.id, ret);
87f1faa6
DV
8672 goto fail;
8673 }
5e2b584e 8674 } else if (config->fb_changed) {
4878cae2
VS
8675 intel_crtc_wait_for_pending_flips(set->crtc);
8676
4f660f49 8677 ret = intel_pipe_set_base(set->crtc,
94352cf9 8678 set->x, set->y, set->fb);
50f56119
DV
8679 }
8680
d9e55608
DV
8681 intel_set_config_free(config);
8682
50f56119
DV
8683 return 0;
8684
8685fail:
85f9eb71 8686 intel_set_config_restore_state(dev, config);
50f56119
DV
8687
8688 /* Try to restore the config */
5e2b584e 8689 if (config->mode_changed &&
c0c36b94
CW
8690 intel_set_mode(save_set.crtc, save_set.mode,
8691 save_set.x, save_set.y, save_set.fb))
50f56119
DV
8692 DRM_ERROR("failed to restore config after modeset failure\n");
8693
d9e55608
DV
8694out_config:
8695 intel_set_config_free(config);
50f56119
DV
8696 return ret;
8697}
f6e5b160
CW
8698
8699static const struct drm_crtc_funcs intel_crtc_funcs = {
f6e5b160
CW
8700 .cursor_set = intel_crtc_cursor_set,
8701 .cursor_move = intel_crtc_cursor_move,
8702 .gamma_set = intel_crtc_gamma_set,
50f56119 8703 .set_config = intel_crtc_set_config,
f6e5b160
CW
8704 .destroy = intel_crtc_destroy,
8705 .page_flip = intel_crtc_page_flip,
8706};
8707
79f689aa
PZ
8708static void intel_cpu_pll_init(struct drm_device *dev)
8709{
affa9354 8710 if (HAS_DDI(dev))
79f689aa
PZ
8711 intel_ddi_pll_init(dev);
8712}
8713
e72f9fbf 8714static void intel_shared_dpll_init(struct drm_device *dev)
ee7b9f93
JB
8715{
8716 drm_i915_private_t *dev_priv = dev->dev_private;
8717 int i;
8718
e72f9fbf 8719 if (dev_priv->num_shared_dpll == 0) {
ee7b9f93
JB
8720 DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n");
8721 return;
8722 }
8723
e72f9fbf
DV
8724 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
8725 dev_priv->shared_dplls[i].pll_reg = _PCH_DPLL(i);
8726 dev_priv->shared_dplls[i].fp0_reg = _PCH_FP0(i);
8727 dev_priv->shared_dplls[i].fp1_reg = _PCH_FP1(i);
ee7b9f93
JB
8728 }
8729}
8730
b358d0a6 8731static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 8732{
22fd0fab 8733 drm_i915_private_t *dev_priv = dev->dev_private;
79e53945
JB
8734 struct intel_crtc *intel_crtc;
8735 int i;
8736
8737 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
8738 if (intel_crtc == NULL)
8739 return;
8740
8741 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
8742
8743 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
79e53945
JB
8744 for (i = 0; i < 256; i++) {
8745 intel_crtc->lut_r[i] = i;
8746 intel_crtc->lut_g[i] = i;
8747 intel_crtc->lut_b[i] = i;
8748 }
8749
80824003
JB
8750 /* Swap pipes & planes for FBC on pre-965 */
8751 intel_crtc->pipe = pipe;
8752 intel_crtc->plane = pipe;
e2e767ab 8753 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
28c97730 8754 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 8755 intel_crtc->plane = !pipe;
80824003
JB
8756 }
8757
22fd0fab
JB
8758 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
8759 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
8760 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
8761 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
8762
79e53945 8763 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
79e53945
JB
8764}
8765
08d7b3d1 8766int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 8767 struct drm_file *file)
08d7b3d1 8768{
08d7b3d1 8769 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
c05422d5
DV
8770 struct drm_mode_object *drmmode_obj;
8771 struct intel_crtc *crtc;
08d7b3d1 8772
1cff8f6b
DV
8773 if (!drm_core_check_feature(dev, DRIVER_MODESET))
8774 return -ENODEV;
08d7b3d1 8775
c05422d5
DV
8776 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
8777 DRM_MODE_OBJECT_CRTC);
08d7b3d1 8778
c05422d5 8779 if (!drmmode_obj) {
08d7b3d1
CW
8780 DRM_ERROR("no such CRTC id\n");
8781 return -EINVAL;
8782 }
8783
c05422d5
DV
8784 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
8785 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 8786
c05422d5 8787 return 0;
08d7b3d1
CW
8788}
8789
66a9278e 8790static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 8791{
66a9278e
DV
8792 struct drm_device *dev = encoder->base.dev;
8793 struct intel_encoder *source_encoder;
79e53945 8794 int index_mask = 0;
79e53945
JB
8795 int entry = 0;
8796
66a9278e
DV
8797 list_for_each_entry(source_encoder,
8798 &dev->mode_config.encoder_list, base.head) {
8799
8800 if (encoder == source_encoder)
79e53945 8801 index_mask |= (1 << entry);
66a9278e
DV
8802
8803 /* Intel hw has only one MUX where enocoders could be cloned. */
8804 if (encoder->cloneable && source_encoder->cloneable)
8805 index_mask |= (1 << entry);
8806
79e53945
JB
8807 entry++;
8808 }
4ef69c7a 8809
79e53945
JB
8810 return index_mask;
8811}
8812
4d302442
CW
8813static bool has_edp_a(struct drm_device *dev)
8814{
8815 struct drm_i915_private *dev_priv = dev->dev_private;
8816
8817 if (!IS_MOBILE(dev))
8818 return false;
8819
8820 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
8821 return false;
8822
8823 if (IS_GEN5(dev) &&
8824 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
8825 return false;
8826
8827 return true;
8828}
8829
79e53945
JB
8830static void intel_setup_outputs(struct drm_device *dev)
8831{
725e30ad 8832 struct drm_i915_private *dev_priv = dev->dev_private;
4ef69c7a 8833 struct intel_encoder *encoder;
cb0953d7 8834 bool dpd_is_edp = false;
f3cfcba6 8835 bool has_lvds;
79e53945 8836
f3cfcba6 8837 has_lvds = intel_lvds_init(dev);
c5d1b51d
CW
8838 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
8839 /* disable the panel fitter on everything but LVDS */
8840 I915_WRITE(PFIT_CONTROL, 0);
8841 }
79e53945 8842
c40c0f5b 8843 if (!IS_ULT(dev))
79935fca 8844 intel_crt_init(dev);
cb0953d7 8845
affa9354 8846 if (HAS_DDI(dev)) {
0e72a5b5
ED
8847 int found;
8848
8849 /* Haswell uses DDI functions to detect digital outputs */
8850 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
8851 /* DDI A only supports eDP */
8852 if (found)
8853 intel_ddi_init(dev, PORT_A);
8854
8855 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
8856 * register */
8857 found = I915_READ(SFUSE_STRAP);
8858
8859 if (found & SFUSE_STRAP_DDIB_DETECTED)
8860 intel_ddi_init(dev, PORT_B);
8861 if (found & SFUSE_STRAP_DDIC_DETECTED)
8862 intel_ddi_init(dev, PORT_C);
8863 if (found & SFUSE_STRAP_DDID_DETECTED)
8864 intel_ddi_init(dev, PORT_D);
8865 } else if (HAS_PCH_SPLIT(dev)) {
cb0953d7 8866 int found;
270b3042
DV
8867 dpd_is_edp = intel_dpd_is_edp(dev);
8868
8869 if (has_edp_a(dev))
8870 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 8871
dc0fa718 8872 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 8873 /* PCH SDVOB multiplex with HDMIB */
eef4eacb 8874 found = intel_sdvo_init(dev, PCH_SDVOB, true);
30ad48b7 8875 if (!found)
e2debe91 8876 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 8877 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 8878 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
8879 }
8880
dc0fa718 8881 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 8882 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 8883
dc0fa718 8884 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 8885 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 8886
5eb08b69 8887 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 8888 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 8889
270b3042 8890 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 8891 intel_dp_init(dev, PCH_DP_D, PORT_D);
4a87d65d 8892 } else if (IS_VALLEYVIEW(dev)) {
19c03924 8893 /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */
67cfc203
VS
8894 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
8895 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
19c03924 8896
dc0fa718 8897 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
e2debe91
PZ
8898 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
8899 PORT_B);
67cfc203
VS
8900 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
8901 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
4a87d65d 8902 }
103a196f 8903 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
27185ae1 8904 bool found = false;
7d57382e 8905
e2debe91 8906 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 8907 DRM_DEBUG_KMS("probing SDVOB\n");
e2debe91 8908 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
b01f2c3a
JB
8909 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
8910 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 8911 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 8912 }
27185ae1 8913
e7281eab 8914 if (!found && SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 8915 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 8916 }
13520b05
KH
8917
8918 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 8919
e2debe91 8920 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 8921 DRM_DEBUG_KMS("probing SDVOC\n");
e2debe91 8922 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
b01f2c3a 8923 }
27185ae1 8924
e2debe91 8925 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 8926
b01f2c3a
JB
8927 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
8928 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 8929 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 8930 }
e7281eab 8931 if (SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 8932 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 8933 }
27185ae1 8934
b01f2c3a 8935 if (SUPPORTS_INTEGRATED_DP(dev) &&
e7281eab 8936 (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 8937 intel_dp_init(dev, DP_D, PORT_D);
bad720ff 8938 } else if (IS_GEN2(dev))
79e53945
JB
8939 intel_dvo_init(dev);
8940
103a196f 8941 if (SUPPORTS_TV(dev))
79e53945
JB
8942 intel_tv_init(dev);
8943
4ef69c7a
CW
8944 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
8945 encoder->base.possible_crtcs = encoder->crtc_mask;
8946 encoder->base.possible_clones =
66a9278e 8947 intel_encoder_clones(encoder);
79e53945 8948 }
47356eb6 8949
dde86e2d 8950 intel_init_pch_refclk(dev);
270b3042
DV
8951
8952 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
8953}
8954
8955static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
8956{
8957 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945
JB
8958
8959 drm_framebuffer_cleanup(fb);
05394f39 8960 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
79e53945
JB
8961
8962 kfree(intel_fb);
8963}
8964
8965static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 8966 struct drm_file *file,
79e53945
JB
8967 unsigned int *handle)
8968{
8969 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 8970 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 8971
05394f39 8972 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
8973}
8974
8975static const struct drm_framebuffer_funcs intel_fb_funcs = {
8976 .destroy = intel_user_framebuffer_destroy,
8977 .create_handle = intel_user_framebuffer_create_handle,
8978};
8979
38651674
DA
8980int intel_framebuffer_init(struct drm_device *dev,
8981 struct intel_framebuffer *intel_fb,
308e5bcb 8982 struct drm_mode_fb_cmd2 *mode_cmd,
05394f39 8983 struct drm_i915_gem_object *obj)
79e53945 8984{
79e53945
JB
8985 int ret;
8986
c16ed4be
CW
8987 if (obj->tiling_mode == I915_TILING_Y) {
8988 DRM_DEBUG("hardware does not support tiling Y\n");
57cd6508 8989 return -EINVAL;
c16ed4be 8990 }
57cd6508 8991
c16ed4be
CW
8992 if (mode_cmd->pitches[0] & 63) {
8993 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
8994 mode_cmd->pitches[0]);
57cd6508 8995 return -EINVAL;
c16ed4be 8996 }
57cd6508 8997
5d7bd705 8998 /* FIXME <= Gen4 stride limits are bit unclear */
c16ed4be
CW
8999 if (mode_cmd->pitches[0] > 32768) {
9000 DRM_DEBUG("pitch (%d) must be at less than 32768\n",
9001 mode_cmd->pitches[0]);
5d7bd705 9002 return -EINVAL;
c16ed4be 9003 }
5d7bd705
VS
9004
9005 if (obj->tiling_mode != I915_TILING_NONE &&
c16ed4be
CW
9006 mode_cmd->pitches[0] != obj->stride) {
9007 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
9008 mode_cmd->pitches[0], obj->stride);
5d7bd705 9009 return -EINVAL;
c16ed4be 9010 }
5d7bd705 9011
57779d06 9012 /* Reject formats not supported by any plane early. */
308e5bcb 9013 switch (mode_cmd->pixel_format) {
57779d06 9014 case DRM_FORMAT_C8:
04b3924d
VS
9015 case DRM_FORMAT_RGB565:
9016 case DRM_FORMAT_XRGB8888:
9017 case DRM_FORMAT_ARGB8888:
57779d06
VS
9018 break;
9019 case DRM_FORMAT_XRGB1555:
9020 case DRM_FORMAT_ARGB1555:
c16ed4be
CW
9021 if (INTEL_INFO(dev)->gen > 3) {
9022 DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format);
57779d06 9023 return -EINVAL;
c16ed4be 9024 }
57779d06
VS
9025 break;
9026 case DRM_FORMAT_XBGR8888:
9027 case DRM_FORMAT_ABGR8888:
04b3924d
VS
9028 case DRM_FORMAT_XRGB2101010:
9029 case DRM_FORMAT_ARGB2101010:
57779d06
VS
9030 case DRM_FORMAT_XBGR2101010:
9031 case DRM_FORMAT_ABGR2101010:
c16ed4be
CW
9032 if (INTEL_INFO(dev)->gen < 4) {
9033 DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format);
57779d06 9034 return -EINVAL;
c16ed4be 9035 }
b5626747 9036 break;
04b3924d
VS
9037 case DRM_FORMAT_YUYV:
9038 case DRM_FORMAT_UYVY:
9039 case DRM_FORMAT_YVYU:
9040 case DRM_FORMAT_VYUY:
c16ed4be
CW
9041 if (INTEL_INFO(dev)->gen < 5) {
9042 DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format);
57779d06 9043 return -EINVAL;
c16ed4be 9044 }
57cd6508
CW
9045 break;
9046 default:
c16ed4be 9047 DRM_DEBUG("unsupported pixel format 0x%08x\n", mode_cmd->pixel_format);
57cd6508
CW
9048 return -EINVAL;
9049 }
9050
90f9a336
VS
9051 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
9052 if (mode_cmd->offsets[0] != 0)
9053 return -EINVAL;
9054
c7d73f6a
DV
9055 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
9056 intel_fb->obj = obj;
9057
79e53945
JB
9058 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
9059 if (ret) {
9060 DRM_ERROR("framebuffer init failed %d\n", ret);
9061 return ret;
9062 }
9063
79e53945
JB
9064 return 0;
9065}
9066
79e53945
JB
9067static struct drm_framebuffer *
9068intel_user_framebuffer_create(struct drm_device *dev,
9069 struct drm_file *filp,
308e5bcb 9070 struct drm_mode_fb_cmd2 *mode_cmd)
79e53945 9071{
05394f39 9072 struct drm_i915_gem_object *obj;
79e53945 9073
308e5bcb
JB
9074 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
9075 mode_cmd->handles[0]));
c8725226 9076 if (&obj->base == NULL)
cce13ff7 9077 return ERR_PTR(-ENOENT);
79e53945 9078
d2dff872 9079 return intel_framebuffer_create(dev, mode_cmd, obj);
79e53945
JB
9080}
9081
79e53945 9082static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 9083 .fb_create = intel_user_framebuffer_create,
eb1f8e4f 9084 .output_poll_changed = intel_fb_output_poll_changed,
79e53945
JB
9085};
9086
e70236a8
JB
9087/* Set up chip specific display functions */
9088static void intel_init_display(struct drm_device *dev)
9089{
9090 struct drm_i915_private *dev_priv = dev->dev_private;
9091
ee9300bb
DV
9092 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
9093 dev_priv->display.find_dpll = g4x_find_best_dpll;
9094 else if (IS_VALLEYVIEW(dev))
9095 dev_priv->display.find_dpll = vlv_find_best_dpll;
9096 else if (IS_PINEVIEW(dev))
9097 dev_priv->display.find_dpll = pnv_find_best_dpll;
9098 else
9099 dev_priv->display.find_dpll = i9xx_find_best_dpll;
9100
affa9354 9101 if (HAS_DDI(dev)) {
0e8ffe1b 9102 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
09b4ddf9 9103 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
4f771f10
PZ
9104 dev_priv->display.crtc_enable = haswell_crtc_enable;
9105 dev_priv->display.crtc_disable = haswell_crtc_disable;
6441ab5f 9106 dev_priv->display.off = haswell_crtc_off;
09b4ddf9
PZ
9107 dev_priv->display.update_plane = ironlake_update_plane;
9108 } else if (HAS_PCH_SPLIT(dev)) {
0e8ffe1b 9109 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
f564048e 9110 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
76e5a89c
DV
9111 dev_priv->display.crtc_enable = ironlake_crtc_enable;
9112 dev_priv->display.crtc_disable = ironlake_crtc_disable;
ee7b9f93 9113 dev_priv->display.off = ironlake_crtc_off;
17638cd6 9114 dev_priv->display.update_plane = ironlake_update_plane;
89b667f8
JB
9115 } else if (IS_VALLEYVIEW(dev)) {
9116 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
9117 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
9118 dev_priv->display.crtc_enable = valleyview_crtc_enable;
9119 dev_priv->display.crtc_disable = i9xx_crtc_disable;
9120 dev_priv->display.off = i9xx_crtc_off;
9121 dev_priv->display.update_plane = i9xx_update_plane;
f564048e 9122 } else {
0e8ffe1b 9123 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
f564048e 9124 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
76e5a89c
DV
9125 dev_priv->display.crtc_enable = i9xx_crtc_enable;
9126 dev_priv->display.crtc_disable = i9xx_crtc_disable;
ee7b9f93 9127 dev_priv->display.off = i9xx_crtc_off;
17638cd6 9128 dev_priv->display.update_plane = i9xx_update_plane;
f564048e 9129 }
e70236a8 9130
e70236a8 9131 /* Returns the core display clock speed */
25eb05fc
JB
9132 if (IS_VALLEYVIEW(dev))
9133 dev_priv->display.get_display_clock_speed =
9134 valleyview_get_display_clock_speed;
9135 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
e70236a8
JB
9136 dev_priv->display.get_display_clock_speed =
9137 i945_get_display_clock_speed;
9138 else if (IS_I915G(dev))
9139 dev_priv->display.get_display_clock_speed =
9140 i915_get_display_clock_speed;
f2b115e6 9141 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
e70236a8
JB
9142 dev_priv->display.get_display_clock_speed =
9143 i9xx_misc_get_display_clock_speed;
9144 else if (IS_I915GM(dev))
9145 dev_priv->display.get_display_clock_speed =
9146 i915gm_get_display_clock_speed;
9147 else if (IS_I865G(dev))
9148 dev_priv->display.get_display_clock_speed =
9149 i865_get_display_clock_speed;
f0f8a9ce 9150 else if (IS_I85X(dev))
e70236a8
JB
9151 dev_priv->display.get_display_clock_speed =
9152 i855_get_display_clock_speed;
9153 else /* 852, 830 */
9154 dev_priv->display.get_display_clock_speed =
9155 i830_get_display_clock_speed;
9156
7f8a8569 9157 if (HAS_PCH_SPLIT(dev)) {
f00a3ddf 9158 if (IS_GEN5(dev)) {
674cf967 9159 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
e0dac65e 9160 dev_priv->display.write_eld = ironlake_write_eld;
1398261a 9161 } else if (IS_GEN6(dev)) {
674cf967 9162 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
e0dac65e 9163 dev_priv->display.write_eld = ironlake_write_eld;
357555c0
JB
9164 } else if (IS_IVYBRIDGE(dev)) {
9165 /* FIXME: detect B0+ stepping and use auto training */
9166 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
e0dac65e 9167 dev_priv->display.write_eld = ironlake_write_eld;
01a415fd
DV
9168 dev_priv->display.modeset_global_resources =
9169 ivb_modeset_global_resources;
c82e4d26
ED
9170 } else if (IS_HASWELL(dev)) {
9171 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
83358c85 9172 dev_priv->display.write_eld = haswell_write_eld;
d6dd9eb1
DV
9173 dev_priv->display.modeset_global_resources =
9174 haswell_modeset_global_resources;
a0e63c22 9175 }
6067aaea 9176 } else if (IS_G4X(dev)) {
e0dac65e 9177 dev_priv->display.write_eld = g4x_write_eld;
e70236a8 9178 }
8c9f3aaf
JB
9179
9180 /* Default just returns -ENODEV to indicate unsupported */
9181 dev_priv->display.queue_flip = intel_default_queue_flip;
9182
9183 switch (INTEL_INFO(dev)->gen) {
9184 case 2:
9185 dev_priv->display.queue_flip = intel_gen2_queue_flip;
9186 break;
9187
9188 case 3:
9189 dev_priv->display.queue_flip = intel_gen3_queue_flip;
9190 break;
9191
9192 case 4:
9193 case 5:
9194 dev_priv->display.queue_flip = intel_gen4_queue_flip;
9195 break;
9196
9197 case 6:
9198 dev_priv->display.queue_flip = intel_gen6_queue_flip;
9199 break;
7c9017e5
JB
9200 case 7:
9201 dev_priv->display.queue_flip = intel_gen7_queue_flip;
9202 break;
8c9f3aaf 9203 }
e70236a8
JB
9204}
9205
b690e96c
JB
9206/*
9207 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
9208 * resume, or other times. This quirk makes sure that's the case for
9209 * affected systems.
9210 */
0206e353 9211static void quirk_pipea_force(struct drm_device *dev)
b690e96c
JB
9212{
9213 struct drm_i915_private *dev_priv = dev->dev_private;
9214
9215 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 9216 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
9217}
9218
435793df
KP
9219/*
9220 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
9221 */
9222static void quirk_ssc_force_disable(struct drm_device *dev)
9223{
9224 struct drm_i915_private *dev_priv = dev->dev_private;
9225 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 9226 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
9227}
9228
4dca20ef 9229/*
5a15ab5b
CE
9230 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
9231 * brightness value
4dca20ef
CE
9232 */
9233static void quirk_invert_brightness(struct drm_device *dev)
9234{
9235 struct drm_i915_private *dev_priv = dev->dev_private;
9236 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 9237 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
9238}
9239
b690e96c
JB
9240struct intel_quirk {
9241 int device;
9242 int subsystem_vendor;
9243 int subsystem_device;
9244 void (*hook)(struct drm_device *dev);
9245};
9246
5f85f176
EE
9247/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
9248struct intel_dmi_quirk {
9249 void (*hook)(struct drm_device *dev);
9250 const struct dmi_system_id (*dmi_id_list)[];
9251};
9252
9253static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
9254{
9255 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
9256 return 1;
9257}
9258
9259static const struct intel_dmi_quirk intel_dmi_quirks[] = {
9260 {
9261 .dmi_id_list = &(const struct dmi_system_id[]) {
9262 {
9263 .callback = intel_dmi_reverse_brightness,
9264 .ident = "NCR Corporation",
9265 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
9266 DMI_MATCH(DMI_PRODUCT_NAME, ""),
9267 },
9268 },
9269 { } /* terminating entry */
9270 },
9271 .hook = quirk_invert_brightness,
9272 },
9273};
9274
c43b5634 9275static struct intel_quirk intel_quirks[] = {
b690e96c 9276 /* HP Mini needs pipe A force quirk (LP: #322104) */
0206e353 9277 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
b690e96c 9278
b690e96c
JB
9279 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
9280 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
9281
b690e96c
JB
9282 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
9283 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
9284
ccd0d36e 9285 /* 830/845 need to leave pipe A & dpll A up */
b690e96c 9286 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
dcdaed6e 9287 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
435793df
KP
9288
9289 /* Lenovo U160 cannot use SSC on LVDS */
9290 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
9291
9292 /* Sony Vaio Y cannot use SSC on LVDS */
9293 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b
CE
9294
9295 /* Acer Aspire 5734Z must invert backlight brightness */
9296 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
1ffff603
JN
9297
9298 /* Acer/eMachines G725 */
9299 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
01e3a8fe
JN
9300
9301 /* Acer/eMachines e725 */
9302 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
5559ecad
JN
9303
9304 /* Acer/Packard Bell NCL20 */
9305 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
ac4199e0
DV
9306
9307 /* Acer Aspire 4736Z */
9308 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
b690e96c
JB
9309};
9310
9311static void intel_init_quirks(struct drm_device *dev)
9312{
9313 struct pci_dev *d = dev->pdev;
9314 int i;
9315
9316 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
9317 struct intel_quirk *q = &intel_quirks[i];
9318
9319 if (d->device == q->device &&
9320 (d->subsystem_vendor == q->subsystem_vendor ||
9321 q->subsystem_vendor == PCI_ANY_ID) &&
9322 (d->subsystem_device == q->subsystem_device ||
9323 q->subsystem_device == PCI_ANY_ID))
9324 q->hook(dev);
9325 }
5f85f176
EE
9326 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
9327 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
9328 intel_dmi_quirks[i].hook(dev);
9329 }
b690e96c
JB
9330}
9331
9cce37f4
JB
9332/* Disable the VGA plane that we never use */
9333static void i915_disable_vga(struct drm_device *dev)
9334{
9335 struct drm_i915_private *dev_priv = dev->dev_private;
9336 u8 sr1;
766aa1c4 9337 u32 vga_reg = i915_vgacntrl_reg(dev);
9cce37f4
JB
9338
9339 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 9340 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
9341 sr1 = inb(VGA_SR_DATA);
9342 outb(sr1 | 1<<5, VGA_SR_DATA);
9343 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
9344 udelay(300);
9345
9346 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
9347 POSTING_READ(vga_reg);
9348}
9349
f817586c
DV
9350void intel_modeset_init_hw(struct drm_device *dev)
9351{
fa42e23c 9352 intel_init_power_well(dev);
0232e927 9353
a8f78b58
ED
9354 intel_prepare_ddi(dev);
9355
f817586c
DV
9356 intel_init_clock_gating(dev);
9357
79f5b2c7 9358 mutex_lock(&dev->struct_mutex);
8090c6b9 9359 intel_enable_gt_powersave(dev);
79f5b2c7 9360 mutex_unlock(&dev->struct_mutex);
f817586c
DV
9361}
9362
7d708ee4
ID
9363void intel_modeset_suspend_hw(struct drm_device *dev)
9364{
9365 intel_suspend_hw(dev);
9366}
9367
79e53945
JB
9368void intel_modeset_init(struct drm_device *dev)
9369{
652c393a 9370 struct drm_i915_private *dev_priv = dev->dev_private;
7f1f3851 9371 int i, j, ret;
79e53945
JB
9372
9373 drm_mode_config_init(dev);
9374
9375 dev->mode_config.min_width = 0;
9376 dev->mode_config.min_height = 0;
9377
019d96cb
DA
9378 dev->mode_config.preferred_depth = 24;
9379 dev->mode_config.prefer_shadow = 1;
9380
e6ecefaa 9381 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 9382
b690e96c
JB
9383 intel_init_quirks(dev);
9384
1fa61106
ED
9385 intel_init_pm(dev);
9386
e3c74757
BW
9387 if (INTEL_INFO(dev)->num_pipes == 0)
9388 return;
9389
e70236a8
JB
9390 intel_init_display(dev);
9391
a6c45cf0
CW
9392 if (IS_GEN2(dev)) {
9393 dev->mode_config.max_width = 2048;
9394 dev->mode_config.max_height = 2048;
9395 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
9396 dev->mode_config.max_width = 4096;
9397 dev->mode_config.max_height = 4096;
79e53945 9398 } else {
a6c45cf0
CW
9399 dev->mode_config.max_width = 8192;
9400 dev->mode_config.max_height = 8192;
79e53945 9401 }
5d4545ae 9402 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
79e53945 9403
28c97730 9404 DRM_DEBUG_KMS("%d display pipe%s available.\n",
7eb552ae
BW
9405 INTEL_INFO(dev)->num_pipes,
9406 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
79e53945 9407
7eb552ae 9408 for (i = 0; i < INTEL_INFO(dev)->num_pipes; i++) {
79e53945 9409 intel_crtc_init(dev, i);
7f1f3851
JB
9410 for (j = 0; j < dev_priv->num_plane; j++) {
9411 ret = intel_plane_init(dev, i, j);
9412 if (ret)
06da8da2
VS
9413 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
9414 pipe_name(i), sprite_name(i, j), ret);
7f1f3851 9415 }
79e53945
JB
9416 }
9417
79f689aa 9418 intel_cpu_pll_init(dev);
e72f9fbf 9419 intel_shared_dpll_init(dev);
ee7b9f93 9420
9cce37f4
JB
9421 /* Just disable it once at startup */
9422 i915_disable_vga(dev);
79e53945 9423 intel_setup_outputs(dev);
11be49eb
CW
9424
9425 /* Just in case the BIOS is doing something questionable. */
9426 intel_disable_fbc(dev);
2c7111db
CW
9427}
9428
24929352
DV
9429static void
9430intel_connector_break_all_links(struct intel_connector *connector)
9431{
9432 connector->base.dpms = DRM_MODE_DPMS_OFF;
9433 connector->base.encoder = NULL;
9434 connector->encoder->connectors_active = false;
9435 connector->encoder->base.crtc = NULL;
9436}
9437
7fad798e
DV
9438static void intel_enable_pipe_a(struct drm_device *dev)
9439{
9440 struct intel_connector *connector;
9441 struct drm_connector *crt = NULL;
9442 struct intel_load_detect_pipe load_detect_temp;
9443
9444 /* We can't just switch on the pipe A, we need to set things up with a
9445 * proper mode and output configuration. As a gross hack, enable pipe A
9446 * by enabling the load detect pipe once. */
9447 list_for_each_entry(connector,
9448 &dev->mode_config.connector_list,
9449 base.head) {
9450 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
9451 crt = &connector->base;
9452 break;
9453 }
9454 }
9455
9456 if (!crt)
9457 return;
9458
9459 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
9460 intel_release_load_detect_pipe(crt, &load_detect_temp);
9461
652c393a 9462
7fad798e
DV
9463}
9464
fa555837
DV
9465static bool
9466intel_check_plane_mapping(struct intel_crtc *crtc)
9467{
7eb552ae
BW
9468 struct drm_device *dev = crtc->base.dev;
9469 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837
DV
9470 u32 reg, val;
9471
7eb552ae 9472 if (INTEL_INFO(dev)->num_pipes == 1)
fa555837
DV
9473 return true;
9474
9475 reg = DSPCNTR(!crtc->plane);
9476 val = I915_READ(reg);
9477
9478 if ((val & DISPLAY_PLANE_ENABLE) &&
9479 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
9480 return false;
9481
9482 return true;
9483}
9484
24929352
DV
9485static void intel_sanitize_crtc(struct intel_crtc *crtc)
9486{
9487 struct drm_device *dev = crtc->base.dev;
9488 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837 9489 u32 reg;
24929352 9490
24929352 9491 /* Clear any frame start delays used for debugging left by the BIOS */
3b117c8f 9492 reg = PIPECONF(crtc->config.cpu_transcoder);
24929352
DV
9493 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
9494
9495 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
9496 * disable the crtc (and hence change the state) if it is wrong. Note
9497 * that gen4+ has a fixed plane -> pipe mapping. */
9498 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
9499 struct intel_connector *connector;
9500 bool plane;
9501
24929352
DV
9502 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
9503 crtc->base.base.id);
9504
9505 /* Pipe has the wrong plane attached and the plane is active.
9506 * Temporarily change the plane mapping and disable everything
9507 * ... */
9508 plane = crtc->plane;
9509 crtc->plane = !plane;
9510 dev_priv->display.crtc_disable(&crtc->base);
9511 crtc->plane = plane;
9512
9513 /* ... and break all links. */
9514 list_for_each_entry(connector, &dev->mode_config.connector_list,
9515 base.head) {
9516 if (connector->encoder->base.crtc != &crtc->base)
9517 continue;
9518
9519 intel_connector_break_all_links(connector);
9520 }
9521
9522 WARN_ON(crtc->active);
9523 crtc->base.enabled = false;
9524 }
24929352 9525
7fad798e
DV
9526 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
9527 crtc->pipe == PIPE_A && !crtc->active) {
9528 /* BIOS forgot to enable pipe A, this mostly happens after
9529 * resume. Force-enable the pipe to fix this, the update_dpms
9530 * call below we restore the pipe to the right state, but leave
9531 * the required bits on. */
9532 intel_enable_pipe_a(dev);
9533 }
9534
24929352
DV
9535 /* Adjust the state of the output pipe according to whether we
9536 * have active connectors/encoders. */
9537 intel_crtc_update_dpms(&crtc->base);
9538
9539 if (crtc->active != crtc->base.enabled) {
9540 struct intel_encoder *encoder;
9541
9542 /* This can happen either due to bugs in the get_hw_state
9543 * functions or because the pipe is force-enabled due to the
9544 * pipe A quirk. */
9545 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
9546 crtc->base.base.id,
9547 crtc->base.enabled ? "enabled" : "disabled",
9548 crtc->active ? "enabled" : "disabled");
9549
9550 crtc->base.enabled = crtc->active;
9551
9552 /* Because we only establish the connector -> encoder ->
9553 * crtc links if something is active, this means the
9554 * crtc is now deactivated. Break the links. connector
9555 * -> encoder links are only establish when things are
9556 * actually up, hence no need to break them. */
9557 WARN_ON(crtc->active);
9558
9559 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
9560 WARN_ON(encoder->connectors_active);
9561 encoder->base.crtc = NULL;
9562 }
9563 }
9564}
9565
9566static void intel_sanitize_encoder(struct intel_encoder *encoder)
9567{
9568 struct intel_connector *connector;
9569 struct drm_device *dev = encoder->base.dev;
9570
9571 /* We need to check both for a crtc link (meaning that the
9572 * encoder is active and trying to read from a pipe) and the
9573 * pipe itself being active. */
9574 bool has_active_crtc = encoder->base.crtc &&
9575 to_intel_crtc(encoder->base.crtc)->active;
9576
9577 if (encoder->connectors_active && !has_active_crtc) {
9578 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
9579 encoder->base.base.id,
9580 drm_get_encoder_name(&encoder->base));
9581
9582 /* Connector is active, but has no active pipe. This is
9583 * fallout from our resume register restoring. Disable
9584 * the encoder manually again. */
9585 if (encoder->base.crtc) {
9586 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
9587 encoder->base.base.id,
9588 drm_get_encoder_name(&encoder->base));
9589 encoder->disable(encoder);
9590 }
9591
9592 /* Inconsistent output/port/pipe state happens presumably due to
9593 * a bug in one of the get_hw_state functions. Or someplace else
9594 * in our code, like the register restore mess on resume. Clamp
9595 * things to off as a safer default. */
9596 list_for_each_entry(connector,
9597 &dev->mode_config.connector_list,
9598 base.head) {
9599 if (connector->encoder != encoder)
9600 continue;
9601
9602 intel_connector_break_all_links(connector);
9603 }
9604 }
9605 /* Enabled encoders without active connectors will be fixed in
9606 * the crtc fixup. */
9607}
9608
44cec740 9609void i915_redisable_vga(struct drm_device *dev)
0fde901f
KM
9610{
9611 struct drm_i915_private *dev_priv = dev->dev_private;
766aa1c4 9612 u32 vga_reg = i915_vgacntrl_reg(dev);
0fde901f
KM
9613
9614 if (I915_READ(vga_reg) != VGA_DISP_DISABLE) {
9615 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
209d5211 9616 i915_disable_vga(dev);
0fde901f
KM
9617 }
9618}
9619
24929352
DV
9620/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
9621 * and i915 state tracking structures. */
45e2b5f6
DV
9622void intel_modeset_setup_hw_state(struct drm_device *dev,
9623 bool force_restore)
24929352
DV
9624{
9625 struct drm_i915_private *dev_priv = dev->dev_private;
9626 enum pipe pipe;
b5644d05 9627 struct drm_plane *plane;
24929352
DV
9628 struct intel_crtc *crtc;
9629 struct intel_encoder *encoder;
9630 struct intel_connector *connector;
9631
0e8ffe1b
DV
9632 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
9633 base.head) {
88adfff1 9634 memset(&crtc->config, 0, sizeof(crtc->config));
3b117c8f 9635
0e8ffe1b
DV
9636 crtc->active = dev_priv->display.get_pipe_config(crtc,
9637 &crtc->config);
24929352
DV
9638
9639 crtc->base.enabled = crtc->active;
9640
9641 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
9642 crtc->base.base.id,
9643 crtc->active ? "enabled" : "disabled");
9644 }
9645
affa9354 9646 if (HAS_DDI(dev))
6441ab5f
PZ
9647 intel_ddi_setup_hw_pll_state(dev);
9648
24929352
DV
9649 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9650 base.head) {
9651 pipe = 0;
9652
9653 if (encoder->get_hw_state(encoder, &pipe)) {
045ac3b5
JB
9654 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
9655 encoder->base.crtc = &crtc->base;
9656 if (encoder->get_config)
9657 encoder->get_config(encoder, &crtc->config);
24929352
DV
9658 } else {
9659 encoder->base.crtc = NULL;
9660 }
9661
9662 encoder->connectors_active = false;
9663 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n",
9664 encoder->base.base.id,
9665 drm_get_encoder_name(&encoder->base),
9666 encoder->base.crtc ? "enabled" : "disabled",
9667 pipe);
9668 }
9669
9670 list_for_each_entry(connector, &dev->mode_config.connector_list,
9671 base.head) {
9672 if (connector->get_hw_state(connector)) {
9673 connector->base.dpms = DRM_MODE_DPMS_ON;
9674 connector->encoder->connectors_active = true;
9675 connector->base.encoder = &connector->encoder->base;
9676 } else {
9677 connector->base.dpms = DRM_MODE_DPMS_OFF;
9678 connector->base.encoder = NULL;
9679 }
9680 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
9681 connector->base.base.id,
9682 drm_get_connector_name(&connector->base),
9683 connector->base.encoder ? "enabled" : "disabled");
9684 }
9685
9686 /* HW state is read out, now we need to sanitize this mess. */
9687 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9688 base.head) {
9689 intel_sanitize_encoder(encoder);
9690 }
9691
9692 for_each_pipe(pipe) {
9693 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
9694 intel_sanitize_crtc(crtc);
c0b03411 9695 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
24929352 9696 }
9a935856 9697
45e2b5f6 9698 if (force_restore) {
f30da187
DV
9699 /*
9700 * We need to use raw interfaces for restoring state to avoid
9701 * checking (bogus) intermediate states.
9702 */
45e2b5f6 9703 for_each_pipe(pipe) {
b5644d05
JB
9704 struct drm_crtc *crtc =
9705 dev_priv->pipe_to_crtc_mapping[pipe];
f30da187
DV
9706
9707 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
9708 crtc->fb);
45e2b5f6 9709 }
b5644d05
JB
9710 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
9711 intel_plane_restore(plane);
0fde901f
KM
9712
9713 i915_redisable_vga(dev);
45e2b5f6
DV
9714 } else {
9715 intel_modeset_update_staged_output_state(dev);
9716 }
8af6cf88
DV
9717
9718 intel_modeset_check_state(dev);
2e938892
DV
9719
9720 drm_mode_config_reset(dev);
2c7111db
CW
9721}
9722
9723void intel_modeset_gem_init(struct drm_device *dev)
9724{
1833b134 9725 intel_modeset_init_hw(dev);
02e792fb
DV
9726
9727 intel_setup_overlay(dev);
24929352 9728
45e2b5f6 9729 intel_modeset_setup_hw_state(dev, false);
79e53945
JB
9730}
9731
9732void intel_modeset_cleanup(struct drm_device *dev)
9733{
652c393a
JB
9734 struct drm_i915_private *dev_priv = dev->dev_private;
9735 struct drm_crtc *crtc;
9736 struct intel_crtc *intel_crtc;
9737
fd0c0642
DV
9738 /*
9739 * Interrupts and polling as the first thing to avoid creating havoc.
9740 * Too much stuff here (turning of rps, connectors, ...) would
9741 * experience fancy races otherwise.
9742 */
9743 drm_irq_uninstall(dev);
9744 cancel_work_sync(&dev_priv->hotplug_work);
9745 /*
9746 * Due to the hpd irq storm handling the hotplug work can re-arm the
9747 * poll handlers. Hence disable polling after hpd handling is shut down.
9748 */
f87ea761 9749 drm_kms_helper_poll_fini(dev);
fd0c0642 9750
652c393a
JB
9751 mutex_lock(&dev->struct_mutex);
9752
723bfd70
JB
9753 intel_unregister_dsm_handler();
9754
652c393a
JB
9755 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
9756 /* Skip inactive CRTCs */
9757 if (!crtc->fb)
9758 continue;
9759
9760 intel_crtc = to_intel_crtc(crtc);
3dec0095 9761 intel_increase_pllclock(crtc);
652c393a
JB
9762 }
9763
973d04f9 9764 intel_disable_fbc(dev);
e70236a8 9765
8090c6b9 9766 intel_disable_gt_powersave(dev);
0cdab21f 9767
930ebb46
DV
9768 ironlake_teardown_rc6(dev);
9769
69341a5e
KH
9770 mutex_unlock(&dev->struct_mutex);
9771
1630fe75
CW
9772 /* flush any delayed tasks or pending work */
9773 flush_scheduled_work();
9774
dc652f90
JN
9775 /* destroy backlight, if any, before the connectors */
9776 intel_panel_destroy_backlight(dev);
9777
79e53945 9778 drm_mode_config_cleanup(dev);
4d7bb011
DV
9779
9780 intel_cleanup_overlay(dev);
79e53945
JB
9781}
9782
f1c79df3
ZW
9783/*
9784 * Return which encoder is currently attached for connector.
9785 */
df0e9248 9786struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
79e53945 9787{
df0e9248
CW
9788 return &intel_attached_encoder(connector)->base;
9789}
f1c79df3 9790
df0e9248
CW
9791void intel_connector_attach_encoder(struct intel_connector *connector,
9792 struct intel_encoder *encoder)
9793{
9794 connector->encoder = encoder;
9795 drm_mode_connector_attach_encoder(&connector->base,
9796 &encoder->base);
79e53945 9797}
28d52043
DA
9798
9799/*
9800 * set vga decode state - true == enable VGA decode
9801 */
9802int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
9803{
9804 struct drm_i915_private *dev_priv = dev->dev_private;
9805 u16 gmch_ctrl;
9806
9807 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
9808 if (state)
9809 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
9810 else
9811 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
9812 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
9813 return 0;
9814}
c4a1d9e4
CW
9815
9816#ifdef CONFIG_DEBUG_FS
9817#include <linux/seq_file.h>
9818
9819struct intel_display_error_state {
ff57f1b0
PZ
9820
9821 u32 power_well_driver;
9822
c4a1d9e4
CW
9823 struct intel_cursor_error_state {
9824 u32 control;
9825 u32 position;
9826 u32 base;
9827 u32 size;
52331309 9828 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
9829
9830 struct intel_pipe_error_state {
ff57f1b0 9831 enum transcoder cpu_transcoder;
c4a1d9e4
CW
9832 u32 conf;
9833 u32 source;
9834
9835 u32 htotal;
9836 u32 hblank;
9837 u32 hsync;
9838 u32 vtotal;
9839 u32 vblank;
9840 u32 vsync;
52331309 9841 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
9842
9843 struct intel_plane_error_state {
9844 u32 control;
9845 u32 stride;
9846 u32 size;
9847 u32 pos;
9848 u32 addr;
9849 u32 surface;
9850 u32 tile_offset;
52331309 9851 } plane[I915_MAX_PIPES];
c4a1d9e4
CW
9852};
9853
9854struct intel_display_error_state *
9855intel_display_capture_error_state(struct drm_device *dev)
9856{
0206e353 9857 drm_i915_private_t *dev_priv = dev->dev_private;
c4a1d9e4 9858 struct intel_display_error_state *error;
702e7a56 9859 enum transcoder cpu_transcoder;
c4a1d9e4
CW
9860 int i;
9861
9862 error = kmalloc(sizeof(*error), GFP_ATOMIC);
9863 if (error == NULL)
9864 return NULL;
9865
ff57f1b0
PZ
9866 if (HAS_POWER_WELL(dev))
9867 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
9868
52331309 9869 for_each_pipe(i) {
702e7a56 9870 cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, i);
ff57f1b0 9871 error->pipe[i].cpu_transcoder = cpu_transcoder;
702e7a56 9872
a18c4c3d
PZ
9873 if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev)) {
9874 error->cursor[i].control = I915_READ(CURCNTR(i));
9875 error->cursor[i].position = I915_READ(CURPOS(i));
9876 error->cursor[i].base = I915_READ(CURBASE(i));
9877 } else {
9878 error->cursor[i].control = I915_READ(CURCNTR_IVB(i));
9879 error->cursor[i].position = I915_READ(CURPOS_IVB(i));
9880 error->cursor[i].base = I915_READ(CURBASE_IVB(i));
9881 }
c4a1d9e4
CW
9882
9883 error->plane[i].control = I915_READ(DSPCNTR(i));
9884 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
80ca378b 9885 if (INTEL_INFO(dev)->gen <= 3) {
51889b35 9886 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
9887 error->plane[i].pos = I915_READ(DSPPOS(i));
9888 }
ca291363
PZ
9889 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
9890 error->plane[i].addr = I915_READ(DSPADDR(i));
c4a1d9e4
CW
9891 if (INTEL_INFO(dev)->gen >= 4) {
9892 error->plane[i].surface = I915_READ(DSPSURF(i));
9893 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
9894 }
9895
702e7a56 9896 error->pipe[i].conf = I915_READ(PIPECONF(cpu_transcoder));
c4a1d9e4 9897 error->pipe[i].source = I915_READ(PIPESRC(i));
fe2b8f9d
PZ
9898 error->pipe[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
9899 error->pipe[i].hblank = I915_READ(HBLANK(cpu_transcoder));
9900 error->pipe[i].hsync = I915_READ(HSYNC(cpu_transcoder));
9901 error->pipe[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
9902 error->pipe[i].vblank = I915_READ(VBLANK(cpu_transcoder));
9903 error->pipe[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
9904 }
9905
12d217c7
PZ
9906 /* In the code above we read the registers without checking if the power
9907 * well was on, so here we have to clear the FPGA_DBG_RM_NOCLAIM bit to
9908 * prevent the next I915_WRITE from detecting it and printing an error
9909 * message. */
9910 if (HAS_POWER_WELL(dev))
9911 I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
9912
c4a1d9e4
CW
9913 return error;
9914}
9915
edc3d884
MK
9916#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
9917
c4a1d9e4 9918void
edc3d884 9919intel_display_print_error_state(struct drm_i915_error_state_buf *m,
c4a1d9e4
CW
9920 struct drm_device *dev,
9921 struct intel_display_error_state *error)
9922{
9923 int i;
9924
edc3d884 9925 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
ff57f1b0 9926 if (HAS_POWER_WELL(dev))
edc3d884 9927 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 9928 error->power_well_driver);
52331309 9929 for_each_pipe(i) {
edc3d884
MK
9930 err_printf(m, "Pipe [%d]:\n", i);
9931 err_printf(m, " CPU transcoder: %c\n",
ff57f1b0 9932 transcoder_name(error->pipe[i].cpu_transcoder));
edc3d884
MK
9933 err_printf(m, " CONF: %08x\n", error->pipe[i].conf);
9934 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
9935 err_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
9936 err_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
9937 err_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
9938 err_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
9939 err_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
9940 err_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
9941
9942 err_printf(m, "Plane [%d]:\n", i);
9943 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
9944 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
80ca378b 9945 if (INTEL_INFO(dev)->gen <= 3) {
edc3d884
MK
9946 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
9947 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 9948 }
4b71a570 9949 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
edc3d884 9950 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
c4a1d9e4 9951 if (INTEL_INFO(dev)->gen >= 4) {
edc3d884
MK
9952 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
9953 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
9954 }
9955
edc3d884
MK
9956 err_printf(m, "Cursor [%d]:\n", i);
9957 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
9958 err_printf(m, " POS: %08x\n", error->cursor[i].position);
9959 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4
CW
9960 }
9961}
9962#endif
This page took 1.859163 seconds and 5 git commands to generate.