]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/i915/intel_display.c
drm/i915: Extract i9xx_set_pll_dividers
[mirror_ubuntu-bionic-kernel.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
ef9348c8
CML
44#define DIV_ROUND_CLOSEST_ULL(ll, d) \
45 ({ unsigned long long _tmp = (ll)+(d)/2; do_div(_tmp, d); _tmp; })
46
3dec0095 47static void intel_increase_pllclock(struct drm_crtc *crtc);
6b383a7f 48static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
79e53945 49
f1f644dc
JB
50static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
51 struct intel_crtc_config *pipe_config);
18442d08
VS
52static void ironlake_pch_clock_get(struct intel_crtc *crtc,
53 struct intel_crtc_config *pipe_config);
f1f644dc 54
e7457a9a
DL
55static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
56 int x, int y, struct drm_framebuffer *old_fb);
eb1bfe80
JB
57static int intel_framebuffer_init(struct drm_device *dev,
58 struct intel_framebuffer *ifb,
59 struct drm_mode_fb_cmd2 *mode_cmd,
60 struct drm_i915_gem_object *obj);
5b18e57c
DV
61static void intel_dp_set_m_n(struct intel_crtc *crtc);
62static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
63static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
29407aab
DV
64static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
65 struct intel_link_m_n *m_n);
66static void ironlake_set_pipeconf(struct drm_crtc *crtc);
229fca97
DV
67static void haswell_set_pipeconf(struct drm_crtc *crtc);
68static void intel_set_pipe_csc(struct drm_crtc *crtc);
e7457a9a 69
79e53945 70typedef struct {
0206e353 71 int min, max;
79e53945
JB
72} intel_range_t;
73
74typedef struct {
0206e353
AJ
75 int dot_limit;
76 int p2_slow, p2_fast;
79e53945
JB
77} intel_p2_t;
78
d4906093
ML
79typedef struct intel_limit intel_limit_t;
80struct intel_limit {
0206e353
AJ
81 intel_range_t dot, vco, n, m, m1, m2, p, p1;
82 intel_p2_t p2;
d4906093 83};
79e53945 84
d2acd215
DV
85int
86intel_pch_rawclk(struct drm_device *dev)
87{
88 struct drm_i915_private *dev_priv = dev->dev_private;
89
90 WARN_ON(!HAS_PCH_SPLIT(dev));
91
92 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
93}
94
021357ac
CW
95static inline u32 /* units of 100MHz */
96intel_fdi_link_freq(struct drm_device *dev)
97{
8b99e68c
CW
98 if (IS_GEN5(dev)) {
99 struct drm_i915_private *dev_priv = dev->dev_private;
100 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
101 } else
102 return 27;
021357ac
CW
103}
104
5d536e28 105static const intel_limit_t intel_limits_i8xx_dac = {
0206e353 106 .dot = { .min = 25000, .max = 350000 },
9c333719 107 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 108 .n = { .min = 2, .max = 16 },
0206e353
AJ
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 },
273e27ca
EA
114 .p2 = { .dot_limit = 165000,
115 .p2_slow = 4, .p2_fast = 2 },
e4b36699
KP
116};
117
5d536e28
DV
118static const intel_limit_t intel_limits_i8xx_dvo = {
119 .dot = { .min = 25000, .max = 350000 },
9c333719 120 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 121 .n = { .min = 2, .max = 16 },
5d536e28
DV
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 = 2, .max = 33 },
127 .p2 = { .dot_limit = 165000,
128 .p2_slow = 4, .p2_fast = 4 },
129};
130
e4b36699 131static const intel_limit_t intel_limits_i8xx_lvds = {
0206e353 132 .dot = { .min = 25000, .max = 350000 },
9c333719 133 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 134 .n = { .min = 2, .max = 16 },
0206e353
AJ
135 .m = { .min = 96, .max = 140 },
136 .m1 = { .min = 18, .max = 26 },
137 .m2 = { .min = 6, .max = 16 },
138 .p = { .min = 4, .max = 128 },
139 .p1 = { .min = 1, .max = 6 },
273e27ca
EA
140 .p2 = { .dot_limit = 165000,
141 .p2_slow = 14, .p2_fast = 7 },
e4b36699 142};
273e27ca 143
e4b36699 144static const intel_limit_t intel_limits_i9xx_sdvo = {
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 },
4f7dfb67
PJ
149 .m1 = { .min = 8, .max = 18 },
150 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
151 .p = { .min = 5, .max = 80 },
152 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
153 .p2 = { .dot_limit = 200000,
154 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
155};
156
157static const intel_limit_t intel_limits_i9xx_lvds = {
0206e353
AJ
158 .dot = { .min = 20000, .max = 400000 },
159 .vco = { .min = 1400000, .max = 2800000 },
160 .n = { .min = 1, .max = 6 },
161 .m = { .min = 70, .max = 120 },
53a7d2d1
PJ
162 .m1 = { .min = 8, .max = 18 },
163 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
164 .p = { .min = 7, .max = 98 },
165 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
166 .p2 = { .dot_limit = 112000,
167 .p2_slow = 14, .p2_fast = 7 },
e4b36699
KP
168};
169
273e27ca 170
e4b36699 171static const intel_limit_t intel_limits_g4x_sdvo = {
273e27ca
EA
172 .dot = { .min = 25000, .max = 270000 },
173 .vco = { .min = 1750000, .max = 3500000},
174 .n = { .min = 1, .max = 4 },
175 .m = { .min = 104, .max = 138 },
176 .m1 = { .min = 17, .max = 23 },
177 .m2 = { .min = 5, .max = 11 },
178 .p = { .min = 10, .max = 30 },
179 .p1 = { .min = 1, .max = 3},
180 .p2 = { .dot_limit = 270000,
181 .p2_slow = 10,
182 .p2_fast = 10
044c7c41 183 },
e4b36699
KP
184};
185
186static const intel_limit_t intel_limits_g4x_hdmi = {
273e27ca
EA
187 .dot = { .min = 22000, .max = 400000 },
188 .vco = { .min = 1750000, .max = 3500000},
189 .n = { .min = 1, .max = 4 },
190 .m = { .min = 104, .max = 138 },
191 .m1 = { .min = 16, .max = 23 },
192 .m2 = { .min = 5, .max = 11 },
193 .p = { .min = 5, .max = 80 },
194 .p1 = { .min = 1, .max = 8},
195 .p2 = { .dot_limit = 165000,
196 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
197};
198
199static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
273e27ca
EA
200 .dot = { .min = 20000, .max = 115000 },
201 .vco = { .min = 1750000, .max = 3500000 },
202 .n = { .min = 1, .max = 3 },
203 .m = { .min = 104, .max = 138 },
204 .m1 = { .min = 17, .max = 23 },
205 .m2 = { .min = 5, .max = 11 },
206 .p = { .min = 28, .max = 112 },
207 .p1 = { .min = 2, .max = 8 },
208 .p2 = { .dot_limit = 0,
209 .p2_slow = 14, .p2_fast = 14
044c7c41 210 },
e4b36699
KP
211};
212
213static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
273e27ca
EA
214 .dot = { .min = 80000, .max = 224000 },
215 .vco = { .min = 1750000, .max = 3500000 },
216 .n = { .min = 1, .max = 3 },
217 .m = { .min = 104, .max = 138 },
218 .m1 = { .min = 17, .max = 23 },
219 .m2 = { .min = 5, .max = 11 },
220 .p = { .min = 14, .max = 42 },
221 .p1 = { .min = 2, .max = 6 },
222 .p2 = { .dot_limit = 0,
223 .p2_slow = 7, .p2_fast = 7
044c7c41 224 },
e4b36699
KP
225};
226
f2b115e6 227static const intel_limit_t intel_limits_pineview_sdvo = {
0206e353
AJ
228 .dot = { .min = 20000, .max = 400000},
229 .vco = { .min = 1700000, .max = 3500000 },
273e27ca 230 /* Pineview's Ncounter is a ring counter */
0206e353
AJ
231 .n = { .min = 3, .max = 6 },
232 .m = { .min = 2, .max = 256 },
273e27ca 233 /* Pineview only has one combined m divider, which we treat as m2. */
0206e353
AJ
234 .m1 = { .min = 0, .max = 0 },
235 .m2 = { .min = 0, .max = 254 },
236 .p = { .min = 5, .max = 80 },
237 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
238 .p2 = { .dot_limit = 200000,
239 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
240};
241
f2b115e6 242static const intel_limit_t intel_limits_pineview_lvds = {
0206e353
AJ
243 .dot = { .min = 20000, .max = 400000 },
244 .vco = { .min = 1700000, .max = 3500000 },
245 .n = { .min = 3, .max = 6 },
246 .m = { .min = 2, .max = 256 },
247 .m1 = { .min = 0, .max = 0 },
248 .m2 = { .min = 0, .max = 254 },
249 .p = { .min = 7, .max = 112 },
250 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
251 .p2 = { .dot_limit = 112000,
252 .p2_slow = 14, .p2_fast = 14 },
e4b36699
KP
253};
254
273e27ca
EA
255/* Ironlake / Sandybridge
256 *
257 * We calculate clock using (register_value + 2) for N/M1/M2, so here
258 * the range value for them is (actual_value - 2).
259 */
b91ad0ec 260static const intel_limit_t intel_limits_ironlake_dac = {
273e27ca
EA
261 .dot = { .min = 25000, .max = 350000 },
262 .vco = { .min = 1760000, .max = 3510000 },
263 .n = { .min = 1, .max = 5 },
264 .m = { .min = 79, .max = 127 },
265 .m1 = { .min = 12, .max = 22 },
266 .m2 = { .min = 5, .max = 9 },
267 .p = { .min = 5, .max = 80 },
268 .p1 = { .min = 1, .max = 8 },
269 .p2 = { .dot_limit = 225000,
270 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
271};
272
b91ad0ec 273static const intel_limit_t intel_limits_ironlake_single_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 = 118 },
278 .m1 = { .min = 12, .max = 22 },
279 .m2 = { .min = 5, .max = 9 },
280 .p = { .min = 28, .max = 112 },
281 .p1 = { .min = 2, .max = 8 },
282 .p2 = { .dot_limit = 225000,
283 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
284};
285
286static const intel_limit_t intel_limits_ironlake_dual_lvds = {
273e27ca
EA
287 .dot = { .min = 25000, .max = 350000 },
288 .vco = { .min = 1760000, .max = 3510000 },
289 .n = { .min = 1, .max = 3 },
290 .m = { .min = 79, .max = 127 },
291 .m1 = { .min = 12, .max = 22 },
292 .m2 = { .min = 5, .max = 9 },
293 .p = { .min = 14, .max = 56 },
294 .p1 = { .min = 2, .max = 8 },
295 .p2 = { .dot_limit = 225000,
296 .p2_slow = 7, .p2_fast = 7 },
b91ad0ec
ZW
297};
298
273e27ca 299/* LVDS 100mhz refclk limits. */
b91ad0ec 300static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
273e27ca
EA
301 .dot = { .min = 25000, .max = 350000 },
302 .vco = { .min = 1760000, .max = 3510000 },
303 .n = { .min = 1, .max = 2 },
304 .m = { .min = 79, .max = 126 },
305 .m1 = { .min = 12, .max = 22 },
306 .m2 = { .min = 5, .max = 9 },
307 .p = { .min = 28, .max = 112 },
0206e353 308 .p1 = { .min = 2, .max = 8 },
273e27ca
EA
309 .p2 = { .dot_limit = 225000,
310 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
311};
312
313static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
273e27ca
EA
314 .dot = { .min = 25000, .max = 350000 },
315 .vco = { .min = 1760000, .max = 3510000 },
316 .n = { .min = 1, .max = 3 },
317 .m = { .min = 79, .max = 126 },
318 .m1 = { .min = 12, .max = 22 },
319 .m2 = { .min = 5, .max = 9 },
320 .p = { .min = 14, .max = 42 },
0206e353 321 .p1 = { .min = 2, .max = 6 },
273e27ca
EA
322 .p2 = { .dot_limit = 225000,
323 .p2_slow = 7, .p2_fast = 7 },
4547668a
ZY
324};
325
dc730512 326static const intel_limit_t intel_limits_vlv = {
f01b7962
VS
327 /*
328 * These are the data rate limits (measured in fast clocks)
329 * since those are the strictest limits we have. The fast
330 * clock and actual rate limits are more relaxed, so checking
331 * them would make no difference.
332 */
333 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
75e53986 334 .vco = { .min = 4000000, .max = 6000000 },
a0c4da24 335 .n = { .min = 1, .max = 7 },
a0c4da24
JB
336 .m1 = { .min = 2, .max = 3 },
337 .m2 = { .min = 11, .max = 156 },
b99ab663 338 .p1 = { .min = 2, .max = 3 },
5fdc9c49 339 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
a0c4da24
JB
340};
341
ef9348c8
CML
342static const intel_limit_t intel_limits_chv = {
343 /*
344 * These are the data rate limits (measured in fast clocks)
345 * since those are the strictest limits we have. The fast
346 * clock and actual rate limits are more relaxed, so checking
347 * them would make no difference.
348 */
349 .dot = { .min = 25000 * 5, .max = 540000 * 5},
350 .vco = { .min = 4860000, .max = 6700000 },
351 .n = { .min = 1, .max = 1 },
352 .m1 = { .min = 2, .max = 2 },
353 .m2 = { .min = 24 << 22, .max = 175 << 22 },
354 .p1 = { .min = 2, .max = 4 },
355 .p2 = { .p2_slow = 1, .p2_fast = 14 },
356};
357
6b4bf1c4
VS
358static void vlv_clock(int refclk, intel_clock_t *clock)
359{
360 clock->m = clock->m1 * clock->m2;
361 clock->p = clock->p1 * clock->p2;
ed5ca77e
VS
362 if (WARN_ON(clock->n == 0 || clock->p == 0))
363 return;
fb03ac01
VS
364 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
365 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
6b4bf1c4
VS
366}
367
e0638cdf
PZ
368/**
369 * Returns whether any output on the specified pipe is of the specified type
370 */
371static bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
372{
373 struct drm_device *dev = crtc->dev;
374 struct intel_encoder *encoder;
375
376 for_each_encoder_on_crtc(dev, crtc, encoder)
377 if (encoder->type == type)
378 return true;
379
380 return false;
381}
382
1b894b59
CW
383static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
384 int refclk)
2c07245f 385{
b91ad0ec 386 struct drm_device *dev = crtc->dev;
2c07245f 387 const intel_limit_t *limit;
b91ad0ec
ZW
388
389 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 390 if (intel_is_dual_link_lvds(dev)) {
1b894b59 391 if (refclk == 100000)
b91ad0ec
ZW
392 limit = &intel_limits_ironlake_dual_lvds_100m;
393 else
394 limit = &intel_limits_ironlake_dual_lvds;
395 } else {
1b894b59 396 if (refclk == 100000)
b91ad0ec
ZW
397 limit = &intel_limits_ironlake_single_lvds_100m;
398 else
399 limit = &intel_limits_ironlake_single_lvds;
400 }
c6bb3538 401 } else
b91ad0ec 402 limit = &intel_limits_ironlake_dac;
2c07245f
ZW
403
404 return limit;
405}
406
044c7c41
ML
407static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
408{
409 struct drm_device *dev = crtc->dev;
044c7c41
ML
410 const intel_limit_t *limit;
411
412 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 413 if (intel_is_dual_link_lvds(dev))
e4b36699 414 limit = &intel_limits_g4x_dual_channel_lvds;
044c7c41 415 else
e4b36699 416 limit = &intel_limits_g4x_single_channel_lvds;
044c7c41
ML
417 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
418 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
e4b36699 419 limit = &intel_limits_g4x_hdmi;
044c7c41 420 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
e4b36699 421 limit = &intel_limits_g4x_sdvo;
044c7c41 422 } else /* The option is for other outputs */
e4b36699 423 limit = &intel_limits_i9xx_sdvo;
044c7c41
ML
424
425 return limit;
426}
427
1b894b59 428static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
79e53945
JB
429{
430 struct drm_device *dev = crtc->dev;
431 const intel_limit_t *limit;
432
bad720ff 433 if (HAS_PCH_SPLIT(dev))
1b894b59 434 limit = intel_ironlake_limit(crtc, refclk);
2c07245f 435 else if (IS_G4X(dev)) {
044c7c41 436 limit = intel_g4x_limit(crtc);
f2b115e6 437 } else if (IS_PINEVIEW(dev)) {
2177832f 438 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
f2b115e6 439 limit = &intel_limits_pineview_lvds;
2177832f 440 else
f2b115e6 441 limit = &intel_limits_pineview_sdvo;
ef9348c8
CML
442 } else if (IS_CHERRYVIEW(dev)) {
443 limit = &intel_limits_chv;
a0c4da24 444 } else if (IS_VALLEYVIEW(dev)) {
dc730512 445 limit = &intel_limits_vlv;
a6c45cf0
CW
446 } else if (!IS_GEN2(dev)) {
447 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
448 limit = &intel_limits_i9xx_lvds;
449 else
450 limit = &intel_limits_i9xx_sdvo;
79e53945
JB
451 } else {
452 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
e4b36699 453 limit = &intel_limits_i8xx_lvds;
5d536e28 454 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO))
e4b36699 455 limit = &intel_limits_i8xx_dvo;
5d536e28
DV
456 else
457 limit = &intel_limits_i8xx_dac;
79e53945
JB
458 }
459 return limit;
460}
461
f2b115e6
AJ
462/* m1 is reserved as 0 in Pineview, n is a ring counter */
463static void pineview_clock(int refclk, intel_clock_t *clock)
79e53945 464{
2177832f
SL
465 clock->m = clock->m2 + 2;
466 clock->p = clock->p1 * clock->p2;
ed5ca77e
VS
467 if (WARN_ON(clock->n == 0 || clock->p == 0))
468 return;
fb03ac01
VS
469 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
470 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
2177832f
SL
471}
472
7429e9d4
DV
473static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
474{
475 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
476}
477
ac58c3f0 478static void i9xx_clock(int refclk, intel_clock_t *clock)
2177832f 479{
7429e9d4 480 clock->m = i9xx_dpll_compute_m(clock);
79e53945 481 clock->p = clock->p1 * clock->p2;
ed5ca77e
VS
482 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
483 return;
fb03ac01
VS
484 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
485 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
79e53945
JB
486}
487
ef9348c8
CML
488static void chv_clock(int refclk, intel_clock_t *clock)
489{
490 clock->m = clock->m1 * clock->m2;
491 clock->p = clock->p1 * clock->p2;
492 if (WARN_ON(clock->n == 0 || clock->p == 0))
493 return;
494 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
495 clock->n << 22);
496 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
497}
498
7c04d1d9 499#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
79e53945
JB
500/**
501 * Returns whether the given set of divisors are valid for a given refclk with
502 * the given connectors.
503 */
504
1b894b59
CW
505static bool intel_PLL_is_valid(struct drm_device *dev,
506 const intel_limit_t *limit,
507 const intel_clock_t *clock)
79e53945 508{
f01b7962
VS
509 if (clock->n < limit->n.min || limit->n.max < clock->n)
510 INTELPllInvalid("n out of range\n");
79e53945 511 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
0206e353 512 INTELPllInvalid("p1 out of range\n");
79e53945 513 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
0206e353 514 INTELPllInvalid("m2 out of range\n");
79e53945 515 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
0206e353 516 INTELPllInvalid("m1 out of range\n");
f01b7962
VS
517
518 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
519 if (clock->m1 <= clock->m2)
520 INTELPllInvalid("m1 <= m2\n");
521
522 if (!IS_VALLEYVIEW(dev)) {
523 if (clock->p < limit->p.min || limit->p.max < clock->p)
524 INTELPllInvalid("p out of range\n");
525 if (clock->m < limit->m.min || limit->m.max < clock->m)
526 INTELPllInvalid("m out of range\n");
527 }
528
79e53945 529 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
0206e353 530 INTELPllInvalid("vco out of range\n");
79e53945
JB
531 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
532 * connector, etc., rather than just a single range.
533 */
534 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
0206e353 535 INTELPllInvalid("dot out of range\n");
79e53945
JB
536
537 return true;
538}
539
d4906093 540static bool
ee9300bb 541i9xx_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
cec2f356
SP
542 int target, int refclk, intel_clock_t *match_clock,
543 intel_clock_t *best_clock)
79e53945
JB
544{
545 struct drm_device *dev = crtc->dev;
79e53945 546 intel_clock_t clock;
79e53945
JB
547 int err = target;
548
a210b028 549 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
79e53945 550 /*
a210b028
DV
551 * For LVDS just rely on its current settings for dual-channel.
552 * We haven't figured out how to reliably set up different
553 * single/dual channel state, if we even can.
79e53945 554 */
1974cad0 555 if (intel_is_dual_link_lvds(dev))
79e53945
JB
556 clock.p2 = limit->p2.p2_fast;
557 else
558 clock.p2 = limit->p2.p2_slow;
559 } else {
560 if (target < limit->p2.dot_limit)
561 clock.p2 = limit->p2.p2_slow;
562 else
563 clock.p2 = limit->p2.p2_fast;
564 }
565
0206e353 566 memset(best_clock, 0, sizeof(*best_clock));
79e53945 567
42158660
ZY
568 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
569 clock.m1++) {
570 for (clock.m2 = limit->m2.min;
571 clock.m2 <= limit->m2.max; clock.m2++) {
c0efc387 572 if (clock.m2 >= clock.m1)
42158660
ZY
573 break;
574 for (clock.n = limit->n.min;
575 clock.n <= limit->n.max; clock.n++) {
576 for (clock.p1 = limit->p1.min;
577 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
578 int this_err;
579
ac58c3f0
DV
580 i9xx_clock(refclk, &clock);
581 if (!intel_PLL_is_valid(dev, limit,
582 &clock))
583 continue;
584 if (match_clock &&
585 clock.p != match_clock->p)
586 continue;
587
588 this_err = abs(clock.dot - target);
589 if (this_err < err) {
590 *best_clock = clock;
591 err = this_err;
592 }
593 }
594 }
595 }
596 }
597
598 return (err != target);
599}
600
601static bool
ee9300bb
DV
602pnv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
603 int target, int refclk, intel_clock_t *match_clock,
604 intel_clock_t *best_clock)
79e53945
JB
605{
606 struct drm_device *dev = crtc->dev;
79e53945 607 intel_clock_t clock;
79e53945
JB
608 int err = target;
609
a210b028 610 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
79e53945 611 /*
a210b028
DV
612 * For LVDS just rely on its current settings for dual-channel.
613 * We haven't figured out how to reliably set up different
614 * single/dual channel state, if we even can.
79e53945 615 */
1974cad0 616 if (intel_is_dual_link_lvds(dev))
79e53945
JB
617 clock.p2 = limit->p2.p2_fast;
618 else
619 clock.p2 = limit->p2.p2_slow;
620 } else {
621 if (target < limit->p2.dot_limit)
622 clock.p2 = limit->p2.p2_slow;
623 else
624 clock.p2 = limit->p2.p2_fast;
625 }
626
0206e353 627 memset(best_clock, 0, sizeof(*best_clock));
79e53945 628
42158660
ZY
629 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
630 clock.m1++) {
631 for (clock.m2 = limit->m2.min;
632 clock.m2 <= limit->m2.max; clock.m2++) {
42158660
ZY
633 for (clock.n = limit->n.min;
634 clock.n <= limit->n.max; clock.n++) {
635 for (clock.p1 = limit->p1.min;
636 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
637 int this_err;
638
ac58c3f0 639 pineview_clock(refclk, &clock);
1b894b59
CW
640 if (!intel_PLL_is_valid(dev, limit,
641 &clock))
79e53945 642 continue;
cec2f356
SP
643 if (match_clock &&
644 clock.p != match_clock->p)
645 continue;
79e53945
JB
646
647 this_err = abs(clock.dot - target);
648 if (this_err < err) {
649 *best_clock = clock;
650 err = this_err;
651 }
652 }
653 }
654 }
655 }
656
657 return (err != target);
658}
659
d4906093 660static bool
ee9300bb
DV
661g4x_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
662 int target, int refclk, intel_clock_t *match_clock,
663 intel_clock_t *best_clock)
d4906093
ML
664{
665 struct drm_device *dev = crtc->dev;
d4906093
ML
666 intel_clock_t clock;
667 int max_n;
668 bool found;
6ba770dc
AJ
669 /* approximately equals target * 0.00585 */
670 int err_most = (target >> 8) + (target >> 9);
d4906093
ML
671 found = false;
672
673 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 674 if (intel_is_dual_link_lvds(dev))
d4906093
ML
675 clock.p2 = limit->p2.p2_fast;
676 else
677 clock.p2 = limit->p2.p2_slow;
678 } else {
679 if (target < limit->p2.dot_limit)
680 clock.p2 = limit->p2.p2_slow;
681 else
682 clock.p2 = limit->p2.p2_fast;
683 }
684
685 memset(best_clock, 0, sizeof(*best_clock));
686 max_n = limit->n.max;
f77f13e2 687 /* based on hardware requirement, prefer smaller n to precision */
d4906093 688 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
f77f13e2 689 /* based on hardware requirement, prefere larger m1,m2 */
d4906093
ML
690 for (clock.m1 = limit->m1.max;
691 clock.m1 >= limit->m1.min; clock.m1--) {
692 for (clock.m2 = limit->m2.max;
693 clock.m2 >= limit->m2.min; clock.m2--) {
694 for (clock.p1 = limit->p1.max;
695 clock.p1 >= limit->p1.min; clock.p1--) {
696 int this_err;
697
ac58c3f0 698 i9xx_clock(refclk, &clock);
1b894b59
CW
699 if (!intel_PLL_is_valid(dev, limit,
700 &clock))
d4906093 701 continue;
1b894b59
CW
702
703 this_err = abs(clock.dot - target);
d4906093
ML
704 if (this_err < err_most) {
705 *best_clock = clock;
706 err_most = this_err;
707 max_n = clock.n;
708 found = true;
709 }
710 }
711 }
712 }
713 }
2c07245f
ZW
714 return found;
715}
716
a0c4da24 717static bool
ee9300bb
DV
718vlv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
719 int target, int refclk, intel_clock_t *match_clock,
720 intel_clock_t *best_clock)
a0c4da24 721{
f01b7962 722 struct drm_device *dev = crtc->dev;
6b4bf1c4 723 intel_clock_t clock;
69e4f900 724 unsigned int bestppm = 1000000;
27e639bf
VS
725 /* min update 19.2 MHz */
726 int max_n = min(limit->n.max, refclk / 19200);
49e497ef 727 bool found = false;
a0c4da24 728
6b4bf1c4
VS
729 target *= 5; /* fast clock */
730
731 memset(best_clock, 0, sizeof(*best_clock));
a0c4da24
JB
732
733 /* based on hardware requirement, prefer smaller n to precision */
27e639bf 734 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
811bbf05 735 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
889059d8 736 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
c1a9ae43 737 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
6b4bf1c4 738 clock.p = clock.p1 * clock.p2;
a0c4da24 739 /* based on hardware requirement, prefer bigger m1,m2 values */
6b4bf1c4 740 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
69e4f900
VS
741 unsigned int ppm, diff;
742
6b4bf1c4
VS
743 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
744 refclk * clock.m1);
745
746 vlv_clock(refclk, &clock);
43b0ac53 747
f01b7962
VS
748 if (!intel_PLL_is_valid(dev, limit,
749 &clock))
43b0ac53
VS
750 continue;
751
6b4bf1c4
VS
752 diff = abs(clock.dot - target);
753 ppm = div_u64(1000000ULL * diff, target);
754
755 if (ppm < 100 && clock.p > best_clock->p) {
43b0ac53 756 bestppm = 0;
6b4bf1c4 757 *best_clock = clock;
49e497ef 758 found = true;
43b0ac53 759 }
6b4bf1c4 760
c686122c 761 if (bestppm >= 10 && ppm < bestppm - 10) {
69e4f900 762 bestppm = ppm;
6b4bf1c4 763 *best_clock = clock;
49e497ef 764 found = true;
a0c4da24
JB
765 }
766 }
767 }
768 }
769 }
a0c4da24 770
49e497ef 771 return found;
a0c4da24 772}
a4fc5ed6 773
ef9348c8
CML
774static bool
775chv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
776 int target, int refclk, intel_clock_t *match_clock,
777 intel_clock_t *best_clock)
778{
779 struct drm_device *dev = crtc->dev;
780 intel_clock_t clock;
781 uint64_t m2;
782 int found = false;
783
784 memset(best_clock, 0, sizeof(*best_clock));
785
786 /*
787 * Based on hardware doc, the n always set to 1, and m1 always
788 * set to 2. If requires to support 200Mhz refclk, we need to
789 * revisit this because n may not 1 anymore.
790 */
791 clock.n = 1, clock.m1 = 2;
792 target *= 5; /* fast clock */
793
794 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
795 for (clock.p2 = limit->p2.p2_fast;
796 clock.p2 >= limit->p2.p2_slow;
797 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
798
799 clock.p = clock.p1 * clock.p2;
800
801 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
802 clock.n) << 22, refclk * clock.m1);
803
804 if (m2 > INT_MAX/clock.m1)
805 continue;
806
807 clock.m2 = m2;
808
809 chv_clock(refclk, &clock);
810
811 if (!intel_PLL_is_valid(dev, limit, &clock))
812 continue;
813
814 /* based on hardware requirement, prefer bigger p
815 */
816 if (clock.p > best_clock->p) {
817 *best_clock = clock;
818 found = true;
819 }
820 }
821 }
822
823 return found;
824}
825
20ddf665
VS
826bool intel_crtc_active(struct drm_crtc *crtc)
827{
828 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
829
830 /* Be paranoid as we can arrive here with only partial
831 * state retrieved from the hardware during setup.
832 *
241bfc38 833 * We can ditch the adjusted_mode.crtc_clock check as soon
20ddf665
VS
834 * as Haswell has gained clock readout/fastboot support.
835 *
66e514c1 836 * We can ditch the crtc->primary->fb check as soon as we can
20ddf665
VS
837 * properly reconstruct framebuffers.
838 */
f4510a27 839 return intel_crtc->active && crtc->primary->fb &&
241bfc38 840 intel_crtc->config.adjusted_mode.crtc_clock;
20ddf665
VS
841}
842
a5c961d1
PZ
843enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
844 enum pipe pipe)
845{
846 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
847 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
848
3b117c8f 849 return intel_crtc->config.cpu_transcoder;
a5c961d1
PZ
850}
851
57e22f4a 852static void g4x_wait_for_vblank(struct drm_device *dev, int pipe)
a928d536
PZ
853{
854 struct drm_i915_private *dev_priv = dev->dev_private;
57e22f4a 855 u32 frame, frame_reg = PIPE_FRMCOUNT_GM45(pipe);
a928d536
PZ
856
857 frame = I915_READ(frame_reg);
858
859 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
93937071 860 WARN(1, "vblank wait timed out\n");
a928d536
PZ
861}
862
9d0498a2
JB
863/**
864 * intel_wait_for_vblank - wait for vblank on a given pipe
865 * @dev: drm device
866 * @pipe: pipe to wait for
867 *
868 * Wait for vblank to occur on a given pipe. Needed for various bits of
869 * mode setting code.
870 */
871void intel_wait_for_vblank(struct drm_device *dev, int pipe)
79e53945 872{
9d0498a2 873 struct drm_i915_private *dev_priv = dev->dev_private;
9db4a9c7 874 int pipestat_reg = PIPESTAT(pipe);
9d0498a2 875
57e22f4a
VS
876 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
877 g4x_wait_for_vblank(dev, pipe);
a928d536
PZ
878 return;
879 }
880
300387c0
CW
881 /* Clear existing vblank status. Note this will clear any other
882 * sticky status fields as well.
883 *
884 * This races with i915_driver_irq_handler() with the result
885 * that either function could miss a vblank event. Here it is not
886 * fatal, as we will either wait upon the next vblank interrupt or
887 * timeout. Generally speaking intel_wait_for_vblank() is only
888 * called during modeset at which time the GPU should be idle and
889 * should *not* be performing page flips and thus not waiting on
890 * vblanks...
891 * Currently, the result of us stealing a vblank from the irq
892 * handler is that a single frame will be skipped during swapbuffers.
893 */
894 I915_WRITE(pipestat_reg,
895 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
896
9d0498a2 897 /* Wait for vblank interrupt bit to set */
481b6af3
CW
898 if (wait_for(I915_READ(pipestat_reg) &
899 PIPE_VBLANK_INTERRUPT_STATUS,
900 50))
9d0498a2
JB
901 DRM_DEBUG_KMS("vblank wait timed out\n");
902}
903
fbf49ea2
VS
904static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
905{
906 struct drm_i915_private *dev_priv = dev->dev_private;
907 u32 reg = PIPEDSL(pipe);
908 u32 line1, line2;
909 u32 line_mask;
910
911 if (IS_GEN2(dev))
912 line_mask = DSL_LINEMASK_GEN2;
913 else
914 line_mask = DSL_LINEMASK_GEN3;
915
916 line1 = I915_READ(reg) & line_mask;
917 mdelay(5);
918 line2 = I915_READ(reg) & line_mask;
919
920 return line1 == line2;
921}
922
ab7ad7f6
KP
923/*
924 * intel_wait_for_pipe_off - wait for pipe to turn off
9d0498a2
JB
925 * @dev: drm device
926 * @pipe: pipe to wait for
927 *
928 * After disabling a pipe, we can't wait for vblank in the usual way,
929 * spinning on the vblank interrupt status bit, since we won't actually
930 * see an interrupt when the pipe is disabled.
931 *
ab7ad7f6
KP
932 * On Gen4 and above:
933 * wait for the pipe register state bit to turn off
934 *
935 * Otherwise:
936 * wait for the display line value to settle (it usually
937 * ends up stopping at the start of the next frame).
58e10eb9 938 *
9d0498a2 939 */
58e10eb9 940void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
9d0498a2
JB
941{
942 struct drm_i915_private *dev_priv = dev->dev_private;
702e7a56
PZ
943 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
944 pipe);
ab7ad7f6
KP
945
946 if (INTEL_INFO(dev)->gen >= 4) {
702e7a56 947 int reg = PIPECONF(cpu_transcoder);
ab7ad7f6
KP
948
949 /* Wait for the Pipe State to go off */
58e10eb9
CW
950 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
951 100))
284637d9 952 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 953 } else {
ab7ad7f6 954 /* Wait for the display line to settle */
fbf49ea2 955 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
284637d9 956 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 957 }
79e53945
JB
958}
959
b0ea7d37
DL
960/*
961 * ibx_digital_port_connected - is the specified port connected?
962 * @dev_priv: i915 private structure
963 * @port: the port to test
964 *
965 * Returns true if @port is connected, false otherwise.
966 */
967bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
968 struct intel_digital_port *port)
969{
970 u32 bit;
971
c36346e3 972 if (HAS_PCH_IBX(dev_priv->dev)) {
eba905b2 973 switch (port->port) {
c36346e3
DL
974 case PORT_B:
975 bit = SDE_PORTB_HOTPLUG;
976 break;
977 case PORT_C:
978 bit = SDE_PORTC_HOTPLUG;
979 break;
980 case PORT_D:
981 bit = SDE_PORTD_HOTPLUG;
982 break;
983 default:
984 return true;
985 }
986 } else {
eba905b2 987 switch (port->port) {
c36346e3
DL
988 case PORT_B:
989 bit = SDE_PORTB_HOTPLUG_CPT;
990 break;
991 case PORT_C:
992 bit = SDE_PORTC_HOTPLUG_CPT;
993 break;
994 case PORT_D:
995 bit = SDE_PORTD_HOTPLUG_CPT;
996 break;
997 default:
998 return true;
999 }
b0ea7d37
DL
1000 }
1001
1002 return I915_READ(SDEISR) & bit;
1003}
1004
b24e7179
JB
1005static const char *state_string(bool enabled)
1006{
1007 return enabled ? "on" : "off";
1008}
1009
1010/* Only for pre-ILK configs */
55607e8a
DV
1011void assert_pll(struct drm_i915_private *dev_priv,
1012 enum pipe pipe, bool state)
b24e7179
JB
1013{
1014 int reg;
1015 u32 val;
1016 bool cur_state;
1017
1018 reg = DPLL(pipe);
1019 val = I915_READ(reg);
1020 cur_state = !!(val & DPLL_VCO_ENABLE);
1021 WARN(cur_state != state,
1022 "PLL state assertion failure (expected %s, current %s)\n",
1023 state_string(state), state_string(cur_state));
1024}
b24e7179 1025
23538ef1
JN
1026/* XXX: the dsi pll is shared between MIPI DSI ports */
1027static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1028{
1029 u32 val;
1030 bool cur_state;
1031
1032 mutex_lock(&dev_priv->dpio_lock);
1033 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1034 mutex_unlock(&dev_priv->dpio_lock);
1035
1036 cur_state = val & DSI_PLL_VCO_EN;
1037 WARN(cur_state != state,
1038 "DSI PLL state assertion failure (expected %s, current %s)\n",
1039 state_string(state), state_string(cur_state));
1040}
1041#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1042#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1043
55607e8a 1044struct intel_shared_dpll *
e2b78267
DV
1045intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
1046{
1047 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1048
a43f6e0f 1049 if (crtc->config.shared_dpll < 0)
e2b78267
DV
1050 return NULL;
1051
a43f6e0f 1052 return &dev_priv->shared_dplls[crtc->config.shared_dpll];
e2b78267
DV
1053}
1054
040484af 1055/* For ILK+ */
55607e8a
DV
1056void assert_shared_dpll(struct drm_i915_private *dev_priv,
1057 struct intel_shared_dpll *pll,
1058 bool state)
040484af 1059{
040484af 1060 bool cur_state;
5358901f 1061 struct intel_dpll_hw_state hw_state;
040484af 1062
9d82aa17
ED
1063 if (HAS_PCH_LPT(dev_priv->dev)) {
1064 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
1065 return;
1066 }
1067
92b27b08 1068 if (WARN (!pll,
46edb027 1069 "asserting DPLL %s with no DPLL\n", state_string(state)))
ee7b9f93 1070 return;
ee7b9f93 1071
5358901f 1072 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
92b27b08 1073 WARN(cur_state != state,
5358901f
DV
1074 "%s assertion failure (expected %s, current %s)\n",
1075 pll->name, state_string(state), state_string(cur_state));
040484af 1076}
040484af
JB
1077
1078static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1079 enum pipe pipe, bool state)
1080{
1081 int reg;
1082 u32 val;
1083 bool cur_state;
ad80a810
PZ
1084 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1085 pipe);
040484af 1086
affa9354
PZ
1087 if (HAS_DDI(dev_priv->dev)) {
1088 /* DDI does not have a specific FDI_TX register */
ad80a810 1089 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
bf507ef7 1090 val = I915_READ(reg);
ad80a810 1091 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
bf507ef7
ED
1092 } else {
1093 reg = FDI_TX_CTL(pipe);
1094 val = I915_READ(reg);
1095 cur_state = !!(val & FDI_TX_ENABLE);
1096 }
040484af
JB
1097 WARN(cur_state != state,
1098 "FDI TX state assertion failure (expected %s, current %s)\n",
1099 state_string(state), state_string(cur_state));
1100}
1101#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1102#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1103
1104static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1105 enum pipe pipe, bool state)
1106{
1107 int reg;
1108 u32 val;
1109 bool cur_state;
1110
d63fa0dc
PZ
1111 reg = FDI_RX_CTL(pipe);
1112 val = I915_READ(reg);
1113 cur_state = !!(val & FDI_RX_ENABLE);
040484af
JB
1114 WARN(cur_state != state,
1115 "FDI RX state assertion failure (expected %s, current %s)\n",
1116 state_string(state), state_string(cur_state));
1117}
1118#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1119#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1120
1121static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1122 enum pipe pipe)
1123{
1124 int reg;
1125 u32 val;
1126
1127 /* ILK FDI PLL is always enabled */
3d13ef2e 1128 if (INTEL_INFO(dev_priv->dev)->gen == 5)
040484af
JB
1129 return;
1130
bf507ef7 1131 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
affa9354 1132 if (HAS_DDI(dev_priv->dev))
bf507ef7
ED
1133 return;
1134
040484af
JB
1135 reg = FDI_TX_CTL(pipe);
1136 val = I915_READ(reg);
1137 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1138}
1139
55607e8a
DV
1140void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1141 enum pipe pipe, bool state)
040484af
JB
1142{
1143 int reg;
1144 u32 val;
55607e8a 1145 bool cur_state;
040484af
JB
1146
1147 reg = FDI_RX_CTL(pipe);
1148 val = I915_READ(reg);
55607e8a
DV
1149 cur_state = !!(val & FDI_RX_PLL_ENABLE);
1150 WARN(cur_state != state,
1151 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1152 state_string(state), state_string(cur_state));
040484af
JB
1153}
1154
ea0760cf
JB
1155static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1156 enum pipe pipe)
1157{
1158 int pp_reg, lvds_reg;
1159 u32 val;
1160 enum pipe panel_pipe = PIPE_A;
0de3b485 1161 bool locked = true;
ea0760cf
JB
1162
1163 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1164 pp_reg = PCH_PP_CONTROL;
1165 lvds_reg = PCH_LVDS;
1166 } else {
1167 pp_reg = PP_CONTROL;
1168 lvds_reg = LVDS;
1169 }
1170
1171 val = I915_READ(pp_reg);
1172 if (!(val & PANEL_POWER_ON) ||
1173 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1174 locked = false;
1175
1176 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1177 panel_pipe = PIPE_B;
1178
1179 WARN(panel_pipe == pipe && locked,
1180 "panel assertion failure, pipe %c regs locked\n",
9db4a9c7 1181 pipe_name(pipe));
ea0760cf
JB
1182}
1183
93ce0ba6
JN
1184static void assert_cursor(struct drm_i915_private *dev_priv,
1185 enum pipe pipe, bool state)
1186{
1187 struct drm_device *dev = dev_priv->dev;
1188 bool cur_state;
1189
d9d82081 1190 if (IS_845G(dev) || IS_I865G(dev))
93ce0ba6 1191 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
d9d82081 1192 else if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev))
93ce0ba6 1193 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
d9d82081
PZ
1194 else
1195 cur_state = I915_READ(CURCNTR_IVB(pipe)) & CURSOR_MODE;
93ce0ba6
JN
1196
1197 WARN(cur_state != state,
1198 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1199 pipe_name(pipe), state_string(state), state_string(cur_state));
1200}
1201#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1202#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1203
b840d907
JB
1204void assert_pipe(struct drm_i915_private *dev_priv,
1205 enum pipe pipe, bool state)
b24e7179
JB
1206{
1207 int reg;
1208 u32 val;
63d7bbe9 1209 bool cur_state;
702e7a56
PZ
1210 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1211 pipe);
b24e7179 1212
8e636784
DV
1213 /* if we need the pipe A quirk it must be always on */
1214 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1215 state = true;
1216
da7e29bd 1217 if (!intel_display_power_enabled(dev_priv,
b97186f0 1218 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
69310161
PZ
1219 cur_state = false;
1220 } else {
1221 reg = PIPECONF(cpu_transcoder);
1222 val = I915_READ(reg);
1223 cur_state = !!(val & PIPECONF_ENABLE);
1224 }
1225
63d7bbe9
JB
1226 WARN(cur_state != state,
1227 "pipe %c assertion failure (expected %s, current %s)\n",
9db4a9c7 1228 pipe_name(pipe), state_string(state), state_string(cur_state));
b24e7179
JB
1229}
1230
931872fc
CW
1231static void assert_plane(struct drm_i915_private *dev_priv,
1232 enum plane plane, bool state)
b24e7179
JB
1233{
1234 int reg;
1235 u32 val;
931872fc 1236 bool cur_state;
b24e7179
JB
1237
1238 reg = DSPCNTR(plane);
1239 val = I915_READ(reg);
931872fc
CW
1240 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1241 WARN(cur_state != state,
1242 "plane %c assertion failure (expected %s, current %s)\n",
1243 plane_name(plane), state_string(state), state_string(cur_state));
b24e7179
JB
1244}
1245
931872fc
CW
1246#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1247#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1248
b24e7179
JB
1249static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1250 enum pipe pipe)
1251{
653e1026 1252 struct drm_device *dev = dev_priv->dev;
b24e7179
JB
1253 int reg, i;
1254 u32 val;
1255 int cur_pipe;
1256
653e1026
VS
1257 /* Primary planes are fixed to pipes on gen4+ */
1258 if (INTEL_INFO(dev)->gen >= 4) {
28c05794
AJ
1259 reg = DSPCNTR(pipe);
1260 val = I915_READ(reg);
83f26f16 1261 WARN(val & DISPLAY_PLANE_ENABLE,
28c05794
AJ
1262 "plane %c assertion failure, should be disabled but not\n",
1263 plane_name(pipe));
19ec1358 1264 return;
28c05794 1265 }
19ec1358 1266
b24e7179 1267 /* Need to check both planes against the pipe */
08e2a7de 1268 for_each_pipe(i) {
b24e7179
JB
1269 reg = DSPCNTR(i);
1270 val = I915_READ(reg);
1271 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1272 DISPPLANE_SEL_PIPE_SHIFT;
1273 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
9db4a9c7
JB
1274 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1275 plane_name(i), pipe_name(pipe));
b24e7179
JB
1276 }
1277}
1278
19332d7a
JB
1279static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1280 enum pipe pipe)
1281{
20674eef 1282 struct drm_device *dev = dev_priv->dev;
1fe47785 1283 int reg, sprite;
19332d7a
JB
1284 u32 val;
1285
20674eef 1286 if (IS_VALLEYVIEW(dev)) {
1fe47785
DL
1287 for_each_sprite(pipe, sprite) {
1288 reg = SPCNTR(pipe, sprite);
20674eef 1289 val = I915_READ(reg);
83f26f16 1290 WARN(val & SP_ENABLE,
20674eef 1291 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1fe47785 1292 sprite_name(pipe, sprite), pipe_name(pipe));
20674eef
VS
1293 }
1294 } else if (INTEL_INFO(dev)->gen >= 7) {
1295 reg = SPRCTL(pipe);
19332d7a 1296 val = I915_READ(reg);
83f26f16 1297 WARN(val & SPRITE_ENABLE,
06da8da2 1298 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef
VS
1299 plane_name(pipe), pipe_name(pipe));
1300 } else if (INTEL_INFO(dev)->gen >= 5) {
1301 reg = DVSCNTR(pipe);
19332d7a 1302 val = I915_READ(reg);
83f26f16 1303 WARN(val & DVS_ENABLE,
06da8da2 1304 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef 1305 plane_name(pipe), pipe_name(pipe));
19332d7a
JB
1306 }
1307}
1308
89eff4be 1309static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
92f2584a
JB
1310{
1311 u32 val;
1312 bool enabled;
1313
89eff4be 1314 WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
9d82aa17 1315
92f2584a
JB
1316 val = I915_READ(PCH_DREF_CONTROL);
1317 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1318 DREF_SUPERSPREAD_SOURCE_MASK));
1319 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1320}
1321
ab9412ba
DV
1322static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1323 enum pipe pipe)
92f2584a
JB
1324{
1325 int reg;
1326 u32 val;
1327 bool enabled;
1328
ab9412ba 1329 reg = PCH_TRANSCONF(pipe);
92f2584a
JB
1330 val = I915_READ(reg);
1331 enabled = !!(val & TRANS_ENABLE);
9db4a9c7
JB
1332 WARN(enabled,
1333 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1334 pipe_name(pipe));
92f2584a
JB
1335}
1336
4e634389
KP
1337static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1338 enum pipe pipe, u32 port_sel, u32 val)
f0575e92
KP
1339{
1340 if ((val & DP_PORT_EN) == 0)
1341 return false;
1342
1343 if (HAS_PCH_CPT(dev_priv->dev)) {
1344 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1345 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1346 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1347 return false;
44f37d1f
CML
1348 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1349 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1350 return false;
f0575e92
KP
1351 } else {
1352 if ((val & DP_PIPE_MASK) != (pipe << 30))
1353 return false;
1354 }
1355 return true;
1356}
1357
1519b995
KP
1358static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1359 enum pipe pipe, u32 val)
1360{
dc0fa718 1361 if ((val & SDVO_ENABLE) == 0)
1519b995
KP
1362 return false;
1363
1364 if (HAS_PCH_CPT(dev_priv->dev)) {
dc0fa718 1365 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
1519b995 1366 return false;
44f37d1f
CML
1367 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1368 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1369 return false;
1519b995 1370 } else {
dc0fa718 1371 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
1519b995
KP
1372 return false;
1373 }
1374 return true;
1375}
1376
1377static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1378 enum pipe pipe, u32 val)
1379{
1380 if ((val & LVDS_PORT_EN) == 0)
1381 return false;
1382
1383 if (HAS_PCH_CPT(dev_priv->dev)) {
1384 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1385 return false;
1386 } else {
1387 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1388 return false;
1389 }
1390 return true;
1391}
1392
1393static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1394 enum pipe pipe, u32 val)
1395{
1396 if ((val & ADPA_DAC_ENABLE) == 0)
1397 return false;
1398 if (HAS_PCH_CPT(dev_priv->dev)) {
1399 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1400 return false;
1401 } else {
1402 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1403 return false;
1404 }
1405 return true;
1406}
1407
291906f1 1408static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
f0575e92 1409 enum pipe pipe, int reg, u32 port_sel)
291906f1 1410{
47a05eca 1411 u32 val = I915_READ(reg);
4e634389 1412 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
291906f1 1413 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
9db4a9c7 1414 reg, pipe_name(pipe));
de9a35ab 1415
75c5da27
DV
1416 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1417 && (val & DP_PIPEB_SELECT),
de9a35ab 1418 "IBX PCH dp port still using transcoder B\n");
291906f1
JB
1419}
1420
1421static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1422 enum pipe pipe, int reg)
1423{
47a05eca 1424 u32 val = I915_READ(reg);
b70ad586 1425 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
23c99e77 1426 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
9db4a9c7 1427 reg, pipe_name(pipe));
de9a35ab 1428
dc0fa718 1429 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
75c5da27 1430 && (val & SDVO_PIPE_B_SELECT),
de9a35ab 1431 "IBX PCH hdmi port still using transcoder B\n");
291906f1
JB
1432}
1433
1434static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1435 enum pipe pipe)
1436{
1437 int reg;
1438 u32 val;
291906f1 1439
f0575e92
KP
1440 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1441 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1442 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
291906f1
JB
1443
1444 reg = PCH_ADPA;
1445 val = I915_READ(reg);
b70ad586 1446 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
291906f1 1447 "PCH VGA enabled on transcoder %c, should be disabled\n",
9db4a9c7 1448 pipe_name(pipe));
291906f1
JB
1449
1450 reg = PCH_LVDS;
1451 val = I915_READ(reg);
b70ad586 1452 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
291906f1 1453 "PCH LVDS enabled on transcoder %c, should be disabled\n",
9db4a9c7 1454 pipe_name(pipe));
291906f1 1455
e2debe91
PZ
1456 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1457 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1458 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
291906f1
JB
1459}
1460
40e9cf64
JB
1461static void intel_init_dpio(struct drm_device *dev)
1462{
1463 struct drm_i915_private *dev_priv = dev->dev_private;
1464
1465 if (!IS_VALLEYVIEW(dev))
1466 return;
1467
a09caddd
CML
1468 /*
1469 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1470 * CHV x1 PHY (DP/HDMI D)
1471 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1472 */
1473 if (IS_CHERRYVIEW(dev)) {
1474 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1475 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1476 } else {
1477 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1478 }
5382f5f3
JB
1479}
1480
1481static void intel_reset_dpio(struct drm_device *dev)
1482{
1483 struct drm_i915_private *dev_priv = dev->dev_private;
1484
1485 if (!IS_VALLEYVIEW(dev))
1486 return;
1487
e5cbfbfb
ID
1488 /*
1489 * Enable the CRI clock source so we can get at the display and the
1490 * reference clock for VGA hotplug / manual detection.
1491 */
404faabc 1492 I915_WRITE(DPLL(PIPE_B), I915_READ(DPLL(PIPE_B)) |
e5cbfbfb 1493 DPLL_REFA_CLK_ENABLE_VLV |
404faabc
ID
1494 DPLL_INTEGRATED_CRI_CLK_VLV);
1495
076ed3b2
CML
1496 if (IS_CHERRYVIEW(dev)) {
1497 enum dpio_phy phy;
1498 u32 val;
1499
1500 for (phy = DPIO_PHY0; phy < I915_NUM_PHYS_VLV; phy++) {
1501 /* Poll for phypwrgood signal */
1502 if (wait_for(I915_READ(DISPLAY_PHY_STATUS) &
1503 PHY_POWERGOOD(phy), 1))
1504 DRM_ERROR("Display PHY %d is not power up\n", phy);
1505
1506 /*
1507 * Deassert common lane reset for PHY.
1508 *
1509 * This should only be done on init and resume from S3
1510 * with both PLLs disabled, or we risk losing DPIO and
1511 * PLL synchronization.
1512 */
1513 val = I915_READ(DISPLAY_PHY_CONTROL);
1514 I915_WRITE(DISPLAY_PHY_CONTROL,
1515 PHY_COM_LANE_RESET_DEASSERT(phy, val));
1516 }
1517
1518 } else {
1519 /*
1520 * From VLV2A0_DP_eDP_DPIO_driver_vbios_notes_10.docx -
1521 * 6. De-assert cmn_reset/side_reset. Same as VLV X0.
1522 * a. GUnit 0x2110 bit[0] set to 1 (def 0)
1523 * b. The other bits such as sfr settings / modesel may all
1524 * be set to 0.
1525 *
1526 * This should only be done on init and resume from S3 with
1527 * both PLLs disabled, or we risk losing DPIO and PLL
1528 * synchronization.
1529 */
1530 I915_WRITE(DPIO_CTL, I915_READ(DPIO_CTL) | DPIO_CMNRST);
1531 }
40e9cf64
JB
1532}
1533
426115cf 1534static void vlv_enable_pll(struct intel_crtc *crtc)
87442f73 1535{
426115cf
DV
1536 struct drm_device *dev = crtc->base.dev;
1537 struct drm_i915_private *dev_priv = dev->dev_private;
1538 int reg = DPLL(crtc->pipe);
1539 u32 dpll = crtc->config.dpll_hw_state.dpll;
87442f73 1540
426115cf 1541 assert_pipe_disabled(dev_priv, crtc->pipe);
87442f73
DV
1542
1543 /* No really, not for ILK+ */
1544 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1545
1546 /* PLL is protected by panel, make sure we can write it */
1547 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
426115cf 1548 assert_panel_unlocked(dev_priv, crtc->pipe);
87442f73 1549
426115cf
DV
1550 I915_WRITE(reg, dpll);
1551 POSTING_READ(reg);
1552 udelay(150);
1553
1554 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1555 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1556
1557 I915_WRITE(DPLL_MD(crtc->pipe), crtc->config.dpll_hw_state.dpll_md);
1558 POSTING_READ(DPLL_MD(crtc->pipe));
87442f73
DV
1559
1560 /* We do this three times for luck */
426115cf 1561 I915_WRITE(reg, dpll);
87442f73
DV
1562 POSTING_READ(reg);
1563 udelay(150); /* wait for warmup */
426115cf 1564 I915_WRITE(reg, dpll);
87442f73
DV
1565 POSTING_READ(reg);
1566 udelay(150); /* wait for warmup */
426115cf 1567 I915_WRITE(reg, dpll);
87442f73
DV
1568 POSTING_READ(reg);
1569 udelay(150); /* wait for warmup */
1570}
1571
9d556c99
CML
1572static void chv_enable_pll(struct intel_crtc *crtc)
1573{
1574 struct drm_device *dev = crtc->base.dev;
1575 struct drm_i915_private *dev_priv = dev->dev_private;
1576 int pipe = crtc->pipe;
1577 enum dpio_channel port = vlv_pipe_to_channel(pipe);
1578 int dpll = DPLL(crtc->pipe);
1579 u32 tmp;
1580
1581 assert_pipe_disabled(dev_priv, crtc->pipe);
1582
1583 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1584
1585 mutex_lock(&dev_priv->dpio_lock);
1586
1587 /* Enable back the 10bit clock to display controller */
1588 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1589 tmp |= DPIO_DCLKP_EN;
1590 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1591
1592 /*
1593 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1594 */
1595 udelay(1);
1596
1597 /* Enable PLL */
1598 tmp = I915_READ(dpll);
1599 tmp |= DPLL_VCO_ENABLE;
1600 I915_WRITE(dpll, tmp);
1601
1602 /* Check PLL is locked */
1603 if (wait_for(((I915_READ(dpll) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1604 DRM_ERROR("PLL %d failed to lock\n", pipe);
1605
1606 /* Deassert soft data lane reset*/
1607 tmp = vlv_dpio_read(dev_priv, pipe, VLV_PCS_DW0(port));
1608 tmp |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1609 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), tmp);
1610
1611
1612 mutex_unlock(&dev_priv->dpio_lock);
1613}
1614
66e3d5c0 1615static void i9xx_enable_pll(struct intel_crtc *crtc)
63d7bbe9 1616{
66e3d5c0
DV
1617 struct drm_device *dev = crtc->base.dev;
1618 struct drm_i915_private *dev_priv = dev->dev_private;
1619 int reg = DPLL(crtc->pipe);
1620 u32 dpll = crtc->config.dpll_hw_state.dpll;
63d7bbe9 1621
66e3d5c0 1622 assert_pipe_disabled(dev_priv, crtc->pipe);
58c6eaa2 1623
63d7bbe9 1624 /* No really, not for ILK+ */
3d13ef2e 1625 BUG_ON(INTEL_INFO(dev)->gen >= 5);
63d7bbe9
JB
1626
1627 /* PLL is protected by panel, make sure we can write it */
66e3d5c0
DV
1628 if (IS_MOBILE(dev) && !IS_I830(dev))
1629 assert_panel_unlocked(dev_priv, crtc->pipe);
63d7bbe9 1630
66e3d5c0
DV
1631 I915_WRITE(reg, dpll);
1632
1633 /* Wait for the clocks to stabilize. */
1634 POSTING_READ(reg);
1635 udelay(150);
1636
1637 if (INTEL_INFO(dev)->gen >= 4) {
1638 I915_WRITE(DPLL_MD(crtc->pipe),
1639 crtc->config.dpll_hw_state.dpll_md);
1640 } else {
1641 /* The pixel multiplier can only be updated once the
1642 * DPLL is enabled and the clocks are stable.
1643 *
1644 * So write it again.
1645 */
1646 I915_WRITE(reg, dpll);
1647 }
63d7bbe9
JB
1648
1649 /* We do this three times for luck */
66e3d5c0 1650 I915_WRITE(reg, dpll);
63d7bbe9
JB
1651 POSTING_READ(reg);
1652 udelay(150); /* wait for warmup */
66e3d5c0 1653 I915_WRITE(reg, dpll);
63d7bbe9
JB
1654 POSTING_READ(reg);
1655 udelay(150); /* wait for warmup */
66e3d5c0 1656 I915_WRITE(reg, dpll);
63d7bbe9
JB
1657 POSTING_READ(reg);
1658 udelay(150); /* wait for warmup */
1659}
1660
1661/**
50b44a44 1662 * i9xx_disable_pll - disable a PLL
63d7bbe9
JB
1663 * @dev_priv: i915 private structure
1664 * @pipe: pipe PLL to disable
1665 *
1666 * Disable the PLL for @pipe, making sure the pipe is off first.
1667 *
1668 * Note! This is for pre-ILK only.
1669 */
50b44a44 1670static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
63d7bbe9 1671{
63d7bbe9
JB
1672 /* Don't disable pipe A or pipe A PLLs if needed */
1673 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1674 return;
1675
1676 /* Make sure the pipe isn't still relying on us */
1677 assert_pipe_disabled(dev_priv, pipe);
1678
50b44a44
DV
1679 I915_WRITE(DPLL(pipe), 0);
1680 POSTING_READ(DPLL(pipe));
63d7bbe9
JB
1681}
1682
f6071166
JB
1683static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1684{
1685 u32 val = 0;
1686
1687 /* Make sure the pipe isn't still relying on us */
1688 assert_pipe_disabled(dev_priv, pipe);
1689
e5cbfbfb
ID
1690 /*
1691 * Leave integrated clock source and reference clock enabled for pipe B.
1692 * The latter is needed for VGA hotplug / manual detection.
1693 */
f6071166 1694 if (pipe == PIPE_B)
e5cbfbfb 1695 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
f6071166
JB
1696 I915_WRITE(DPLL(pipe), val);
1697 POSTING_READ(DPLL(pipe));
076ed3b2
CML
1698
1699}
1700
1701static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1702{
1703 int dpll = DPLL(pipe);
1704 u32 val;
1705
1706 /* Set PLL en = 0 */
1707 val = I915_READ(dpll);
1708 val &= ~DPLL_VCO_ENABLE;
1709 I915_WRITE(dpll, val);
1710
f6071166
JB
1711}
1712
e4607fcf
CML
1713void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1714 struct intel_digital_port *dport)
89b667f8
JB
1715{
1716 u32 port_mask;
00fc31b7 1717 int dpll_reg;
89b667f8 1718
e4607fcf
CML
1719 switch (dport->port) {
1720 case PORT_B:
89b667f8 1721 port_mask = DPLL_PORTB_READY_MASK;
00fc31b7 1722 dpll_reg = DPLL(0);
e4607fcf
CML
1723 break;
1724 case PORT_C:
89b667f8 1725 port_mask = DPLL_PORTC_READY_MASK;
00fc31b7
CML
1726 dpll_reg = DPLL(0);
1727 break;
1728 case PORT_D:
1729 port_mask = DPLL_PORTD_READY_MASK;
1730 dpll_reg = DPIO_PHY_STATUS;
e4607fcf
CML
1731 break;
1732 default:
1733 BUG();
1734 }
89b667f8 1735
00fc31b7 1736 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
89b667f8 1737 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
00fc31b7 1738 port_name(dport->port), I915_READ(dpll_reg));
89b667f8
JB
1739}
1740
92f2584a 1741/**
e72f9fbf 1742 * ironlake_enable_shared_dpll - enable PCH PLL
92f2584a
JB
1743 * @dev_priv: i915 private structure
1744 * @pipe: pipe PLL to enable
1745 *
1746 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1747 * drives the transcoder clock.
1748 */
e2b78267 1749static void ironlake_enable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1750{
3d13ef2e
DL
1751 struct drm_device *dev = crtc->base.dev;
1752 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1753 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
92f2584a 1754
48da64a8 1755 /* PCH PLLs only available on ILK, SNB and IVB */
3d13ef2e 1756 BUG_ON(INTEL_INFO(dev)->gen < 5);
87a875bb 1757 if (WARN_ON(pll == NULL))
48da64a8
CW
1758 return;
1759
1760 if (WARN_ON(pll->refcount == 0))
1761 return;
ee7b9f93 1762
46edb027
DV
1763 DRM_DEBUG_KMS("enable %s (active %d, on? %d)for crtc %d\n",
1764 pll->name, pll->active, pll->on,
e2b78267 1765 crtc->base.base.id);
92f2584a 1766
cdbd2316
DV
1767 if (pll->active++) {
1768 WARN_ON(!pll->on);
e9d6944e 1769 assert_shared_dpll_enabled(dev_priv, pll);
ee7b9f93
JB
1770 return;
1771 }
f4a091c7 1772 WARN_ON(pll->on);
ee7b9f93 1773
46edb027 1774 DRM_DEBUG_KMS("enabling %s\n", pll->name);
e7b903d2 1775 pll->enable(dev_priv, pll);
ee7b9f93 1776 pll->on = true;
92f2584a
JB
1777}
1778
e2b78267 1779static void intel_disable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1780{
3d13ef2e
DL
1781 struct drm_device *dev = crtc->base.dev;
1782 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1783 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
4c609cb8 1784
92f2584a 1785 /* PCH only available on ILK+ */
3d13ef2e 1786 BUG_ON(INTEL_INFO(dev)->gen < 5);
87a875bb 1787 if (WARN_ON(pll == NULL))
ee7b9f93 1788 return;
92f2584a 1789
48da64a8
CW
1790 if (WARN_ON(pll->refcount == 0))
1791 return;
7a419866 1792
46edb027
DV
1793 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1794 pll->name, pll->active, pll->on,
e2b78267 1795 crtc->base.base.id);
7a419866 1796
48da64a8 1797 if (WARN_ON(pll->active == 0)) {
e9d6944e 1798 assert_shared_dpll_disabled(dev_priv, pll);
48da64a8
CW
1799 return;
1800 }
1801
e9d6944e 1802 assert_shared_dpll_enabled(dev_priv, pll);
f4a091c7 1803 WARN_ON(!pll->on);
cdbd2316 1804 if (--pll->active)
7a419866 1805 return;
ee7b9f93 1806
46edb027 1807 DRM_DEBUG_KMS("disabling %s\n", pll->name);
e7b903d2 1808 pll->disable(dev_priv, pll);
ee7b9f93 1809 pll->on = false;
92f2584a
JB
1810}
1811
b8a4f404
PZ
1812static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1813 enum pipe pipe)
040484af 1814{
23670b32 1815 struct drm_device *dev = dev_priv->dev;
7c26e5c6 1816 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e2b78267 1817 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
23670b32 1818 uint32_t reg, val, pipeconf_val;
040484af
JB
1819
1820 /* PCH only available on ILK+ */
3d13ef2e 1821 BUG_ON(INTEL_INFO(dev)->gen < 5);
040484af
JB
1822
1823 /* Make sure PCH DPLL is enabled */
e72f9fbf 1824 assert_shared_dpll_enabled(dev_priv,
e9d6944e 1825 intel_crtc_to_shared_dpll(intel_crtc));
040484af
JB
1826
1827 /* FDI must be feeding us bits for PCH ports */
1828 assert_fdi_tx_enabled(dev_priv, pipe);
1829 assert_fdi_rx_enabled(dev_priv, pipe);
1830
23670b32
DV
1831 if (HAS_PCH_CPT(dev)) {
1832 /* Workaround: Set the timing override bit before enabling the
1833 * pch transcoder. */
1834 reg = TRANS_CHICKEN2(pipe);
1835 val = I915_READ(reg);
1836 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1837 I915_WRITE(reg, val);
59c859d6 1838 }
23670b32 1839
ab9412ba 1840 reg = PCH_TRANSCONF(pipe);
040484af 1841 val = I915_READ(reg);
5f7f726d 1842 pipeconf_val = I915_READ(PIPECONF(pipe));
e9bcff5c
JB
1843
1844 if (HAS_PCH_IBX(dev_priv->dev)) {
1845 /*
1846 * make the BPC in transcoder be consistent with
1847 * that in pipeconf reg.
1848 */
dfd07d72
DV
1849 val &= ~PIPECONF_BPC_MASK;
1850 val |= pipeconf_val & PIPECONF_BPC_MASK;
e9bcff5c 1851 }
5f7f726d
PZ
1852
1853 val &= ~TRANS_INTERLACE_MASK;
1854 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
7c26e5c6
PZ
1855 if (HAS_PCH_IBX(dev_priv->dev) &&
1856 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1857 val |= TRANS_LEGACY_INTERLACED_ILK;
1858 else
1859 val |= TRANS_INTERLACED;
5f7f726d
PZ
1860 else
1861 val |= TRANS_PROGRESSIVE;
1862
040484af
JB
1863 I915_WRITE(reg, val | TRANS_ENABLE);
1864 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
4bb6f1f3 1865 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
040484af
JB
1866}
1867
8fb033d7 1868static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
937bb610 1869 enum transcoder cpu_transcoder)
040484af 1870{
8fb033d7 1871 u32 val, pipeconf_val;
8fb033d7
PZ
1872
1873 /* PCH only available on ILK+ */
3d13ef2e 1874 BUG_ON(INTEL_INFO(dev_priv->dev)->gen < 5);
8fb033d7 1875
8fb033d7 1876 /* FDI must be feeding us bits for PCH ports */
1a240d4d 1877 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
937bb610 1878 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
8fb033d7 1879
223a6fdf
PZ
1880 /* Workaround: set timing override bit. */
1881 val = I915_READ(_TRANSA_CHICKEN2);
23670b32 1882 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
223a6fdf
PZ
1883 I915_WRITE(_TRANSA_CHICKEN2, val);
1884
25f3ef11 1885 val = TRANS_ENABLE;
937bb610 1886 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
8fb033d7 1887
9a76b1c6
PZ
1888 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1889 PIPECONF_INTERLACED_ILK)
a35f2679 1890 val |= TRANS_INTERLACED;
8fb033d7
PZ
1891 else
1892 val |= TRANS_PROGRESSIVE;
1893
ab9412ba
DV
1894 I915_WRITE(LPT_TRANSCONF, val);
1895 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
937bb610 1896 DRM_ERROR("Failed to enable PCH transcoder\n");
8fb033d7
PZ
1897}
1898
b8a4f404
PZ
1899static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1900 enum pipe pipe)
040484af 1901{
23670b32
DV
1902 struct drm_device *dev = dev_priv->dev;
1903 uint32_t reg, val;
040484af
JB
1904
1905 /* FDI relies on the transcoder */
1906 assert_fdi_tx_disabled(dev_priv, pipe);
1907 assert_fdi_rx_disabled(dev_priv, pipe);
1908
291906f1
JB
1909 /* Ports must be off as well */
1910 assert_pch_ports_disabled(dev_priv, pipe);
1911
ab9412ba 1912 reg = PCH_TRANSCONF(pipe);
040484af
JB
1913 val = I915_READ(reg);
1914 val &= ~TRANS_ENABLE;
1915 I915_WRITE(reg, val);
1916 /* wait for PCH transcoder off, transcoder state */
1917 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
4bb6f1f3 1918 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
23670b32
DV
1919
1920 if (!HAS_PCH_IBX(dev)) {
1921 /* Workaround: Clear the timing override chicken bit again. */
1922 reg = TRANS_CHICKEN2(pipe);
1923 val = I915_READ(reg);
1924 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1925 I915_WRITE(reg, val);
1926 }
040484af
JB
1927}
1928
ab4d966c 1929static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
8fb033d7 1930{
8fb033d7
PZ
1931 u32 val;
1932
ab9412ba 1933 val = I915_READ(LPT_TRANSCONF);
8fb033d7 1934 val &= ~TRANS_ENABLE;
ab9412ba 1935 I915_WRITE(LPT_TRANSCONF, val);
8fb033d7 1936 /* wait for PCH transcoder off, transcoder state */
ab9412ba 1937 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
8a52fd9f 1938 DRM_ERROR("Failed to disable PCH transcoder\n");
223a6fdf
PZ
1939
1940 /* Workaround: clear timing override bit. */
1941 val = I915_READ(_TRANSA_CHICKEN2);
23670b32 1942 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
223a6fdf 1943 I915_WRITE(_TRANSA_CHICKEN2, val);
040484af
JB
1944}
1945
b24e7179 1946/**
309cfea8 1947 * intel_enable_pipe - enable a pipe, asserting requirements
0372264a 1948 * @crtc: crtc responsible for the pipe
b24e7179 1949 *
0372264a 1950 * Enable @crtc's pipe, making sure that various hardware specific requirements
b24e7179 1951 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
b24e7179 1952 */
e1fdc473 1953static void intel_enable_pipe(struct intel_crtc *crtc)
b24e7179 1954{
0372264a
PZ
1955 struct drm_device *dev = crtc->base.dev;
1956 struct drm_i915_private *dev_priv = dev->dev_private;
1957 enum pipe pipe = crtc->pipe;
702e7a56
PZ
1958 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1959 pipe);
1a240d4d 1960 enum pipe pch_transcoder;
b24e7179
JB
1961 int reg;
1962 u32 val;
1963
58c6eaa2 1964 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 1965 assert_cursor_disabled(dev_priv, pipe);
58c6eaa2
DV
1966 assert_sprites_disabled(dev_priv, pipe);
1967
681e5811 1968 if (HAS_PCH_LPT(dev_priv->dev))
cc391bbb
PZ
1969 pch_transcoder = TRANSCODER_A;
1970 else
1971 pch_transcoder = pipe;
1972
b24e7179
JB
1973 /*
1974 * A pipe without a PLL won't actually be able to drive bits from
1975 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1976 * need the check.
1977 */
1978 if (!HAS_PCH_SPLIT(dev_priv->dev))
fbf3218a 1979 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DSI))
23538ef1
JN
1980 assert_dsi_pll_enabled(dev_priv);
1981 else
1982 assert_pll_enabled(dev_priv, pipe);
040484af 1983 else {
30421c4f 1984 if (crtc->config.has_pch_encoder) {
040484af 1985 /* if driving the PCH, we need FDI enabled */
cc391bbb 1986 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
1a240d4d
DV
1987 assert_fdi_tx_pll_enabled(dev_priv,
1988 (enum pipe) cpu_transcoder);
040484af
JB
1989 }
1990 /* FIXME: assert CPU port conditions for SNB+ */
1991 }
b24e7179 1992
702e7a56 1993 reg = PIPECONF(cpu_transcoder);
b24e7179 1994 val = I915_READ(reg);
7ad25d48
PZ
1995 if (val & PIPECONF_ENABLE) {
1996 WARN_ON(!(pipe == PIPE_A &&
1997 dev_priv->quirks & QUIRK_PIPEA_FORCE));
00d70b15 1998 return;
7ad25d48 1999 }
00d70b15
CW
2000
2001 I915_WRITE(reg, val | PIPECONF_ENABLE);
851855d8 2002 POSTING_READ(reg);
b24e7179
JB
2003}
2004
2005/**
309cfea8 2006 * intel_disable_pipe - disable a pipe, asserting requirements
b24e7179
JB
2007 * @dev_priv: i915 private structure
2008 * @pipe: pipe to disable
2009 *
2010 * Disable @pipe, making sure that various hardware specific requirements
2011 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
2012 *
2013 * @pipe should be %PIPE_A or %PIPE_B.
2014 *
2015 * Will wait until the pipe has shut down before returning.
2016 */
2017static void intel_disable_pipe(struct drm_i915_private *dev_priv,
2018 enum pipe pipe)
2019{
702e7a56
PZ
2020 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2021 pipe);
b24e7179
JB
2022 int reg;
2023 u32 val;
2024
2025 /*
2026 * Make sure planes won't keep trying to pump pixels to us,
2027 * or we might hang the display.
2028 */
2029 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2030 assert_cursor_disabled(dev_priv, pipe);
19332d7a 2031 assert_sprites_disabled(dev_priv, pipe);
b24e7179
JB
2032
2033 /* Don't disable pipe A or pipe A PLLs if needed */
2034 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2035 return;
2036
702e7a56 2037 reg = PIPECONF(cpu_transcoder);
b24e7179 2038 val = I915_READ(reg);
00d70b15
CW
2039 if ((val & PIPECONF_ENABLE) == 0)
2040 return;
2041
2042 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
b24e7179
JB
2043 intel_wait_for_pipe_off(dev_priv->dev, pipe);
2044}
2045
d74362c9
KP
2046/*
2047 * Plane regs are double buffered, going from enabled->disabled needs a
2048 * trigger in order to latch. The display address reg provides this.
2049 */
1dba99f4
VS
2050void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2051 enum plane plane)
d74362c9 2052{
3d13ef2e
DL
2053 struct drm_device *dev = dev_priv->dev;
2054 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
1dba99f4
VS
2055
2056 I915_WRITE(reg, I915_READ(reg));
2057 POSTING_READ(reg);
d74362c9
KP
2058}
2059
b24e7179 2060/**
262ca2b0 2061 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
b24e7179
JB
2062 * @dev_priv: i915 private structure
2063 * @plane: plane to enable
2064 * @pipe: pipe being fed
2065 *
2066 * Enable @plane on @pipe, making sure that @pipe is running first.
2067 */
262ca2b0
MR
2068static void intel_enable_primary_hw_plane(struct drm_i915_private *dev_priv,
2069 enum plane plane, enum pipe pipe)
b24e7179 2070{
939c2fe8
VS
2071 struct intel_crtc *intel_crtc =
2072 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
b24e7179
JB
2073 int reg;
2074 u32 val;
2075
2076 /* If the pipe isn't enabled, we can't pump pixels and may hang */
2077 assert_pipe_enabled(dev_priv, pipe);
2078
98ec7739
VS
2079 if (intel_crtc->primary_enabled)
2080 return;
0037f71c 2081
4c445e0e 2082 intel_crtc->primary_enabled = true;
939c2fe8 2083
b24e7179
JB
2084 reg = DSPCNTR(plane);
2085 val = I915_READ(reg);
10efa932 2086 WARN_ON(val & DISPLAY_PLANE_ENABLE);
00d70b15
CW
2087
2088 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
1dba99f4 2089 intel_flush_primary_plane(dev_priv, plane);
b24e7179
JB
2090 intel_wait_for_vblank(dev_priv->dev, pipe);
2091}
2092
b24e7179 2093/**
262ca2b0 2094 * intel_disable_primary_hw_plane - disable the primary hardware plane
b24e7179
JB
2095 * @dev_priv: i915 private structure
2096 * @plane: plane to disable
2097 * @pipe: pipe consuming the data
2098 *
2099 * Disable @plane; should be an independent operation.
2100 */
262ca2b0
MR
2101static void intel_disable_primary_hw_plane(struct drm_i915_private *dev_priv,
2102 enum plane plane, enum pipe pipe)
b24e7179 2103{
939c2fe8
VS
2104 struct intel_crtc *intel_crtc =
2105 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
b24e7179
JB
2106 int reg;
2107 u32 val;
2108
98ec7739
VS
2109 if (!intel_crtc->primary_enabled)
2110 return;
0037f71c 2111
4c445e0e 2112 intel_crtc->primary_enabled = false;
939c2fe8 2113
b24e7179
JB
2114 reg = DSPCNTR(plane);
2115 val = I915_READ(reg);
10efa932 2116 WARN_ON((val & DISPLAY_PLANE_ENABLE) == 0);
00d70b15
CW
2117
2118 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
1dba99f4 2119 intel_flush_primary_plane(dev_priv, plane);
b24e7179
JB
2120 intel_wait_for_vblank(dev_priv->dev, pipe);
2121}
2122
693db184
CW
2123static bool need_vtd_wa(struct drm_device *dev)
2124{
2125#ifdef CONFIG_INTEL_IOMMU
2126 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2127 return true;
2128#endif
2129 return false;
2130}
2131
a57ce0b2
JB
2132static int intel_align_height(struct drm_device *dev, int height, bool tiled)
2133{
2134 int tile_height;
2135
2136 tile_height = tiled ? (IS_GEN2(dev) ? 16 : 8) : 1;
2137 return ALIGN(height, tile_height);
2138}
2139
127bd2ac 2140int
48b956c5 2141intel_pin_and_fence_fb_obj(struct drm_device *dev,
05394f39 2142 struct drm_i915_gem_object *obj,
919926ae 2143 struct intel_ring_buffer *pipelined)
6b95a207 2144{
ce453d81 2145 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
2146 u32 alignment;
2147 int ret;
2148
05394f39 2149 switch (obj->tiling_mode) {
6b95a207 2150 case I915_TILING_NONE:
534843da
CW
2151 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2152 alignment = 128 * 1024;
a6c45cf0 2153 else if (INTEL_INFO(dev)->gen >= 4)
534843da
CW
2154 alignment = 4 * 1024;
2155 else
2156 alignment = 64 * 1024;
6b95a207
KH
2157 break;
2158 case I915_TILING_X:
2159 /* pin() will align the object as required by fence */
2160 alignment = 0;
2161 break;
2162 case I915_TILING_Y:
80075d49 2163 WARN(1, "Y tiled bo slipped through, driver bug!\n");
6b95a207
KH
2164 return -EINVAL;
2165 default:
2166 BUG();
2167 }
2168
693db184
CW
2169 /* Note that the w/a also requires 64 PTE of padding following the
2170 * bo. We currently fill all unused PTE with the shadow page and so
2171 * we should always have valid PTE following the scanout preventing
2172 * the VT-d warning.
2173 */
2174 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2175 alignment = 256 * 1024;
2176
ce453d81 2177 dev_priv->mm.interruptible = false;
2da3b9b9 2178 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
48b956c5 2179 if (ret)
ce453d81 2180 goto err_interruptible;
6b95a207
KH
2181
2182 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2183 * fence, whereas 965+ only requires a fence if using
2184 * framebuffer compression. For simplicity, we always install
2185 * a fence as the cost is not that onerous.
2186 */
06d98131 2187 ret = i915_gem_object_get_fence(obj);
9a5a53b3
CW
2188 if (ret)
2189 goto err_unpin;
1690e1eb 2190
9a5a53b3 2191 i915_gem_object_pin_fence(obj);
6b95a207 2192
ce453d81 2193 dev_priv->mm.interruptible = true;
6b95a207 2194 return 0;
48b956c5
CW
2195
2196err_unpin:
cc98b413 2197 i915_gem_object_unpin_from_display_plane(obj);
ce453d81
CW
2198err_interruptible:
2199 dev_priv->mm.interruptible = true;
48b956c5 2200 return ret;
6b95a207
KH
2201}
2202
1690e1eb
CW
2203void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2204{
2205 i915_gem_object_unpin_fence(obj);
cc98b413 2206 i915_gem_object_unpin_from_display_plane(obj);
1690e1eb
CW
2207}
2208
c2c75131
DV
2209/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2210 * is assumed to be a power-of-two. */
bc752862
CW
2211unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2212 unsigned int tiling_mode,
2213 unsigned int cpp,
2214 unsigned int pitch)
c2c75131 2215{
bc752862
CW
2216 if (tiling_mode != I915_TILING_NONE) {
2217 unsigned int tile_rows, tiles;
c2c75131 2218
bc752862
CW
2219 tile_rows = *y / 8;
2220 *y %= 8;
c2c75131 2221
bc752862
CW
2222 tiles = *x / (512/cpp);
2223 *x %= 512/cpp;
2224
2225 return tile_rows * pitch * 8 + tiles * 4096;
2226 } else {
2227 unsigned int offset;
2228
2229 offset = *y * pitch + *x * cpp;
2230 *y = 0;
2231 *x = (offset & 4095) / cpp;
2232 return offset & -4096;
2233 }
c2c75131
DV
2234}
2235
46f297fb
JB
2236int intel_format_to_fourcc(int format)
2237{
2238 switch (format) {
2239 case DISPPLANE_8BPP:
2240 return DRM_FORMAT_C8;
2241 case DISPPLANE_BGRX555:
2242 return DRM_FORMAT_XRGB1555;
2243 case DISPPLANE_BGRX565:
2244 return DRM_FORMAT_RGB565;
2245 default:
2246 case DISPPLANE_BGRX888:
2247 return DRM_FORMAT_XRGB8888;
2248 case DISPPLANE_RGBX888:
2249 return DRM_FORMAT_XBGR8888;
2250 case DISPPLANE_BGRX101010:
2251 return DRM_FORMAT_XRGB2101010;
2252 case DISPPLANE_RGBX101010:
2253 return DRM_FORMAT_XBGR2101010;
2254 }
2255}
2256
484b41dd 2257static bool intel_alloc_plane_obj(struct intel_crtc *crtc,
46f297fb
JB
2258 struct intel_plane_config *plane_config)
2259{
2260 struct drm_device *dev = crtc->base.dev;
2261 struct drm_i915_gem_object *obj = NULL;
2262 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2263 u32 base = plane_config->base;
2264
ff2652ea
CW
2265 if (plane_config->size == 0)
2266 return false;
2267
46f297fb
JB
2268 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2269 plane_config->size);
2270 if (!obj)
484b41dd 2271 return false;
46f297fb
JB
2272
2273 if (plane_config->tiled) {
2274 obj->tiling_mode = I915_TILING_X;
66e514c1 2275 obj->stride = crtc->base.primary->fb->pitches[0];
46f297fb
JB
2276 }
2277
66e514c1
DA
2278 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2279 mode_cmd.width = crtc->base.primary->fb->width;
2280 mode_cmd.height = crtc->base.primary->fb->height;
2281 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
46f297fb
JB
2282
2283 mutex_lock(&dev->struct_mutex);
2284
66e514c1 2285 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
484b41dd 2286 &mode_cmd, obj)) {
46f297fb
JB
2287 DRM_DEBUG_KMS("intel fb init failed\n");
2288 goto out_unref_obj;
2289 }
2290
2291 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2292
2293 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2294 return true;
46f297fb
JB
2295
2296out_unref_obj:
2297 drm_gem_object_unreference(&obj->base);
2298 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2299 return false;
2300}
2301
2302static void intel_find_plane_obj(struct intel_crtc *intel_crtc,
2303 struct intel_plane_config *plane_config)
2304{
2305 struct drm_device *dev = intel_crtc->base.dev;
2306 struct drm_crtc *c;
2307 struct intel_crtc *i;
2308 struct intel_framebuffer *fb;
2309
66e514c1 2310 if (!intel_crtc->base.primary->fb)
484b41dd
JB
2311 return;
2312
2313 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2314 return;
2315
66e514c1
DA
2316 kfree(intel_crtc->base.primary->fb);
2317 intel_crtc->base.primary->fb = NULL;
484b41dd
JB
2318
2319 /*
2320 * Failed to alloc the obj, check to see if we should share
2321 * an fb with another CRTC instead
2322 */
70e1e0ec 2323 for_each_crtc(dev, c) {
484b41dd
JB
2324 i = to_intel_crtc(c);
2325
2326 if (c == &intel_crtc->base)
2327 continue;
2328
66e514c1 2329 if (!i->active || !c->primary->fb)
484b41dd
JB
2330 continue;
2331
66e514c1 2332 fb = to_intel_framebuffer(c->primary->fb);
484b41dd 2333 if (i915_gem_obj_ggtt_offset(fb->obj) == plane_config->base) {
66e514c1
DA
2334 drm_framebuffer_reference(c->primary->fb);
2335 intel_crtc->base.primary->fb = c->primary->fb;
484b41dd
JB
2336 break;
2337 }
2338 }
46f297fb
JB
2339}
2340
29b9bde6
DV
2341static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2342 struct drm_framebuffer *fb,
2343 int x, int y)
81255565
JB
2344{
2345 struct drm_device *dev = crtc->dev;
2346 struct drm_i915_private *dev_priv = dev->dev_private;
2347 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2348 struct intel_framebuffer *intel_fb;
05394f39 2349 struct drm_i915_gem_object *obj;
81255565 2350 int plane = intel_crtc->plane;
e506a0c6 2351 unsigned long linear_offset;
81255565 2352 u32 dspcntr;
5eddb70b 2353 u32 reg;
81255565 2354
81255565
JB
2355 intel_fb = to_intel_framebuffer(fb);
2356 obj = intel_fb->obj;
81255565 2357
5eddb70b
CW
2358 reg = DSPCNTR(plane);
2359 dspcntr = I915_READ(reg);
81255565
JB
2360 /* Mask out pixel format bits in case we change it */
2361 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
57779d06
VS
2362 switch (fb->pixel_format) {
2363 case DRM_FORMAT_C8:
81255565
JB
2364 dspcntr |= DISPPLANE_8BPP;
2365 break;
57779d06
VS
2366 case DRM_FORMAT_XRGB1555:
2367 case DRM_FORMAT_ARGB1555:
2368 dspcntr |= DISPPLANE_BGRX555;
81255565 2369 break;
57779d06
VS
2370 case DRM_FORMAT_RGB565:
2371 dspcntr |= DISPPLANE_BGRX565;
2372 break;
2373 case DRM_FORMAT_XRGB8888:
2374 case DRM_FORMAT_ARGB8888:
2375 dspcntr |= DISPPLANE_BGRX888;
2376 break;
2377 case DRM_FORMAT_XBGR8888:
2378 case DRM_FORMAT_ABGR8888:
2379 dspcntr |= DISPPLANE_RGBX888;
2380 break;
2381 case DRM_FORMAT_XRGB2101010:
2382 case DRM_FORMAT_ARGB2101010:
2383 dspcntr |= DISPPLANE_BGRX101010;
2384 break;
2385 case DRM_FORMAT_XBGR2101010:
2386 case DRM_FORMAT_ABGR2101010:
2387 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
2388 break;
2389 default:
baba133a 2390 BUG();
81255565 2391 }
57779d06 2392
a6c45cf0 2393 if (INTEL_INFO(dev)->gen >= 4) {
05394f39 2394 if (obj->tiling_mode != I915_TILING_NONE)
81255565
JB
2395 dspcntr |= DISPPLANE_TILED;
2396 else
2397 dspcntr &= ~DISPPLANE_TILED;
2398 }
2399
de1aa629
VS
2400 if (IS_G4X(dev))
2401 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2402
5eddb70b 2403 I915_WRITE(reg, dspcntr);
81255565 2404
e506a0c6 2405 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
81255565 2406
c2c75131
DV
2407 if (INTEL_INFO(dev)->gen >= 4) {
2408 intel_crtc->dspaddr_offset =
bc752862
CW
2409 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2410 fb->bits_per_pixel / 8,
2411 fb->pitches[0]);
c2c75131
DV
2412 linear_offset -= intel_crtc->dspaddr_offset;
2413 } else {
e506a0c6 2414 intel_crtc->dspaddr_offset = linear_offset;
c2c75131 2415 }
e506a0c6 2416
f343c5f6
BW
2417 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2418 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2419 fb->pitches[0]);
01f2c773 2420 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
a6c45cf0 2421 if (INTEL_INFO(dev)->gen >= 4) {
85ba7b7d
DV
2422 I915_WRITE(DSPSURF(plane),
2423 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
5eddb70b 2424 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 2425 I915_WRITE(DSPLINOFF(plane), linear_offset);
5eddb70b 2426 } else
f343c5f6 2427 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
5eddb70b 2428 POSTING_READ(reg);
17638cd6
JB
2429}
2430
29b9bde6
DV
2431static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2432 struct drm_framebuffer *fb,
2433 int x, int y)
17638cd6
JB
2434{
2435 struct drm_device *dev = crtc->dev;
2436 struct drm_i915_private *dev_priv = dev->dev_private;
2437 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2438 struct intel_framebuffer *intel_fb;
2439 struct drm_i915_gem_object *obj;
2440 int plane = intel_crtc->plane;
e506a0c6 2441 unsigned long linear_offset;
17638cd6
JB
2442 u32 dspcntr;
2443 u32 reg;
2444
17638cd6
JB
2445 intel_fb = to_intel_framebuffer(fb);
2446 obj = intel_fb->obj;
2447
2448 reg = DSPCNTR(plane);
2449 dspcntr = I915_READ(reg);
2450 /* Mask out pixel format bits in case we change it */
2451 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
57779d06
VS
2452 switch (fb->pixel_format) {
2453 case DRM_FORMAT_C8:
17638cd6
JB
2454 dspcntr |= DISPPLANE_8BPP;
2455 break;
57779d06
VS
2456 case DRM_FORMAT_RGB565:
2457 dspcntr |= DISPPLANE_BGRX565;
17638cd6 2458 break;
57779d06
VS
2459 case DRM_FORMAT_XRGB8888:
2460 case DRM_FORMAT_ARGB8888:
2461 dspcntr |= DISPPLANE_BGRX888;
2462 break;
2463 case DRM_FORMAT_XBGR8888:
2464 case DRM_FORMAT_ABGR8888:
2465 dspcntr |= DISPPLANE_RGBX888;
2466 break;
2467 case DRM_FORMAT_XRGB2101010:
2468 case DRM_FORMAT_ARGB2101010:
2469 dspcntr |= DISPPLANE_BGRX101010;
2470 break;
2471 case DRM_FORMAT_XBGR2101010:
2472 case DRM_FORMAT_ABGR2101010:
2473 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
2474 break;
2475 default:
baba133a 2476 BUG();
17638cd6
JB
2477 }
2478
2479 if (obj->tiling_mode != I915_TILING_NONE)
2480 dspcntr |= DISPPLANE_TILED;
2481 else
2482 dspcntr &= ~DISPPLANE_TILED;
2483
b42c6009 2484 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
1f5d76db
PZ
2485 dspcntr &= ~DISPPLANE_TRICKLE_FEED_DISABLE;
2486 else
2487 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
17638cd6
JB
2488
2489 I915_WRITE(reg, dspcntr);
2490
e506a0c6 2491 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
c2c75131 2492 intel_crtc->dspaddr_offset =
bc752862
CW
2493 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2494 fb->bits_per_pixel / 8,
2495 fb->pitches[0]);
c2c75131 2496 linear_offset -= intel_crtc->dspaddr_offset;
17638cd6 2497
f343c5f6
BW
2498 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2499 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2500 fb->pitches[0]);
01f2c773 2501 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
85ba7b7d
DV
2502 I915_WRITE(DSPSURF(plane),
2503 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
b3dc685e 2504 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
bc1c91eb
DL
2505 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2506 } else {
2507 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2508 I915_WRITE(DSPLINOFF(plane), linear_offset);
2509 }
17638cd6 2510 POSTING_READ(reg);
17638cd6
JB
2511}
2512
2513/* Assume fb object is pinned & idle & fenced and just update base pointers */
2514static int
2515intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2516 int x, int y, enum mode_set_atomic state)
2517{
2518 struct drm_device *dev = crtc->dev;
2519 struct drm_i915_private *dev_priv = dev->dev_private;
17638cd6 2520
6b8e6ed0
CW
2521 if (dev_priv->display.disable_fbc)
2522 dev_priv->display.disable_fbc(dev);
3dec0095 2523 intel_increase_pllclock(crtc);
81255565 2524
29b9bde6
DV
2525 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2526
2527 return 0;
81255565
JB
2528}
2529
96a02917
VS
2530void intel_display_handle_reset(struct drm_device *dev)
2531{
2532 struct drm_i915_private *dev_priv = dev->dev_private;
2533 struct drm_crtc *crtc;
2534
2535 /*
2536 * Flips in the rings have been nuked by the reset,
2537 * so complete all pending flips so that user space
2538 * will get its events and not get stuck.
2539 *
2540 * Also update the base address of all primary
2541 * planes to the the last fb to make sure we're
2542 * showing the correct fb after a reset.
2543 *
2544 * Need to make two loops over the crtcs so that we
2545 * don't try to grab a crtc mutex before the
2546 * pending_flip_queue really got woken up.
2547 */
2548
70e1e0ec 2549 for_each_crtc(dev, crtc) {
96a02917
VS
2550 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2551 enum plane plane = intel_crtc->plane;
2552
2553 intel_prepare_page_flip(dev, plane);
2554 intel_finish_page_flip_plane(dev, plane);
2555 }
2556
70e1e0ec 2557 for_each_crtc(dev, crtc) {
96a02917
VS
2558 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2559
2560 mutex_lock(&crtc->mutex);
947fdaad
CW
2561 /*
2562 * FIXME: Once we have proper support for primary planes (and
2563 * disabling them without disabling the entire crtc) allow again
66e514c1 2564 * a NULL crtc->primary->fb.
947fdaad 2565 */
f4510a27 2566 if (intel_crtc->active && crtc->primary->fb)
262ca2b0 2567 dev_priv->display.update_primary_plane(crtc,
66e514c1 2568 crtc->primary->fb,
262ca2b0
MR
2569 crtc->x,
2570 crtc->y);
96a02917
VS
2571 mutex_unlock(&crtc->mutex);
2572 }
2573}
2574
14667a4b
CW
2575static int
2576intel_finish_fb(struct drm_framebuffer *old_fb)
2577{
2578 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2579 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2580 bool was_interruptible = dev_priv->mm.interruptible;
2581 int ret;
2582
14667a4b
CW
2583 /* Big Hammer, we also need to ensure that any pending
2584 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2585 * current scanout is retired before unpinning the old
2586 * framebuffer.
2587 *
2588 * This should only fail upon a hung GPU, in which case we
2589 * can safely continue.
2590 */
2591 dev_priv->mm.interruptible = false;
2592 ret = i915_gem_object_finish_gpu(obj);
2593 dev_priv->mm.interruptible = was_interruptible;
2594
2595 return ret;
2596}
2597
7d5e3799
CW
2598static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2599{
2600 struct drm_device *dev = crtc->dev;
2601 struct drm_i915_private *dev_priv = dev->dev_private;
2602 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2603 unsigned long flags;
2604 bool pending;
2605
2606 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2607 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2608 return false;
2609
2610 spin_lock_irqsave(&dev->event_lock, flags);
2611 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2612 spin_unlock_irqrestore(&dev->event_lock, flags);
2613
2614 return pending;
2615}
2616
5c3b82e2 2617static int
3c4fdcfb 2618intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
94352cf9 2619 struct drm_framebuffer *fb)
79e53945
JB
2620{
2621 struct drm_device *dev = crtc->dev;
6b8e6ed0 2622 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 2623 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
94352cf9 2624 struct drm_framebuffer *old_fb;
5c3b82e2 2625 int ret;
79e53945 2626
7d5e3799
CW
2627 if (intel_crtc_has_pending_flip(crtc)) {
2628 DRM_ERROR("pipe is still busy with an old pageflip\n");
2629 return -EBUSY;
2630 }
2631
79e53945 2632 /* no fb bound */
94352cf9 2633 if (!fb) {
a5071c2f 2634 DRM_ERROR("No FB bound\n");
5c3b82e2
CW
2635 return 0;
2636 }
2637
7eb552ae 2638 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
84f44ce7
VS
2639 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2640 plane_name(intel_crtc->plane),
2641 INTEL_INFO(dev)->num_pipes);
5c3b82e2 2642 return -EINVAL;
79e53945
JB
2643 }
2644
5c3b82e2 2645 mutex_lock(&dev->struct_mutex);
265db958 2646 ret = intel_pin_and_fence_fb_obj(dev,
94352cf9 2647 to_intel_framebuffer(fb)->obj,
919926ae 2648 NULL);
8ac36ec1 2649 mutex_unlock(&dev->struct_mutex);
5c3b82e2 2650 if (ret != 0) {
a5071c2f 2651 DRM_ERROR("pin & fence failed\n");
5c3b82e2
CW
2652 return ret;
2653 }
79e53945 2654
bb2043de
DL
2655 /*
2656 * Update pipe size and adjust fitter if needed: the reason for this is
2657 * that in compute_mode_changes we check the native mode (not the pfit
2658 * mode) to see if we can flip rather than do a full mode set. In the
2659 * fastboot case, we'll flip, but if we don't update the pipesrc and
2660 * pfit state, we'll end up with a big fb scanned out into the wrong
2661 * sized surface.
2662 *
2663 * To fix this properly, we need to hoist the checks up into
2664 * compute_mode_changes (or above), check the actual pfit state and
2665 * whether the platform allows pfit disable with pipe active, and only
2666 * then update the pipesrc and pfit state, even on the flip path.
2667 */
d330a953 2668 if (i915.fastboot) {
d7bf63f2
DL
2669 const struct drm_display_mode *adjusted_mode =
2670 &intel_crtc->config.adjusted_mode;
2671
4d6a3e63 2672 I915_WRITE(PIPESRC(intel_crtc->pipe),
d7bf63f2
DL
2673 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2674 (adjusted_mode->crtc_vdisplay - 1));
fd4daa9c 2675 if (!intel_crtc->config.pch_pfit.enabled &&
4d6a3e63
JB
2676 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2677 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2678 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2679 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2680 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2681 }
0637d60d
JB
2682 intel_crtc->config.pipe_src_w = adjusted_mode->crtc_hdisplay;
2683 intel_crtc->config.pipe_src_h = adjusted_mode->crtc_vdisplay;
4d6a3e63
JB
2684 }
2685
29b9bde6 2686 dev_priv->display.update_primary_plane(crtc, fb, x, y);
3c4fdcfb 2687
f4510a27
MR
2688 old_fb = crtc->primary->fb;
2689 crtc->primary->fb = fb;
6c4c86f5
DV
2690 crtc->x = x;
2691 crtc->y = y;
94352cf9 2692
b7f1de28 2693 if (old_fb) {
d7697eea
DV
2694 if (intel_crtc->active && old_fb != fb)
2695 intel_wait_for_vblank(dev, intel_crtc->pipe);
8ac36ec1 2696 mutex_lock(&dev->struct_mutex);
1690e1eb 2697 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
8ac36ec1 2698 mutex_unlock(&dev->struct_mutex);
b7f1de28 2699 }
652c393a 2700
8ac36ec1 2701 mutex_lock(&dev->struct_mutex);
6b8e6ed0 2702 intel_update_fbc(dev);
4906557e 2703 intel_edp_psr_update(dev);
5c3b82e2 2704 mutex_unlock(&dev->struct_mutex);
79e53945 2705
5c3b82e2 2706 return 0;
79e53945
JB
2707}
2708
5e84e1a4
ZW
2709static void intel_fdi_normal_train(struct drm_crtc *crtc)
2710{
2711 struct drm_device *dev = crtc->dev;
2712 struct drm_i915_private *dev_priv = dev->dev_private;
2713 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2714 int pipe = intel_crtc->pipe;
2715 u32 reg, temp;
2716
2717 /* enable normal train */
2718 reg = FDI_TX_CTL(pipe);
2719 temp = I915_READ(reg);
61e499bf 2720 if (IS_IVYBRIDGE(dev)) {
357555c0
JB
2721 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2722 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
2723 } else {
2724 temp &= ~FDI_LINK_TRAIN_NONE;
2725 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 2726 }
5e84e1a4
ZW
2727 I915_WRITE(reg, temp);
2728
2729 reg = FDI_RX_CTL(pipe);
2730 temp = I915_READ(reg);
2731 if (HAS_PCH_CPT(dev)) {
2732 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2733 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2734 } else {
2735 temp &= ~FDI_LINK_TRAIN_NONE;
2736 temp |= FDI_LINK_TRAIN_NONE;
2737 }
2738 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2739
2740 /* wait one idle pattern time */
2741 POSTING_READ(reg);
2742 udelay(1000);
357555c0
JB
2743
2744 /* IVB wants error correction enabled */
2745 if (IS_IVYBRIDGE(dev))
2746 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2747 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
2748}
2749
1fbc0d78 2750static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
1e833f40 2751{
1fbc0d78
DV
2752 return crtc->base.enabled && crtc->active &&
2753 crtc->config.has_pch_encoder;
1e833f40
DV
2754}
2755
01a415fd
DV
2756static void ivb_modeset_global_resources(struct drm_device *dev)
2757{
2758 struct drm_i915_private *dev_priv = dev->dev_private;
2759 struct intel_crtc *pipe_B_crtc =
2760 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2761 struct intel_crtc *pipe_C_crtc =
2762 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2763 uint32_t temp;
2764
1e833f40
DV
2765 /*
2766 * When everything is off disable fdi C so that we could enable fdi B
2767 * with all lanes. Note that we don't care about enabled pipes without
2768 * an enabled pch encoder.
2769 */
2770 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2771 !pipe_has_enabled_pch(pipe_C_crtc)) {
01a415fd
DV
2772 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2773 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2774
2775 temp = I915_READ(SOUTH_CHICKEN1);
2776 temp &= ~FDI_BC_BIFURCATION_SELECT;
2777 DRM_DEBUG_KMS("disabling fdi C rx\n");
2778 I915_WRITE(SOUTH_CHICKEN1, temp);
2779 }
2780}
2781
8db9d77b
ZW
2782/* The FDI link training functions for ILK/Ibexpeak. */
2783static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2784{
2785 struct drm_device *dev = crtc->dev;
2786 struct drm_i915_private *dev_priv = dev->dev_private;
2787 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2788 int pipe = intel_crtc->pipe;
5eddb70b 2789 u32 reg, temp, tries;
8db9d77b 2790
1c8562f6 2791 /* FDI needs bits from pipe first */
0fc932b8 2792 assert_pipe_enabled(dev_priv, pipe);
0fc932b8 2793
e1a44743
AJ
2794 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2795 for train result */
5eddb70b
CW
2796 reg = FDI_RX_IMR(pipe);
2797 temp = I915_READ(reg);
e1a44743
AJ
2798 temp &= ~FDI_RX_SYMBOL_LOCK;
2799 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
2800 I915_WRITE(reg, temp);
2801 I915_READ(reg);
e1a44743
AJ
2802 udelay(150);
2803
8db9d77b 2804 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
2805 reg = FDI_TX_CTL(pipe);
2806 temp = I915_READ(reg);
627eb5a3
DV
2807 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2808 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
8db9d77b
ZW
2809 temp &= ~FDI_LINK_TRAIN_NONE;
2810 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 2811 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 2812
5eddb70b
CW
2813 reg = FDI_RX_CTL(pipe);
2814 temp = I915_READ(reg);
8db9d77b
ZW
2815 temp &= ~FDI_LINK_TRAIN_NONE;
2816 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
2817 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2818
2819 POSTING_READ(reg);
8db9d77b
ZW
2820 udelay(150);
2821
5b2adf89 2822 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
2823 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2824 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2825 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 2826
5eddb70b 2827 reg = FDI_RX_IIR(pipe);
e1a44743 2828 for (tries = 0; tries < 5; tries++) {
5eddb70b 2829 temp = I915_READ(reg);
8db9d77b
ZW
2830 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2831
2832 if ((temp & FDI_RX_BIT_LOCK)) {
2833 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 2834 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
2835 break;
2836 }
8db9d77b 2837 }
e1a44743 2838 if (tries == 5)
5eddb70b 2839 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
2840
2841 /* Train 2 */
5eddb70b
CW
2842 reg = FDI_TX_CTL(pipe);
2843 temp = I915_READ(reg);
8db9d77b
ZW
2844 temp &= ~FDI_LINK_TRAIN_NONE;
2845 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 2846 I915_WRITE(reg, temp);
8db9d77b 2847
5eddb70b
CW
2848 reg = FDI_RX_CTL(pipe);
2849 temp = I915_READ(reg);
8db9d77b
ZW
2850 temp &= ~FDI_LINK_TRAIN_NONE;
2851 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 2852 I915_WRITE(reg, temp);
8db9d77b 2853
5eddb70b
CW
2854 POSTING_READ(reg);
2855 udelay(150);
8db9d77b 2856
5eddb70b 2857 reg = FDI_RX_IIR(pipe);
e1a44743 2858 for (tries = 0; tries < 5; tries++) {
5eddb70b 2859 temp = I915_READ(reg);
8db9d77b
ZW
2860 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2861
2862 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 2863 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
2864 DRM_DEBUG_KMS("FDI train 2 done.\n");
2865 break;
2866 }
8db9d77b 2867 }
e1a44743 2868 if (tries == 5)
5eddb70b 2869 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
2870
2871 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 2872
8db9d77b
ZW
2873}
2874
0206e353 2875static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
2876 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2877 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2878 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2879 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2880};
2881
2882/* The FDI link training functions for SNB/Cougarpoint. */
2883static void gen6_fdi_link_train(struct drm_crtc *crtc)
2884{
2885 struct drm_device *dev = crtc->dev;
2886 struct drm_i915_private *dev_priv = dev->dev_private;
2887 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2888 int pipe = intel_crtc->pipe;
fa37d39e 2889 u32 reg, temp, i, retry;
8db9d77b 2890
e1a44743
AJ
2891 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2892 for train result */
5eddb70b
CW
2893 reg = FDI_RX_IMR(pipe);
2894 temp = I915_READ(reg);
e1a44743
AJ
2895 temp &= ~FDI_RX_SYMBOL_LOCK;
2896 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
2897 I915_WRITE(reg, temp);
2898
2899 POSTING_READ(reg);
e1a44743
AJ
2900 udelay(150);
2901
8db9d77b 2902 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
2903 reg = FDI_TX_CTL(pipe);
2904 temp = I915_READ(reg);
627eb5a3
DV
2905 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2906 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
8db9d77b
ZW
2907 temp &= ~FDI_LINK_TRAIN_NONE;
2908 temp |= FDI_LINK_TRAIN_PATTERN_1;
2909 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2910 /* SNB-B */
2911 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 2912 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 2913
d74cf324
DV
2914 I915_WRITE(FDI_RX_MISC(pipe),
2915 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2916
5eddb70b
CW
2917 reg = FDI_RX_CTL(pipe);
2918 temp = I915_READ(reg);
8db9d77b
ZW
2919 if (HAS_PCH_CPT(dev)) {
2920 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2921 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2922 } else {
2923 temp &= ~FDI_LINK_TRAIN_NONE;
2924 temp |= FDI_LINK_TRAIN_PATTERN_1;
2925 }
5eddb70b
CW
2926 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2927
2928 POSTING_READ(reg);
8db9d77b
ZW
2929 udelay(150);
2930
0206e353 2931 for (i = 0; i < 4; i++) {
5eddb70b
CW
2932 reg = FDI_TX_CTL(pipe);
2933 temp = I915_READ(reg);
8db9d77b
ZW
2934 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2935 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
2936 I915_WRITE(reg, temp);
2937
2938 POSTING_READ(reg);
8db9d77b
ZW
2939 udelay(500);
2940
fa37d39e
SP
2941 for (retry = 0; retry < 5; retry++) {
2942 reg = FDI_RX_IIR(pipe);
2943 temp = I915_READ(reg);
2944 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2945 if (temp & FDI_RX_BIT_LOCK) {
2946 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2947 DRM_DEBUG_KMS("FDI train 1 done.\n");
2948 break;
2949 }
2950 udelay(50);
8db9d77b 2951 }
fa37d39e
SP
2952 if (retry < 5)
2953 break;
8db9d77b
ZW
2954 }
2955 if (i == 4)
5eddb70b 2956 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
2957
2958 /* Train 2 */
5eddb70b
CW
2959 reg = FDI_TX_CTL(pipe);
2960 temp = I915_READ(reg);
8db9d77b
ZW
2961 temp &= ~FDI_LINK_TRAIN_NONE;
2962 temp |= FDI_LINK_TRAIN_PATTERN_2;
2963 if (IS_GEN6(dev)) {
2964 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2965 /* SNB-B */
2966 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2967 }
5eddb70b 2968 I915_WRITE(reg, temp);
8db9d77b 2969
5eddb70b
CW
2970 reg = FDI_RX_CTL(pipe);
2971 temp = I915_READ(reg);
8db9d77b
ZW
2972 if (HAS_PCH_CPT(dev)) {
2973 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2974 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2975 } else {
2976 temp &= ~FDI_LINK_TRAIN_NONE;
2977 temp |= FDI_LINK_TRAIN_PATTERN_2;
2978 }
5eddb70b
CW
2979 I915_WRITE(reg, temp);
2980
2981 POSTING_READ(reg);
8db9d77b
ZW
2982 udelay(150);
2983
0206e353 2984 for (i = 0; i < 4; i++) {
5eddb70b
CW
2985 reg = FDI_TX_CTL(pipe);
2986 temp = I915_READ(reg);
8db9d77b
ZW
2987 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2988 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
2989 I915_WRITE(reg, temp);
2990
2991 POSTING_READ(reg);
8db9d77b
ZW
2992 udelay(500);
2993
fa37d39e
SP
2994 for (retry = 0; retry < 5; retry++) {
2995 reg = FDI_RX_IIR(pipe);
2996 temp = I915_READ(reg);
2997 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2998 if (temp & FDI_RX_SYMBOL_LOCK) {
2999 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3000 DRM_DEBUG_KMS("FDI train 2 done.\n");
3001 break;
3002 }
3003 udelay(50);
8db9d77b 3004 }
fa37d39e
SP
3005 if (retry < 5)
3006 break;
8db9d77b
ZW
3007 }
3008 if (i == 4)
5eddb70b 3009 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3010
3011 DRM_DEBUG_KMS("FDI train done.\n");
3012}
3013
357555c0
JB
3014/* Manual link training for Ivy Bridge A0 parts */
3015static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3016{
3017 struct drm_device *dev = crtc->dev;
3018 struct drm_i915_private *dev_priv = dev->dev_private;
3019 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3020 int pipe = intel_crtc->pipe;
139ccd3f 3021 u32 reg, temp, i, j;
357555c0
JB
3022
3023 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3024 for train result */
3025 reg = FDI_RX_IMR(pipe);
3026 temp = I915_READ(reg);
3027 temp &= ~FDI_RX_SYMBOL_LOCK;
3028 temp &= ~FDI_RX_BIT_LOCK;
3029 I915_WRITE(reg, temp);
3030
3031 POSTING_READ(reg);
3032 udelay(150);
3033
01a415fd
DV
3034 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3035 I915_READ(FDI_RX_IIR(pipe)));
3036
139ccd3f
JB
3037 /* Try each vswing and preemphasis setting twice before moving on */
3038 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3039 /* disable first in case we need to retry */
3040 reg = FDI_TX_CTL(pipe);
3041 temp = I915_READ(reg);
3042 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3043 temp &= ~FDI_TX_ENABLE;
3044 I915_WRITE(reg, temp);
357555c0 3045
139ccd3f
JB
3046 reg = FDI_RX_CTL(pipe);
3047 temp = I915_READ(reg);
3048 temp &= ~FDI_LINK_TRAIN_AUTO;
3049 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3050 temp &= ~FDI_RX_ENABLE;
3051 I915_WRITE(reg, temp);
357555c0 3052
139ccd3f 3053 /* enable CPU FDI TX and PCH FDI RX */
357555c0
JB
3054 reg = FDI_TX_CTL(pipe);
3055 temp = I915_READ(reg);
139ccd3f
JB
3056 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3057 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
3058 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
357555c0 3059 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
139ccd3f
JB
3060 temp |= snb_b_fdi_train_param[j/2];
3061 temp |= FDI_COMPOSITE_SYNC;
3062 I915_WRITE(reg, temp | FDI_TX_ENABLE);
357555c0 3063
139ccd3f
JB
3064 I915_WRITE(FDI_RX_MISC(pipe),
3065 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
357555c0 3066
139ccd3f 3067 reg = FDI_RX_CTL(pipe);
357555c0 3068 temp = I915_READ(reg);
139ccd3f
JB
3069 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3070 temp |= FDI_COMPOSITE_SYNC;
3071 I915_WRITE(reg, temp | FDI_RX_ENABLE);
357555c0 3072
139ccd3f
JB
3073 POSTING_READ(reg);
3074 udelay(1); /* should be 0.5us */
357555c0 3075
139ccd3f
JB
3076 for (i = 0; i < 4; i++) {
3077 reg = FDI_RX_IIR(pipe);
3078 temp = I915_READ(reg);
3079 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3080
139ccd3f
JB
3081 if (temp & FDI_RX_BIT_LOCK ||
3082 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3083 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3084 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3085 i);
3086 break;
3087 }
3088 udelay(1); /* should be 0.5us */
3089 }
3090 if (i == 4) {
3091 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3092 continue;
3093 }
357555c0 3094
139ccd3f 3095 /* Train 2 */
357555c0
JB
3096 reg = FDI_TX_CTL(pipe);
3097 temp = I915_READ(reg);
139ccd3f
JB
3098 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3099 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3100 I915_WRITE(reg, temp);
3101
3102 reg = FDI_RX_CTL(pipe);
3103 temp = I915_READ(reg);
3104 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3105 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
357555c0
JB
3106 I915_WRITE(reg, temp);
3107
3108 POSTING_READ(reg);
139ccd3f 3109 udelay(2); /* should be 1.5us */
357555c0 3110
139ccd3f
JB
3111 for (i = 0; i < 4; i++) {
3112 reg = FDI_RX_IIR(pipe);
3113 temp = I915_READ(reg);
3114 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3115
139ccd3f
JB
3116 if (temp & FDI_RX_SYMBOL_LOCK ||
3117 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3118 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3119 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3120 i);
3121 goto train_done;
3122 }
3123 udelay(2); /* should be 1.5us */
357555c0 3124 }
139ccd3f
JB
3125 if (i == 4)
3126 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
357555c0 3127 }
357555c0 3128
139ccd3f 3129train_done:
357555c0
JB
3130 DRM_DEBUG_KMS("FDI train done.\n");
3131}
3132
88cefb6c 3133static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 3134{
88cefb6c 3135 struct drm_device *dev = intel_crtc->base.dev;
2c07245f 3136 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 3137 int pipe = intel_crtc->pipe;
5eddb70b 3138 u32 reg, temp;
79e53945 3139
c64e311e 3140
c98e9dcf 3141 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
3142 reg = FDI_RX_CTL(pipe);
3143 temp = I915_READ(reg);
627eb5a3
DV
3144 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
3145 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
dfd07d72 3146 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
3147 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3148
3149 POSTING_READ(reg);
c98e9dcf
JB
3150 udelay(200);
3151
3152 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
3153 temp = I915_READ(reg);
3154 I915_WRITE(reg, temp | FDI_PCDCLK);
3155
3156 POSTING_READ(reg);
c98e9dcf
JB
3157 udelay(200);
3158
20749730
PZ
3159 /* Enable CPU FDI TX PLL, always on for Ironlake */
3160 reg = FDI_TX_CTL(pipe);
3161 temp = I915_READ(reg);
3162 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3163 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 3164
20749730
PZ
3165 POSTING_READ(reg);
3166 udelay(100);
6be4a607 3167 }
0e23b99d
JB
3168}
3169
88cefb6c
DV
3170static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3171{
3172 struct drm_device *dev = intel_crtc->base.dev;
3173 struct drm_i915_private *dev_priv = dev->dev_private;
3174 int pipe = intel_crtc->pipe;
3175 u32 reg, temp;
3176
3177 /* Switch from PCDclk to Rawclk */
3178 reg = FDI_RX_CTL(pipe);
3179 temp = I915_READ(reg);
3180 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3181
3182 /* Disable CPU FDI TX PLL */
3183 reg = FDI_TX_CTL(pipe);
3184 temp = I915_READ(reg);
3185 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3186
3187 POSTING_READ(reg);
3188 udelay(100);
3189
3190 reg = FDI_RX_CTL(pipe);
3191 temp = I915_READ(reg);
3192 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3193
3194 /* Wait for the clocks to turn off. */
3195 POSTING_READ(reg);
3196 udelay(100);
3197}
3198
0fc932b8
JB
3199static void ironlake_fdi_disable(struct drm_crtc *crtc)
3200{
3201 struct drm_device *dev = crtc->dev;
3202 struct drm_i915_private *dev_priv = dev->dev_private;
3203 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3204 int pipe = intel_crtc->pipe;
3205 u32 reg, temp;
3206
3207 /* disable CPU FDI tx and PCH FDI rx */
3208 reg = FDI_TX_CTL(pipe);
3209 temp = I915_READ(reg);
3210 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3211 POSTING_READ(reg);
3212
3213 reg = FDI_RX_CTL(pipe);
3214 temp = I915_READ(reg);
3215 temp &= ~(0x7 << 16);
dfd07d72 3216 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3217 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3218
3219 POSTING_READ(reg);
3220 udelay(100);
3221
3222 /* Ironlake workaround, disable clock pointer after downing FDI */
eba905b2 3223 if (HAS_PCH_IBX(dev))
6f06ce18 3224 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
0fc932b8
JB
3225
3226 /* still set train pattern 1 */
3227 reg = FDI_TX_CTL(pipe);
3228 temp = I915_READ(reg);
3229 temp &= ~FDI_LINK_TRAIN_NONE;
3230 temp |= FDI_LINK_TRAIN_PATTERN_1;
3231 I915_WRITE(reg, temp);
3232
3233 reg = FDI_RX_CTL(pipe);
3234 temp = I915_READ(reg);
3235 if (HAS_PCH_CPT(dev)) {
3236 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3237 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3238 } else {
3239 temp &= ~FDI_LINK_TRAIN_NONE;
3240 temp |= FDI_LINK_TRAIN_PATTERN_1;
3241 }
3242 /* BPC in FDI rx is consistent with that in PIPECONF */
3243 temp &= ~(0x07 << 16);
dfd07d72 3244 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3245 I915_WRITE(reg, temp);
3246
3247 POSTING_READ(reg);
3248 udelay(100);
3249}
3250
5dce5b93
CW
3251bool intel_has_pending_fb_unpin(struct drm_device *dev)
3252{
3253 struct intel_crtc *crtc;
3254
3255 /* Note that we don't need to be called with mode_config.lock here
3256 * as our list of CRTC objects is static for the lifetime of the
3257 * device and so cannot disappear as we iterate. Similarly, we can
3258 * happily treat the predicates as racy, atomic checks as userspace
3259 * cannot claim and pin a new fb without at least acquring the
3260 * struct_mutex and so serialising with us.
3261 */
d3fcc808 3262 for_each_intel_crtc(dev, crtc) {
5dce5b93
CW
3263 if (atomic_read(&crtc->unpin_work_count) == 0)
3264 continue;
3265
3266 if (crtc->unpin_work)
3267 intel_wait_for_vblank(dev, crtc->pipe);
3268
3269 return true;
3270 }
3271
3272 return false;
3273}
3274
e6c3a2a6
CW
3275static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
3276{
0f91128d 3277 struct drm_device *dev = crtc->dev;
5bb61643 3278 struct drm_i915_private *dev_priv = dev->dev_private;
e6c3a2a6 3279
f4510a27 3280 if (crtc->primary->fb == NULL)
e6c3a2a6
CW
3281 return;
3282
2c10d571
DV
3283 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
3284
eed6d67d
DV
3285 WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3286 !intel_crtc_has_pending_flip(crtc),
3287 60*HZ) == 0);
5bb61643 3288
0f91128d 3289 mutex_lock(&dev->struct_mutex);
f4510a27 3290 intel_finish_fb(crtc->primary->fb);
0f91128d 3291 mutex_unlock(&dev->struct_mutex);
e6c3a2a6
CW
3292}
3293
e615efe4
ED
3294/* Program iCLKIP clock to the desired frequency */
3295static void lpt_program_iclkip(struct drm_crtc *crtc)
3296{
3297 struct drm_device *dev = crtc->dev;
3298 struct drm_i915_private *dev_priv = dev->dev_private;
241bfc38 3299 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
e615efe4
ED
3300 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3301 u32 temp;
3302
09153000
DV
3303 mutex_lock(&dev_priv->dpio_lock);
3304
e615efe4
ED
3305 /* It is necessary to ungate the pixclk gate prior to programming
3306 * the divisors, and gate it back when it is done.
3307 */
3308 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3309
3310 /* Disable SSCCTL */
3311 intel_sbi_write(dev_priv, SBI_SSCCTL6,
988d6ee8
PZ
3312 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3313 SBI_SSCCTL_DISABLE,
3314 SBI_ICLK);
e615efe4
ED
3315
3316 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
12d7ceed 3317 if (clock == 20000) {
e615efe4
ED
3318 auxdiv = 1;
3319 divsel = 0x41;
3320 phaseinc = 0x20;
3321 } else {
3322 /* The iCLK virtual clock root frequency is in MHz,
241bfc38
DL
3323 * but the adjusted_mode->crtc_clock in in KHz. To get the
3324 * divisors, it is necessary to divide one by another, so we
e615efe4
ED
3325 * convert the virtual clock precision to KHz here for higher
3326 * precision.
3327 */
3328 u32 iclk_virtual_root_freq = 172800 * 1000;
3329 u32 iclk_pi_range = 64;
3330 u32 desired_divisor, msb_divisor_value, pi_value;
3331
12d7ceed 3332 desired_divisor = (iclk_virtual_root_freq / clock);
e615efe4
ED
3333 msb_divisor_value = desired_divisor / iclk_pi_range;
3334 pi_value = desired_divisor % iclk_pi_range;
3335
3336 auxdiv = 0;
3337 divsel = msb_divisor_value - 2;
3338 phaseinc = pi_value;
3339 }
3340
3341 /* This should not happen with any sane values */
3342 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3343 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3344 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3345 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3346
3347 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
12d7ceed 3348 clock,
e615efe4
ED
3349 auxdiv,
3350 divsel,
3351 phasedir,
3352 phaseinc);
3353
3354 /* Program SSCDIVINTPHASE6 */
988d6ee8 3355 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
3356 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3357 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3358 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3359 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3360 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3361 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 3362 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
3363
3364 /* Program SSCAUXDIV */
988d6ee8 3365 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
3366 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3367 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 3368 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
3369
3370 /* Enable modulator and associated divider */
988d6ee8 3371 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 3372 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 3373 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4
ED
3374
3375 /* Wait for initialization time */
3376 udelay(24);
3377
3378 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
09153000
DV
3379
3380 mutex_unlock(&dev_priv->dpio_lock);
e615efe4
ED
3381}
3382
275f01b2
DV
3383static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3384 enum pipe pch_transcoder)
3385{
3386 struct drm_device *dev = crtc->base.dev;
3387 struct drm_i915_private *dev_priv = dev->dev_private;
3388 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3389
3390 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3391 I915_READ(HTOTAL(cpu_transcoder)));
3392 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3393 I915_READ(HBLANK(cpu_transcoder)));
3394 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3395 I915_READ(HSYNC(cpu_transcoder)));
3396
3397 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3398 I915_READ(VTOTAL(cpu_transcoder)));
3399 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3400 I915_READ(VBLANK(cpu_transcoder)));
3401 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3402 I915_READ(VSYNC(cpu_transcoder)));
3403 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3404 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3405}
3406
1fbc0d78
DV
3407static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3408{
3409 struct drm_i915_private *dev_priv = dev->dev_private;
3410 uint32_t temp;
3411
3412 temp = I915_READ(SOUTH_CHICKEN1);
3413 if (temp & FDI_BC_BIFURCATION_SELECT)
3414 return;
3415
3416 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3417 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3418
3419 temp |= FDI_BC_BIFURCATION_SELECT;
3420 DRM_DEBUG_KMS("enabling fdi C rx\n");
3421 I915_WRITE(SOUTH_CHICKEN1, temp);
3422 POSTING_READ(SOUTH_CHICKEN1);
3423}
3424
3425static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3426{
3427 struct drm_device *dev = intel_crtc->base.dev;
3428 struct drm_i915_private *dev_priv = dev->dev_private;
3429
3430 switch (intel_crtc->pipe) {
3431 case PIPE_A:
3432 break;
3433 case PIPE_B:
3434 if (intel_crtc->config.fdi_lanes > 2)
3435 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3436 else
3437 cpt_enable_fdi_bc_bifurcation(dev);
3438
3439 break;
3440 case PIPE_C:
3441 cpt_enable_fdi_bc_bifurcation(dev);
3442
3443 break;
3444 default:
3445 BUG();
3446 }
3447}
3448
f67a559d
JB
3449/*
3450 * Enable PCH resources required for PCH ports:
3451 * - PCH PLLs
3452 * - FDI training & RX/TX
3453 * - update transcoder timings
3454 * - DP transcoding bits
3455 * - transcoder
3456 */
3457static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
3458{
3459 struct drm_device *dev = crtc->dev;
3460 struct drm_i915_private *dev_priv = dev->dev_private;
3461 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3462 int pipe = intel_crtc->pipe;
ee7b9f93 3463 u32 reg, temp;
2c07245f 3464
ab9412ba 3465 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 3466
1fbc0d78
DV
3467 if (IS_IVYBRIDGE(dev))
3468 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3469
cd986abb
DV
3470 /* Write the TU size bits before fdi link training, so that error
3471 * detection works. */
3472 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3473 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3474
c98e9dcf 3475 /* For PCH output, training FDI link */
674cf967 3476 dev_priv->display.fdi_link_train(crtc);
2c07245f 3477
3ad8a208
DV
3478 /* We need to program the right clock selection before writing the pixel
3479 * mutliplier into the DPLL. */
303b81e0 3480 if (HAS_PCH_CPT(dev)) {
ee7b9f93 3481 u32 sel;
4b645f14 3482
c98e9dcf 3483 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
3484 temp |= TRANS_DPLL_ENABLE(pipe);
3485 sel = TRANS_DPLLB_SEL(pipe);
a43f6e0f 3486 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
ee7b9f93
JB
3487 temp |= sel;
3488 else
3489 temp &= ~sel;
c98e9dcf 3490 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 3491 }
5eddb70b 3492
3ad8a208
DV
3493 /* XXX: pch pll's can be enabled any time before we enable the PCH
3494 * transcoder, and we actually should do this to not upset any PCH
3495 * transcoder that already use the clock when we share it.
3496 *
3497 * Note that enable_shared_dpll tries to do the right thing, but
3498 * get_shared_dpll unconditionally resets the pll - we need that to have
3499 * the right LVDS enable sequence. */
3500 ironlake_enable_shared_dpll(intel_crtc);
3501
d9b6cb56
JB
3502 /* set transcoder timing, panel must allow it */
3503 assert_panel_unlocked(dev_priv, pipe);
275f01b2 3504 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 3505
303b81e0 3506 intel_fdi_normal_train(crtc);
5e84e1a4 3507
c98e9dcf
JB
3508 /* For PCH DP, enable TRANS_DP_CTL */
3509 if (HAS_PCH_CPT(dev) &&
417e822d
KP
3510 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3511 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
dfd07d72 3512 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
5eddb70b
CW
3513 reg = TRANS_DP_CTL(pipe);
3514 temp = I915_READ(reg);
3515 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
3516 TRANS_DP_SYNC_MASK |
3517 TRANS_DP_BPC_MASK);
5eddb70b
CW
3518 temp |= (TRANS_DP_OUTPUT_ENABLE |
3519 TRANS_DP_ENH_FRAMING);
9325c9f0 3520 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf
JB
3521
3522 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 3523 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
c98e9dcf 3524 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 3525 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
3526
3527 switch (intel_trans_dp_port_sel(crtc)) {
3528 case PCH_DP_B:
5eddb70b 3529 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf
JB
3530 break;
3531 case PCH_DP_C:
5eddb70b 3532 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf
JB
3533 break;
3534 case PCH_DP_D:
5eddb70b 3535 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
3536 break;
3537 default:
e95d41e1 3538 BUG();
32f9d658 3539 }
2c07245f 3540
5eddb70b 3541 I915_WRITE(reg, temp);
6be4a607 3542 }
b52eb4dc 3543
b8a4f404 3544 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
3545}
3546
1507e5bd
PZ
3547static void lpt_pch_enable(struct drm_crtc *crtc)
3548{
3549 struct drm_device *dev = crtc->dev;
3550 struct drm_i915_private *dev_priv = dev->dev_private;
3551 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3b117c8f 3552 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
1507e5bd 3553
ab9412ba 3554 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 3555
8c52b5e8 3556 lpt_program_iclkip(crtc);
1507e5bd 3557
0540e488 3558 /* Set transcoder timing. */
275f01b2 3559 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 3560
937bb610 3561 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
3562}
3563
e2b78267 3564static void intel_put_shared_dpll(struct intel_crtc *crtc)
ee7b9f93 3565{
e2b78267 3566 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
ee7b9f93
JB
3567
3568 if (pll == NULL)
3569 return;
3570
3571 if (pll->refcount == 0) {
46edb027 3572 WARN(1, "bad %s refcount\n", pll->name);
ee7b9f93
JB
3573 return;
3574 }
3575
f4a091c7
DV
3576 if (--pll->refcount == 0) {
3577 WARN_ON(pll->on);
3578 WARN_ON(pll->active);
3579 }
3580
a43f6e0f 3581 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
ee7b9f93
JB
3582}
3583
b89a1d39 3584static struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
ee7b9f93 3585{
e2b78267
DV
3586 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3587 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3588 enum intel_dpll_id i;
ee7b9f93 3589
ee7b9f93 3590 if (pll) {
46edb027
DV
3591 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3592 crtc->base.base.id, pll->name);
e2b78267 3593 intel_put_shared_dpll(crtc);
ee7b9f93
JB
3594 }
3595
98b6bd99
DV
3596 if (HAS_PCH_IBX(dev_priv->dev)) {
3597 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
d94ab068 3598 i = (enum intel_dpll_id) crtc->pipe;
e72f9fbf 3599 pll = &dev_priv->shared_dplls[i];
98b6bd99 3600
46edb027
DV
3601 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3602 crtc->base.base.id, pll->name);
98b6bd99
DV
3603
3604 goto found;
3605 }
3606
e72f9fbf
DV
3607 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3608 pll = &dev_priv->shared_dplls[i];
ee7b9f93
JB
3609
3610 /* Only want to check enabled timings first */
3611 if (pll->refcount == 0)
3612 continue;
3613
b89a1d39
DV
3614 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3615 sizeof(pll->hw_state)) == 0) {
46edb027 3616 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
e2b78267 3617 crtc->base.base.id,
46edb027 3618 pll->name, pll->refcount, pll->active);
ee7b9f93
JB
3619
3620 goto found;
3621 }
3622 }
3623
3624 /* Ok no matching timings, maybe there's a free one? */
e72f9fbf
DV
3625 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3626 pll = &dev_priv->shared_dplls[i];
ee7b9f93 3627 if (pll->refcount == 0) {
46edb027
DV
3628 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3629 crtc->base.base.id, pll->name);
ee7b9f93
JB
3630 goto found;
3631 }
3632 }
3633
3634 return NULL;
3635
3636found:
a43f6e0f 3637 crtc->config.shared_dpll = i;
46edb027
DV
3638 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3639 pipe_name(crtc->pipe));
ee7b9f93 3640
cdbd2316 3641 if (pll->active == 0) {
66e985c0
DV
3642 memcpy(&pll->hw_state, &crtc->config.dpll_hw_state,
3643 sizeof(pll->hw_state));
3644
46edb027 3645 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
cdbd2316 3646 WARN_ON(pll->on);
e9d6944e 3647 assert_shared_dpll_disabled(dev_priv, pll);
ee7b9f93 3648
15bdd4cf 3649 pll->mode_set(dev_priv, pll);
cdbd2316
DV
3650 }
3651 pll->refcount++;
e04c7350 3652
ee7b9f93
JB
3653 return pll;
3654}
3655
a1520318 3656static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57
JB
3657{
3658 struct drm_i915_private *dev_priv = dev->dev_private;
23670b32 3659 int dslreg = PIPEDSL(pipe);
d4270e57
JB
3660 u32 temp;
3661
3662 temp = I915_READ(dslreg);
3663 udelay(500);
3664 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 3665 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 3666 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
3667 }
3668}
3669
b074cec8
JB
3670static void ironlake_pfit_enable(struct intel_crtc *crtc)
3671{
3672 struct drm_device *dev = crtc->base.dev;
3673 struct drm_i915_private *dev_priv = dev->dev_private;
3674 int pipe = crtc->pipe;
3675
fd4daa9c 3676 if (crtc->config.pch_pfit.enabled) {
b074cec8
JB
3677 /* Force use of hard-coded filter coefficients
3678 * as some pre-programmed values are broken,
3679 * e.g. x201.
3680 */
3681 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3682 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3683 PF_PIPE_SEL_IVB(pipe));
3684 else
3685 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3686 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3687 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
d4270e57
JB
3688 }
3689}
3690
bb53d4ae
VS
3691static void intel_enable_planes(struct drm_crtc *crtc)
3692{
3693 struct drm_device *dev = crtc->dev;
3694 enum pipe pipe = to_intel_crtc(crtc)->pipe;
af2b653b 3695 struct drm_plane *plane;
bb53d4ae
VS
3696 struct intel_plane *intel_plane;
3697
af2b653b
MR
3698 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3699 intel_plane = to_intel_plane(plane);
bb53d4ae
VS
3700 if (intel_plane->pipe == pipe)
3701 intel_plane_restore(&intel_plane->base);
af2b653b 3702 }
bb53d4ae
VS
3703}
3704
3705static void intel_disable_planes(struct drm_crtc *crtc)
3706{
3707 struct drm_device *dev = crtc->dev;
3708 enum pipe pipe = to_intel_crtc(crtc)->pipe;
af2b653b 3709 struct drm_plane *plane;
bb53d4ae
VS
3710 struct intel_plane *intel_plane;
3711
af2b653b
MR
3712 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3713 intel_plane = to_intel_plane(plane);
bb53d4ae
VS
3714 if (intel_plane->pipe == pipe)
3715 intel_plane_disable(&intel_plane->base);
af2b653b 3716 }
bb53d4ae
VS
3717}
3718
20bc8673 3719void hsw_enable_ips(struct intel_crtc *crtc)
d77e4531
PZ
3720{
3721 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3722
3723 if (!crtc->config.ips_enabled)
3724 return;
3725
3726 /* We can only enable IPS after we enable a plane and wait for a vblank.
3727 * We guarantee that the plane is enabled by calling intel_enable_ips
3728 * only after intel_enable_plane. And intel_enable_plane already waits
3729 * for a vblank, so all we need to do here is to enable the IPS bit. */
3730 assert_plane_enabled(dev_priv, crtc->plane);
2a114cc1
BW
3731 if (IS_BROADWELL(crtc->base.dev)) {
3732 mutex_lock(&dev_priv->rps.hw_lock);
3733 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
3734 mutex_unlock(&dev_priv->rps.hw_lock);
3735 /* Quoting Art Runyan: "its not safe to expect any particular
3736 * value in IPS_CTL bit 31 after enabling IPS through the
e59150dc
JB
3737 * mailbox." Moreover, the mailbox may return a bogus state,
3738 * so we need to just enable it and continue on.
2a114cc1
BW
3739 */
3740 } else {
3741 I915_WRITE(IPS_CTL, IPS_ENABLE);
3742 /* The bit only becomes 1 in the next vblank, so this wait here
3743 * is essentially intel_wait_for_vblank. If we don't have this
3744 * and don't wait for vblanks until the end of crtc_enable, then
3745 * the HW state readout code will complain that the expected
3746 * IPS_CTL value is not the one we read. */
3747 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
3748 DRM_ERROR("Timed out waiting for IPS enable\n");
3749 }
d77e4531
PZ
3750}
3751
20bc8673 3752void hsw_disable_ips(struct intel_crtc *crtc)
d77e4531
PZ
3753{
3754 struct drm_device *dev = crtc->base.dev;
3755 struct drm_i915_private *dev_priv = dev->dev_private;
3756
3757 if (!crtc->config.ips_enabled)
3758 return;
3759
3760 assert_plane_enabled(dev_priv, crtc->plane);
23d0b130 3761 if (IS_BROADWELL(dev)) {
2a114cc1
BW
3762 mutex_lock(&dev_priv->rps.hw_lock);
3763 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
3764 mutex_unlock(&dev_priv->rps.hw_lock);
23d0b130
BW
3765 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
3766 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
3767 DRM_ERROR("Timed out waiting for IPS disable\n");
e59150dc 3768 } else {
2a114cc1 3769 I915_WRITE(IPS_CTL, 0);
e59150dc
JB
3770 POSTING_READ(IPS_CTL);
3771 }
d77e4531
PZ
3772
3773 /* We need to wait for a vblank before we can disable the plane. */
3774 intel_wait_for_vblank(dev, crtc->pipe);
3775}
3776
3777/** Loads the palette/gamma unit for the CRTC with the prepared values */
3778static void intel_crtc_load_lut(struct drm_crtc *crtc)
3779{
3780 struct drm_device *dev = crtc->dev;
3781 struct drm_i915_private *dev_priv = dev->dev_private;
3782 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3783 enum pipe pipe = intel_crtc->pipe;
3784 int palreg = PALETTE(pipe);
3785 int i;
3786 bool reenable_ips = false;
3787
3788 /* The clocks have to be on to load the palette. */
3789 if (!crtc->enabled || !intel_crtc->active)
3790 return;
3791
3792 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3793 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3794 assert_dsi_pll_enabled(dev_priv);
3795 else
3796 assert_pll_enabled(dev_priv, pipe);
3797 }
3798
3799 /* use legacy palette for Ironlake */
3800 if (HAS_PCH_SPLIT(dev))
3801 palreg = LGC_PALETTE(pipe);
3802
3803 /* Workaround : Do not read or write the pipe palette/gamma data while
3804 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3805 */
41e6fc4c 3806 if (IS_HASWELL(dev) && intel_crtc->config.ips_enabled &&
d77e4531
PZ
3807 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3808 GAMMA_MODE_MODE_SPLIT)) {
3809 hsw_disable_ips(intel_crtc);
3810 reenable_ips = true;
3811 }
3812
3813 for (i = 0; i < 256; i++) {
3814 I915_WRITE(palreg + 4 * i,
3815 (intel_crtc->lut_r[i] << 16) |
3816 (intel_crtc->lut_g[i] << 8) |
3817 intel_crtc->lut_b[i]);
3818 }
3819
3820 if (reenable_ips)
3821 hsw_enable_ips(intel_crtc);
3822}
3823
d3eedb1a
VS
3824static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3825{
3826 if (!enable && intel_crtc->overlay) {
3827 struct drm_device *dev = intel_crtc->base.dev;
3828 struct drm_i915_private *dev_priv = dev->dev_private;
3829
3830 mutex_lock(&dev->struct_mutex);
3831 dev_priv->mm.interruptible = false;
3832 (void) intel_overlay_switch_off(intel_crtc->overlay);
3833 dev_priv->mm.interruptible = true;
3834 mutex_unlock(&dev->struct_mutex);
3835 }
3836
3837 /* Let userspace switch the overlay on again. In most cases userspace
3838 * has to recompute where to put it anyway.
3839 */
3840}
3841
3842/**
3843 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3844 * cursor plane briefly if not already running after enabling the display
3845 * plane.
3846 * This workaround avoids occasional blank screens when self refresh is
3847 * enabled.
3848 */
3849static void
3850g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3851{
3852 u32 cntl = I915_READ(CURCNTR(pipe));
3853
3854 if ((cntl & CURSOR_MODE) == 0) {
3855 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3856
3857 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3858 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3859 intel_wait_for_vblank(dev_priv->dev, pipe);
3860 I915_WRITE(CURCNTR(pipe), cntl);
3861 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3862 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3863 }
3864}
3865
3866static void intel_crtc_enable_planes(struct drm_crtc *crtc)
a5c4d7bc
VS
3867{
3868 struct drm_device *dev = crtc->dev;
3869 struct drm_i915_private *dev_priv = dev->dev_private;
3870 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3871 int pipe = intel_crtc->pipe;
3872 int plane = intel_crtc->plane;
3873
3874 intel_enable_primary_hw_plane(dev_priv, plane, pipe);
3875 intel_enable_planes(crtc);
d3eedb1a
VS
3876 /* The fixup needs to happen before cursor is enabled */
3877 if (IS_G4X(dev))
3878 g4x_fixup_plane(dev_priv, pipe);
a5c4d7bc 3879 intel_crtc_update_cursor(crtc, true);
d3eedb1a 3880 intel_crtc_dpms_overlay(intel_crtc, true);
a5c4d7bc
VS
3881
3882 hsw_enable_ips(intel_crtc);
3883
3884 mutex_lock(&dev->struct_mutex);
3885 intel_update_fbc(dev);
71b1c373 3886 intel_edp_psr_update(dev);
a5c4d7bc
VS
3887 mutex_unlock(&dev->struct_mutex);
3888}
3889
d3eedb1a 3890static void intel_crtc_disable_planes(struct drm_crtc *crtc)
a5c4d7bc
VS
3891{
3892 struct drm_device *dev = crtc->dev;
3893 struct drm_i915_private *dev_priv = dev->dev_private;
3894 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3895 int pipe = intel_crtc->pipe;
3896 int plane = intel_crtc->plane;
3897
3898 intel_crtc_wait_for_pending_flips(crtc);
3899 drm_vblank_off(dev, pipe);
3900
3901 if (dev_priv->fbc.plane == plane)
3902 intel_disable_fbc(dev);
3903
3904 hsw_disable_ips(intel_crtc);
3905
d3eedb1a 3906 intel_crtc_dpms_overlay(intel_crtc, false);
a5c4d7bc
VS
3907 intel_crtc_update_cursor(crtc, false);
3908 intel_disable_planes(crtc);
3909 intel_disable_primary_hw_plane(dev_priv, plane, pipe);
3910}
3911
f67a559d
JB
3912static void ironlake_crtc_enable(struct drm_crtc *crtc)
3913{
3914 struct drm_device *dev = crtc->dev;
3915 struct drm_i915_private *dev_priv = dev->dev_private;
3916 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 3917 struct intel_encoder *encoder;
f67a559d 3918 int pipe = intel_crtc->pipe;
29407aab 3919 enum plane plane = intel_crtc->plane;
f67a559d 3920
08a48469
DV
3921 WARN_ON(!crtc->enabled);
3922
f67a559d
JB
3923 if (intel_crtc->active)
3924 return;
3925
29407aab
DV
3926 if (intel_crtc->config.has_dp_encoder)
3927 intel_dp_set_m_n(intel_crtc);
3928
3929 intel_set_pipe_timings(intel_crtc);
3930
3931 if (intel_crtc->config.has_pch_encoder) {
3932 intel_cpu_transcoder_set_m_n(intel_crtc,
3933 &intel_crtc->config.fdi_m_n);
3934 }
3935
3936 ironlake_set_pipeconf(crtc);
3937
3938 /* Set up the display plane register */
3939 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
3940 POSTING_READ(DSPCNTR(plane));
3941
3942 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
3943 crtc->x, crtc->y);
3944
f67a559d 3945 intel_crtc->active = true;
8664281b
PZ
3946
3947 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3948 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3949
f6736a1a 3950 for_each_encoder_on_crtc(dev, crtc, encoder)
952735ee
DV
3951 if (encoder->pre_enable)
3952 encoder->pre_enable(encoder);
f67a559d 3953
5bfe2ac0 3954 if (intel_crtc->config.has_pch_encoder) {
fff367c7
DV
3955 /* Note: FDI PLL enabling _must_ be done before we enable the
3956 * cpu pipes, hence this is separate from all the other fdi/pch
3957 * enabling. */
88cefb6c 3958 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
3959 } else {
3960 assert_fdi_tx_disabled(dev_priv, pipe);
3961 assert_fdi_rx_disabled(dev_priv, pipe);
3962 }
f67a559d 3963
b074cec8 3964 ironlake_pfit_enable(intel_crtc);
f67a559d 3965
9c54c0dd
JB
3966 /*
3967 * On ILK+ LUT must be loaded before the pipe is running but with
3968 * clocks enabled
3969 */
3970 intel_crtc_load_lut(crtc);
3971
f37fcc2a 3972 intel_update_watermarks(crtc);
e1fdc473 3973 intel_enable_pipe(intel_crtc);
f67a559d 3974
5bfe2ac0 3975 if (intel_crtc->config.has_pch_encoder)
f67a559d 3976 ironlake_pch_enable(crtc);
c98e9dcf 3977
fa5c73b1
DV
3978 for_each_encoder_on_crtc(dev, crtc, encoder)
3979 encoder->enable(encoder);
61b77ddd
DV
3980
3981 if (HAS_PCH_CPT(dev))
a1520318 3982 cpt_verify_modeset(dev, intel_crtc->pipe);
6ce94100 3983
d3eedb1a 3984 intel_crtc_enable_planes(crtc);
a5c4d7bc 3985
6ce94100
DV
3986 /*
3987 * There seems to be a race in PCH platform hw (at least on some
3988 * outputs) where an enabled pipe still completes any pageflip right
3989 * away (as if the pipe is off) instead of waiting for vblank. As soon
3990 * as the first vblank happend, everything works as expected. Hence just
3991 * wait for one vblank before returning to avoid strange things
3992 * happening.
3993 */
3994 intel_wait_for_vblank(dev, intel_crtc->pipe);
6be4a607
JB
3995}
3996
42db64ef
PZ
3997/* IPS only exists on ULT machines and is tied to pipe A. */
3998static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
3999{
f5adf94e 4000 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
42db64ef
PZ
4001}
4002
e4916946
PZ
4003/*
4004 * This implements the workaround described in the "notes" section of the mode
4005 * set sequence documentation. When going from no pipes or single pipe to
4006 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4007 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4008 */
4009static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4010{
4011 struct drm_device *dev = crtc->base.dev;
4012 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4013
4014 /* We want to get the other_active_crtc only if there's only 1 other
4015 * active crtc. */
d3fcc808 4016 for_each_intel_crtc(dev, crtc_it) {
e4916946
PZ
4017 if (!crtc_it->active || crtc_it == crtc)
4018 continue;
4019
4020 if (other_active_crtc)
4021 return;
4022
4023 other_active_crtc = crtc_it;
4024 }
4025 if (!other_active_crtc)
4026 return;
4027
4028 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4029 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4030}
4031
4f771f10
PZ
4032static void haswell_crtc_enable(struct drm_crtc *crtc)
4033{
4034 struct drm_device *dev = crtc->dev;
4035 struct drm_i915_private *dev_priv = dev->dev_private;
4036 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4037 struct intel_encoder *encoder;
4038 int pipe = intel_crtc->pipe;
229fca97 4039 enum plane plane = intel_crtc->plane;
4f771f10
PZ
4040
4041 WARN_ON(!crtc->enabled);
4042
4043 if (intel_crtc->active)
4044 return;
4045
229fca97
DV
4046 if (intel_crtc->config.has_dp_encoder)
4047 intel_dp_set_m_n(intel_crtc);
4048
4049 intel_set_pipe_timings(intel_crtc);
4050
4051 if (intel_crtc->config.has_pch_encoder) {
4052 intel_cpu_transcoder_set_m_n(intel_crtc,
4053 &intel_crtc->config.fdi_m_n);
4054 }
4055
4056 haswell_set_pipeconf(crtc);
4057
4058 intel_set_pipe_csc(crtc);
4059
4060 /* Set up the display plane register */
4061 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
4062 POSTING_READ(DSPCNTR(plane));
4063
4064 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4065 crtc->x, crtc->y);
4066
4f771f10 4067 intel_crtc->active = true;
8664281b
PZ
4068
4069 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4070 if (intel_crtc->config.has_pch_encoder)
4071 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
4072
5bfe2ac0 4073 if (intel_crtc->config.has_pch_encoder)
04945641 4074 dev_priv->display.fdi_link_train(crtc);
4f771f10
PZ
4075
4076 for_each_encoder_on_crtc(dev, crtc, encoder)
4077 if (encoder->pre_enable)
4078 encoder->pre_enable(encoder);
4079
1f544388 4080 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 4081
b074cec8 4082 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
4083
4084 /*
4085 * On ILK+ LUT must be loaded before the pipe is running but with
4086 * clocks enabled
4087 */
4088 intel_crtc_load_lut(crtc);
4089
1f544388 4090 intel_ddi_set_pipe_settings(crtc);
8228c251 4091 intel_ddi_enable_transcoder_func(crtc);
4f771f10 4092
f37fcc2a 4093 intel_update_watermarks(crtc);
e1fdc473 4094 intel_enable_pipe(intel_crtc);
42db64ef 4095
5bfe2ac0 4096 if (intel_crtc->config.has_pch_encoder)
1507e5bd 4097 lpt_pch_enable(crtc);
4f771f10 4098
8807e55b 4099 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10 4100 encoder->enable(encoder);
8807e55b
JN
4101 intel_opregion_notify_encoder(encoder, true);
4102 }
4f771f10 4103
e4916946
PZ
4104 /* If we change the relative order between pipe/planes enabling, we need
4105 * to change the workaround. */
4106 haswell_mode_set_planes_workaround(intel_crtc);
d3eedb1a 4107 intel_crtc_enable_planes(crtc);
4f771f10
PZ
4108}
4109
3f8dce3a
DV
4110static void ironlake_pfit_disable(struct intel_crtc *crtc)
4111{
4112 struct drm_device *dev = crtc->base.dev;
4113 struct drm_i915_private *dev_priv = dev->dev_private;
4114 int pipe = crtc->pipe;
4115
4116 /* To avoid upsetting the power well on haswell only disable the pfit if
4117 * it's in use. The hw state code will make sure we get this right. */
fd4daa9c 4118 if (crtc->config.pch_pfit.enabled) {
3f8dce3a
DV
4119 I915_WRITE(PF_CTL(pipe), 0);
4120 I915_WRITE(PF_WIN_POS(pipe), 0);
4121 I915_WRITE(PF_WIN_SZ(pipe), 0);
4122 }
4123}
4124
6be4a607
JB
4125static void ironlake_crtc_disable(struct drm_crtc *crtc)
4126{
4127 struct drm_device *dev = crtc->dev;
4128 struct drm_i915_private *dev_priv = dev->dev_private;
4129 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4130 struct intel_encoder *encoder;
6be4a607 4131 int pipe = intel_crtc->pipe;
5eddb70b 4132 u32 reg, temp;
b52eb4dc 4133
f7abfe8b
CW
4134 if (!intel_crtc->active)
4135 return;
4136
d3eedb1a 4137 intel_crtc_disable_planes(crtc);
a5c4d7bc 4138
ea9d758d
DV
4139 for_each_encoder_on_crtc(dev, crtc, encoder)
4140 encoder->disable(encoder);
4141
d925c59a
DV
4142 if (intel_crtc->config.has_pch_encoder)
4143 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
4144
b24e7179 4145 intel_disable_pipe(dev_priv, pipe);
32f9d658 4146
3f8dce3a 4147 ironlake_pfit_disable(intel_crtc);
2c07245f 4148
bf49ec8c
DV
4149 for_each_encoder_on_crtc(dev, crtc, encoder)
4150 if (encoder->post_disable)
4151 encoder->post_disable(encoder);
2c07245f 4152
d925c59a
DV
4153 if (intel_crtc->config.has_pch_encoder) {
4154 ironlake_fdi_disable(crtc);
913d8d11 4155
d925c59a
DV
4156 ironlake_disable_pch_transcoder(dev_priv, pipe);
4157 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
6be4a607 4158
d925c59a
DV
4159 if (HAS_PCH_CPT(dev)) {
4160 /* disable TRANS_DP_CTL */
4161 reg = TRANS_DP_CTL(pipe);
4162 temp = I915_READ(reg);
4163 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4164 TRANS_DP_PORT_SEL_MASK);
4165 temp |= TRANS_DP_PORT_SEL_NONE;
4166 I915_WRITE(reg, temp);
4167
4168 /* disable DPLL_SEL */
4169 temp = I915_READ(PCH_DPLL_SEL);
11887397 4170 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 4171 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 4172 }
e3421a18 4173
d925c59a 4174 /* disable PCH DPLL */
e72f9fbf 4175 intel_disable_shared_dpll(intel_crtc);
8db9d77b 4176
d925c59a
DV
4177 ironlake_fdi_pll_disable(intel_crtc);
4178 }
6b383a7f 4179
f7abfe8b 4180 intel_crtc->active = false;
46ba614c 4181 intel_update_watermarks(crtc);
d1ebd816
BW
4182
4183 mutex_lock(&dev->struct_mutex);
6b383a7f 4184 intel_update_fbc(dev);
71b1c373 4185 intel_edp_psr_update(dev);
d1ebd816 4186 mutex_unlock(&dev->struct_mutex);
6be4a607 4187}
1b3c7a47 4188
4f771f10 4189static void haswell_crtc_disable(struct drm_crtc *crtc)
ee7b9f93 4190{
4f771f10
PZ
4191 struct drm_device *dev = crtc->dev;
4192 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93 4193 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4f771f10
PZ
4194 struct intel_encoder *encoder;
4195 int pipe = intel_crtc->pipe;
3b117c8f 4196 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
ee7b9f93 4197
4f771f10
PZ
4198 if (!intel_crtc->active)
4199 return;
4200
d3eedb1a 4201 intel_crtc_disable_planes(crtc);
dda9a66a 4202
8807e55b
JN
4203 for_each_encoder_on_crtc(dev, crtc, encoder) {
4204 intel_opregion_notify_encoder(encoder, false);
4f771f10 4205 encoder->disable(encoder);
8807e55b 4206 }
4f771f10 4207
8664281b
PZ
4208 if (intel_crtc->config.has_pch_encoder)
4209 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
4f771f10
PZ
4210 intel_disable_pipe(dev_priv, pipe);
4211
ad80a810 4212 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 4213
3f8dce3a 4214 ironlake_pfit_disable(intel_crtc);
4f771f10 4215
1f544388 4216 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10
PZ
4217
4218 for_each_encoder_on_crtc(dev, crtc, encoder)
4219 if (encoder->post_disable)
4220 encoder->post_disable(encoder);
4221
88adfff1 4222 if (intel_crtc->config.has_pch_encoder) {
ab4d966c 4223 lpt_disable_pch_transcoder(dev_priv);
8664281b 4224 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
1ad960f2 4225 intel_ddi_fdi_disable(crtc);
83616634 4226 }
4f771f10
PZ
4227
4228 intel_crtc->active = false;
46ba614c 4229 intel_update_watermarks(crtc);
4f771f10
PZ
4230
4231 mutex_lock(&dev->struct_mutex);
4232 intel_update_fbc(dev);
71b1c373 4233 intel_edp_psr_update(dev);
4f771f10
PZ
4234 mutex_unlock(&dev->struct_mutex);
4235}
4236
ee7b9f93
JB
4237static void ironlake_crtc_off(struct drm_crtc *crtc)
4238{
4239 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
e72f9fbf 4240 intel_put_shared_dpll(intel_crtc);
ee7b9f93
JB
4241}
4242
6441ab5f
PZ
4243static void haswell_crtc_off(struct drm_crtc *crtc)
4244{
4245 intel_ddi_put_crtc_pll(crtc);
4246}
4247
2dd24552
JB
4248static void i9xx_pfit_enable(struct intel_crtc *crtc)
4249{
4250 struct drm_device *dev = crtc->base.dev;
4251 struct drm_i915_private *dev_priv = dev->dev_private;
4252 struct intel_crtc_config *pipe_config = &crtc->config;
4253
328d8e82 4254 if (!crtc->config.gmch_pfit.control)
2dd24552
JB
4255 return;
4256
2dd24552 4257 /*
c0b03411
DV
4258 * The panel fitter should only be adjusted whilst the pipe is disabled,
4259 * according to register description and PRM.
2dd24552 4260 */
c0b03411
DV
4261 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4262 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 4263
b074cec8
JB
4264 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4265 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
4266
4267 /* Border color in case we don't scale up to the full screen. Black by
4268 * default, change to something else for debugging. */
4269 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
4270}
4271
77d22dca
ID
4272#define for_each_power_domain(domain, mask) \
4273 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4274 if ((1 << (domain)) & (mask))
4275
319be8ae
ID
4276enum intel_display_power_domain
4277intel_display_port_power_domain(struct intel_encoder *intel_encoder)
4278{
4279 struct drm_device *dev = intel_encoder->base.dev;
4280 struct intel_digital_port *intel_dig_port;
4281
4282 switch (intel_encoder->type) {
4283 case INTEL_OUTPUT_UNKNOWN:
4284 /* Only DDI platforms should ever use this output type */
4285 WARN_ON_ONCE(!HAS_DDI(dev));
4286 case INTEL_OUTPUT_DISPLAYPORT:
4287 case INTEL_OUTPUT_HDMI:
4288 case INTEL_OUTPUT_EDP:
4289 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
4290 switch (intel_dig_port->port) {
4291 case PORT_A:
4292 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4293 case PORT_B:
4294 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4295 case PORT_C:
4296 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4297 case PORT_D:
4298 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4299 default:
4300 WARN_ON_ONCE(1);
4301 return POWER_DOMAIN_PORT_OTHER;
4302 }
4303 case INTEL_OUTPUT_ANALOG:
4304 return POWER_DOMAIN_PORT_CRT;
4305 case INTEL_OUTPUT_DSI:
4306 return POWER_DOMAIN_PORT_DSI;
4307 default:
4308 return POWER_DOMAIN_PORT_OTHER;
4309 }
4310}
4311
4312static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
77d22dca 4313{
319be8ae
ID
4314 struct drm_device *dev = crtc->dev;
4315 struct intel_encoder *intel_encoder;
4316 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4317 enum pipe pipe = intel_crtc->pipe;
4318 bool pfit_enabled = intel_crtc->config.pch_pfit.enabled;
77d22dca
ID
4319 unsigned long mask;
4320 enum transcoder transcoder;
4321
4322 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4323
4324 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4325 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
4326 if (pfit_enabled)
4327 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4328
319be8ae
ID
4329 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4330 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4331
77d22dca
ID
4332 return mask;
4333}
4334
4335void intel_display_set_init_power(struct drm_i915_private *dev_priv,
4336 bool enable)
4337{
4338 if (dev_priv->power_domains.init_power_on == enable)
4339 return;
4340
4341 if (enable)
4342 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
4343 else
4344 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
4345
4346 dev_priv->power_domains.init_power_on = enable;
4347}
4348
4349static void modeset_update_crtc_power_domains(struct drm_device *dev)
4350{
4351 struct drm_i915_private *dev_priv = dev->dev_private;
4352 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4353 struct intel_crtc *crtc;
4354
4355 /*
4356 * First get all needed power domains, then put all unneeded, to avoid
4357 * any unnecessary toggling of the power wells.
4358 */
d3fcc808 4359 for_each_intel_crtc(dev, crtc) {
77d22dca
ID
4360 enum intel_display_power_domain domain;
4361
4362 if (!crtc->base.enabled)
4363 continue;
4364
319be8ae 4365 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
77d22dca
ID
4366
4367 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4368 intel_display_power_get(dev_priv, domain);
4369 }
4370
d3fcc808 4371 for_each_intel_crtc(dev, crtc) {
77d22dca
ID
4372 enum intel_display_power_domain domain;
4373
4374 for_each_power_domain(domain, crtc->enabled_power_domains)
4375 intel_display_power_put(dev_priv, domain);
4376
4377 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4378 }
4379
4380 intel_display_set_init_power(dev_priv, false);
4381}
4382
586f49dc 4383int valleyview_get_vco(struct drm_i915_private *dev_priv)
30a970c6 4384{
586f49dc 4385 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
30a970c6 4386
586f49dc
JB
4387 /* Obtain SKU information */
4388 mutex_lock(&dev_priv->dpio_lock);
4389 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4390 CCK_FUSE_HPLL_FREQ_MASK;
4391 mutex_unlock(&dev_priv->dpio_lock);
30a970c6 4392
586f49dc 4393 return vco_freq[hpll_freq];
30a970c6
JB
4394}
4395
4396/* Adjust CDclk dividers to allow high res or save power if possible */
4397static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4398{
4399 struct drm_i915_private *dev_priv = dev->dev_private;
4400 u32 val, cmd;
4401
d60c4473
ID
4402 WARN_ON(valleyview_cur_cdclk(dev_priv) != dev_priv->vlv_cdclk_freq);
4403 dev_priv->vlv_cdclk_freq = cdclk;
4404
30a970c6
JB
4405 if (cdclk >= 320) /* jump to highest voltage for 400MHz too */
4406 cmd = 2;
4407 else if (cdclk == 266)
4408 cmd = 1;
4409 else
4410 cmd = 0;
4411
4412 mutex_lock(&dev_priv->rps.hw_lock);
4413 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4414 val &= ~DSPFREQGUAR_MASK;
4415 val |= (cmd << DSPFREQGUAR_SHIFT);
4416 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4417 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4418 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4419 50)) {
4420 DRM_ERROR("timed out waiting for CDclk change\n");
4421 }
4422 mutex_unlock(&dev_priv->rps.hw_lock);
4423
4424 if (cdclk == 400) {
4425 u32 divider, vco;
4426
4427 vco = valleyview_get_vco(dev_priv);
4428 divider = ((vco << 1) / cdclk) - 1;
4429
4430 mutex_lock(&dev_priv->dpio_lock);
4431 /* adjust cdclk divider */
4432 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4433 val &= ~0xf;
4434 val |= divider;
4435 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
4436 mutex_unlock(&dev_priv->dpio_lock);
4437 }
4438
4439 mutex_lock(&dev_priv->dpio_lock);
4440 /* adjust self-refresh exit latency value */
4441 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4442 val &= ~0x7f;
4443
4444 /*
4445 * For high bandwidth configs, we set a higher latency in the bunit
4446 * so that the core display fetch happens in time to avoid underruns.
4447 */
4448 if (cdclk == 400)
4449 val |= 4500 / 250; /* 4.5 usec */
4450 else
4451 val |= 3000 / 250; /* 3.0 usec */
4452 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4453 mutex_unlock(&dev_priv->dpio_lock);
4454
4455 /* Since we changed the CDclk, we need to update the GMBUSFREQ too */
4456 intel_i2c_reset(dev);
4457}
4458
d60c4473 4459int valleyview_cur_cdclk(struct drm_i915_private *dev_priv)
30a970c6
JB
4460{
4461 int cur_cdclk, vco;
4462 int divider;
4463
4464 vco = valleyview_get_vco(dev_priv);
4465
4466 mutex_lock(&dev_priv->dpio_lock);
4467 divider = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4468 mutex_unlock(&dev_priv->dpio_lock);
4469
4470 divider &= 0xf;
4471
4472 cur_cdclk = (vco << 1) / (divider + 1);
4473
4474 return cur_cdclk;
4475}
4476
4477static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4478 int max_pixclk)
4479{
30a970c6
JB
4480 /*
4481 * Really only a few cases to deal with, as only 4 CDclks are supported:
4482 * 200MHz
4483 * 267MHz
4484 * 320MHz
4485 * 400MHz
4486 * So we check to see whether we're above 90% of the lower bin and
4487 * adjust if needed.
4488 */
4489 if (max_pixclk > 288000) {
4490 return 400;
4491 } else if (max_pixclk > 240000) {
4492 return 320;
4493 } else
4494 return 266;
4495 /* Looks like the 200MHz CDclk freq doesn't work on some configs */
4496}
4497
2f2d7aa1
VS
4498/* compute the max pixel clock for new configuration */
4499static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
30a970c6
JB
4500{
4501 struct drm_device *dev = dev_priv->dev;
4502 struct intel_crtc *intel_crtc;
4503 int max_pixclk = 0;
4504
d3fcc808 4505 for_each_intel_crtc(dev, intel_crtc) {
2f2d7aa1 4506 if (intel_crtc->new_enabled)
30a970c6 4507 max_pixclk = max(max_pixclk,
2f2d7aa1 4508 intel_crtc->new_config->adjusted_mode.crtc_clock);
30a970c6
JB
4509 }
4510
4511 return max_pixclk;
4512}
4513
4514static void valleyview_modeset_global_pipes(struct drm_device *dev,
2f2d7aa1 4515 unsigned *prepare_pipes)
30a970c6
JB
4516{
4517 struct drm_i915_private *dev_priv = dev->dev_private;
4518 struct intel_crtc *intel_crtc;
2f2d7aa1 4519 int max_pixclk = intel_mode_max_pixclk(dev_priv);
30a970c6 4520
d60c4473
ID
4521 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4522 dev_priv->vlv_cdclk_freq)
30a970c6
JB
4523 return;
4524
2f2d7aa1 4525 /* disable/enable all currently active pipes while we change cdclk */
d3fcc808 4526 for_each_intel_crtc(dev, intel_crtc)
30a970c6
JB
4527 if (intel_crtc->base.enabled)
4528 *prepare_pipes |= (1 << intel_crtc->pipe);
4529}
4530
4531static void valleyview_modeset_global_resources(struct drm_device *dev)
4532{
4533 struct drm_i915_private *dev_priv = dev->dev_private;
2f2d7aa1 4534 int max_pixclk = intel_mode_max_pixclk(dev_priv);
30a970c6
JB
4535 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4536
d60c4473 4537 if (req_cdclk != dev_priv->vlv_cdclk_freq)
30a970c6 4538 valleyview_set_cdclk(dev, req_cdclk);
77961eb9 4539 modeset_update_crtc_power_domains(dev);
30a970c6
JB
4540}
4541
89b667f8
JB
4542static void valleyview_crtc_enable(struct drm_crtc *crtc)
4543{
4544 struct drm_device *dev = crtc->dev;
5b18e57c 4545 struct drm_i915_private *dev_priv = dev->dev_private;
89b667f8
JB
4546 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4547 struct intel_encoder *encoder;
4548 int pipe = intel_crtc->pipe;
5b18e57c 4549 int plane = intel_crtc->plane;
23538ef1 4550 bool is_dsi;
5b18e57c 4551 u32 dspcntr;
89b667f8
JB
4552
4553 WARN_ON(!crtc->enabled);
4554
4555 if (intel_crtc->active)
4556 return;
4557
5b18e57c
DV
4558 /* Set up the display plane register */
4559 dspcntr = DISPPLANE_GAMMA_ENABLE;
4560
4561 if (intel_crtc->config.has_dp_encoder)
4562 intel_dp_set_m_n(intel_crtc);
4563
4564 intel_set_pipe_timings(intel_crtc);
4565
4566 /* pipesrc and dspsize control the size that is scaled from,
4567 * which should always be the user's requested size.
4568 */
4569 I915_WRITE(DSPSIZE(plane),
4570 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4571 (intel_crtc->config.pipe_src_w - 1));
4572 I915_WRITE(DSPPOS(plane), 0);
4573
4574 i9xx_set_pipeconf(intel_crtc);
4575
4576 I915_WRITE(DSPCNTR(plane), dspcntr);
4577 POSTING_READ(DSPCNTR(plane));
4578
4579 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4580 crtc->x, crtc->y);
4581
89b667f8 4582 intel_crtc->active = true;
89b667f8 4583
89b667f8
JB
4584 for_each_encoder_on_crtc(dev, crtc, encoder)
4585 if (encoder->pre_pll_enable)
4586 encoder->pre_pll_enable(encoder);
4587
23538ef1
JN
4588 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4589
9d556c99
CML
4590 if (!is_dsi) {
4591 if (IS_CHERRYVIEW(dev))
4592 chv_enable_pll(intel_crtc);
4593 else
4594 vlv_enable_pll(intel_crtc);
4595 }
89b667f8
JB
4596
4597 for_each_encoder_on_crtc(dev, crtc, encoder)
4598 if (encoder->pre_enable)
4599 encoder->pre_enable(encoder);
4600
2dd24552
JB
4601 i9xx_pfit_enable(intel_crtc);
4602
63cbb074
VS
4603 intel_crtc_load_lut(crtc);
4604
f37fcc2a 4605 intel_update_watermarks(crtc);
e1fdc473 4606 intel_enable_pipe(intel_crtc);
2d9d2b0b 4607 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
be6a6f8e 4608
5004945f
JN
4609 for_each_encoder_on_crtc(dev, crtc, encoder)
4610 encoder->enable(encoder);
9ab0460b
VS
4611
4612 intel_crtc_enable_planes(crtc);
89b667f8
JB
4613}
4614
f13c2ef3
DV
4615static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
4616{
4617 struct drm_device *dev = crtc->base.dev;
4618 struct drm_i915_private *dev_priv = dev->dev_private;
4619
4620 I915_WRITE(FP0(crtc->pipe), crtc->config.dpll_hw_state.fp0);
4621 I915_WRITE(FP1(crtc->pipe), crtc->config.dpll_hw_state.fp1);
4622}
4623
0b8765c6 4624static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
4625{
4626 struct drm_device *dev = crtc->dev;
5b18e57c 4627 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 4628 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4629 struct intel_encoder *encoder;
79e53945 4630 int pipe = intel_crtc->pipe;
5b18e57c
DV
4631 int plane = intel_crtc->plane;
4632 u32 dspcntr;
79e53945 4633
08a48469
DV
4634 WARN_ON(!crtc->enabled);
4635
f7abfe8b
CW
4636 if (intel_crtc->active)
4637 return;
4638
f13c2ef3
DV
4639 i9xx_set_pll_dividers(intel_crtc);
4640
5b18e57c
DV
4641 /* Set up the display plane register */
4642 dspcntr = DISPPLANE_GAMMA_ENABLE;
4643
4644 if (pipe == 0)
4645 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4646 else
4647 dspcntr |= DISPPLANE_SEL_PIPE_B;
4648
4649 if (intel_crtc->config.has_dp_encoder)
4650 intel_dp_set_m_n(intel_crtc);
4651
4652 intel_set_pipe_timings(intel_crtc);
4653
4654 /* pipesrc and dspsize control the size that is scaled from,
4655 * which should always be the user's requested size.
4656 */
4657 I915_WRITE(DSPSIZE(plane),
4658 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4659 (intel_crtc->config.pipe_src_w - 1));
4660 I915_WRITE(DSPPOS(plane), 0);
4661
4662 i9xx_set_pipeconf(intel_crtc);
4663
4664 I915_WRITE(DSPCNTR(plane), dspcntr);
4665 POSTING_READ(DSPCNTR(plane));
4666
4667 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4668 crtc->x, crtc->y);
4669
f7abfe8b 4670 intel_crtc->active = true;
6b383a7f 4671
9d6d9f19
MK
4672 for_each_encoder_on_crtc(dev, crtc, encoder)
4673 if (encoder->pre_enable)
4674 encoder->pre_enable(encoder);
4675
f6736a1a
DV
4676 i9xx_enable_pll(intel_crtc);
4677
2dd24552
JB
4678 i9xx_pfit_enable(intel_crtc);
4679
63cbb074
VS
4680 intel_crtc_load_lut(crtc);
4681
f37fcc2a 4682 intel_update_watermarks(crtc);
e1fdc473 4683 intel_enable_pipe(intel_crtc);
2d9d2b0b 4684 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
be6a6f8e 4685
fa5c73b1
DV
4686 for_each_encoder_on_crtc(dev, crtc, encoder)
4687 encoder->enable(encoder);
9ab0460b
VS
4688
4689 intel_crtc_enable_planes(crtc);
0b8765c6 4690}
79e53945 4691
87476d63
DV
4692static void i9xx_pfit_disable(struct intel_crtc *crtc)
4693{
4694 struct drm_device *dev = crtc->base.dev;
4695 struct drm_i915_private *dev_priv = dev->dev_private;
87476d63 4696
328d8e82
DV
4697 if (!crtc->config.gmch_pfit.control)
4698 return;
87476d63 4699
328d8e82 4700 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 4701
328d8e82
DV
4702 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
4703 I915_READ(PFIT_CONTROL));
4704 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
4705}
4706
0b8765c6
JB
4707static void i9xx_crtc_disable(struct drm_crtc *crtc)
4708{
4709 struct drm_device *dev = crtc->dev;
4710 struct drm_i915_private *dev_priv = dev->dev_private;
4711 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4712 struct intel_encoder *encoder;
0b8765c6 4713 int pipe = intel_crtc->pipe;
ef9c3aee 4714
f7abfe8b
CW
4715 if (!intel_crtc->active)
4716 return;
4717
9ab0460b
VS
4718 intel_crtc_disable_planes(crtc);
4719
ea9d758d
DV
4720 for_each_encoder_on_crtc(dev, crtc, encoder)
4721 encoder->disable(encoder);
4722
2d9d2b0b 4723 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
b24e7179 4724 intel_disable_pipe(dev_priv, pipe);
24a1f16d 4725
87476d63 4726 i9xx_pfit_disable(intel_crtc);
24a1f16d 4727
89b667f8
JB
4728 for_each_encoder_on_crtc(dev, crtc, encoder)
4729 if (encoder->post_disable)
4730 encoder->post_disable(encoder);
4731
076ed3b2
CML
4732 if (!intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI)) {
4733 if (IS_CHERRYVIEW(dev))
4734 chv_disable_pll(dev_priv, pipe);
4735 else if (IS_VALLEYVIEW(dev))
4736 vlv_disable_pll(dev_priv, pipe);
4737 else
4738 i9xx_disable_pll(dev_priv, pipe);
4739 }
0b8765c6 4740
f7abfe8b 4741 intel_crtc->active = false;
46ba614c 4742 intel_update_watermarks(crtc);
f37fcc2a 4743
efa9624e 4744 mutex_lock(&dev->struct_mutex);
6b383a7f 4745 intel_update_fbc(dev);
71b1c373 4746 intel_edp_psr_update(dev);
efa9624e 4747 mutex_unlock(&dev->struct_mutex);
0b8765c6
JB
4748}
4749
ee7b9f93
JB
4750static void i9xx_crtc_off(struct drm_crtc *crtc)
4751{
4752}
4753
976f8a20
DV
4754static void intel_crtc_update_sarea(struct drm_crtc *crtc,
4755 bool enabled)
2c07245f
ZW
4756{
4757 struct drm_device *dev = crtc->dev;
4758 struct drm_i915_master_private *master_priv;
4759 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4760 int pipe = intel_crtc->pipe;
79e53945
JB
4761
4762 if (!dev->primary->master)
4763 return;
4764
4765 master_priv = dev->primary->master->driver_priv;
4766 if (!master_priv->sarea_priv)
4767 return;
4768
79e53945
JB
4769 switch (pipe) {
4770 case 0:
4771 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4772 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4773 break;
4774 case 1:
4775 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4776 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4777 break;
4778 default:
9db4a9c7 4779 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
79e53945
JB
4780 break;
4781 }
79e53945
JB
4782}
4783
976f8a20
DV
4784/**
4785 * Sets the power management mode of the pipe and plane.
4786 */
4787void intel_crtc_update_dpms(struct drm_crtc *crtc)
4788{
4789 struct drm_device *dev = crtc->dev;
4790 struct drm_i915_private *dev_priv = dev->dev_private;
4791 struct intel_encoder *intel_encoder;
4792 bool enable = false;
4793
4794 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4795 enable |= intel_encoder->connectors_active;
4796
4797 if (enable)
4798 dev_priv->display.crtc_enable(crtc);
4799 else
4800 dev_priv->display.crtc_disable(crtc);
4801
4802 intel_crtc_update_sarea(crtc, enable);
4803}
4804
cdd59983
CW
4805static void intel_crtc_disable(struct drm_crtc *crtc)
4806{
cdd59983 4807 struct drm_device *dev = crtc->dev;
976f8a20 4808 struct drm_connector *connector;
ee7b9f93 4809 struct drm_i915_private *dev_priv = dev->dev_private;
cdd59983 4810
976f8a20
DV
4811 /* crtc should still be enabled when we disable it. */
4812 WARN_ON(!crtc->enabled);
4813
4814 dev_priv->display.crtc_disable(crtc);
4815 intel_crtc_update_sarea(crtc, false);
ee7b9f93
JB
4816 dev_priv->display.off(crtc);
4817
931872fc 4818 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
93ce0ba6 4819 assert_cursor_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
931872fc 4820 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
cdd59983 4821
f4510a27 4822 if (crtc->primary->fb) {
cdd59983 4823 mutex_lock(&dev->struct_mutex);
f4510a27 4824 intel_unpin_fb_obj(to_intel_framebuffer(crtc->primary->fb)->obj);
cdd59983 4825 mutex_unlock(&dev->struct_mutex);
f4510a27 4826 crtc->primary->fb = NULL;
976f8a20
DV
4827 }
4828
4829 /* Update computed state. */
4830 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4831 if (!connector->encoder || !connector->encoder->crtc)
4832 continue;
4833
4834 if (connector->encoder->crtc != crtc)
4835 continue;
4836
4837 connector->dpms = DRM_MODE_DPMS_OFF;
4838 to_intel_encoder(connector->encoder)->connectors_active = false;
cdd59983
CW
4839 }
4840}
4841
ea5b213a 4842void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 4843{
4ef69c7a 4844 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 4845
ea5b213a
CW
4846 drm_encoder_cleanup(encoder);
4847 kfree(intel_encoder);
7e7d76c3
JB
4848}
4849
9237329d 4850/* Simple dpms helper for encoders with just one connector, no cloning and only
5ab432ef
DV
4851 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
4852 * state of the entire output pipe. */
9237329d 4853static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
7e7d76c3 4854{
5ab432ef
DV
4855 if (mode == DRM_MODE_DPMS_ON) {
4856 encoder->connectors_active = true;
4857
b2cabb0e 4858 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef
DV
4859 } else {
4860 encoder->connectors_active = false;
4861
b2cabb0e 4862 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef 4863 }
79e53945
JB
4864}
4865
0a91ca29
DV
4866/* Cross check the actual hw state with our own modeset state tracking (and it's
4867 * internal consistency). */
b980514c 4868static void intel_connector_check_state(struct intel_connector *connector)
79e53945 4869{
0a91ca29
DV
4870 if (connector->get_hw_state(connector)) {
4871 struct intel_encoder *encoder = connector->encoder;
4872 struct drm_crtc *crtc;
4873 bool encoder_enabled;
4874 enum pipe pipe;
4875
4876 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4877 connector->base.base.id,
4878 drm_get_connector_name(&connector->base));
4879
4880 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
4881 "wrong connector dpms state\n");
4882 WARN(connector->base.encoder != &encoder->base,
4883 "active connector not linked to encoder\n");
4884 WARN(!encoder->connectors_active,
4885 "encoder->connectors_active not set\n");
4886
4887 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
4888 WARN(!encoder_enabled, "encoder not enabled\n");
4889 if (WARN_ON(!encoder->base.crtc))
4890 return;
4891
4892 crtc = encoder->base.crtc;
4893
4894 WARN(!crtc->enabled, "crtc not enabled\n");
4895 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
4896 WARN(pipe != to_intel_crtc(crtc)->pipe,
4897 "encoder active on the wrong pipe\n");
4898 }
79e53945
JB
4899}
4900
5ab432ef
DV
4901/* Even simpler default implementation, if there's really no special case to
4902 * consider. */
4903void intel_connector_dpms(struct drm_connector *connector, int mode)
79e53945 4904{
5ab432ef
DV
4905 /* All the simple cases only support two dpms states. */
4906 if (mode != DRM_MODE_DPMS_ON)
4907 mode = DRM_MODE_DPMS_OFF;
d4270e57 4908
5ab432ef
DV
4909 if (mode == connector->dpms)
4910 return;
4911
4912 connector->dpms = mode;
4913
4914 /* Only need to change hw state when actually enabled */
c9976dcf
CW
4915 if (connector->encoder)
4916 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
0a91ca29 4917
b980514c 4918 intel_modeset_check_state(connector->dev);
79e53945
JB
4919}
4920
f0947c37
DV
4921/* Simple connector->get_hw_state implementation for encoders that support only
4922 * one connector and no cloning and hence the encoder state determines the state
4923 * of the connector. */
4924bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 4925{
24929352 4926 enum pipe pipe = 0;
f0947c37 4927 struct intel_encoder *encoder = connector->encoder;
ea5b213a 4928
f0947c37 4929 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
4930}
4931
1857e1da
DV
4932static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
4933 struct intel_crtc_config *pipe_config)
4934{
4935 struct drm_i915_private *dev_priv = dev->dev_private;
4936 struct intel_crtc *pipe_B_crtc =
4937 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
4938
4939 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
4940 pipe_name(pipe), pipe_config->fdi_lanes);
4941 if (pipe_config->fdi_lanes > 4) {
4942 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
4943 pipe_name(pipe), pipe_config->fdi_lanes);
4944 return false;
4945 }
4946
bafb6553 4947 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
1857e1da
DV
4948 if (pipe_config->fdi_lanes > 2) {
4949 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
4950 pipe_config->fdi_lanes);
4951 return false;
4952 } else {
4953 return true;
4954 }
4955 }
4956
4957 if (INTEL_INFO(dev)->num_pipes == 2)
4958 return true;
4959
4960 /* Ivybridge 3 pipe is really complicated */
4961 switch (pipe) {
4962 case PIPE_A:
4963 return true;
4964 case PIPE_B:
4965 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
4966 pipe_config->fdi_lanes > 2) {
4967 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4968 pipe_name(pipe), pipe_config->fdi_lanes);
4969 return false;
4970 }
4971 return true;
4972 case PIPE_C:
1e833f40 4973 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
1857e1da
DV
4974 pipe_B_crtc->config.fdi_lanes <= 2) {
4975 if (pipe_config->fdi_lanes > 2) {
4976 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4977 pipe_name(pipe), pipe_config->fdi_lanes);
4978 return false;
4979 }
4980 } else {
4981 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
4982 return false;
4983 }
4984 return true;
4985 default:
4986 BUG();
4987 }
4988}
4989
e29c22c0
DV
4990#define RETRY 1
4991static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
4992 struct intel_crtc_config *pipe_config)
877d48d5 4993{
1857e1da 4994 struct drm_device *dev = intel_crtc->base.dev;
877d48d5 4995 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
ff9a6750 4996 int lane, link_bw, fdi_dotclock;
e29c22c0 4997 bool setup_ok, needs_recompute = false;
877d48d5 4998
e29c22c0 4999retry:
877d48d5
DV
5000 /* FDI is a binary signal running at ~2.7GHz, encoding
5001 * each output octet as 10 bits. The actual frequency
5002 * is stored as a divider into a 100MHz clock, and the
5003 * mode pixel clock is stored in units of 1KHz.
5004 * Hence the bw of each lane in terms of the mode signal
5005 * is:
5006 */
5007 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5008
241bfc38 5009 fdi_dotclock = adjusted_mode->crtc_clock;
877d48d5 5010
2bd89a07 5011 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
5012 pipe_config->pipe_bpp);
5013
5014 pipe_config->fdi_lanes = lane;
5015
2bd89a07 5016 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 5017 link_bw, &pipe_config->fdi_m_n);
1857e1da 5018
e29c22c0
DV
5019 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5020 intel_crtc->pipe, pipe_config);
5021 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5022 pipe_config->pipe_bpp -= 2*3;
5023 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5024 pipe_config->pipe_bpp);
5025 needs_recompute = true;
5026 pipe_config->bw_constrained = true;
5027
5028 goto retry;
5029 }
5030
5031 if (needs_recompute)
5032 return RETRY;
5033
5034 return setup_ok ? 0 : -EINVAL;
877d48d5
DV
5035}
5036
42db64ef
PZ
5037static void hsw_compute_ips_config(struct intel_crtc *crtc,
5038 struct intel_crtc_config *pipe_config)
5039{
d330a953 5040 pipe_config->ips_enabled = i915.enable_ips &&
3c4ca58c 5041 hsw_crtc_supports_ips(crtc) &&
b6dfdc9b 5042 pipe_config->pipe_bpp <= 24;
42db64ef
PZ
5043}
5044
a43f6e0f 5045static int intel_crtc_compute_config(struct intel_crtc *crtc,
e29c22c0 5046 struct intel_crtc_config *pipe_config)
79e53945 5047{
a43f6e0f 5048 struct drm_device *dev = crtc->base.dev;
b8cecdf5 5049 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
89749350 5050
ad3a4479 5051 /* FIXME should check pixel clock limits on all platforms */
cf532bb2
VS
5052 if (INTEL_INFO(dev)->gen < 4) {
5053 struct drm_i915_private *dev_priv = dev->dev_private;
5054 int clock_limit =
5055 dev_priv->display.get_display_clock_speed(dev);
5056
5057 /*
5058 * Enable pixel doubling when the dot clock
5059 * is > 90% of the (display) core speed.
5060 *
b397c96b
VS
5061 * GDG double wide on either pipe,
5062 * otherwise pipe A only.
cf532bb2 5063 */
b397c96b 5064 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
241bfc38 5065 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
ad3a4479 5066 clock_limit *= 2;
cf532bb2 5067 pipe_config->double_wide = true;
ad3a4479
VS
5068 }
5069
241bfc38 5070 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
e29c22c0 5071 return -EINVAL;
2c07245f 5072 }
89749350 5073
1d1d0e27
VS
5074 /*
5075 * Pipe horizontal size must be even in:
5076 * - DVO ganged mode
5077 * - LVDS dual channel mode
5078 * - Double wide pipe
5079 */
5080 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
5081 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5082 pipe_config->pipe_src_w &= ~1;
5083
8693a824
DL
5084 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5085 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42
CW
5086 */
5087 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5088 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
e29c22c0 5089 return -EINVAL;
44f46b42 5090
bd080ee5 5091 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
5d2d38dd 5092 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
bd080ee5 5093 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
5d2d38dd
DV
5094 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5095 * for lvds. */
5096 pipe_config->pipe_bpp = 8*3;
5097 }
5098
f5adf94e 5099 if (HAS_IPS(dev))
a43f6e0f
DV
5100 hsw_compute_ips_config(crtc, pipe_config);
5101
5102 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
5103 * clock survives for now. */
5104 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5105 pipe_config->shared_dpll = crtc->config.shared_dpll;
42db64ef 5106
877d48d5 5107 if (pipe_config->has_pch_encoder)
a43f6e0f 5108 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 5109
e29c22c0 5110 return 0;
79e53945
JB
5111}
5112
25eb05fc
JB
5113static int valleyview_get_display_clock_speed(struct drm_device *dev)
5114{
5115 return 400000; /* FIXME */
5116}
5117
e70236a8
JB
5118static int i945_get_display_clock_speed(struct drm_device *dev)
5119{
5120 return 400000;
5121}
79e53945 5122
e70236a8 5123static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 5124{
e70236a8
JB
5125 return 333000;
5126}
79e53945 5127
e70236a8
JB
5128static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5129{
5130 return 200000;
5131}
79e53945 5132
257a7ffc
DV
5133static int pnv_get_display_clock_speed(struct drm_device *dev)
5134{
5135 u16 gcfgc = 0;
5136
5137 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5138
5139 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5140 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5141 return 267000;
5142 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5143 return 333000;
5144 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5145 return 444000;
5146 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5147 return 200000;
5148 default:
5149 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5150 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5151 return 133000;
5152 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5153 return 167000;
5154 }
5155}
5156
e70236a8
JB
5157static int i915gm_get_display_clock_speed(struct drm_device *dev)
5158{
5159 u16 gcfgc = 0;
79e53945 5160
e70236a8
JB
5161 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5162
5163 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
5164 return 133000;
5165 else {
5166 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5167 case GC_DISPLAY_CLOCK_333_MHZ:
5168 return 333000;
5169 default:
5170 case GC_DISPLAY_CLOCK_190_200_MHZ:
5171 return 190000;
79e53945 5172 }
e70236a8
JB
5173 }
5174}
5175
5176static int i865_get_display_clock_speed(struct drm_device *dev)
5177{
5178 return 266000;
5179}
5180
5181static int i855_get_display_clock_speed(struct drm_device *dev)
5182{
5183 u16 hpllcc = 0;
5184 /* Assume that the hardware is in the high speed state. This
5185 * should be the default.
5186 */
5187 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5188 case GC_CLOCK_133_200:
5189 case GC_CLOCK_100_200:
5190 return 200000;
5191 case GC_CLOCK_166_250:
5192 return 250000;
5193 case GC_CLOCK_100_133:
79e53945 5194 return 133000;
e70236a8 5195 }
79e53945 5196
e70236a8
JB
5197 /* Shouldn't happen */
5198 return 0;
5199}
79e53945 5200
e70236a8
JB
5201static int i830_get_display_clock_speed(struct drm_device *dev)
5202{
5203 return 133000;
79e53945
JB
5204}
5205
2c07245f 5206static void
a65851af 5207intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 5208{
a65851af
VS
5209 while (*num > DATA_LINK_M_N_MASK ||
5210 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
5211 *num >>= 1;
5212 *den >>= 1;
5213 }
5214}
5215
a65851af
VS
5216static void compute_m_n(unsigned int m, unsigned int n,
5217 uint32_t *ret_m, uint32_t *ret_n)
5218{
5219 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5220 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5221 intel_reduce_m_n_ratio(ret_m, ret_n);
5222}
5223
e69d0bc1
DV
5224void
5225intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5226 int pixel_clock, int link_clock,
5227 struct intel_link_m_n *m_n)
2c07245f 5228{
e69d0bc1 5229 m_n->tu = 64;
a65851af
VS
5230
5231 compute_m_n(bits_per_pixel * pixel_clock,
5232 link_clock * nlanes * 8,
5233 &m_n->gmch_m, &m_n->gmch_n);
5234
5235 compute_m_n(pixel_clock, link_clock,
5236 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
5237}
5238
a7615030
CW
5239static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5240{
d330a953
JN
5241 if (i915.panel_use_ssc >= 0)
5242 return i915.panel_use_ssc != 0;
41aa3448 5243 return dev_priv->vbt.lvds_use_ssc
435793df 5244 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
5245}
5246
c65d77d8
JB
5247static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
5248{
5249 struct drm_device *dev = crtc->dev;
5250 struct drm_i915_private *dev_priv = dev->dev_private;
5251 int refclk;
5252
a0c4da24 5253 if (IS_VALLEYVIEW(dev)) {
9a0ea498 5254 refclk = 100000;
a0c4da24 5255 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
c65d77d8 5256 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b
VS
5257 refclk = dev_priv->vbt.lvds_ssc_freq;
5258 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
c65d77d8
JB
5259 } else if (!IS_GEN2(dev)) {
5260 refclk = 96000;
5261 } else {
5262 refclk = 48000;
5263 }
5264
5265 return refclk;
5266}
5267
7429e9d4 5268static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
c65d77d8 5269{
7df00d7a 5270 return (1 << dpll->n) << 16 | dpll->m2;
7429e9d4 5271}
f47709a9 5272
7429e9d4
DV
5273static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5274{
5275 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
c65d77d8
JB
5276}
5277
f47709a9 5278static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
a7516a05
JB
5279 intel_clock_t *reduced_clock)
5280{
f47709a9 5281 struct drm_device *dev = crtc->base.dev;
a7516a05
JB
5282 u32 fp, fp2 = 0;
5283
5284 if (IS_PINEVIEW(dev)) {
7429e9d4 5285 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
a7516a05 5286 if (reduced_clock)
7429e9d4 5287 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 5288 } else {
7429e9d4 5289 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
a7516a05 5290 if (reduced_clock)
7429e9d4 5291 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
5292 }
5293
8bcc2795 5294 crtc->config.dpll_hw_state.fp0 = fp;
a7516a05 5295
f47709a9
DV
5296 crtc->lowfreq_avail = false;
5297 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
d330a953 5298 reduced_clock && i915.powersave) {
8bcc2795 5299 crtc->config.dpll_hw_state.fp1 = fp2;
f47709a9 5300 crtc->lowfreq_avail = true;
a7516a05 5301 } else {
8bcc2795 5302 crtc->config.dpll_hw_state.fp1 = fp;
a7516a05
JB
5303 }
5304}
5305
5e69f97f
CML
5306static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5307 pipe)
89b667f8
JB
5308{
5309 u32 reg_val;
5310
5311 /*
5312 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5313 * and set it to a reasonable value instead.
5314 */
ab3c759a 5315 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8
JB
5316 reg_val &= 0xffffff00;
5317 reg_val |= 0x00000030;
ab3c759a 5318 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 5319
ab3c759a 5320 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
5321 reg_val &= 0x8cffffff;
5322 reg_val = 0x8c000000;
ab3c759a 5323 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8 5324
ab3c759a 5325 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8 5326 reg_val &= 0xffffff00;
ab3c759a 5327 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 5328
ab3c759a 5329 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
5330 reg_val &= 0x00ffffff;
5331 reg_val |= 0xb0000000;
ab3c759a 5332 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8
JB
5333}
5334
b551842d
DV
5335static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5336 struct intel_link_m_n *m_n)
5337{
5338 struct drm_device *dev = crtc->base.dev;
5339 struct drm_i915_private *dev_priv = dev->dev_private;
5340 int pipe = crtc->pipe;
5341
e3b95f1e
DV
5342 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5343 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5344 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5345 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
5346}
5347
5348static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
5349 struct intel_link_m_n *m_n)
5350{
5351 struct drm_device *dev = crtc->base.dev;
5352 struct drm_i915_private *dev_priv = dev->dev_private;
5353 int pipe = crtc->pipe;
5354 enum transcoder transcoder = crtc->config.cpu_transcoder;
5355
5356 if (INTEL_INFO(dev)->gen >= 5) {
5357 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5358 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5359 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5360 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
5361 } else {
e3b95f1e
DV
5362 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5363 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5364 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5365 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
5366 }
5367}
5368
03afc4a2
DV
5369static void intel_dp_set_m_n(struct intel_crtc *crtc)
5370{
5371 if (crtc->config.has_pch_encoder)
5372 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5373 else
5374 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5375}
5376
f47709a9 5377static void vlv_update_pll(struct intel_crtc *crtc)
a0c4da24 5378{
f47709a9 5379 struct drm_device *dev = crtc->base.dev;
a0c4da24 5380 struct drm_i915_private *dev_priv = dev->dev_private;
f47709a9 5381 int pipe = crtc->pipe;
89b667f8 5382 u32 dpll, mdiv;
a0c4da24 5383 u32 bestn, bestm1, bestm2, bestp1, bestp2;
198a037f 5384 u32 coreclk, reg_val, dpll_md;
a0c4da24 5385
09153000
DV
5386 mutex_lock(&dev_priv->dpio_lock);
5387
f47709a9
DV
5388 bestn = crtc->config.dpll.n;
5389 bestm1 = crtc->config.dpll.m1;
5390 bestm2 = crtc->config.dpll.m2;
5391 bestp1 = crtc->config.dpll.p1;
5392 bestp2 = crtc->config.dpll.p2;
a0c4da24 5393
89b667f8
JB
5394 /* See eDP HDMI DPIO driver vbios notes doc */
5395
5396 /* PLL B needs special handling */
5397 if (pipe)
5e69f97f 5398 vlv_pllb_recal_opamp(dev_priv, pipe);
89b667f8
JB
5399
5400 /* Set up Tx target for periodic Rcomp update */
ab3c759a 5401 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
89b667f8
JB
5402
5403 /* Disable target IRef on PLL */
ab3c759a 5404 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
89b667f8 5405 reg_val &= 0x00ffffff;
ab3c759a 5406 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
89b667f8
JB
5407
5408 /* Disable fast lock */
ab3c759a 5409 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
89b667f8
JB
5410
5411 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
5412 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5413 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5414 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 5415 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
5416
5417 /*
5418 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5419 * but we don't support that).
5420 * Note: don't use the DAC post divider as it seems unstable.
5421 */
5422 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ab3c759a 5423 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 5424
a0c4da24 5425 mdiv |= DPIO_ENABLE_CALIBRATION;
ab3c759a 5426 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 5427
89b667f8 5428 /* Set HBR and RBR LPF coefficients */
ff9a6750 5429 if (crtc->config.port_clock == 162000 ||
99750bd4 5430 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
89b667f8 5431 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
ab3c759a 5432 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
885b0120 5433 0x009f0003);
89b667f8 5434 else
ab3c759a 5435 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
89b667f8
JB
5436 0x00d0000f);
5437
5438 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
5439 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
5440 /* Use SSC source */
5441 if (!pipe)
ab3c759a 5442 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5443 0x0df40000);
5444 else
ab3c759a 5445 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5446 0x0df70000);
5447 } else { /* HDMI or VGA */
5448 /* Use bend source */
5449 if (!pipe)
ab3c759a 5450 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5451 0x0df70000);
5452 else
ab3c759a 5453 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5454 0x0df40000);
5455 }
a0c4da24 5456
ab3c759a 5457 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
89b667f8
JB
5458 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
5459 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
5460 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
5461 coreclk |= 0x01000000;
ab3c759a 5462 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
a0c4da24 5463
ab3c759a 5464 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
a0c4da24 5465
e5cbfbfb
ID
5466 /*
5467 * Enable DPIO clock input. We should never disable the reference
5468 * clock for pipe B, since VGA hotplug / manual detection depends
5469 * on it.
5470 */
89b667f8
JB
5471 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5472 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
f6071166
JB
5473 /* We should never disable this, set it here for state tracking */
5474 if (pipe == PIPE_B)
89b667f8 5475 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
a0c4da24 5476 dpll |= DPLL_VCO_ENABLE;
8bcc2795
DV
5477 crtc->config.dpll_hw_state.dpll = dpll;
5478
ef1b460d
DV
5479 dpll_md = (crtc->config.pixel_multiplier - 1)
5480 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
8bcc2795
DV
5481 crtc->config.dpll_hw_state.dpll_md = dpll_md;
5482
09153000 5483 mutex_unlock(&dev_priv->dpio_lock);
a0c4da24
JB
5484}
5485
9d556c99
CML
5486static void chv_update_pll(struct intel_crtc *crtc)
5487{
5488 struct drm_device *dev = crtc->base.dev;
5489 struct drm_i915_private *dev_priv = dev->dev_private;
5490 int pipe = crtc->pipe;
5491 int dpll_reg = DPLL(crtc->pipe);
5492 enum dpio_channel port = vlv_pipe_to_channel(pipe);
5493 u32 val, loopfilter, intcoeff;
5494 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
5495 int refclk;
5496
5497 mutex_lock(&dev_priv->dpio_lock);
5498
5499 bestn = crtc->config.dpll.n;
5500 bestm2_frac = crtc->config.dpll.m2 & 0x3fffff;
5501 bestm1 = crtc->config.dpll.m1;
5502 bestm2 = crtc->config.dpll.m2 >> 22;
5503 bestp1 = crtc->config.dpll.p1;
5504 bestp2 = crtc->config.dpll.p2;
5505
5506 /*
5507 * Enable Refclk and SSC
5508 */
5509 val = I915_READ(dpll_reg);
5510 val |= (DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV);
5511 I915_WRITE(dpll_reg, val);
5512
5513 /* Propagate soft reset to data lane reset */
5514 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS_DW0(port));
5515 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
5516 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), val);
5517
5518 /* Disable 10bit clock to display controller */
5519 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
5520 val &= ~DPIO_DCLKP_EN;
5521 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
5522
5523 /* p1 and p2 divider */
5524 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
5525 5 << DPIO_CHV_S1_DIV_SHIFT |
5526 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
5527 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
5528 1 << DPIO_CHV_K_DIV_SHIFT);
5529
5530 /* Feedback post-divider - m2 */
5531 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
5532
5533 /* Feedback refclk divider - n and m1 */
5534 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
5535 DPIO_CHV_M1_DIV_BY_2 |
5536 1 << DPIO_CHV_N_DIV_SHIFT);
5537
5538 /* M2 fraction division */
5539 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
5540
5541 /* M2 fraction division enable */
5542 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
5543 DPIO_CHV_FRAC_DIV_EN |
5544 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
5545
5546 /* Loop filter */
5547 refclk = i9xx_get_refclk(&crtc->base, 0);
5548 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
5549 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
5550 if (refclk == 100000)
5551 intcoeff = 11;
5552 else if (refclk == 38400)
5553 intcoeff = 10;
5554 else
5555 intcoeff = 9;
5556 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
5557 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
5558
5559 /* AFC Recal */
5560 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
5561 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
5562 DPIO_AFC_RECAL);
5563
5564 mutex_unlock(&dev_priv->dpio_lock);
5565}
5566
f47709a9
DV
5567static void i9xx_update_pll(struct intel_crtc *crtc,
5568 intel_clock_t *reduced_clock,
eb1cbe48
DV
5569 int num_connectors)
5570{
f47709a9 5571 struct drm_device *dev = crtc->base.dev;
eb1cbe48 5572 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48
DV
5573 u32 dpll;
5574 bool is_sdvo;
f47709a9 5575 struct dpll *clock = &crtc->config.dpll;
eb1cbe48 5576
f47709a9 5577 i9xx_update_pll_dividers(crtc, reduced_clock);
2a8f64ca 5578
f47709a9
DV
5579 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
5580 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
eb1cbe48
DV
5581
5582 dpll = DPLL_VGA_MODE_DIS;
5583
f47709a9 5584 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
5585 dpll |= DPLLB_MODE_LVDS;
5586 else
5587 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 5588
ef1b460d 5589 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
198a037f
DV
5590 dpll |= (crtc->config.pixel_multiplier - 1)
5591 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 5592 }
198a037f
DV
5593
5594 if (is_sdvo)
4a33e48d 5595 dpll |= DPLL_SDVO_HIGH_SPEED;
198a037f 5596
f47709a9 5597 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
4a33e48d 5598 dpll |= DPLL_SDVO_HIGH_SPEED;
eb1cbe48
DV
5599
5600 /* compute bitmask from p1 value */
5601 if (IS_PINEVIEW(dev))
5602 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
5603 else {
5604 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5605 if (IS_G4X(dev) && reduced_clock)
5606 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5607 }
5608 switch (clock->p2) {
5609 case 5:
5610 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5611 break;
5612 case 7:
5613 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5614 break;
5615 case 10:
5616 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5617 break;
5618 case 14:
5619 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5620 break;
5621 }
5622 if (INTEL_INFO(dev)->gen >= 4)
5623 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
5624
09ede541 5625 if (crtc->config.sdvo_tv_clock)
eb1cbe48 5626 dpll |= PLL_REF_INPUT_TVCLKINBC;
f47709a9 5627 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
5628 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5629 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5630 else
5631 dpll |= PLL_REF_INPUT_DREFCLK;
5632
5633 dpll |= DPLL_VCO_ENABLE;
8bcc2795
DV
5634 crtc->config.dpll_hw_state.dpll = dpll;
5635
eb1cbe48 5636 if (INTEL_INFO(dev)->gen >= 4) {
ef1b460d
DV
5637 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
5638 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
8bcc2795 5639 crtc->config.dpll_hw_state.dpll_md = dpll_md;
eb1cbe48
DV
5640 }
5641}
5642
f47709a9 5643static void i8xx_update_pll(struct intel_crtc *crtc,
f47709a9 5644 intel_clock_t *reduced_clock,
eb1cbe48
DV
5645 int num_connectors)
5646{
f47709a9 5647 struct drm_device *dev = crtc->base.dev;
eb1cbe48 5648 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48 5649 u32 dpll;
f47709a9 5650 struct dpll *clock = &crtc->config.dpll;
eb1cbe48 5651
f47709a9 5652 i9xx_update_pll_dividers(crtc, reduced_clock);
2a8f64ca 5653
eb1cbe48
DV
5654 dpll = DPLL_VGA_MODE_DIS;
5655
f47709a9 5656 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
5657 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5658 } else {
5659 if (clock->p1 == 2)
5660 dpll |= PLL_P1_DIVIDE_BY_TWO;
5661 else
5662 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5663 if (clock->p2 == 4)
5664 dpll |= PLL_P2_DIVIDE_BY_4;
5665 }
5666
4a33e48d
DV
5667 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
5668 dpll |= DPLL_DVO_2X_MODE;
5669
f47709a9 5670 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
5671 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5672 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5673 else
5674 dpll |= PLL_REF_INPUT_DREFCLK;
5675
5676 dpll |= DPLL_VCO_ENABLE;
8bcc2795 5677 crtc->config.dpll_hw_state.dpll = dpll;
eb1cbe48
DV
5678}
5679
8a654f3b 5680static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c
PZ
5681{
5682 struct drm_device *dev = intel_crtc->base.dev;
5683 struct drm_i915_private *dev_priv = dev->dev_private;
5684 enum pipe pipe = intel_crtc->pipe;
3b117c8f 5685 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
8a654f3b
DV
5686 struct drm_display_mode *adjusted_mode =
5687 &intel_crtc->config.adjusted_mode;
1caea6e9
VS
5688 uint32_t crtc_vtotal, crtc_vblank_end;
5689 int vsyncshift = 0;
4d8a62ea
DV
5690
5691 /* We need to be careful not to changed the adjusted mode, for otherwise
5692 * the hw state checker will get angry at the mismatch. */
5693 crtc_vtotal = adjusted_mode->crtc_vtotal;
5694 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c 5695
609aeaca 5696 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
b0e77b9c 5697 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
5698 crtc_vtotal -= 1;
5699 crtc_vblank_end -= 1;
609aeaca
VS
5700
5701 if (intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5702 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
5703 else
5704 vsyncshift = adjusted_mode->crtc_hsync_start -
5705 adjusted_mode->crtc_htotal / 2;
1caea6e9
VS
5706 if (vsyncshift < 0)
5707 vsyncshift += adjusted_mode->crtc_htotal;
b0e77b9c
PZ
5708 }
5709
5710 if (INTEL_INFO(dev)->gen > 3)
fe2b8f9d 5711 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 5712
fe2b8f9d 5713 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
5714 (adjusted_mode->crtc_hdisplay - 1) |
5715 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 5716 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
5717 (adjusted_mode->crtc_hblank_start - 1) |
5718 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 5719 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
5720 (adjusted_mode->crtc_hsync_start - 1) |
5721 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5722
fe2b8f9d 5723 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 5724 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 5725 ((crtc_vtotal - 1) << 16));
fe2b8f9d 5726 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 5727 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 5728 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 5729 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
5730 (adjusted_mode->crtc_vsync_start - 1) |
5731 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5732
b5e508d4
PZ
5733 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
5734 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
5735 * documented on the DDI_FUNC_CTL register description, EDP Input Select
5736 * bits. */
5737 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
5738 (pipe == PIPE_B || pipe == PIPE_C))
5739 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
5740
b0e77b9c
PZ
5741 /* pipesrc controls the size that is scaled from, which should
5742 * always be the user's requested size.
5743 */
5744 I915_WRITE(PIPESRC(pipe),
37327abd
VS
5745 ((intel_crtc->config.pipe_src_w - 1) << 16) |
5746 (intel_crtc->config.pipe_src_h - 1));
b0e77b9c
PZ
5747}
5748
1bd1bd80
DV
5749static void intel_get_pipe_timings(struct intel_crtc *crtc,
5750 struct intel_crtc_config *pipe_config)
5751{
5752 struct drm_device *dev = crtc->base.dev;
5753 struct drm_i915_private *dev_priv = dev->dev_private;
5754 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
5755 uint32_t tmp;
5756
5757 tmp = I915_READ(HTOTAL(cpu_transcoder));
5758 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
5759 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
5760 tmp = I915_READ(HBLANK(cpu_transcoder));
5761 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
5762 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
5763 tmp = I915_READ(HSYNC(cpu_transcoder));
5764 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
5765 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
5766
5767 tmp = I915_READ(VTOTAL(cpu_transcoder));
5768 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
5769 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
5770 tmp = I915_READ(VBLANK(cpu_transcoder));
5771 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
5772 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
5773 tmp = I915_READ(VSYNC(cpu_transcoder));
5774 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
5775 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
5776
5777 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
5778 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
5779 pipe_config->adjusted_mode.crtc_vtotal += 1;
5780 pipe_config->adjusted_mode.crtc_vblank_end += 1;
5781 }
5782
5783 tmp = I915_READ(PIPESRC(crtc->pipe));
37327abd
VS
5784 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
5785 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
5786
5787 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
5788 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
1bd1bd80
DV
5789}
5790
f6a83288
DV
5791void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5792 struct intel_crtc_config *pipe_config)
babea61d 5793{
f6a83288
DV
5794 mode->hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
5795 mode->htotal = pipe_config->adjusted_mode.crtc_htotal;
5796 mode->hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
5797 mode->hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
babea61d 5798
f6a83288
DV
5799 mode->vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
5800 mode->vtotal = pipe_config->adjusted_mode.crtc_vtotal;
5801 mode->vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
5802 mode->vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
babea61d 5803
f6a83288 5804 mode->flags = pipe_config->adjusted_mode.flags;
babea61d 5805
f6a83288
DV
5806 mode->clock = pipe_config->adjusted_mode.crtc_clock;
5807 mode->flags |= pipe_config->adjusted_mode.flags;
babea61d
JB
5808}
5809
84b046f3
DV
5810static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
5811{
5812 struct drm_device *dev = intel_crtc->base.dev;
5813 struct drm_i915_private *dev_priv = dev->dev_private;
5814 uint32_t pipeconf;
5815
9f11a9e4 5816 pipeconf = 0;
84b046f3 5817
67c72a12
DV
5818 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
5819 I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE)
5820 pipeconf |= PIPECONF_ENABLE;
5821
cf532bb2
VS
5822 if (intel_crtc->config.double_wide)
5823 pipeconf |= PIPECONF_DOUBLE_WIDE;
84b046f3 5824
ff9ce46e
DV
5825 /* only g4x and later have fancy bpc/dither controls */
5826 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
ff9ce46e
DV
5827 /* Bspec claims that we can't use dithering for 30bpp pipes. */
5828 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
5829 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 5830 PIPECONF_DITHER_TYPE_SP;
84b046f3 5831
ff9ce46e
DV
5832 switch (intel_crtc->config.pipe_bpp) {
5833 case 18:
5834 pipeconf |= PIPECONF_6BPC;
5835 break;
5836 case 24:
5837 pipeconf |= PIPECONF_8BPC;
5838 break;
5839 case 30:
5840 pipeconf |= PIPECONF_10BPC;
5841 break;
5842 default:
5843 /* Case prevented by intel_choose_pipe_bpp_dither. */
5844 BUG();
84b046f3
DV
5845 }
5846 }
5847
5848 if (HAS_PIPE_CXSR(dev)) {
5849 if (intel_crtc->lowfreq_avail) {
5850 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
5851 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
5852 } else {
5853 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
84b046f3
DV
5854 }
5855 }
5856
efc2cfff
VS
5857 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
5858 if (INTEL_INFO(dev)->gen < 4 ||
5859 intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5860 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
5861 else
5862 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
5863 } else
84b046f3
DV
5864 pipeconf |= PIPECONF_PROGRESSIVE;
5865
9f11a9e4
DV
5866 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
5867 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
9c8e09b7 5868
84b046f3
DV
5869 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
5870 POSTING_READ(PIPECONF(intel_crtc->pipe));
5871}
5872
f564048e 5873static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
f564048e 5874 int x, int y,
94352cf9 5875 struct drm_framebuffer *fb)
79e53945
JB
5876{
5877 struct drm_device *dev = crtc->dev;
5878 struct drm_i915_private *dev_priv = dev->dev_private;
5879 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
c751ce4f 5880 int refclk, num_connectors = 0;
652c393a 5881 intel_clock_t clock, reduced_clock;
a16af721 5882 bool ok, has_reduced_clock = false;
e9fd1c02 5883 bool is_lvds = false, is_dsi = false;
5eddb70b 5884 struct intel_encoder *encoder;
d4906093 5885 const intel_limit_t *limit;
79e53945 5886
6c2b7c12 5887 for_each_encoder_on_crtc(dev, crtc, encoder) {
5eddb70b 5888 switch (encoder->type) {
79e53945
JB
5889 case INTEL_OUTPUT_LVDS:
5890 is_lvds = true;
5891 break;
e9fd1c02
JN
5892 case INTEL_OUTPUT_DSI:
5893 is_dsi = true;
5894 break;
79e53945 5895 }
43565a06 5896
c751ce4f 5897 num_connectors++;
79e53945
JB
5898 }
5899
f2335330 5900 if (is_dsi)
5b18e57c 5901 return 0;
f2335330
JN
5902
5903 if (!intel_crtc->config.clock_set) {
5904 refclk = i9xx_get_refclk(crtc, num_connectors);
79e53945 5905
e9fd1c02
JN
5906 /*
5907 * Returns a set of divisors for the desired target clock with
5908 * the given refclk, or FALSE. The returned values represent
5909 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
5910 * 2) / p1 / p2.
5911 */
5912 limit = intel_limit(crtc, refclk);
5913 ok = dev_priv->display.find_dpll(limit, crtc,
5914 intel_crtc->config.port_clock,
5915 refclk, NULL, &clock);
f2335330 5916 if (!ok) {
e9fd1c02
JN
5917 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5918 return -EINVAL;
5919 }
79e53945 5920
f2335330
JN
5921 if (is_lvds && dev_priv->lvds_downclock_avail) {
5922 /*
5923 * Ensure we match the reduced clock's P to the target
5924 * clock. If the clocks don't match, we can't switch
5925 * the display clock by using the FP0/FP1. In such case
5926 * we will disable the LVDS downclock feature.
5927 */
5928 has_reduced_clock =
5929 dev_priv->display.find_dpll(limit, crtc,
5930 dev_priv->lvds_downclock,
5931 refclk, &clock,
5932 &reduced_clock);
5933 }
5934 /* Compat-code for transition, will disappear. */
f47709a9
DV
5935 intel_crtc->config.dpll.n = clock.n;
5936 intel_crtc->config.dpll.m1 = clock.m1;
5937 intel_crtc->config.dpll.m2 = clock.m2;
5938 intel_crtc->config.dpll.p1 = clock.p1;
5939 intel_crtc->config.dpll.p2 = clock.p2;
5940 }
7026d4ac 5941
e9fd1c02 5942 if (IS_GEN2(dev)) {
8a654f3b 5943 i8xx_update_pll(intel_crtc,
2a8f64ca
VP
5944 has_reduced_clock ? &reduced_clock : NULL,
5945 num_connectors);
9d556c99
CML
5946 } else if (IS_CHERRYVIEW(dev)) {
5947 chv_update_pll(intel_crtc);
e9fd1c02 5948 } else if (IS_VALLEYVIEW(dev)) {
f2335330 5949 vlv_update_pll(intel_crtc);
e9fd1c02 5950 } else {
f47709a9 5951 i9xx_update_pll(intel_crtc,
eb1cbe48 5952 has_reduced_clock ? &reduced_clock : NULL,
eba905b2 5953 num_connectors);
e9fd1c02 5954 }
79e53945 5955
c8f7a0db 5956 return 0;
f564048e
EA
5957}
5958
2fa2fe9a
DV
5959static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5960 struct intel_crtc_config *pipe_config)
5961{
5962 struct drm_device *dev = crtc->base.dev;
5963 struct drm_i915_private *dev_priv = dev->dev_private;
5964 uint32_t tmp;
5965
dc9e7dec
VS
5966 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
5967 return;
5968
2fa2fe9a 5969 tmp = I915_READ(PFIT_CONTROL);
06922821
DV
5970 if (!(tmp & PFIT_ENABLE))
5971 return;
2fa2fe9a 5972
06922821 5973 /* Check whether the pfit is attached to our pipe. */
2fa2fe9a
DV
5974 if (INTEL_INFO(dev)->gen < 4) {
5975 if (crtc->pipe != PIPE_B)
5976 return;
2fa2fe9a
DV
5977 } else {
5978 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
5979 return;
5980 }
5981
06922821 5982 pipe_config->gmch_pfit.control = tmp;
2fa2fe9a
DV
5983 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
5984 if (INTEL_INFO(dev)->gen < 5)
5985 pipe_config->gmch_pfit.lvds_border_bits =
5986 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
5987}
5988
acbec814
JB
5989static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5990 struct intel_crtc_config *pipe_config)
5991{
5992 struct drm_device *dev = crtc->base.dev;
5993 struct drm_i915_private *dev_priv = dev->dev_private;
5994 int pipe = pipe_config->cpu_transcoder;
5995 intel_clock_t clock;
5996 u32 mdiv;
662c6ecb 5997 int refclk = 100000;
acbec814
JB
5998
5999 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 6000 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
acbec814
JB
6001 mutex_unlock(&dev_priv->dpio_lock);
6002
6003 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6004 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6005 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6006 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6007 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6008
f646628b 6009 vlv_clock(refclk, &clock);
acbec814 6010
f646628b
VS
6011 /* clock.dot is the fast clock */
6012 pipe_config->port_clock = clock.dot / 5;
acbec814
JB
6013}
6014
1ad292b5
JB
6015static void i9xx_get_plane_config(struct intel_crtc *crtc,
6016 struct intel_plane_config *plane_config)
6017{
6018 struct drm_device *dev = crtc->base.dev;
6019 struct drm_i915_private *dev_priv = dev->dev_private;
6020 u32 val, base, offset;
6021 int pipe = crtc->pipe, plane = crtc->plane;
6022 int fourcc, pixel_format;
6023 int aligned_height;
6024
66e514c1
DA
6025 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
6026 if (!crtc->base.primary->fb) {
1ad292b5
JB
6027 DRM_DEBUG_KMS("failed to alloc fb\n");
6028 return;
6029 }
6030
6031 val = I915_READ(DSPCNTR(plane));
6032
6033 if (INTEL_INFO(dev)->gen >= 4)
6034 if (val & DISPPLANE_TILED)
6035 plane_config->tiled = true;
6036
6037 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
6038 fourcc = intel_format_to_fourcc(pixel_format);
66e514c1
DA
6039 crtc->base.primary->fb->pixel_format = fourcc;
6040 crtc->base.primary->fb->bits_per_pixel =
1ad292b5
JB
6041 drm_format_plane_cpp(fourcc, 0) * 8;
6042
6043 if (INTEL_INFO(dev)->gen >= 4) {
6044 if (plane_config->tiled)
6045 offset = I915_READ(DSPTILEOFF(plane));
6046 else
6047 offset = I915_READ(DSPLINOFF(plane));
6048 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6049 } else {
6050 base = I915_READ(DSPADDR(plane));
6051 }
6052 plane_config->base = base;
6053
6054 val = I915_READ(PIPESRC(pipe));
66e514c1
DA
6055 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
6056 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
1ad292b5
JB
6057
6058 val = I915_READ(DSPSTRIDE(pipe));
66e514c1 6059 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
1ad292b5 6060
66e514c1 6061 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
1ad292b5
JB
6062 plane_config->tiled);
6063
66e514c1 6064 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
1ad292b5
JB
6065 aligned_height, PAGE_SIZE);
6066
6067 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
66e514c1
DA
6068 pipe, plane, crtc->base.primary->fb->width,
6069 crtc->base.primary->fb->height,
6070 crtc->base.primary->fb->bits_per_pixel, base,
6071 crtc->base.primary->fb->pitches[0],
1ad292b5
JB
6072 plane_config->size);
6073
6074}
6075
70b23a98
VS
6076static void chv_crtc_clock_get(struct intel_crtc *crtc,
6077 struct intel_crtc_config *pipe_config)
6078{
6079 struct drm_device *dev = crtc->base.dev;
6080 struct drm_i915_private *dev_priv = dev->dev_private;
6081 int pipe = pipe_config->cpu_transcoder;
6082 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6083 intel_clock_t clock;
6084 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6085 int refclk = 100000;
6086
6087 mutex_lock(&dev_priv->dpio_lock);
6088 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6089 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6090 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6091 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6092 mutex_unlock(&dev_priv->dpio_lock);
6093
6094 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6095 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6096 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6097 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6098 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6099
6100 chv_clock(refclk, &clock);
6101
6102 /* clock.dot is the fast clock */
6103 pipe_config->port_clock = clock.dot / 5;
6104}
6105
0e8ffe1b
DV
6106static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
6107 struct intel_crtc_config *pipe_config)
6108{
6109 struct drm_device *dev = crtc->base.dev;
6110 struct drm_i915_private *dev_priv = dev->dev_private;
6111 uint32_t tmp;
6112
b5482bd0
ID
6113 if (!intel_display_power_enabled(dev_priv,
6114 POWER_DOMAIN_PIPE(crtc->pipe)))
6115 return false;
6116
e143a21c 6117 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 6118 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 6119
0e8ffe1b
DV
6120 tmp = I915_READ(PIPECONF(crtc->pipe));
6121 if (!(tmp & PIPECONF_ENABLE))
6122 return false;
6123
42571aef
VS
6124 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6125 switch (tmp & PIPECONF_BPC_MASK) {
6126 case PIPECONF_6BPC:
6127 pipe_config->pipe_bpp = 18;
6128 break;
6129 case PIPECONF_8BPC:
6130 pipe_config->pipe_bpp = 24;
6131 break;
6132 case PIPECONF_10BPC:
6133 pipe_config->pipe_bpp = 30;
6134 break;
6135 default:
6136 break;
6137 }
6138 }
6139
b5a9fa09
DV
6140 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6141 pipe_config->limited_color_range = true;
6142
282740f7
VS
6143 if (INTEL_INFO(dev)->gen < 4)
6144 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6145
1bd1bd80
DV
6146 intel_get_pipe_timings(crtc, pipe_config);
6147
2fa2fe9a
DV
6148 i9xx_get_pfit_config(crtc, pipe_config);
6149
6c49f241
DV
6150 if (INTEL_INFO(dev)->gen >= 4) {
6151 tmp = I915_READ(DPLL_MD(crtc->pipe));
6152 pipe_config->pixel_multiplier =
6153 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6154 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8bcc2795 6155 pipe_config->dpll_hw_state.dpll_md = tmp;
6c49f241
DV
6156 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6157 tmp = I915_READ(DPLL(crtc->pipe));
6158 pipe_config->pixel_multiplier =
6159 ((tmp & SDVO_MULTIPLIER_MASK)
6160 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6161 } else {
6162 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6163 * port and will be fixed up in the encoder->get_config
6164 * function. */
6165 pipe_config->pixel_multiplier = 1;
6166 }
8bcc2795
DV
6167 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6168 if (!IS_VALLEYVIEW(dev)) {
6169 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6170 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
165e901c
VS
6171 } else {
6172 /* Mask out read-only status bits. */
6173 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6174 DPLL_PORTC_READY_MASK |
6175 DPLL_PORTB_READY_MASK);
8bcc2795 6176 }
6c49f241 6177
70b23a98
VS
6178 if (IS_CHERRYVIEW(dev))
6179 chv_crtc_clock_get(crtc, pipe_config);
6180 else if (IS_VALLEYVIEW(dev))
acbec814
JB
6181 vlv_crtc_clock_get(crtc, pipe_config);
6182 else
6183 i9xx_crtc_clock_get(crtc, pipe_config);
18442d08 6184
0e8ffe1b
DV
6185 return true;
6186}
6187
dde86e2d 6188static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67
JB
6189{
6190 struct drm_i915_private *dev_priv = dev->dev_private;
6191 struct drm_mode_config *mode_config = &dev->mode_config;
13d83a67 6192 struct intel_encoder *encoder;
74cfd7ac 6193 u32 val, final;
13d83a67 6194 bool has_lvds = false;
199e5d79 6195 bool has_cpu_edp = false;
199e5d79 6196 bool has_panel = false;
99eb6a01
KP
6197 bool has_ck505 = false;
6198 bool can_ssc = false;
13d83a67
JB
6199
6200 /* We need to take the global config into account */
199e5d79
KP
6201 list_for_each_entry(encoder, &mode_config->encoder_list,
6202 base.head) {
6203 switch (encoder->type) {
6204 case INTEL_OUTPUT_LVDS:
6205 has_panel = true;
6206 has_lvds = true;
6207 break;
6208 case INTEL_OUTPUT_EDP:
6209 has_panel = true;
2de6905f 6210 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
6211 has_cpu_edp = true;
6212 break;
13d83a67
JB
6213 }
6214 }
6215
99eb6a01 6216 if (HAS_PCH_IBX(dev)) {
41aa3448 6217 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
6218 can_ssc = has_ck505;
6219 } else {
6220 has_ck505 = false;
6221 can_ssc = true;
6222 }
6223
2de6905f
ID
6224 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6225 has_panel, has_lvds, has_ck505);
13d83a67
JB
6226
6227 /* Ironlake: try to setup display ref clock before DPLL
6228 * enabling. This is only under driver's control after
6229 * PCH B stepping, previous chipset stepping should be
6230 * ignoring this setting.
6231 */
74cfd7ac
CW
6232 val = I915_READ(PCH_DREF_CONTROL);
6233
6234 /* As we must carefully and slowly disable/enable each source in turn,
6235 * compute the final state we want first and check if we need to
6236 * make any changes at all.
6237 */
6238 final = val;
6239 final &= ~DREF_NONSPREAD_SOURCE_MASK;
6240 if (has_ck505)
6241 final |= DREF_NONSPREAD_CK505_ENABLE;
6242 else
6243 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6244
6245 final &= ~DREF_SSC_SOURCE_MASK;
6246 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6247 final &= ~DREF_SSC1_ENABLE;
6248
6249 if (has_panel) {
6250 final |= DREF_SSC_SOURCE_ENABLE;
6251
6252 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6253 final |= DREF_SSC1_ENABLE;
6254
6255 if (has_cpu_edp) {
6256 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6257 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6258 else
6259 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6260 } else
6261 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6262 } else {
6263 final |= DREF_SSC_SOURCE_DISABLE;
6264 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6265 }
6266
6267 if (final == val)
6268 return;
6269
13d83a67 6270 /* Always enable nonspread source */
74cfd7ac 6271 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 6272
99eb6a01 6273 if (has_ck505)
74cfd7ac 6274 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 6275 else
74cfd7ac 6276 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 6277
199e5d79 6278 if (has_panel) {
74cfd7ac
CW
6279 val &= ~DREF_SSC_SOURCE_MASK;
6280 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 6281
199e5d79 6282 /* SSC must be turned on before enabling the CPU output */
99eb6a01 6283 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 6284 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 6285 val |= DREF_SSC1_ENABLE;
e77166b5 6286 } else
74cfd7ac 6287 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
6288
6289 /* Get SSC going before enabling the outputs */
74cfd7ac 6290 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6291 POSTING_READ(PCH_DREF_CONTROL);
6292 udelay(200);
6293
74cfd7ac 6294 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
6295
6296 /* Enable CPU source on CPU attached eDP */
199e5d79 6297 if (has_cpu_edp) {
99eb6a01 6298 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 6299 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 6300 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
eba905b2 6301 } else
74cfd7ac 6302 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 6303 } else
74cfd7ac 6304 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 6305
74cfd7ac 6306 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6307 POSTING_READ(PCH_DREF_CONTROL);
6308 udelay(200);
6309 } else {
6310 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6311
74cfd7ac 6312 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
6313
6314 /* Turn off CPU output */
74cfd7ac 6315 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 6316
74cfd7ac 6317 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6318 POSTING_READ(PCH_DREF_CONTROL);
6319 udelay(200);
6320
6321 /* Turn off the SSC source */
74cfd7ac
CW
6322 val &= ~DREF_SSC_SOURCE_MASK;
6323 val |= DREF_SSC_SOURCE_DISABLE;
199e5d79
KP
6324
6325 /* Turn off SSC1 */
74cfd7ac 6326 val &= ~DREF_SSC1_ENABLE;
199e5d79 6327
74cfd7ac 6328 I915_WRITE(PCH_DREF_CONTROL, val);
13d83a67
JB
6329 POSTING_READ(PCH_DREF_CONTROL);
6330 udelay(200);
6331 }
74cfd7ac
CW
6332
6333 BUG_ON(val != final);
13d83a67
JB
6334}
6335
f31f2d55 6336static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
dde86e2d 6337{
f31f2d55 6338 uint32_t tmp;
dde86e2d 6339
0ff066a9
PZ
6340 tmp = I915_READ(SOUTH_CHICKEN2);
6341 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6342 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 6343
0ff066a9
PZ
6344 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6345 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6346 DRM_ERROR("FDI mPHY reset assert timeout\n");
dde86e2d 6347
0ff066a9
PZ
6348 tmp = I915_READ(SOUTH_CHICKEN2);
6349 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6350 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 6351
0ff066a9
PZ
6352 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6353 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6354 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
f31f2d55
PZ
6355}
6356
6357/* WaMPhyProgramming:hsw */
6358static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6359{
6360 uint32_t tmp;
dde86e2d
PZ
6361
6362 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6363 tmp &= ~(0xFF << 24);
6364 tmp |= (0x12 << 24);
6365 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6366
dde86e2d
PZ
6367 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6368 tmp |= (1 << 11);
6369 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6370
6371 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6372 tmp |= (1 << 11);
6373 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6374
dde86e2d
PZ
6375 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6376 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6377 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6378
6379 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6380 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6381 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6382
0ff066a9
PZ
6383 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6384 tmp &= ~(7 << 13);
6385 tmp |= (5 << 13);
6386 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
dde86e2d 6387
0ff066a9
PZ
6388 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6389 tmp &= ~(7 << 13);
6390 tmp |= (5 << 13);
6391 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
dde86e2d
PZ
6392
6393 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6394 tmp &= ~0xFF;
6395 tmp |= 0x1C;
6396 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6397
6398 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6399 tmp &= ~0xFF;
6400 tmp |= 0x1C;
6401 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6402
6403 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6404 tmp &= ~(0xFF << 16);
6405 tmp |= (0x1C << 16);
6406 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6407
6408 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6409 tmp &= ~(0xFF << 16);
6410 tmp |= (0x1C << 16);
6411 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6412
0ff066a9
PZ
6413 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6414 tmp |= (1 << 27);
6415 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
dde86e2d 6416
0ff066a9
PZ
6417 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6418 tmp |= (1 << 27);
6419 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
dde86e2d 6420
0ff066a9
PZ
6421 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6422 tmp &= ~(0xF << 28);
6423 tmp |= (4 << 28);
6424 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
dde86e2d 6425
0ff066a9
PZ
6426 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6427 tmp &= ~(0xF << 28);
6428 tmp |= (4 << 28);
6429 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
f31f2d55
PZ
6430}
6431
2fa86a1f
PZ
6432/* Implements 3 different sequences from BSpec chapter "Display iCLK
6433 * Programming" based on the parameters passed:
6434 * - Sequence to enable CLKOUT_DP
6435 * - Sequence to enable CLKOUT_DP without spread
6436 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
6437 */
6438static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
6439 bool with_fdi)
f31f2d55
PZ
6440{
6441 struct drm_i915_private *dev_priv = dev->dev_private;
2fa86a1f
PZ
6442 uint32_t reg, tmp;
6443
6444 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
6445 with_spread = true;
6446 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
6447 with_fdi, "LP PCH doesn't have FDI\n"))
6448 with_fdi = false;
f31f2d55
PZ
6449
6450 mutex_lock(&dev_priv->dpio_lock);
6451
6452 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6453 tmp &= ~SBI_SSCCTL_DISABLE;
6454 tmp |= SBI_SSCCTL_PATHALT;
6455 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6456
6457 udelay(24);
6458
2fa86a1f
PZ
6459 if (with_spread) {
6460 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6461 tmp &= ~SBI_SSCCTL_PATHALT;
6462 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
f31f2d55 6463
2fa86a1f
PZ
6464 if (with_fdi) {
6465 lpt_reset_fdi_mphy(dev_priv);
6466 lpt_program_fdi_mphy(dev_priv);
6467 }
6468 }
dde86e2d 6469
2fa86a1f
PZ
6470 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6471 SBI_GEN0 : SBI_DBUFF0;
6472 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6473 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6474 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
c00db246
DV
6475
6476 mutex_unlock(&dev_priv->dpio_lock);
dde86e2d
PZ
6477}
6478
47701c3b
PZ
6479/* Sequence to disable CLKOUT_DP */
6480static void lpt_disable_clkout_dp(struct drm_device *dev)
6481{
6482 struct drm_i915_private *dev_priv = dev->dev_private;
6483 uint32_t reg, tmp;
6484
6485 mutex_lock(&dev_priv->dpio_lock);
6486
6487 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6488 SBI_GEN0 : SBI_DBUFF0;
6489 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6490 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6491 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
6492
6493 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6494 if (!(tmp & SBI_SSCCTL_DISABLE)) {
6495 if (!(tmp & SBI_SSCCTL_PATHALT)) {
6496 tmp |= SBI_SSCCTL_PATHALT;
6497 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6498 udelay(32);
6499 }
6500 tmp |= SBI_SSCCTL_DISABLE;
6501 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6502 }
6503
6504 mutex_unlock(&dev_priv->dpio_lock);
6505}
6506
bf8fa3d3
PZ
6507static void lpt_init_pch_refclk(struct drm_device *dev)
6508{
6509 struct drm_mode_config *mode_config = &dev->mode_config;
6510 struct intel_encoder *encoder;
6511 bool has_vga = false;
6512
6513 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
6514 switch (encoder->type) {
6515 case INTEL_OUTPUT_ANALOG:
6516 has_vga = true;
6517 break;
6518 }
6519 }
6520
47701c3b
PZ
6521 if (has_vga)
6522 lpt_enable_clkout_dp(dev, true, true);
6523 else
6524 lpt_disable_clkout_dp(dev);
bf8fa3d3
PZ
6525}
6526
dde86e2d
PZ
6527/*
6528 * Initialize reference clocks when the driver loads
6529 */
6530void intel_init_pch_refclk(struct drm_device *dev)
6531{
6532 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
6533 ironlake_init_pch_refclk(dev);
6534 else if (HAS_PCH_LPT(dev))
6535 lpt_init_pch_refclk(dev);
6536}
6537
d9d444cb
JB
6538static int ironlake_get_refclk(struct drm_crtc *crtc)
6539{
6540 struct drm_device *dev = crtc->dev;
6541 struct drm_i915_private *dev_priv = dev->dev_private;
6542 struct intel_encoder *encoder;
d9d444cb
JB
6543 int num_connectors = 0;
6544 bool is_lvds = false;
6545
6c2b7c12 6546 for_each_encoder_on_crtc(dev, crtc, encoder) {
d9d444cb
JB
6547 switch (encoder->type) {
6548 case INTEL_OUTPUT_LVDS:
6549 is_lvds = true;
6550 break;
d9d444cb
JB
6551 }
6552 num_connectors++;
6553 }
6554
6555 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b 6556 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
41aa3448 6557 dev_priv->vbt.lvds_ssc_freq);
e91e941b 6558 return dev_priv->vbt.lvds_ssc_freq;
d9d444cb
JB
6559 }
6560
6561 return 120000;
6562}
6563
6ff93609 6564static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 6565{
c8203565 6566 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
79e53945
JB
6567 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6568 int pipe = intel_crtc->pipe;
c8203565
PZ
6569 uint32_t val;
6570
78114071 6571 val = 0;
c8203565 6572
965e0c48 6573 switch (intel_crtc->config.pipe_bpp) {
c8203565 6574 case 18:
dfd07d72 6575 val |= PIPECONF_6BPC;
c8203565
PZ
6576 break;
6577 case 24:
dfd07d72 6578 val |= PIPECONF_8BPC;
c8203565
PZ
6579 break;
6580 case 30:
dfd07d72 6581 val |= PIPECONF_10BPC;
c8203565
PZ
6582 break;
6583 case 36:
dfd07d72 6584 val |= PIPECONF_12BPC;
c8203565
PZ
6585 break;
6586 default:
cc769b62
PZ
6587 /* Case prevented by intel_choose_pipe_bpp_dither. */
6588 BUG();
c8203565
PZ
6589 }
6590
d8b32247 6591 if (intel_crtc->config.dither)
c8203565
PZ
6592 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6593
6ff93609 6594 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
6595 val |= PIPECONF_INTERLACED_ILK;
6596 else
6597 val |= PIPECONF_PROGRESSIVE;
6598
50f3b016 6599 if (intel_crtc->config.limited_color_range)
3685a8f3 6600 val |= PIPECONF_COLOR_RANGE_SELECT;
3685a8f3 6601
c8203565
PZ
6602 I915_WRITE(PIPECONF(pipe), val);
6603 POSTING_READ(PIPECONF(pipe));
6604}
6605
86d3efce
VS
6606/*
6607 * Set up the pipe CSC unit.
6608 *
6609 * Currently only full range RGB to limited range RGB conversion
6610 * is supported, but eventually this should handle various
6611 * RGB<->YCbCr scenarios as well.
6612 */
50f3b016 6613static void intel_set_pipe_csc(struct drm_crtc *crtc)
86d3efce
VS
6614{
6615 struct drm_device *dev = crtc->dev;
6616 struct drm_i915_private *dev_priv = dev->dev_private;
6617 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6618 int pipe = intel_crtc->pipe;
6619 uint16_t coeff = 0x7800; /* 1.0 */
6620
6621 /*
6622 * TODO: Check what kind of values actually come out of the pipe
6623 * with these coeff/postoff values and adjust to get the best
6624 * accuracy. Perhaps we even need to take the bpc value into
6625 * consideration.
6626 */
6627
50f3b016 6628 if (intel_crtc->config.limited_color_range)
86d3efce
VS
6629 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
6630
6631 /*
6632 * GY/GU and RY/RU should be the other way around according
6633 * to BSpec, but reality doesn't agree. Just set them up in
6634 * a way that results in the correct picture.
6635 */
6636 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
6637 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
6638
6639 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
6640 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
6641
6642 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
6643 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
6644
6645 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
6646 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
6647 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
6648
6649 if (INTEL_INFO(dev)->gen > 6) {
6650 uint16_t postoff = 0;
6651
50f3b016 6652 if (intel_crtc->config.limited_color_range)
32cf0cb0 6653 postoff = (16 * (1 << 12) / 255) & 0x1fff;
86d3efce
VS
6654
6655 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
6656 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
6657 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
6658
6659 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
6660 } else {
6661 uint32_t mode = CSC_MODE_YUV_TO_RGB;
6662
50f3b016 6663 if (intel_crtc->config.limited_color_range)
86d3efce
VS
6664 mode |= CSC_BLACK_SCREEN_OFFSET;
6665
6666 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
6667 }
6668}
6669
6ff93609 6670static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38 6671{
756f85cf
PZ
6672 struct drm_device *dev = crtc->dev;
6673 struct drm_i915_private *dev_priv = dev->dev_private;
ee2b0b38 6674 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
756f85cf 6675 enum pipe pipe = intel_crtc->pipe;
3b117c8f 6676 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
ee2b0b38
PZ
6677 uint32_t val;
6678
3eff4faa 6679 val = 0;
ee2b0b38 6680
756f85cf 6681 if (IS_HASWELL(dev) && intel_crtc->config.dither)
ee2b0b38
PZ
6682 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6683
6ff93609 6684 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
6685 val |= PIPECONF_INTERLACED_ILK;
6686 else
6687 val |= PIPECONF_PROGRESSIVE;
6688
702e7a56
PZ
6689 I915_WRITE(PIPECONF(cpu_transcoder), val);
6690 POSTING_READ(PIPECONF(cpu_transcoder));
3eff4faa
DV
6691
6692 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
6693 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
756f85cf
PZ
6694
6695 if (IS_BROADWELL(dev)) {
6696 val = 0;
6697
6698 switch (intel_crtc->config.pipe_bpp) {
6699 case 18:
6700 val |= PIPEMISC_DITHER_6_BPC;
6701 break;
6702 case 24:
6703 val |= PIPEMISC_DITHER_8_BPC;
6704 break;
6705 case 30:
6706 val |= PIPEMISC_DITHER_10_BPC;
6707 break;
6708 case 36:
6709 val |= PIPEMISC_DITHER_12_BPC;
6710 break;
6711 default:
6712 /* Case prevented by pipe_config_set_bpp. */
6713 BUG();
6714 }
6715
6716 if (intel_crtc->config.dither)
6717 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
6718
6719 I915_WRITE(PIPEMISC(pipe), val);
6720 }
ee2b0b38
PZ
6721}
6722
6591c6e4 6723static bool ironlake_compute_clocks(struct drm_crtc *crtc,
6591c6e4
PZ
6724 intel_clock_t *clock,
6725 bool *has_reduced_clock,
6726 intel_clock_t *reduced_clock)
6727{
6728 struct drm_device *dev = crtc->dev;
6729 struct drm_i915_private *dev_priv = dev->dev_private;
6730 struct intel_encoder *intel_encoder;
6731 int refclk;
d4906093 6732 const intel_limit_t *limit;
a16af721 6733 bool ret, is_lvds = false;
79e53945 6734
6591c6e4
PZ
6735 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6736 switch (intel_encoder->type) {
79e53945
JB
6737 case INTEL_OUTPUT_LVDS:
6738 is_lvds = true;
6739 break;
79e53945
JB
6740 }
6741 }
6742
d9d444cb 6743 refclk = ironlake_get_refclk(crtc);
79e53945 6744
d4906093
ML
6745 /*
6746 * Returns a set of divisors for the desired target clock with the given
6747 * refclk, or FALSE. The returned values represent the clock equation:
6748 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
6749 */
1b894b59 6750 limit = intel_limit(crtc, refclk);
ff9a6750
DV
6751 ret = dev_priv->display.find_dpll(limit, crtc,
6752 to_intel_crtc(crtc)->config.port_clock,
ee9300bb 6753 refclk, NULL, clock);
6591c6e4
PZ
6754 if (!ret)
6755 return false;
cda4b7d3 6756
ddc9003c 6757 if (is_lvds && dev_priv->lvds_downclock_avail) {
cec2f356
SP
6758 /*
6759 * Ensure we match the reduced clock's P to the target clock.
6760 * If the clocks don't match, we can't switch the display clock
6761 * by using the FP0/FP1. In such case we will disable the LVDS
6762 * downclock feature.
6763 */
ee9300bb
DV
6764 *has_reduced_clock =
6765 dev_priv->display.find_dpll(limit, crtc,
6766 dev_priv->lvds_downclock,
6767 refclk, clock,
6768 reduced_clock);
652c393a 6769 }
61e9653f 6770
6591c6e4
PZ
6771 return true;
6772}
6773
d4b1931c
PZ
6774int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
6775{
6776 /*
6777 * Account for spread spectrum to avoid
6778 * oversubscribing the link. Max center spread
6779 * is 2.5%; use 5% for safety's sake.
6780 */
6781 u32 bps = target_clock * bpp * 21 / 20;
619d4d04 6782 return DIV_ROUND_UP(bps, link_bw * 8);
d4b1931c
PZ
6783}
6784
7429e9d4 6785static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
6cf86a5e 6786{
7429e9d4 6787 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
f48d8f23
PZ
6788}
6789
de13a2e3 6790static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
7429e9d4 6791 u32 *fp,
9a7c7890 6792 intel_clock_t *reduced_clock, u32 *fp2)
79e53945 6793{
de13a2e3 6794 struct drm_crtc *crtc = &intel_crtc->base;
79e53945
JB
6795 struct drm_device *dev = crtc->dev;
6796 struct drm_i915_private *dev_priv = dev->dev_private;
de13a2e3
PZ
6797 struct intel_encoder *intel_encoder;
6798 uint32_t dpll;
6cc5f341 6799 int factor, num_connectors = 0;
09ede541 6800 bool is_lvds = false, is_sdvo = false;
79e53945 6801
de13a2e3
PZ
6802 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6803 switch (intel_encoder->type) {
79e53945
JB
6804 case INTEL_OUTPUT_LVDS:
6805 is_lvds = true;
6806 break;
6807 case INTEL_OUTPUT_SDVO:
7d57382e 6808 case INTEL_OUTPUT_HDMI:
79e53945 6809 is_sdvo = true;
79e53945 6810 break;
79e53945 6811 }
43565a06 6812
c751ce4f 6813 num_connectors++;
79e53945 6814 }
79e53945 6815
c1858123 6816 /* Enable autotuning of the PLL clock (if permissible) */
8febb297
EA
6817 factor = 21;
6818 if (is_lvds) {
6819 if ((intel_panel_use_ssc(dev_priv) &&
e91e941b 6820 dev_priv->vbt.lvds_ssc_freq == 100000) ||
f0b44056 6821 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
8febb297 6822 factor = 25;
09ede541 6823 } else if (intel_crtc->config.sdvo_tv_clock)
8febb297 6824 factor = 20;
c1858123 6825
7429e9d4 6826 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
7d0ac5b7 6827 *fp |= FP_CB_TUNE;
2c07245f 6828
9a7c7890
DV
6829 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
6830 *fp2 |= FP_CB_TUNE;
6831
5eddb70b 6832 dpll = 0;
2c07245f 6833
a07d6787
EA
6834 if (is_lvds)
6835 dpll |= DPLLB_MODE_LVDS;
6836 else
6837 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 6838
ef1b460d
DV
6839 dpll |= (intel_crtc->config.pixel_multiplier - 1)
6840 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f
DV
6841
6842 if (is_sdvo)
4a33e48d 6843 dpll |= DPLL_SDVO_HIGH_SPEED;
9566e9af 6844 if (intel_crtc->config.has_dp_encoder)
4a33e48d 6845 dpll |= DPLL_SDVO_HIGH_SPEED;
79e53945 6846
a07d6787 6847 /* compute bitmask from p1 value */
7429e9d4 6848 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 6849 /* also FPA1 */
7429e9d4 6850 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 6851
7429e9d4 6852 switch (intel_crtc->config.dpll.p2) {
a07d6787
EA
6853 case 5:
6854 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6855 break;
6856 case 7:
6857 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6858 break;
6859 case 10:
6860 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6861 break;
6862 case 14:
6863 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6864 break;
79e53945
JB
6865 }
6866
b4c09f3b 6867 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
43565a06 6868 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
6869 else
6870 dpll |= PLL_REF_INPUT_DREFCLK;
6871
959e16d6 6872 return dpll | DPLL_VCO_ENABLE;
de13a2e3
PZ
6873}
6874
6875static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
de13a2e3
PZ
6876 int x, int y,
6877 struct drm_framebuffer *fb)
6878{
6879 struct drm_device *dev = crtc->dev;
de13a2e3 6880 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
de13a2e3
PZ
6881 int num_connectors = 0;
6882 intel_clock_t clock, reduced_clock;
cbbab5bd 6883 u32 dpll = 0, fp = 0, fp2 = 0;
e2f12b07 6884 bool ok, has_reduced_clock = false;
8b47047b 6885 bool is_lvds = false;
de13a2e3 6886 struct intel_encoder *encoder;
e2b78267 6887 struct intel_shared_dpll *pll;
de13a2e3
PZ
6888
6889 for_each_encoder_on_crtc(dev, crtc, encoder) {
6890 switch (encoder->type) {
6891 case INTEL_OUTPUT_LVDS:
6892 is_lvds = true;
6893 break;
de13a2e3
PZ
6894 }
6895
6896 num_connectors++;
a07d6787 6897 }
79e53945 6898
5dc5298b
PZ
6899 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
6900 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
a07d6787 6901
ff9a6750 6902 ok = ironlake_compute_clocks(crtc, &clock,
de13a2e3 6903 &has_reduced_clock, &reduced_clock);
ee9300bb 6904 if (!ok && !intel_crtc->config.clock_set) {
de13a2e3
PZ
6905 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6906 return -EINVAL;
79e53945 6907 }
f47709a9
DV
6908 /* Compat-code for transition, will disappear. */
6909 if (!intel_crtc->config.clock_set) {
6910 intel_crtc->config.dpll.n = clock.n;
6911 intel_crtc->config.dpll.m1 = clock.m1;
6912 intel_crtc->config.dpll.m2 = clock.m2;
6913 intel_crtc->config.dpll.p1 = clock.p1;
6914 intel_crtc->config.dpll.p2 = clock.p2;
6915 }
79e53945 6916
5dc5298b 6917 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
8b47047b 6918 if (intel_crtc->config.has_pch_encoder) {
7429e9d4 6919 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
cbbab5bd 6920 if (has_reduced_clock)
7429e9d4 6921 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
cbbab5bd 6922
7429e9d4 6923 dpll = ironlake_compute_dpll(intel_crtc,
cbbab5bd
DV
6924 &fp, &reduced_clock,
6925 has_reduced_clock ? &fp2 : NULL);
6926
959e16d6 6927 intel_crtc->config.dpll_hw_state.dpll = dpll;
66e985c0
DV
6928 intel_crtc->config.dpll_hw_state.fp0 = fp;
6929 if (has_reduced_clock)
6930 intel_crtc->config.dpll_hw_state.fp1 = fp2;
6931 else
6932 intel_crtc->config.dpll_hw_state.fp1 = fp;
6933
b89a1d39 6934 pll = intel_get_shared_dpll(intel_crtc);
ee7b9f93 6935 if (pll == NULL) {
84f44ce7 6936 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
29407aab 6937 pipe_name(intel_crtc->pipe));
4b645f14
JB
6938 return -EINVAL;
6939 }
ee7b9f93 6940 } else
e72f9fbf 6941 intel_put_shared_dpll(intel_crtc);
79e53945 6942
d330a953 6943 if (is_lvds && has_reduced_clock && i915.powersave)
bcd644e0
DV
6944 intel_crtc->lowfreq_avail = true;
6945 else
6946 intel_crtc->lowfreq_avail = false;
e2b78267 6947
c8f7a0db 6948 return 0;
79e53945
JB
6949}
6950
eb14cb74
VS
6951static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
6952 struct intel_link_m_n *m_n)
6953{
6954 struct drm_device *dev = crtc->base.dev;
6955 struct drm_i915_private *dev_priv = dev->dev_private;
6956 enum pipe pipe = crtc->pipe;
6957
6958 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
6959 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
6960 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
6961 & ~TU_SIZE_MASK;
6962 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
6963 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
6964 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6965}
6966
6967static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
6968 enum transcoder transcoder,
6969 struct intel_link_m_n *m_n)
72419203
DV
6970{
6971 struct drm_device *dev = crtc->base.dev;
6972 struct drm_i915_private *dev_priv = dev->dev_private;
eb14cb74 6973 enum pipe pipe = crtc->pipe;
72419203 6974
eb14cb74
VS
6975 if (INTEL_INFO(dev)->gen >= 5) {
6976 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
6977 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
6978 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
6979 & ~TU_SIZE_MASK;
6980 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
6981 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
6982 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6983 } else {
6984 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
6985 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
6986 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
6987 & ~TU_SIZE_MASK;
6988 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
6989 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
6990 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6991 }
6992}
6993
6994void intel_dp_get_m_n(struct intel_crtc *crtc,
6995 struct intel_crtc_config *pipe_config)
6996{
6997 if (crtc->config.has_pch_encoder)
6998 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
6999 else
7000 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7001 &pipe_config->dp_m_n);
7002}
72419203 7003
eb14cb74
VS
7004static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
7005 struct intel_crtc_config *pipe_config)
7006{
7007 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7008 &pipe_config->fdi_m_n);
72419203
DV
7009}
7010
2fa2fe9a
DV
7011static void ironlake_get_pfit_config(struct intel_crtc *crtc,
7012 struct intel_crtc_config *pipe_config)
7013{
7014 struct drm_device *dev = crtc->base.dev;
7015 struct drm_i915_private *dev_priv = dev->dev_private;
7016 uint32_t tmp;
7017
7018 tmp = I915_READ(PF_CTL(crtc->pipe));
7019
7020 if (tmp & PF_ENABLE) {
fd4daa9c 7021 pipe_config->pch_pfit.enabled = true;
2fa2fe9a
DV
7022 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7023 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
7024
7025 /* We currently do not free assignements of panel fitters on
7026 * ivb/hsw (since we don't use the higher upscaling modes which
7027 * differentiates them) so just WARN about this case for now. */
7028 if (IS_GEN7(dev)) {
7029 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7030 PF_PIPE_SEL_IVB(crtc->pipe));
7031 }
2fa2fe9a 7032 }
79e53945
JB
7033}
7034
4c6baa59
JB
7035static void ironlake_get_plane_config(struct intel_crtc *crtc,
7036 struct intel_plane_config *plane_config)
7037{
7038 struct drm_device *dev = crtc->base.dev;
7039 struct drm_i915_private *dev_priv = dev->dev_private;
7040 u32 val, base, offset;
7041 int pipe = crtc->pipe, plane = crtc->plane;
7042 int fourcc, pixel_format;
7043 int aligned_height;
7044
66e514c1
DA
7045 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
7046 if (!crtc->base.primary->fb) {
4c6baa59
JB
7047 DRM_DEBUG_KMS("failed to alloc fb\n");
7048 return;
7049 }
7050
7051 val = I915_READ(DSPCNTR(plane));
7052
7053 if (INTEL_INFO(dev)->gen >= 4)
7054 if (val & DISPPLANE_TILED)
7055 plane_config->tiled = true;
7056
7057 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
7058 fourcc = intel_format_to_fourcc(pixel_format);
66e514c1
DA
7059 crtc->base.primary->fb->pixel_format = fourcc;
7060 crtc->base.primary->fb->bits_per_pixel =
4c6baa59
JB
7061 drm_format_plane_cpp(fourcc, 0) * 8;
7062
7063 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7064 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
7065 offset = I915_READ(DSPOFFSET(plane));
7066 } else {
7067 if (plane_config->tiled)
7068 offset = I915_READ(DSPTILEOFF(plane));
7069 else
7070 offset = I915_READ(DSPLINOFF(plane));
7071 }
7072 plane_config->base = base;
7073
7074 val = I915_READ(PIPESRC(pipe));
66e514c1
DA
7075 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
7076 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
4c6baa59
JB
7077
7078 val = I915_READ(DSPSTRIDE(pipe));
66e514c1 7079 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
4c6baa59 7080
66e514c1 7081 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
4c6baa59
JB
7082 plane_config->tiled);
7083
66e514c1 7084 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
4c6baa59
JB
7085 aligned_height, PAGE_SIZE);
7086
7087 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
66e514c1
DA
7088 pipe, plane, crtc->base.primary->fb->width,
7089 crtc->base.primary->fb->height,
7090 crtc->base.primary->fb->bits_per_pixel, base,
7091 crtc->base.primary->fb->pitches[0],
4c6baa59
JB
7092 plane_config->size);
7093}
7094
0e8ffe1b
DV
7095static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
7096 struct intel_crtc_config *pipe_config)
7097{
7098 struct drm_device *dev = crtc->base.dev;
7099 struct drm_i915_private *dev_priv = dev->dev_private;
7100 uint32_t tmp;
7101
e143a21c 7102 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 7103 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 7104
0e8ffe1b
DV
7105 tmp = I915_READ(PIPECONF(crtc->pipe));
7106 if (!(tmp & PIPECONF_ENABLE))
7107 return false;
7108
42571aef
VS
7109 switch (tmp & PIPECONF_BPC_MASK) {
7110 case PIPECONF_6BPC:
7111 pipe_config->pipe_bpp = 18;
7112 break;
7113 case PIPECONF_8BPC:
7114 pipe_config->pipe_bpp = 24;
7115 break;
7116 case PIPECONF_10BPC:
7117 pipe_config->pipe_bpp = 30;
7118 break;
7119 case PIPECONF_12BPC:
7120 pipe_config->pipe_bpp = 36;
7121 break;
7122 default:
7123 break;
7124 }
7125
b5a9fa09
DV
7126 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7127 pipe_config->limited_color_range = true;
7128
ab9412ba 7129 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
66e985c0
DV
7130 struct intel_shared_dpll *pll;
7131
88adfff1
DV
7132 pipe_config->has_pch_encoder = true;
7133
627eb5a3
DV
7134 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7135 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7136 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
7137
7138 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241 7139
c0d43d62 7140 if (HAS_PCH_IBX(dev_priv->dev)) {
d94ab068
DV
7141 pipe_config->shared_dpll =
7142 (enum intel_dpll_id) crtc->pipe;
c0d43d62
DV
7143 } else {
7144 tmp = I915_READ(PCH_DPLL_SEL);
7145 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7146 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7147 else
7148 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7149 }
66e985c0
DV
7150
7151 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7152
7153 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7154 &pipe_config->dpll_hw_state));
c93f54cf
DV
7155
7156 tmp = pipe_config->dpll_hw_state.dpll;
7157 pipe_config->pixel_multiplier =
7158 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7159 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
18442d08
VS
7160
7161 ironlake_pch_clock_get(crtc, pipe_config);
6c49f241
DV
7162 } else {
7163 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
7164 }
7165
1bd1bd80
DV
7166 intel_get_pipe_timings(crtc, pipe_config);
7167
2fa2fe9a
DV
7168 ironlake_get_pfit_config(crtc, pipe_config);
7169
0e8ffe1b
DV
7170 return true;
7171}
7172
be256dc7
PZ
7173static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7174{
7175 struct drm_device *dev = dev_priv->dev;
7176 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
7177 struct intel_crtc *crtc;
be256dc7 7178
d3fcc808 7179 for_each_intel_crtc(dev, crtc)
798183c5 7180 WARN(crtc->active, "CRTC for pipe %c enabled\n",
be256dc7
PZ
7181 pipe_name(crtc->pipe));
7182
7183 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7184 WARN(plls->spll_refcount, "SPLL enabled\n");
7185 WARN(plls->wrpll1_refcount, "WRPLL1 enabled\n");
7186 WARN(plls->wrpll2_refcount, "WRPLL2 enabled\n");
7187 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7188 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
7189 "CPU PWM1 enabled\n");
7190 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
7191 "CPU PWM2 enabled\n");
7192 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
7193 "PCH PWM1 enabled\n");
7194 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
7195 "Utility pin enabled\n");
7196 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
7197
9926ada1
PZ
7198 /*
7199 * In theory we can still leave IRQs enabled, as long as only the HPD
7200 * interrupts remain enabled. We used to check for that, but since it's
7201 * gen-specific and since we only disable LCPLL after we fully disable
7202 * the interrupts, the check below should be enough.
7203 */
7204 WARN(!dev_priv->pm.irqs_disabled, "IRQs enabled\n");
be256dc7
PZ
7205}
7206
3c4c9b81
PZ
7207static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7208{
7209 struct drm_device *dev = dev_priv->dev;
7210
7211 if (IS_HASWELL(dev)) {
7212 mutex_lock(&dev_priv->rps.hw_lock);
7213 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7214 val))
7215 DRM_ERROR("Failed to disable D_COMP\n");
7216 mutex_unlock(&dev_priv->rps.hw_lock);
7217 } else {
7218 I915_WRITE(D_COMP, val);
7219 }
7220 POSTING_READ(D_COMP);
be256dc7
PZ
7221}
7222
7223/*
7224 * This function implements pieces of two sequences from BSpec:
7225 * - Sequence for display software to disable LCPLL
7226 * - Sequence for display software to allow package C8+
7227 * The steps implemented here are just the steps that actually touch the LCPLL
7228 * register. Callers should take care of disabling all the display engine
7229 * functions, doing the mode unset, fixing interrupts, etc.
7230 */
6ff58d53
PZ
7231static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7232 bool switch_to_fclk, bool allow_power_down)
be256dc7
PZ
7233{
7234 uint32_t val;
7235
7236 assert_can_disable_lcpll(dev_priv);
7237
7238 val = I915_READ(LCPLL_CTL);
7239
7240 if (switch_to_fclk) {
7241 val |= LCPLL_CD_SOURCE_FCLK;
7242 I915_WRITE(LCPLL_CTL, val);
7243
7244 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7245 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7246 DRM_ERROR("Switching to FCLK failed\n");
7247
7248 val = I915_READ(LCPLL_CTL);
7249 }
7250
7251 val |= LCPLL_PLL_DISABLE;
7252 I915_WRITE(LCPLL_CTL, val);
7253 POSTING_READ(LCPLL_CTL);
7254
7255 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7256 DRM_ERROR("LCPLL still locked\n");
7257
7258 val = I915_READ(D_COMP);
7259 val |= D_COMP_COMP_DISABLE;
3c4c9b81 7260 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
7261 ndelay(100);
7262
7263 if (wait_for((I915_READ(D_COMP) & D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
7264 DRM_ERROR("D_COMP RCOMP still in progress\n");
7265
7266 if (allow_power_down) {
7267 val = I915_READ(LCPLL_CTL);
7268 val |= LCPLL_POWER_DOWN_ALLOW;
7269 I915_WRITE(LCPLL_CTL, val);
7270 POSTING_READ(LCPLL_CTL);
7271 }
7272}
7273
7274/*
7275 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7276 * source.
7277 */
6ff58d53 7278static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
be256dc7
PZ
7279{
7280 uint32_t val;
a8a8bd54 7281 unsigned long irqflags;
be256dc7
PZ
7282
7283 val = I915_READ(LCPLL_CTL);
7284
7285 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7286 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7287 return;
7288
a8a8bd54
PZ
7289 /*
7290 * Make sure we're not on PC8 state before disabling PC8, otherwise
7291 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
7292 *
7293 * The other problem is that hsw_restore_lcpll() is called as part of
7294 * the runtime PM resume sequence, so we can't just call
7295 * gen6_gt_force_wake_get() because that function calls
7296 * intel_runtime_pm_get(), and we can't change the runtime PM refcount
7297 * while we are on the resume sequence. So to solve this problem we have
7298 * to call special forcewake code that doesn't touch runtime PM and
7299 * doesn't enable the forcewake delayed work.
7300 */
7301 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7302 if (dev_priv->uncore.forcewake_count++ == 0)
7303 dev_priv->uncore.funcs.force_wake_get(dev_priv, FORCEWAKE_ALL);
7304 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
215733fa 7305
be256dc7
PZ
7306 if (val & LCPLL_POWER_DOWN_ALLOW) {
7307 val &= ~LCPLL_POWER_DOWN_ALLOW;
7308 I915_WRITE(LCPLL_CTL, val);
35d8f2eb 7309 POSTING_READ(LCPLL_CTL);
be256dc7
PZ
7310 }
7311
7312 val = I915_READ(D_COMP);
7313 val |= D_COMP_COMP_FORCE;
7314 val &= ~D_COMP_COMP_DISABLE;
3c4c9b81 7315 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
7316
7317 val = I915_READ(LCPLL_CTL);
7318 val &= ~LCPLL_PLL_DISABLE;
7319 I915_WRITE(LCPLL_CTL, val);
7320
7321 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7322 DRM_ERROR("LCPLL not locked yet\n");
7323
7324 if (val & LCPLL_CD_SOURCE_FCLK) {
7325 val = I915_READ(LCPLL_CTL);
7326 val &= ~LCPLL_CD_SOURCE_FCLK;
7327 I915_WRITE(LCPLL_CTL, val);
7328
7329 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
7330 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
7331 DRM_ERROR("Switching back to LCPLL failed\n");
7332 }
215733fa 7333
a8a8bd54
PZ
7334 /* See the big comment above. */
7335 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7336 if (--dev_priv->uncore.forcewake_count == 0)
7337 dev_priv->uncore.funcs.force_wake_put(dev_priv, FORCEWAKE_ALL);
7338 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
be256dc7
PZ
7339}
7340
765dab67
PZ
7341/*
7342 * Package states C8 and deeper are really deep PC states that can only be
7343 * reached when all the devices on the system allow it, so even if the graphics
7344 * device allows PC8+, it doesn't mean the system will actually get to these
7345 * states. Our driver only allows PC8+ when going into runtime PM.
7346 *
7347 * The requirements for PC8+ are that all the outputs are disabled, the power
7348 * well is disabled and most interrupts are disabled, and these are also
7349 * requirements for runtime PM. When these conditions are met, we manually do
7350 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
7351 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
7352 * hang the machine.
7353 *
7354 * When we really reach PC8 or deeper states (not just when we allow it) we lose
7355 * the state of some registers, so when we come back from PC8+ we need to
7356 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
7357 * need to take care of the registers kept by RC6. Notice that this happens even
7358 * if we don't put the device in PCI D3 state (which is what currently happens
7359 * because of the runtime PM support).
7360 *
7361 * For more, read "Display Sequences for Package C8" on the hardware
7362 * documentation.
7363 */
a14cb6fc 7364void hsw_enable_pc8(struct drm_i915_private *dev_priv)
c67a470b 7365{
c67a470b
PZ
7366 struct drm_device *dev = dev_priv->dev;
7367 uint32_t val;
7368
c67a470b
PZ
7369 DRM_DEBUG_KMS("Enabling package C8+\n");
7370
c67a470b
PZ
7371 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7372 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7373 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7374 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7375 }
7376
7377 lpt_disable_clkout_dp(dev);
c67a470b
PZ
7378 hsw_disable_lcpll(dev_priv, true, true);
7379}
7380
a14cb6fc 7381void hsw_disable_pc8(struct drm_i915_private *dev_priv)
c67a470b
PZ
7382{
7383 struct drm_device *dev = dev_priv->dev;
7384 uint32_t val;
7385
c67a470b
PZ
7386 DRM_DEBUG_KMS("Disabling package C8+\n");
7387
7388 hsw_restore_lcpll(dev_priv);
c67a470b
PZ
7389 lpt_init_pch_refclk(dev);
7390
7391 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7392 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7393 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
7394 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7395 }
7396
7397 intel_prepare_ddi(dev);
c67a470b
PZ
7398}
7399
9a952a0d
PZ
7400static void snb_modeset_global_resources(struct drm_device *dev)
7401{
7402 modeset_update_crtc_power_domains(dev);
7403}
7404
4f074129
ID
7405static void haswell_modeset_global_resources(struct drm_device *dev)
7406{
da723569 7407 modeset_update_crtc_power_domains(dev);
d6dd9eb1
DV
7408}
7409
09b4ddf9 7410static int haswell_crtc_mode_set(struct drm_crtc *crtc,
09b4ddf9
PZ
7411 int x, int y,
7412 struct drm_framebuffer *fb)
7413{
09b4ddf9 7414 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
09b4ddf9 7415
566b734a 7416 if (!intel_ddi_pll_select(intel_crtc))
6441ab5f 7417 return -EINVAL;
566b734a 7418 intel_ddi_pll_enable(intel_crtc);
6441ab5f 7419
644cef34
DV
7420 intel_crtc->lowfreq_avail = false;
7421
c8f7a0db 7422 return 0;
79e53945
JB
7423}
7424
0e8ffe1b
DV
7425static bool haswell_get_pipe_config(struct intel_crtc *crtc,
7426 struct intel_crtc_config *pipe_config)
7427{
7428 struct drm_device *dev = crtc->base.dev;
7429 struct drm_i915_private *dev_priv = dev->dev_private;
2fa2fe9a 7430 enum intel_display_power_domain pfit_domain;
0e8ffe1b
DV
7431 uint32_t tmp;
7432
b5482bd0
ID
7433 if (!intel_display_power_enabled(dev_priv,
7434 POWER_DOMAIN_PIPE(crtc->pipe)))
7435 return false;
7436
e143a21c 7437 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62
DV
7438 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
7439
eccb140b
DV
7440 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
7441 if (tmp & TRANS_DDI_FUNC_ENABLE) {
7442 enum pipe trans_edp_pipe;
7443 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
7444 default:
7445 WARN(1, "unknown pipe linked to edp transcoder\n");
7446 case TRANS_DDI_EDP_INPUT_A_ONOFF:
7447 case TRANS_DDI_EDP_INPUT_A_ON:
7448 trans_edp_pipe = PIPE_A;
7449 break;
7450 case TRANS_DDI_EDP_INPUT_B_ONOFF:
7451 trans_edp_pipe = PIPE_B;
7452 break;
7453 case TRANS_DDI_EDP_INPUT_C_ONOFF:
7454 trans_edp_pipe = PIPE_C;
7455 break;
7456 }
7457
7458 if (trans_edp_pipe == crtc->pipe)
7459 pipe_config->cpu_transcoder = TRANSCODER_EDP;
7460 }
7461
da7e29bd 7462 if (!intel_display_power_enabled(dev_priv,
eccb140b 7463 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
2bfce950
PZ
7464 return false;
7465
eccb140b 7466 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
0e8ffe1b
DV
7467 if (!(tmp & PIPECONF_ENABLE))
7468 return false;
7469
88adfff1 7470 /*
f196e6be 7471 * Haswell has only FDI/PCH transcoder A. It is which is connected to
88adfff1
DV
7472 * DDI E. So just check whether this pipe is wired to DDI E and whether
7473 * the PCH transcoder is on.
7474 */
eccb140b 7475 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
88adfff1 7476 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
ab9412ba 7477 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
88adfff1
DV
7478 pipe_config->has_pch_encoder = true;
7479
627eb5a3
DV
7480 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
7481 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7482 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
7483
7484 ironlake_get_fdi_m_n_config(crtc, pipe_config);
627eb5a3
DV
7485 }
7486
1bd1bd80
DV
7487 intel_get_pipe_timings(crtc, pipe_config);
7488
2fa2fe9a 7489 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
da7e29bd 7490 if (intel_display_power_enabled(dev_priv, pfit_domain))
2fa2fe9a 7491 ironlake_get_pfit_config(crtc, pipe_config);
88adfff1 7492
e59150dc
JB
7493 if (IS_HASWELL(dev))
7494 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
7495 (I915_READ(IPS_CTL) & IPS_ENABLE);
42db64ef 7496
6c49f241
DV
7497 pipe_config->pixel_multiplier = 1;
7498
0e8ffe1b
DV
7499 return true;
7500}
7501
1a91510d
JN
7502static struct {
7503 int clock;
7504 u32 config;
7505} hdmi_audio_clock[] = {
7506 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
7507 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
7508 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
7509 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
7510 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
7511 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
7512 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
7513 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
7514 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
7515 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
7516};
7517
7518/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
7519static u32 audio_config_hdmi_pixel_clock(struct drm_display_mode *mode)
7520{
7521 int i;
7522
7523 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
7524 if (mode->clock == hdmi_audio_clock[i].clock)
7525 break;
7526 }
7527
7528 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
7529 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n", mode->clock);
7530 i = 1;
7531 }
7532
7533 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
7534 hdmi_audio_clock[i].clock,
7535 hdmi_audio_clock[i].config);
7536
7537 return hdmi_audio_clock[i].config;
7538}
7539
3a9627f4
WF
7540static bool intel_eld_uptodate(struct drm_connector *connector,
7541 int reg_eldv, uint32_t bits_eldv,
7542 int reg_elda, uint32_t bits_elda,
7543 int reg_edid)
7544{
7545 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7546 uint8_t *eld = connector->eld;
7547 uint32_t i;
7548
7549 i = I915_READ(reg_eldv);
7550 i &= bits_eldv;
7551
7552 if (!eld[0])
7553 return !i;
7554
7555 if (!i)
7556 return false;
7557
7558 i = I915_READ(reg_elda);
7559 i &= ~bits_elda;
7560 I915_WRITE(reg_elda, i);
7561
7562 for (i = 0; i < eld[2]; i++)
7563 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
7564 return false;
7565
7566 return true;
7567}
7568
e0dac65e 7569static void g4x_write_eld(struct drm_connector *connector,
34427052
JN
7570 struct drm_crtc *crtc,
7571 struct drm_display_mode *mode)
e0dac65e
WF
7572{
7573 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7574 uint8_t *eld = connector->eld;
7575 uint32_t eldv;
7576 uint32_t len;
7577 uint32_t i;
7578
7579 i = I915_READ(G4X_AUD_VID_DID);
7580
7581 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
7582 eldv = G4X_ELDV_DEVCL_DEVBLC;
7583 else
7584 eldv = G4X_ELDV_DEVCTG;
7585
3a9627f4
WF
7586 if (intel_eld_uptodate(connector,
7587 G4X_AUD_CNTL_ST, eldv,
7588 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
7589 G4X_HDMIW_HDMIEDID))
7590 return;
7591
e0dac65e
WF
7592 i = I915_READ(G4X_AUD_CNTL_ST);
7593 i &= ~(eldv | G4X_ELD_ADDR);
7594 len = (i >> 9) & 0x1f; /* ELD buffer size */
7595 I915_WRITE(G4X_AUD_CNTL_ST, i);
7596
7597 if (!eld[0])
7598 return;
7599
7600 len = min_t(uint8_t, eld[2], len);
7601 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7602 for (i = 0; i < len; i++)
7603 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
7604
7605 i = I915_READ(G4X_AUD_CNTL_ST);
7606 i |= eldv;
7607 I915_WRITE(G4X_AUD_CNTL_ST, i);
7608}
7609
83358c85 7610static void haswell_write_eld(struct drm_connector *connector,
34427052
JN
7611 struct drm_crtc *crtc,
7612 struct drm_display_mode *mode)
83358c85
WX
7613{
7614 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7615 uint8_t *eld = connector->eld;
83358c85
WX
7616 uint32_t eldv;
7617 uint32_t i;
7618 int len;
7619 int pipe = to_intel_crtc(crtc)->pipe;
7620 int tmp;
7621
7622 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
7623 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
7624 int aud_config = HSW_AUD_CFG(pipe);
7625 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
7626
83358c85
WX
7627 /* Audio output enable */
7628 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
7629 tmp = I915_READ(aud_cntrl_st2);
7630 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
7631 I915_WRITE(aud_cntrl_st2, tmp);
c7905792 7632 POSTING_READ(aud_cntrl_st2);
83358c85 7633
c7905792 7634 assert_pipe_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
83358c85
WX
7635
7636 /* Set ELD valid state */
7637 tmp = I915_READ(aud_cntrl_st2);
7e7cb34f 7638 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
83358c85
WX
7639 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
7640 I915_WRITE(aud_cntrl_st2, tmp);
7641 tmp = I915_READ(aud_cntrl_st2);
7e7cb34f 7642 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
83358c85
WX
7643
7644 /* Enable HDMI mode */
7645 tmp = I915_READ(aud_config);
7e7cb34f 7646 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
83358c85
WX
7647 /* clear N_programing_enable and N_value_index */
7648 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
7649 I915_WRITE(aud_config, tmp);
7650
7651 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
7652
7653 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7654
7655 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7656 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7657 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
7658 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
1a91510d
JN
7659 } else {
7660 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7661 }
83358c85
WX
7662
7663 if (intel_eld_uptodate(connector,
7664 aud_cntrl_st2, eldv,
7665 aud_cntl_st, IBX_ELD_ADDRESS,
7666 hdmiw_hdmiedid))
7667 return;
7668
7669 i = I915_READ(aud_cntrl_st2);
7670 i &= ~eldv;
7671 I915_WRITE(aud_cntrl_st2, i);
7672
7673 if (!eld[0])
7674 return;
7675
7676 i = I915_READ(aud_cntl_st);
7677 i &= ~IBX_ELD_ADDRESS;
7678 I915_WRITE(aud_cntl_st, i);
7679 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
7680 DRM_DEBUG_DRIVER("port num:%d\n", i);
7681
7682 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7683 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7684 for (i = 0; i < len; i++)
7685 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7686
7687 i = I915_READ(aud_cntrl_st2);
7688 i |= eldv;
7689 I915_WRITE(aud_cntrl_st2, i);
7690
7691}
7692
e0dac65e 7693static void ironlake_write_eld(struct drm_connector *connector,
34427052
JN
7694 struct drm_crtc *crtc,
7695 struct drm_display_mode *mode)
e0dac65e
WF
7696{
7697 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7698 uint8_t *eld = connector->eld;
7699 uint32_t eldv;
7700 uint32_t i;
7701 int len;
7702 int hdmiw_hdmiedid;
b6daa025 7703 int aud_config;
e0dac65e
WF
7704 int aud_cntl_st;
7705 int aud_cntrl_st2;
9b138a83 7706 int pipe = to_intel_crtc(crtc)->pipe;
e0dac65e 7707
b3f33cbf 7708 if (HAS_PCH_IBX(connector->dev)) {
9b138a83
WX
7709 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
7710 aud_config = IBX_AUD_CFG(pipe);
7711 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
1202b4c6 7712 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
9ca2fe73
ML
7713 } else if (IS_VALLEYVIEW(connector->dev)) {
7714 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
7715 aud_config = VLV_AUD_CFG(pipe);
7716 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
7717 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
e0dac65e 7718 } else {
9b138a83
WX
7719 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
7720 aud_config = CPT_AUD_CFG(pipe);
7721 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
1202b4c6 7722 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
e0dac65e
WF
7723 }
7724
9b138a83 7725 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
e0dac65e 7726
9ca2fe73
ML
7727 if (IS_VALLEYVIEW(connector->dev)) {
7728 struct intel_encoder *intel_encoder;
7729 struct intel_digital_port *intel_dig_port;
7730
7731 intel_encoder = intel_attached_encoder(connector);
7732 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
7733 i = intel_dig_port->port;
7734 } else {
7735 i = I915_READ(aud_cntl_st);
7736 i = (i >> 29) & DIP_PORT_SEL_MASK;
7737 /* DIP_Port_Select, 0x1 = PortB */
7738 }
7739
e0dac65e
WF
7740 if (!i) {
7741 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
7742 /* operate blindly on all ports */
1202b4c6
WF
7743 eldv = IBX_ELD_VALIDB;
7744 eldv |= IBX_ELD_VALIDB << 4;
7745 eldv |= IBX_ELD_VALIDB << 8;
e0dac65e 7746 } else {
2582a850 7747 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
1202b4c6 7748 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
e0dac65e
WF
7749 }
7750
3a9627f4
WF
7751 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7752 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7753 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
b6daa025 7754 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
1a91510d
JN
7755 } else {
7756 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7757 }
e0dac65e 7758
3a9627f4
WF
7759 if (intel_eld_uptodate(connector,
7760 aud_cntrl_st2, eldv,
7761 aud_cntl_st, IBX_ELD_ADDRESS,
7762 hdmiw_hdmiedid))
7763 return;
7764
e0dac65e
WF
7765 i = I915_READ(aud_cntrl_st2);
7766 i &= ~eldv;
7767 I915_WRITE(aud_cntrl_st2, i);
7768
7769 if (!eld[0])
7770 return;
7771
e0dac65e 7772 i = I915_READ(aud_cntl_st);
1202b4c6 7773 i &= ~IBX_ELD_ADDRESS;
e0dac65e
WF
7774 I915_WRITE(aud_cntl_st, i);
7775
7776 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7777 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7778 for (i = 0; i < len; i++)
7779 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7780
7781 i = I915_READ(aud_cntrl_st2);
7782 i |= eldv;
7783 I915_WRITE(aud_cntrl_st2, i);
7784}
7785
7786void intel_write_eld(struct drm_encoder *encoder,
7787 struct drm_display_mode *mode)
7788{
7789 struct drm_crtc *crtc = encoder->crtc;
7790 struct drm_connector *connector;
7791 struct drm_device *dev = encoder->dev;
7792 struct drm_i915_private *dev_priv = dev->dev_private;
7793
7794 connector = drm_select_eld(encoder, mode);
7795 if (!connector)
7796 return;
7797
7798 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7799 connector->base.id,
7800 drm_get_connector_name(connector),
7801 connector->encoder->base.id,
7802 drm_get_encoder_name(connector->encoder));
7803
7804 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
7805
7806 if (dev_priv->display.write_eld)
34427052 7807 dev_priv->display.write_eld(connector, crtc, mode);
e0dac65e
WF
7808}
7809
560b85bb
CW
7810static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
7811{
7812 struct drm_device *dev = crtc->dev;
7813 struct drm_i915_private *dev_priv = dev->dev_private;
7814 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7815 bool visible = base != 0;
7816 u32 cntl;
7817
7818 if (intel_crtc->cursor_visible == visible)
7819 return;
7820
9db4a9c7 7821 cntl = I915_READ(_CURACNTR);
560b85bb
CW
7822 if (visible) {
7823 /* On these chipsets we can only modify the base whilst
7824 * the cursor is disabled.
7825 */
9db4a9c7 7826 I915_WRITE(_CURABASE, base);
560b85bb
CW
7827
7828 cntl &= ~(CURSOR_FORMAT_MASK);
7829 /* XXX width must be 64, stride 256 => 0x00 << 28 */
7830 cntl |= CURSOR_ENABLE |
7831 CURSOR_GAMMA_ENABLE |
7832 CURSOR_FORMAT_ARGB;
7833 } else
7834 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
9db4a9c7 7835 I915_WRITE(_CURACNTR, cntl);
560b85bb
CW
7836
7837 intel_crtc->cursor_visible = visible;
7838}
7839
7840static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
7841{
7842 struct drm_device *dev = crtc->dev;
7843 struct drm_i915_private *dev_priv = dev->dev_private;
7844 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7845 int pipe = intel_crtc->pipe;
7846 bool visible = base != 0;
7847
7848 if (intel_crtc->cursor_visible != visible) {
4726e0b0 7849 int16_t width = intel_crtc->cursor_width;
548f245b 7850 uint32_t cntl = I915_READ(CURCNTR(pipe));
560b85bb
CW
7851 if (base) {
7852 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4726e0b0
SK
7853 cntl |= MCURSOR_GAMMA_ENABLE;
7854
7855 switch (width) {
7856 case 64:
7857 cntl |= CURSOR_MODE_64_ARGB_AX;
7858 break;
7859 case 128:
7860 cntl |= CURSOR_MODE_128_ARGB_AX;
7861 break;
7862 case 256:
7863 cntl |= CURSOR_MODE_256_ARGB_AX;
7864 break;
7865 default:
7866 WARN_ON(1);
7867 return;
7868 }
560b85bb
CW
7869 cntl |= pipe << 28; /* Connect to correct pipe */
7870 } else {
7871 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7872 cntl |= CURSOR_MODE_DISABLE;
7873 }
9db4a9c7 7874 I915_WRITE(CURCNTR(pipe), cntl);
560b85bb
CW
7875
7876 intel_crtc->cursor_visible = visible;
7877 }
7878 /* and commit changes on next vblank */
b2ea8ef5 7879 POSTING_READ(CURCNTR(pipe));
9db4a9c7 7880 I915_WRITE(CURBASE(pipe), base);
b2ea8ef5 7881 POSTING_READ(CURBASE(pipe));
560b85bb
CW
7882}
7883
65a21cd6
JB
7884static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
7885{
7886 struct drm_device *dev = crtc->dev;
7887 struct drm_i915_private *dev_priv = dev->dev_private;
7888 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7889 int pipe = intel_crtc->pipe;
7890 bool visible = base != 0;
7891
7892 if (intel_crtc->cursor_visible != visible) {
4726e0b0 7893 int16_t width = intel_crtc->cursor_width;
65a21cd6
JB
7894 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
7895 if (base) {
7896 cntl &= ~CURSOR_MODE;
4726e0b0
SK
7897 cntl |= MCURSOR_GAMMA_ENABLE;
7898 switch (width) {
7899 case 64:
7900 cntl |= CURSOR_MODE_64_ARGB_AX;
7901 break;
7902 case 128:
7903 cntl |= CURSOR_MODE_128_ARGB_AX;
7904 break;
7905 case 256:
7906 cntl |= CURSOR_MODE_256_ARGB_AX;
7907 break;
7908 default:
7909 WARN_ON(1);
7910 return;
7911 }
65a21cd6
JB
7912 } else {
7913 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7914 cntl |= CURSOR_MODE_DISABLE;
7915 }
6bbfa1c5 7916 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
86d3efce 7917 cntl |= CURSOR_PIPE_CSC_ENABLE;
1f5d76db
PZ
7918 cntl &= ~CURSOR_TRICKLE_FEED_DISABLE;
7919 }
65a21cd6
JB
7920 I915_WRITE(CURCNTR_IVB(pipe), cntl);
7921
7922 intel_crtc->cursor_visible = visible;
7923 }
7924 /* and commit changes on next vblank */
b2ea8ef5 7925 POSTING_READ(CURCNTR_IVB(pipe));
65a21cd6 7926 I915_WRITE(CURBASE_IVB(pipe), base);
b2ea8ef5 7927 POSTING_READ(CURBASE_IVB(pipe));
65a21cd6
JB
7928}
7929
cda4b7d3 7930/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f
CW
7931static void intel_crtc_update_cursor(struct drm_crtc *crtc,
7932 bool on)
cda4b7d3
CW
7933{
7934 struct drm_device *dev = crtc->dev;
7935 struct drm_i915_private *dev_priv = dev->dev_private;
7936 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7937 int pipe = intel_crtc->pipe;
7938 int x = intel_crtc->cursor_x;
7939 int y = intel_crtc->cursor_y;
d6e4db15 7940 u32 base = 0, pos = 0;
cda4b7d3
CW
7941 bool visible;
7942
d6e4db15 7943 if (on)
cda4b7d3 7944 base = intel_crtc->cursor_addr;
cda4b7d3 7945
d6e4db15
VS
7946 if (x >= intel_crtc->config.pipe_src_w)
7947 base = 0;
7948
7949 if (y >= intel_crtc->config.pipe_src_h)
cda4b7d3
CW
7950 base = 0;
7951
7952 if (x < 0) {
efc9064e 7953 if (x + intel_crtc->cursor_width <= 0)
cda4b7d3
CW
7954 base = 0;
7955
7956 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
7957 x = -x;
7958 }
7959 pos |= x << CURSOR_X_SHIFT;
7960
7961 if (y < 0) {
efc9064e 7962 if (y + intel_crtc->cursor_height <= 0)
cda4b7d3
CW
7963 base = 0;
7964
7965 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
7966 y = -y;
7967 }
7968 pos |= y << CURSOR_Y_SHIFT;
7969
7970 visible = base != 0;
560b85bb 7971 if (!visible && !intel_crtc->cursor_visible)
cda4b7d3
CW
7972 return;
7973
b3dc685e 7974 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev) || IS_BROADWELL(dev)) {
65a21cd6
JB
7975 I915_WRITE(CURPOS_IVB(pipe), pos);
7976 ivb_update_cursor(crtc, base);
7977 } else {
7978 I915_WRITE(CURPOS(pipe), pos);
7979 if (IS_845G(dev) || IS_I865G(dev))
7980 i845_update_cursor(crtc, base);
7981 else
7982 i9xx_update_cursor(crtc, base);
7983 }
cda4b7d3
CW
7984}
7985
79e53945 7986static int intel_crtc_cursor_set(struct drm_crtc *crtc,
05394f39 7987 struct drm_file *file,
79e53945
JB
7988 uint32_t handle,
7989 uint32_t width, uint32_t height)
7990{
7991 struct drm_device *dev = crtc->dev;
7992 struct drm_i915_private *dev_priv = dev->dev_private;
7993 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
05394f39 7994 struct drm_i915_gem_object *obj;
64f962e3 7995 unsigned old_width;
cda4b7d3 7996 uint32_t addr;
3f8bc370 7997 int ret;
79e53945 7998
79e53945
JB
7999 /* if we want to turn off the cursor ignore width and height */
8000 if (!handle) {
28c97730 8001 DRM_DEBUG_KMS("cursor off\n");
3f8bc370 8002 addr = 0;
05394f39 8003 obj = NULL;
5004417d 8004 mutex_lock(&dev->struct_mutex);
3f8bc370 8005 goto finish;
79e53945
JB
8006 }
8007
4726e0b0
SK
8008 /* Check for which cursor types we support */
8009 if (!((width == 64 && height == 64) ||
8010 (width == 128 && height == 128 && !IS_GEN2(dev)) ||
8011 (width == 256 && height == 256 && !IS_GEN2(dev)))) {
8012 DRM_DEBUG("Cursor dimension not supported\n");
79e53945
JB
8013 return -EINVAL;
8014 }
8015
05394f39 8016 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
c8725226 8017 if (&obj->base == NULL)
79e53945
JB
8018 return -ENOENT;
8019
05394f39 8020 if (obj->base.size < width * height * 4) {
3b25b31f 8021 DRM_DEBUG_KMS("buffer is to small\n");
34b8686e
DA
8022 ret = -ENOMEM;
8023 goto fail;
79e53945
JB
8024 }
8025
71acb5eb 8026 /* we only need to pin inside GTT if cursor is non-phy */
7f9872e0 8027 mutex_lock(&dev->struct_mutex);
3d13ef2e 8028 if (!INTEL_INFO(dev)->cursor_needs_physical) {
693db184
CW
8029 unsigned alignment;
8030
d9e86c0e 8031 if (obj->tiling_mode) {
3b25b31f 8032 DRM_DEBUG_KMS("cursor cannot be tiled\n");
d9e86c0e
CW
8033 ret = -EINVAL;
8034 goto fail_locked;
8035 }
8036
693db184
CW
8037 /* Note that the w/a also requires 2 PTE of padding following
8038 * the bo. We currently fill all unused PTE with the shadow
8039 * page and so we should always have valid PTE following the
8040 * cursor preventing the VT-d warning.
8041 */
8042 alignment = 0;
8043 if (need_vtd_wa(dev))
8044 alignment = 64*1024;
8045
8046 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
e7b526bb 8047 if (ret) {
3b25b31f 8048 DRM_DEBUG_KMS("failed to move cursor bo into the GTT\n");
2da3b9b9 8049 goto fail_locked;
e7b526bb
CW
8050 }
8051
d9e86c0e
CW
8052 ret = i915_gem_object_put_fence(obj);
8053 if (ret) {
3b25b31f 8054 DRM_DEBUG_KMS("failed to release fence for cursor");
d9e86c0e
CW
8055 goto fail_unpin;
8056 }
8057
f343c5f6 8058 addr = i915_gem_obj_ggtt_offset(obj);
71acb5eb 8059 } else {
6eeefaf3 8060 int align = IS_I830(dev) ? 16 * 1024 : 256;
05394f39 8061 ret = i915_gem_attach_phys_object(dev, obj,
6eeefaf3
CW
8062 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
8063 align);
71acb5eb 8064 if (ret) {
3b25b31f 8065 DRM_DEBUG_KMS("failed to attach phys object\n");
7f9872e0 8066 goto fail_locked;
71acb5eb 8067 }
05394f39 8068 addr = obj->phys_obj->handle->busaddr;
3f8bc370
KH
8069 }
8070
a6c45cf0 8071 if (IS_GEN2(dev))
14b60391
JB
8072 I915_WRITE(CURSIZE, (height << 12) | width);
8073
3f8bc370 8074 finish:
3f8bc370 8075 if (intel_crtc->cursor_bo) {
3d13ef2e 8076 if (INTEL_INFO(dev)->cursor_needs_physical) {
05394f39 8077 if (intel_crtc->cursor_bo != obj)
71acb5eb
DA
8078 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
8079 } else
cc98b413 8080 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
05394f39 8081 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
3f8bc370 8082 }
80824003 8083
7f9872e0 8084 mutex_unlock(&dev->struct_mutex);
3f8bc370 8085
64f962e3
CW
8086 old_width = intel_crtc->cursor_width;
8087
3f8bc370 8088 intel_crtc->cursor_addr = addr;
05394f39 8089 intel_crtc->cursor_bo = obj;
cda4b7d3
CW
8090 intel_crtc->cursor_width = width;
8091 intel_crtc->cursor_height = height;
8092
64f962e3
CW
8093 if (intel_crtc->active) {
8094 if (old_width != width)
8095 intel_update_watermarks(crtc);
f2f5f771 8096 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
64f962e3 8097 }
3f8bc370 8098
79e53945 8099 return 0;
e7b526bb 8100fail_unpin:
cc98b413 8101 i915_gem_object_unpin_from_display_plane(obj);
7f9872e0 8102fail_locked:
34b8686e 8103 mutex_unlock(&dev->struct_mutex);
bc9025bd 8104fail:
05394f39 8105 drm_gem_object_unreference_unlocked(&obj->base);
34b8686e 8106 return ret;
79e53945
JB
8107}
8108
8109static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
8110{
79e53945 8111 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8112
92e76c8c
VS
8113 intel_crtc->cursor_x = clamp_t(int, x, SHRT_MIN, SHRT_MAX);
8114 intel_crtc->cursor_y = clamp_t(int, y, SHRT_MIN, SHRT_MAX);
652c393a 8115
f2f5f771
VS
8116 if (intel_crtc->active)
8117 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
79e53945
JB
8118
8119 return 0;
b8c00ac5
DA
8120}
8121
79e53945 8122static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
7203425a 8123 u16 *blue, uint32_t start, uint32_t size)
79e53945 8124{
7203425a 8125 int end = (start + size > 256) ? 256 : start + size, i;
79e53945 8126 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8127
7203425a 8128 for (i = start; i < end; i++) {
79e53945
JB
8129 intel_crtc->lut_r[i] = red[i] >> 8;
8130 intel_crtc->lut_g[i] = green[i] >> 8;
8131 intel_crtc->lut_b[i] = blue[i] >> 8;
8132 }
8133
8134 intel_crtc_load_lut(crtc);
8135}
8136
79e53945
JB
8137/* VESA 640x480x72Hz mode to set on the pipe */
8138static struct drm_display_mode load_detect_mode = {
8139 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8140 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8141};
8142
a8bb6818
DV
8143struct drm_framebuffer *
8144__intel_framebuffer_create(struct drm_device *dev,
8145 struct drm_mode_fb_cmd2 *mode_cmd,
8146 struct drm_i915_gem_object *obj)
d2dff872
CW
8147{
8148 struct intel_framebuffer *intel_fb;
8149 int ret;
8150
8151 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8152 if (!intel_fb) {
8153 drm_gem_object_unreference_unlocked(&obj->base);
8154 return ERR_PTR(-ENOMEM);
8155 }
8156
8157 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
dd4916c5
DV
8158 if (ret)
8159 goto err;
d2dff872
CW
8160
8161 return &intel_fb->base;
dd4916c5
DV
8162err:
8163 drm_gem_object_unreference_unlocked(&obj->base);
8164 kfree(intel_fb);
8165
8166 return ERR_PTR(ret);
d2dff872
CW
8167}
8168
b5ea642a 8169static struct drm_framebuffer *
a8bb6818
DV
8170intel_framebuffer_create(struct drm_device *dev,
8171 struct drm_mode_fb_cmd2 *mode_cmd,
8172 struct drm_i915_gem_object *obj)
8173{
8174 struct drm_framebuffer *fb;
8175 int ret;
8176
8177 ret = i915_mutex_lock_interruptible(dev);
8178 if (ret)
8179 return ERR_PTR(ret);
8180 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8181 mutex_unlock(&dev->struct_mutex);
8182
8183 return fb;
8184}
8185
d2dff872
CW
8186static u32
8187intel_framebuffer_pitch_for_width(int width, int bpp)
8188{
8189 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8190 return ALIGN(pitch, 64);
8191}
8192
8193static u32
8194intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8195{
8196 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
8197 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
8198}
8199
8200static struct drm_framebuffer *
8201intel_framebuffer_create_for_mode(struct drm_device *dev,
8202 struct drm_display_mode *mode,
8203 int depth, int bpp)
8204{
8205 struct drm_i915_gem_object *obj;
0fed39bd 8206 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872
CW
8207
8208 obj = i915_gem_alloc_object(dev,
8209 intel_framebuffer_size_for_mode(mode, bpp));
8210 if (obj == NULL)
8211 return ERR_PTR(-ENOMEM);
8212
8213 mode_cmd.width = mode->hdisplay;
8214 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
8215 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8216 bpp);
5ca0c34a 8217 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872
CW
8218
8219 return intel_framebuffer_create(dev, &mode_cmd, obj);
8220}
8221
8222static struct drm_framebuffer *
8223mode_fits_in_fbdev(struct drm_device *dev,
8224 struct drm_display_mode *mode)
8225{
4520f53a 8226#ifdef CONFIG_DRM_I915_FBDEV
d2dff872
CW
8227 struct drm_i915_private *dev_priv = dev->dev_private;
8228 struct drm_i915_gem_object *obj;
8229 struct drm_framebuffer *fb;
8230
4c0e5528 8231 if (!dev_priv->fbdev)
d2dff872
CW
8232 return NULL;
8233
4c0e5528 8234 if (!dev_priv->fbdev->fb)
d2dff872
CW
8235 return NULL;
8236
4c0e5528
DV
8237 obj = dev_priv->fbdev->fb->obj;
8238 BUG_ON(!obj);
8239
8bcd4553 8240 fb = &dev_priv->fbdev->fb->base;
01f2c773
VS
8241 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8242 fb->bits_per_pixel))
d2dff872
CW
8243 return NULL;
8244
01f2c773 8245 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
8246 return NULL;
8247
8248 return fb;
4520f53a
DV
8249#else
8250 return NULL;
8251#endif
d2dff872
CW
8252}
8253
d2434ab7 8254bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 8255 struct drm_display_mode *mode,
8261b191 8256 struct intel_load_detect_pipe *old)
79e53945
JB
8257{
8258 struct intel_crtc *intel_crtc;
d2434ab7
DV
8259 struct intel_encoder *intel_encoder =
8260 intel_attached_encoder(connector);
79e53945 8261 struct drm_crtc *possible_crtc;
4ef69c7a 8262 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
8263 struct drm_crtc *crtc = NULL;
8264 struct drm_device *dev = encoder->dev;
94352cf9 8265 struct drm_framebuffer *fb;
79e53945
JB
8266 int i = -1;
8267
d2dff872
CW
8268 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8269 connector->base.id, drm_get_connector_name(connector),
8270 encoder->base.id, drm_get_encoder_name(encoder));
8271
79e53945
JB
8272 /*
8273 * Algorithm gets a little messy:
7a5e4805 8274 *
79e53945
JB
8275 * - if the connector already has an assigned crtc, use it (but make
8276 * sure it's on first)
7a5e4805 8277 *
79e53945
JB
8278 * - try to find the first unused crtc that can drive this connector,
8279 * and use that if we find one
79e53945
JB
8280 */
8281
8282 /* See if we already have a CRTC for this connector */
8283 if (encoder->crtc) {
8284 crtc = encoder->crtc;
8261b191 8285
7b24056b
DV
8286 mutex_lock(&crtc->mutex);
8287
24218aac 8288 old->dpms_mode = connector->dpms;
8261b191
CW
8289 old->load_detect_temp = false;
8290
8291 /* Make sure the crtc and connector are running */
24218aac
DV
8292 if (connector->dpms != DRM_MODE_DPMS_ON)
8293 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
8261b191 8294
7173188d 8295 return true;
79e53945
JB
8296 }
8297
8298 /* Find an unused one (if possible) */
70e1e0ec 8299 for_each_crtc(dev, possible_crtc) {
79e53945
JB
8300 i++;
8301 if (!(encoder->possible_crtcs & (1 << i)))
8302 continue;
8303 if (!possible_crtc->enabled) {
8304 crtc = possible_crtc;
8305 break;
8306 }
79e53945
JB
8307 }
8308
8309 /*
8310 * If we didn't find an unused CRTC, don't use any.
8311 */
8312 if (!crtc) {
7173188d
CW
8313 DRM_DEBUG_KMS("no pipe available for load-detect\n");
8314 return false;
79e53945
JB
8315 }
8316
7b24056b 8317 mutex_lock(&crtc->mutex);
fc303101
DV
8318 intel_encoder->new_crtc = to_intel_crtc(crtc);
8319 to_intel_connector(connector)->new_encoder = intel_encoder;
79e53945
JB
8320
8321 intel_crtc = to_intel_crtc(crtc);
412b61d8
VS
8322 intel_crtc->new_enabled = true;
8323 intel_crtc->new_config = &intel_crtc->config;
24218aac 8324 old->dpms_mode = connector->dpms;
8261b191 8325 old->load_detect_temp = true;
d2dff872 8326 old->release_fb = NULL;
79e53945 8327
6492711d
CW
8328 if (!mode)
8329 mode = &load_detect_mode;
79e53945 8330
d2dff872
CW
8331 /* We need a framebuffer large enough to accommodate all accesses
8332 * that the plane may generate whilst we perform load detection.
8333 * We can not rely on the fbcon either being present (we get called
8334 * during its initialisation to detect all boot displays, or it may
8335 * not even exist) or that it is large enough to satisfy the
8336 * requested mode.
8337 */
94352cf9
DV
8338 fb = mode_fits_in_fbdev(dev, mode);
8339 if (fb == NULL) {
d2dff872 8340 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9
DV
8341 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8342 old->release_fb = fb;
d2dff872
CW
8343 } else
8344 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 8345 if (IS_ERR(fb)) {
d2dff872 8346 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
412b61d8 8347 goto fail;
79e53945 8348 }
79e53945 8349
c0c36b94 8350 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
6492711d 8351 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
d2dff872
CW
8352 if (old->release_fb)
8353 old->release_fb->funcs->destroy(old->release_fb);
412b61d8 8354 goto fail;
79e53945 8355 }
7173188d 8356
79e53945 8357 /* let the connector get through one full cycle before testing */
9d0498a2 8358 intel_wait_for_vblank(dev, intel_crtc->pipe);
7173188d 8359 return true;
412b61d8
VS
8360
8361 fail:
8362 intel_crtc->new_enabled = crtc->enabled;
8363 if (intel_crtc->new_enabled)
8364 intel_crtc->new_config = &intel_crtc->config;
8365 else
8366 intel_crtc->new_config = NULL;
8367 mutex_unlock(&crtc->mutex);
8368 return false;
79e53945
JB
8369}
8370
d2434ab7 8371void intel_release_load_detect_pipe(struct drm_connector *connector,
8261b191 8372 struct intel_load_detect_pipe *old)
79e53945 8373{
d2434ab7
DV
8374 struct intel_encoder *intel_encoder =
8375 intel_attached_encoder(connector);
4ef69c7a 8376 struct drm_encoder *encoder = &intel_encoder->base;
7b24056b 8377 struct drm_crtc *crtc = encoder->crtc;
412b61d8 8378 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8379
d2dff872
CW
8380 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8381 connector->base.id, drm_get_connector_name(connector),
8382 encoder->base.id, drm_get_encoder_name(encoder));
8383
8261b191 8384 if (old->load_detect_temp) {
fc303101
DV
8385 to_intel_connector(connector)->new_encoder = NULL;
8386 intel_encoder->new_crtc = NULL;
412b61d8
VS
8387 intel_crtc->new_enabled = false;
8388 intel_crtc->new_config = NULL;
fc303101 8389 intel_set_mode(crtc, NULL, 0, 0, NULL);
d2dff872 8390
36206361
DV
8391 if (old->release_fb) {
8392 drm_framebuffer_unregister_private(old->release_fb);
8393 drm_framebuffer_unreference(old->release_fb);
8394 }
d2dff872 8395
67c96400 8396 mutex_unlock(&crtc->mutex);
0622a53c 8397 return;
79e53945
JB
8398 }
8399
c751ce4f 8400 /* Switch crtc and encoder back off if necessary */
24218aac
DV
8401 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8402 connector->funcs->dpms(connector, old->dpms_mode);
7b24056b
DV
8403
8404 mutex_unlock(&crtc->mutex);
79e53945
JB
8405}
8406
da4a1efa
VS
8407static int i9xx_pll_refclk(struct drm_device *dev,
8408 const struct intel_crtc_config *pipe_config)
8409{
8410 struct drm_i915_private *dev_priv = dev->dev_private;
8411 u32 dpll = pipe_config->dpll_hw_state.dpll;
8412
8413 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
e91e941b 8414 return dev_priv->vbt.lvds_ssc_freq;
da4a1efa
VS
8415 else if (HAS_PCH_SPLIT(dev))
8416 return 120000;
8417 else if (!IS_GEN2(dev))
8418 return 96000;
8419 else
8420 return 48000;
8421}
8422
79e53945 8423/* Returns the clock of the currently programmed mode of the given pipe. */
f1f644dc
JB
8424static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
8425 struct intel_crtc_config *pipe_config)
79e53945 8426{
f1f644dc 8427 struct drm_device *dev = crtc->base.dev;
79e53945 8428 struct drm_i915_private *dev_priv = dev->dev_private;
f1f644dc 8429 int pipe = pipe_config->cpu_transcoder;
293623f7 8430 u32 dpll = pipe_config->dpll_hw_state.dpll;
79e53945
JB
8431 u32 fp;
8432 intel_clock_t clock;
da4a1efa 8433 int refclk = i9xx_pll_refclk(dev, pipe_config);
79e53945
JB
8434
8435 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
293623f7 8436 fp = pipe_config->dpll_hw_state.fp0;
79e53945 8437 else
293623f7 8438 fp = pipe_config->dpll_hw_state.fp1;
79e53945
JB
8439
8440 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
8441 if (IS_PINEVIEW(dev)) {
8442 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8443 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
8444 } else {
8445 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8446 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8447 }
8448
a6c45cf0 8449 if (!IS_GEN2(dev)) {
f2b115e6
AJ
8450 if (IS_PINEVIEW(dev))
8451 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8452 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
8453 else
8454 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
8455 DPLL_FPA01_P1_POST_DIV_SHIFT);
8456
8457 switch (dpll & DPLL_MODE_MASK) {
8458 case DPLLB_MODE_DAC_SERIAL:
8459 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8460 5 : 10;
8461 break;
8462 case DPLLB_MODE_LVDS:
8463 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8464 7 : 14;
8465 break;
8466 default:
28c97730 8467 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945 8468 "mode\n", (int)(dpll & DPLL_MODE_MASK));
f1f644dc 8469 return;
79e53945
JB
8470 }
8471
ac58c3f0 8472 if (IS_PINEVIEW(dev))
da4a1efa 8473 pineview_clock(refclk, &clock);
ac58c3f0 8474 else
da4a1efa 8475 i9xx_clock(refclk, &clock);
79e53945 8476 } else {
0fb58223 8477 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
b1c560d1 8478 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
79e53945
JB
8479
8480 if (is_lvds) {
8481 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8482 DPLL_FPA01_P1_POST_DIV_SHIFT);
b1c560d1
VS
8483
8484 if (lvds & LVDS_CLKB_POWER_UP)
8485 clock.p2 = 7;
8486 else
8487 clock.p2 = 14;
79e53945
JB
8488 } else {
8489 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8490 clock.p1 = 2;
8491 else {
8492 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8493 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8494 }
8495 if (dpll & PLL_P2_DIVIDE_BY_4)
8496 clock.p2 = 4;
8497 else
8498 clock.p2 = 2;
79e53945 8499 }
da4a1efa
VS
8500
8501 i9xx_clock(refclk, &clock);
79e53945
JB
8502 }
8503
18442d08
VS
8504 /*
8505 * This value includes pixel_multiplier. We will use
241bfc38 8506 * port_clock to compute adjusted_mode.crtc_clock in the
18442d08
VS
8507 * encoder's get_config() function.
8508 */
8509 pipe_config->port_clock = clock.dot;
f1f644dc
JB
8510}
8511
6878da05
VS
8512int intel_dotclock_calculate(int link_freq,
8513 const struct intel_link_m_n *m_n)
f1f644dc 8514{
f1f644dc
JB
8515 /*
8516 * The calculation for the data clock is:
1041a02f 8517 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
f1f644dc 8518 * But we want to avoid losing precison if possible, so:
1041a02f 8519 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
f1f644dc
JB
8520 *
8521 * and the link clock is simpler:
1041a02f 8522 * link_clock = (m * link_clock) / n
f1f644dc
JB
8523 */
8524
6878da05
VS
8525 if (!m_n->link_n)
8526 return 0;
f1f644dc 8527
6878da05
VS
8528 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8529}
f1f644dc 8530
18442d08
VS
8531static void ironlake_pch_clock_get(struct intel_crtc *crtc,
8532 struct intel_crtc_config *pipe_config)
6878da05
VS
8533{
8534 struct drm_device *dev = crtc->base.dev;
79e53945 8535
18442d08
VS
8536 /* read out port_clock from the DPLL */
8537 i9xx_crtc_clock_get(crtc, pipe_config);
f1f644dc 8538
f1f644dc 8539 /*
18442d08 8540 * This value does not include pixel_multiplier.
241bfc38 8541 * We will check that port_clock and adjusted_mode.crtc_clock
18442d08
VS
8542 * agree once we know their relationship in the encoder's
8543 * get_config() function.
79e53945 8544 */
241bfc38 8545 pipe_config->adjusted_mode.crtc_clock =
18442d08
VS
8546 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8547 &pipe_config->fdi_m_n);
79e53945
JB
8548}
8549
8550/** Returns the currently programmed mode of the given pipe. */
8551struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8552 struct drm_crtc *crtc)
8553{
548f245b 8554 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 8555 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3b117c8f 8556 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
79e53945 8557 struct drm_display_mode *mode;
f1f644dc 8558 struct intel_crtc_config pipe_config;
fe2b8f9d
PZ
8559 int htot = I915_READ(HTOTAL(cpu_transcoder));
8560 int hsync = I915_READ(HSYNC(cpu_transcoder));
8561 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8562 int vsync = I915_READ(VSYNC(cpu_transcoder));
293623f7 8563 enum pipe pipe = intel_crtc->pipe;
79e53945
JB
8564
8565 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8566 if (!mode)
8567 return NULL;
8568
f1f644dc
JB
8569 /*
8570 * Construct a pipe_config sufficient for getting the clock info
8571 * back out of crtc_clock_get.
8572 *
8573 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8574 * to use a real value here instead.
8575 */
293623f7 8576 pipe_config.cpu_transcoder = (enum transcoder) pipe;
f1f644dc 8577 pipe_config.pixel_multiplier = 1;
293623f7
VS
8578 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8579 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8580 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
f1f644dc
JB
8581 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8582
773ae034 8583 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
79e53945
JB
8584 mode->hdisplay = (htot & 0xffff) + 1;
8585 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8586 mode->hsync_start = (hsync & 0xffff) + 1;
8587 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8588 mode->vdisplay = (vtot & 0xffff) + 1;
8589 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8590 mode->vsync_start = (vsync & 0xffff) + 1;
8591 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8592
8593 drm_mode_set_name(mode);
79e53945
JB
8594
8595 return mode;
8596}
8597
3dec0095 8598static void intel_increase_pllclock(struct drm_crtc *crtc)
652c393a
JB
8599{
8600 struct drm_device *dev = crtc->dev;
fbee40df 8601 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a
JB
8602 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8603 int pipe = intel_crtc->pipe;
dbdc6479
JB
8604 int dpll_reg = DPLL(pipe);
8605 int dpll;
652c393a 8606
bad720ff 8607 if (HAS_PCH_SPLIT(dev))
652c393a
JB
8608 return;
8609
8610 if (!dev_priv->lvds_downclock_avail)
8611 return;
8612
dbdc6479 8613 dpll = I915_READ(dpll_reg);
652c393a 8614 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
44d98a61 8615 DRM_DEBUG_DRIVER("upclocking LVDS\n");
652c393a 8616
8ac5a6d5 8617 assert_panel_unlocked(dev_priv, pipe);
652c393a
JB
8618
8619 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
8620 I915_WRITE(dpll_reg, dpll);
9d0498a2 8621 intel_wait_for_vblank(dev, pipe);
dbdc6479 8622
652c393a
JB
8623 dpll = I915_READ(dpll_reg);
8624 if (dpll & DISPLAY_RATE_SELECT_FPA1)
44d98a61 8625 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
652c393a 8626 }
652c393a
JB
8627}
8628
8629static void intel_decrease_pllclock(struct drm_crtc *crtc)
8630{
8631 struct drm_device *dev = crtc->dev;
fbee40df 8632 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 8633 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
652c393a 8634
bad720ff 8635 if (HAS_PCH_SPLIT(dev))
652c393a
JB
8636 return;
8637
8638 if (!dev_priv->lvds_downclock_avail)
8639 return;
8640
8641 /*
8642 * Since this is called by a timer, we should never get here in
8643 * the manual case.
8644 */
8645 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
dc257cf1
DV
8646 int pipe = intel_crtc->pipe;
8647 int dpll_reg = DPLL(pipe);
8648 int dpll;
f6e5b160 8649
44d98a61 8650 DRM_DEBUG_DRIVER("downclocking LVDS\n");
652c393a 8651
8ac5a6d5 8652 assert_panel_unlocked(dev_priv, pipe);
652c393a 8653
dc257cf1 8654 dpll = I915_READ(dpll_reg);
652c393a
JB
8655 dpll |= DISPLAY_RATE_SELECT_FPA1;
8656 I915_WRITE(dpll_reg, dpll);
9d0498a2 8657 intel_wait_for_vblank(dev, pipe);
652c393a
JB
8658 dpll = I915_READ(dpll_reg);
8659 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
44d98a61 8660 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
652c393a
JB
8661 }
8662
8663}
8664
f047e395
CW
8665void intel_mark_busy(struct drm_device *dev)
8666{
c67a470b
PZ
8667 struct drm_i915_private *dev_priv = dev->dev_private;
8668
f62a0076
CW
8669 if (dev_priv->mm.busy)
8670 return;
8671
43694d69 8672 intel_runtime_pm_get(dev_priv);
c67a470b 8673 i915_update_gfx_val(dev_priv);
f62a0076 8674 dev_priv->mm.busy = true;
f047e395
CW
8675}
8676
8677void intel_mark_idle(struct drm_device *dev)
652c393a 8678{
c67a470b 8679 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 8680 struct drm_crtc *crtc;
652c393a 8681
f62a0076
CW
8682 if (!dev_priv->mm.busy)
8683 return;
8684
8685 dev_priv->mm.busy = false;
8686
d330a953 8687 if (!i915.powersave)
bb4cdd53 8688 goto out;
652c393a 8689
70e1e0ec 8690 for_each_crtc(dev, crtc) {
f4510a27 8691 if (!crtc->primary->fb)
652c393a
JB
8692 continue;
8693
725a5b54 8694 intel_decrease_pllclock(crtc);
652c393a 8695 }
b29c19b6 8696
3d13ef2e 8697 if (INTEL_INFO(dev)->gen >= 6)
b29c19b6 8698 gen6_rps_idle(dev->dev_private);
bb4cdd53
PZ
8699
8700out:
43694d69 8701 intel_runtime_pm_put(dev_priv);
652c393a
JB
8702}
8703
c65355bb
CW
8704void intel_mark_fb_busy(struct drm_i915_gem_object *obj,
8705 struct intel_ring_buffer *ring)
652c393a 8706{
f047e395
CW
8707 struct drm_device *dev = obj->base.dev;
8708 struct drm_crtc *crtc;
652c393a 8709
d330a953 8710 if (!i915.powersave)
acb87dfb
CW
8711 return;
8712
70e1e0ec 8713 for_each_crtc(dev, crtc) {
f4510a27 8714 if (!crtc->primary->fb)
652c393a
JB
8715 continue;
8716
f4510a27 8717 if (to_intel_framebuffer(crtc->primary->fb)->obj != obj)
c65355bb
CW
8718 continue;
8719
8720 intel_increase_pllclock(crtc);
8721 if (ring && intel_fbc_enabled(dev))
8722 ring->fbc_dirty = true;
652c393a
JB
8723 }
8724}
8725
79e53945
JB
8726static void intel_crtc_destroy(struct drm_crtc *crtc)
8727{
8728 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a
DV
8729 struct drm_device *dev = crtc->dev;
8730 struct intel_unpin_work *work;
8731 unsigned long flags;
8732
8733 spin_lock_irqsave(&dev->event_lock, flags);
8734 work = intel_crtc->unpin_work;
8735 intel_crtc->unpin_work = NULL;
8736 spin_unlock_irqrestore(&dev->event_lock, flags);
8737
8738 if (work) {
8739 cancel_work_sync(&work->work);
8740 kfree(work);
8741 }
79e53945 8742
40ccc72b
MK
8743 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
8744
79e53945 8745 drm_crtc_cleanup(crtc);
67e77c5a 8746
79e53945
JB
8747 kfree(intel_crtc);
8748}
8749
6b95a207
KH
8750static void intel_unpin_work_fn(struct work_struct *__work)
8751{
8752 struct intel_unpin_work *work =
8753 container_of(__work, struct intel_unpin_work, work);
b4a98e57 8754 struct drm_device *dev = work->crtc->dev;
6b95a207 8755
b4a98e57 8756 mutex_lock(&dev->struct_mutex);
1690e1eb 8757 intel_unpin_fb_obj(work->old_fb_obj);
05394f39
CW
8758 drm_gem_object_unreference(&work->pending_flip_obj->base);
8759 drm_gem_object_unreference(&work->old_fb_obj->base);
d9e86c0e 8760
b4a98e57
CW
8761 intel_update_fbc(dev);
8762 mutex_unlock(&dev->struct_mutex);
8763
8764 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
8765 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
8766
6b95a207
KH
8767 kfree(work);
8768}
8769
1afe3e9d 8770static void do_intel_finish_page_flip(struct drm_device *dev,
49b14a5c 8771 struct drm_crtc *crtc)
6b95a207 8772{
fbee40df 8773 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
8774 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8775 struct intel_unpin_work *work;
6b95a207
KH
8776 unsigned long flags;
8777
8778 /* Ignore early vblank irqs */
8779 if (intel_crtc == NULL)
8780 return;
8781
8782 spin_lock_irqsave(&dev->event_lock, flags);
8783 work = intel_crtc->unpin_work;
e7d841ca
CW
8784
8785 /* Ensure we don't miss a work->pending update ... */
8786 smp_rmb();
8787
8788 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
6b95a207
KH
8789 spin_unlock_irqrestore(&dev->event_lock, flags);
8790 return;
8791 }
8792
e7d841ca
CW
8793 /* and that the unpin work is consistent wrt ->pending. */
8794 smp_rmb();
8795
6b95a207 8796 intel_crtc->unpin_work = NULL;
6b95a207 8797
45a066eb
RC
8798 if (work->event)
8799 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
6b95a207 8800
0af7e4df
MK
8801 drm_vblank_put(dev, intel_crtc->pipe);
8802
6b95a207
KH
8803 spin_unlock_irqrestore(&dev->event_lock, flags);
8804
2c10d571 8805 wake_up_all(&dev_priv->pending_flip_queue);
b4a98e57
CW
8806
8807 queue_work(dev_priv->wq, &work->work);
e5510fac
JB
8808
8809 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
6b95a207
KH
8810}
8811
1afe3e9d
JB
8812void intel_finish_page_flip(struct drm_device *dev, int pipe)
8813{
fbee40df 8814 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
8815 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
8816
49b14a5c 8817 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
8818}
8819
8820void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
8821{
fbee40df 8822 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
8823 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
8824
49b14a5c 8825 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
8826}
8827
6b95a207
KH
8828void intel_prepare_page_flip(struct drm_device *dev, int plane)
8829{
fbee40df 8830 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
8831 struct intel_crtc *intel_crtc =
8832 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
8833 unsigned long flags;
8834
e7d841ca
CW
8835 /* NB: An MMIO update of the plane base pointer will also
8836 * generate a page-flip completion irq, i.e. every modeset
8837 * is also accompanied by a spurious intel_prepare_page_flip().
8838 */
6b95a207 8839 spin_lock_irqsave(&dev->event_lock, flags);
e7d841ca
CW
8840 if (intel_crtc->unpin_work)
8841 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
6b95a207
KH
8842 spin_unlock_irqrestore(&dev->event_lock, flags);
8843}
8844
eba905b2 8845static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
e7d841ca
CW
8846{
8847 /* Ensure that the work item is consistent when activating it ... */
8848 smp_wmb();
8849 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
8850 /* and that it is marked active as soon as the irq could fire. */
8851 smp_wmb();
8852}
8853
8c9f3aaf
JB
8854static int intel_gen2_queue_flip(struct drm_device *dev,
8855 struct drm_crtc *crtc,
8856 struct drm_framebuffer *fb,
ed8d1975
KP
8857 struct drm_i915_gem_object *obj,
8858 uint32_t flags)
8c9f3aaf
JB
8859{
8860 struct drm_i915_private *dev_priv = dev->dev_private;
8861 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf 8862 u32 flip_mask;
6d90c952 8863 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
8c9f3aaf
JB
8864 int ret;
8865
6d90c952 8866 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
8c9f3aaf 8867 if (ret)
83d4092b 8868 goto err;
8c9f3aaf 8869
6d90c952 8870 ret = intel_ring_begin(ring, 6);
8c9f3aaf 8871 if (ret)
83d4092b 8872 goto err_unpin;
8c9f3aaf
JB
8873
8874 /* Can't queue multiple flips, so wait for the previous
8875 * one to finish before executing the next.
8876 */
8877 if (intel_crtc->plane)
8878 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8879 else
8880 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
8881 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8882 intel_ring_emit(ring, MI_NOOP);
8883 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8884 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8885 intel_ring_emit(ring, fb->pitches[0]);
f343c5f6 8886 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
6d90c952 8887 intel_ring_emit(ring, 0); /* aux display base address, unused */
e7d841ca
CW
8888
8889 intel_mark_page_flip_active(intel_crtc);
09246732 8890 __intel_ring_advance(ring);
83d4092b
CW
8891 return 0;
8892
8893err_unpin:
8894 intel_unpin_fb_obj(obj);
8895err:
8c9f3aaf
JB
8896 return ret;
8897}
8898
8899static int intel_gen3_queue_flip(struct drm_device *dev,
8900 struct drm_crtc *crtc,
8901 struct drm_framebuffer *fb,
ed8d1975
KP
8902 struct drm_i915_gem_object *obj,
8903 uint32_t flags)
8c9f3aaf
JB
8904{
8905 struct drm_i915_private *dev_priv = dev->dev_private;
8906 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf 8907 u32 flip_mask;
6d90c952 8908 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
8c9f3aaf
JB
8909 int ret;
8910
6d90c952 8911 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
8c9f3aaf 8912 if (ret)
83d4092b 8913 goto err;
8c9f3aaf 8914
6d90c952 8915 ret = intel_ring_begin(ring, 6);
8c9f3aaf 8916 if (ret)
83d4092b 8917 goto err_unpin;
8c9f3aaf
JB
8918
8919 if (intel_crtc->plane)
8920 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8921 else
8922 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
8923 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8924 intel_ring_emit(ring, MI_NOOP);
8925 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
8926 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8927 intel_ring_emit(ring, fb->pitches[0]);
f343c5f6 8928 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
6d90c952
DV
8929 intel_ring_emit(ring, MI_NOOP);
8930
e7d841ca 8931 intel_mark_page_flip_active(intel_crtc);
09246732 8932 __intel_ring_advance(ring);
83d4092b
CW
8933 return 0;
8934
8935err_unpin:
8936 intel_unpin_fb_obj(obj);
8937err:
8c9f3aaf
JB
8938 return ret;
8939}
8940
8941static int intel_gen4_queue_flip(struct drm_device *dev,
8942 struct drm_crtc *crtc,
8943 struct drm_framebuffer *fb,
ed8d1975
KP
8944 struct drm_i915_gem_object *obj,
8945 uint32_t flags)
8c9f3aaf
JB
8946{
8947 struct drm_i915_private *dev_priv = dev->dev_private;
8948 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8949 uint32_t pf, pipesrc;
6d90c952 8950 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
8c9f3aaf
JB
8951 int ret;
8952
6d90c952 8953 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
8c9f3aaf 8954 if (ret)
83d4092b 8955 goto err;
8c9f3aaf 8956
6d90c952 8957 ret = intel_ring_begin(ring, 4);
8c9f3aaf 8958 if (ret)
83d4092b 8959 goto err_unpin;
8c9f3aaf
JB
8960
8961 /* i965+ uses the linear or tiled offsets from the
8962 * Display Registers (which do not change across a page-flip)
8963 * so we need only reprogram the base address.
8964 */
6d90c952
DV
8965 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8966 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8967 intel_ring_emit(ring, fb->pitches[0]);
c2c75131 8968 intel_ring_emit(ring,
f343c5f6 8969 (i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset) |
c2c75131 8970 obj->tiling_mode);
8c9f3aaf
JB
8971
8972 /* XXX Enabling the panel-fitter across page-flip is so far
8973 * untested on non-native modes, so ignore it for now.
8974 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
8975 */
8976 pf = 0;
8977 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 8978 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
8979
8980 intel_mark_page_flip_active(intel_crtc);
09246732 8981 __intel_ring_advance(ring);
83d4092b
CW
8982 return 0;
8983
8984err_unpin:
8985 intel_unpin_fb_obj(obj);
8986err:
8c9f3aaf
JB
8987 return ret;
8988}
8989
8990static int intel_gen6_queue_flip(struct drm_device *dev,
8991 struct drm_crtc *crtc,
8992 struct drm_framebuffer *fb,
ed8d1975
KP
8993 struct drm_i915_gem_object *obj,
8994 uint32_t flags)
8c9f3aaf
JB
8995{
8996 struct drm_i915_private *dev_priv = dev->dev_private;
8997 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6d90c952 8998 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
8c9f3aaf
JB
8999 uint32_t pf, pipesrc;
9000 int ret;
9001
6d90c952 9002 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
8c9f3aaf 9003 if (ret)
83d4092b 9004 goto err;
8c9f3aaf 9005
6d90c952 9006 ret = intel_ring_begin(ring, 4);
8c9f3aaf 9007 if (ret)
83d4092b 9008 goto err_unpin;
8c9f3aaf 9009
6d90c952
DV
9010 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9011 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9012 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
f343c5f6 9013 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
8c9f3aaf 9014
dc257cf1
DV
9015 /* Contrary to the suggestions in the documentation,
9016 * "Enable Panel Fitter" does not seem to be required when page
9017 * flipping with a non-native mode, and worse causes a normal
9018 * modeset to fail.
9019 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9020 */
9021 pf = 0;
8c9f3aaf 9022 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 9023 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
9024
9025 intel_mark_page_flip_active(intel_crtc);
09246732 9026 __intel_ring_advance(ring);
83d4092b
CW
9027 return 0;
9028
9029err_unpin:
9030 intel_unpin_fb_obj(obj);
9031err:
8c9f3aaf
JB
9032 return ret;
9033}
9034
7c9017e5
JB
9035static int intel_gen7_queue_flip(struct drm_device *dev,
9036 struct drm_crtc *crtc,
9037 struct drm_framebuffer *fb,
ed8d1975
KP
9038 struct drm_i915_gem_object *obj,
9039 uint32_t flags)
7c9017e5
JB
9040{
9041 struct drm_i915_private *dev_priv = dev->dev_private;
9042 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ffe74d75 9043 struct intel_ring_buffer *ring;
cb05d8de 9044 uint32_t plane_bit = 0;
ffe74d75
CW
9045 int len, ret;
9046
9047 ring = obj->ring;
1c5fd085 9048 if (IS_VALLEYVIEW(dev) || ring == NULL || ring->id != RCS)
ffe74d75 9049 ring = &dev_priv->ring[BCS];
7c9017e5
JB
9050
9051 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
9052 if (ret)
83d4092b 9053 goto err;
7c9017e5 9054
eba905b2 9055 switch (intel_crtc->plane) {
cb05d8de
DV
9056 case PLANE_A:
9057 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9058 break;
9059 case PLANE_B:
9060 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9061 break;
9062 case PLANE_C:
9063 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9064 break;
9065 default:
9066 WARN_ONCE(1, "unknown plane in flip command\n");
9067 ret = -ENODEV;
ab3951eb 9068 goto err_unpin;
cb05d8de
DV
9069 }
9070
ffe74d75 9071 len = 4;
f476828a 9072 if (ring->id == RCS) {
ffe74d75 9073 len += 6;
f476828a
DL
9074 /*
9075 * On Gen 8, SRM is now taking an extra dword to accommodate
9076 * 48bits addresses, and we need a NOOP for the batch size to
9077 * stay even.
9078 */
9079 if (IS_GEN8(dev))
9080 len += 2;
9081 }
ffe74d75 9082
f66fab8e
VS
9083 /*
9084 * BSpec MI_DISPLAY_FLIP for IVB:
9085 * "The full packet must be contained within the same cache line."
9086 *
9087 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9088 * cacheline, if we ever start emitting more commands before
9089 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9090 * then do the cacheline alignment, and finally emit the
9091 * MI_DISPLAY_FLIP.
9092 */
9093 ret = intel_ring_cacheline_align(ring);
9094 if (ret)
9095 goto err_unpin;
9096
ffe74d75 9097 ret = intel_ring_begin(ring, len);
7c9017e5 9098 if (ret)
83d4092b 9099 goto err_unpin;
7c9017e5 9100
ffe74d75
CW
9101 /* Unmask the flip-done completion message. Note that the bspec says that
9102 * we should do this for both the BCS and RCS, and that we must not unmask
9103 * more than one flip event at any time (or ensure that one flip message
9104 * can be sent by waiting for flip-done prior to queueing new flips).
9105 * Experimentation says that BCS works despite DERRMR masking all
9106 * flip-done completion events and that unmasking all planes at once
9107 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9108 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9109 */
9110 if (ring->id == RCS) {
9111 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9112 intel_ring_emit(ring, DERRMR);
9113 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9114 DERRMR_PIPEB_PRI_FLIP_DONE |
9115 DERRMR_PIPEC_PRI_FLIP_DONE));
f476828a
DL
9116 if (IS_GEN8(dev))
9117 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9118 MI_SRM_LRM_GLOBAL_GTT);
9119 else
9120 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9121 MI_SRM_LRM_GLOBAL_GTT);
ffe74d75
CW
9122 intel_ring_emit(ring, DERRMR);
9123 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
f476828a
DL
9124 if (IS_GEN8(dev)) {
9125 intel_ring_emit(ring, 0);
9126 intel_ring_emit(ring, MI_NOOP);
9127 }
ffe74d75
CW
9128 }
9129
cb05d8de 9130 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
01f2c773 9131 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
f343c5f6 9132 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
7c9017e5 9133 intel_ring_emit(ring, (MI_NOOP));
e7d841ca
CW
9134
9135 intel_mark_page_flip_active(intel_crtc);
09246732 9136 __intel_ring_advance(ring);
83d4092b
CW
9137 return 0;
9138
9139err_unpin:
9140 intel_unpin_fb_obj(obj);
9141err:
7c9017e5
JB
9142 return ret;
9143}
9144
8c9f3aaf
JB
9145static int intel_default_queue_flip(struct drm_device *dev,
9146 struct drm_crtc *crtc,
9147 struct drm_framebuffer *fb,
ed8d1975
KP
9148 struct drm_i915_gem_object *obj,
9149 uint32_t flags)
8c9f3aaf
JB
9150{
9151 return -ENODEV;
9152}
9153
6b95a207
KH
9154static int intel_crtc_page_flip(struct drm_crtc *crtc,
9155 struct drm_framebuffer *fb,
ed8d1975
KP
9156 struct drm_pending_vblank_event *event,
9157 uint32_t page_flip_flags)
6b95a207
KH
9158{
9159 struct drm_device *dev = crtc->dev;
9160 struct drm_i915_private *dev_priv = dev->dev_private;
f4510a27 9161 struct drm_framebuffer *old_fb = crtc->primary->fb;
4a35f83b 9162 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
6b95a207
KH
9163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9164 struct intel_unpin_work *work;
8c9f3aaf 9165 unsigned long flags;
52e68630 9166 int ret;
6b95a207 9167
e6a595d2 9168 /* Can't change pixel format via MI display flips. */
f4510a27 9169 if (fb->pixel_format != crtc->primary->fb->pixel_format)
e6a595d2
VS
9170 return -EINVAL;
9171
9172 /*
9173 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9174 * Note that pitch changes could also affect these register.
9175 */
9176 if (INTEL_INFO(dev)->gen > 3 &&
f4510a27
MR
9177 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9178 fb->pitches[0] != crtc->primary->fb->pitches[0]))
e6a595d2
VS
9179 return -EINVAL;
9180
f900db47
CW
9181 if (i915_terminally_wedged(&dev_priv->gpu_error))
9182 goto out_hang;
9183
b14c5679 9184 work = kzalloc(sizeof(*work), GFP_KERNEL);
6b95a207
KH
9185 if (work == NULL)
9186 return -ENOMEM;
9187
6b95a207 9188 work->event = event;
b4a98e57 9189 work->crtc = crtc;
4a35f83b 9190 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
6b95a207
KH
9191 INIT_WORK(&work->work, intel_unpin_work_fn);
9192
7317c75e
JB
9193 ret = drm_vblank_get(dev, intel_crtc->pipe);
9194 if (ret)
9195 goto free_work;
9196
6b95a207
KH
9197 /* We borrow the event spin lock for protecting unpin_work */
9198 spin_lock_irqsave(&dev->event_lock, flags);
9199 if (intel_crtc->unpin_work) {
9200 spin_unlock_irqrestore(&dev->event_lock, flags);
9201 kfree(work);
7317c75e 9202 drm_vblank_put(dev, intel_crtc->pipe);
468f0b44
CW
9203
9204 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
6b95a207
KH
9205 return -EBUSY;
9206 }
9207 intel_crtc->unpin_work = work;
9208 spin_unlock_irqrestore(&dev->event_lock, flags);
9209
b4a98e57
CW
9210 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9211 flush_workqueue(dev_priv->wq);
9212
79158103
CW
9213 ret = i915_mutex_lock_interruptible(dev);
9214 if (ret)
9215 goto cleanup;
6b95a207 9216
75dfca80 9217 /* Reference the objects for the scheduled work. */
05394f39
CW
9218 drm_gem_object_reference(&work->old_fb_obj->base);
9219 drm_gem_object_reference(&obj->base);
6b95a207 9220
f4510a27 9221 crtc->primary->fb = fb;
96b099fd 9222
e1f99ce6 9223 work->pending_flip_obj = obj;
e1f99ce6 9224
4e5359cd
SF
9225 work->enable_stall_check = true;
9226
b4a98e57 9227 atomic_inc(&intel_crtc->unpin_work_count);
10d83730 9228 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
e1f99ce6 9229
ed8d1975 9230 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, page_flip_flags);
8c9f3aaf
JB
9231 if (ret)
9232 goto cleanup_pending;
6b95a207 9233
7782de3b 9234 intel_disable_fbc(dev);
c65355bb 9235 intel_mark_fb_busy(obj, NULL);
6b95a207
KH
9236 mutex_unlock(&dev->struct_mutex);
9237
e5510fac
JB
9238 trace_i915_flip_request(intel_crtc->plane, obj);
9239
6b95a207 9240 return 0;
96b099fd 9241
8c9f3aaf 9242cleanup_pending:
b4a98e57 9243 atomic_dec(&intel_crtc->unpin_work_count);
f4510a27 9244 crtc->primary->fb = old_fb;
05394f39
CW
9245 drm_gem_object_unreference(&work->old_fb_obj->base);
9246 drm_gem_object_unreference(&obj->base);
96b099fd
CW
9247 mutex_unlock(&dev->struct_mutex);
9248
79158103 9249cleanup:
96b099fd
CW
9250 spin_lock_irqsave(&dev->event_lock, flags);
9251 intel_crtc->unpin_work = NULL;
9252 spin_unlock_irqrestore(&dev->event_lock, flags);
9253
7317c75e
JB
9254 drm_vblank_put(dev, intel_crtc->pipe);
9255free_work:
96b099fd
CW
9256 kfree(work);
9257
f900db47
CW
9258 if (ret == -EIO) {
9259out_hang:
9260 intel_crtc_wait_for_pending_flips(crtc);
9261 ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
9262 if (ret == 0 && event)
9263 drm_send_vblank_event(dev, intel_crtc->pipe, event);
9264 }
96b099fd 9265 return ret;
6b95a207
KH
9266}
9267
f6e5b160 9268static struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160
CW
9269 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9270 .load_lut = intel_crtc_load_lut,
f6e5b160
CW
9271};
9272
9a935856
DV
9273/**
9274 * intel_modeset_update_staged_output_state
9275 *
9276 * Updates the staged output configuration state, e.g. after we've read out the
9277 * current hw state.
9278 */
9279static void intel_modeset_update_staged_output_state(struct drm_device *dev)
f6e5b160 9280{
7668851f 9281 struct intel_crtc *crtc;
9a935856
DV
9282 struct intel_encoder *encoder;
9283 struct intel_connector *connector;
f6e5b160 9284
9a935856
DV
9285 list_for_each_entry(connector, &dev->mode_config.connector_list,
9286 base.head) {
9287 connector->new_encoder =
9288 to_intel_encoder(connector->base.encoder);
9289 }
f6e5b160 9290
9a935856
DV
9291 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9292 base.head) {
9293 encoder->new_crtc =
9294 to_intel_crtc(encoder->base.crtc);
9295 }
7668851f 9296
d3fcc808 9297 for_each_intel_crtc(dev, crtc) {
7668851f 9298 crtc->new_enabled = crtc->base.enabled;
7bd0a8e7
VS
9299
9300 if (crtc->new_enabled)
9301 crtc->new_config = &crtc->config;
9302 else
9303 crtc->new_config = NULL;
7668851f 9304 }
f6e5b160
CW
9305}
9306
9a935856
DV
9307/**
9308 * intel_modeset_commit_output_state
9309 *
9310 * This function copies the stage display pipe configuration to the real one.
9311 */
9312static void intel_modeset_commit_output_state(struct drm_device *dev)
9313{
7668851f 9314 struct intel_crtc *crtc;
9a935856
DV
9315 struct intel_encoder *encoder;
9316 struct intel_connector *connector;
f6e5b160 9317
9a935856
DV
9318 list_for_each_entry(connector, &dev->mode_config.connector_list,
9319 base.head) {
9320 connector->base.encoder = &connector->new_encoder->base;
9321 }
f6e5b160 9322
9a935856
DV
9323 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9324 base.head) {
9325 encoder->base.crtc = &encoder->new_crtc->base;
9326 }
7668851f 9327
d3fcc808 9328 for_each_intel_crtc(dev, crtc) {
7668851f
VS
9329 crtc->base.enabled = crtc->new_enabled;
9330 }
9a935856
DV
9331}
9332
050f7aeb 9333static void
eba905b2 9334connected_sink_compute_bpp(struct intel_connector *connector,
050f7aeb
DV
9335 struct intel_crtc_config *pipe_config)
9336{
9337 int bpp = pipe_config->pipe_bpp;
9338
9339 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9340 connector->base.base.id,
9341 drm_get_connector_name(&connector->base));
9342
9343 /* Don't use an invalid EDID bpc value */
9344 if (connector->base.display_info.bpc &&
9345 connector->base.display_info.bpc * 3 < bpp) {
9346 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9347 bpp, connector->base.display_info.bpc*3);
9348 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9349 }
9350
9351 /* Clamp bpp to 8 on screens without EDID 1.4 */
9352 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9353 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9354 bpp);
9355 pipe_config->pipe_bpp = 24;
9356 }
9357}
9358
4e53c2e0 9359static int
050f7aeb
DV
9360compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9361 struct drm_framebuffer *fb,
9362 struct intel_crtc_config *pipe_config)
4e53c2e0 9363{
050f7aeb
DV
9364 struct drm_device *dev = crtc->base.dev;
9365 struct intel_connector *connector;
4e53c2e0
DV
9366 int bpp;
9367
d42264b1
DV
9368 switch (fb->pixel_format) {
9369 case DRM_FORMAT_C8:
4e53c2e0
DV
9370 bpp = 8*3; /* since we go through a colormap */
9371 break;
d42264b1
DV
9372 case DRM_FORMAT_XRGB1555:
9373 case DRM_FORMAT_ARGB1555:
9374 /* checked in intel_framebuffer_init already */
9375 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
9376 return -EINVAL;
9377 case DRM_FORMAT_RGB565:
4e53c2e0
DV
9378 bpp = 6*3; /* min is 18bpp */
9379 break;
d42264b1
DV
9380 case DRM_FORMAT_XBGR8888:
9381 case DRM_FORMAT_ABGR8888:
9382 /* checked in intel_framebuffer_init already */
9383 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
9384 return -EINVAL;
9385 case DRM_FORMAT_XRGB8888:
9386 case DRM_FORMAT_ARGB8888:
4e53c2e0
DV
9387 bpp = 8*3;
9388 break;
d42264b1
DV
9389 case DRM_FORMAT_XRGB2101010:
9390 case DRM_FORMAT_ARGB2101010:
9391 case DRM_FORMAT_XBGR2101010:
9392 case DRM_FORMAT_ABGR2101010:
9393 /* checked in intel_framebuffer_init already */
9394 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
baba133a 9395 return -EINVAL;
4e53c2e0
DV
9396 bpp = 10*3;
9397 break;
baba133a 9398 /* TODO: gen4+ supports 16 bpc floating point, too. */
4e53c2e0
DV
9399 default:
9400 DRM_DEBUG_KMS("unsupported depth\n");
9401 return -EINVAL;
9402 }
9403
4e53c2e0
DV
9404 pipe_config->pipe_bpp = bpp;
9405
9406 /* Clamp display bpp to EDID value */
9407 list_for_each_entry(connector, &dev->mode_config.connector_list,
050f7aeb 9408 base.head) {
1b829e05
DV
9409 if (!connector->new_encoder ||
9410 connector->new_encoder->new_crtc != crtc)
4e53c2e0
DV
9411 continue;
9412
050f7aeb 9413 connected_sink_compute_bpp(connector, pipe_config);
4e53c2e0
DV
9414 }
9415
9416 return bpp;
9417}
9418
644db711
DV
9419static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
9420{
9421 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
9422 "type: 0x%x flags: 0x%x\n",
1342830c 9423 mode->crtc_clock,
644db711
DV
9424 mode->crtc_hdisplay, mode->crtc_hsync_start,
9425 mode->crtc_hsync_end, mode->crtc_htotal,
9426 mode->crtc_vdisplay, mode->crtc_vsync_start,
9427 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
9428}
9429
c0b03411
DV
9430static void intel_dump_pipe_config(struct intel_crtc *crtc,
9431 struct intel_crtc_config *pipe_config,
9432 const char *context)
9433{
9434 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
9435 context, pipe_name(crtc->pipe));
9436
9437 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
9438 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
9439 pipe_config->pipe_bpp, pipe_config->dither);
9440 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9441 pipe_config->has_pch_encoder,
9442 pipe_config->fdi_lanes,
9443 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
9444 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
9445 pipe_config->fdi_m_n.tu);
eb14cb74
VS
9446 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9447 pipe_config->has_dp_encoder,
9448 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
9449 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
9450 pipe_config->dp_m_n.tu);
c0b03411
DV
9451 DRM_DEBUG_KMS("requested mode:\n");
9452 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
9453 DRM_DEBUG_KMS("adjusted mode:\n");
9454 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
644db711 9455 intel_dump_crtc_timings(&pipe_config->adjusted_mode);
d71b8d4a 9456 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
37327abd
VS
9457 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
9458 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
c0b03411
DV
9459 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
9460 pipe_config->gmch_pfit.control,
9461 pipe_config->gmch_pfit.pgm_ratios,
9462 pipe_config->gmch_pfit.lvds_border_bits);
fd4daa9c 9463 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
c0b03411 9464 pipe_config->pch_pfit.pos,
fd4daa9c
CW
9465 pipe_config->pch_pfit.size,
9466 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
42db64ef 9467 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
cf532bb2 9468 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
c0b03411
DV
9469}
9470
bc079e8b
VS
9471static bool encoders_cloneable(const struct intel_encoder *a,
9472 const struct intel_encoder *b)
accfc0c5 9473{
bc079e8b
VS
9474 /* masks could be asymmetric, so check both ways */
9475 return a == b || (a->cloneable & (1 << b->type) &&
9476 b->cloneable & (1 << a->type));
9477}
9478
9479static bool check_single_encoder_cloning(struct intel_crtc *crtc,
9480 struct intel_encoder *encoder)
9481{
9482 struct drm_device *dev = crtc->base.dev;
9483 struct intel_encoder *source_encoder;
9484
9485 list_for_each_entry(source_encoder,
9486 &dev->mode_config.encoder_list, base.head) {
9487 if (source_encoder->new_crtc != crtc)
9488 continue;
9489
9490 if (!encoders_cloneable(encoder, source_encoder))
9491 return false;
9492 }
9493
9494 return true;
9495}
9496
9497static bool check_encoder_cloning(struct intel_crtc *crtc)
9498{
9499 struct drm_device *dev = crtc->base.dev;
accfc0c5
DV
9500 struct intel_encoder *encoder;
9501
bc079e8b
VS
9502 list_for_each_entry(encoder,
9503 &dev->mode_config.encoder_list, base.head) {
9504 if (encoder->new_crtc != crtc)
accfc0c5
DV
9505 continue;
9506
bc079e8b
VS
9507 if (!check_single_encoder_cloning(crtc, encoder))
9508 return false;
accfc0c5
DV
9509 }
9510
bc079e8b 9511 return true;
accfc0c5
DV
9512}
9513
b8cecdf5
DV
9514static struct intel_crtc_config *
9515intel_modeset_pipe_config(struct drm_crtc *crtc,
4e53c2e0 9516 struct drm_framebuffer *fb,
b8cecdf5 9517 struct drm_display_mode *mode)
ee7b9f93 9518{
7758a113 9519 struct drm_device *dev = crtc->dev;
7758a113 9520 struct intel_encoder *encoder;
b8cecdf5 9521 struct intel_crtc_config *pipe_config;
e29c22c0
DV
9522 int plane_bpp, ret = -EINVAL;
9523 bool retry = true;
ee7b9f93 9524
bc079e8b 9525 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
accfc0c5
DV
9526 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
9527 return ERR_PTR(-EINVAL);
9528 }
9529
b8cecdf5
DV
9530 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
9531 if (!pipe_config)
7758a113
DV
9532 return ERR_PTR(-ENOMEM);
9533
b8cecdf5
DV
9534 drm_mode_copy(&pipe_config->adjusted_mode, mode);
9535 drm_mode_copy(&pipe_config->requested_mode, mode);
37327abd 9536
e143a21c
DV
9537 pipe_config->cpu_transcoder =
9538 (enum transcoder) to_intel_crtc(crtc)->pipe;
c0d43d62 9539 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
b8cecdf5 9540
2960bc9c
ID
9541 /*
9542 * Sanitize sync polarity flags based on requested ones. If neither
9543 * positive or negative polarity is requested, treat this as meaning
9544 * negative polarity.
9545 */
9546 if (!(pipe_config->adjusted_mode.flags &
9547 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
9548 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
9549
9550 if (!(pipe_config->adjusted_mode.flags &
9551 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
9552 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
9553
050f7aeb
DV
9554 /* Compute a starting value for pipe_config->pipe_bpp taking the source
9555 * plane pixel format and any sink constraints into account. Returns the
9556 * source plane bpp so that dithering can be selected on mismatches
9557 * after encoders and crtc also have had their say. */
9558 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
9559 fb, pipe_config);
4e53c2e0
DV
9560 if (plane_bpp < 0)
9561 goto fail;
9562
e41a56be
VS
9563 /*
9564 * Determine the real pipe dimensions. Note that stereo modes can
9565 * increase the actual pipe size due to the frame doubling and
9566 * insertion of additional space for blanks between the frame. This
9567 * is stored in the crtc timings. We use the requested mode to do this
9568 * computation to clearly distinguish it from the adjusted mode, which
9569 * can be changed by the connectors in the below retry loop.
9570 */
9571 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
9572 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
9573 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
9574
e29c22c0 9575encoder_retry:
ef1b460d 9576 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 9577 pipe_config->port_clock = 0;
ef1b460d 9578 pipe_config->pixel_multiplier = 1;
ff9a6750 9579
135c81b8 9580 /* Fill in default crtc timings, allow encoders to overwrite them. */
6ce70f5e 9581 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
135c81b8 9582
7758a113
DV
9583 /* Pass our mode to the connectors and the CRTC to give them a chance to
9584 * adjust it according to limitations or connector properties, and also
9585 * a chance to reject the mode entirely.
47f1c6c9 9586 */
7758a113
DV
9587 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9588 base.head) {
47f1c6c9 9589
7758a113
DV
9590 if (&encoder->new_crtc->base != crtc)
9591 continue;
7ae89233 9592
efea6e8e
DV
9593 if (!(encoder->compute_config(encoder, pipe_config))) {
9594 DRM_DEBUG_KMS("Encoder config failure\n");
7758a113
DV
9595 goto fail;
9596 }
ee7b9f93 9597 }
47f1c6c9 9598
ff9a6750
DV
9599 /* Set default port clock if not overwritten by the encoder. Needs to be
9600 * done afterwards in case the encoder adjusts the mode. */
9601 if (!pipe_config->port_clock)
241bfc38
DL
9602 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
9603 * pipe_config->pixel_multiplier;
ff9a6750 9604
a43f6e0f 9605 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 9606 if (ret < 0) {
7758a113
DV
9607 DRM_DEBUG_KMS("CRTC fixup failed\n");
9608 goto fail;
ee7b9f93 9609 }
e29c22c0
DV
9610
9611 if (ret == RETRY) {
9612 if (WARN(!retry, "loop in pipe configuration computation\n")) {
9613 ret = -EINVAL;
9614 goto fail;
9615 }
9616
9617 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
9618 retry = false;
9619 goto encoder_retry;
9620 }
9621
4e53c2e0
DV
9622 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
9623 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
9624 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
9625
b8cecdf5 9626 return pipe_config;
7758a113 9627fail:
b8cecdf5 9628 kfree(pipe_config);
e29c22c0 9629 return ERR_PTR(ret);
ee7b9f93 9630}
47f1c6c9 9631
e2e1ed41
DV
9632/* Computes which crtcs are affected and sets the relevant bits in the mask. For
9633 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
9634static void
9635intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
9636 unsigned *prepare_pipes, unsigned *disable_pipes)
79e53945
JB
9637{
9638 struct intel_crtc *intel_crtc;
e2e1ed41
DV
9639 struct drm_device *dev = crtc->dev;
9640 struct intel_encoder *encoder;
9641 struct intel_connector *connector;
9642 struct drm_crtc *tmp_crtc;
79e53945 9643
e2e1ed41 9644 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
79e53945 9645
e2e1ed41
DV
9646 /* Check which crtcs have changed outputs connected to them, these need
9647 * to be part of the prepare_pipes mask. We don't (yet) support global
9648 * modeset across multiple crtcs, so modeset_pipes will only have one
9649 * bit set at most. */
9650 list_for_each_entry(connector, &dev->mode_config.connector_list,
9651 base.head) {
9652 if (connector->base.encoder == &connector->new_encoder->base)
9653 continue;
79e53945 9654
e2e1ed41
DV
9655 if (connector->base.encoder) {
9656 tmp_crtc = connector->base.encoder->crtc;
9657
9658 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9659 }
9660
9661 if (connector->new_encoder)
9662 *prepare_pipes |=
9663 1 << connector->new_encoder->new_crtc->pipe;
79e53945
JB
9664 }
9665
e2e1ed41
DV
9666 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9667 base.head) {
9668 if (encoder->base.crtc == &encoder->new_crtc->base)
9669 continue;
9670
9671 if (encoder->base.crtc) {
9672 tmp_crtc = encoder->base.crtc;
9673
9674 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9675 }
9676
9677 if (encoder->new_crtc)
9678 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
80824003
JB
9679 }
9680
7668851f 9681 /* Check for pipes that will be enabled/disabled ... */
d3fcc808 9682 for_each_intel_crtc(dev, intel_crtc) {
7668851f 9683 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
e2e1ed41 9684 continue;
7e7d76c3 9685
7668851f 9686 if (!intel_crtc->new_enabled)
e2e1ed41 9687 *disable_pipes |= 1 << intel_crtc->pipe;
7668851f
VS
9688 else
9689 *prepare_pipes |= 1 << intel_crtc->pipe;
7e7d76c3
JB
9690 }
9691
e2e1ed41
DV
9692
9693 /* set_mode is also used to update properties on life display pipes. */
9694 intel_crtc = to_intel_crtc(crtc);
7668851f 9695 if (intel_crtc->new_enabled)
e2e1ed41
DV
9696 *prepare_pipes |= 1 << intel_crtc->pipe;
9697
b6c5164d
DV
9698 /*
9699 * For simplicity do a full modeset on any pipe where the output routing
9700 * changed. We could be more clever, but that would require us to be
9701 * more careful with calling the relevant encoder->mode_set functions.
9702 */
e2e1ed41
DV
9703 if (*prepare_pipes)
9704 *modeset_pipes = *prepare_pipes;
9705
9706 /* ... and mask these out. */
9707 *modeset_pipes &= ~(*disable_pipes);
9708 *prepare_pipes &= ~(*disable_pipes);
b6c5164d
DV
9709
9710 /*
9711 * HACK: We don't (yet) fully support global modesets. intel_set_config
9712 * obies this rule, but the modeset restore mode of
9713 * intel_modeset_setup_hw_state does not.
9714 */
9715 *modeset_pipes &= 1 << intel_crtc->pipe;
9716 *prepare_pipes &= 1 << intel_crtc->pipe;
e3641d3f
DV
9717
9718 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
9719 *modeset_pipes, *prepare_pipes, *disable_pipes);
47f1c6c9 9720}
79e53945 9721
ea9d758d 9722static bool intel_crtc_in_use(struct drm_crtc *crtc)
f6e5b160 9723{
ea9d758d 9724 struct drm_encoder *encoder;
f6e5b160 9725 struct drm_device *dev = crtc->dev;
f6e5b160 9726
ea9d758d
DV
9727 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
9728 if (encoder->crtc == crtc)
9729 return true;
9730
9731 return false;
9732}
9733
9734static void
9735intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
9736{
9737 struct intel_encoder *intel_encoder;
9738 struct intel_crtc *intel_crtc;
9739 struct drm_connector *connector;
9740
9741 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
9742 base.head) {
9743 if (!intel_encoder->base.crtc)
9744 continue;
9745
9746 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
9747
9748 if (prepare_pipes & (1 << intel_crtc->pipe))
9749 intel_encoder->connectors_active = false;
9750 }
9751
9752 intel_modeset_commit_output_state(dev);
9753
7668851f 9754 /* Double check state. */
d3fcc808 9755 for_each_intel_crtc(dev, intel_crtc) {
7668851f 9756 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
7bd0a8e7
VS
9757 WARN_ON(intel_crtc->new_config &&
9758 intel_crtc->new_config != &intel_crtc->config);
9759 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
ea9d758d
DV
9760 }
9761
9762 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
9763 if (!connector->encoder || !connector->encoder->crtc)
9764 continue;
9765
9766 intel_crtc = to_intel_crtc(connector->encoder->crtc);
9767
9768 if (prepare_pipes & (1 << intel_crtc->pipe)) {
68d34720
DV
9769 struct drm_property *dpms_property =
9770 dev->mode_config.dpms_property;
9771
ea9d758d 9772 connector->dpms = DRM_MODE_DPMS_ON;
662595df 9773 drm_object_property_set_value(&connector->base,
68d34720
DV
9774 dpms_property,
9775 DRM_MODE_DPMS_ON);
ea9d758d
DV
9776
9777 intel_encoder = to_intel_encoder(connector->encoder);
9778 intel_encoder->connectors_active = true;
9779 }
9780 }
9781
9782}
9783
3bd26263 9784static bool intel_fuzzy_clock_check(int clock1, int clock2)
f1f644dc 9785{
3bd26263 9786 int diff;
f1f644dc
JB
9787
9788 if (clock1 == clock2)
9789 return true;
9790
9791 if (!clock1 || !clock2)
9792 return false;
9793
9794 diff = abs(clock1 - clock2);
9795
9796 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
9797 return true;
9798
9799 return false;
9800}
9801
25c5b266
DV
9802#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
9803 list_for_each_entry((intel_crtc), \
9804 &(dev)->mode_config.crtc_list, \
9805 base.head) \
0973f18f 9806 if (mask & (1 <<(intel_crtc)->pipe))
25c5b266 9807
0e8ffe1b 9808static bool
2fa2fe9a
DV
9809intel_pipe_config_compare(struct drm_device *dev,
9810 struct intel_crtc_config *current_config,
0e8ffe1b
DV
9811 struct intel_crtc_config *pipe_config)
9812{
66e985c0
DV
9813#define PIPE_CONF_CHECK_X(name) \
9814 if (current_config->name != pipe_config->name) { \
9815 DRM_ERROR("mismatch in " #name " " \
9816 "(expected 0x%08x, found 0x%08x)\n", \
9817 current_config->name, \
9818 pipe_config->name); \
9819 return false; \
9820 }
9821
08a24034
DV
9822#define PIPE_CONF_CHECK_I(name) \
9823 if (current_config->name != pipe_config->name) { \
9824 DRM_ERROR("mismatch in " #name " " \
9825 "(expected %i, found %i)\n", \
9826 current_config->name, \
9827 pipe_config->name); \
9828 return false; \
88adfff1
DV
9829 }
9830
1bd1bd80
DV
9831#define PIPE_CONF_CHECK_FLAGS(name, mask) \
9832 if ((current_config->name ^ pipe_config->name) & (mask)) { \
6f02488e 9833 DRM_ERROR("mismatch in " #name "(" #mask ") " \
1bd1bd80
DV
9834 "(expected %i, found %i)\n", \
9835 current_config->name & (mask), \
9836 pipe_config->name & (mask)); \
9837 return false; \
9838 }
9839
5e550656
VS
9840#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
9841 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
9842 DRM_ERROR("mismatch in " #name " " \
9843 "(expected %i, found %i)\n", \
9844 current_config->name, \
9845 pipe_config->name); \
9846 return false; \
9847 }
9848
bb760063
DV
9849#define PIPE_CONF_QUIRK(quirk) \
9850 ((current_config->quirks | pipe_config->quirks) & (quirk))
9851
eccb140b
DV
9852 PIPE_CONF_CHECK_I(cpu_transcoder);
9853
08a24034
DV
9854 PIPE_CONF_CHECK_I(has_pch_encoder);
9855 PIPE_CONF_CHECK_I(fdi_lanes);
72419203
DV
9856 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
9857 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
9858 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
9859 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
9860 PIPE_CONF_CHECK_I(fdi_m_n.tu);
08a24034 9861
eb14cb74
VS
9862 PIPE_CONF_CHECK_I(has_dp_encoder);
9863 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
9864 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
9865 PIPE_CONF_CHECK_I(dp_m_n.link_m);
9866 PIPE_CONF_CHECK_I(dp_m_n.link_n);
9867 PIPE_CONF_CHECK_I(dp_m_n.tu);
9868
1bd1bd80
DV
9869 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
9870 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
9871 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
9872 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
9873 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
9874 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
9875
9876 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
9877 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
9878 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
9879 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
9880 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
9881 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
9882
c93f54cf 9883 PIPE_CONF_CHECK_I(pixel_multiplier);
6897b4b5 9884 PIPE_CONF_CHECK_I(has_hdmi_sink);
b5a9fa09
DV
9885 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
9886 IS_VALLEYVIEW(dev))
9887 PIPE_CONF_CHECK_I(limited_color_range);
6c49f241 9888
9ed109a7
DV
9889 PIPE_CONF_CHECK_I(has_audio);
9890
1bd1bd80
DV
9891 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9892 DRM_MODE_FLAG_INTERLACE);
9893
bb760063
DV
9894 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
9895 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9896 DRM_MODE_FLAG_PHSYNC);
9897 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9898 DRM_MODE_FLAG_NHSYNC);
9899 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9900 DRM_MODE_FLAG_PVSYNC);
9901 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9902 DRM_MODE_FLAG_NVSYNC);
9903 }
045ac3b5 9904
37327abd
VS
9905 PIPE_CONF_CHECK_I(pipe_src_w);
9906 PIPE_CONF_CHECK_I(pipe_src_h);
1bd1bd80 9907
9953599b
DV
9908 /*
9909 * FIXME: BIOS likes to set up a cloned config with lvds+external
9910 * screen. Since we don't yet re-compute the pipe config when moving
9911 * just the lvds port away to another pipe the sw tracking won't match.
9912 *
9913 * Proper atomic modesets with recomputed global state will fix this.
9914 * Until then just don't check gmch state for inherited modes.
9915 */
9916 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
9917 PIPE_CONF_CHECK_I(gmch_pfit.control);
9918 /* pfit ratios are autocomputed by the hw on gen4+ */
9919 if (INTEL_INFO(dev)->gen < 4)
9920 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
9921 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
9922 }
9923
fd4daa9c
CW
9924 PIPE_CONF_CHECK_I(pch_pfit.enabled);
9925 if (current_config->pch_pfit.enabled) {
9926 PIPE_CONF_CHECK_I(pch_pfit.pos);
9927 PIPE_CONF_CHECK_I(pch_pfit.size);
9928 }
2fa2fe9a 9929
e59150dc
JB
9930 /* BDW+ don't expose a synchronous way to read the state */
9931 if (IS_HASWELL(dev))
9932 PIPE_CONF_CHECK_I(ips_enabled);
42db64ef 9933
282740f7
VS
9934 PIPE_CONF_CHECK_I(double_wide);
9935
c0d43d62 9936 PIPE_CONF_CHECK_I(shared_dpll);
66e985c0 9937 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
8bcc2795 9938 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
66e985c0
DV
9939 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
9940 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
c0d43d62 9941
42571aef
VS
9942 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
9943 PIPE_CONF_CHECK_I(pipe_bpp);
9944
a9a7e98a
JB
9945 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
9946 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
5e550656 9947
66e985c0 9948#undef PIPE_CONF_CHECK_X
08a24034 9949#undef PIPE_CONF_CHECK_I
1bd1bd80 9950#undef PIPE_CONF_CHECK_FLAGS
5e550656 9951#undef PIPE_CONF_CHECK_CLOCK_FUZZY
bb760063 9952#undef PIPE_CONF_QUIRK
88adfff1 9953
0e8ffe1b
DV
9954 return true;
9955}
9956
91d1b4bd
DV
9957static void
9958check_connector_state(struct drm_device *dev)
8af6cf88 9959{
8af6cf88
DV
9960 struct intel_connector *connector;
9961
9962 list_for_each_entry(connector, &dev->mode_config.connector_list,
9963 base.head) {
9964 /* This also checks the encoder/connector hw state with the
9965 * ->get_hw_state callbacks. */
9966 intel_connector_check_state(connector);
9967
9968 WARN(&connector->new_encoder->base != connector->base.encoder,
9969 "connector's staged encoder doesn't match current encoder\n");
9970 }
91d1b4bd
DV
9971}
9972
9973static void
9974check_encoder_state(struct drm_device *dev)
9975{
9976 struct intel_encoder *encoder;
9977 struct intel_connector *connector;
8af6cf88
DV
9978
9979 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9980 base.head) {
9981 bool enabled = false;
9982 bool active = false;
9983 enum pipe pipe, tracked_pipe;
9984
9985 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
9986 encoder->base.base.id,
9987 drm_get_encoder_name(&encoder->base));
9988
9989 WARN(&encoder->new_crtc->base != encoder->base.crtc,
9990 "encoder's stage crtc doesn't match current crtc\n");
9991 WARN(encoder->connectors_active && !encoder->base.crtc,
9992 "encoder's active_connectors set, but no crtc\n");
9993
9994 list_for_each_entry(connector, &dev->mode_config.connector_list,
9995 base.head) {
9996 if (connector->base.encoder != &encoder->base)
9997 continue;
9998 enabled = true;
9999 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10000 active = true;
10001 }
10002 WARN(!!encoder->base.crtc != enabled,
10003 "encoder's enabled state mismatch "
10004 "(expected %i, found %i)\n",
10005 !!encoder->base.crtc, enabled);
10006 WARN(active && !encoder->base.crtc,
10007 "active encoder with no crtc\n");
10008
10009 WARN(encoder->connectors_active != active,
10010 "encoder's computed active state doesn't match tracked active state "
10011 "(expected %i, found %i)\n", active, encoder->connectors_active);
10012
10013 active = encoder->get_hw_state(encoder, &pipe);
10014 WARN(active != encoder->connectors_active,
10015 "encoder's hw state doesn't match sw tracking "
10016 "(expected %i, found %i)\n",
10017 encoder->connectors_active, active);
10018
10019 if (!encoder->base.crtc)
10020 continue;
10021
10022 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
10023 WARN(active && pipe != tracked_pipe,
10024 "active encoder's pipe doesn't match"
10025 "(expected %i, found %i)\n",
10026 tracked_pipe, pipe);
10027
10028 }
91d1b4bd
DV
10029}
10030
10031static void
10032check_crtc_state(struct drm_device *dev)
10033{
fbee40df 10034 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
10035 struct intel_crtc *crtc;
10036 struct intel_encoder *encoder;
10037 struct intel_crtc_config pipe_config;
8af6cf88 10038
d3fcc808 10039 for_each_intel_crtc(dev, crtc) {
8af6cf88
DV
10040 bool enabled = false;
10041 bool active = false;
10042
045ac3b5
JB
10043 memset(&pipe_config, 0, sizeof(pipe_config));
10044
8af6cf88
DV
10045 DRM_DEBUG_KMS("[CRTC:%d]\n",
10046 crtc->base.base.id);
10047
10048 WARN(crtc->active && !crtc->base.enabled,
10049 "active crtc, but not enabled in sw tracking\n");
10050
10051 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10052 base.head) {
10053 if (encoder->base.crtc != &crtc->base)
10054 continue;
10055 enabled = true;
10056 if (encoder->connectors_active)
10057 active = true;
10058 }
6c49f241 10059
8af6cf88
DV
10060 WARN(active != crtc->active,
10061 "crtc's computed active state doesn't match tracked active state "
10062 "(expected %i, found %i)\n", active, crtc->active);
10063 WARN(enabled != crtc->base.enabled,
10064 "crtc's computed enabled state doesn't match tracked enabled state "
10065 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10066
0e8ffe1b
DV
10067 active = dev_priv->display.get_pipe_config(crtc,
10068 &pipe_config);
d62cf62a
DV
10069
10070 /* hw state is inconsistent with the pipe A quirk */
10071 if (crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
10072 active = crtc->active;
10073
6c49f241
DV
10074 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10075 base.head) {
3eaba51c 10076 enum pipe pipe;
6c49f241
DV
10077 if (encoder->base.crtc != &crtc->base)
10078 continue;
1d37b689 10079 if (encoder->get_hw_state(encoder, &pipe))
6c49f241
DV
10080 encoder->get_config(encoder, &pipe_config);
10081 }
10082
0e8ffe1b
DV
10083 WARN(crtc->active != active,
10084 "crtc active state doesn't match with hw state "
10085 "(expected %i, found %i)\n", crtc->active, active);
10086
c0b03411
DV
10087 if (active &&
10088 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
10089 WARN(1, "pipe state doesn't match!\n");
10090 intel_dump_pipe_config(crtc, &pipe_config,
10091 "[hw state]");
10092 intel_dump_pipe_config(crtc, &crtc->config,
10093 "[sw state]");
10094 }
8af6cf88
DV
10095 }
10096}
10097
91d1b4bd
DV
10098static void
10099check_shared_dpll_state(struct drm_device *dev)
10100{
fbee40df 10101 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
10102 struct intel_crtc *crtc;
10103 struct intel_dpll_hw_state dpll_hw_state;
10104 int i;
5358901f
DV
10105
10106 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10107 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10108 int enabled_crtcs = 0, active_crtcs = 0;
10109 bool active;
10110
10111 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10112
10113 DRM_DEBUG_KMS("%s\n", pll->name);
10114
10115 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10116
10117 WARN(pll->active > pll->refcount,
10118 "more active pll users than references: %i vs %i\n",
10119 pll->active, pll->refcount);
10120 WARN(pll->active && !pll->on,
10121 "pll in active use but not on in sw tracking\n");
35c95375
DV
10122 WARN(pll->on && !pll->active,
10123 "pll in on but not on in use in sw tracking\n");
5358901f
DV
10124 WARN(pll->on != active,
10125 "pll on state mismatch (expected %i, found %i)\n",
10126 pll->on, active);
10127
d3fcc808 10128 for_each_intel_crtc(dev, crtc) {
5358901f
DV
10129 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10130 enabled_crtcs++;
10131 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10132 active_crtcs++;
10133 }
10134 WARN(pll->active != active_crtcs,
10135 "pll active crtcs mismatch (expected %i, found %i)\n",
10136 pll->active, active_crtcs);
10137 WARN(pll->refcount != enabled_crtcs,
10138 "pll enabled crtcs mismatch (expected %i, found %i)\n",
10139 pll->refcount, enabled_crtcs);
66e985c0
DV
10140
10141 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
10142 sizeof(dpll_hw_state)),
10143 "pll hw state mismatch\n");
5358901f 10144 }
8af6cf88
DV
10145}
10146
91d1b4bd
DV
10147void
10148intel_modeset_check_state(struct drm_device *dev)
10149{
10150 check_connector_state(dev);
10151 check_encoder_state(dev);
10152 check_crtc_state(dev);
10153 check_shared_dpll_state(dev);
10154}
10155
18442d08
VS
10156void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
10157 int dotclock)
10158{
10159 /*
10160 * FDI already provided one idea for the dotclock.
10161 * Yell if the encoder disagrees.
10162 */
241bfc38 10163 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
18442d08 10164 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
241bfc38 10165 pipe_config->adjusted_mode.crtc_clock, dotclock);
18442d08
VS
10166}
10167
f30da187
DV
10168static int __intel_set_mode(struct drm_crtc *crtc,
10169 struct drm_display_mode *mode,
10170 int x, int y, struct drm_framebuffer *fb)
a6778b3c
DV
10171{
10172 struct drm_device *dev = crtc->dev;
fbee40df 10173 struct drm_i915_private *dev_priv = dev->dev_private;
4b4b9238 10174 struct drm_display_mode *saved_mode;
b8cecdf5 10175 struct intel_crtc_config *pipe_config = NULL;
25c5b266
DV
10176 struct intel_crtc *intel_crtc;
10177 unsigned disable_pipes, prepare_pipes, modeset_pipes;
c0c36b94 10178 int ret = 0;
a6778b3c 10179
4b4b9238 10180 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
c0c36b94
CW
10181 if (!saved_mode)
10182 return -ENOMEM;
a6778b3c 10183
e2e1ed41 10184 intel_modeset_affected_pipes(crtc, &modeset_pipes,
25c5b266
DV
10185 &prepare_pipes, &disable_pipes);
10186
3ac18232 10187 *saved_mode = crtc->mode;
a6778b3c 10188
25c5b266
DV
10189 /* Hack: Because we don't (yet) support global modeset on multiple
10190 * crtcs, we don't keep track of the new mode for more than one crtc.
10191 * Hence simply check whether any bit is set in modeset_pipes in all the
10192 * pieces of code that are not yet converted to deal with mutliple crtcs
10193 * changing their mode at the same time. */
25c5b266 10194 if (modeset_pipes) {
4e53c2e0 10195 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
b8cecdf5
DV
10196 if (IS_ERR(pipe_config)) {
10197 ret = PTR_ERR(pipe_config);
10198 pipe_config = NULL;
10199
3ac18232 10200 goto out;
25c5b266 10201 }
c0b03411
DV
10202 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
10203 "[modeset]");
50741abc 10204 to_intel_crtc(crtc)->new_config = pipe_config;
25c5b266 10205 }
a6778b3c 10206
30a970c6
JB
10207 /*
10208 * See if the config requires any additional preparation, e.g.
10209 * to adjust global state with pipes off. We need to do this
10210 * here so we can get the modeset_pipe updated config for the new
10211 * mode set on this crtc. For other crtcs we need to use the
10212 * adjusted_mode bits in the crtc directly.
10213 */
c164f833 10214 if (IS_VALLEYVIEW(dev)) {
2f2d7aa1 10215 valleyview_modeset_global_pipes(dev, &prepare_pipes);
30a970c6 10216
c164f833
VS
10217 /* may have added more to prepare_pipes than we should */
10218 prepare_pipes &= ~disable_pipes;
10219 }
10220
460da916
DV
10221 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
10222 intel_crtc_disable(&intel_crtc->base);
10223
ea9d758d
DV
10224 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10225 if (intel_crtc->base.enabled)
10226 dev_priv->display.crtc_disable(&intel_crtc->base);
10227 }
a6778b3c 10228
6c4c86f5
DV
10229 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
10230 * to set it here already despite that we pass it down the callchain.
f6e5b160 10231 */
b8cecdf5 10232 if (modeset_pipes) {
25c5b266 10233 crtc->mode = *mode;
b8cecdf5
DV
10234 /* mode_set/enable/disable functions rely on a correct pipe
10235 * config. */
10236 to_intel_crtc(crtc)->config = *pipe_config;
50741abc 10237 to_intel_crtc(crtc)->new_config = &to_intel_crtc(crtc)->config;
c326c0a9
VS
10238
10239 /*
10240 * Calculate and store various constants which
10241 * are later needed by vblank and swap-completion
10242 * timestamping. They are derived from true hwmode.
10243 */
10244 drm_calc_timestamping_constants(crtc,
10245 &pipe_config->adjusted_mode);
b8cecdf5 10246 }
7758a113 10247
ea9d758d
DV
10248 /* Only after disabling all output pipelines that will be changed can we
10249 * update the the output configuration. */
10250 intel_modeset_update_state(dev, prepare_pipes);
f6e5b160 10251
47fab737
DV
10252 if (dev_priv->display.modeset_global_resources)
10253 dev_priv->display.modeset_global_resources(dev);
10254
a6778b3c
DV
10255 /* Set up the DPLL and any encoders state that needs to adjust or depend
10256 * on the DPLL.
f6e5b160 10257 */
25c5b266 10258 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
4c10794f
DV
10259 struct drm_framebuffer *old_fb;
10260
10261 mutex_lock(&dev->struct_mutex);
10262 ret = intel_pin_and_fence_fb_obj(dev,
10263 to_intel_framebuffer(fb)->obj,
10264 NULL);
10265 if (ret != 0) {
10266 DRM_ERROR("pin & fence failed\n");
10267 mutex_unlock(&dev->struct_mutex);
10268 goto done;
10269 }
10270 old_fb = crtc->primary->fb;
10271 if (old_fb)
10272 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
10273 mutex_unlock(&dev->struct_mutex);
10274
10275 crtc->primary->fb = fb;
10276 crtc->x = x;
10277 crtc->y = y;
10278
4271b753
DV
10279 ret = dev_priv->display.crtc_mode_set(&intel_crtc->base,
10280 x, y, fb);
c0c36b94
CW
10281 if (ret)
10282 goto done;
a6778b3c
DV
10283 }
10284
10285 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
25c5b266
DV
10286 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
10287 dev_priv->display.crtc_enable(&intel_crtc->base);
a6778b3c 10288
a6778b3c
DV
10289 /* FIXME: add subpixel order */
10290done:
4b4b9238 10291 if (ret && crtc->enabled)
3ac18232 10292 crtc->mode = *saved_mode;
a6778b3c 10293
3ac18232 10294out:
b8cecdf5 10295 kfree(pipe_config);
3ac18232 10296 kfree(saved_mode);
a6778b3c 10297 return ret;
f6e5b160
CW
10298}
10299
e7457a9a
DL
10300static int intel_set_mode(struct drm_crtc *crtc,
10301 struct drm_display_mode *mode,
10302 int x, int y, struct drm_framebuffer *fb)
f30da187
DV
10303{
10304 int ret;
10305
10306 ret = __intel_set_mode(crtc, mode, x, y, fb);
10307
10308 if (ret == 0)
10309 intel_modeset_check_state(crtc->dev);
10310
10311 return ret;
10312}
10313
c0c36b94
CW
10314void intel_crtc_restore_mode(struct drm_crtc *crtc)
10315{
f4510a27 10316 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
c0c36b94
CW
10317}
10318
25c5b266
DV
10319#undef for_each_intel_crtc_masked
10320
d9e55608
DV
10321static void intel_set_config_free(struct intel_set_config *config)
10322{
10323 if (!config)
10324 return;
10325
1aa4b628
DV
10326 kfree(config->save_connector_encoders);
10327 kfree(config->save_encoder_crtcs);
7668851f 10328 kfree(config->save_crtc_enabled);
d9e55608
DV
10329 kfree(config);
10330}
10331
85f9eb71
DV
10332static int intel_set_config_save_state(struct drm_device *dev,
10333 struct intel_set_config *config)
10334{
7668851f 10335 struct drm_crtc *crtc;
85f9eb71
DV
10336 struct drm_encoder *encoder;
10337 struct drm_connector *connector;
10338 int count;
10339
7668851f
VS
10340 config->save_crtc_enabled =
10341 kcalloc(dev->mode_config.num_crtc,
10342 sizeof(bool), GFP_KERNEL);
10343 if (!config->save_crtc_enabled)
10344 return -ENOMEM;
10345
1aa4b628
DV
10346 config->save_encoder_crtcs =
10347 kcalloc(dev->mode_config.num_encoder,
10348 sizeof(struct drm_crtc *), GFP_KERNEL);
10349 if (!config->save_encoder_crtcs)
85f9eb71
DV
10350 return -ENOMEM;
10351
1aa4b628
DV
10352 config->save_connector_encoders =
10353 kcalloc(dev->mode_config.num_connector,
10354 sizeof(struct drm_encoder *), GFP_KERNEL);
10355 if (!config->save_connector_encoders)
85f9eb71
DV
10356 return -ENOMEM;
10357
10358 /* Copy data. Note that driver private data is not affected.
10359 * Should anything bad happen only the expected state is
10360 * restored, not the drivers personal bookkeeping.
10361 */
7668851f 10362 count = 0;
70e1e0ec 10363 for_each_crtc(dev, crtc) {
7668851f
VS
10364 config->save_crtc_enabled[count++] = crtc->enabled;
10365 }
10366
85f9eb71
DV
10367 count = 0;
10368 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
1aa4b628 10369 config->save_encoder_crtcs[count++] = encoder->crtc;
85f9eb71
DV
10370 }
10371
10372 count = 0;
10373 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1aa4b628 10374 config->save_connector_encoders[count++] = connector->encoder;
85f9eb71
DV
10375 }
10376
10377 return 0;
10378}
10379
10380static void intel_set_config_restore_state(struct drm_device *dev,
10381 struct intel_set_config *config)
10382{
7668851f 10383 struct intel_crtc *crtc;
9a935856
DV
10384 struct intel_encoder *encoder;
10385 struct intel_connector *connector;
85f9eb71
DV
10386 int count;
10387
7668851f 10388 count = 0;
d3fcc808 10389 for_each_intel_crtc(dev, crtc) {
7668851f 10390 crtc->new_enabled = config->save_crtc_enabled[count++];
7bd0a8e7
VS
10391
10392 if (crtc->new_enabled)
10393 crtc->new_config = &crtc->config;
10394 else
10395 crtc->new_config = NULL;
7668851f
VS
10396 }
10397
85f9eb71 10398 count = 0;
9a935856
DV
10399 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10400 encoder->new_crtc =
10401 to_intel_crtc(config->save_encoder_crtcs[count++]);
85f9eb71
DV
10402 }
10403
10404 count = 0;
9a935856
DV
10405 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10406 connector->new_encoder =
10407 to_intel_encoder(config->save_connector_encoders[count++]);
85f9eb71
DV
10408 }
10409}
10410
e3de42b6 10411static bool
2e57f47d 10412is_crtc_connector_off(struct drm_mode_set *set)
e3de42b6
ID
10413{
10414 int i;
10415
2e57f47d
CW
10416 if (set->num_connectors == 0)
10417 return false;
10418
10419 if (WARN_ON(set->connectors == NULL))
10420 return false;
10421
10422 for (i = 0; i < set->num_connectors; i++)
10423 if (set->connectors[i]->encoder &&
10424 set->connectors[i]->encoder->crtc == set->crtc &&
10425 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
e3de42b6
ID
10426 return true;
10427
10428 return false;
10429}
10430
5e2b584e
DV
10431static void
10432intel_set_config_compute_mode_changes(struct drm_mode_set *set,
10433 struct intel_set_config *config)
10434{
10435
10436 /* We should be able to check here if the fb has the same properties
10437 * and then just flip_or_move it */
2e57f47d
CW
10438 if (is_crtc_connector_off(set)) {
10439 config->mode_changed = true;
f4510a27 10440 } else if (set->crtc->primary->fb != set->fb) {
5e2b584e 10441 /* If we have no fb then treat it as a full mode set */
f4510a27 10442 if (set->crtc->primary->fb == NULL) {
319d9827
JB
10443 struct intel_crtc *intel_crtc =
10444 to_intel_crtc(set->crtc);
10445
d330a953 10446 if (intel_crtc->active && i915.fastboot) {
319d9827
JB
10447 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
10448 config->fb_changed = true;
10449 } else {
10450 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
10451 config->mode_changed = true;
10452 }
5e2b584e
DV
10453 } else if (set->fb == NULL) {
10454 config->mode_changed = true;
72f4901e 10455 } else if (set->fb->pixel_format !=
f4510a27 10456 set->crtc->primary->fb->pixel_format) {
5e2b584e 10457 config->mode_changed = true;
e3de42b6 10458 } else {
5e2b584e 10459 config->fb_changed = true;
e3de42b6 10460 }
5e2b584e
DV
10461 }
10462
835c5873 10463 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
5e2b584e
DV
10464 config->fb_changed = true;
10465
10466 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
10467 DRM_DEBUG_KMS("modes are different, full mode set\n");
10468 drm_mode_debug_printmodeline(&set->crtc->mode);
10469 drm_mode_debug_printmodeline(set->mode);
10470 config->mode_changed = true;
10471 }
a1d95703
CW
10472
10473 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
10474 set->crtc->base.id, config->mode_changed, config->fb_changed);
5e2b584e
DV
10475}
10476
2e431051 10477static int
9a935856
DV
10478intel_modeset_stage_output_state(struct drm_device *dev,
10479 struct drm_mode_set *set,
10480 struct intel_set_config *config)
50f56119 10481{
9a935856
DV
10482 struct intel_connector *connector;
10483 struct intel_encoder *encoder;
7668851f 10484 struct intel_crtc *crtc;
f3f08572 10485 int ro;
50f56119 10486
9abdda74 10487 /* The upper layers ensure that we either disable a crtc or have a list
9a935856
DV
10488 * of connectors. For paranoia, double-check this. */
10489 WARN_ON(!set->fb && (set->num_connectors != 0));
10490 WARN_ON(set->fb && (set->num_connectors == 0));
10491
9a935856
DV
10492 list_for_each_entry(connector, &dev->mode_config.connector_list,
10493 base.head) {
10494 /* Otherwise traverse passed in connector list and get encoders
10495 * for them. */
50f56119 10496 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856
DV
10497 if (set->connectors[ro] == &connector->base) {
10498 connector->new_encoder = connector->encoder;
50f56119
DV
10499 break;
10500 }
10501 }
10502
9a935856
DV
10503 /* If we disable the crtc, disable all its connectors. Also, if
10504 * the connector is on the changing crtc but not on the new
10505 * connector list, disable it. */
10506 if ((!set->fb || ro == set->num_connectors) &&
10507 connector->base.encoder &&
10508 connector->base.encoder->crtc == set->crtc) {
10509 connector->new_encoder = NULL;
10510
10511 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
10512 connector->base.base.id,
10513 drm_get_connector_name(&connector->base));
10514 }
10515
10516
10517 if (&connector->new_encoder->base != connector->base.encoder) {
50f56119 10518 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
5e2b584e 10519 config->mode_changed = true;
50f56119
DV
10520 }
10521 }
9a935856 10522 /* connector->new_encoder is now updated for all connectors. */
50f56119 10523
9a935856 10524 /* Update crtc of enabled connectors. */
9a935856
DV
10525 list_for_each_entry(connector, &dev->mode_config.connector_list,
10526 base.head) {
7668851f
VS
10527 struct drm_crtc *new_crtc;
10528
9a935856 10529 if (!connector->new_encoder)
50f56119
DV
10530 continue;
10531
9a935856 10532 new_crtc = connector->new_encoder->base.crtc;
50f56119
DV
10533
10534 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856 10535 if (set->connectors[ro] == &connector->base)
50f56119
DV
10536 new_crtc = set->crtc;
10537 }
10538
10539 /* Make sure the new CRTC will work with the encoder */
14509916
TR
10540 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
10541 new_crtc)) {
5e2b584e 10542 return -EINVAL;
50f56119 10543 }
9a935856
DV
10544 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
10545
10546 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
10547 connector->base.base.id,
10548 drm_get_connector_name(&connector->base),
10549 new_crtc->base.id);
10550 }
10551
10552 /* Check for any encoders that needs to be disabled. */
10553 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10554 base.head) {
5a65f358 10555 int num_connectors = 0;
9a935856
DV
10556 list_for_each_entry(connector,
10557 &dev->mode_config.connector_list,
10558 base.head) {
10559 if (connector->new_encoder == encoder) {
10560 WARN_ON(!connector->new_encoder->new_crtc);
5a65f358 10561 num_connectors++;
9a935856
DV
10562 }
10563 }
5a65f358
PZ
10564
10565 if (num_connectors == 0)
10566 encoder->new_crtc = NULL;
10567 else if (num_connectors > 1)
10568 return -EINVAL;
10569
9a935856
DV
10570 /* Only now check for crtc changes so we don't miss encoders
10571 * that will be disabled. */
10572 if (&encoder->new_crtc->base != encoder->base.crtc) {
50f56119 10573 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
5e2b584e 10574 config->mode_changed = true;
50f56119
DV
10575 }
10576 }
9a935856 10577 /* Now we've also updated encoder->new_crtc for all encoders. */
50f56119 10578
d3fcc808 10579 for_each_intel_crtc(dev, crtc) {
7668851f
VS
10580 crtc->new_enabled = false;
10581
10582 list_for_each_entry(encoder,
10583 &dev->mode_config.encoder_list,
10584 base.head) {
10585 if (encoder->new_crtc == crtc) {
10586 crtc->new_enabled = true;
10587 break;
10588 }
10589 }
10590
10591 if (crtc->new_enabled != crtc->base.enabled) {
10592 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
10593 crtc->new_enabled ? "en" : "dis");
10594 config->mode_changed = true;
10595 }
7bd0a8e7
VS
10596
10597 if (crtc->new_enabled)
10598 crtc->new_config = &crtc->config;
10599 else
10600 crtc->new_config = NULL;
7668851f
VS
10601 }
10602
2e431051
DV
10603 return 0;
10604}
10605
7d00a1f5
VS
10606static void disable_crtc_nofb(struct intel_crtc *crtc)
10607{
10608 struct drm_device *dev = crtc->base.dev;
10609 struct intel_encoder *encoder;
10610 struct intel_connector *connector;
10611
10612 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
10613 pipe_name(crtc->pipe));
10614
10615 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10616 if (connector->new_encoder &&
10617 connector->new_encoder->new_crtc == crtc)
10618 connector->new_encoder = NULL;
10619 }
10620
10621 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10622 if (encoder->new_crtc == crtc)
10623 encoder->new_crtc = NULL;
10624 }
10625
10626 crtc->new_enabled = false;
7bd0a8e7 10627 crtc->new_config = NULL;
7d00a1f5
VS
10628}
10629
2e431051
DV
10630static int intel_crtc_set_config(struct drm_mode_set *set)
10631{
10632 struct drm_device *dev;
2e431051
DV
10633 struct drm_mode_set save_set;
10634 struct intel_set_config *config;
10635 int ret;
2e431051 10636
8d3e375e
DV
10637 BUG_ON(!set);
10638 BUG_ON(!set->crtc);
10639 BUG_ON(!set->crtc->helper_private);
2e431051 10640
7e53f3a4
DV
10641 /* Enforce sane interface api - has been abused by the fb helper. */
10642 BUG_ON(!set->mode && set->fb);
10643 BUG_ON(set->fb && set->num_connectors == 0);
431e50f7 10644
2e431051
DV
10645 if (set->fb) {
10646 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
10647 set->crtc->base.id, set->fb->base.id,
10648 (int)set->num_connectors, set->x, set->y);
10649 } else {
10650 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
2e431051
DV
10651 }
10652
10653 dev = set->crtc->dev;
10654
10655 ret = -ENOMEM;
10656 config = kzalloc(sizeof(*config), GFP_KERNEL);
10657 if (!config)
10658 goto out_config;
10659
10660 ret = intel_set_config_save_state(dev, config);
10661 if (ret)
10662 goto out_config;
10663
10664 save_set.crtc = set->crtc;
10665 save_set.mode = &set->crtc->mode;
10666 save_set.x = set->crtc->x;
10667 save_set.y = set->crtc->y;
f4510a27 10668 save_set.fb = set->crtc->primary->fb;
2e431051
DV
10669
10670 /* Compute whether we need a full modeset, only an fb base update or no
10671 * change at all. In the future we might also check whether only the
10672 * mode changed, e.g. for LVDS where we only change the panel fitter in
10673 * such cases. */
10674 intel_set_config_compute_mode_changes(set, config);
10675
9a935856 10676 ret = intel_modeset_stage_output_state(dev, set, config);
2e431051
DV
10677 if (ret)
10678 goto fail;
10679
5e2b584e 10680 if (config->mode_changed) {
c0c36b94
CW
10681 ret = intel_set_mode(set->crtc, set->mode,
10682 set->x, set->y, set->fb);
5e2b584e 10683 } else if (config->fb_changed) {
4878cae2
VS
10684 intel_crtc_wait_for_pending_flips(set->crtc);
10685
4f660f49 10686 ret = intel_pipe_set_base(set->crtc,
94352cf9 10687 set->x, set->y, set->fb);
7ca51a3a
JB
10688 /*
10689 * In the fastboot case this may be our only check of the
10690 * state after boot. It would be better to only do it on
10691 * the first update, but we don't have a nice way of doing that
10692 * (and really, set_config isn't used much for high freq page
10693 * flipping, so increasing its cost here shouldn't be a big
10694 * deal).
10695 */
d330a953 10696 if (i915.fastboot && ret == 0)
7ca51a3a 10697 intel_modeset_check_state(set->crtc->dev);
50f56119
DV
10698 }
10699
2d05eae1 10700 if (ret) {
bf67dfeb
DV
10701 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
10702 set->crtc->base.id, ret);
50f56119 10703fail:
2d05eae1 10704 intel_set_config_restore_state(dev, config);
50f56119 10705
7d00a1f5
VS
10706 /*
10707 * HACK: if the pipe was on, but we didn't have a framebuffer,
10708 * force the pipe off to avoid oopsing in the modeset code
10709 * due to fb==NULL. This should only happen during boot since
10710 * we don't yet reconstruct the FB from the hardware state.
10711 */
10712 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
10713 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
10714
2d05eae1
CW
10715 /* Try to restore the config */
10716 if (config->mode_changed &&
10717 intel_set_mode(save_set.crtc, save_set.mode,
10718 save_set.x, save_set.y, save_set.fb))
10719 DRM_ERROR("failed to restore config after modeset failure\n");
10720 }
50f56119 10721
d9e55608
DV
10722out_config:
10723 intel_set_config_free(config);
50f56119
DV
10724 return ret;
10725}
f6e5b160
CW
10726
10727static const struct drm_crtc_funcs intel_crtc_funcs = {
f6e5b160
CW
10728 .cursor_set = intel_crtc_cursor_set,
10729 .cursor_move = intel_crtc_cursor_move,
10730 .gamma_set = intel_crtc_gamma_set,
50f56119 10731 .set_config = intel_crtc_set_config,
f6e5b160
CW
10732 .destroy = intel_crtc_destroy,
10733 .page_flip = intel_crtc_page_flip,
10734};
10735
79f689aa
PZ
10736static void intel_cpu_pll_init(struct drm_device *dev)
10737{
affa9354 10738 if (HAS_DDI(dev))
79f689aa
PZ
10739 intel_ddi_pll_init(dev);
10740}
10741
5358901f
DV
10742static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
10743 struct intel_shared_dpll *pll,
10744 struct intel_dpll_hw_state *hw_state)
ee7b9f93 10745{
5358901f 10746 uint32_t val;
ee7b9f93 10747
5358901f 10748 val = I915_READ(PCH_DPLL(pll->id));
66e985c0
DV
10749 hw_state->dpll = val;
10750 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
10751 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
5358901f
DV
10752
10753 return val & DPLL_VCO_ENABLE;
10754}
10755
15bdd4cf
DV
10756static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
10757 struct intel_shared_dpll *pll)
10758{
10759 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
10760 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
10761}
10762
e7b903d2
DV
10763static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
10764 struct intel_shared_dpll *pll)
10765{
e7b903d2 10766 /* PCH refclock must be enabled first */
89eff4be 10767 ibx_assert_pch_refclk_enabled(dev_priv);
e7b903d2 10768
15bdd4cf
DV
10769 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10770
10771 /* Wait for the clocks to stabilize. */
10772 POSTING_READ(PCH_DPLL(pll->id));
10773 udelay(150);
10774
10775 /* The pixel multiplier can only be updated once the
10776 * DPLL is enabled and the clocks are stable.
10777 *
10778 * So write it again.
10779 */
10780 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10781 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
10782 udelay(200);
10783}
10784
10785static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
10786 struct intel_shared_dpll *pll)
10787{
10788 struct drm_device *dev = dev_priv->dev;
10789 struct intel_crtc *crtc;
e7b903d2
DV
10790
10791 /* Make sure no transcoder isn't still depending on us. */
d3fcc808 10792 for_each_intel_crtc(dev, crtc) {
e7b903d2
DV
10793 if (intel_crtc_to_shared_dpll(crtc) == pll)
10794 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
ee7b9f93
JB
10795 }
10796
15bdd4cf
DV
10797 I915_WRITE(PCH_DPLL(pll->id), 0);
10798 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
10799 udelay(200);
10800}
10801
46edb027
DV
10802static char *ibx_pch_dpll_names[] = {
10803 "PCH DPLL A",
10804 "PCH DPLL B",
10805};
10806
7c74ade1 10807static void ibx_pch_dpll_init(struct drm_device *dev)
ee7b9f93 10808{
e7b903d2 10809 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93
JB
10810 int i;
10811
7c74ade1 10812 dev_priv->num_shared_dpll = 2;
ee7b9f93 10813
e72f9fbf 10814 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
46edb027
DV
10815 dev_priv->shared_dplls[i].id = i;
10816 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
15bdd4cf 10817 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
e7b903d2
DV
10818 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
10819 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
5358901f
DV
10820 dev_priv->shared_dplls[i].get_hw_state =
10821 ibx_pch_dpll_get_hw_state;
ee7b9f93
JB
10822 }
10823}
10824
7c74ade1
DV
10825static void intel_shared_dpll_init(struct drm_device *dev)
10826{
e7b903d2 10827 struct drm_i915_private *dev_priv = dev->dev_private;
7c74ade1
DV
10828
10829 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
10830 ibx_pch_dpll_init(dev);
10831 else
10832 dev_priv->num_shared_dpll = 0;
10833
10834 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
7c74ade1
DV
10835}
10836
b358d0a6 10837static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 10838{
fbee40df 10839 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945
JB
10840 struct intel_crtc *intel_crtc;
10841 int i;
10842
955382f3 10843 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
79e53945
JB
10844 if (intel_crtc == NULL)
10845 return;
10846
10847 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
10848
10849 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
79e53945
JB
10850 for (i = 0; i < 256; i++) {
10851 intel_crtc->lut_r[i] = i;
10852 intel_crtc->lut_g[i] = i;
10853 intel_crtc->lut_b[i] = i;
10854 }
10855
1f1c2e24
VS
10856 /*
10857 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
10858 * is hooked to plane B. Hence we want plane A feeding pipe B.
10859 */
80824003
JB
10860 intel_crtc->pipe = pipe;
10861 intel_crtc->plane = pipe;
3a77c4c4 10862 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
28c97730 10863 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 10864 intel_crtc->plane = !pipe;
80824003
JB
10865 }
10866
8d7849db
VS
10867 init_waitqueue_head(&intel_crtc->vbl_wait);
10868
22fd0fab
JB
10869 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
10870 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
10871 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
10872 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
10873
79e53945 10874 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
79e53945
JB
10875}
10876
752aa88a
JB
10877enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
10878{
10879 struct drm_encoder *encoder = connector->base.encoder;
10880
10881 WARN_ON(!mutex_is_locked(&connector->base.dev->mode_config.mutex));
10882
10883 if (!encoder)
10884 return INVALID_PIPE;
10885
10886 return to_intel_crtc(encoder->crtc)->pipe;
10887}
10888
08d7b3d1 10889int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 10890 struct drm_file *file)
08d7b3d1 10891{
08d7b3d1 10892 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
c05422d5
DV
10893 struct drm_mode_object *drmmode_obj;
10894 struct intel_crtc *crtc;
08d7b3d1 10895
1cff8f6b
DV
10896 if (!drm_core_check_feature(dev, DRIVER_MODESET))
10897 return -ENODEV;
08d7b3d1 10898
c05422d5
DV
10899 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
10900 DRM_MODE_OBJECT_CRTC);
08d7b3d1 10901
c05422d5 10902 if (!drmmode_obj) {
08d7b3d1 10903 DRM_ERROR("no such CRTC id\n");
3f2c2057 10904 return -ENOENT;
08d7b3d1
CW
10905 }
10906
c05422d5
DV
10907 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
10908 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 10909
c05422d5 10910 return 0;
08d7b3d1
CW
10911}
10912
66a9278e 10913static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 10914{
66a9278e
DV
10915 struct drm_device *dev = encoder->base.dev;
10916 struct intel_encoder *source_encoder;
79e53945 10917 int index_mask = 0;
79e53945
JB
10918 int entry = 0;
10919
66a9278e
DV
10920 list_for_each_entry(source_encoder,
10921 &dev->mode_config.encoder_list, base.head) {
bc079e8b 10922 if (encoders_cloneable(encoder, source_encoder))
66a9278e
DV
10923 index_mask |= (1 << entry);
10924
79e53945
JB
10925 entry++;
10926 }
4ef69c7a 10927
79e53945
JB
10928 return index_mask;
10929}
10930
4d302442
CW
10931static bool has_edp_a(struct drm_device *dev)
10932{
10933 struct drm_i915_private *dev_priv = dev->dev_private;
10934
10935 if (!IS_MOBILE(dev))
10936 return false;
10937
10938 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
10939 return false;
10940
e3589908 10941 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
4d302442
CW
10942 return false;
10943
10944 return true;
10945}
10946
ba0fbca4
DL
10947const char *intel_output_name(int output)
10948{
10949 static const char *names[] = {
10950 [INTEL_OUTPUT_UNUSED] = "Unused",
10951 [INTEL_OUTPUT_ANALOG] = "Analog",
10952 [INTEL_OUTPUT_DVO] = "DVO",
10953 [INTEL_OUTPUT_SDVO] = "SDVO",
10954 [INTEL_OUTPUT_LVDS] = "LVDS",
10955 [INTEL_OUTPUT_TVOUT] = "TV",
10956 [INTEL_OUTPUT_HDMI] = "HDMI",
10957 [INTEL_OUTPUT_DISPLAYPORT] = "DisplayPort",
10958 [INTEL_OUTPUT_EDP] = "eDP",
10959 [INTEL_OUTPUT_DSI] = "DSI",
10960 [INTEL_OUTPUT_UNKNOWN] = "Unknown",
10961 };
10962
10963 if (output < 0 || output >= ARRAY_SIZE(names) || !names[output])
10964 return "Invalid";
10965
10966 return names[output];
10967}
10968
79e53945
JB
10969static void intel_setup_outputs(struct drm_device *dev)
10970{
725e30ad 10971 struct drm_i915_private *dev_priv = dev->dev_private;
4ef69c7a 10972 struct intel_encoder *encoder;
cb0953d7 10973 bool dpd_is_edp = false;
79e53945 10974
c9093354 10975 intel_lvds_init(dev);
79e53945 10976
7895a81d 10977 if (!IS_ULT(dev) && !IS_CHERRYVIEW(dev))
79935fca 10978 intel_crt_init(dev);
cb0953d7 10979
affa9354 10980 if (HAS_DDI(dev)) {
0e72a5b5
ED
10981 int found;
10982
10983 /* Haswell uses DDI functions to detect digital outputs */
10984 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
10985 /* DDI A only supports eDP */
10986 if (found)
10987 intel_ddi_init(dev, PORT_A);
10988
10989 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
10990 * register */
10991 found = I915_READ(SFUSE_STRAP);
10992
10993 if (found & SFUSE_STRAP_DDIB_DETECTED)
10994 intel_ddi_init(dev, PORT_B);
10995 if (found & SFUSE_STRAP_DDIC_DETECTED)
10996 intel_ddi_init(dev, PORT_C);
10997 if (found & SFUSE_STRAP_DDID_DETECTED)
10998 intel_ddi_init(dev, PORT_D);
10999 } else if (HAS_PCH_SPLIT(dev)) {
cb0953d7 11000 int found;
5d8a7752 11001 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
270b3042
DV
11002
11003 if (has_edp_a(dev))
11004 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 11005
dc0fa718 11006 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 11007 /* PCH SDVOB multiplex with HDMIB */
eef4eacb 11008 found = intel_sdvo_init(dev, PCH_SDVOB, true);
30ad48b7 11009 if (!found)
e2debe91 11010 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 11011 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 11012 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
11013 }
11014
dc0fa718 11015 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 11016 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 11017
dc0fa718 11018 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 11019 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 11020
5eb08b69 11021 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 11022 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 11023
270b3042 11024 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 11025 intel_dp_init(dev, PCH_DP_D, PORT_D);
4a87d65d 11026 } else if (IS_VALLEYVIEW(dev)) {
585a94b8
AB
11027 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
11028 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
11029 PORT_B);
11030 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
11031 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
11032 }
11033
6f6005a5
JB
11034 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
11035 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
11036 PORT_C);
11037 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
5d8a7752 11038 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
6f6005a5 11039 }
19c03924 11040
3cfca973 11041 intel_dsi_init(dev);
103a196f 11042 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
27185ae1 11043 bool found = false;
7d57382e 11044
e2debe91 11045 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 11046 DRM_DEBUG_KMS("probing SDVOB\n");
e2debe91 11047 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
b01f2c3a
JB
11048 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
11049 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 11050 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 11051 }
27185ae1 11052
e7281eab 11053 if (!found && SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 11054 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 11055 }
13520b05
KH
11056
11057 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 11058
e2debe91 11059 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 11060 DRM_DEBUG_KMS("probing SDVOC\n");
e2debe91 11061 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
b01f2c3a 11062 }
27185ae1 11063
e2debe91 11064 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 11065
b01f2c3a
JB
11066 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
11067 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 11068 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 11069 }
e7281eab 11070 if (SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 11071 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 11072 }
27185ae1 11073
b01f2c3a 11074 if (SUPPORTS_INTEGRATED_DP(dev) &&
e7281eab 11075 (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 11076 intel_dp_init(dev, DP_D, PORT_D);
bad720ff 11077 } else if (IS_GEN2(dev))
79e53945
JB
11078 intel_dvo_init(dev);
11079
103a196f 11080 if (SUPPORTS_TV(dev))
79e53945
JB
11081 intel_tv_init(dev);
11082
4ef69c7a
CW
11083 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
11084 encoder->base.possible_crtcs = encoder->crtc_mask;
11085 encoder->base.possible_clones =
66a9278e 11086 intel_encoder_clones(encoder);
79e53945 11087 }
47356eb6 11088
dde86e2d 11089 intel_init_pch_refclk(dev);
270b3042
DV
11090
11091 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
11092}
11093
11094static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
11095{
11096 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945 11097
ef2d633e
DV
11098 drm_framebuffer_cleanup(fb);
11099 WARN_ON(!intel_fb->obj->framebuffer_references--);
11100 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
79e53945
JB
11101 kfree(intel_fb);
11102}
11103
11104static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 11105 struct drm_file *file,
79e53945
JB
11106 unsigned int *handle)
11107{
11108 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 11109 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 11110
05394f39 11111 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
11112}
11113
11114static const struct drm_framebuffer_funcs intel_fb_funcs = {
11115 .destroy = intel_user_framebuffer_destroy,
11116 .create_handle = intel_user_framebuffer_create_handle,
11117};
11118
b5ea642a
DV
11119static int intel_framebuffer_init(struct drm_device *dev,
11120 struct intel_framebuffer *intel_fb,
11121 struct drm_mode_fb_cmd2 *mode_cmd,
11122 struct drm_i915_gem_object *obj)
79e53945 11123{
a57ce0b2 11124 int aligned_height;
a35cdaa0 11125 int pitch_limit;
79e53945
JB
11126 int ret;
11127
dd4916c5
DV
11128 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
11129
c16ed4be
CW
11130 if (obj->tiling_mode == I915_TILING_Y) {
11131 DRM_DEBUG("hardware does not support tiling Y\n");
57cd6508 11132 return -EINVAL;
c16ed4be 11133 }
57cd6508 11134
c16ed4be
CW
11135 if (mode_cmd->pitches[0] & 63) {
11136 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
11137 mode_cmd->pitches[0]);
57cd6508 11138 return -EINVAL;
c16ed4be 11139 }
57cd6508 11140
a35cdaa0
CW
11141 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
11142 pitch_limit = 32*1024;
11143 } else if (INTEL_INFO(dev)->gen >= 4) {
11144 if (obj->tiling_mode)
11145 pitch_limit = 16*1024;
11146 else
11147 pitch_limit = 32*1024;
11148 } else if (INTEL_INFO(dev)->gen >= 3) {
11149 if (obj->tiling_mode)
11150 pitch_limit = 8*1024;
11151 else
11152 pitch_limit = 16*1024;
11153 } else
11154 /* XXX DSPC is limited to 4k tiled */
11155 pitch_limit = 8*1024;
11156
11157 if (mode_cmd->pitches[0] > pitch_limit) {
11158 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
11159 obj->tiling_mode ? "tiled" : "linear",
11160 mode_cmd->pitches[0], pitch_limit);
5d7bd705 11161 return -EINVAL;
c16ed4be 11162 }
5d7bd705
VS
11163
11164 if (obj->tiling_mode != I915_TILING_NONE &&
c16ed4be
CW
11165 mode_cmd->pitches[0] != obj->stride) {
11166 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
11167 mode_cmd->pitches[0], obj->stride);
5d7bd705 11168 return -EINVAL;
c16ed4be 11169 }
5d7bd705 11170
57779d06 11171 /* Reject formats not supported by any plane early. */
308e5bcb 11172 switch (mode_cmd->pixel_format) {
57779d06 11173 case DRM_FORMAT_C8:
04b3924d
VS
11174 case DRM_FORMAT_RGB565:
11175 case DRM_FORMAT_XRGB8888:
11176 case DRM_FORMAT_ARGB8888:
57779d06
VS
11177 break;
11178 case DRM_FORMAT_XRGB1555:
11179 case DRM_FORMAT_ARGB1555:
c16ed4be 11180 if (INTEL_INFO(dev)->gen > 3) {
4ee62c76
VS
11181 DRM_DEBUG("unsupported pixel format: %s\n",
11182 drm_get_format_name(mode_cmd->pixel_format));
57779d06 11183 return -EINVAL;
c16ed4be 11184 }
57779d06
VS
11185 break;
11186 case DRM_FORMAT_XBGR8888:
11187 case DRM_FORMAT_ABGR8888:
04b3924d
VS
11188 case DRM_FORMAT_XRGB2101010:
11189 case DRM_FORMAT_ARGB2101010:
57779d06
VS
11190 case DRM_FORMAT_XBGR2101010:
11191 case DRM_FORMAT_ABGR2101010:
c16ed4be 11192 if (INTEL_INFO(dev)->gen < 4) {
4ee62c76
VS
11193 DRM_DEBUG("unsupported pixel format: %s\n",
11194 drm_get_format_name(mode_cmd->pixel_format));
57779d06 11195 return -EINVAL;
c16ed4be 11196 }
b5626747 11197 break;
04b3924d
VS
11198 case DRM_FORMAT_YUYV:
11199 case DRM_FORMAT_UYVY:
11200 case DRM_FORMAT_YVYU:
11201 case DRM_FORMAT_VYUY:
c16ed4be 11202 if (INTEL_INFO(dev)->gen < 5) {
4ee62c76
VS
11203 DRM_DEBUG("unsupported pixel format: %s\n",
11204 drm_get_format_name(mode_cmd->pixel_format));
57779d06 11205 return -EINVAL;
c16ed4be 11206 }
57cd6508
CW
11207 break;
11208 default:
4ee62c76
VS
11209 DRM_DEBUG("unsupported pixel format: %s\n",
11210 drm_get_format_name(mode_cmd->pixel_format));
57cd6508
CW
11211 return -EINVAL;
11212 }
11213
90f9a336
VS
11214 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
11215 if (mode_cmd->offsets[0] != 0)
11216 return -EINVAL;
11217
a57ce0b2
JB
11218 aligned_height = intel_align_height(dev, mode_cmd->height,
11219 obj->tiling_mode);
53155c0a
DV
11220 /* FIXME drm helper for size checks (especially planar formats)? */
11221 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
11222 return -EINVAL;
11223
c7d73f6a
DV
11224 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
11225 intel_fb->obj = obj;
80075d49 11226 intel_fb->obj->framebuffer_references++;
c7d73f6a 11227
79e53945
JB
11228 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
11229 if (ret) {
11230 DRM_ERROR("framebuffer init failed %d\n", ret);
11231 return ret;
11232 }
11233
79e53945
JB
11234 return 0;
11235}
11236
79e53945
JB
11237static struct drm_framebuffer *
11238intel_user_framebuffer_create(struct drm_device *dev,
11239 struct drm_file *filp,
308e5bcb 11240 struct drm_mode_fb_cmd2 *mode_cmd)
79e53945 11241{
05394f39 11242 struct drm_i915_gem_object *obj;
79e53945 11243
308e5bcb
JB
11244 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
11245 mode_cmd->handles[0]));
c8725226 11246 if (&obj->base == NULL)
cce13ff7 11247 return ERR_PTR(-ENOENT);
79e53945 11248
d2dff872 11249 return intel_framebuffer_create(dev, mode_cmd, obj);
79e53945
JB
11250}
11251
4520f53a 11252#ifndef CONFIG_DRM_I915_FBDEV
0632fef6 11253static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
4520f53a
DV
11254{
11255}
11256#endif
11257
79e53945 11258static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 11259 .fb_create = intel_user_framebuffer_create,
0632fef6 11260 .output_poll_changed = intel_fbdev_output_poll_changed,
79e53945
JB
11261};
11262
e70236a8
JB
11263/* Set up chip specific display functions */
11264static void intel_init_display(struct drm_device *dev)
11265{
11266 struct drm_i915_private *dev_priv = dev->dev_private;
11267
ee9300bb
DV
11268 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
11269 dev_priv->display.find_dpll = g4x_find_best_dpll;
ef9348c8
CML
11270 else if (IS_CHERRYVIEW(dev))
11271 dev_priv->display.find_dpll = chv_find_best_dpll;
ee9300bb
DV
11272 else if (IS_VALLEYVIEW(dev))
11273 dev_priv->display.find_dpll = vlv_find_best_dpll;
11274 else if (IS_PINEVIEW(dev))
11275 dev_priv->display.find_dpll = pnv_find_best_dpll;
11276 else
11277 dev_priv->display.find_dpll = i9xx_find_best_dpll;
11278
affa9354 11279 if (HAS_DDI(dev)) {
0e8ffe1b 11280 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
4c6baa59 11281 dev_priv->display.get_plane_config = ironlake_get_plane_config;
09b4ddf9 11282 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
4f771f10
PZ
11283 dev_priv->display.crtc_enable = haswell_crtc_enable;
11284 dev_priv->display.crtc_disable = haswell_crtc_disable;
6441ab5f 11285 dev_priv->display.off = haswell_crtc_off;
262ca2b0
MR
11286 dev_priv->display.update_primary_plane =
11287 ironlake_update_primary_plane;
09b4ddf9 11288 } else if (HAS_PCH_SPLIT(dev)) {
0e8ffe1b 11289 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
4c6baa59 11290 dev_priv->display.get_plane_config = ironlake_get_plane_config;
f564048e 11291 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
76e5a89c
DV
11292 dev_priv->display.crtc_enable = ironlake_crtc_enable;
11293 dev_priv->display.crtc_disable = ironlake_crtc_disable;
ee7b9f93 11294 dev_priv->display.off = ironlake_crtc_off;
262ca2b0
MR
11295 dev_priv->display.update_primary_plane =
11296 ironlake_update_primary_plane;
89b667f8
JB
11297 } else if (IS_VALLEYVIEW(dev)) {
11298 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
1ad292b5 11299 dev_priv->display.get_plane_config = i9xx_get_plane_config;
89b667f8
JB
11300 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
11301 dev_priv->display.crtc_enable = valleyview_crtc_enable;
11302 dev_priv->display.crtc_disable = i9xx_crtc_disable;
11303 dev_priv->display.off = i9xx_crtc_off;
262ca2b0
MR
11304 dev_priv->display.update_primary_plane =
11305 i9xx_update_primary_plane;
f564048e 11306 } else {
0e8ffe1b 11307 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
1ad292b5 11308 dev_priv->display.get_plane_config = i9xx_get_plane_config;
f564048e 11309 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
76e5a89c
DV
11310 dev_priv->display.crtc_enable = i9xx_crtc_enable;
11311 dev_priv->display.crtc_disable = i9xx_crtc_disable;
ee7b9f93 11312 dev_priv->display.off = i9xx_crtc_off;
262ca2b0
MR
11313 dev_priv->display.update_primary_plane =
11314 i9xx_update_primary_plane;
f564048e 11315 }
e70236a8 11316
e70236a8 11317 /* Returns the core display clock speed */
25eb05fc
JB
11318 if (IS_VALLEYVIEW(dev))
11319 dev_priv->display.get_display_clock_speed =
11320 valleyview_get_display_clock_speed;
11321 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
e70236a8
JB
11322 dev_priv->display.get_display_clock_speed =
11323 i945_get_display_clock_speed;
11324 else if (IS_I915G(dev))
11325 dev_priv->display.get_display_clock_speed =
11326 i915_get_display_clock_speed;
257a7ffc 11327 else if (IS_I945GM(dev) || IS_845G(dev))
e70236a8
JB
11328 dev_priv->display.get_display_clock_speed =
11329 i9xx_misc_get_display_clock_speed;
257a7ffc
DV
11330 else if (IS_PINEVIEW(dev))
11331 dev_priv->display.get_display_clock_speed =
11332 pnv_get_display_clock_speed;
e70236a8
JB
11333 else if (IS_I915GM(dev))
11334 dev_priv->display.get_display_clock_speed =
11335 i915gm_get_display_clock_speed;
11336 else if (IS_I865G(dev))
11337 dev_priv->display.get_display_clock_speed =
11338 i865_get_display_clock_speed;
f0f8a9ce 11339 else if (IS_I85X(dev))
e70236a8
JB
11340 dev_priv->display.get_display_clock_speed =
11341 i855_get_display_clock_speed;
11342 else /* 852, 830 */
11343 dev_priv->display.get_display_clock_speed =
11344 i830_get_display_clock_speed;
11345
7f8a8569 11346 if (HAS_PCH_SPLIT(dev)) {
f00a3ddf 11347 if (IS_GEN5(dev)) {
674cf967 11348 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
e0dac65e 11349 dev_priv->display.write_eld = ironlake_write_eld;
1398261a 11350 } else if (IS_GEN6(dev)) {
674cf967 11351 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
e0dac65e 11352 dev_priv->display.write_eld = ironlake_write_eld;
9a952a0d
PZ
11353 dev_priv->display.modeset_global_resources =
11354 snb_modeset_global_resources;
357555c0
JB
11355 } else if (IS_IVYBRIDGE(dev)) {
11356 /* FIXME: detect B0+ stepping and use auto training */
11357 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
e0dac65e 11358 dev_priv->display.write_eld = ironlake_write_eld;
01a415fd
DV
11359 dev_priv->display.modeset_global_resources =
11360 ivb_modeset_global_resources;
4e0bbc31 11361 } else if (IS_HASWELL(dev) || IS_GEN8(dev)) {
c82e4d26 11362 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
83358c85 11363 dev_priv->display.write_eld = haswell_write_eld;
d6dd9eb1
DV
11364 dev_priv->display.modeset_global_resources =
11365 haswell_modeset_global_resources;
a0e63c22 11366 }
6067aaea 11367 } else if (IS_G4X(dev)) {
e0dac65e 11368 dev_priv->display.write_eld = g4x_write_eld;
30a970c6
JB
11369 } else if (IS_VALLEYVIEW(dev)) {
11370 dev_priv->display.modeset_global_resources =
11371 valleyview_modeset_global_resources;
9ca2fe73 11372 dev_priv->display.write_eld = ironlake_write_eld;
e70236a8 11373 }
8c9f3aaf
JB
11374
11375 /* Default just returns -ENODEV to indicate unsupported */
11376 dev_priv->display.queue_flip = intel_default_queue_flip;
11377
11378 switch (INTEL_INFO(dev)->gen) {
11379 case 2:
11380 dev_priv->display.queue_flip = intel_gen2_queue_flip;
11381 break;
11382
11383 case 3:
11384 dev_priv->display.queue_flip = intel_gen3_queue_flip;
11385 break;
11386
11387 case 4:
11388 case 5:
11389 dev_priv->display.queue_flip = intel_gen4_queue_flip;
11390 break;
11391
11392 case 6:
11393 dev_priv->display.queue_flip = intel_gen6_queue_flip;
11394 break;
7c9017e5 11395 case 7:
4e0bbc31 11396 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
7c9017e5
JB
11397 dev_priv->display.queue_flip = intel_gen7_queue_flip;
11398 break;
8c9f3aaf 11399 }
7bd688cd
JN
11400
11401 intel_panel_init_backlight_funcs(dev);
e70236a8
JB
11402}
11403
b690e96c
JB
11404/*
11405 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
11406 * resume, or other times. This quirk makes sure that's the case for
11407 * affected systems.
11408 */
0206e353 11409static void quirk_pipea_force(struct drm_device *dev)
b690e96c
JB
11410{
11411 struct drm_i915_private *dev_priv = dev->dev_private;
11412
11413 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 11414 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
11415}
11416
435793df
KP
11417/*
11418 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
11419 */
11420static void quirk_ssc_force_disable(struct drm_device *dev)
11421{
11422 struct drm_i915_private *dev_priv = dev->dev_private;
11423 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 11424 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
11425}
11426
4dca20ef 11427/*
5a15ab5b
CE
11428 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
11429 * brightness value
4dca20ef
CE
11430 */
11431static void quirk_invert_brightness(struct drm_device *dev)
11432{
11433 struct drm_i915_private *dev_priv = dev->dev_private;
11434 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 11435 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
11436}
11437
b690e96c
JB
11438struct intel_quirk {
11439 int device;
11440 int subsystem_vendor;
11441 int subsystem_device;
11442 void (*hook)(struct drm_device *dev);
11443};
11444
5f85f176
EE
11445/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
11446struct intel_dmi_quirk {
11447 void (*hook)(struct drm_device *dev);
11448 const struct dmi_system_id (*dmi_id_list)[];
11449};
11450
11451static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
11452{
11453 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
11454 return 1;
11455}
11456
11457static const struct intel_dmi_quirk intel_dmi_quirks[] = {
11458 {
11459 .dmi_id_list = &(const struct dmi_system_id[]) {
11460 {
11461 .callback = intel_dmi_reverse_brightness,
11462 .ident = "NCR Corporation",
11463 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
11464 DMI_MATCH(DMI_PRODUCT_NAME, ""),
11465 },
11466 },
11467 { } /* terminating entry */
11468 },
11469 .hook = quirk_invert_brightness,
11470 },
11471};
11472
c43b5634 11473static struct intel_quirk intel_quirks[] = {
b690e96c 11474 /* HP Mini needs pipe A force quirk (LP: #322104) */
0206e353 11475 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
b690e96c 11476
b690e96c
JB
11477 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
11478 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
11479
b690e96c
JB
11480 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
11481 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
11482
a4945f95 11483 /* 830 needs to leave pipe A & dpll A up */
dcdaed6e 11484 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
435793df
KP
11485
11486 /* Lenovo U160 cannot use SSC on LVDS */
11487 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
11488
11489 /* Sony Vaio Y cannot use SSC on LVDS */
11490 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b 11491
be505f64
AH
11492 /* Acer Aspire 5734Z must invert backlight brightness */
11493 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
11494
11495 /* Acer/eMachines G725 */
11496 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
11497
11498 /* Acer/eMachines e725 */
11499 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
11500
11501 /* Acer/Packard Bell NCL20 */
11502 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
11503
11504 /* Acer Aspire 4736Z */
11505 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
0f540c3a
JN
11506
11507 /* Acer Aspire 5336 */
11508 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
b690e96c
JB
11509};
11510
11511static void intel_init_quirks(struct drm_device *dev)
11512{
11513 struct pci_dev *d = dev->pdev;
11514 int i;
11515
11516 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
11517 struct intel_quirk *q = &intel_quirks[i];
11518
11519 if (d->device == q->device &&
11520 (d->subsystem_vendor == q->subsystem_vendor ||
11521 q->subsystem_vendor == PCI_ANY_ID) &&
11522 (d->subsystem_device == q->subsystem_device ||
11523 q->subsystem_device == PCI_ANY_ID))
11524 q->hook(dev);
11525 }
5f85f176
EE
11526 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
11527 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
11528 intel_dmi_quirks[i].hook(dev);
11529 }
b690e96c
JB
11530}
11531
9cce37f4
JB
11532/* Disable the VGA plane that we never use */
11533static void i915_disable_vga(struct drm_device *dev)
11534{
11535 struct drm_i915_private *dev_priv = dev->dev_private;
11536 u8 sr1;
766aa1c4 11537 u32 vga_reg = i915_vgacntrl_reg(dev);
9cce37f4 11538
2b37c616 11539 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
9cce37f4 11540 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 11541 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
11542 sr1 = inb(VGA_SR_DATA);
11543 outb(sr1 | 1<<5, VGA_SR_DATA);
11544 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
11545 udelay(300);
11546
11547 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
11548 POSTING_READ(vga_reg);
11549}
11550
f817586c
DV
11551void intel_modeset_init_hw(struct drm_device *dev)
11552{
a8f78b58
ED
11553 intel_prepare_ddi(dev);
11554
f817586c
DV
11555 intel_init_clock_gating(dev);
11556
5382f5f3 11557 intel_reset_dpio(dev);
40e9cf64 11558
8090c6b9 11559 intel_enable_gt_powersave(dev);
f817586c
DV
11560}
11561
7d708ee4
ID
11562void intel_modeset_suspend_hw(struct drm_device *dev)
11563{
11564 intel_suspend_hw(dev);
11565}
11566
79e53945
JB
11567void intel_modeset_init(struct drm_device *dev)
11568{
652c393a 11569 struct drm_i915_private *dev_priv = dev->dev_private;
1fe47785 11570 int sprite, ret;
8cc87b75 11571 enum pipe pipe;
46f297fb 11572 struct intel_crtc *crtc;
79e53945
JB
11573
11574 drm_mode_config_init(dev);
11575
11576 dev->mode_config.min_width = 0;
11577 dev->mode_config.min_height = 0;
11578
019d96cb
DA
11579 dev->mode_config.preferred_depth = 24;
11580 dev->mode_config.prefer_shadow = 1;
11581
e6ecefaa 11582 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 11583
b690e96c
JB
11584 intel_init_quirks(dev);
11585
1fa61106
ED
11586 intel_init_pm(dev);
11587
e3c74757
BW
11588 if (INTEL_INFO(dev)->num_pipes == 0)
11589 return;
11590
e70236a8
JB
11591 intel_init_display(dev);
11592
a6c45cf0
CW
11593 if (IS_GEN2(dev)) {
11594 dev->mode_config.max_width = 2048;
11595 dev->mode_config.max_height = 2048;
11596 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
11597 dev->mode_config.max_width = 4096;
11598 dev->mode_config.max_height = 4096;
79e53945 11599 } else {
a6c45cf0
CW
11600 dev->mode_config.max_width = 8192;
11601 dev->mode_config.max_height = 8192;
79e53945 11602 }
068be561
DL
11603
11604 if (IS_GEN2(dev)) {
11605 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
11606 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
11607 } else {
11608 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
11609 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
11610 }
11611
5d4545ae 11612 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
79e53945 11613
28c97730 11614 DRM_DEBUG_KMS("%d display pipe%s available.\n",
7eb552ae
BW
11615 INTEL_INFO(dev)->num_pipes,
11616 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
79e53945 11617
8cc87b75
DL
11618 for_each_pipe(pipe) {
11619 intel_crtc_init(dev, pipe);
1fe47785
DL
11620 for_each_sprite(pipe, sprite) {
11621 ret = intel_plane_init(dev, pipe, sprite);
7f1f3851 11622 if (ret)
06da8da2 11623 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
1fe47785 11624 pipe_name(pipe), sprite_name(pipe, sprite), ret);
7f1f3851 11625 }
79e53945
JB
11626 }
11627
f42bb70d 11628 intel_init_dpio(dev);
5382f5f3 11629 intel_reset_dpio(dev);
f42bb70d 11630
79f689aa 11631 intel_cpu_pll_init(dev);
e72f9fbf 11632 intel_shared_dpll_init(dev);
ee7b9f93 11633
9cce37f4
JB
11634 /* Just disable it once at startup */
11635 i915_disable_vga(dev);
79e53945 11636 intel_setup_outputs(dev);
11be49eb
CW
11637
11638 /* Just in case the BIOS is doing something questionable. */
11639 intel_disable_fbc(dev);
fa9fa083 11640
8b687df4 11641 mutex_lock(&dev->mode_config.mutex);
fa9fa083 11642 intel_modeset_setup_hw_state(dev, false);
8b687df4 11643 mutex_unlock(&dev->mode_config.mutex);
46f297fb 11644
d3fcc808 11645 for_each_intel_crtc(dev, crtc) {
46f297fb
JB
11646 if (!crtc->active)
11647 continue;
11648
46f297fb 11649 /*
46f297fb
JB
11650 * Note that reserving the BIOS fb up front prevents us
11651 * from stuffing other stolen allocations like the ring
11652 * on top. This prevents some ugliness at boot time, and
11653 * can even allow for smooth boot transitions if the BIOS
11654 * fb is large enough for the active pipe configuration.
11655 */
11656 if (dev_priv->display.get_plane_config) {
11657 dev_priv->display.get_plane_config(crtc,
11658 &crtc->plane_config);
11659 /*
11660 * If the fb is shared between multiple heads, we'll
11661 * just get the first one.
11662 */
484b41dd 11663 intel_find_plane_obj(crtc, &crtc->plane_config);
46f297fb 11664 }
46f297fb 11665 }
2c7111db
CW
11666}
11667
24929352
DV
11668static void
11669intel_connector_break_all_links(struct intel_connector *connector)
11670{
11671 connector->base.dpms = DRM_MODE_DPMS_OFF;
11672 connector->base.encoder = NULL;
11673 connector->encoder->connectors_active = false;
11674 connector->encoder->base.crtc = NULL;
11675}
11676
7fad798e
DV
11677static void intel_enable_pipe_a(struct drm_device *dev)
11678{
11679 struct intel_connector *connector;
11680 struct drm_connector *crt = NULL;
11681 struct intel_load_detect_pipe load_detect_temp;
11682
11683 /* We can't just switch on the pipe A, we need to set things up with a
11684 * proper mode and output configuration. As a gross hack, enable pipe A
11685 * by enabling the load detect pipe once. */
11686 list_for_each_entry(connector,
11687 &dev->mode_config.connector_list,
11688 base.head) {
11689 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
11690 crt = &connector->base;
11691 break;
11692 }
11693 }
11694
11695 if (!crt)
11696 return;
11697
11698 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
11699 intel_release_load_detect_pipe(crt, &load_detect_temp);
11700
652c393a 11701
7fad798e
DV
11702}
11703
fa555837
DV
11704static bool
11705intel_check_plane_mapping(struct intel_crtc *crtc)
11706{
7eb552ae
BW
11707 struct drm_device *dev = crtc->base.dev;
11708 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837
DV
11709 u32 reg, val;
11710
7eb552ae 11711 if (INTEL_INFO(dev)->num_pipes == 1)
fa555837
DV
11712 return true;
11713
11714 reg = DSPCNTR(!crtc->plane);
11715 val = I915_READ(reg);
11716
11717 if ((val & DISPLAY_PLANE_ENABLE) &&
11718 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
11719 return false;
11720
11721 return true;
11722}
11723
24929352
DV
11724static void intel_sanitize_crtc(struct intel_crtc *crtc)
11725{
11726 struct drm_device *dev = crtc->base.dev;
11727 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837 11728 u32 reg;
24929352 11729
24929352 11730 /* Clear any frame start delays used for debugging left by the BIOS */
3b117c8f 11731 reg = PIPECONF(crtc->config.cpu_transcoder);
24929352
DV
11732 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
11733
11734 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
11735 * disable the crtc (and hence change the state) if it is wrong. Note
11736 * that gen4+ has a fixed plane -> pipe mapping. */
11737 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
11738 struct intel_connector *connector;
11739 bool plane;
11740
24929352
DV
11741 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
11742 crtc->base.base.id);
11743
11744 /* Pipe has the wrong plane attached and the plane is active.
11745 * Temporarily change the plane mapping and disable everything
11746 * ... */
11747 plane = crtc->plane;
11748 crtc->plane = !plane;
11749 dev_priv->display.crtc_disable(&crtc->base);
11750 crtc->plane = plane;
11751
11752 /* ... and break all links. */
11753 list_for_each_entry(connector, &dev->mode_config.connector_list,
11754 base.head) {
11755 if (connector->encoder->base.crtc != &crtc->base)
11756 continue;
11757
11758 intel_connector_break_all_links(connector);
11759 }
11760
11761 WARN_ON(crtc->active);
11762 crtc->base.enabled = false;
11763 }
24929352 11764
7fad798e
DV
11765 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
11766 crtc->pipe == PIPE_A && !crtc->active) {
11767 /* BIOS forgot to enable pipe A, this mostly happens after
11768 * resume. Force-enable the pipe to fix this, the update_dpms
11769 * call below we restore the pipe to the right state, but leave
11770 * the required bits on. */
11771 intel_enable_pipe_a(dev);
11772 }
11773
24929352
DV
11774 /* Adjust the state of the output pipe according to whether we
11775 * have active connectors/encoders. */
11776 intel_crtc_update_dpms(&crtc->base);
11777
11778 if (crtc->active != crtc->base.enabled) {
11779 struct intel_encoder *encoder;
11780
11781 /* This can happen either due to bugs in the get_hw_state
11782 * functions or because the pipe is force-enabled due to the
11783 * pipe A quirk. */
11784 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
11785 crtc->base.base.id,
11786 crtc->base.enabled ? "enabled" : "disabled",
11787 crtc->active ? "enabled" : "disabled");
11788
11789 crtc->base.enabled = crtc->active;
11790
11791 /* Because we only establish the connector -> encoder ->
11792 * crtc links if something is active, this means the
11793 * crtc is now deactivated. Break the links. connector
11794 * -> encoder links are only establish when things are
11795 * actually up, hence no need to break them. */
11796 WARN_ON(crtc->active);
11797
11798 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
11799 WARN_ON(encoder->connectors_active);
11800 encoder->base.crtc = NULL;
11801 }
11802 }
4cc31489
DV
11803 if (crtc->active) {
11804 /*
11805 * We start out with underrun reporting disabled to avoid races.
11806 * For correct bookkeeping mark this on active crtcs.
11807 *
11808 * No protection against concurrent access is required - at
11809 * worst a fifo underrun happens which also sets this to false.
11810 */
11811 crtc->cpu_fifo_underrun_disabled = true;
11812 crtc->pch_fifo_underrun_disabled = true;
11813 }
24929352
DV
11814}
11815
11816static void intel_sanitize_encoder(struct intel_encoder *encoder)
11817{
11818 struct intel_connector *connector;
11819 struct drm_device *dev = encoder->base.dev;
11820
11821 /* We need to check both for a crtc link (meaning that the
11822 * encoder is active and trying to read from a pipe) and the
11823 * pipe itself being active. */
11824 bool has_active_crtc = encoder->base.crtc &&
11825 to_intel_crtc(encoder->base.crtc)->active;
11826
11827 if (encoder->connectors_active && !has_active_crtc) {
11828 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
11829 encoder->base.base.id,
11830 drm_get_encoder_name(&encoder->base));
11831
11832 /* Connector is active, but has no active pipe. This is
11833 * fallout from our resume register restoring. Disable
11834 * the encoder manually again. */
11835 if (encoder->base.crtc) {
11836 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
11837 encoder->base.base.id,
11838 drm_get_encoder_name(&encoder->base));
11839 encoder->disable(encoder);
11840 }
11841
11842 /* Inconsistent output/port/pipe state happens presumably due to
11843 * a bug in one of the get_hw_state functions. Or someplace else
11844 * in our code, like the register restore mess on resume. Clamp
11845 * things to off as a safer default. */
11846 list_for_each_entry(connector,
11847 &dev->mode_config.connector_list,
11848 base.head) {
11849 if (connector->encoder != encoder)
11850 continue;
11851
11852 intel_connector_break_all_links(connector);
11853 }
11854 }
11855 /* Enabled encoders without active connectors will be fixed in
11856 * the crtc fixup. */
11857}
11858
04098753 11859void i915_redisable_vga_power_on(struct drm_device *dev)
0fde901f
KM
11860{
11861 struct drm_i915_private *dev_priv = dev->dev_private;
766aa1c4 11862 u32 vga_reg = i915_vgacntrl_reg(dev);
0fde901f 11863
04098753
ID
11864 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
11865 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
11866 i915_disable_vga(dev);
11867 }
11868}
11869
11870void i915_redisable_vga(struct drm_device *dev)
11871{
11872 struct drm_i915_private *dev_priv = dev->dev_private;
11873
8dc8a27c
PZ
11874 /* This function can be called both from intel_modeset_setup_hw_state or
11875 * at a very early point in our resume sequence, where the power well
11876 * structures are not yet restored. Since this function is at a very
11877 * paranoid "someone might have enabled VGA while we were not looking"
11878 * level, just check if the power well is enabled instead of trying to
11879 * follow the "don't touch the power well if we don't need it" policy
11880 * the rest of the driver uses. */
04098753 11881 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_VGA))
8dc8a27c
PZ
11882 return;
11883
04098753 11884 i915_redisable_vga_power_on(dev);
0fde901f
KM
11885}
11886
98ec7739
VS
11887static bool primary_get_hw_state(struct intel_crtc *crtc)
11888{
11889 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
11890
11891 if (!crtc->active)
11892 return false;
11893
11894 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
11895}
11896
30e984df 11897static void intel_modeset_readout_hw_state(struct drm_device *dev)
24929352
DV
11898{
11899 struct drm_i915_private *dev_priv = dev->dev_private;
11900 enum pipe pipe;
24929352
DV
11901 struct intel_crtc *crtc;
11902 struct intel_encoder *encoder;
11903 struct intel_connector *connector;
5358901f 11904 int i;
24929352 11905
d3fcc808 11906 for_each_intel_crtc(dev, crtc) {
88adfff1 11907 memset(&crtc->config, 0, sizeof(crtc->config));
3b117c8f 11908
9953599b
DV
11909 crtc->config.quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
11910
0e8ffe1b
DV
11911 crtc->active = dev_priv->display.get_pipe_config(crtc,
11912 &crtc->config);
24929352
DV
11913
11914 crtc->base.enabled = crtc->active;
98ec7739 11915 crtc->primary_enabled = primary_get_hw_state(crtc);
24929352
DV
11916
11917 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
11918 crtc->base.base.id,
11919 crtc->active ? "enabled" : "disabled");
11920 }
11921
5358901f 11922 /* FIXME: Smash this into the new shared dpll infrastructure. */
affa9354 11923 if (HAS_DDI(dev))
6441ab5f
PZ
11924 intel_ddi_setup_hw_pll_state(dev);
11925
5358901f
DV
11926 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
11927 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
11928
11929 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
11930 pll->active = 0;
d3fcc808 11931 for_each_intel_crtc(dev, crtc) {
5358901f
DV
11932 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
11933 pll->active++;
11934 }
11935 pll->refcount = pll->active;
11936
35c95375
DV
11937 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
11938 pll->name, pll->refcount, pll->on);
5358901f
DV
11939 }
11940
24929352
DV
11941 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
11942 base.head) {
11943 pipe = 0;
11944
11945 if (encoder->get_hw_state(encoder, &pipe)) {
045ac3b5
JB
11946 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
11947 encoder->base.crtc = &crtc->base;
1d37b689 11948 encoder->get_config(encoder, &crtc->config);
24929352
DV
11949 } else {
11950 encoder->base.crtc = NULL;
11951 }
11952
11953 encoder->connectors_active = false;
6f2bcceb 11954 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
24929352
DV
11955 encoder->base.base.id,
11956 drm_get_encoder_name(&encoder->base),
11957 encoder->base.crtc ? "enabled" : "disabled",
6f2bcceb 11958 pipe_name(pipe));
24929352
DV
11959 }
11960
11961 list_for_each_entry(connector, &dev->mode_config.connector_list,
11962 base.head) {
11963 if (connector->get_hw_state(connector)) {
11964 connector->base.dpms = DRM_MODE_DPMS_ON;
11965 connector->encoder->connectors_active = true;
11966 connector->base.encoder = &connector->encoder->base;
11967 } else {
11968 connector->base.dpms = DRM_MODE_DPMS_OFF;
11969 connector->base.encoder = NULL;
11970 }
11971 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
11972 connector->base.base.id,
11973 drm_get_connector_name(&connector->base),
11974 connector->base.encoder ? "enabled" : "disabled");
11975 }
30e984df
DV
11976}
11977
11978/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
11979 * and i915 state tracking structures. */
11980void intel_modeset_setup_hw_state(struct drm_device *dev,
11981 bool force_restore)
11982{
11983 struct drm_i915_private *dev_priv = dev->dev_private;
11984 enum pipe pipe;
30e984df
DV
11985 struct intel_crtc *crtc;
11986 struct intel_encoder *encoder;
35c95375 11987 int i;
30e984df
DV
11988
11989 intel_modeset_readout_hw_state(dev);
24929352 11990
babea61d
JB
11991 /*
11992 * Now that we have the config, copy it to each CRTC struct
11993 * Note that this could go away if we move to using crtc_config
11994 * checking everywhere.
11995 */
d3fcc808 11996 for_each_intel_crtc(dev, crtc) {
d330a953 11997 if (crtc->active && i915.fastboot) {
f6a83288 11998 intel_mode_from_pipe_config(&crtc->base.mode, &crtc->config);
babea61d
JB
11999 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
12000 crtc->base.base.id);
12001 drm_mode_debug_printmodeline(&crtc->base.mode);
12002 }
12003 }
12004
24929352
DV
12005 /* HW state is read out, now we need to sanitize this mess. */
12006 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12007 base.head) {
12008 intel_sanitize_encoder(encoder);
12009 }
12010
12011 for_each_pipe(pipe) {
12012 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12013 intel_sanitize_crtc(crtc);
c0b03411 12014 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
24929352 12015 }
9a935856 12016
35c95375
DV
12017 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12018 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12019
12020 if (!pll->on || pll->active)
12021 continue;
12022
12023 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
12024
12025 pll->disable(dev_priv, pll);
12026 pll->on = false;
12027 }
12028
96f90c54 12029 if (HAS_PCH_SPLIT(dev))
243e6a44
VS
12030 ilk_wm_get_hw_state(dev);
12031
45e2b5f6 12032 if (force_restore) {
7d0bc1ea
VS
12033 i915_redisable_vga(dev);
12034
f30da187
DV
12035 /*
12036 * We need to use raw interfaces for restoring state to avoid
12037 * checking (bogus) intermediate states.
12038 */
45e2b5f6 12039 for_each_pipe(pipe) {
b5644d05
JB
12040 struct drm_crtc *crtc =
12041 dev_priv->pipe_to_crtc_mapping[pipe];
f30da187
DV
12042
12043 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
f4510a27 12044 crtc->primary->fb);
45e2b5f6
DV
12045 }
12046 } else {
12047 intel_modeset_update_staged_output_state(dev);
12048 }
8af6cf88
DV
12049
12050 intel_modeset_check_state(dev);
2c7111db
CW
12051}
12052
12053void intel_modeset_gem_init(struct drm_device *dev)
12054{
484b41dd
JB
12055 struct drm_crtc *c;
12056 struct intel_framebuffer *fb;
12057
ae48434c
ID
12058 mutex_lock(&dev->struct_mutex);
12059 intel_init_gt_powersave(dev);
12060 mutex_unlock(&dev->struct_mutex);
12061
1833b134 12062 intel_modeset_init_hw(dev);
02e792fb
DV
12063
12064 intel_setup_overlay(dev);
484b41dd
JB
12065
12066 /*
12067 * Make sure any fbs we allocated at startup are properly
12068 * pinned & fenced. When we do the allocation it's too early
12069 * for this.
12070 */
12071 mutex_lock(&dev->struct_mutex);
70e1e0ec 12072 for_each_crtc(dev, c) {
66e514c1 12073 if (!c->primary->fb)
484b41dd
JB
12074 continue;
12075
66e514c1 12076 fb = to_intel_framebuffer(c->primary->fb);
484b41dd
JB
12077 if (intel_pin_and_fence_fb_obj(dev, fb->obj, NULL)) {
12078 DRM_ERROR("failed to pin boot fb on pipe %d\n",
12079 to_intel_crtc(c)->pipe);
66e514c1
DA
12080 drm_framebuffer_unreference(c->primary->fb);
12081 c->primary->fb = NULL;
484b41dd
JB
12082 }
12083 }
12084 mutex_unlock(&dev->struct_mutex);
79e53945
JB
12085}
12086
4932e2c3
ID
12087void intel_connector_unregister(struct intel_connector *intel_connector)
12088{
12089 struct drm_connector *connector = &intel_connector->base;
12090
12091 intel_panel_destroy_backlight(connector);
12092 drm_sysfs_connector_remove(connector);
12093}
12094
79e53945
JB
12095void intel_modeset_cleanup(struct drm_device *dev)
12096{
652c393a
JB
12097 struct drm_i915_private *dev_priv = dev->dev_private;
12098 struct drm_crtc *crtc;
d9255d57 12099 struct drm_connector *connector;
652c393a 12100
fd0c0642
DV
12101 /*
12102 * Interrupts and polling as the first thing to avoid creating havoc.
12103 * Too much stuff here (turning of rps, connectors, ...) would
12104 * experience fancy races otherwise.
12105 */
12106 drm_irq_uninstall(dev);
12107 cancel_work_sync(&dev_priv->hotplug_work);
12108 /*
12109 * Due to the hpd irq storm handling the hotplug work can re-arm the
12110 * poll handlers. Hence disable polling after hpd handling is shut down.
12111 */
f87ea761 12112 drm_kms_helper_poll_fini(dev);
fd0c0642 12113
652c393a
JB
12114 mutex_lock(&dev->struct_mutex);
12115
723bfd70
JB
12116 intel_unregister_dsm_handler();
12117
70e1e0ec 12118 for_each_crtc(dev, crtc) {
652c393a 12119 /* Skip inactive CRTCs */
f4510a27 12120 if (!crtc->primary->fb)
652c393a
JB
12121 continue;
12122
3dec0095 12123 intel_increase_pllclock(crtc);
652c393a
JB
12124 }
12125
973d04f9 12126 intel_disable_fbc(dev);
e70236a8 12127
8090c6b9 12128 intel_disable_gt_powersave(dev);
0cdab21f 12129
930ebb46
DV
12130 ironlake_teardown_rc6(dev);
12131
69341a5e
KH
12132 mutex_unlock(&dev->struct_mutex);
12133
1630fe75
CW
12134 /* flush any delayed tasks or pending work */
12135 flush_scheduled_work();
12136
db31af1d
JN
12137 /* destroy the backlight and sysfs files before encoders/connectors */
12138 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4932e2c3
ID
12139 struct intel_connector *intel_connector;
12140
12141 intel_connector = to_intel_connector(connector);
12142 intel_connector->unregister(intel_connector);
db31af1d 12143 }
d9255d57 12144
79e53945 12145 drm_mode_config_cleanup(dev);
4d7bb011
DV
12146
12147 intel_cleanup_overlay(dev);
ae48434c
ID
12148
12149 mutex_lock(&dev->struct_mutex);
12150 intel_cleanup_gt_powersave(dev);
12151 mutex_unlock(&dev->struct_mutex);
79e53945
JB
12152}
12153
f1c79df3
ZW
12154/*
12155 * Return which encoder is currently attached for connector.
12156 */
df0e9248 12157struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
79e53945 12158{
df0e9248
CW
12159 return &intel_attached_encoder(connector)->base;
12160}
f1c79df3 12161
df0e9248
CW
12162void intel_connector_attach_encoder(struct intel_connector *connector,
12163 struct intel_encoder *encoder)
12164{
12165 connector->encoder = encoder;
12166 drm_mode_connector_attach_encoder(&connector->base,
12167 &encoder->base);
79e53945 12168}
28d52043
DA
12169
12170/*
12171 * set vga decode state - true == enable VGA decode
12172 */
12173int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
12174{
12175 struct drm_i915_private *dev_priv = dev->dev_private;
a885b3cc 12176 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
28d52043
DA
12177 u16 gmch_ctrl;
12178
75fa041d
CW
12179 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
12180 DRM_ERROR("failed to read control word\n");
12181 return -EIO;
12182 }
12183
c0cc8a55
CW
12184 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
12185 return 0;
12186
28d52043
DA
12187 if (state)
12188 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
12189 else
12190 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
75fa041d
CW
12191
12192 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
12193 DRM_ERROR("failed to write control word\n");
12194 return -EIO;
12195 }
12196
28d52043
DA
12197 return 0;
12198}
c4a1d9e4 12199
c4a1d9e4 12200struct intel_display_error_state {
ff57f1b0
PZ
12201
12202 u32 power_well_driver;
12203
63b66e5b
CW
12204 int num_transcoders;
12205
c4a1d9e4
CW
12206 struct intel_cursor_error_state {
12207 u32 control;
12208 u32 position;
12209 u32 base;
12210 u32 size;
52331309 12211 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
12212
12213 struct intel_pipe_error_state {
ddf9c536 12214 bool power_domain_on;
c4a1d9e4 12215 u32 source;
f301b1e1 12216 u32 stat;
52331309 12217 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
12218
12219 struct intel_plane_error_state {
12220 u32 control;
12221 u32 stride;
12222 u32 size;
12223 u32 pos;
12224 u32 addr;
12225 u32 surface;
12226 u32 tile_offset;
52331309 12227 } plane[I915_MAX_PIPES];
63b66e5b
CW
12228
12229 struct intel_transcoder_error_state {
ddf9c536 12230 bool power_domain_on;
63b66e5b
CW
12231 enum transcoder cpu_transcoder;
12232
12233 u32 conf;
12234
12235 u32 htotal;
12236 u32 hblank;
12237 u32 hsync;
12238 u32 vtotal;
12239 u32 vblank;
12240 u32 vsync;
12241 } transcoder[4];
c4a1d9e4
CW
12242};
12243
12244struct intel_display_error_state *
12245intel_display_capture_error_state(struct drm_device *dev)
12246{
fbee40df 12247 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4 12248 struct intel_display_error_state *error;
63b66e5b
CW
12249 int transcoders[] = {
12250 TRANSCODER_A,
12251 TRANSCODER_B,
12252 TRANSCODER_C,
12253 TRANSCODER_EDP,
12254 };
c4a1d9e4
CW
12255 int i;
12256
63b66e5b
CW
12257 if (INTEL_INFO(dev)->num_pipes == 0)
12258 return NULL;
12259
9d1cb914 12260 error = kzalloc(sizeof(*error), GFP_ATOMIC);
c4a1d9e4
CW
12261 if (error == NULL)
12262 return NULL;
12263
190be112 12264 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
ff57f1b0
PZ
12265 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
12266
52331309 12267 for_each_pipe(i) {
ddf9c536 12268 error->pipe[i].power_domain_on =
da7e29bd
ID
12269 intel_display_power_enabled_sw(dev_priv,
12270 POWER_DOMAIN_PIPE(i));
ddf9c536 12271 if (!error->pipe[i].power_domain_on)
9d1cb914
PZ
12272 continue;
12273
a18c4c3d
PZ
12274 if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev)) {
12275 error->cursor[i].control = I915_READ(CURCNTR(i));
12276 error->cursor[i].position = I915_READ(CURPOS(i));
12277 error->cursor[i].base = I915_READ(CURBASE(i));
12278 } else {
12279 error->cursor[i].control = I915_READ(CURCNTR_IVB(i));
12280 error->cursor[i].position = I915_READ(CURPOS_IVB(i));
12281 error->cursor[i].base = I915_READ(CURBASE_IVB(i));
12282 }
c4a1d9e4
CW
12283
12284 error->plane[i].control = I915_READ(DSPCNTR(i));
12285 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
80ca378b 12286 if (INTEL_INFO(dev)->gen <= 3) {
51889b35 12287 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
12288 error->plane[i].pos = I915_READ(DSPPOS(i));
12289 }
ca291363
PZ
12290 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
12291 error->plane[i].addr = I915_READ(DSPADDR(i));
c4a1d9e4
CW
12292 if (INTEL_INFO(dev)->gen >= 4) {
12293 error->plane[i].surface = I915_READ(DSPSURF(i));
12294 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
12295 }
12296
c4a1d9e4 12297 error->pipe[i].source = I915_READ(PIPESRC(i));
f301b1e1
ID
12298
12299 if (!HAS_PCH_SPLIT(dev))
12300 error->pipe[i].stat = I915_READ(PIPESTAT(i));
63b66e5b
CW
12301 }
12302
12303 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
12304 if (HAS_DDI(dev_priv->dev))
12305 error->num_transcoders++; /* Account for eDP. */
12306
12307 for (i = 0; i < error->num_transcoders; i++) {
12308 enum transcoder cpu_transcoder = transcoders[i];
12309
ddf9c536 12310 error->transcoder[i].power_domain_on =
da7e29bd 12311 intel_display_power_enabled_sw(dev_priv,
38cc1daf 12312 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
ddf9c536 12313 if (!error->transcoder[i].power_domain_on)
9d1cb914
PZ
12314 continue;
12315
63b66e5b
CW
12316 error->transcoder[i].cpu_transcoder = cpu_transcoder;
12317
12318 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
12319 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
12320 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
12321 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
12322 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
12323 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
12324 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
12325 }
12326
12327 return error;
12328}
12329
edc3d884
MK
12330#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
12331
c4a1d9e4 12332void
edc3d884 12333intel_display_print_error_state(struct drm_i915_error_state_buf *m,
c4a1d9e4
CW
12334 struct drm_device *dev,
12335 struct intel_display_error_state *error)
12336{
12337 int i;
12338
63b66e5b
CW
12339 if (!error)
12340 return;
12341
edc3d884 12342 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
190be112 12343 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
edc3d884 12344 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 12345 error->power_well_driver);
52331309 12346 for_each_pipe(i) {
edc3d884 12347 err_printf(m, "Pipe [%d]:\n", i);
ddf9c536
ID
12348 err_printf(m, " Power: %s\n",
12349 error->pipe[i].power_domain_on ? "on" : "off");
edc3d884 12350 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
f301b1e1 12351 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
edc3d884
MK
12352
12353 err_printf(m, "Plane [%d]:\n", i);
12354 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
12355 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
80ca378b 12356 if (INTEL_INFO(dev)->gen <= 3) {
edc3d884
MK
12357 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
12358 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 12359 }
4b71a570 12360 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
edc3d884 12361 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
c4a1d9e4 12362 if (INTEL_INFO(dev)->gen >= 4) {
edc3d884
MK
12363 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
12364 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
12365 }
12366
edc3d884
MK
12367 err_printf(m, "Cursor [%d]:\n", i);
12368 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
12369 err_printf(m, " POS: %08x\n", error->cursor[i].position);
12370 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4 12371 }
63b66e5b
CW
12372
12373 for (i = 0; i < error->num_transcoders; i++) {
1cf84bb6 12374 err_printf(m, "CPU transcoder: %c\n",
63b66e5b 12375 transcoder_name(error->transcoder[i].cpu_transcoder));
ddf9c536
ID
12376 err_printf(m, " Power: %s\n",
12377 error->transcoder[i].power_domain_on ? "on" : "off");
63b66e5b
CW
12378 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
12379 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
12380 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
12381 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
12382 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
12383 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
12384 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
12385 }
c4a1d9e4 12386}