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