]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/i915/intel_display.c
drm/i915: Make intel_dsi_init() return void
[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);
bdd4b6a6 69static void vlv_prepare_pll(struct intel_crtc *crtc);
e7457a9a 70
79e53945 71typedef struct {
0206e353 72 int min, max;
79e53945
JB
73} intel_range_t;
74
75typedef struct {
0206e353
AJ
76 int dot_limit;
77 int p2_slow, p2_fast;
79e53945
JB
78} intel_p2_t;
79
d4906093
ML
80typedef struct intel_limit intel_limit_t;
81struct intel_limit {
0206e353
AJ
82 intel_range_t dot, vco, n, m, m1, m2, p, p1;
83 intel_p2_t p2;
d4906093 84};
79e53945 85
d2acd215
DV
86int
87intel_pch_rawclk(struct drm_device *dev)
88{
89 struct drm_i915_private *dev_priv = dev->dev_private;
90
91 WARN_ON(!HAS_PCH_SPLIT(dev));
92
93 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
94}
95
021357ac
CW
96static inline u32 /* units of 100MHz */
97intel_fdi_link_freq(struct drm_device *dev)
98{
8b99e68c
CW
99 if (IS_GEN5(dev)) {
100 struct drm_i915_private *dev_priv = dev->dev_private;
101 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
102 } else
103 return 27;
021357ac
CW
104}
105
5d536e28 106static const intel_limit_t intel_limits_i8xx_dac = {
0206e353 107 .dot = { .min = 25000, .max = 350000 },
9c333719 108 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 109 .n = { .min = 2, .max = 16 },
0206e353
AJ
110 .m = { .min = 96, .max = 140 },
111 .m1 = { .min = 18, .max = 26 },
112 .m2 = { .min = 6, .max = 16 },
113 .p = { .min = 4, .max = 128 },
114 .p1 = { .min = 2, .max = 33 },
273e27ca
EA
115 .p2 = { .dot_limit = 165000,
116 .p2_slow = 4, .p2_fast = 2 },
e4b36699
KP
117};
118
5d536e28
DV
119static const intel_limit_t intel_limits_i8xx_dvo = {
120 .dot = { .min = 25000, .max = 350000 },
9c333719 121 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 122 .n = { .min = 2, .max = 16 },
5d536e28
DV
123 .m = { .min = 96, .max = 140 },
124 .m1 = { .min = 18, .max = 26 },
125 .m2 = { .min = 6, .max = 16 },
126 .p = { .min = 4, .max = 128 },
127 .p1 = { .min = 2, .max = 33 },
128 .p2 = { .dot_limit = 165000,
129 .p2_slow = 4, .p2_fast = 4 },
130};
131
e4b36699 132static const intel_limit_t intel_limits_i8xx_lvds = {
0206e353 133 .dot = { .min = 25000, .max = 350000 },
9c333719 134 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 135 .n = { .min = 2, .max = 16 },
0206e353
AJ
136 .m = { .min = 96, .max = 140 },
137 .m1 = { .min = 18, .max = 26 },
138 .m2 = { .min = 6, .max = 16 },
139 .p = { .min = 4, .max = 128 },
140 .p1 = { .min = 1, .max = 6 },
273e27ca
EA
141 .p2 = { .dot_limit = 165000,
142 .p2_slow = 14, .p2_fast = 7 },
e4b36699 143};
273e27ca 144
e4b36699 145static const intel_limit_t intel_limits_i9xx_sdvo = {
0206e353
AJ
146 .dot = { .min = 20000, .max = 400000 },
147 .vco = { .min = 1400000, .max = 2800000 },
148 .n = { .min = 1, .max = 6 },
149 .m = { .min = 70, .max = 120 },
4f7dfb67
PJ
150 .m1 = { .min = 8, .max = 18 },
151 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
152 .p = { .min = 5, .max = 80 },
153 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
154 .p2 = { .dot_limit = 200000,
155 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
156};
157
158static const intel_limit_t intel_limits_i9xx_lvds = {
0206e353
AJ
159 .dot = { .min = 20000, .max = 400000 },
160 .vco = { .min = 1400000, .max = 2800000 },
161 .n = { .min = 1, .max = 6 },
162 .m = { .min = 70, .max = 120 },
53a7d2d1
PJ
163 .m1 = { .min = 8, .max = 18 },
164 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
165 .p = { .min = 7, .max = 98 },
166 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
167 .p2 = { .dot_limit = 112000,
168 .p2_slow = 14, .p2_fast = 7 },
e4b36699
KP
169};
170
273e27ca 171
e4b36699 172static const intel_limit_t intel_limits_g4x_sdvo = {
273e27ca
EA
173 .dot = { .min = 25000, .max = 270000 },
174 .vco = { .min = 1750000, .max = 3500000},
175 .n = { .min = 1, .max = 4 },
176 .m = { .min = 104, .max = 138 },
177 .m1 = { .min = 17, .max = 23 },
178 .m2 = { .min = 5, .max = 11 },
179 .p = { .min = 10, .max = 30 },
180 .p1 = { .min = 1, .max = 3},
181 .p2 = { .dot_limit = 270000,
182 .p2_slow = 10,
183 .p2_fast = 10
044c7c41 184 },
e4b36699
KP
185};
186
187static const intel_limit_t intel_limits_g4x_hdmi = {
273e27ca
EA
188 .dot = { .min = 22000, .max = 400000 },
189 .vco = { .min = 1750000, .max = 3500000},
190 .n = { .min = 1, .max = 4 },
191 .m = { .min = 104, .max = 138 },
192 .m1 = { .min = 16, .max = 23 },
193 .m2 = { .min = 5, .max = 11 },
194 .p = { .min = 5, .max = 80 },
195 .p1 = { .min = 1, .max = 8},
196 .p2 = { .dot_limit = 165000,
197 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
198};
199
200static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
273e27ca
EA
201 .dot = { .min = 20000, .max = 115000 },
202 .vco = { .min = 1750000, .max = 3500000 },
203 .n = { .min = 1, .max = 3 },
204 .m = { .min = 104, .max = 138 },
205 .m1 = { .min = 17, .max = 23 },
206 .m2 = { .min = 5, .max = 11 },
207 .p = { .min = 28, .max = 112 },
208 .p1 = { .min = 2, .max = 8 },
209 .p2 = { .dot_limit = 0,
210 .p2_slow = 14, .p2_fast = 14
044c7c41 211 },
e4b36699
KP
212};
213
214static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
273e27ca
EA
215 .dot = { .min = 80000, .max = 224000 },
216 .vco = { .min = 1750000, .max = 3500000 },
217 .n = { .min = 1, .max = 3 },
218 .m = { .min = 104, .max = 138 },
219 .m1 = { .min = 17, .max = 23 },
220 .m2 = { .min = 5, .max = 11 },
221 .p = { .min = 14, .max = 42 },
222 .p1 = { .min = 2, .max = 6 },
223 .p2 = { .dot_limit = 0,
224 .p2_slow = 7, .p2_fast = 7
044c7c41 225 },
e4b36699
KP
226};
227
f2b115e6 228static const intel_limit_t intel_limits_pineview_sdvo = {
0206e353
AJ
229 .dot = { .min = 20000, .max = 400000},
230 .vco = { .min = 1700000, .max = 3500000 },
273e27ca 231 /* Pineview's Ncounter is a ring counter */
0206e353
AJ
232 .n = { .min = 3, .max = 6 },
233 .m = { .min = 2, .max = 256 },
273e27ca 234 /* Pineview only has one combined m divider, which we treat as m2. */
0206e353
AJ
235 .m1 = { .min = 0, .max = 0 },
236 .m2 = { .min = 0, .max = 254 },
237 .p = { .min = 5, .max = 80 },
238 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
239 .p2 = { .dot_limit = 200000,
240 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
241};
242
f2b115e6 243static const intel_limit_t intel_limits_pineview_lvds = {
0206e353
AJ
244 .dot = { .min = 20000, .max = 400000 },
245 .vco = { .min = 1700000, .max = 3500000 },
246 .n = { .min = 3, .max = 6 },
247 .m = { .min = 2, .max = 256 },
248 .m1 = { .min = 0, .max = 0 },
249 .m2 = { .min = 0, .max = 254 },
250 .p = { .min = 7, .max = 112 },
251 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
252 .p2 = { .dot_limit = 112000,
253 .p2_slow = 14, .p2_fast = 14 },
e4b36699
KP
254};
255
273e27ca
EA
256/* Ironlake / Sandybridge
257 *
258 * We calculate clock using (register_value + 2) for N/M1/M2, so here
259 * the range value for them is (actual_value - 2).
260 */
b91ad0ec 261static const intel_limit_t intel_limits_ironlake_dac = {
273e27ca
EA
262 .dot = { .min = 25000, .max = 350000 },
263 .vco = { .min = 1760000, .max = 3510000 },
264 .n = { .min = 1, .max = 5 },
265 .m = { .min = 79, .max = 127 },
266 .m1 = { .min = 12, .max = 22 },
267 .m2 = { .min = 5, .max = 9 },
268 .p = { .min = 5, .max = 80 },
269 .p1 = { .min = 1, .max = 8 },
270 .p2 = { .dot_limit = 225000,
271 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
272};
273
b91ad0ec 274static const intel_limit_t intel_limits_ironlake_single_lvds = {
273e27ca
EA
275 .dot = { .min = 25000, .max = 350000 },
276 .vco = { .min = 1760000, .max = 3510000 },
277 .n = { .min = 1, .max = 3 },
278 .m = { .min = 79, .max = 118 },
279 .m1 = { .min = 12, .max = 22 },
280 .m2 = { .min = 5, .max = 9 },
281 .p = { .min = 28, .max = 112 },
282 .p1 = { .min = 2, .max = 8 },
283 .p2 = { .dot_limit = 225000,
284 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
285};
286
287static const intel_limit_t intel_limits_ironlake_dual_lvds = {
273e27ca
EA
288 .dot = { .min = 25000, .max = 350000 },
289 .vco = { .min = 1760000, .max = 3510000 },
290 .n = { .min = 1, .max = 3 },
291 .m = { .min = 79, .max = 127 },
292 .m1 = { .min = 12, .max = 22 },
293 .m2 = { .min = 5, .max = 9 },
294 .p = { .min = 14, .max = 56 },
295 .p1 = { .min = 2, .max = 8 },
296 .p2 = { .dot_limit = 225000,
297 .p2_slow = 7, .p2_fast = 7 },
b91ad0ec
ZW
298};
299
273e27ca 300/* LVDS 100mhz refclk limits. */
b91ad0ec 301static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
273e27ca
EA
302 .dot = { .min = 25000, .max = 350000 },
303 .vco = { .min = 1760000, .max = 3510000 },
304 .n = { .min = 1, .max = 2 },
305 .m = { .min = 79, .max = 126 },
306 .m1 = { .min = 12, .max = 22 },
307 .m2 = { .min = 5, .max = 9 },
308 .p = { .min = 28, .max = 112 },
0206e353 309 .p1 = { .min = 2, .max = 8 },
273e27ca
EA
310 .p2 = { .dot_limit = 225000,
311 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
312};
313
314static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
273e27ca
EA
315 .dot = { .min = 25000, .max = 350000 },
316 .vco = { .min = 1760000, .max = 3510000 },
317 .n = { .min = 1, .max = 3 },
318 .m = { .min = 79, .max = 126 },
319 .m1 = { .min = 12, .max = 22 },
320 .m2 = { .min = 5, .max = 9 },
321 .p = { .min = 14, .max = 42 },
0206e353 322 .p1 = { .min = 2, .max = 6 },
273e27ca
EA
323 .p2 = { .dot_limit = 225000,
324 .p2_slow = 7, .p2_fast = 7 },
4547668a
ZY
325};
326
dc730512 327static const intel_limit_t intel_limits_vlv = {
f01b7962
VS
328 /*
329 * These are the data rate limits (measured in fast clocks)
330 * since those are the strictest limits we have. The fast
331 * clock and actual rate limits are more relaxed, so checking
332 * them would make no difference.
333 */
334 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
75e53986 335 .vco = { .min = 4000000, .max = 6000000 },
a0c4da24 336 .n = { .min = 1, .max = 7 },
a0c4da24
JB
337 .m1 = { .min = 2, .max = 3 },
338 .m2 = { .min = 11, .max = 156 },
b99ab663 339 .p1 = { .min = 2, .max = 3 },
5fdc9c49 340 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
a0c4da24
JB
341};
342
ef9348c8
CML
343static const intel_limit_t intel_limits_chv = {
344 /*
345 * These are the data rate limits (measured in fast clocks)
346 * since those are the strictest limits we have. The fast
347 * clock and actual rate limits are more relaxed, so checking
348 * them would make no difference.
349 */
350 .dot = { .min = 25000 * 5, .max = 540000 * 5},
351 .vco = { .min = 4860000, .max = 6700000 },
352 .n = { .min = 1, .max = 1 },
353 .m1 = { .min = 2, .max = 2 },
354 .m2 = { .min = 24 << 22, .max = 175 << 22 },
355 .p1 = { .min = 2, .max = 4 },
356 .p2 = { .p2_slow = 1, .p2_fast = 14 },
357};
358
6b4bf1c4
VS
359static void vlv_clock(int refclk, intel_clock_t *clock)
360{
361 clock->m = clock->m1 * clock->m2;
362 clock->p = clock->p1 * clock->p2;
ed5ca77e
VS
363 if (WARN_ON(clock->n == 0 || clock->p == 0))
364 return;
fb03ac01
VS
365 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
366 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
6b4bf1c4
VS
367}
368
e0638cdf
PZ
369/**
370 * Returns whether any output on the specified pipe is of the specified type
371 */
372static bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
373{
374 struct drm_device *dev = crtc->dev;
375 struct intel_encoder *encoder;
376
377 for_each_encoder_on_crtc(dev, crtc, encoder)
378 if (encoder->type == type)
379 return true;
380
381 return false;
382}
383
1b894b59
CW
384static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
385 int refclk)
2c07245f 386{
b91ad0ec 387 struct drm_device *dev = crtc->dev;
2c07245f 388 const intel_limit_t *limit;
b91ad0ec
ZW
389
390 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 391 if (intel_is_dual_link_lvds(dev)) {
1b894b59 392 if (refclk == 100000)
b91ad0ec
ZW
393 limit = &intel_limits_ironlake_dual_lvds_100m;
394 else
395 limit = &intel_limits_ironlake_dual_lvds;
396 } else {
1b894b59 397 if (refclk == 100000)
b91ad0ec
ZW
398 limit = &intel_limits_ironlake_single_lvds_100m;
399 else
400 limit = &intel_limits_ironlake_single_lvds;
401 }
c6bb3538 402 } else
b91ad0ec 403 limit = &intel_limits_ironlake_dac;
2c07245f
ZW
404
405 return limit;
406}
407
044c7c41
ML
408static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
409{
410 struct drm_device *dev = crtc->dev;
044c7c41
ML
411 const intel_limit_t *limit;
412
413 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 414 if (intel_is_dual_link_lvds(dev))
e4b36699 415 limit = &intel_limits_g4x_dual_channel_lvds;
044c7c41 416 else
e4b36699 417 limit = &intel_limits_g4x_single_channel_lvds;
044c7c41
ML
418 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
419 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
e4b36699 420 limit = &intel_limits_g4x_hdmi;
044c7c41 421 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
e4b36699 422 limit = &intel_limits_g4x_sdvo;
044c7c41 423 } else /* The option is for other outputs */
e4b36699 424 limit = &intel_limits_i9xx_sdvo;
044c7c41
ML
425
426 return limit;
427}
428
1b894b59 429static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
79e53945
JB
430{
431 struct drm_device *dev = crtc->dev;
432 const intel_limit_t *limit;
433
bad720ff 434 if (HAS_PCH_SPLIT(dev))
1b894b59 435 limit = intel_ironlake_limit(crtc, refclk);
2c07245f 436 else if (IS_G4X(dev)) {
044c7c41 437 limit = intel_g4x_limit(crtc);
f2b115e6 438 } else if (IS_PINEVIEW(dev)) {
2177832f 439 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
f2b115e6 440 limit = &intel_limits_pineview_lvds;
2177832f 441 else
f2b115e6 442 limit = &intel_limits_pineview_sdvo;
ef9348c8
CML
443 } else if (IS_CHERRYVIEW(dev)) {
444 limit = &intel_limits_chv;
a0c4da24 445 } else if (IS_VALLEYVIEW(dev)) {
dc730512 446 limit = &intel_limits_vlv;
a6c45cf0
CW
447 } else if (!IS_GEN2(dev)) {
448 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
449 limit = &intel_limits_i9xx_lvds;
450 else
451 limit = &intel_limits_i9xx_sdvo;
79e53945
JB
452 } else {
453 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
e4b36699 454 limit = &intel_limits_i8xx_lvds;
5d536e28 455 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO))
e4b36699 456 limit = &intel_limits_i8xx_dvo;
5d536e28
DV
457 else
458 limit = &intel_limits_i8xx_dac;
79e53945
JB
459 }
460 return limit;
461}
462
f2b115e6
AJ
463/* m1 is reserved as 0 in Pineview, n is a ring counter */
464static void pineview_clock(int refclk, intel_clock_t *clock)
79e53945 465{
2177832f
SL
466 clock->m = clock->m2 + 2;
467 clock->p = clock->p1 * clock->p2;
ed5ca77e
VS
468 if (WARN_ON(clock->n == 0 || clock->p == 0))
469 return;
fb03ac01
VS
470 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
471 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
2177832f
SL
472}
473
7429e9d4
DV
474static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
475{
476 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
477}
478
ac58c3f0 479static void i9xx_clock(int refclk, intel_clock_t *clock)
2177832f 480{
7429e9d4 481 clock->m = i9xx_dpll_compute_m(clock);
79e53945 482 clock->p = clock->p1 * clock->p2;
ed5ca77e
VS
483 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
484 return;
fb03ac01
VS
485 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
486 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
79e53945
JB
487}
488
ef9348c8
CML
489static void chv_clock(int refclk, intel_clock_t *clock)
490{
491 clock->m = clock->m1 * clock->m2;
492 clock->p = clock->p1 * clock->p2;
493 if (WARN_ON(clock->n == 0 || clock->p == 0))
494 return;
495 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
496 clock->n << 22);
497 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
498}
499
7c04d1d9 500#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
79e53945
JB
501/**
502 * Returns whether the given set of divisors are valid for a given refclk with
503 * the given connectors.
504 */
505
1b894b59
CW
506static bool intel_PLL_is_valid(struct drm_device *dev,
507 const intel_limit_t *limit,
508 const intel_clock_t *clock)
79e53945 509{
f01b7962
VS
510 if (clock->n < limit->n.min || limit->n.max < clock->n)
511 INTELPllInvalid("n out of range\n");
79e53945 512 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
0206e353 513 INTELPllInvalid("p1 out of range\n");
79e53945 514 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
0206e353 515 INTELPllInvalid("m2 out of range\n");
79e53945 516 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
0206e353 517 INTELPllInvalid("m1 out of range\n");
f01b7962
VS
518
519 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
520 if (clock->m1 <= clock->m2)
521 INTELPllInvalid("m1 <= m2\n");
522
523 if (!IS_VALLEYVIEW(dev)) {
524 if (clock->p < limit->p.min || limit->p.max < clock->p)
525 INTELPllInvalid("p out of range\n");
526 if (clock->m < limit->m.min || limit->m.max < clock->m)
527 INTELPllInvalid("m out of range\n");
528 }
529
79e53945 530 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
0206e353 531 INTELPllInvalid("vco out of range\n");
79e53945
JB
532 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
533 * connector, etc., rather than just a single range.
534 */
535 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
0206e353 536 INTELPllInvalid("dot out of range\n");
79e53945
JB
537
538 return true;
539}
540
d4906093 541static bool
ee9300bb 542i9xx_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
cec2f356
SP
543 int target, int refclk, intel_clock_t *match_clock,
544 intel_clock_t *best_clock)
79e53945
JB
545{
546 struct drm_device *dev = crtc->dev;
79e53945 547 intel_clock_t clock;
79e53945
JB
548 int err = target;
549
a210b028 550 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
79e53945 551 /*
a210b028
DV
552 * For LVDS just rely on its current settings for dual-channel.
553 * We haven't figured out how to reliably set up different
554 * single/dual channel state, if we even can.
79e53945 555 */
1974cad0 556 if (intel_is_dual_link_lvds(dev))
79e53945
JB
557 clock.p2 = limit->p2.p2_fast;
558 else
559 clock.p2 = limit->p2.p2_slow;
560 } else {
561 if (target < limit->p2.dot_limit)
562 clock.p2 = limit->p2.p2_slow;
563 else
564 clock.p2 = limit->p2.p2_fast;
565 }
566
0206e353 567 memset(best_clock, 0, sizeof(*best_clock));
79e53945 568
42158660
ZY
569 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
570 clock.m1++) {
571 for (clock.m2 = limit->m2.min;
572 clock.m2 <= limit->m2.max; clock.m2++) {
c0efc387 573 if (clock.m2 >= clock.m1)
42158660
ZY
574 break;
575 for (clock.n = limit->n.min;
576 clock.n <= limit->n.max; clock.n++) {
577 for (clock.p1 = limit->p1.min;
578 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
579 int this_err;
580
ac58c3f0
DV
581 i9xx_clock(refclk, &clock);
582 if (!intel_PLL_is_valid(dev, limit,
583 &clock))
584 continue;
585 if (match_clock &&
586 clock.p != match_clock->p)
587 continue;
588
589 this_err = abs(clock.dot - target);
590 if (this_err < err) {
591 *best_clock = clock;
592 err = this_err;
593 }
594 }
595 }
596 }
597 }
598
599 return (err != target);
600}
601
602static bool
ee9300bb
DV
603pnv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
604 int target, int refclk, intel_clock_t *match_clock,
605 intel_clock_t *best_clock)
79e53945
JB
606{
607 struct drm_device *dev = crtc->dev;
79e53945 608 intel_clock_t clock;
79e53945
JB
609 int err = target;
610
a210b028 611 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
79e53945 612 /*
a210b028
DV
613 * For LVDS just rely on its current settings for dual-channel.
614 * We haven't figured out how to reliably set up different
615 * single/dual channel state, if we even can.
79e53945 616 */
1974cad0 617 if (intel_is_dual_link_lvds(dev))
79e53945
JB
618 clock.p2 = limit->p2.p2_fast;
619 else
620 clock.p2 = limit->p2.p2_slow;
621 } else {
622 if (target < limit->p2.dot_limit)
623 clock.p2 = limit->p2.p2_slow;
624 else
625 clock.p2 = limit->p2.p2_fast;
626 }
627
0206e353 628 memset(best_clock, 0, sizeof(*best_clock));
79e53945 629
42158660
ZY
630 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
631 clock.m1++) {
632 for (clock.m2 = limit->m2.min;
633 clock.m2 <= limit->m2.max; clock.m2++) {
42158660
ZY
634 for (clock.n = limit->n.min;
635 clock.n <= limit->n.max; clock.n++) {
636 for (clock.p1 = limit->p1.min;
637 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
638 int this_err;
639
ac58c3f0 640 pineview_clock(refclk, &clock);
1b894b59
CW
641 if (!intel_PLL_is_valid(dev, limit,
642 &clock))
79e53945 643 continue;
cec2f356
SP
644 if (match_clock &&
645 clock.p != match_clock->p)
646 continue;
79e53945
JB
647
648 this_err = abs(clock.dot - target);
649 if (this_err < err) {
650 *best_clock = clock;
651 err = this_err;
652 }
653 }
654 }
655 }
656 }
657
658 return (err != target);
659}
660
d4906093 661static bool
ee9300bb
DV
662g4x_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
663 int target, int refclk, intel_clock_t *match_clock,
664 intel_clock_t *best_clock)
d4906093
ML
665{
666 struct drm_device *dev = crtc->dev;
d4906093
ML
667 intel_clock_t clock;
668 int max_n;
669 bool found;
6ba770dc
AJ
670 /* approximately equals target * 0.00585 */
671 int err_most = (target >> 8) + (target >> 9);
d4906093
ML
672 found = false;
673
674 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
1974cad0 675 if (intel_is_dual_link_lvds(dev))
d4906093
ML
676 clock.p2 = limit->p2.p2_fast;
677 else
678 clock.p2 = limit->p2.p2_slow;
679 } else {
680 if (target < limit->p2.dot_limit)
681 clock.p2 = limit->p2.p2_slow;
682 else
683 clock.p2 = limit->p2.p2_fast;
684 }
685
686 memset(best_clock, 0, sizeof(*best_clock));
687 max_n = limit->n.max;
f77f13e2 688 /* based on hardware requirement, prefer smaller n to precision */
d4906093 689 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
f77f13e2 690 /* based on hardware requirement, prefere larger m1,m2 */
d4906093
ML
691 for (clock.m1 = limit->m1.max;
692 clock.m1 >= limit->m1.min; clock.m1--) {
693 for (clock.m2 = limit->m2.max;
694 clock.m2 >= limit->m2.min; clock.m2--) {
695 for (clock.p1 = limit->p1.max;
696 clock.p1 >= limit->p1.min; clock.p1--) {
697 int this_err;
698
ac58c3f0 699 i9xx_clock(refclk, &clock);
1b894b59
CW
700 if (!intel_PLL_is_valid(dev, limit,
701 &clock))
d4906093 702 continue;
1b894b59
CW
703
704 this_err = abs(clock.dot - target);
d4906093
ML
705 if (this_err < err_most) {
706 *best_clock = clock;
707 err_most = this_err;
708 max_n = clock.n;
709 found = true;
710 }
711 }
712 }
713 }
714 }
2c07245f
ZW
715 return found;
716}
717
a0c4da24 718static bool
ee9300bb
DV
719vlv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
720 int target, int refclk, intel_clock_t *match_clock,
721 intel_clock_t *best_clock)
a0c4da24 722{
f01b7962 723 struct drm_device *dev = crtc->dev;
6b4bf1c4 724 intel_clock_t clock;
69e4f900 725 unsigned int bestppm = 1000000;
27e639bf
VS
726 /* min update 19.2 MHz */
727 int max_n = min(limit->n.max, refclk / 19200);
49e497ef 728 bool found = false;
a0c4da24 729
6b4bf1c4
VS
730 target *= 5; /* fast clock */
731
732 memset(best_clock, 0, sizeof(*best_clock));
a0c4da24
JB
733
734 /* based on hardware requirement, prefer smaller n to precision */
27e639bf 735 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
811bbf05 736 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
889059d8 737 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
c1a9ae43 738 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
6b4bf1c4 739 clock.p = clock.p1 * clock.p2;
a0c4da24 740 /* based on hardware requirement, prefer bigger m1,m2 values */
6b4bf1c4 741 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
69e4f900
VS
742 unsigned int ppm, diff;
743
6b4bf1c4
VS
744 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
745 refclk * clock.m1);
746
747 vlv_clock(refclk, &clock);
43b0ac53 748
f01b7962
VS
749 if (!intel_PLL_is_valid(dev, limit,
750 &clock))
43b0ac53
VS
751 continue;
752
6b4bf1c4
VS
753 diff = abs(clock.dot - target);
754 ppm = div_u64(1000000ULL * diff, target);
755
756 if (ppm < 100 && clock.p > best_clock->p) {
43b0ac53 757 bestppm = 0;
6b4bf1c4 758 *best_clock = clock;
49e497ef 759 found = true;
43b0ac53 760 }
6b4bf1c4 761
c686122c 762 if (bestppm >= 10 && ppm < bestppm - 10) {
69e4f900 763 bestppm = ppm;
6b4bf1c4 764 *best_clock = clock;
49e497ef 765 found = true;
a0c4da24
JB
766 }
767 }
768 }
769 }
770 }
a0c4da24 771
49e497ef 772 return found;
a0c4da24 773}
a4fc5ed6 774
ef9348c8
CML
775static bool
776chv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
777 int target, int refclk, intel_clock_t *match_clock,
778 intel_clock_t *best_clock)
779{
780 struct drm_device *dev = crtc->dev;
781 intel_clock_t clock;
782 uint64_t m2;
783 int found = false;
784
785 memset(best_clock, 0, sizeof(*best_clock));
786
787 /*
788 * Based on hardware doc, the n always set to 1, and m1 always
789 * set to 2. If requires to support 200Mhz refclk, we need to
790 * revisit this because n may not 1 anymore.
791 */
792 clock.n = 1, clock.m1 = 2;
793 target *= 5; /* fast clock */
794
795 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
796 for (clock.p2 = limit->p2.p2_fast;
797 clock.p2 >= limit->p2.p2_slow;
798 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
799
800 clock.p = clock.p1 * clock.p2;
801
802 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
803 clock.n) << 22, refclk * clock.m1);
804
805 if (m2 > INT_MAX/clock.m1)
806 continue;
807
808 clock.m2 = m2;
809
810 chv_clock(refclk, &clock);
811
812 if (!intel_PLL_is_valid(dev, limit, &clock))
813 continue;
814
815 /* based on hardware requirement, prefer bigger p
816 */
817 if (clock.p > best_clock->p) {
818 *best_clock = clock;
819 found = true;
820 }
821 }
822 }
823
824 return found;
825}
826
20ddf665
VS
827bool intel_crtc_active(struct drm_crtc *crtc)
828{
829 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
830
831 /* Be paranoid as we can arrive here with only partial
832 * state retrieved from the hardware during setup.
833 *
241bfc38 834 * We can ditch the adjusted_mode.crtc_clock check as soon
20ddf665
VS
835 * as Haswell has gained clock readout/fastboot support.
836 *
66e514c1 837 * We can ditch the crtc->primary->fb check as soon as we can
20ddf665
VS
838 * properly reconstruct framebuffers.
839 */
f4510a27 840 return intel_crtc->active && crtc->primary->fb &&
241bfc38 841 intel_crtc->config.adjusted_mode.crtc_clock;
20ddf665
VS
842}
843
a5c961d1
PZ
844enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
845 enum pipe pipe)
846{
847 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
848 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
849
3b117c8f 850 return intel_crtc->config.cpu_transcoder;
a5c961d1
PZ
851}
852
57e22f4a 853static void g4x_wait_for_vblank(struct drm_device *dev, int pipe)
a928d536
PZ
854{
855 struct drm_i915_private *dev_priv = dev->dev_private;
57e22f4a 856 u32 frame, frame_reg = PIPE_FRMCOUNT_GM45(pipe);
a928d536
PZ
857
858 frame = I915_READ(frame_reg);
859
860 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
93937071 861 WARN(1, "vblank wait timed out\n");
a928d536
PZ
862}
863
9d0498a2
JB
864/**
865 * intel_wait_for_vblank - wait for vblank on a given pipe
866 * @dev: drm device
867 * @pipe: pipe to wait for
868 *
869 * Wait for vblank to occur on a given pipe. Needed for various bits of
870 * mode setting code.
871 */
872void intel_wait_for_vblank(struct drm_device *dev, int pipe)
79e53945 873{
9d0498a2 874 struct drm_i915_private *dev_priv = dev->dev_private;
9db4a9c7 875 int pipestat_reg = PIPESTAT(pipe);
9d0498a2 876
57e22f4a
VS
877 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
878 g4x_wait_for_vblank(dev, pipe);
a928d536
PZ
879 return;
880 }
881
300387c0
CW
882 /* Clear existing vblank status. Note this will clear any other
883 * sticky status fields as well.
884 *
885 * This races with i915_driver_irq_handler() with the result
886 * that either function could miss a vblank event. Here it is not
887 * fatal, as we will either wait upon the next vblank interrupt or
888 * timeout. Generally speaking intel_wait_for_vblank() is only
889 * called during modeset at which time the GPU should be idle and
890 * should *not* be performing page flips and thus not waiting on
891 * vblanks...
892 * Currently, the result of us stealing a vblank from the irq
893 * handler is that a single frame will be skipped during swapbuffers.
894 */
895 I915_WRITE(pipestat_reg,
896 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
897
9d0498a2 898 /* Wait for vblank interrupt bit to set */
481b6af3
CW
899 if (wait_for(I915_READ(pipestat_reg) &
900 PIPE_VBLANK_INTERRUPT_STATUS,
901 50))
9d0498a2
JB
902 DRM_DEBUG_KMS("vblank wait timed out\n");
903}
904
fbf49ea2
VS
905static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
906{
907 struct drm_i915_private *dev_priv = dev->dev_private;
908 u32 reg = PIPEDSL(pipe);
909 u32 line1, line2;
910 u32 line_mask;
911
912 if (IS_GEN2(dev))
913 line_mask = DSL_LINEMASK_GEN2;
914 else
915 line_mask = DSL_LINEMASK_GEN3;
916
917 line1 = I915_READ(reg) & line_mask;
918 mdelay(5);
919 line2 = I915_READ(reg) & line_mask;
920
921 return line1 == line2;
922}
923
ab7ad7f6
KP
924/*
925 * intel_wait_for_pipe_off - wait for pipe to turn off
9d0498a2
JB
926 * @dev: drm device
927 * @pipe: pipe to wait for
928 *
929 * After disabling a pipe, we can't wait for vblank in the usual way,
930 * spinning on the vblank interrupt status bit, since we won't actually
931 * see an interrupt when the pipe is disabled.
932 *
ab7ad7f6
KP
933 * On Gen4 and above:
934 * wait for the pipe register state bit to turn off
935 *
936 * Otherwise:
937 * wait for the display line value to settle (it usually
938 * ends up stopping at the start of the next frame).
58e10eb9 939 *
9d0498a2 940 */
58e10eb9 941void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
9d0498a2
JB
942{
943 struct drm_i915_private *dev_priv = dev->dev_private;
702e7a56
PZ
944 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
945 pipe);
ab7ad7f6
KP
946
947 if (INTEL_INFO(dev)->gen >= 4) {
702e7a56 948 int reg = PIPECONF(cpu_transcoder);
ab7ad7f6
KP
949
950 /* Wait for the Pipe State to go off */
58e10eb9
CW
951 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
952 100))
284637d9 953 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 954 } else {
ab7ad7f6 955 /* Wait for the display line to settle */
fbf49ea2 956 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
284637d9 957 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 958 }
79e53945
JB
959}
960
b0ea7d37
DL
961/*
962 * ibx_digital_port_connected - is the specified port connected?
963 * @dev_priv: i915 private structure
964 * @port: the port to test
965 *
966 * Returns true if @port is connected, false otherwise.
967 */
968bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
969 struct intel_digital_port *port)
970{
971 u32 bit;
972
c36346e3 973 if (HAS_PCH_IBX(dev_priv->dev)) {
eba905b2 974 switch (port->port) {
c36346e3
DL
975 case PORT_B:
976 bit = SDE_PORTB_HOTPLUG;
977 break;
978 case PORT_C:
979 bit = SDE_PORTC_HOTPLUG;
980 break;
981 case PORT_D:
982 bit = SDE_PORTD_HOTPLUG;
983 break;
984 default:
985 return true;
986 }
987 } else {
eba905b2 988 switch (port->port) {
c36346e3
DL
989 case PORT_B:
990 bit = SDE_PORTB_HOTPLUG_CPT;
991 break;
992 case PORT_C:
993 bit = SDE_PORTC_HOTPLUG_CPT;
994 break;
995 case PORT_D:
996 bit = SDE_PORTD_HOTPLUG_CPT;
997 break;
998 default:
999 return true;
1000 }
b0ea7d37
DL
1001 }
1002
1003 return I915_READ(SDEISR) & bit;
1004}
1005
b24e7179
JB
1006static const char *state_string(bool enabled)
1007{
1008 return enabled ? "on" : "off";
1009}
1010
1011/* Only for pre-ILK configs */
55607e8a
DV
1012void assert_pll(struct drm_i915_private *dev_priv,
1013 enum pipe pipe, bool state)
b24e7179
JB
1014{
1015 int reg;
1016 u32 val;
1017 bool cur_state;
1018
1019 reg = DPLL(pipe);
1020 val = I915_READ(reg);
1021 cur_state = !!(val & DPLL_VCO_ENABLE);
1022 WARN(cur_state != state,
1023 "PLL state assertion failure (expected %s, current %s)\n",
1024 state_string(state), state_string(cur_state));
1025}
b24e7179 1026
23538ef1
JN
1027/* XXX: the dsi pll is shared between MIPI DSI ports */
1028static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1029{
1030 u32 val;
1031 bool cur_state;
1032
1033 mutex_lock(&dev_priv->dpio_lock);
1034 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1035 mutex_unlock(&dev_priv->dpio_lock);
1036
1037 cur_state = val & DSI_PLL_VCO_EN;
1038 WARN(cur_state != state,
1039 "DSI PLL state assertion failure (expected %s, current %s)\n",
1040 state_string(state), state_string(cur_state));
1041}
1042#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1043#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1044
55607e8a 1045struct intel_shared_dpll *
e2b78267
DV
1046intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
1047{
1048 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1049
a43f6e0f 1050 if (crtc->config.shared_dpll < 0)
e2b78267
DV
1051 return NULL;
1052
a43f6e0f 1053 return &dev_priv->shared_dplls[crtc->config.shared_dpll];
e2b78267
DV
1054}
1055
040484af 1056/* For ILK+ */
55607e8a
DV
1057void assert_shared_dpll(struct drm_i915_private *dev_priv,
1058 struct intel_shared_dpll *pll,
1059 bool state)
040484af 1060{
040484af 1061 bool cur_state;
5358901f 1062 struct intel_dpll_hw_state hw_state;
040484af 1063
9d82aa17
ED
1064 if (HAS_PCH_LPT(dev_priv->dev)) {
1065 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
1066 return;
1067 }
1068
92b27b08 1069 if (WARN (!pll,
46edb027 1070 "asserting DPLL %s with no DPLL\n", state_string(state)))
ee7b9f93 1071 return;
ee7b9f93 1072
5358901f 1073 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
92b27b08 1074 WARN(cur_state != state,
5358901f
DV
1075 "%s assertion failure (expected %s, current %s)\n",
1076 pll->name, state_string(state), state_string(cur_state));
040484af 1077}
040484af
JB
1078
1079static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1080 enum pipe pipe, bool state)
1081{
1082 int reg;
1083 u32 val;
1084 bool cur_state;
ad80a810
PZ
1085 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1086 pipe);
040484af 1087
affa9354
PZ
1088 if (HAS_DDI(dev_priv->dev)) {
1089 /* DDI does not have a specific FDI_TX register */
ad80a810 1090 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
bf507ef7 1091 val = I915_READ(reg);
ad80a810 1092 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
bf507ef7
ED
1093 } else {
1094 reg = FDI_TX_CTL(pipe);
1095 val = I915_READ(reg);
1096 cur_state = !!(val & FDI_TX_ENABLE);
1097 }
040484af
JB
1098 WARN(cur_state != state,
1099 "FDI TX state assertion failure (expected %s, current %s)\n",
1100 state_string(state), state_string(cur_state));
1101}
1102#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1103#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1104
1105static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1106 enum pipe pipe, bool state)
1107{
1108 int reg;
1109 u32 val;
1110 bool cur_state;
1111
d63fa0dc
PZ
1112 reg = FDI_RX_CTL(pipe);
1113 val = I915_READ(reg);
1114 cur_state = !!(val & FDI_RX_ENABLE);
040484af
JB
1115 WARN(cur_state != state,
1116 "FDI RX state assertion failure (expected %s, current %s)\n",
1117 state_string(state), state_string(cur_state));
1118}
1119#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1120#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1121
1122static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1123 enum pipe pipe)
1124{
1125 int reg;
1126 u32 val;
1127
1128 /* ILK FDI PLL is always enabled */
3d13ef2e 1129 if (INTEL_INFO(dev_priv->dev)->gen == 5)
040484af
JB
1130 return;
1131
bf507ef7 1132 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
affa9354 1133 if (HAS_DDI(dev_priv->dev))
bf507ef7
ED
1134 return;
1135
040484af
JB
1136 reg = FDI_TX_CTL(pipe);
1137 val = I915_READ(reg);
1138 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1139}
1140
55607e8a
DV
1141void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1142 enum pipe pipe, bool state)
040484af
JB
1143{
1144 int reg;
1145 u32 val;
55607e8a 1146 bool cur_state;
040484af
JB
1147
1148 reg = FDI_RX_CTL(pipe);
1149 val = I915_READ(reg);
55607e8a
DV
1150 cur_state = !!(val & FDI_RX_PLL_ENABLE);
1151 WARN(cur_state != state,
1152 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1153 state_string(state), state_string(cur_state));
040484af
JB
1154}
1155
ea0760cf
JB
1156static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1157 enum pipe pipe)
1158{
1159 int pp_reg, lvds_reg;
1160 u32 val;
1161 enum pipe panel_pipe = PIPE_A;
0de3b485 1162 bool locked = true;
ea0760cf
JB
1163
1164 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1165 pp_reg = PCH_PP_CONTROL;
1166 lvds_reg = PCH_LVDS;
1167 } else {
1168 pp_reg = PP_CONTROL;
1169 lvds_reg = LVDS;
1170 }
1171
1172 val = I915_READ(pp_reg);
1173 if (!(val & PANEL_POWER_ON) ||
1174 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1175 locked = false;
1176
1177 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1178 panel_pipe = PIPE_B;
1179
1180 WARN(panel_pipe == pipe && locked,
1181 "panel assertion failure, pipe %c regs locked\n",
9db4a9c7 1182 pipe_name(pipe));
ea0760cf
JB
1183}
1184
93ce0ba6
JN
1185static void assert_cursor(struct drm_i915_private *dev_priv,
1186 enum pipe pipe, bool state)
1187{
1188 struct drm_device *dev = dev_priv->dev;
1189 bool cur_state;
1190
d9d82081 1191 if (IS_845G(dev) || IS_I865G(dev))
93ce0ba6 1192 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
d9d82081 1193 else
5efb3e28 1194 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
93ce0ba6
JN
1195
1196 WARN(cur_state != state,
1197 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1198 pipe_name(pipe), state_string(state), state_string(cur_state));
1199}
1200#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1201#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1202
b840d907
JB
1203void assert_pipe(struct drm_i915_private *dev_priv,
1204 enum pipe pipe, bool state)
b24e7179
JB
1205{
1206 int reg;
1207 u32 val;
63d7bbe9 1208 bool cur_state;
702e7a56
PZ
1209 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1210 pipe);
b24e7179 1211
8e636784
DV
1212 /* if we need the pipe A quirk it must be always on */
1213 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1214 state = true;
1215
da7e29bd 1216 if (!intel_display_power_enabled(dev_priv,
b97186f0 1217 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
69310161
PZ
1218 cur_state = false;
1219 } else {
1220 reg = PIPECONF(cpu_transcoder);
1221 val = I915_READ(reg);
1222 cur_state = !!(val & PIPECONF_ENABLE);
1223 }
1224
63d7bbe9
JB
1225 WARN(cur_state != state,
1226 "pipe %c assertion failure (expected %s, current %s)\n",
9db4a9c7 1227 pipe_name(pipe), state_string(state), state_string(cur_state));
b24e7179
JB
1228}
1229
931872fc
CW
1230static void assert_plane(struct drm_i915_private *dev_priv,
1231 enum plane plane, bool state)
b24e7179
JB
1232{
1233 int reg;
1234 u32 val;
931872fc 1235 bool cur_state;
b24e7179
JB
1236
1237 reg = DSPCNTR(plane);
1238 val = I915_READ(reg);
931872fc
CW
1239 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1240 WARN(cur_state != state,
1241 "plane %c assertion failure (expected %s, current %s)\n",
1242 plane_name(plane), state_string(state), state_string(cur_state));
b24e7179
JB
1243}
1244
931872fc
CW
1245#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1246#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1247
b24e7179
JB
1248static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1249 enum pipe pipe)
1250{
653e1026 1251 struct drm_device *dev = dev_priv->dev;
b24e7179
JB
1252 int reg, i;
1253 u32 val;
1254 int cur_pipe;
1255
653e1026
VS
1256 /* Primary planes are fixed to pipes on gen4+ */
1257 if (INTEL_INFO(dev)->gen >= 4) {
28c05794
AJ
1258 reg = DSPCNTR(pipe);
1259 val = I915_READ(reg);
83f26f16 1260 WARN(val & DISPLAY_PLANE_ENABLE,
28c05794
AJ
1261 "plane %c assertion failure, should be disabled but not\n",
1262 plane_name(pipe));
19ec1358 1263 return;
28c05794 1264 }
19ec1358 1265
b24e7179 1266 /* Need to check both planes against the pipe */
08e2a7de 1267 for_each_pipe(i) {
b24e7179
JB
1268 reg = DSPCNTR(i);
1269 val = I915_READ(reg);
1270 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1271 DISPPLANE_SEL_PIPE_SHIFT;
1272 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
9db4a9c7
JB
1273 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1274 plane_name(i), pipe_name(pipe));
b24e7179
JB
1275 }
1276}
1277
19332d7a
JB
1278static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1279 enum pipe pipe)
1280{
20674eef 1281 struct drm_device *dev = dev_priv->dev;
1fe47785 1282 int reg, sprite;
19332d7a
JB
1283 u32 val;
1284
20674eef 1285 if (IS_VALLEYVIEW(dev)) {
1fe47785
DL
1286 for_each_sprite(pipe, sprite) {
1287 reg = SPCNTR(pipe, sprite);
20674eef 1288 val = I915_READ(reg);
83f26f16 1289 WARN(val & SP_ENABLE,
20674eef 1290 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1fe47785 1291 sprite_name(pipe, sprite), pipe_name(pipe));
20674eef
VS
1292 }
1293 } else if (INTEL_INFO(dev)->gen >= 7) {
1294 reg = SPRCTL(pipe);
19332d7a 1295 val = I915_READ(reg);
83f26f16 1296 WARN(val & SPRITE_ENABLE,
06da8da2 1297 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef
VS
1298 plane_name(pipe), pipe_name(pipe));
1299 } else if (INTEL_INFO(dev)->gen >= 5) {
1300 reg = DVSCNTR(pipe);
19332d7a 1301 val = I915_READ(reg);
83f26f16 1302 WARN(val & DVS_ENABLE,
06da8da2 1303 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef 1304 plane_name(pipe), pipe_name(pipe));
19332d7a
JB
1305 }
1306}
1307
89eff4be 1308static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
92f2584a
JB
1309{
1310 u32 val;
1311 bool enabled;
1312
89eff4be 1313 WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
9d82aa17 1314
92f2584a
JB
1315 val = I915_READ(PCH_DREF_CONTROL);
1316 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1317 DREF_SUPERSPREAD_SOURCE_MASK));
1318 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1319}
1320
ab9412ba
DV
1321static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1322 enum pipe pipe)
92f2584a
JB
1323{
1324 int reg;
1325 u32 val;
1326 bool enabled;
1327
ab9412ba 1328 reg = PCH_TRANSCONF(pipe);
92f2584a
JB
1329 val = I915_READ(reg);
1330 enabled = !!(val & TRANS_ENABLE);
9db4a9c7
JB
1331 WARN(enabled,
1332 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1333 pipe_name(pipe));
92f2584a
JB
1334}
1335
4e634389
KP
1336static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1337 enum pipe pipe, u32 port_sel, u32 val)
f0575e92
KP
1338{
1339 if ((val & DP_PORT_EN) == 0)
1340 return false;
1341
1342 if (HAS_PCH_CPT(dev_priv->dev)) {
1343 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1344 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1345 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1346 return false;
44f37d1f
CML
1347 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1348 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1349 return false;
f0575e92
KP
1350 } else {
1351 if ((val & DP_PIPE_MASK) != (pipe << 30))
1352 return false;
1353 }
1354 return true;
1355}
1356
1519b995
KP
1357static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1358 enum pipe pipe, u32 val)
1359{
dc0fa718 1360 if ((val & SDVO_ENABLE) == 0)
1519b995
KP
1361 return false;
1362
1363 if (HAS_PCH_CPT(dev_priv->dev)) {
dc0fa718 1364 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
1519b995 1365 return false;
44f37d1f
CML
1366 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1367 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1368 return false;
1519b995 1369 } else {
dc0fa718 1370 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
1519b995
KP
1371 return false;
1372 }
1373 return true;
1374}
1375
1376static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1377 enum pipe pipe, u32 val)
1378{
1379 if ((val & LVDS_PORT_EN) == 0)
1380 return false;
1381
1382 if (HAS_PCH_CPT(dev_priv->dev)) {
1383 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1384 return false;
1385 } else {
1386 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1387 return false;
1388 }
1389 return true;
1390}
1391
1392static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1393 enum pipe pipe, u32 val)
1394{
1395 if ((val & ADPA_DAC_ENABLE) == 0)
1396 return false;
1397 if (HAS_PCH_CPT(dev_priv->dev)) {
1398 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1399 return false;
1400 } else {
1401 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1402 return false;
1403 }
1404 return true;
1405}
1406
291906f1 1407static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
f0575e92 1408 enum pipe pipe, int reg, u32 port_sel)
291906f1 1409{
47a05eca 1410 u32 val = I915_READ(reg);
4e634389 1411 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
291906f1 1412 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
9db4a9c7 1413 reg, pipe_name(pipe));
de9a35ab 1414
75c5da27
DV
1415 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1416 && (val & DP_PIPEB_SELECT),
de9a35ab 1417 "IBX PCH dp port still using transcoder B\n");
291906f1
JB
1418}
1419
1420static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1421 enum pipe pipe, int reg)
1422{
47a05eca 1423 u32 val = I915_READ(reg);
b70ad586 1424 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
23c99e77 1425 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
9db4a9c7 1426 reg, pipe_name(pipe));
de9a35ab 1427
dc0fa718 1428 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
75c5da27 1429 && (val & SDVO_PIPE_B_SELECT),
de9a35ab 1430 "IBX PCH hdmi port still using transcoder B\n");
291906f1
JB
1431}
1432
1433static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1434 enum pipe pipe)
1435{
1436 int reg;
1437 u32 val;
291906f1 1438
f0575e92
KP
1439 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1440 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1441 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
291906f1
JB
1442
1443 reg = PCH_ADPA;
1444 val = I915_READ(reg);
b70ad586 1445 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
291906f1 1446 "PCH VGA enabled on transcoder %c, should be disabled\n",
9db4a9c7 1447 pipe_name(pipe));
291906f1
JB
1448
1449 reg = PCH_LVDS;
1450 val = I915_READ(reg);
b70ad586 1451 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
291906f1 1452 "PCH LVDS enabled on transcoder %c, should be disabled\n",
9db4a9c7 1453 pipe_name(pipe));
291906f1 1454
e2debe91
PZ
1455 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1456 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1457 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
291906f1
JB
1458}
1459
40e9cf64
JB
1460static void intel_init_dpio(struct drm_device *dev)
1461{
1462 struct drm_i915_private *dev_priv = dev->dev_private;
1463
1464 if (!IS_VALLEYVIEW(dev))
1465 return;
1466
a09caddd
CML
1467 /*
1468 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1469 * CHV x1 PHY (DP/HDMI D)
1470 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1471 */
1472 if (IS_CHERRYVIEW(dev)) {
1473 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1474 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1475 } else {
1476 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1477 }
5382f5f3
JB
1478}
1479
1480static void intel_reset_dpio(struct drm_device *dev)
1481{
1482 struct drm_i915_private *dev_priv = dev->dev_private;
1483
1484 if (!IS_VALLEYVIEW(dev))
1485 return;
1486
076ed3b2
CML
1487 if (IS_CHERRYVIEW(dev)) {
1488 enum dpio_phy phy;
1489 u32 val;
1490
1491 for (phy = DPIO_PHY0; phy < I915_NUM_PHYS_VLV; phy++) {
1492 /* Poll for phypwrgood signal */
1493 if (wait_for(I915_READ(DISPLAY_PHY_STATUS) &
1494 PHY_POWERGOOD(phy), 1))
1495 DRM_ERROR("Display PHY %d is not power up\n", phy);
1496
1497 /*
1498 * Deassert common lane reset for PHY.
1499 *
1500 * This should only be done on init and resume from S3
1501 * with both PLLs disabled, or we risk losing DPIO and
1502 * PLL synchronization.
1503 */
1504 val = I915_READ(DISPLAY_PHY_CONTROL);
1505 I915_WRITE(DISPLAY_PHY_CONTROL,
1506 PHY_COM_LANE_RESET_DEASSERT(phy, val));
1507 }
1508
1509 } else {
1510 /*
57021059
JB
1511 * If DPIO has already been reset, e.g. by BIOS, just skip all
1512 * this.
076ed3b2 1513 */
57021059
JB
1514 if (I915_READ(DPIO_CTL) & DPIO_CMNRST)
1515 return;
1516
1517 /*
1518 * From VLV2A0_DP_eDP_HDMI_DPIO_driver_vbios_notes_11.docx:
1519 * Need to assert and de-assert PHY SB reset by gating the
1520 * common lane power, then un-gating it.
1521 * Simply ungating isn't enough to reset the PHY enough to get
1522 * ports and lanes running.
1523 */
1524 __vlv_set_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC,
1525 false);
1526 __vlv_set_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC,
1527 true);
076ed3b2 1528 }
40e9cf64
JB
1529}
1530
426115cf 1531static void vlv_enable_pll(struct intel_crtc *crtc)
87442f73 1532{
426115cf
DV
1533 struct drm_device *dev = crtc->base.dev;
1534 struct drm_i915_private *dev_priv = dev->dev_private;
1535 int reg = DPLL(crtc->pipe);
1536 u32 dpll = crtc->config.dpll_hw_state.dpll;
87442f73 1537
426115cf 1538 assert_pipe_disabled(dev_priv, crtc->pipe);
87442f73
DV
1539
1540 /* No really, not for ILK+ */
1541 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1542
1543 /* PLL is protected by panel, make sure we can write it */
1544 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
426115cf 1545 assert_panel_unlocked(dev_priv, crtc->pipe);
87442f73 1546
426115cf
DV
1547 I915_WRITE(reg, dpll);
1548 POSTING_READ(reg);
1549 udelay(150);
1550
1551 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1552 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1553
1554 I915_WRITE(DPLL_MD(crtc->pipe), crtc->config.dpll_hw_state.dpll_md);
1555 POSTING_READ(DPLL_MD(crtc->pipe));
87442f73
DV
1556
1557 /* We do this three times for luck */
426115cf 1558 I915_WRITE(reg, dpll);
87442f73
DV
1559 POSTING_READ(reg);
1560 udelay(150); /* wait for warmup */
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 */
1567}
1568
9d556c99
CML
1569static void chv_enable_pll(struct intel_crtc *crtc)
1570{
1571 struct drm_device *dev = crtc->base.dev;
1572 struct drm_i915_private *dev_priv = dev->dev_private;
1573 int pipe = crtc->pipe;
1574 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9d556c99
CML
1575 u32 tmp;
1576
1577 assert_pipe_disabled(dev_priv, crtc->pipe);
1578
1579 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1580
1581 mutex_lock(&dev_priv->dpio_lock);
1582
1583 /* Enable back the 10bit clock to display controller */
1584 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1585 tmp |= DPIO_DCLKP_EN;
1586 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1587
1588 /*
1589 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1590 */
1591 udelay(1);
1592
1593 /* Enable PLL */
a11b0703 1594 I915_WRITE(DPLL(pipe), crtc->config.dpll_hw_state.dpll);
9d556c99
CML
1595
1596 /* Check PLL is locked */
a11b0703 1597 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
9d556c99
CML
1598 DRM_ERROR("PLL %d failed to lock\n", pipe);
1599
a11b0703
VS
1600 /* not sure when this should be written */
1601 I915_WRITE(DPLL_MD(pipe), crtc->config.dpll_hw_state.dpll_md);
1602 POSTING_READ(DPLL_MD(pipe));
1603
9d556c99
CML
1604 mutex_unlock(&dev_priv->dpio_lock);
1605}
1606
66e3d5c0 1607static void i9xx_enable_pll(struct intel_crtc *crtc)
63d7bbe9 1608{
66e3d5c0
DV
1609 struct drm_device *dev = crtc->base.dev;
1610 struct drm_i915_private *dev_priv = dev->dev_private;
1611 int reg = DPLL(crtc->pipe);
1612 u32 dpll = crtc->config.dpll_hw_state.dpll;
63d7bbe9 1613
66e3d5c0 1614 assert_pipe_disabled(dev_priv, crtc->pipe);
58c6eaa2 1615
63d7bbe9 1616 /* No really, not for ILK+ */
3d13ef2e 1617 BUG_ON(INTEL_INFO(dev)->gen >= 5);
63d7bbe9
JB
1618
1619 /* PLL is protected by panel, make sure we can write it */
66e3d5c0
DV
1620 if (IS_MOBILE(dev) && !IS_I830(dev))
1621 assert_panel_unlocked(dev_priv, crtc->pipe);
63d7bbe9 1622
66e3d5c0
DV
1623 I915_WRITE(reg, dpll);
1624
1625 /* Wait for the clocks to stabilize. */
1626 POSTING_READ(reg);
1627 udelay(150);
1628
1629 if (INTEL_INFO(dev)->gen >= 4) {
1630 I915_WRITE(DPLL_MD(crtc->pipe),
1631 crtc->config.dpll_hw_state.dpll_md);
1632 } else {
1633 /* The pixel multiplier can only be updated once the
1634 * DPLL is enabled and the clocks are stable.
1635 *
1636 * So write it again.
1637 */
1638 I915_WRITE(reg, dpll);
1639 }
63d7bbe9
JB
1640
1641 /* We do this three times for luck */
66e3d5c0 1642 I915_WRITE(reg, dpll);
63d7bbe9
JB
1643 POSTING_READ(reg);
1644 udelay(150); /* wait for warmup */
66e3d5c0 1645 I915_WRITE(reg, dpll);
63d7bbe9
JB
1646 POSTING_READ(reg);
1647 udelay(150); /* wait for warmup */
66e3d5c0 1648 I915_WRITE(reg, dpll);
63d7bbe9
JB
1649 POSTING_READ(reg);
1650 udelay(150); /* wait for warmup */
1651}
1652
1653/**
50b44a44 1654 * i9xx_disable_pll - disable a PLL
63d7bbe9
JB
1655 * @dev_priv: i915 private structure
1656 * @pipe: pipe PLL to disable
1657 *
1658 * Disable the PLL for @pipe, making sure the pipe is off first.
1659 *
1660 * Note! This is for pre-ILK only.
1661 */
50b44a44 1662static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
63d7bbe9 1663{
63d7bbe9
JB
1664 /* Don't disable pipe A or pipe A PLLs if needed */
1665 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1666 return;
1667
1668 /* Make sure the pipe isn't still relying on us */
1669 assert_pipe_disabled(dev_priv, pipe);
1670
50b44a44
DV
1671 I915_WRITE(DPLL(pipe), 0);
1672 POSTING_READ(DPLL(pipe));
63d7bbe9
JB
1673}
1674
f6071166
JB
1675static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1676{
1677 u32 val = 0;
1678
1679 /* Make sure the pipe isn't still relying on us */
1680 assert_pipe_disabled(dev_priv, pipe);
1681
e5cbfbfb
ID
1682 /*
1683 * Leave integrated clock source and reference clock enabled for pipe B.
1684 * The latter is needed for VGA hotplug / manual detection.
1685 */
f6071166 1686 if (pipe == PIPE_B)
e5cbfbfb 1687 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
f6071166
JB
1688 I915_WRITE(DPLL(pipe), val);
1689 POSTING_READ(DPLL(pipe));
076ed3b2
CML
1690
1691}
1692
1693static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1694{
d752048d 1695 enum dpio_channel port = vlv_pipe_to_channel(pipe);
076ed3b2
CML
1696 u32 val;
1697
a11b0703
VS
1698 /* Make sure the pipe isn't still relying on us */
1699 assert_pipe_disabled(dev_priv, pipe);
076ed3b2 1700
a11b0703
VS
1701 /* Set PLL en = 0 */
1702 val = DPLL_SSC_REF_CLOCK_CHV;
1703 if (pipe != PIPE_A)
1704 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1705 I915_WRITE(DPLL(pipe), val);
1706 POSTING_READ(DPLL(pipe));
d752048d
VS
1707
1708 mutex_lock(&dev_priv->dpio_lock);
1709
1710 /* Disable 10bit clock to display controller */
1711 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1712 val &= ~DPIO_DCLKP_EN;
1713 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1714
61407f6d
VS
1715 /* disable left/right clock distribution */
1716 if (pipe != PIPE_B) {
1717 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1718 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1719 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1720 } else {
1721 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1722 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1723 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1724 }
1725
d752048d 1726 mutex_unlock(&dev_priv->dpio_lock);
f6071166
JB
1727}
1728
e4607fcf
CML
1729void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1730 struct intel_digital_port *dport)
89b667f8
JB
1731{
1732 u32 port_mask;
00fc31b7 1733 int dpll_reg;
89b667f8 1734
e4607fcf
CML
1735 switch (dport->port) {
1736 case PORT_B:
89b667f8 1737 port_mask = DPLL_PORTB_READY_MASK;
00fc31b7 1738 dpll_reg = DPLL(0);
e4607fcf
CML
1739 break;
1740 case PORT_C:
89b667f8 1741 port_mask = DPLL_PORTC_READY_MASK;
00fc31b7
CML
1742 dpll_reg = DPLL(0);
1743 break;
1744 case PORT_D:
1745 port_mask = DPLL_PORTD_READY_MASK;
1746 dpll_reg = DPIO_PHY_STATUS;
e4607fcf
CML
1747 break;
1748 default:
1749 BUG();
1750 }
89b667f8 1751
00fc31b7 1752 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
89b667f8 1753 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
00fc31b7 1754 port_name(dport->port), I915_READ(dpll_reg));
89b667f8
JB
1755}
1756
b14b1055
DV
1757static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1758{
1759 struct drm_device *dev = crtc->base.dev;
1760 struct drm_i915_private *dev_priv = dev->dev_private;
1761 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1762
1763 WARN_ON(!pll->refcount);
1764 if (pll->active == 0) {
1765 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1766 WARN_ON(pll->on);
1767 assert_shared_dpll_disabled(dev_priv, pll);
1768
1769 pll->mode_set(dev_priv, pll);
1770 }
1771}
1772
92f2584a 1773/**
85b3894f 1774 * intel_enable_shared_dpll - enable PCH PLL
92f2584a
JB
1775 * @dev_priv: i915 private structure
1776 * @pipe: pipe PLL to enable
1777 *
1778 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1779 * drives the transcoder clock.
1780 */
85b3894f 1781static void intel_enable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1782{
3d13ef2e
DL
1783 struct drm_device *dev = crtc->base.dev;
1784 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1785 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
92f2584a 1786
87a875bb 1787 if (WARN_ON(pll == NULL))
48da64a8
CW
1788 return;
1789
1790 if (WARN_ON(pll->refcount == 0))
1791 return;
ee7b9f93 1792
46edb027
DV
1793 DRM_DEBUG_KMS("enable %s (active %d, on? %d)for crtc %d\n",
1794 pll->name, pll->active, pll->on,
e2b78267 1795 crtc->base.base.id);
92f2584a 1796
cdbd2316
DV
1797 if (pll->active++) {
1798 WARN_ON(!pll->on);
e9d6944e 1799 assert_shared_dpll_enabled(dev_priv, pll);
ee7b9f93
JB
1800 return;
1801 }
f4a091c7 1802 WARN_ON(pll->on);
ee7b9f93 1803
46edb027 1804 DRM_DEBUG_KMS("enabling %s\n", pll->name);
e7b903d2 1805 pll->enable(dev_priv, pll);
ee7b9f93 1806 pll->on = true;
92f2584a
JB
1807}
1808
e2b78267 1809static void intel_disable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1810{
3d13ef2e
DL
1811 struct drm_device *dev = crtc->base.dev;
1812 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1813 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
4c609cb8 1814
92f2584a 1815 /* PCH only available on ILK+ */
3d13ef2e 1816 BUG_ON(INTEL_INFO(dev)->gen < 5);
87a875bb 1817 if (WARN_ON(pll == NULL))
ee7b9f93 1818 return;
92f2584a 1819
48da64a8
CW
1820 if (WARN_ON(pll->refcount == 0))
1821 return;
7a419866 1822
46edb027
DV
1823 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1824 pll->name, pll->active, pll->on,
e2b78267 1825 crtc->base.base.id);
7a419866 1826
48da64a8 1827 if (WARN_ON(pll->active == 0)) {
e9d6944e 1828 assert_shared_dpll_disabled(dev_priv, pll);
48da64a8
CW
1829 return;
1830 }
1831
e9d6944e 1832 assert_shared_dpll_enabled(dev_priv, pll);
f4a091c7 1833 WARN_ON(!pll->on);
cdbd2316 1834 if (--pll->active)
7a419866 1835 return;
ee7b9f93 1836
46edb027 1837 DRM_DEBUG_KMS("disabling %s\n", pll->name);
e7b903d2 1838 pll->disable(dev_priv, pll);
ee7b9f93 1839 pll->on = false;
92f2584a
JB
1840}
1841
b8a4f404
PZ
1842static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1843 enum pipe pipe)
040484af 1844{
23670b32 1845 struct drm_device *dev = dev_priv->dev;
7c26e5c6 1846 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e2b78267 1847 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
23670b32 1848 uint32_t reg, val, pipeconf_val;
040484af
JB
1849
1850 /* PCH only available on ILK+ */
3d13ef2e 1851 BUG_ON(INTEL_INFO(dev)->gen < 5);
040484af
JB
1852
1853 /* Make sure PCH DPLL is enabled */
e72f9fbf 1854 assert_shared_dpll_enabled(dev_priv,
e9d6944e 1855 intel_crtc_to_shared_dpll(intel_crtc));
040484af
JB
1856
1857 /* FDI must be feeding us bits for PCH ports */
1858 assert_fdi_tx_enabled(dev_priv, pipe);
1859 assert_fdi_rx_enabled(dev_priv, pipe);
1860
23670b32
DV
1861 if (HAS_PCH_CPT(dev)) {
1862 /* Workaround: Set the timing override bit before enabling the
1863 * pch transcoder. */
1864 reg = TRANS_CHICKEN2(pipe);
1865 val = I915_READ(reg);
1866 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1867 I915_WRITE(reg, val);
59c859d6 1868 }
23670b32 1869
ab9412ba 1870 reg = PCH_TRANSCONF(pipe);
040484af 1871 val = I915_READ(reg);
5f7f726d 1872 pipeconf_val = I915_READ(PIPECONF(pipe));
e9bcff5c
JB
1873
1874 if (HAS_PCH_IBX(dev_priv->dev)) {
1875 /*
1876 * make the BPC in transcoder be consistent with
1877 * that in pipeconf reg.
1878 */
dfd07d72
DV
1879 val &= ~PIPECONF_BPC_MASK;
1880 val |= pipeconf_val & PIPECONF_BPC_MASK;
e9bcff5c 1881 }
5f7f726d
PZ
1882
1883 val &= ~TRANS_INTERLACE_MASK;
1884 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
7c26e5c6
PZ
1885 if (HAS_PCH_IBX(dev_priv->dev) &&
1886 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1887 val |= TRANS_LEGACY_INTERLACED_ILK;
1888 else
1889 val |= TRANS_INTERLACED;
5f7f726d
PZ
1890 else
1891 val |= TRANS_PROGRESSIVE;
1892
040484af
JB
1893 I915_WRITE(reg, val | TRANS_ENABLE);
1894 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
4bb6f1f3 1895 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
040484af
JB
1896}
1897
8fb033d7 1898static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
937bb610 1899 enum transcoder cpu_transcoder)
040484af 1900{
8fb033d7 1901 u32 val, pipeconf_val;
8fb033d7
PZ
1902
1903 /* PCH only available on ILK+ */
3d13ef2e 1904 BUG_ON(INTEL_INFO(dev_priv->dev)->gen < 5);
8fb033d7 1905
8fb033d7 1906 /* FDI must be feeding us bits for PCH ports */
1a240d4d 1907 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
937bb610 1908 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
8fb033d7 1909
223a6fdf
PZ
1910 /* Workaround: set timing override bit. */
1911 val = I915_READ(_TRANSA_CHICKEN2);
23670b32 1912 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
223a6fdf
PZ
1913 I915_WRITE(_TRANSA_CHICKEN2, val);
1914
25f3ef11 1915 val = TRANS_ENABLE;
937bb610 1916 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
8fb033d7 1917
9a76b1c6
PZ
1918 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1919 PIPECONF_INTERLACED_ILK)
a35f2679 1920 val |= TRANS_INTERLACED;
8fb033d7
PZ
1921 else
1922 val |= TRANS_PROGRESSIVE;
1923
ab9412ba
DV
1924 I915_WRITE(LPT_TRANSCONF, val);
1925 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
937bb610 1926 DRM_ERROR("Failed to enable PCH transcoder\n");
8fb033d7
PZ
1927}
1928
b8a4f404
PZ
1929static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1930 enum pipe pipe)
040484af 1931{
23670b32
DV
1932 struct drm_device *dev = dev_priv->dev;
1933 uint32_t reg, val;
040484af
JB
1934
1935 /* FDI relies on the transcoder */
1936 assert_fdi_tx_disabled(dev_priv, pipe);
1937 assert_fdi_rx_disabled(dev_priv, pipe);
1938
291906f1
JB
1939 /* Ports must be off as well */
1940 assert_pch_ports_disabled(dev_priv, pipe);
1941
ab9412ba 1942 reg = PCH_TRANSCONF(pipe);
040484af
JB
1943 val = I915_READ(reg);
1944 val &= ~TRANS_ENABLE;
1945 I915_WRITE(reg, val);
1946 /* wait for PCH transcoder off, transcoder state */
1947 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
4bb6f1f3 1948 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
23670b32
DV
1949
1950 if (!HAS_PCH_IBX(dev)) {
1951 /* Workaround: Clear the timing override chicken bit again. */
1952 reg = TRANS_CHICKEN2(pipe);
1953 val = I915_READ(reg);
1954 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1955 I915_WRITE(reg, val);
1956 }
040484af
JB
1957}
1958
ab4d966c 1959static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
8fb033d7 1960{
8fb033d7
PZ
1961 u32 val;
1962
ab9412ba 1963 val = I915_READ(LPT_TRANSCONF);
8fb033d7 1964 val &= ~TRANS_ENABLE;
ab9412ba 1965 I915_WRITE(LPT_TRANSCONF, val);
8fb033d7 1966 /* wait for PCH transcoder off, transcoder state */
ab9412ba 1967 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
8a52fd9f 1968 DRM_ERROR("Failed to disable PCH transcoder\n");
223a6fdf
PZ
1969
1970 /* Workaround: clear timing override bit. */
1971 val = I915_READ(_TRANSA_CHICKEN2);
23670b32 1972 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
223a6fdf 1973 I915_WRITE(_TRANSA_CHICKEN2, val);
040484af
JB
1974}
1975
b24e7179 1976/**
309cfea8 1977 * intel_enable_pipe - enable a pipe, asserting requirements
0372264a 1978 * @crtc: crtc responsible for the pipe
b24e7179 1979 *
0372264a 1980 * Enable @crtc's pipe, making sure that various hardware specific requirements
b24e7179 1981 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
b24e7179 1982 */
e1fdc473 1983static void intel_enable_pipe(struct intel_crtc *crtc)
b24e7179 1984{
0372264a
PZ
1985 struct drm_device *dev = crtc->base.dev;
1986 struct drm_i915_private *dev_priv = dev->dev_private;
1987 enum pipe pipe = crtc->pipe;
702e7a56
PZ
1988 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1989 pipe);
1a240d4d 1990 enum pipe pch_transcoder;
b24e7179
JB
1991 int reg;
1992 u32 val;
1993
58c6eaa2 1994 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 1995 assert_cursor_disabled(dev_priv, pipe);
58c6eaa2
DV
1996 assert_sprites_disabled(dev_priv, pipe);
1997
681e5811 1998 if (HAS_PCH_LPT(dev_priv->dev))
cc391bbb
PZ
1999 pch_transcoder = TRANSCODER_A;
2000 else
2001 pch_transcoder = pipe;
2002
b24e7179
JB
2003 /*
2004 * A pipe without a PLL won't actually be able to drive bits from
2005 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2006 * need the check.
2007 */
2008 if (!HAS_PCH_SPLIT(dev_priv->dev))
fbf3218a 2009 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DSI))
23538ef1
JN
2010 assert_dsi_pll_enabled(dev_priv);
2011 else
2012 assert_pll_enabled(dev_priv, pipe);
040484af 2013 else {
30421c4f 2014 if (crtc->config.has_pch_encoder) {
040484af 2015 /* if driving the PCH, we need FDI enabled */
cc391bbb 2016 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
1a240d4d
DV
2017 assert_fdi_tx_pll_enabled(dev_priv,
2018 (enum pipe) cpu_transcoder);
040484af
JB
2019 }
2020 /* FIXME: assert CPU port conditions for SNB+ */
2021 }
b24e7179 2022
702e7a56 2023 reg = PIPECONF(cpu_transcoder);
b24e7179 2024 val = I915_READ(reg);
7ad25d48
PZ
2025 if (val & PIPECONF_ENABLE) {
2026 WARN_ON(!(pipe == PIPE_A &&
2027 dev_priv->quirks & QUIRK_PIPEA_FORCE));
00d70b15 2028 return;
7ad25d48 2029 }
00d70b15
CW
2030
2031 I915_WRITE(reg, val | PIPECONF_ENABLE);
851855d8 2032 POSTING_READ(reg);
b24e7179
JB
2033}
2034
2035/**
309cfea8 2036 * intel_disable_pipe - disable a pipe, asserting requirements
b24e7179
JB
2037 * @dev_priv: i915 private structure
2038 * @pipe: pipe to disable
2039 *
2040 * Disable @pipe, making sure that various hardware specific requirements
2041 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
2042 *
2043 * @pipe should be %PIPE_A or %PIPE_B.
2044 *
2045 * Will wait until the pipe has shut down before returning.
2046 */
2047static void intel_disable_pipe(struct drm_i915_private *dev_priv,
2048 enum pipe pipe)
2049{
702e7a56
PZ
2050 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2051 pipe);
b24e7179
JB
2052 int reg;
2053 u32 val;
2054
2055 /*
2056 * Make sure planes won't keep trying to pump pixels to us,
2057 * or we might hang the display.
2058 */
2059 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2060 assert_cursor_disabled(dev_priv, pipe);
19332d7a 2061 assert_sprites_disabled(dev_priv, pipe);
b24e7179
JB
2062
2063 /* Don't disable pipe A or pipe A PLLs if needed */
2064 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2065 return;
2066
702e7a56 2067 reg = PIPECONF(cpu_transcoder);
b24e7179 2068 val = I915_READ(reg);
00d70b15
CW
2069 if ((val & PIPECONF_ENABLE) == 0)
2070 return;
2071
2072 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
b24e7179
JB
2073 intel_wait_for_pipe_off(dev_priv->dev, pipe);
2074}
2075
d74362c9
KP
2076/*
2077 * Plane regs are double buffered, going from enabled->disabled needs a
2078 * trigger in order to latch. The display address reg provides this.
2079 */
1dba99f4
VS
2080void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2081 enum plane plane)
d74362c9 2082{
3d13ef2e
DL
2083 struct drm_device *dev = dev_priv->dev;
2084 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
1dba99f4
VS
2085
2086 I915_WRITE(reg, I915_READ(reg));
2087 POSTING_READ(reg);
d74362c9
KP
2088}
2089
b24e7179 2090/**
262ca2b0 2091 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
b24e7179
JB
2092 * @dev_priv: i915 private structure
2093 * @plane: plane to enable
2094 * @pipe: pipe being fed
2095 *
2096 * Enable @plane on @pipe, making sure that @pipe is running first.
2097 */
262ca2b0
MR
2098static void intel_enable_primary_hw_plane(struct drm_i915_private *dev_priv,
2099 enum plane plane, enum pipe pipe)
b24e7179 2100{
939c2fe8
VS
2101 struct intel_crtc *intel_crtc =
2102 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
b24e7179
JB
2103 int reg;
2104 u32 val;
2105
2106 /* If the pipe isn't enabled, we can't pump pixels and may hang */
2107 assert_pipe_enabled(dev_priv, pipe);
2108
98ec7739
VS
2109 if (intel_crtc->primary_enabled)
2110 return;
0037f71c 2111
4c445e0e 2112 intel_crtc->primary_enabled = true;
939c2fe8 2113
b24e7179
JB
2114 reg = DSPCNTR(plane);
2115 val = I915_READ(reg);
10efa932 2116 WARN_ON(val & DISPLAY_PLANE_ENABLE);
00d70b15
CW
2117
2118 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
1dba99f4 2119 intel_flush_primary_plane(dev_priv, plane);
b24e7179
JB
2120}
2121
b24e7179 2122/**
262ca2b0 2123 * intel_disable_primary_hw_plane - disable the primary hardware plane
b24e7179
JB
2124 * @dev_priv: i915 private structure
2125 * @plane: plane to disable
2126 * @pipe: pipe consuming the data
2127 *
2128 * Disable @plane; should be an independent operation.
2129 */
262ca2b0
MR
2130static void intel_disable_primary_hw_plane(struct drm_i915_private *dev_priv,
2131 enum plane plane, enum pipe pipe)
b24e7179 2132{
939c2fe8
VS
2133 struct intel_crtc *intel_crtc =
2134 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
b24e7179
JB
2135 int reg;
2136 u32 val;
2137
98ec7739
VS
2138 if (!intel_crtc->primary_enabled)
2139 return;
0037f71c 2140
4c445e0e 2141 intel_crtc->primary_enabled = false;
939c2fe8 2142
b24e7179
JB
2143 reg = DSPCNTR(plane);
2144 val = I915_READ(reg);
10efa932 2145 WARN_ON((val & DISPLAY_PLANE_ENABLE) == 0);
00d70b15
CW
2146
2147 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
1dba99f4 2148 intel_flush_primary_plane(dev_priv, plane);
b24e7179
JB
2149}
2150
693db184
CW
2151static bool need_vtd_wa(struct drm_device *dev)
2152{
2153#ifdef CONFIG_INTEL_IOMMU
2154 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2155 return true;
2156#endif
2157 return false;
2158}
2159
a57ce0b2
JB
2160static int intel_align_height(struct drm_device *dev, int height, bool tiled)
2161{
2162 int tile_height;
2163
2164 tile_height = tiled ? (IS_GEN2(dev) ? 16 : 8) : 1;
2165 return ALIGN(height, tile_height);
2166}
2167
127bd2ac 2168int
48b956c5 2169intel_pin_and_fence_fb_obj(struct drm_device *dev,
05394f39 2170 struct drm_i915_gem_object *obj,
a4872ba6 2171 struct intel_engine_cs *pipelined)
6b95a207 2172{
ce453d81 2173 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
2174 u32 alignment;
2175 int ret;
2176
05394f39 2177 switch (obj->tiling_mode) {
6b95a207 2178 case I915_TILING_NONE:
534843da
CW
2179 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2180 alignment = 128 * 1024;
a6c45cf0 2181 else if (INTEL_INFO(dev)->gen >= 4)
534843da
CW
2182 alignment = 4 * 1024;
2183 else
2184 alignment = 64 * 1024;
6b95a207
KH
2185 break;
2186 case I915_TILING_X:
2187 /* pin() will align the object as required by fence */
2188 alignment = 0;
2189 break;
2190 case I915_TILING_Y:
80075d49 2191 WARN(1, "Y tiled bo slipped through, driver bug!\n");
6b95a207
KH
2192 return -EINVAL;
2193 default:
2194 BUG();
2195 }
2196
693db184
CW
2197 /* Note that the w/a also requires 64 PTE of padding following the
2198 * bo. We currently fill all unused PTE with the shadow page and so
2199 * we should always have valid PTE following the scanout preventing
2200 * the VT-d warning.
2201 */
2202 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2203 alignment = 256 * 1024;
2204
ce453d81 2205 dev_priv->mm.interruptible = false;
2da3b9b9 2206 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
48b956c5 2207 if (ret)
ce453d81 2208 goto err_interruptible;
6b95a207
KH
2209
2210 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2211 * fence, whereas 965+ only requires a fence if using
2212 * framebuffer compression. For simplicity, we always install
2213 * a fence as the cost is not that onerous.
2214 */
06d98131 2215 ret = i915_gem_object_get_fence(obj);
9a5a53b3
CW
2216 if (ret)
2217 goto err_unpin;
1690e1eb 2218
9a5a53b3 2219 i915_gem_object_pin_fence(obj);
6b95a207 2220
ce453d81 2221 dev_priv->mm.interruptible = true;
6b95a207 2222 return 0;
48b956c5
CW
2223
2224err_unpin:
cc98b413 2225 i915_gem_object_unpin_from_display_plane(obj);
ce453d81
CW
2226err_interruptible:
2227 dev_priv->mm.interruptible = true;
48b956c5 2228 return ret;
6b95a207
KH
2229}
2230
1690e1eb
CW
2231void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2232{
2233 i915_gem_object_unpin_fence(obj);
cc98b413 2234 i915_gem_object_unpin_from_display_plane(obj);
1690e1eb
CW
2235}
2236
c2c75131
DV
2237/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2238 * is assumed to be a power-of-two. */
bc752862
CW
2239unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2240 unsigned int tiling_mode,
2241 unsigned int cpp,
2242 unsigned int pitch)
c2c75131 2243{
bc752862
CW
2244 if (tiling_mode != I915_TILING_NONE) {
2245 unsigned int tile_rows, tiles;
c2c75131 2246
bc752862
CW
2247 tile_rows = *y / 8;
2248 *y %= 8;
c2c75131 2249
bc752862
CW
2250 tiles = *x / (512/cpp);
2251 *x %= 512/cpp;
2252
2253 return tile_rows * pitch * 8 + tiles * 4096;
2254 } else {
2255 unsigned int offset;
2256
2257 offset = *y * pitch + *x * cpp;
2258 *y = 0;
2259 *x = (offset & 4095) / cpp;
2260 return offset & -4096;
2261 }
c2c75131
DV
2262}
2263
46f297fb
JB
2264int intel_format_to_fourcc(int format)
2265{
2266 switch (format) {
2267 case DISPPLANE_8BPP:
2268 return DRM_FORMAT_C8;
2269 case DISPPLANE_BGRX555:
2270 return DRM_FORMAT_XRGB1555;
2271 case DISPPLANE_BGRX565:
2272 return DRM_FORMAT_RGB565;
2273 default:
2274 case DISPPLANE_BGRX888:
2275 return DRM_FORMAT_XRGB8888;
2276 case DISPPLANE_RGBX888:
2277 return DRM_FORMAT_XBGR8888;
2278 case DISPPLANE_BGRX101010:
2279 return DRM_FORMAT_XRGB2101010;
2280 case DISPPLANE_RGBX101010:
2281 return DRM_FORMAT_XBGR2101010;
2282 }
2283}
2284
484b41dd 2285static bool intel_alloc_plane_obj(struct intel_crtc *crtc,
46f297fb
JB
2286 struct intel_plane_config *plane_config)
2287{
2288 struct drm_device *dev = crtc->base.dev;
2289 struct drm_i915_gem_object *obj = NULL;
2290 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2291 u32 base = plane_config->base;
2292
ff2652ea
CW
2293 if (plane_config->size == 0)
2294 return false;
2295
46f297fb
JB
2296 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2297 plane_config->size);
2298 if (!obj)
484b41dd 2299 return false;
46f297fb
JB
2300
2301 if (plane_config->tiled) {
2302 obj->tiling_mode = I915_TILING_X;
66e514c1 2303 obj->stride = crtc->base.primary->fb->pitches[0];
46f297fb
JB
2304 }
2305
66e514c1
DA
2306 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2307 mode_cmd.width = crtc->base.primary->fb->width;
2308 mode_cmd.height = crtc->base.primary->fb->height;
2309 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
46f297fb
JB
2310
2311 mutex_lock(&dev->struct_mutex);
2312
66e514c1 2313 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
484b41dd 2314 &mode_cmd, obj)) {
46f297fb
JB
2315 DRM_DEBUG_KMS("intel fb init failed\n");
2316 goto out_unref_obj;
2317 }
2318
2319 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2320
2321 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2322 return true;
46f297fb
JB
2323
2324out_unref_obj:
2325 drm_gem_object_unreference(&obj->base);
2326 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2327 return false;
2328}
2329
2330static void intel_find_plane_obj(struct intel_crtc *intel_crtc,
2331 struct intel_plane_config *plane_config)
2332{
2333 struct drm_device *dev = intel_crtc->base.dev;
2334 struct drm_crtc *c;
2335 struct intel_crtc *i;
2336 struct intel_framebuffer *fb;
2337
66e514c1 2338 if (!intel_crtc->base.primary->fb)
484b41dd
JB
2339 return;
2340
2341 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2342 return;
2343
66e514c1
DA
2344 kfree(intel_crtc->base.primary->fb);
2345 intel_crtc->base.primary->fb = NULL;
484b41dd
JB
2346
2347 /*
2348 * Failed to alloc the obj, check to see if we should share
2349 * an fb with another CRTC instead
2350 */
70e1e0ec 2351 for_each_crtc(dev, c) {
484b41dd
JB
2352 i = to_intel_crtc(c);
2353
2354 if (c == &intel_crtc->base)
2355 continue;
2356
66e514c1 2357 if (!i->active || !c->primary->fb)
484b41dd
JB
2358 continue;
2359
66e514c1 2360 fb = to_intel_framebuffer(c->primary->fb);
484b41dd 2361 if (i915_gem_obj_ggtt_offset(fb->obj) == plane_config->base) {
66e514c1
DA
2362 drm_framebuffer_reference(c->primary->fb);
2363 intel_crtc->base.primary->fb = c->primary->fb;
484b41dd
JB
2364 break;
2365 }
2366 }
46f297fb
JB
2367}
2368
29b9bde6
DV
2369static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2370 struct drm_framebuffer *fb,
2371 int x, int y)
81255565
JB
2372{
2373 struct drm_device *dev = crtc->dev;
2374 struct drm_i915_private *dev_priv = dev->dev_private;
2375 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2376 struct intel_framebuffer *intel_fb;
05394f39 2377 struct drm_i915_gem_object *obj;
81255565 2378 int plane = intel_crtc->plane;
e506a0c6 2379 unsigned long linear_offset;
81255565 2380 u32 dspcntr;
5eddb70b 2381 u32 reg;
81255565 2382
81255565
JB
2383 intel_fb = to_intel_framebuffer(fb);
2384 obj = intel_fb->obj;
81255565 2385
5eddb70b
CW
2386 reg = DSPCNTR(plane);
2387 dspcntr = I915_READ(reg);
81255565
JB
2388 /* Mask out pixel format bits in case we change it */
2389 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
57779d06
VS
2390 switch (fb->pixel_format) {
2391 case DRM_FORMAT_C8:
81255565
JB
2392 dspcntr |= DISPPLANE_8BPP;
2393 break;
57779d06
VS
2394 case DRM_FORMAT_XRGB1555:
2395 case DRM_FORMAT_ARGB1555:
2396 dspcntr |= DISPPLANE_BGRX555;
81255565 2397 break;
57779d06
VS
2398 case DRM_FORMAT_RGB565:
2399 dspcntr |= DISPPLANE_BGRX565;
2400 break;
2401 case DRM_FORMAT_XRGB8888:
2402 case DRM_FORMAT_ARGB8888:
2403 dspcntr |= DISPPLANE_BGRX888;
2404 break;
2405 case DRM_FORMAT_XBGR8888:
2406 case DRM_FORMAT_ABGR8888:
2407 dspcntr |= DISPPLANE_RGBX888;
2408 break;
2409 case DRM_FORMAT_XRGB2101010:
2410 case DRM_FORMAT_ARGB2101010:
2411 dspcntr |= DISPPLANE_BGRX101010;
2412 break;
2413 case DRM_FORMAT_XBGR2101010:
2414 case DRM_FORMAT_ABGR2101010:
2415 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
2416 break;
2417 default:
baba133a 2418 BUG();
81255565 2419 }
57779d06 2420
a6c45cf0 2421 if (INTEL_INFO(dev)->gen >= 4) {
05394f39 2422 if (obj->tiling_mode != I915_TILING_NONE)
81255565
JB
2423 dspcntr |= DISPPLANE_TILED;
2424 else
2425 dspcntr &= ~DISPPLANE_TILED;
2426 }
2427
de1aa629
VS
2428 if (IS_G4X(dev))
2429 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2430
5eddb70b 2431 I915_WRITE(reg, dspcntr);
81255565 2432
e506a0c6 2433 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
81255565 2434
c2c75131
DV
2435 if (INTEL_INFO(dev)->gen >= 4) {
2436 intel_crtc->dspaddr_offset =
bc752862
CW
2437 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2438 fb->bits_per_pixel / 8,
2439 fb->pitches[0]);
c2c75131
DV
2440 linear_offset -= intel_crtc->dspaddr_offset;
2441 } else {
e506a0c6 2442 intel_crtc->dspaddr_offset = linear_offset;
c2c75131 2443 }
e506a0c6 2444
f343c5f6
BW
2445 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2446 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2447 fb->pitches[0]);
01f2c773 2448 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
a6c45cf0 2449 if (INTEL_INFO(dev)->gen >= 4) {
85ba7b7d
DV
2450 I915_WRITE(DSPSURF(plane),
2451 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
5eddb70b 2452 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 2453 I915_WRITE(DSPLINOFF(plane), linear_offset);
5eddb70b 2454 } else
f343c5f6 2455 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
5eddb70b 2456 POSTING_READ(reg);
17638cd6
JB
2457}
2458
29b9bde6
DV
2459static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2460 struct drm_framebuffer *fb,
2461 int x, int y)
17638cd6
JB
2462{
2463 struct drm_device *dev = crtc->dev;
2464 struct drm_i915_private *dev_priv = dev->dev_private;
2465 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2466 struct intel_framebuffer *intel_fb;
2467 struct drm_i915_gem_object *obj;
2468 int plane = intel_crtc->plane;
e506a0c6 2469 unsigned long linear_offset;
17638cd6
JB
2470 u32 dspcntr;
2471 u32 reg;
2472
17638cd6
JB
2473 intel_fb = to_intel_framebuffer(fb);
2474 obj = intel_fb->obj;
2475
2476 reg = DSPCNTR(plane);
2477 dspcntr = I915_READ(reg);
2478 /* Mask out pixel format bits in case we change it */
2479 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
57779d06
VS
2480 switch (fb->pixel_format) {
2481 case DRM_FORMAT_C8:
17638cd6
JB
2482 dspcntr |= DISPPLANE_8BPP;
2483 break;
57779d06
VS
2484 case DRM_FORMAT_RGB565:
2485 dspcntr |= DISPPLANE_BGRX565;
17638cd6 2486 break;
57779d06
VS
2487 case DRM_FORMAT_XRGB8888:
2488 case DRM_FORMAT_ARGB8888:
2489 dspcntr |= DISPPLANE_BGRX888;
2490 break;
2491 case DRM_FORMAT_XBGR8888:
2492 case DRM_FORMAT_ABGR8888:
2493 dspcntr |= DISPPLANE_RGBX888;
2494 break;
2495 case DRM_FORMAT_XRGB2101010:
2496 case DRM_FORMAT_ARGB2101010:
2497 dspcntr |= DISPPLANE_BGRX101010;
2498 break;
2499 case DRM_FORMAT_XBGR2101010:
2500 case DRM_FORMAT_ABGR2101010:
2501 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
2502 break;
2503 default:
baba133a 2504 BUG();
17638cd6
JB
2505 }
2506
2507 if (obj->tiling_mode != I915_TILING_NONE)
2508 dspcntr |= DISPPLANE_TILED;
2509 else
2510 dspcntr &= ~DISPPLANE_TILED;
2511
b42c6009 2512 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
1f5d76db
PZ
2513 dspcntr &= ~DISPPLANE_TRICKLE_FEED_DISABLE;
2514 else
2515 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
17638cd6
JB
2516
2517 I915_WRITE(reg, dspcntr);
2518
e506a0c6 2519 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
c2c75131 2520 intel_crtc->dspaddr_offset =
bc752862
CW
2521 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2522 fb->bits_per_pixel / 8,
2523 fb->pitches[0]);
c2c75131 2524 linear_offset -= intel_crtc->dspaddr_offset;
17638cd6 2525
f343c5f6
BW
2526 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2527 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2528 fb->pitches[0]);
01f2c773 2529 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
85ba7b7d
DV
2530 I915_WRITE(DSPSURF(plane),
2531 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
b3dc685e 2532 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
bc1c91eb
DL
2533 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2534 } else {
2535 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2536 I915_WRITE(DSPLINOFF(plane), linear_offset);
2537 }
17638cd6 2538 POSTING_READ(reg);
17638cd6
JB
2539}
2540
2541/* Assume fb object is pinned & idle & fenced and just update base pointers */
2542static int
2543intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2544 int x, int y, enum mode_set_atomic state)
2545{
2546 struct drm_device *dev = crtc->dev;
2547 struct drm_i915_private *dev_priv = dev->dev_private;
17638cd6 2548
6b8e6ed0
CW
2549 if (dev_priv->display.disable_fbc)
2550 dev_priv->display.disable_fbc(dev);
3dec0095 2551 intel_increase_pllclock(crtc);
81255565 2552
29b9bde6
DV
2553 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2554
2555 return 0;
81255565
JB
2556}
2557
96a02917
VS
2558void intel_display_handle_reset(struct drm_device *dev)
2559{
2560 struct drm_i915_private *dev_priv = dev->dev_private;
2561 struct drm_crtc *crtc;
2562
2563 /*
2564 * Flips in the rings have been nuked by the reset,
2565 * so complete all pending flips so that user space
2566 * will get its events and not get stuck.
2567 *
2568 * Also update the base address of all primary
2569 * planes to the the last fb to make sure we're
2570 * showing the correct fb after a reset.
2571 *
2572 * Need to make two loops over the crtcs so that we
2573 * don't try to grab a crtc mutex before the
2574 * pending_flip_queue really got woken up.
2575 */
2576
70e1e0ec 2577 for_each_crtc(dev, crtc) {
96a02917
VS
2578 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2579 enum plane plane = intel_crtc->plane;
2580
2581 intel_prepare_page_flip(dev, plane);
2582 intel_finish_page_flip_plane(dev, plane);
2583 }
2584
70e1e0ec 2585 for_each_crtc(dev, crtc) {
96a02917
VS
2586 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2587
51fd371b 2588 drm_modeset_lock(&crtc->mutex, NULL);
947fdaad
CW
2589 /*
2590 * FIXME: Once we have proper support for primary planes (and
2591 * disabling them without disabling the entire crtc) allow again
66e514c1 2592 * a NULL crtc->primary->fb.
947fdaad 2593 */
f4510a27 2594 if (intel_crtc->active && crtc->primary->fb)
262ca2b0 2595 dev_priv->display.update_primary_plane(crtc,
66e514c1 2596 crtc->primary->fb,
262ca2b0
MR
2597 crtc->x,
2598 crtc->y);
51fd371b 2599 drm_modeset_unlock(&crtc->mutex);
96a02917
VS
2600 }
2601}
2602
14667a4b
CW
2603static int
2604intel_finish_fb(struct drm_framebuffer *old_fb)
2605{
2606 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2607 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2608 bool was_interruptible = dev_priv->mm.interruptible;
2609 int ret;
2610
14667a4b
CW
2611 /* Big Hammer, we also need to ensure that any pending
2612 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2613 * current scanout is retired before unpinning the old
2614 * framebuffer.
2615 *
2616 * This should only fail upon a hung GPU, in which case we
2617 * can safely continue.
2618 */
2619 dev_priv->mm.interruptible = false;
2620 ret = i915_gem_object_finish_gpu(obj);
2621 dev_priv->mm.interruptible = was_interruptible;
2622
2623 return ret;
2624}
2625
7d5e3799
CW
2626static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2627{
2628 struct drm_device *dev = crtc->dev;
2629 struct drm_i915_private *dev_priv = dev->dev_private;
2630 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2631 unsigned long flags;
2632 bool pending;
2633
2634 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2635 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2636 return false;
2637
2638 spin_lock_irqsave(&dev->event_lock, flags);
2639 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2640 spin_unlock_irqrestore(&dev->event_lock, flags);
2641
2642 return pending;
2643}
2644
5c3b82e2 2645static int
3c4fdcfb 2646intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
94352cf9 2647 struct drm_framebuffer *fb)
79e53945
JB
2648{
2649 struct drm_device *dev = crtc->dev;
6b8e6ed0 2650 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 2651 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
94352cf9 2652 struct drm_framebuffer *old_fb;
5c3b82e2 2653 int ret;
79e53945 2654
7d5e3799
CW
2655 if (intel_crtc_has_pending_flip(crtc)) {
2656 DRM_ERROR("pipe is still busy with an old pageflip\n");
2657 return -EBUSY;
2658 }
2659
79e53945 2660 /* no fb bound */
94352cf9 2661 if (!fb) {
a5071c2f 2662 DRM_ERROR("No FB bound\n");
5c3b82e2
CW
2663 return 0;
2664 }
2665
7eb552ae 2666 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
84f44ce7
VS
2667 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2668 plane_name(intel_crtc->plane),
2669 INTEL_INFO(dev)->num_pipes);
5c3b82e2 2670 return -EINVAL;
79e53945
JB
2671 }
2672
5c3b82e2 2673 mutex_lock(&dev->struct_mutex);
265db958 2674 ret = intel_pin_and_fence_fb_obj(dev,
94352cf9 2675 to_intel_framebuffer(fb)->obj,
919926ae 2676 NULL);
8ac36ec1 2677 mutex_unlock(&dev->struct_mutex);
5c3b82e2 2678 if (ret != 0) {
a5071c2f 2679 DRM_ERROR("pin & fence failed\n");
5c3b82e2
CW
2680 return ret;
2681 }
79e53945 2682
bb2043de
DL
2683 /*
2684 * Update pipe size and adjust fitter if needed: the reason for this is
2685 * that in compute_mode_changes we check the native mode (not the pfit
2686 * mode) to see if we can flip rather than do a full mode set. In the
2687 * fastboot case, we'll flip, but if we don't update the pipesrc and
2688 * pfit state, we'll end up with a big fb scanned out into the wrong
2689 * sized surface.
2690 *
2691 * To fix this properly, we need to hoist the checks up into
2692 * compute_mode_changes (or above), check the actual pfit state and
2693 * whether the platform allows pfit disable with pipe active, and only
2694 * then update the pipesrc and pfit state, even on the flip path.
2695 */
d330a953 2696 if (i915.fastboot) {
d7bf63f2
DL
2697 const struct drm_display_mode *adjusted_mode =
2698 &intel_crtc->config.adjusted_mode;
2699
4d6a3e63 2700 I915_WRITE(PIPESRC(intel_crtc->pipe),
d7bf63f2
DL
2701 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2702 (adjusted_mode->crtc_vdisplay - 1));
fd4daa9c 2703 if (!intel_crtc->config.pch_pfit.enabled &&
4d6a3e63
JB
2704 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2705 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2706 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2707 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2708 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2709 }
0637d60d
JB
2710 intel_crtc->config.pipe_src_w = adjusted_mode->crtc_hdisplay;
2711 intel_crtc->config.pipe_src_h = adjusted_mode->crtc_vdisplay;
4d6a3e63
JB
2712 }
2713
29b9bde6 2714 dev_priv->display.update_primary_plane(crtc, fb, x, y);
3c4fdcfb 2715
f4510a27
MR
2716 old_fb = crtc->primary->fb;
2717 crtc->primary->fb = fb;
6c4c86f5
DV
2718 crtc->x = x;
2719 crtc->y = y;
94352cf9 2720
b7f1de28 2721 if (old_fb) {
d7697eea
DV
2722 if (intel_crtc->active && old_fb != fb)
2723 intel_wait_for_vblank(dev, intel_crtc->pipe);
8ac36ec1 2724 mutex_lock(&dev->struct_mutex);
1690e1eb 2725 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
8ac36ec1 2726 mutex_unlock(&dev->struct_mutex);
b7f1de28 2727 }
652c393a 2728
8ac36ec1 2729 mutex_lock(&dev->struct_mutex);
6b8e6ed0 2730 intel_update_fbc(dev);
4906557e 2731 intel_edp_psr_update(dev);
5c3b82e2 2732 mutex_unlock(&dev->struct_mutex);
79e53945 2733
5c3b82e2 2734 return 0;
79e53945
JB
2735}
2736
5e84e1a4
ZW
2737static void intel_fdi_normal_train(struct drm_crtc *crtc)
2738{
2739 struct drm_device *dev = crtc->dev;
2740 struct drm_i915_private *dev_priv = dev->dev_private;
2741 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2742 int pipe = intel_crtc->pipe;
2743 u32 reg, temp;
2744
2745 /* enable normal train */
2746 reg = FDI_TX_CTL(pipe);
2747 temp = I915_READ(reg);
61e499bf 2748 if (IS_IVYBRIDGE(dev)) {
357555c0
JB
2749 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2750 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
2751 } else {
2752 temp &= ~FDI_LINK_TRAIN_NONE;
2753 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 2754 }
5e84e1a4
ZW
2755 I915_WRITE(reg, temp);
2756
2757 reg = FDI_RX_CTL(pipe);
2758 temp = I915_READ(reg);
2759 if (HAS_PCH_CPT(dev)) {
2760 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2761 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2762 } else {
2763 temp &= ~FDI_LINK_TRAIN_NONE;
2764 temp |= FDI_LINK_TRAIN_NONE;
2765 }
2766 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2767
2768 /* wait one idle pattern time */
2769 POSTING_READ(reg);
2770 udelay(1000);
357555c0
JB
2771
2772 /* IVB wants error correction enabled */
2773 if (IS_IVYBRIDGE(dev))
2774 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2775 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
2776}
2777
1fbc0d78 2778static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
1e833f40 2779{
1fbc0d78
DV
2780 return crtc->base.enabled && crtc->active &&
2781 crtc->config.has_pch_encoder;
1e833f40
DV
2782}
2783
01a415fd
DV
2784static void ivb_modeset_global_resources(struct drm_device *dev)
2785{
2786 struct drm_i915_private *dev_priv = dev->dev_private;
2787 struct intel_crtc *pipe_B_crtc =
2788 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2789 struct intel_crtc *pipe_C_crtc =
2790 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2791 uint32_t temp;
2792
1e833f40
DV
2793 /*
2794 * When everything is off disable fdi C so that we could enable fdi B
2795 * with all lanes. Note that we don't care about enabled pipes without
2796 * an enabled pch encoder.
2797 */
2798 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2799 !pipe_has_enabled_pch(pipe_C_crtc)) {
01a415fd
DV
2800 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2801 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2802
2803 temp = I915_READ(SOUTH_CHICKEN1);
2804 temp &= ~FDI_BC_BIFURCATION_SELECT;
2805 DRM_DEBUG_KMS("disabling fdi C rx\n");
2806 I915_WRITE(SOUTH_CHICKEN1, temp);
2807 }
2808}
2809
8db9d77b
ZW
2810/* The FDI link training functions for ILK/Ibexpeak. */
2811static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2812{
2813 struct drm_device *dev = crtc->dev;
2814 struct drm_i915_private *dev_priv = dev->dev_private;
2815 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2816 int pipe = intel_crtc->pipe;
5eddb70b 2817 u32 reg, temp, tries;
8db9d77b 2818
1c8562f6 2819 /* FDI needs bits from pipe first */
0fc932b8 2820 assert_pipe_enabled(dev_priv, pipe);
0fc932b8 2821
e1a44743
AJ
2822 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2823 for train result */
5eddb70b
CW
2824 reg = FDI_RX_IMR(pipe);
2825 temp = I915_READ(reg);
e1a44743
AJ
2826 temp &= ~FDI_RX_SYMBOL_LOCK;
2827 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
2828 I915_WRITE(reg, temp);
2829 I915_READ(reg);
e1a44743
AJ
2830 udelay(150);
2831
8db9d77b 2832 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
2833 reg = FDI_TX_CTL(pipe);
2834 temp = I915_READ(reg);
627eb5a3
DV
2835 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2836 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
8db9d77b
ZW
2837 temp &= ~FDI_LINK_TRAIN_NONE;
2838 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 2839 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 2840
5eddb70b
CW
2841 reg = FDI_RX_CTL(pipe);
2842 temp = I915_READ(reg);
8db9d77b
ZW
2843 temp &= ~FDI_LINK_TRAIN_NONE;
2844 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
2845 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2846
2847 POSTING_READ(reg);
8db9d77b
ZW
2848 udelay(150);
2849
5b2adf89 2850 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
2851 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2852 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2853 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 2854
5eddb70b 2855 reg = FDI_RX_IIR(pipe);
e1a44743 2856 for (tries = 0; tries < 5; tries++) {
5eddb70b 2857 temp = I915_READ(reg);
8db9d77b
ZW
2858 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2859
2860 if ((temp & FDI_RX_BIT_LOCK)) {
2861 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 2862 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
2863 break;
2864 }
8db9d77b 2865 }
e1a44743 2866 if (tries == 5)
5eddb70b 2867 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
2868
2869 /* Train 2 */
5eddb70b
CW
2870 reg = FDI_TX_CTL(pipe);
2871 temp = I915_READ(reg);
8db9d77b
ZW
2872 temp &= ~FDI_LINK_TRAIN_NONE;
2873 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 2874 I915_WRITE(reg, temp);
8db9d77b 2875
5eddb70b
CW
2876 reg = FDI_RX_CTL(pipe);
2877 temp = I915_READ(reg);
8db9d77b
ZW
2878 temp &= ~FDI_LINK_TRAIN_NONE;
2879 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 2880 I915_WRITE(reg, temp);
8db9d77b 2881
5eddb70b
CW
2882 POSTING_READ(reg);
2883 udelay(150);
8db9d77b 2884
5eddb70b 2885 reg = FDI_RX_IIR(pipe);
e1a44743 2886 for (tries = 0; tries < 5; tries++) {
5eddb70b 2887 temp = I915_READ(reg);
8db9d77b
ZW
2888 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2889
2890 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 2891 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
2892 DRM_DEBUG_KMS("FDI train 2 done.\n");
2893 break;
2894 }
8db9d77b 2895 }
e1a44743 2896 if (tries == 5)
5eddb70b 2897 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
2898
2899 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 2900
8db9d77b
ZW
2901}
2902
0206e353 2903static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
2904 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2905 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2906 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2907 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2908};
2909
2910/* The FDI link training functions for SNB/Cougarpoint. */
2911static void gen6_fdi_link_train(struct drm_crtc *crtc)
2912{
2913 struct drm_device *dev = crtc->dev;
2914 struct drm_i915_private *dev_priv = dev->dev_private;
2915 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2916 int pipe = intel_crtc->pipe;
fa37d39e 2917 u32 reg, temp, i, retry;
8db9d77b 2918
e1a44743
AJ
2919 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2920 for train result */
5eddb70b
CW
2921 reg = FDI_RX_IMR(pipe);
2922 temp = I915_READ(reg);
e1a44743
AJ
2923 temp &= ~FDI_RX_SYMBOL_LOCK;
2924 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
2925 I915_WRITE(reg, temp);
2926
2927 POSTING_READ(reg);
e1a44743
AJ
2928 udelay(150);
2929
8db9d77b 2930 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
2931 reg = FDI_TX_CTL(pipe);
2932 temp = I915_READ(reg);
627eb5a3
DV
2933 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2934 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
8db9d77b
ZW
2935 temp &= ~FDI_LINK_TRAIN_NONE;
2936 temp |= FDI_LINK_TRAIN_PATTERN_1;
2937 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2938 /* SNB-B */
2939 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 2940 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 2941
d74cf324
DV
2942 I915_WRITE(FDI_RX_MISC(pipe),
2943 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2944
5eddb70b
CW
2945 reg = FDI_RX_CTL(pipe);
2946 temp = I915_READ(reg);
8db9d77b
ZW
2947 if (HAS_PCH_CPT(dev)) {
2948 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2949 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2950 } else {
2951 temp &= ~FDI_LINK_TRAIN_NONE;
2952 temp |= FDI_LINK_TRAIN_PATTERN_1;
2953 }
5eddb70b
CW
2954 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2955
2956 POSTING_READ(reg);
8db9d77b
ZW
2957 udelay(150);
2958
0206e353 2959 for (i = 0; i < 4; i++) {
5eddb70b
CW
2960 reg = FDI_TX_CTL(pipe);
2961 temp = I915_READ(reg);
8db9d77b
ZW
2962 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2963 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
2964 I915_WRITE(reg, temp);
2965
2966 POSTING_READ(reg);
8db9d77b
ZW
2967 udelay(500);
2968
fa37d39e
SP
2969 for (retry = 0; retry < 5; retry++) {
2970 reg = FDI_RX_IIR(pipe);
2971 temp = I915_READ(reg);
2972 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2973 if (temp & FDI_RX_BIT_LOCK) {
2974 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2975 DRM_DEBUG_KMS("FDI train 1 done.\n");
2976 break;
2977 }
2978 udelay(50);
8db9d77b 2979 }
fa37d39e
SP
2980 if (retry < 5)
2981 break;
8db9d77b
ZW
2982 }
2983 if (i == 4)
5eddb70b 2984 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
2985
2986 /* Train 2 */
5eddb70b
CW
2987 reg = FDI_TX_CTL(pipe);
2988 temp = I915_READ(reg);
8db9d77b
ZW
2989 temp &= ~FDI_LINK_TRAIN_NONE;
2990 temp |= FDI_LINK_TRAIN_PATTERN_2;
2991 if (IS_GEN6(dev)) {
2992 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2993 /* SNB-B */
2994 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2995 }
5eddb70b 2996 I915_WRITE(reg, temp);
8db9d77b 2997
5eddb70b
CW
2998 reg = FDI_RX_CTL(pipe);
2999 temp = I915_READ(reg);
8db9d77b
ZW
3000 if (HAS_PCH_CPT(dev)) {
3001 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3002 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3003 } else {
3004 temp &= ~FDI_LINK_TRAIN_NONE;
3005 temp |= FDI_LINK_TRAIN_PATTERN_2;
3006 }
5eddb70b
CW
3007 I915_WRITE(reg, temp);
3008
3009 POSTING_READ(reg);
8db9d77b
ZW
3010 udelay(150);
3011
0206e353 3012 for (i = 0; i < 4; i++) {
5eddb70b
CW
3013 reg = FDI_TX_CTL(pipe);
3014 temp = I915_READ(reg);
8db9d77b
ZW
3015 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3016 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3017 I915_WRITE(reg, temp);
3018
3019 POSTING_READ(reg);
8db9d77b
ZW
3020 udelay(500);
3021
fa37d39e
SP
3022 for (retry = 0; retry < 5; retry++) {
3023 reg = FDI_RX_IIR(pipe);
3024 temp = I915_READ(reg);
3025 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3026 if (temp & FDI_RX_SYMBOL_LOCK) {
3027 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3028 DRM_DEBUG_KMS("FDI train 2 done.\n");
3029 break;
3030 }
3031 udelay(50);
8db9d77b 3032 }
fa37d39e
SP
3033 if (retry < 5)
3034 break;
8db9d77b
ZW
3035 }
3036 if (i == 4)
5eddb70b 3037 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3038
3039 DRM_DEBUG_KMS("FDI train done.\n");
3040}
3041
357555c0
JB
3042/* Manual link training for Ivy Bridge A0 parts */
3043static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3044{
3045 struct drm_device *dev = crtc->dev;
3046 struct drm_i915_private *dev_priv = dev->dev_private;
3047 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3048 int pipe = intel_crtc->pipe;
139ccd3f 3049 u32 reg, temp, i, j;
357555c0
JB
3050
3051 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3052 for train result */
3053 reg = FDI_RX_IMR(pipe);
3054 temp = I915_READ(reg);
3055 temp &= ~FDI_RX_SYMBOL_LOCK;
3056 temp &= ~FDI_RX_BIT_LOCK;
3057 I915_WRITE(reg, temp);
3058
3059 POSTING_READ(reg);
3060 udelay(150);
3061
01a415fd
DV
3062 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3063 I915_READ(FDI_RX_IIR(pipe)));
3064
139ccd3f
JB
3065 /* Try each vswing and preemphasis setting twice before moving on */
3066 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3067 /* disable first in case we need to retry */
3068 reg = FDI_TX_CTL(pipe);
3069 temp = I915_READ(reg);
3070 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3071 temp &= ~FDI_TX_ENABLE;
3072 I915_WRITE(reg, temp);
357555c0 3073
139ccd3f
JB
3074 reg = FDI_RX_CTL(pipe);
3075 temp = I915_READ(reg);
3076 temp &= ~FDI_LINK_TRAIN_AUTO;
3077 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3078 temp &= ~FDI_RX_ENABLE;
3079 I915_WRITE(reg, temp);
357555c0 3080
139ccd3f 3081 /* enable CPU FDI TX and PCH FDI RX */
357555c0
JB
3082 reg = FDI_TX_CTL(pipe);
3083 temp = I915_READ(reg);
139ccd3f
JB
3084 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3085 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
3086 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
357555c0 3087 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
139ccd3f
JB
3088 temp |= snb_b_fdi_train_param[j/2];
3089 temp |= FDI_COMPOSITE_SYNC;
3090 I915_WRITE(reg, temp | FDI_TX_ENABLE);
357555c0 3091
139ccd3f
JB
3092 I915_WRITE(FDI_RX_MISC(pipe),
3093 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
357555c0 3094
139ccd3f 3095 reg = FDI_RX_CTL(pipe);
357555c0 3096 temp = I915_READ(reg);
139ccd3f
JB
3097 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3098 temp |= FDI_COMPOSITE_SYNC;
3099 I915_WRITE(reg, temp | FDI_RX_ENABLE);
357555c0 3100
139ccd3f
JB
3101 POSTING_READ(reg);
3102 udelay(1); /* should be 0.5us */
357555c0 3103
139ccd3f
JB
3104 for (i = 0; i < 4; i++) {
3105 reg = FDI_RX_IIR(pipe);
3106 temp = I915_READ(reg);
3107 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3108
139ccd3f
JB
3109 if (temp & FDI_RX_BIT_LOCK ||
3110 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3111 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3112 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3113 i);
3114 break;
3115 }
3116 udelay(1); /* should be 0.5us */
3117 }
3118 if (i == 4) {
3119 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3120 continue;
3121 }
357555c0 3122
139ccd3f 3123 /* Train 2 */
357555c0
JB
3124 reg = FDI_TX_CTL(pipe);
3125 temp = I915_READ(reg);
139ccd3f
JB
3126 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3127 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3128 I915_WRITE(reg, temp);
3129
3130 reg = FDI_RX_CTL(pipe);
3131 temp = I915_READ(reg);
3132 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3133 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
357555c0
JB
3134 I915_WRITE(reg, temp);
3135
3136 POSTING_READ(reg);
139ccd3f 3137 udelay(2); /* should be 1.5us */
357555c0 3138
139ccd3f
JB
3139 for (i = 0; i < 4; i++) {
3140 reg = FDI_RX_IIR(pipe);
3141 temp = I915_READ(reg);
3142 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3143
139ccd3f
JB
3144 if (temp & FDI_RX_SYMBOL_LOCK ||
3145 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3146 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3147 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3148 i);
3149 goto train_done;
3150 }
3151 udelay(2); /* should be 1.5us */
357555c0 3152 }
139ccd3f
JB
3153 if (i == 4)
3154 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
357555c0 3155 }
357555c0 3156
139ccd3f 3157train_done:
357555c0
JB
3158 DRM_DEBUG_KMS("FDI train done.\n");
3159}
3160
88cefb6c 3161static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 3162{
88cefb6c 3163 struct drm_device *dev = intel_crtc->base.dev;
2c07245f 3164 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 3165 int pipe = intel_crtc->pipe;
5eddb70b 3166 u32 reg, temp;
79e53945 3167
c64e311e 3168
c98e9dcf 3169 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
3170 reg = FDI_RX_CTL(pipe);
3171 temp = I915_READ(reg);
627eb5a3
DV
3172 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
3173 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
dfd07d72 3174 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
3175 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3176
3177 POSTING_READ(reg);
c98e9dcf
JB
3178 udelay(200);
3179
3180 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
3181 temp = I915_READ(reg);
3182 I915_WRITE(reg, temp | FDI_PCDCLK);
3183
3184 POSTING_READ(reg);
c98e9dcf
JB
3185 udelay(200);
3186
20749730
PZ
3187 /* Enable CPU FDI TX PLL, always on for Ironlake */
3188 reg = FDI_TX_CTL(pipe);
3189 temp = I915_READ(reg);
3190 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3191 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 3192
20749730
PZ
3193 POSTING_READ(reg);
3194 udelay(100);
6be4a607 3195 }
0e23b99d
JB
3196}
3197
88cefb6c
DV
3198static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3199{
3200 struct drm_device *dev = intel_crtc->base.dev;
3201 struct drm_i915_private *dev_priv = dev->dev_private;
3202 int pipe = intel_crtc->pipe;
3203 u32 reg, temp;
3204
3205 /* Switch from PCDclk to Rawclk */
3206 reg = FDI_RX_CTL(pipe);
3207 temp = I915_READ(reg);
3208 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3209
3210 /* Disable CPU FDI TX PLL */
3211 reg = FDI_TX_CTL(pipe);
3212 temp = I915_READ(reg);
3213 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3214
3215 POSTING_READ(reg);
3216 udelay(100);
3217
3218 reg = FDI_RX_CTL(pipe);
3219 temp = I915_READ(reg);
3220 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3221
3222 /* Wait for the clocks to turn off. */
3223 POSTING_READ(reg);
3224 udelay(100);
3225}
3226
0fc932b8
JB
3227static void ironlake_fdi_disable(struct drm_crtc *crtc)
3228{
3229 struct drm_device *dev = crtc->dev;
3230 struct drm_i915_private *dev_priv = dev->dev_private;
3231 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3232 int pipe = intel_crtc->pipe;
3233 u32 reg, temp;
3234
3235 /* disable CPU FDI tx and PCH FDI rx */
3236 reg = FDI_TX_CTL(pipe);
3237 temp = I915_READ(reg);
3238 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3239 POSTING_READ(reg);
3240
3241 reg = FDI_RX_CTL(pipe);
3242 temp = I915_READ(reg);
3243 temp &= ~(0x7 << 16);
dfd07d72 3244 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3245 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3246
3247 POSTING_READ(reg);
3248 udelay(100);
3249
3250 /* Ironlake workaround, disable clock pointer after downing FDI */
eba905b2 3251 if (HAS_PCH_IBX(dev))
6f06ce18 3252 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
0fc932b8
JB
3253
3254 /* still set train pattern 1 */
3255 reg = FDI_TX_CTL(pipe);
3256 temp = I915_READ(reg);
3257 temp &= ~FDI_LINK_TRAIN_NONE;
3258 temp |= FDI_LINK_TRAIN_PATTERN_1;
3259 I915_WRITE(reg, temp);
3260
3261 reg = FDI_RX_CTL(pipe);
3262 temp = I915_READ(reg);
3263 if (HAS_PCH_CPT(dev)) {
3264 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3265 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3266 } else {
3267 temp &= ~FDI_LINK_TRAIN_NONE;
3268 temp |= FDI_LINK_TRAIN_PATTERN_1;
3269 }
3270 /* BPC in FDI rx is consistent with that in PIPECONF */
3271 temp &= ~(0x07 << 16);
dfd07d72 3272 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3273 I915_WRITE(reg, temp);
3274
3275 POSTING_READ(reg);
3276 udelay(100);
3277}
3278
5dce5b93
CW
3279bool intel_has_pending_fb_unpin(struct drm_device *dev)
3280{
3281 struct intel_crtc *crtc;
3282
3283 /* Note that we don't need to be called with mode_config.lock here
3284 * as our list of CRTC objects is static for the lifetime of the
3285 * device and so cannot disappear as we iterate. Similarly, we can
3286 * happily treat the predicates as racy, atomic checks as userspace
3287 * cannot claim and pin a new fb without at least acquring the
3288 * struct_mutex and so serialising with us.
3289 */
d3fcc808 3290 for_each_intel_crtc(dev, crtc) {
5dce5b93
CW
3291 if (atomic_read(&crtc->unpin_work_count) == 0)
3292 continue;
3293
3294 if (crtc->unpin_work)
3295 intel_wait_for_vblank(dev, crtc->pipe);
3296
3297 return true;
3298 }
3299
3300 return false;
3301}
3302
46a55d30 3303void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
e6c3a2a6 3304{
0f91128d 3305 struct drm_device *dev = crtc->dev;
5bb61643 3306 struct drm_i915_private *dev_priv = dev->dev_private;
e6c3a2a6 3307
f4510a27 3308 if (crtc->primary->fb == NULL)
e6c3a2a6
CW
3309 return;
3310
2c10d571
DV
3311 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
3312
eed6d67d
DV
3313 WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3314 !intel_crtc_has_pending_flip(crtc),
3315 60*HZ) == 0);
5bb61643 3316
0f91128d 3317 mutex_lock(&dev->struct_mutex);
f4510a27 3318 intel_finish_fb(crtc->primary->fb);
0f91128d 3319 mutex_unlock(&dev->struct_mutex);
e6c3a2a6
CW
3320}
3321
e615efe4
ED
3322/* Program iCLKIP clock to the desired frequency */
3323static void lpt_program_iclkip(struct drm_crtc *crtc)
3324{
3325 struct drm_device *dev = crtc->dev;
3326 struct drm_i915_private *dev_priv = dev->dev_private;
241bfc38 3327 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
e615efe4
ED
3328 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3329 u32 temp;
3330
09153000
DV
3331 mutex_lock(&dev_priv->dpio_lock);
3332
e615efe4
ED
3333 /* It is necessary to ungate the pixclk gate prior to programming
3334 * the divisors, and gate it back when it is done.
3335 */
3336 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3337
3338 /* Disable SSCCTL */
3339 intel_sbi_write(dev_priv, SBI_SSCCTL6,
988d6ee8
PZ
3340 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3341 SBI_SSCCTL_DISABLE,
3342 SBI_ICLK);
e615efe4
ED
3343
3344 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
12d7ceed 3345 if (clock == 20000) {
e615efe4
ED
3346 auxdiv = 1;
3347 divsel = 0x41;
3348 phaseinc = 0x20;
3349 } else {
3350 /* The iCLK virtual clock root frequency is in MHz,
241bfc38
DL
3351 * but the adjusted_mode->crtc_clock in in KHz. To get the
3352 * divisors, it is necessary to divide one by another, so we
e615efe4
ED
3353 * convert the virtual clock precision to KHz here for higher
3354 * precision.
3355 */
3356 u32 iclk_virtual_root_freq = 172800 * 1000;
3357 u32 iclk_pi_range = 64;
3358 u32 desired_divisor, msb_divisor_value, pi_value;
3359
12d7ceed 3360 desired_divisor = (iclk_virtual_root_freq / clock);
e615efe4
ED
3361 msb_divisor_value = desired_divisor / iclk_pi_range;
3362 pi_value = desired_divisor % iclk_pi_range;
3363
3364 auxdiv = 0;
3365 divsel = msb_divisor_value - 2;
3366 phaseinc = pi_value;
3367 }
3368
3369 /* This should not happen with any sane values */
3370 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3371 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3372 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3373 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3374
3375 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
12d7ceed 3376 clock,
e615efe4
ED
3377 auxdiv,
3378 divsel,
3379 phasedir,
3380 phaseinc);
3381
3382 /* Program SSCDIVINTPHASE6 */
988d6ee8 3383 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
3384 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3385 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3386 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3387 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3388 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3389 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 3390 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
3391
3392 /* Program SSCAUXDIV */
988d6ee8 3393 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
3394 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3395 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 3396 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
3397
3398 /* Enable modulator and associated divider */
988d6ee8 3399 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 3400 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 3401 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4
ED
3402
3403 /* Wait for initialization time */
3404 udelay(24);
3405
3406 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
09153000
DV
3407
3408 mutex_unlock(&dev_priv->dpio_lock);
e615efe4
ED
3409}
3410
275f01b2
DV
3411static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3412 enum pipe pch_transcoder)
3413{
3414 struct drm_device *dev = crtc->base.dev;
3415 struct drm_i915_private *dev_priv = dev->dev_private;
3416 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3417
3418 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3419 I915_READ(HTOTAL(cpu_transcoder)));
3420 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3421 I915_READ(HBLANK(cpu_transcoder)));
3422 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3423 I915_READ(HSYNC(cpu_transcoder)));
3424
3425 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3426 I915_READ(VTOTAL(cpu_transcoder)));
3427 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3428 I915_READ(VBLANK(cpu_transcoder)));
3429 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3430 I915_READ(VSYNC(cpu_transcoder)));
3431 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3432 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3433}
3434
1fbc0d78
DV
3435static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3436{
3437 struct drm_i915_private *dev_priv = dev->dev_private;
3438 uint32_t temp;
3439
3440 temp = I915_READ(SOUTH_CHICKEN1);
3441 if (temp & FDI_BC_BIFURCATION_SELECT)
3442 return;
3443
3444 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3445 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3446
3447 temp |= FDI_BC_BIFURCATION_SELECT;
3448 DRM_DEBUG_KMS("enabling fdi C rx\n");
3449 I915_WRITE(SOUTH_CHICKEN1, temp);
3450 POSTING_READ(SOUTH_CHICKEN1);
3451}
3452
3453static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3454{
3455 struct drm_device *dev = intel_crtc->base.dev;
3456 struct drm_i915_private *dev_priv = dev->dev_private;
3457
3458 switch (intel_crtc->pipe) {
3459 case PIPE_A:
3460 break;
3461 case PIPE_B:
3462 if (intel_crtc->config.fdi_lanes > 2)
3463 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3464 else
3465 cpt_enable_fdi_bc_bifurcation(dev);
3466
3467 break;
3468 case PIPE_C:
3469 cpt_enable_fdi_bc_bifurcation(dev);
3470
3471 break;
3472 default:
3473 BUG();
3474 }
3475}
3476
f67a559d
JB
3477/*
3478 * Enable PCH resources required for PCH ports:
3479 * - PCH PLLs
3480 * - FDI training & RX/TX
3481 * - update transcoder timings
3482 * - DP transcoding bits
3483 * - transcoder
3484 */
3485static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
3486{
3487 struct drm_device *dev = crtc->dev;
3488 struct drm_i915_private *dev_priv = dev->dev_private;
3489 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3490 int pipe = intel_crtc->pipe;
ee7b9f93 3491 u32 reg, temp;
2c07245f 3492
ab9412ba 3493 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 3494
1fbc0d78
DV
3495 if (IS_IVYBRIDGE(dev))
3496 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3497
cd986abb
DV
3498 /* Write the TU size bits before fdi link training, so that error
3499 * detection works. */
3500 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3501 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3502
c98e9dcf 3503 /* For PCH output, training FDI link */
674cf967 3504 dev_priv->display.fdi_link_train(crtc);
2c07245f 3505
3ad8a208
DV
3506 /* We need to program the right clock selection before writing the pixel
3507 * mutliplier into the DPLL. */
303b81e0 3508 if (HAS_PCH_CPT(dev)) {
ee7b9f93 3509 u32 sel;
4b645f14 3510
c98e9dcf 3511 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
3512 temp |= TRANS_DPLL_ENABLE(pipe);
3513 sel = TRANS_DPLLB_SEL(pipe);
a43f6e0f 3514 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
ee7b9f93
JB
3515 temp |= sel;
3516 else
3517 temp &= ~sel;
c98e9dcf 3518 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 3519 }
5eddb70b 3520
3ad8a208
DV
3521 /* XXX: pch pll's can be enabled any time before we enable the PCH
3522 * transcoder, and we actually should do this to not upset any PCH
3523 * transcoder that already use the clock when we share it.
3524 *
3525 * Note that enable_shared_dpll tries to do the right thing, but
3526 * get_shared_dpll unconditionally resets the pll - we need that to have
3527 * the right LVDS enable sequence. */
85b3894f 3528 intel_enable_shared_dpll(intel_crtc);
3ad8a208 3529
d9b6cb56
JB
3530 /* set transcoder timing, panel must allow it */
3531 assert_panel_unlocked(dev_priv, pipe);
275f01b2 3532 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 3533
303b81e0 3534 intel_fdi_normal_train(crtc);
5e84e1a4 3535
c98e9dcf
JB
3536 /* For PCH DP, enable TRANS_DP_CTL */
3537 if (HAS_PCH_CPT(dev) &&
417e822d
KP
3538 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3539 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
dfd07d72 3540 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
5eddb70b
CW
3541 reg = TRANS_DP_CTL(pipe);
3542 temp = I915_READ(reg);
3543 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
3544 TRANS_DP_SYNC_MASK |
3545 TRANS_DP_BPC_MASK);
5eddb70b
CW
3546 temp |= (TRANS_DP_OUTPUT_ENABLE |
3547 TRANS_DP_ENH_FRAMING);
9325c9f0 3548 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf
JB
3549
3550 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 3551 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
c98e9dcf 3552 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 3553 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
3554
3555 switch (intel_trans_dp_port_sel(crtc)) {
3556 case PCH_DP_B:
5eddb70b 3557 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf
JB
3558 break;
3559 case PCH_DP_C:
5eddb70b 3560 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf
JB
3561 break;
3562 case PCH_DP_D:
5eddb70b 3563 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
3564 break;
3565 default:
e95d41e1 3566 BUG();
32f9d658 3567 }
2c07245f 3568
5eddb70b 3569 I915_WRITE(reg, temp);
6be4a607 3570 }
b52eb4dc 3571
b8a4f404 3572 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
3573}
3574
1507e5bd
PZ
3575static void lpt_pch_enable(struct drm_crtc *crtc)
3576{
3577 struct drm_device *dev = crtc->dev;
3578 struct drm_i915_private *dev_priv = dev->dev_private;
3579 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3b117c8f 3580 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
1507e5bd 3581
ab9412ba 3582 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 3583
8c52b5e8 3584 lpt_program_iclkip(crtc);
1507e5bd 3585
0540e488 3586 /* Set transcoder timing. */
275f01b2 3587 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 3588
937bb610 3589 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
3590}
3591
e2b78267 3592static void intel_put_shared_dpll(struct intel_crtc *crtc)
ee7b9f93 3593{
e2b78267 3594 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
ee7b9f93
JB
3595
3596 if (pll == NULL)
3597 return;
3598
3599 if (pll->refcount == 0) {
46edb027 3600 WARN(1, "bad %s refcount\n", pll->name);
ee7b9f93
JB
3601 return;
3602 }
3603
f4a091c7
DV
3604 if (--pll->refcount == 0) {
3605 WARN_ON(pll->on);
3606 WARN_ON(pll->active);
3607 }
3608
a43f6e0f 3609 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
ee7b9f93
JB
3610}
3611
b89a1d39 3612static struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
ee7b9f93 3613{
e2b78267
DV
3614 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3615 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3616 enum intel_dpll_id i;
ee7b9f93 3617
ee7b9f93 3618 if (pll) {
46edb027
DV
3619 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3620 crtc->base.base.id, pll->name);
e2b78267 3621 intel_put_shared_dpll(crtc);
ee7b9f93
JB
3622 }
3623
98b6bd99
DV
3624 if (HAS_PCH_IBX(dev_priv->dev)) {
3625 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
d94ab068 3626 i = (enum intel_dpll_id) crtc->pipe;
e72f9fbf 3627 pll = &dev_priv->shared_dplls[i];
98b6bd99 3628
46edb027
DV
3629 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3630 crtc->base.base.id, pll->name);
98b6bd99 3631
f2a69f44
DV
3632 WARN_ON(pll->refcount);
3633
98b6bd99
DV
3634 goto found;
3635 }
3636
e72f9fbf
DV
3637 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3638 pll = &dev_priv->shared_dplls[i];
ee7b9f93
JB
3639
3640 /* Only want to check enabled timings first */
3641 if (pll->refcount == 0)
3642 continue;
3643
b89a1d39
DV
3644 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3645 sizeof(pll->hw_state)) == 0) {
46edb027 3646 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
e2b78267 3647 crtc->base.base.id,
46edb027 3648 pll->name, pll->refcount, pll->active);
ee7b9f93
JB
3649
3650 goto found;
3651 }
3652 }
3653
3654 /* Ok no matching timings, maybe there's a free one? */
e72f9fbf
DV
3655 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3656 pll = &dev_priv->shared_dplls[i];
ee7b9f93 3657 if (pll->refcount == 0) {
46edb027
DV
3658 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3659 crtc->base.base.id, pll->name);
ee7b9f93
JB
3660 goto found;
3661 }
3662 }
3663
3664 return NULL;
3665
3666found:
f2a69f44
DV
3667 if (pll->refcount == 0)
3668 pll->hw_state = crtc->config.dpll_hw_state;
3669
a43f6e0f 3670 crtc->config.shared_dpll = i;
46edb027
DV
3671 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3672 pipe_name(crtc->pipe));
ee7b9f93 3673
cdbd2316 3674 pll->refcount++;
e04c7350 3675
ee7b9f93
JB
3676 return pll;
3677}
3678
a1520318 3679static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57
JB
3680{
3681 struct drm_i915_private *dev_priv = dev->dev_private;
23670b32 3682 int dslreg = PIPEDSL(pipe);
d4270e57
JB
3683 u32 temp;
3684
3685 temp = I915_READ(dslreg);
3686 udelay(500);
3687 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 3688 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 3689 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
3690 }
3691}
3692
b074cec8
JB
3693static void ironlake_pfit_enable(struct intel_crtc *crtc)
3694{
3695 struct drm_device *dev = crtc->base.dev;
3696 struct drm_i915_private *dev_priv = dev->dev_private;
3697 int pipe = crtc->pipe;
3698
fd4daa9c 3699 if (crtc->config.pch_pfit.enabled) {
b074cec8
JB
3700 /* Force use of hard-coded filter coefficients
3701 * as some pre-programmed values are broken,
3702 * e.g. x201.
3703 */
3704 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3705 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3706 PF_PIPE_SEL_IVB(pipe));
3707 else
3708 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3709 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3710 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
d4270e57
JB
3711 }
3712}
3713
bb53d4ae
VS
3714static void intel_enable_planes(struct drm_crtc *crtc)
3715{
3716 struct drm_device *dev = crtc->dev;
3717 enum pipe pipe = to_intel_crtc(crtc)->pipe;
af2b653b 3718 struct drm_plane *plane;
bb53d4ae
VS
3719 struct intel_plane *intel_plane;
3720
af2b653b
MR
3721 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3722 intel_plane = to_intel_plane(plane);
bb53d4ae
VS
3723 if (intel_plane->pipe == pipe)
3724 intel_plane_restore(&intel_plane->base);
af2b653b 3725 }
bb53d4ae
VS
3726}
3727
3728static void intel_disable_planes(struct drm_crtc *crtc)
3729{
3730 struct drm_device *dev = crtc->dev;
3731 enum pipe pipe = to_intel_crtc(crtc)->pipe;
af2b653b 3732 struct drm_plane *plane;
bb53d4ae
VS
3733 struct intel_plane *intel_plane;
3734
af2b653b
MR
3735 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3736 intel_plane = to_intel_plane(plane);
bb53d4ae
VS
3737 if (intel_plane->pipe == pipe)
3738 intel_plane_disable(&intel_plane->base);
af2b653b 3739 }
bb53d4ae
VS
3740}
3741
20bc8673 3742void hsw_enable_ips(struct intel_crtc *crtc)
d77e4531 3743{
cea165c3
VS
3744 struct drm_device *dev = crtc->base.dev;
3745 struct drm_i915_private *dev_priv = dev->dev_private;
d77e4531
PZ
3746
3747 if (!crtc->config.ips_enabled)
3748 return;
3749
cea165c3
VS
3750 /* We can only enable IPS after we enable a plane and wait for a vblank */
3751 intel_wait_for_vblank(dev, crtc->pipe);
3752
d77e4531 3753 assert_plane_enabled(dev_priv, crtc->plane);
cea165c3 3754 if (IS_BROADWELL(dev)) {
2a114cc1
BW
3755 mutex_lock(&dev_priv->rps.hw_lock);
3756 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
3757 mutex_unlock(&dev_priv->rps.hw_lock);
3758 /* Quoting Art Runyan: "its not safe to expect any particular
3759 * value in IPS_CTL bit 31 after enabling IPS through the
e59150dc
JB
3760 * mailbox." Moreover, the mailbox may return a bogus state,
3761 * so we need to just enable it and continue on.
2a114cc1
BW
3762 */
3763 } else {
3764 I915_WRITE(IPS_CTL, IPS_ENABLE);
3765 /* The bit only becomes 1 in the next vblank, so this wait here
3766 * is essentially intel_wait_for_vblank. If we don't have this
3767 * and don't wait for vblanks until the end of crtc_enable, then
3768 * the HW state readout code will complain that the expected
3769 * IPS_CTL value is not the one we read. */
3770 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
3771 DRM_ERROR("Timed out waiting for IPS enable\n");
3772 }
d77e4531
PZ
3773}
3774
20bc8673 3775void hsw_disable_ips(struct intel_crtc *crtc)
d77e4531
PZ
3776{
3777 struct drm_device *dev = crtc->base.dev;
3778 struct drm_i915_private *dev_priv = dev->dev_private;
3779
3780 if (!crtc->config.ips_enabled)
3781 return;
3782
3783 assert_plane_enabled(dev_priv, crtc->plane);
23d0b130 3784 if (IS_BROADWELL(dev)) {
2a114cc1
BW
3785 mutex_lock(&dev_priv->rps.hw_lock);
3786 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
3787 mutex_unlock(&dev_priv->rps.hw_lock);
23d0b130
BW
3788 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
3789 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
3790 DRM_ERROR("Timed out waiting for IPS disable\n");
e59150dc 3791 } else {
2a114cc1 3792 I915_WRITE(IPS_CTL, 0);
e59150dc
JB
3793 POSTING_READ(IPS_CTL);
3794 }
d77e4531
PZ
3795
3796 /* We need to wait for a vblank before we can disable the plane. */
3797 intel_wait_for_vblank(dev, crtc->pipe);
3798}
3799
3800/** Loads the palette/gamma unit for the CRTC with the prepared values */
3801static void intel_crtc_load_lut(struct drm_crtc *crtc)
3802{
3803 struct drm_device *dev = crtc->dev;
3804 struct drm_i915_private *dev_priv = dev->dev_private;
3805 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3806 enum pipe pipe = intel_crtc->pipe;
3807 int palreg = PALETTE(pipe);
3808 int i;
3809 bool reenable_ips = false;
3810
3811 /* The clocks have to be on to load the palette. */
3812 if (!crtc->enabled || !intel_crtc->active)
3813 return;
3814
3815 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3816 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3817 assert_dsi_pll_enabled(dev_priv);
3818 else
3819 assert_pll_enabled(dev_priv, pipe);
3820 }
3821
3822 /* use legacy palette for Ironlake */
3823 if (HAS_PCH_SPLIT(dev))
3824 palreg = LGC_PALETTE(pipe);
3825
3826 /* Workaround : Do not read or write the pipe palette/gamma data while
3827 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3828 */
41e6fc4c 3829 if (IS_HASWELL(dev) && intel_crtc->config.ips_enabled &&
d77e4531
PZ
3830 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3831 GAMMA_MODE_MODE_SPLIT)) {
3832 hsw_disable_ips(intel_crtc);
3833 reenable_ips = true;
3834 }
3835
3836 for (i = 0; i < 256; i++) {
3837 I915_WRITE(palreg + 4 * i,
3838 (intel_crtc->lut_r[i] << 16) |
3839 (intel_crtc->lut_g[i] << 8) |
3840 intel_crtc->lut_b[i]);
3841 }
3842
3843 if (reenable_ips)
3844 hsw_enable_ips(intel_crtc);
3845}
3846
d3eedb1a
VS
3847static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3848{
3849 if (!enable && intel_crtc->overlay) {
3850 struct drm_device *dev = intel_crtc->base.dev;
3851 struct drm_i915_private *dev_priv = dev->dev_private;
3852
3853 mutex_lock(&dev->struct_mutex);
3854 dev_priv->mm.interruptible = false;
3855 (void) intel_overlay_switch_off(intel_crtc->overlay);
3856 dev_priv->mm.interruptible = true;
3857 mutex_unlock(&dev->struct_mutex);
3858 }
3859
3860 /* Let userspace switch the overlay on again. In most cases userspace
3861 * has to recompute where to put it anyway.
3862 */
3863}
3864
3865/**
3866 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3867 * cursor plane briefly if not already running after enabling the display
3868 * plane.
3869 * This workaround avoids occasional blank screens when self refresh is
3870 * enabled.
3871 */
3872static void
3873g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3874{
3875 u32 cntl = I915_READ(CURCNTR(pipe));
3876
3877 if ((cntl & CURSOR_MODE) == 0) {
3878 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3879
3880 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3881 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3882 intel_wait_for_vblank(dev_priv->dev, pipe);
3883 I915_WRITE(CURCNTR(pipe), cntl);
3884 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3885 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3886 }
3887}
3888
3889static void intel_crtc_enable_planes(struct drm_crtc *crtc)
a5c4d7bc
VS
3890{
3891 struct drm_device *dev = crtc->dev;
3892 struct drm_i915_private *dev_priv = dev->dev_private;
3893 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3894 int pipe = intel_crtc->pipe;
3895 int plane = intel_crtc->plane;
3896
f98551ae
VS
3897 drm_vblank_on(dev, pipe);
3898
a5c4d7bc
VS
3899 intel_enable_primary_hw_plane(dev_priv, plane, pipe);
3900 intel_enable_planes(crtc);
d3eedb1a
VS
3901 /* The fixup needs to happen before cursor is enabled */
3902 if (IS_G4X(dev))
3903 g4x_fixup_plane(dev_priv, pipe);
a5c4d7bc 3904 intel_crtc_update_cursor(crtc, true);
d3eedb1a 3905 intel_crtc_dpms_overlay(intel_crtc, true);
a5c4d7bc
VS
3906
3907 hsw_enable_ips(intel_crtc);
3908
3909 mutex_lock(&dev->struct_mutex);
3910 intel_update_fbc(dev);
71b1c373 3911 intel_edp_psr_update(dev);
a5c4d7bc
VS
3912 mutex_unlock(&dev->struct_mutex);
3913}
3914
d3eedb1a 3915static void intel_crtc_disable_planes(struct drm_crtc *crtc)
a5c4d7bc
VS
3916{
3917 struct drm_device *dev = crtc->dev;
3918 struct drm_i915_private *dev_priv = dev->dev_private;
3919 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3920 int pipe = intel_crtc->pipe;
3921 int plane = intel_crtc->plane;
3922
3923 intel_crtc_wait_for_pending_flips(crtc);
a5c4d7bc
VS
3924
3925 if (dev_priv->fbc.plane == plane)
3926 intel_disable_fbc(dev);
3927
3928 hsw_disable_ips(intel_crtc);
3929
d3eedb1a 3930 intel_crtc_dpms_overlay(intel_crtc, false);
a5c4d7bc
VS
3931 intel_crtc_update_cursor(crtc, false);
3932 intel_disable_planes(crtc);
3933 intel_disable_primary_hw_plane(dev_priv, plane, pipe);
f98551ae
VS
3934
3935 drm_vblank_off(dev, pipe);
a5c4d7bc
VS
3936}
3937
f67a559d
JB
3938static void ironlake_crtc_enable(struct drm_crtc *crtc)
3939{
3940 struct drm_device *dev = crtc->dev;
3941 struct drm_i915_private *dev_priv = dev->dev_private;
3942 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 3943 struct intel_encoder *encoder;
f67a559d 3944 int pipe = intel_crtc->pipe;
29407aab 3945 enum plane plane = intel_crtc->plane;
f67a559d 3946
08a48469
DV
3947 WARN_ON(!crtc->enabled);
3948
f67a559d
JB
3949 if (intel_crtc->active)
3950 return;
3951
b14b1055
DV
3952 if (intel_crtc->config.has_pch_encoder)
3953 intel_prepare_shared_dpll(intel_crtc);
3954
29407aab
DV
3955 if (intel_crtc->config.has_dp_encoder)
3956 intel_dp_set_m_n(intel_crtc);
3957
3958 intel_set_pipe_timings(intel_crtc);
3959
3960 if (intel_crtc->config.has_pch_encoder) {
3961 intel_cpu_transcoder_set_m_n(intel_crtc,
3962 &intel_crtc->config.fdi_m_n);
3963 }
3964
3965 ironlake_set_pipeconf(crtc);
3966
3967 /* Set up the display plane register */
3968 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
3969 POSTING_READ(DSPCNTR(plane));
3970
3971 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
3972 crtc->x, crtc->y);
3973
f67a559d 3974 intel_crtc->active = true;
8664281b
PZ
3975
3976 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3977 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3978
f6736a1a 3979 for_each_encoder_on_crtc(dev, crtc, encoder)
952735ee
DV
3980 if (encoder->pre_enable)
3981 encoder->pre_enable(encoder);
f67a559d 3982
5bfe2ac0 3983 if (intel_crtc->config.has_pch_encoder) {
fff367c7
DV
3984 /* Note: FDI PLL enabling _must_ be done before we enable the
3985 * cpu pipes, hence this is separate from all the other fdi/pch
3986 * enabling. */
88cefb6c 3987 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
3988 } else {
3989 assert_fdi_tx_disabled(dev_priv, pipe);
3990 assert_fdi_rx_disabled(dev_priv, pipe);
3991 }
f67a559d 3992
b074cec8 3993 ironlake_pfit_enable(intel_crtc);
f67a559d 3994
9c54c0dd
JB
3995 /*
3996 * On ILK+ LUT must be loaded before the pipe is running but with
3997 * clocks enabled
3998 */
3999 intel_crtc_load_lut(crtc);
4000
f37fcc2a 4001 intel_update_watermarks(crtc);
e1fdc473 4002 intel_enable_pipe(intel_crtc);
f67a559d 4003
5bfe2ac0 4004 if (intel_crtc->config.has_pch_encoder)
f67a559d 4005 ironlake_pch_enable(crtc);
c98e9dcf 4006
fa5c73b1
DV
4007 for_each_encoder_on_crtc(dev, crtc, encoder)
4008 encoder->enable(encoder);
61b77ddd
DV
4009
4010 if (HAS_PCH_CPT(dev))
a1520318 4011 cpt_verify_modeset(dev, intel_crtc->pipe);
6ce94100 4012
d3eedb1a 4013 intel_crtc_enable_planes(crtc);
6be4a607
JB
4014}
4015
42db64ef
PZ
4016/* IPS only exists on ULT machines and is tied to pipe A. */
4017static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4018{
f5adf94e 4019 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
42db64ef
PZ
4020}
4021
e4916946
PZ
4022/*
4023 * This implements the workaround described in the "notes" section of the mode
4024 * set sequence documentation. When going from no pipes or single pipe to
4025 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4026 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4027 */
4028static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4029{
4030 struct drm_device *dev = crtc->base.dev;
4031 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4032
4033 /* We want to get the other_active_crtc only if there's only 1 other
4034 * active crtc. */
d3fcc808 4035 for_each_intel_crtc(dev, crtc_it) {
e4916946
PZ
4036 if (!crtc_it->active || crtc_it == crtc)
4037 continue;
4038
4039 if (other_active_crtc)
4040 return;
4041
4042 other_active_crtc = crtc_it;
4043 }
4044 if (!other_active_crtc)
4045 return;
4046
4047 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4048 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4049}
4050
4f771f10
PZ
4051static void haswell_crtc_enable(struct drm_crtc *crtc)
4052{
4053 struct drm_device *dev = crtc->dev;
4054 struct drm_i915_private *dev_priv = dev->dev_private;
4055 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4056 struct intel_encoder *encoder;
4057 int pipe = intel_crtc->pipe;
229fca97 4058 enum plane plane = intel_crtc->plane;
4f771f10
PZ
4059
4060 WARN_ON(!crtc->enabled);
4061
4062 if (intel_crtc->active)
4063 return;
4064
229fca97
DV
4065 if (intel_crtc->config.has_dp_encoder)
4066 intel_dp_set_m_n(intel_crtc);
4067
4068 intel_set_pipe_timings(intel_crtc);
4069
4070 if (intel_crtc->config.has_pch_encoder) {
4071 intel_cpu_transcoder_set_m_n(intel_crtc,
4072 &intel_crtc->config.fdi_m_n);
4073 }
4074
4075 haswell_set_pipeconf(crtc);
4076
4077 intel_set_pipe_csc(crtc);
4078
4079 /* Set up the display plane register */
4080 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
4081 POSTING_READ(DSPCNTR(plane));
4082
4083 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4084 crtc->x, crtc->y);
4085
4f771f10 4086 intel_crtc->active = true;
8664281b
PZ
4087
4088 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4089 if (intel_crtc->config.has_pch_encoder)
4090 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
4091
5bfe2ac0 4092 if (intel_crtc->config.has_pch_encoder)
04945641 4093 dev_priv->display.fdi_link_train(crtc);
4f771f10
PZ
4094
4095 for_each_encoder_on_crtc(dev, crtc, encoder)
4096 if (encoder->pre_enable)
4097 encoder->pre_enable(encoder);
4098
1f544388 4099 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 4100
b074cec8 4101 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
4102
4103 /*
4104 * On ILK+ LUT must be loaded before the pipe is running but with
4105 * clocks enabled
4106 */
4107 intel_crtc_load_lut(crtc);
4108
1f544388 4109 intel_ddi_set_pipe_settings(crtc);
8228c251 4110 intel_ddi_enable_transcoder_func(crtc);
4f771f10 4111
f37fcc2a 4112 intel_update_watermarks(crtc);
e1fdc473 4113 intel_enable_pipe(intel_crtc);
42db64ef 4114
5bfe2ac0 4115 if (intel_crtc->config.has_pch_encoder)
1507e5bd 4116 lpt_pch_enable(crtc);
4f771f10 4117
8807e55b 4118 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10 4119 encoder->enable(encoder);
8807e55b
JN
4120 intel_opregion_notify_encoder(encoder, true);
4121 }
4f771f10 4122
e4916946
PZ
4123 /* If we change the relative order between pipe/planes enabling, we need
4124 * to change the workaround. */
4125 haswell_mode_set_planes_workaround(intel_crtc);
d3eedb1a 4126 intel_crtc_enable_planes(crtc);
4f771f10
PZ
4127}
4128
3f8dce3a
DV
4129static void ironlake_pfit_disable(struct intel_crtc *crtc)
4130{
4131 struct drm_device *dev = crtc->base.dev;
4132 struct drm_i915_private *dev_priv = dev->dev_private;
4133 int pipe = crtc->pipe;
4134
4135 /* To avoid upsetting the power well on haswell only disable the pfit if
4136 * it's in use. The hw state code will make sure we get this right. */
fd4daa9c 4137 if (crtc->config.pch_pfit.enabled) {
3f8dce3a
DV
4138 I915_WRITE(PF_CTL(pipe), 0);
4139 I915_WRITE(PF_WIN_POS(pipe), 0);
4140 I915_WRITE(PF_WIN_SZ(pipe), 0);
4141 }
4142}
4143
6be4a607
JB
4144static void ironlake_crtc_disable(struct drm_crtc *crtc)
4145{
4146 struct drm_device *dev = crtc->dev;
4147 struct drm_i915_private *dev_priv = dev->dev_private;
4148 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4149 struct intel_encoder *encoder;
6be4a607 4150 int pipe = intel_crtc->pipe;
5eddb70b 4151 u32 reg, temp;
b52eb4dc 4152
f7abfe8b
CW
4153 if (!intel_crtc->active)
4154 return;
4155
d3eedb1a 4156 intel_crtc_disable_planes(crtc);
a5c4d7bc 4157
ea9d758d
DV
4158 for_each_encoder_on_crtc(dev, crtc, encoder)
4159 encoder->disable(encoder);
4160
d925c59a
DV
4161 if (intel_crtc->config.has_pch_encoder)
4162 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
4163
b24e7179 4164 intel_disable_pipe(dev_priv, pipe);
32f9d658 4165
3f8dce3a 4166 ironlake_pfit_disable(intel_crtc);
2c07245f 4167
bf49ec8c
DV
4168 for_each_encoder_on_crtc(dev, crtc, encoder)
4169 if (encoder->post_disable)
4170 encoder->post_disable(encoder);
2c07245f 4171
d925c59a
DV
4172 if (intel_crtc->config.has_pch_encoder) {
4173 ironlake_fdi_disable(crtc);
913d8d11 4174
d925c59a
DV
4175 ironlake_disable_pch_transcoder(dev_priv, pipe);
4176 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
6be4a607 4177
d925c59a
DV
4178 if (HAS_PCH_CPT(dev)) {
4179 /* disable TRANS_DP_CTL */
4180 reg = TRANS_DP_CTL(pipe);
4181 temp = I915_READ(reg);
4182 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4183 TRANS_DP_PORT_SEL_MASK);
4184 temp |= TRANS_DP_PORT_SEL_NONE;
4185 I915_WRITE(reg, temp);
4186
4187 /* disable DPLL_SEL */
4188 temp = I915_READ(PCH_DPLL_SEL);
11887397 4189 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 4190 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 4191 }
e3421a18 4192
d925c59a 4193 /* disable PCH DPLL */
e72f9fbf 4194 intel_disable_shared_dpll(intel_crtc);
8db9d77b 4195
d925c59a
DV
4196 ironlake_fdi_pll_disable(intel_crtc);
4197 }
6b383a7f 4198
f7abfe8b 4199 intel_crtc->active = false;
46ba614c 4200 intel_update_watermarks(crtc);
d1ebd816
BW
4201
4202 mutex_lock(&dev->struct_mutex);
6b383a7f 4203 intel_update_fbc(dev);
71b1c373 4204 intel_edp_psr_update(dev);
d1ebd816 4205 mutex_unlock(&dev->struct_mutex);
6be4a607 4206}
1b3c7a47 4207
4f771f10 4208static void haswell_crtc_disable(struct drm_crtc *crtc)
ee7b9f93 4209{
4f771f10
PZ
4210 struct drm_device *dev = crtc->dev;
4211 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93 4212 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4f771f10
PZ
4213 struct intel_encoder *encoder;
4214 int pipe = intel_crtc->pipe;
3b117c8f 4215 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
ee7b9f93 4216
4f771f10
PZ
4217 if (!intel_crtc->active)
4218 return;
4219
d3eedb1a 4220 intel_crtc_disable_planes(crtc);
dda9a66a 4221
8807e55b
JN
4222 for_each_encoder_on_crtc(dev, crtc, encoder) {
4223 intel_opregion_notify_encoder(encoder, false);
4f771f10 4224 encoder->disable(encoder);
8807e55b 4225 }
4f771f10 4226
8664281b
PZ
4227 if (intel_crtc->config.has_pch_encoder)
4228 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
4f771f10
PZ
4229 intel_disable_pipe(dev_priv, pipe);
4230
ad80a810 4231 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 4232
3f8dce3a 4233 ironlake_pfit_disable(intel_crtc);
4f771f10 4234
1f544388 4235 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10
PZ
4236
4237 for_each_encoder_on_crtc(dev, crtc, encoder)
4238 if (encoder->post_disable)
4239 encoder->post_disable(encoder);
4240
88adfff1 4241 if (intel_crtc->config.has_pch_encoder) {
ab4d966c 4242 lpt_disable_pch_transcoder(dev_priv);
8664281b 4243 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
1ad960f2 4244 intel_ddi_fdi_disable(crtc);
83616634 4245 }
4f771f10
PZ
4246
4247 intel_crtc->active = false;
46ba614c 4248 intel_update_watermarks(crtc);
4f771f10
PZ
4249
4250 mutex_lock(&dev->struct_mutex);
4251 intel_update_fbc(dev);
71b1c373 4252 intel_edp_psr_update(dev);
4f771f10
PZ
4253 mutex_unlock(&dev->struct_mutex);
4254}
4255
ee7b9f93
JB
4256static void ironlake_crtc_off(struct drm_crtc *crtc)
4257{
4258 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
e72f9fbf 4259 intel_put_shared_dpll(intel_crtc);
ee7b9f93
JB
4260}
4261
6441ab5f
PZ
4262static void haswell_crtc_off(struct drm_crtc *crtc)
4263{
4264 intel_ddi_put_crtc_pll(crtc);
4265}
4266
2dd24552
JB
4267static void i9xx_pfit_enable(struct intel_crtc *crtc)
4268{
4269 struct drm_device *dev = crtc->base.dev;
4270 struct drm_i915_private *dev_priv = dev->dev_private;
4271 struct intel_crtc_config *pipe_config = &crtc->config;
4272
328d8e82 4273 if (!crtc->config.gmch_pfit.control)
2dd24552
JB
4274 return;
4275
2dd24552 4276 /*
c0b03411
DV
4277 * The panel fitter should only be adjusted whilst the pipe is disabled,
4278 * according to register description and PRM.
2dd24552 4279 */
c0b03411
DV
4280 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4281 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 4282
b074cec8
JB
4283 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4284 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
4285
4286 /* Border color in case we don't scale up to the full screen. Black by
4287 * default, change to something else for debugging. */
4288 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
4289}
4290
77d22dca
ID
4291#define for_each_power_domain(domain, mask) \
4292 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4293 if ((1 << (domain)) & (mask))
4294
319be8ae
ID
4295enum intel_display_power_domain
4296intel_display_port_power_domain(struct intel_encoder *intel_encoder)
4297{
4298 struct drm_device *dev = intel_encoder->base.dev;
4299 struct intel_digital_port *intel_dig_port;
4300
4301 switch (intel_encoder->type) {
4302 case INTEL_OUTPUT_UNKNOWN:
4303 /* Only DDI platforms should ever use this output type */
4304 WARN_ON_ONCE(!HAS_DDI(dev));
4305 case INTEL_OUTPUT_DISPLAYPORT:
4306 case INTEL_OUTPUT_HDMI:
4307 case INTEL_OUTPUT_EDP:
4308 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
4309 switch (intel_dig_port->port) {
4310 case PORT_A:
4311 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4312 case PORT_B:
4313 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4314 case PORT_C:
4315 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4316 case PORT_D:
4317 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4318 default:
4319 WARN_ON_ONCE(1);
4320 return POWER_DOMAIN_PORT_OTHER;
4321 }
4322 case INTEL_OUTPUT_ANALOG:
4323 return POWER_DOMAIN_PORT_CRT;
4324 case INTEL_OUTPUT_DSI:
4325 return POWER_DOMAIN_PORT_DSI;
4326 default:
4327 return POWER_DOMAIN_PORT_OTHER;
4328 }
4329}
4330
4331static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
77d22dca 4332{
319be8ae
ID
4333 struct drm_device *dev = crtc->dev;
4334 struct intel_encoder *intel_encoder;
4335 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4336 enum pipe pipe = intel_crtc->pipe;
4337 bool pfit_enabled = intel_crtc->config.pch_pfit.enabled;
77d22dca
ID
4338 unsigned long mask;
4339 enum transcoder transcoder;
4340
4341 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4342
4343 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4344 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
4345 if (pfit_enabled)
4346 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4347
319be8ae
ID
4348 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4349 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4350
77d22dca
ID
4351 return mask;
4352}
4353
4354void intel_display_set_init_power(struct drm_i915_private *dev_priv,
4355 bool enable)
4356{
4357 if (dev_priv->power_domains.init_power_on == enable)
4358 return;
4359
4360 if (enable)
4361 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
4362 else
4363 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
4364
4365 dev_priv->power_domains.init_power_on = enable;
4366}
4367
4368static void modeset_update_crtc_power_domains(struct drm_device *dev)
4369{
4370 struct drm_i915_private *dev_priv = dev->dev_private;
4371 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4372 struct intel_crtc *crtc;
4373
4374 /*
4375 * First get all needed power domains, then put all unneeded, to avoid
4376 * any unnecessary toggling of the power wells.
4377 */
d3fcc808 4378 for_each_intel_crtc(dev, crtc) {
77d22dca
ID
4379 enum intel_display_power_domain domain;
4380
4381 if (!crtc->base.enabled)
4382 continue;
4383
319be8ae 4384 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
77d22dca
ID
4385
4386 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4387 intel_display_power_get(dev_priv, domain);
4388 }
4389
d3fcc808 4390 for_each_intel_crtc(dev, crtc) {
77d22dca
ID
4391 enum intel_display_power_domain domain;
4392
4393 for_each_power_domain(domain, crtc->enabled_power_domains)
4394 intel_display_power_put(dev_priv, domain);
4395
4396 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4397 }
4398
4399 intel_display_set_init_power(dev_priv, false);
4400}
4401
586f49dc 4402int valleyview_get_vco(struct drm_i915_private *dev_priv)
30a970c6 4403{
586f49dc 4404 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
30a970c6 4405
586f49dc
JB
4406 /* Obtain SKU information */
4407 mutex_lock(&dev_priv->dpio_lock);
4408 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4409 CCK_FUSE_HPLL_FREQ_MASK;
4410 mutex_unlock(&dev_priv->dpio_lock);
30a970c6 4411
586f49dc 4412 return vco_freq[hpll_freq];
30a970c6
JB
4413}
4414
4415/* Adjust CDclk dividers to allow high res or save power if possible */
4416static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4417{
4418 struct drm_i915_private *dev_priv = dev->dev_private;
4419 u32 val, cmd;
4420
d60c4473
ID
4421 WARN_ON(valleyview_cur_cdclk(dev_priv) != dev_priv->vlv_cdclk_freq);
4422 dev_priv->vlv_cdclk_freq = cdclk;
4423
30a970c6
JB
4424 if (cdclk >= 320) /* jump to highest voltage for 400MHz too */
4425 cmd = 2;
4426 else if (cdclk == 266)
4427 cmd = 1;
4428 else
4429 cmd = 0;
4430
4431 mutex_lock(&dev_priv->rps.hw_lock);
4432 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4433 val &= ~DSPFREQGUAR_MASK;
4434 val |= (cmd << DSPFREQGUAR_SHIFT);
4435 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4436 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4437 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4438 50)) {
4439 DRM_ERROR("timed out waiting for CDclk change\n");
4440 }
4441 mutex_unlock(&dev_priv->rps.hw_lock);
4442
4443 if (cdclk == 400) {
4444 u32 divider, vco;
4445
4446 vco = valleyview_get_vco(dev_priv);
4447 divider = ((vco << 1) / cdclk) - 1;
4448
4449 mutex_lock(&dev_priv->dpio_lock);
4450 /* adjust cdclk divider */
4451 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4452 val &= ~0xf;
4453 val |= divider;
4454 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
4455 mutex_unlock(&dev_priv->dpio_lock);
4456 }
4457
4458 mutex_lock(&dev_priv->dpio_lock);
4459 /* adjust self-refresh exit latency value */
4460 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4461 val &= ~0x7f;
4462
4463 /*
4464 * For high bandwidth configs, we set a higher latency in the bunit
4465 * so that the core display fetch happens in time to avoid underruns.
4466 */
4467 if (cdclk == 400)
4468 val |= 4500 / 250; /* 4.5 usec */
4469 else
4470 val |= 3000 / 250; /* 3.0 usec */
4471 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4472 mutex_unlock(&dev_priv->dpio_lock);
4473
4474 /* Since we changed the CDclk, we need to update the GMBUSFREQ too */
4475 intel_i2c_reset(dev);
4476}
4477
d60c4473 4478int valleyview_cur_cdclk(struct drm_i915_private *dev_priv)
30a970c6
JB
4479{
4480 int cur_cdclk, vco;
4481 int divider;
4482
4483 vco = valleyview_get_vco(dev_priv);
4484
4485 mutex_lock(&dev_priv->dpio_lock);
4486 divider = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4487 mutex_unlock(&dev_priv->dpio_lock);
4488
4489 divider &= 0xf;
4490
4491 cur_cdclk = (vco << 1) / (divider + 1);
4492
4493 return cur_cdclk;
4494}
4495
4496static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4497 int max_pixclk)
4498{
30a970c6
JB
4499 /*
4500 * Really only a few cases to deal with, as only 4 CDclks are supported:
4501 * 200MHz
4502 * 267MHz
4503 * 320MHz
4504 * 400MHz
4505 * So we check to see whether we're above 90% of the lower bin and
4506 * adjust if needed.
4507 */
4508 if (max_pixclk > 288000) {
4509 return 400;
4510 } else if (max_pixclk > 240000) {
4511 return 320;
4512 } else
4513 return 266;
4514 /* Looks like the 200MHz CDclk freq doesn't work on some configs */
4515}
4516
2f2d7aa1
VS
4517/* compute the max pixel clock for new configuration */
4518static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
30a970c6
JB
4519{
4520 struct drm_device *dev = dev_priv->dev;
4521 struct intel_crtc *intel_crtc;
4522 int max_pixclk = 0;
4523
d3fcc808 4524 for_each_intel_crtc(dev, intel_crtc) {
2f2d7aa1 4525 if (intel_crtc->new_enabled)
30a970c6 4526 max_pixclk = max(max_pixclk,
2f2d7aa1 4527 intel_crtc->new_config->adjusted_mode.crtc_clock);
30a970c6
JB
4528 }
4529
4530 return max_pixclk;
4531}
4532
4533static void valleyview_modeset_global_pipes(struct drm_device *dev,
2f2d7aa1 4534 unsigned *prepare_pipes)
30a970c6
JB
4535{
4536 struct drm_i915_private *dev_priv = dev->dev_private;
4537 struct intel_crtc *intel_crtc;
2f2d7aa1 4538 int max_pixclk = intel_mode_max_pixclk(dev_priv);
30a970c6 4539
d60c4473
ID
4540 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4541 dev_priv->vlv_cdclk_freq)
30a970c6
JB
4542 return;
4543
2f2d7aa1 4544 /* disable/enable all currently active pipes while we change cdclk */
d3fcc808 4545 for_each_intel_crtc(dev, intel_crtc)
30a970c6
JB
4546 if (intel_crtc->base.enabled)
4547 *prepare_pipes |= (1 << intel_crtc->pipe);
4548}
4549
4550static void valleyview_modeset_global_resources(struct drm_device *dev)
4551{
4552 struct drm_i915_private *dev_priv = dev->dev_private;
2f2d7aa1 4553 int max_pixclk = intel_mode_max_pixclk(dev_priv);
30a970c6
JB
4554 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4555
d60c4473 4556 if (req_cdclk != dev_priv->vlv_cdclk_freq)
30a970c6 4557 valleyview_set_cdclk(dev, req_cdclk);
77961eb9 4558 modeset_update_crtc_power_domains(dev);
30a970c6
JB
4559}
4560
89b667f8
JB
4561static void valleyview_crtc_enable(struct drm_crtc *crtc)
4562{
4563 struct drm_device *dev = crtc->dev;
5b18e57c 4564 struct drm_i915_private *dev_priv = dev->dev_private;
89b667f8
JB
4565 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4566 struct intel_encoder *encoder;
4567 int pipe = intel_crtc->pipe;
5b18e57c 4568 int plane = intel_crtc->plane;
23538ef1 4569 bool is_dsi;
5b18e57c 4570 u32 dspcntr;
89b667f8
JB
4571
4572 WARN_ON(!crtc->enabled);
4573
4574 if (intel_crtc->active)
4575 return;
4576
bdd4b6a6
DV
4577 vlv_prepare_pll(intel_crtc);
4578
5b18e57c
DV
4579 /* Set up the display plane register */
4580 dspcntr = DISPPLANE_GAMMA_ENABLE;
4581
4582 if (intel_crtc->config.has_dp_encoder)
4583 intel_dp_set_m_n(intel_crtc);
4584
4585 intel_set_pipe_timings(intel_crtc);
4586
4587 /* pipesrc and dspsize control the size that is scaled from,
4588 * which should always be the user's requested size.
4589 */
4590 I915_WRITE(DSPSIZE(plane),
4591 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4592 (intel_crtc->config.pipe_src_w - 1));
4593 I915_WRITE(DSPPOS(plane), 0);
4594
4595 i9xx_set_pipeconf(intel_crtc);
4596
4597 I915_WRITE(DSPCNTR(plane), dspcntr);
4598 POSTING_READ(DSPCNTR(plane));
4599
4600 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4601 crtc->x, crtc->y);
4602
89b667f8 4603 intel_crtc->active = true;
89b667f8 4604
4a3436e8
VS
4605 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4606
89b667f8
JB
4607 for_each_encoder_on_crtc(dev, crtc, encoder)
4608 if (encoder->pre_pll_enable)
4609 encoder->pre_pll_enable(encoder);
4610
23538ef1
JN
4611 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4612
9d556c99
CML
4613 if (!is_dsi) {
4614 if (IS_CHERRYVIEW(dev))
4615 chv_enable_pll(intel_crtc);
4616 else
4617 vlv_enable_pll(intel_crtc);
4618 }
89b667f8
JB
4619
4620 for_each_encoder_on_crtc(dev, crtc, encoder)
4621 if (encoder->pre_enable)
4622 encoder->pre_enable(encoder);
4623
2dd24552
JB
4624 i9xx_pfit_enable(intel_crtc);
4625
63cbb074
VS
4626 intel_crtc_load_lut(crtc);
4627
f37fcc2a 4628 intel_update_watermarks(crtc);
e1fdc473 4629 intel_enable_pipe(intel_crtc);
be6a6f8e 4630
5004945f
JN
4631 for_each_encoder_on_crtc(dev, crtc, encoder)
4632 encoder->enable(encoder);
9ab0460b
VS
4633
4634 intel_crtc_enable_planes(crtc);
d40d9187 4635
56b80e1f
VS
4636 /* Underruns don't raise interrupts, so check manually. */
4637 i9xx_check_fifo_underruns(dev);
89b667f8
JB
4638}
4639
f13c2ef3
DV
4640static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
4641{
4642 struct drm_device *dev = crtc->base.dev;
4643 struct drm_i915_private *dev_priv = dev->dev_private;
4644
4645 I915_WRITE(FP0(crtc->pipe), crtc->config.dpll_hw_state.fp0);
4646 I915_WRITE(FP1(crtc->pipe), crtc->config.dpll_hw_state.fp1);
4647}
4648
0b8765c6 4649static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
4650{
4651 struct drm_device *dev = crtc->dev;
5b18e57c 4652 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 4653 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4654 struct intel_encoder *encoder;
79e53945 4655 int pipe = intel_crtc->pipe;
5b18e57c
DV
4656 int plane = intel_crtc->plane;
4657 u32 dspcntr;
79e53945 4658
08a48469
DV
4659 WARN_ON(!crtc->enabled);
4660
f7abfe8b
CW
4661 if (intel_crtc->active)
4662 return;
4663
f13c2ef3
DV
4664 i9xx_set_pll_dividers(intel_crtc);
4665
5b18e57c
DV
4666 /* Set up the display plane register */
4667 dspcntr = DISPPLANE_GAMMA_ENABLE;
4668
4669 if (pipe == 0)
4670 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4671 else
4672 dspcntr |= DISPPLANE_SEL_PIPE_B;
4673
4674 if (intel_crtc->config.has_dp_encoder)
4675 intel_dp_set_m_n(intel_crtc);
4676
4677 intel_set_pipe_timings(intel_crtc);
4678
4679 /* pipesrc and dspsize control the size that is scaled from,
4680 * which should always be the user's requested size.
4681 */
4682 I915_WRITE(DSPSIZE(plane),
4683 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4684 (intel_crtc->config.pipe_src_w - 1));
4685 I915_WRITE(DSPPOS(plane), 0);
4686
4687 i9xx_set_pipeconf(intel_crtc);
4688
4689 I915_WRITE(DSPCNTR(plane), dspcntr);
4690 POSTING_READ(DSPCNTR(plane));
4691
4692 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4693 crtc->x, crtc->y);
4694
f7abfe8b 4695 intel_crtc->active = true;
6b383a7f 4696
4a3436e8
VS
4697 if (!IS_GEN2(dev))
4698 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4699
9d6d9f19
MK
4700 for_each_encoder_on_crtc(dev, crtc, encoder)
4701 if (encoder->pre_enable)
4702 encoder->pre_enable(encoder);
4703
f6736a1a
DV
4704 i9xx_enable_pll(intel_crtc);
4705
2dd24552
JB
4706 i9xx_pfit_enable(intel_crtc);
4707
63cbb074
VS
4708 intel_crtc_load_lut(crtc);
4709
f37fcc2a 4710 intel_update_watermarks(crtc);
e1fdc473 4711 intel_enable_pipe(intel_crtc);
be6a6f8e 4712
fa5c73b1
DV
4713 for_each_encoder_on_crtc(dev, crtc, encoder)
4714 encoder->enable(encoder);
9ab0460b
VS
4715
4716 intel_crtc_enable_planes(crtc);
d40d9187 4717
4a3436e8
VS
4718 /*
4719 * Gen2 reports pipe underruns whenever all planes are disabled.
4720 * So don't enable underrun reporting before at least some planes
4721 * are enabled.
4722 * FIXME: Need to fix the logic to work when we turn off all planes
4723 * but leave the pipe running.
4724 */
4725 if (IS_GEN2(dev))
4726 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4727
56b80e1f
VS
4728 /* Underruns don't raise interrupts, so check manually. */
4729 i9xx_check_fifo_underruns(dev);
0b8765c6 4730}
79e53945 4731
87476d63
DV
4732static void i9xx_pfit_disable(struct intel_crtc *crtc)
4733{
4734 struct drm_device *dev = crtc->base.dev;
4735 struct drm_i915_private *dev_priv = dev->dev_private;
87476d63 4736
328d8e82
DV
4737 if (!crtc->config.gmch_pfit.control)
4738 return;
87476d63 4739
328d8e82 4740 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 4741
328d8e82
DV
4742 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
4743 I915_READ(PFIT_CONTROL));
4744 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
4745}
4746
0b8765c6
JB
4747static void i9xx_crtc_disable(struct drm_crtc *crtc)
4748{
4749 struct drm_device *dev = crtc->dev;
4750 struct drm_i915_private *dev_priv = dev->dev_private;
4751 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4752 struct intel_encoder *encoder;
0b8765c6 4753 int pipe = intel_crtc->pipe;
ef9c3aee 4754
f7abfe8b
CW
4755 if (!intel_crtc->active)
4756 return;
4757
4a3436e8
VS
4758 /*
4759 * Gen2 reports pipe underruns whenever all planes are disabled.
4760 * So diasble underrun reporting before all the planes get disabled.
4761 * FIXME: Need to fix the logic to work when we turn off all planes
4762 * but leave the pipe running.
4763 */
4764 if (IS_GEN2(dev))
4765 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
4766
9ab0460b
VS
4767 intel_crtc_disable_planes(crtc);
4768
ea9d758d
DV
4769 for_each_encoder_on_crtc(dev, crtc, encoder)
4770 encoder->disable(encoder);
4771
6304cd91
VS
4772 /*
4773 * On gen2 planes are double buffered but the pipe isn't, so we must
4774 * wait for planes to fully turn off before disabling the pipe.
4775 */
4776 if (IS_GEN2(dev))
4777 intel_wait_for_vblank(dev, pipe);
4778
b24e7179 4779 intel_disable_pipe(dev_priv, pipe);
24a1f16d 4780
87476d63 4781 i9xx_pfit_disable(intel_crtc);
24a1f16d 4782
89b667f8
JB
4783 for_each_encoder_on_crtc(dev, crtc, encoder)
4784 if (encoder->post_disable)
4785 encoder->post_disable(encoder);
4786
076ed3b2
CML
4787 if (!intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI)) {
4788 if (IS_CHERRYVIEW(dev))
4789 chv_disable_pll(dev_priv, pipe);
4790 else if (IS_VALLEYVIEW(dev))
4791 vlv_disable_pll(dev_priv, pipe);
4792 else
4793 i9xx_disable_pll(dev_priv, pipe);
4794 }
0b8765c6 4795
4a3436e8
VS
4796 if (!IS_GEN2(dev))
4797 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
4798
f7abfe8b 4799 intel_crtc->active = false;
46ba614c 4800 intel_update_watermarks(crtc);
f37fcc2a 4801
efa9624e 4802 mutex_lock(&dev->struct_mutex);
6b383a7f 4803 intel_update_fbc(dev);
71b1c373 4804 intel_edp_psr_update(dev);
efa9624e 4805 mutex_unlock(&dev->struct_mutex);
0b8765c6
JB
4806}
4807
ee7b9f93
JB
4808static void i9xx_crtc_off(struct drm_crtc *crtc)
4809{
4810}
4811
976f8a20
DV
4812static void intel_crtc_update_sarea(struct drm_crtc *crtc,
4813 bool enabled)
2c07245f
ZW
4814{
4815 struct drm_device *dev = crtc->dev;
4816 struct drm_i915_master_private *master_priv;
4817 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4818 int pipe = intel_crtc->pipe;
79e53945
JB
4819
4820 if (!dev->primary->master)
4821 return;
4822
4823 master_priv = dev->primary->master->driver_priv;
4824 if (!master_priv->sarea_priv)
4825 return;
4826
79e53945
JB
4827 switch (pipe) {
4828 case 0:
4829 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4830 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4831 break;
4832 case 1:
4833 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4834 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4835 break;
4836 default:
9db4a9c7 4837 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
79e53945
JB
4838 break;
4839 }
79e53945
JB
4840}
4841
976f8a20
DV
4842/**
4843 * Sets the power management mode of the pipe and plane.
4844 */
4845void intel_crtc_update_dpms(struct drm_crtc *crtc)
4846{
4847 struct drm_device *dev = crtc->dev;
4848 struct drm_i915_private *dev_priv = dev->dev_private;
4849 struct intel_encoder *intel_encoder;
4850 bool enable = false;
4851
4852 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4853 enable |= intel_encoder->connectors_active;
4854
4855 if (enable)
4856 dev_priv->display.crtc_enable(crtc);
4857 else
4858 dev_priv->display.crtc_disable(crtc);
4859
4860 intel_crtc_update_sarea(crtc, enable);
4861}
4862
cdd59983
CW
4863static void intel_crtc_disable(struct drm_crtc *crtc)
4864{
cdd59983 4865 struct drm_device *dev = crtc->dev;
976f8a20 4866 struct drm_connector *connector;
ee7b9f93 4867 struct drm_i915_private *dev_priv = dev->dev_private;
cdd59983 4868
976f8a20
DV
4869 /* crtc should still be enabled when we disable it. */
4870 WARN_ON(!crtc->enabled);
4871
4872 dev_priv->display.crtc_disable(crtc);
4873 intel_crtc_update_sarea(crtc, false);
ee7b9f93
JB
4874 dev_priv->display.off(crtc);
4875
931872fc 4876 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
93ce0ba6 4877 assert_cursor_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
931872fc 4878 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
cdd59983 4879
f4510a27 4880 if (crtc->primary->fb) {
cdd59983 4881 mutex_lock(&dev->struct_mutex);
f4510a27 4882 intel_unpin_fb_obj(to_intel_framebuffer(crtc->primary->fb)->obj);
cdd59983 4883 mutex_unlock(&dev->struct_mutex);
f4510a27 4884 crtc->primary->fb = NULL;
976f8a20
DV
4885 }
4886
4887 /* Update computed state. */
4888 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4889 if (!connector->encoder || !connector->encoder->crtc)
4890 continue;
4891
4892 if (connector->encoder->crtc != crtc)
4893 continue;
4894
4895 connector->dpms = DRM_MODE_DPMS_OFF;
4896 to_intel_encoder(connector->encoder)->connectors_active = false;
cdd59983
CW
4897 }
4898}
4899
ea5b213a 4900void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 4901{
4ef69c7a 4902 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 4903
ea5b213a
CW
4904 drm_encoder_cleanup(encoder);
4905 kfree(intel_encoder);
7e7d76c3
JB
4906}
4907
9237329d 4908/* Simple dpms helper for encoders with just one connector, no cloning and only
5ab432ef
DV
4909 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
4910 * state of the entire output pipe. */
9237329d 4911static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
7e7d76c3 4912{
5ab432ef
DV
4913 if (mode == DRM_MODE_DPMS_ON) {
4914 encoder->connectors_active = true;
4915
b2cabb0e 4916 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef
DV
4917 } else {
4918 encoder->connectors_active = false;
4919
b2cabb0e 4920 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef 4921 }
79e53945
JB
4922}
4923
0a91ca29
DV
4924/* Cross check the actual hw state with our own modeset state tracking (and it's
4925 * internal consistency). */
b980514c 4926static void intel_connector_check_state(struct intel_connector *connector)
79e53945 4927{
0a91ca29
DV
4928 if (connector->get_hw_state(connector)) {
4929 struct intel_encoder *encoder = connector->encoder;
4930 struct drm_crtc *crtc;
4931 bool encoder_enabled;
4932 enum pipe pipe;
4933
4934 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4935 connector->base.base.id,
c23cc417 4936 connector->base.name);
0a91ca29
DV
4937
4938 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
4939 "wrong connector dpms state\n");
4940 WARN(connector->base.encoder != &encoder->base,
4941 "active connector not linked to encoder\n");
4942 WARN(!encoder->connectors_active,
4943 "encoder->connectors_active not set\n");
4944
4945 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
4946 WARN(!encoder_enabled, "encoder not enabled\n");
4947 if (WARN_ON(!encoder->base.crtc))
4948 return;
4949
4950 crtc = encoder->base.crtc;
4951
4952 WARN(!crtc->enabled, "crtc not enabled\n");
4953 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
4954 WARN(pipe != to_intel_crtc(crtc)->pipe,
4955 "encoder active on the wrong pipe\n");
4956 }
79e53945
JB
4957}
4958
5ab432ef
DV
4959/* Even simpler default implementation, if there's really no special case to
4960 * consider. */
4961void intel_connector_dpms(struct drm_connector *connector, int mode)
79e53945 4962{
5ab432ef
DV
4963 /* All the simple cases only support two dpms states. */
4964 if (mode != DRM_MODE_DPMS_ON)
4965 mode = DRM_MODE_DPMS_OFF;
d4270e57 4966
5ab432ef
DV
4967 if (mode == connector->dpms)
4968 return;
4969
4970 connector->dpms = mode;
4971
4972 /* Only need to change hw state when actually enabled */
c9976dcf
CW
4973 if (connector->encoder)
4974 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
0a91ca29 4975
b980514c 4976 intel_modeset_check_state(connector->dev);
79e53945
JB
4977}
4978
f0947c37
DV
4979/* Simple connector->get_hw_state implementation for encoders that support only
4980 * one connector and no cloning and hence the encoder state determines the state
4981 * of the connector. */
4982bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 4983{
24929352 4984 enum pipe pipe = 0;
f0947c37 4985 struct intel_encoder *encoder = connector->encoder;
ea5b213a 4986
f0947c37 4987 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
4988}
4989
1857e1da
DV
4990static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
4991 struct intel_crtc_config *pipe_config)
4992{
4993 struct drm_i915_private *dev_priv = dev->dev_private;
4994 struct intel_crtc *pipe_B_crtc =
4995 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
4996
4997 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
4998 pipe_name(pipe), pipe_config->fdi_lanes);
4999 if (pipe_config->fdi_lanes > 4) {
5000 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
5001 pipe_name(pipe), pipe_config->fdi_lanes);
5002 return false;
5003 }
5004
bafb6553 5005 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
1857e1da
DV
5006 if (pipe_config->fdi_lanes > 2) {
5007 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5008 pipe_config->fdi_lanes);
5009 return false;
5010 } else {
5011 return true;
5012 }
5013 }
5014
5015 if (INTEL_INFO(dev)->num_pipes == 2)
5016 return true;
5017
5018 /* Ivybridge 3 pipe is really complicated */
5019 switch (pipe) {
5020 case PIPE_A:
5021 return true;
5022 case PIPE_B:
5023 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5024 pipe_config->fdi_lanes > 2) {
5025 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5026 pipe_name(pipe), pipe_config->fdi_lanes);
5027 return false;
5028 }
5029 return true;
5030 case PIPE_C:
1e833f40 5031 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
1857e1da
DV
5032 pipe_B_crtc->config.fdi_lanes <= 2) {
5033 if (pipe_config->fdi_lanes > 2) {
5034 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5035 pipe_name(pipe), pipe_config->fdi_lanes);
5036 return false;
5037 }
5038 } else {
5039 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5040 return false;
5041 }
5042 return true;
5043 default:
5044 BUG();
5045 }
5046}
5047
e29c22c0
DV
5048#define RETRY 1
5049static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5050 struct intel_crtc_config *pipe_config)
877d48d5 5051{
1857e1da 5052 struct drm_device *dev = intel_crtc->base.dev;
877d48d5 5053 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
ff9a6750 5054 int lane, link_bw, fdi_dotclock;
e29c22c0 5055 bool setup_ok, needs_recompute = false;
877d48d5 5056
e29c22c0 5057retry:
877d48d5
DV
5058 /* FDI is a binary signal running at ~2.7GHz, encoding
5059 * each output octet as 10 bits. The actual frequency
5060 * is stored as a divider into a 100MHz clock, and the
5061 * mode pixel clock is stored in units of 1KHz.
5062 * Hence the bw of each lane in terms of the mode signal
5063 * is:
5064 */
5065 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5066
241bfc38 5067 fdi_dotclock = adjusted_mode->crtc_clock;
877d48d5 5068
2bd89a07 5069 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
5070 pipe_config->pipe_bpp);
5071
5072 pipe_config->fdi_lanes = lane;
5073
2bd89a07 5074 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 5075 link_bw, &pipe_config->fdi_m_n);
1857e1da 5076
e29c22c0
DV
5077 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5078 intel_crtc->pipe, pipe_config);
5079 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5080 pipe_config->pipe_bpp -= 2*3;
5081 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5082 pipe_config->pipe_bpp);
5083 needs_recompute = true;
5084 pipe_config->bw_constrained = true;
5085
5086 goto retry;
5087 }
5088
5089 if (needs_recompute)
5090 return RETRY;
5091
5092 return setup_ok ? 0 : -EINVAL;
877d48d5
DV
5093}
5094
42db64ef
PZ
5095static void hsw_compute_ips_config(struct intel_crtc *crtc,
5096 struct intel_crtc_config *pipe_config)
5097{
d330a953 5098 pipe_config->ips_enabled = i915.enable_ips &&
3c4ca58c 5099 hsw_crtc_supports_ips(crtc) &&
b6dfdc9b 5100 pipe_config->pipe_bpp <= 24;
42db64ef
PZ
5101}
5102
a43f6e0f 5103static int intel_crtc_compute_config(struct intel_crtc *crtc,
e29c22c0 5104 struct intel_crtc_config *pipe_config)
79e53945 5105{
a43f6e0f 5106 struct drm_device *dev = crtc->base.dev;
b8cecdf5 5107 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
89749350 5108
ad3a4479 5109 /* FIXME should check pixel clock limits on all platforms */
cf532bb2
VS
5110 if (INTEL_INFO(dev)->gen < 4) {
5111 struct drm_i915_private *dev_priv = dev->dev_private;
5112 int clock_limit =
5113 dev_priv->display.get_display_clock_speed(dev);
5114
5115 /*
5116 * Enable pixel doubling when the dot clock
5117 * is > 90% of the (display) core speed.
5118 *
b397c96b
VS
5119 * GDG double wide on either pipe,
5120 * otherwise pipe A only.
cf532bb2 5121 */
b397c96b 5122 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
241bfc38 5123 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
ad3a4479 5124 clock_limit *= 2;
cf532bb2 5125 pipe_config->double_wide = true;
ad3a4479
VS
5126 }
5127
241bfc38 5128 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
e29c22c0 5129 return -EINVAL;
2c07245f 5130 }
89749350 5131
1d1d0e27
VS
5132 /*
5133 * Pipe horizontal size must be even in:
5134 * - DVO ganged mode
5135 * - LVDS dual channel mode
5136 * - Double wide pipe
5137 */
5138 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
5139 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5140 pipe_config->pipe_src_w &= ~1;
5141
8693a824
DL
5142 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5143 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42
CW
5144 */
5145 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5146 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
e29c22c0 5147 return -EINVAL;
44f46b42 5148
bd080ee5 5149 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
5d2d38dd 5150 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
bd080ee5 5151 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
5d2d38dd
DV
5152 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5153 * for lvds. */
5154 pipe_config->pipe_bpp = 8*3;
5155 }
5156
f5adf94e 5157 if (HAS_IPS(dev))
a43f6e0f
DV
5158 hsw_compute_ips_config(crtc, pipe_config);
5159
5160 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
5161 * clock survives for now. */
5162 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5163 pipe_config->shared_dpll = crtc->config.shared_dpll;
42db64ef 5164
877d48d5 5165 if (pipe_config->has_pch_encoder)
a43f6e0f 5166 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 5167
e29c22c0 5168 return 0;
79e53945
JB
5169}
5170
25eb05fc
JB
5171static int valleyview_get_display_clock_speed(struct drm_device *dev)
5172{
5173 return 400000; /* FIXME */
5174}
5175
e70236a8
JB
5176static int i945_get_display_clock_speed(struct drm_device *dev)
5177{
5178 return 400000;
5179}
79e53945 5180
e70236a8 5181static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 5182{
e70236a8
JB
5183 return 333000;
5184}
79e53945 5185
e70236a8
JB
5186static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5187{
5188 return 200000;
5189}
79e53945 5190
257a7ffc
DV
5191static int pnv_get_display_clock_speed(struct drm_device *dev)
5192{
5193 u16 gcfgc = 0;
5194
5195 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5196
5197 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5198 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5199 return 267000;
5200 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5201 return 333000;
5202 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5203 return 444000;
5204 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5205 return 200000;
5206 default:
5207 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5208 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5209 return 133000;
5210 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5211 return 167000;
5212 }
5213}
5214
e70236a8
JB
5215static int i915gm_get_display_clock_speed(struct drm_device *dev)
5216{
5217 u16 gcfgc = 0;
79e53945 5218
e70236a8
JB
5219 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5220
5221 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
5222 return 133000;
5223 else {
5224 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5225 case GC_DISPLAY_CLOCK_333_MHZ:
5226 return 333000;
5227 default:
5228 case GC_DISPLAY_CLOCK_190_200_MHZ:
5229 return 190000;
79e53945 5230 }
e70236a8
JB
5231 }
5232}
5233
5234static int i865_get_display_clock_speed(struct drm_device *dev)
5235{
5236 return 266000;
5237}
5238
5239static int i855_get_display_clock_speed(struct drm_device *dev)
5240{
5241 u16 hpllcc = 0;
5242 /* Assume that the hardware is in the high speed state. This
5243 * should be the default.
5244 */
5245 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5246 case GC_CLOCK_133_200:
5247 case GC_CLOCK_100_200:
5248 return 200000;
5249 case GC_CLOCK_166_250:
5250 return 250000;
5251 case GC_CLOCK_100_133:
79e53945 5252 return 133000;
e70236a8 5253 }
79e53945 5254
e70236a8
JB
5255 /* Shouldn't happen */
5256 return 0;
5257}
79e53945 5258
e70236a8
JB
5259static int i830_get_display_clock_speed(struct drm_device *dev)
5260{
5261 return 133000;
79e53945
JB
5262}
5263
2c07245f 5264static void
a65851af 5265intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 5266{
a65851af
VS
5267 while (*num > DATA_LINK_M_N_MASK ||
5268 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
5269 *num >>= 1;
5270 *den >>= 1;
5271 }
5272}
5273
a65851af
VS
5274static void compute_m_n(unsigned int m, unsigned int n,
5275 uint32_t *ret_m, uint32_t *ret_n)
5276{
5277 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5278 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5279 intel_reduce_m_n_ratio(ret_m, ret_n);
5280}
5281
e69d0bc1
DV
5282void
5283intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5284 int pixel_clock, int link_clock,
5285 struct intel_link_m_n *m_n)
2c07245f 5286{
e69d0bc1 5287 m_n->tu = 64;
a65851af
VS
5288
5289 compute_m_n(bits_per_pixel * pixel_clock,
5290 link_clock * nlanes * 8,
5291 &m_n->gmch_m, &m_n->gmch_n);
5292
5293 compute_m_n(pixel_clock, link_clock,
5294 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
5295}
5296
a7615030
CW
5297static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5298{
d330a953
JN
5299 if (i915.panel_use_ssc >= 0)
5300 return i915.panel_use_ssc != 0;
41aa3448 5301 return dev_priv->vbt.lvds_use_ssc
435793df 5302 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
5303}
5304
c65d77d8
JB
5305static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
5306{
5307 struct drm_device *dev = crtc->dev;
5308 struct drm_i915_private *dev_priv = dev->dev_private;
5309 int refclk;
5310
a0c4da24 5311 if (IS_VALLEYVIEW(dev)) {
9a0ea498 5312 refclk = 100000;
a0c4da24 5313 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
c65d77d8 5314 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b
VS
5315 refclk = dev_priv->vbt.lvds_ssc_freq;
5316 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
c65d77d8
JB
5317 } else if (!IS_GEN2(dev)) {
5318 refclk = 96000;
5319 } else {
5320 refclk = 48000;
5321 }
5322
5323 return refclk;
5324}
5325
7429e9d4 5326static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
c65d77d8 5327{
7df00d7a 5328 return (1 << dpll->n) << 16 | dpll->m2;
7429e9d4 5329}
f47709a9 5330
7429e9d4
DV
5331static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5332{
5333 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
c65d77d8
JB
5334}
5335
f47709a9 5336static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
a7516a05
JB
5337 intel_clock_t *reduced_clock)
5338{
f47709a9 5339 struct drm_device *dev = crtc->base.dev;
a7516a05
JB
5340 u32 fp, fp2 = 0;
5341
5342 if (IS_PINEVIEW(dev)) {
7429e9d4 5343 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
a7516a05 5344 if (reduced_clock)
7429e9d4 5345 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 5346 } else {
7429e9d4 5347 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
a7516a05 5348 if (reduced_clock)
7429e9d4 5349 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
5350 }
5351
8bcc2795 5352 crtc->config.dpll_hw_state.fp0 = fp;
a7516a05 5353
f47709a9
DV
5354 crtc->lowfreq_avail = false;
5355 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
d330a953 5356 reduced_clock && i915.powersave) {
8bcc2795 5357 crtc->config.dpll_hw_state.fp1 = fp2;
f47709a9 5358 crtc->lowfreq_avail = true;
a7516a05 5359 } else {
8bcc2795 5360 crtc->config.dpll_hw_state.fp1 = fp;
a7516a05
JB
5361 }
5362}
5363
5e69f97f
CML
5364static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5365 pipe)
89b667f8
JB
5366{
5367 u32 reg_val;
5368
5369 /*
5370 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5371 * and set it to a reasonable value instead.
5372 */
ab3c759a 5373 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8
JB
5374 reg_val &= 0xffffff00;
5375 reg_val |= 0x00000030;
ab3c759a 5376 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 5377
ab3c759a 5378 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
5379 reg_val &= 0x8cffffff;
5380 reg_val = 0x8c000000;
ab3c759a 5381 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8 5382
ab3c759a 5383 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8 5384 reg_val &= 0xffffff00;
ab3c759a 5385 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 5386
ab3c759a 5387 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
5388 reg_val &= 0x00ffffff;
5389 reg_val |= 0xb0000000;
ab3c759a 5390 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8
JB
5391}
5392
b551842d
DV
5393static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5394 struct intel_link_m_n *m_n)
5395{
5396 struct drm_device *dev = crtc->base.dev;
5397 struct drm_i915_private *dev_priv = dev->dev_private;
5398 int pipe = crtc->pipe;
5399
e3b95f1e
DV
5400 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5401 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5402 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5403 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
5404}
5405
5406static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
5407 struct intel_link_m_n *m_n)
5408{
5409 struct drm_device *dev = crtc->base.dev;
5410 struct drm_i915_private *dev_priv = dev->dev_private;
5411 int pipe = crtc->pipe;
5412 enum transcoder transcoder = crtc->config.cpu_transcoder;
5413
5414 if (INTEL_INFO(dev)->gen >= 5) {
5415 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5416 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5417 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5418 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
5419 } else {
e3b95f1e
DV
5420 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5421 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5422 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5423 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
5424 }
5425}
5426
03afc4a2
DV
5427static void intel_dp_set_m_n(struct intel_crtc *crtc)
5428{
5429 if (crtc->config.has_pch_encoder)
5430 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5431 else
5432 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5433}
5434
f47709a9 5435static void vlv_update_pll(struct intel_crtc *crtc)
bdd4b6a6
DV
5436{
5437 u32 dpll, dpll_md;
5438
5439 /*
5440 * Enable DPIO clock input. We should never disable the reference
5441 * clock for pipe B, since VGA hotplug / manual detection depends
5442 * on it.
5443 */
5444 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5445 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5446 /* We should never disable this, set it here for state tracking */
5447 if (crtc->pipe == PIPE_B)
5448 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5449 dpll |= DPLL_VCO_ENABLE;
5450 crtc->config.dpll_hw_state.dpll = dpll;
5451
5452 dpll_md = (crtc->config.pixel_multiplier - 1)
5453 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
5454 crtc->config.dpll_hw_state.dpll_md = dpll_md;
5455}
5456
5457static void vlv_prepare_pll(struct intel_crtc *crtc)
a0c4da24 5458{
f47709a9 5459 struct drm_device *dev = crtc->base.dev;
a0c4da24 5460 struct drm_i915_private *dev_priv = dev->dev_private;
f47709a9 5461 int pipe = crtc->pipe;
bdd4b6a6 5462 u32 mdiv;
a0c4da24 5463 u32 bestn, bestm1, bestm2, bestp1, bestp2;
bdd4b6a6 5464 u32 coreclk, reg_val;
a0c4da24 5465
09153000
DV
5466 mutex_lock(&dev_priv->dpio_lock);
5467
f47709a9
DV
5468 bestn = crtc->config.dpll.n;
5469 bestm1 = crtc->config.dpll.m1;
5470 bestm2 = crtc->config.dpll.m2;
5471 bestp1 = crtc->config.dpll.p1;
5472 bestp2 = crtc->config.dpll.p2;
a0c4da24 5473
89b667f8
JB
5474 /* See eDP HDMI DPIO driver vbios notes doc */
5475
5476 /* PLL B needs special handling */
bdd4b6a6 5477 if (pipe == PIPE_B)
5e69f97f 5478 vlv_pllb_recal_opamp(dev_priv, pipe);
89b667f8
JB
5479
5480 /* Set up Tx target for periodic Rcomp update */
ab3c759a 5481 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
89b667f8
JB
5482
5483 /* Disable target IRef on PLL */
ab3c759a 5484 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
89b667f8 5485 reg_val &= 0x00ffffff;
ab3c759a 5486 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
89b667f8
JB
5487
5488 /* Disable fast lock */
ab3c759a 5489 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
89b667f8
JB
5490
5491 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
5492 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5493 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5494 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 5495 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
5496
5497 /*
5498 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5499 * but we don't support that).
5500 * Note: don't use the DAC post divider as it seems unstable.
5501 */
5502 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ab3c759a 5503 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 5504
a0c4da24 5505 mdiv |= DPIO_ENABLE_CALIBRATION;
ab3c759a 5506 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 5507
89b667f8 5508 /* Set HBR and RBR LPF coefficients */
ff9a6750 5509 if (crtc->config.port_clock == 162000 ||
99750bd4 5510 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
89b667f8 5511 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
ab3c759a 5512 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
885b0120 5513 0x009f0003);
89b667f8 5514 else
ab3c759a 5515 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
89b667f8
JB
5516 0x00d0000f);
5517
5518 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
5519 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
5520 /* Use SSC source */
bdd4b6a6 5521 if (pipe == PIPE_A)
ab3c759a 5522 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5523 0x0df40000);
5524 else
ab3c759a 5525 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5526 0x0df70000);
5527 } else { /* HDMI or VGA */
5528 /* Use bend source */
bdd4b6a6 5529 if (pipe == PIPE_A)
ab3c759a 5530 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5531 0x0df70000);
5532 else
ab3c759a 5533 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5534 0x0df40000);
5535 }
a0c4da24 5536
ab3c759a 5537 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
89b667f8
JB
5538 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
5539 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
5540 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
5541 coreclk |= 0x01000000;
ab3c759a 5542 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
a0c4da24 5543
ab3c759a 5544 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
09153000 5545 mutex_unlock(&dev_priv->dpio_lock);
a0c4da24
JB
5546}
5547
9d556c99
CML
5548static void chv_update_pll(struct intel_crtc *crtc)
5549{
5550 struct drm_device *dev = crtc->base.dev;
5551 struct drm_i915_private *dev_priv = dev->dev_private;
5552 int pipe = crtc->pipe;
5553 int dpll_reg = DPLL(crtc->pipe);
5554 enum dpio_channel port = vlv_pipe_to_channel(pipe);
580d3811 5555 u32 loopfilter, intcoeff;
9d556c99
CML
5556 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
5557 int refclk;
5558
a11b0703
VS
5559 crtc->config.dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
5560 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
5561 DPLL_VCO_ENABLE;
5562 if (pipe != PIPE_A)
5563 crtc->config.dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5564
5565 crtc->config.dpll_hw_state.dpll_md =
5566 (crtc->config.pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
9d556c99
CML
5567
5568 bestn = crtc->config.dpll.n;
5569 bestm2_frac = crtc->config.dpll.m2 & 0x3fffff;
5570 bestm1 = crtc->config.dpll.m1;
5571 bestm2 = crtc->config.dpll.m2 >> 22;
5572 bestp1 = crtc->config.dpll.p1;
5573 bestp2 = crtc->config.dpll.p2;
5574
5575 /*
5576 * Enable Refclk and SSC
5577 */
a11b0703
VS
5578 I915_WRITE(dpll_reg,
5579 crtc->config.dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
5580
5581 mutex_lock(&dev_priv->dpio_lock);
9d556c99 5582
9d556c99
CML
5583 /* p1 and p2 divider */
5584 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
5585 5 << DPIO_CHV_S1_DIV_SHIFT |
5586 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
5587 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
5588 1 << DPIO_CHV_K_DIV_SHIFT);
5589
5590 /* Feedback post-divider - m2 */
5591 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
5592
5593 /* Feedback refclk divider - n and m1 */
5594 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
5595 DPIO_CHV_M1_DIV_BY_2 |
5596 1 << DPIO_CHV_N_DIV_SHIFT);
5597
5598 /* M2 fraction division */
5599 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
5600
5601 /* M2 fraction division enable */
5602 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
5603 DPIO_CHV_FRAC_DIV_EN |
5604 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
5605
5606 /* Loop filter */
5607 refclk = i9xx_get_refclk(&crtc->base, 0);
5608 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
5609 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
5610 if (refclk == 100000)
5611 intcoeff = 11;
5612 else if (refclk == 38400)
5613 intcoeff = 10;
5614 else
5615 intcoeff = 9;
5616 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
5617 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
5618
5619 /* AFC Recal */
5620 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
5621 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
5622 DPIO_AFC_RECAL);
5623
5624 mutex_unlock(&dev_priv->dpio_lock);
5625}
5626
f47709a9
DV
5627static void i9xx_update_pll(struct intel_crtc *crtc,
5628 intel_clock_t *reduced_clock,
eb1cbe48
DV
5629 int num_connectors)
5630{
f47709a9 5631 struct drm_device *dev = crtc->base.dev;
eb1cbe48 5632 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48
DV
5633 u32 dpll;
5634 bool is_sdvo;
f47709a9 5635 struct dpll *clock = &crtc->config.dpll;
eb1cbe48 5636
f47709a9 5637 i9xx_update_pll_dividers(crtc, reduced_clock);
2a8f64ca 5638
f47709a9
DV
5639 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
5640 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
eb1cbe48
DV
5641
5642 dpll = DPLL_VGA_MODE_DIS;
5643
f47709a9 5644 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
5645 dpll |= DPLLB_MODE_LVDS;
5646 else
5647 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 5648
ef1b460d 5649 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
198a037f
DV
5650 dpll |= (crtc->config.pixel_multiplier - 1)
5651 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 5652 }
198a037f
DV
5653
5654 if (is_sdvo)
4a33e48d 5655 dpll |= DPLL_SDVO_HIGH_SPEED;
198a037f 5656
f47709a9 5657 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
4a33e48d 5658 dpll |= DPLL_SDVO_HIGH_SPEED;
eb1cbe48
DV
5659
5660 /* compute bitmask from p1 value */
5661 if (IS_PINEVIEW(dev))
5662 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
5663 else {
5664 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5665 if (IS_G4X(dev) && reduced_clock)
5666 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5667 }
5668 switch (clock->p2) {
5669 case 5:
5670 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5671 break;
5672 case 7:
5673 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5674 break;
5675 case 10:
5676 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5677 break;
5678 case 14:
5679 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5680 break;
5681 }
5682 if (INTEL_INFO(dev)->gen >= 4)
5683 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
5684
09ede541 5685 if (crtc->config.sdvo_tv_clock)
eb1cbe48 5686 dpll |= PLL_REF_INPUT_TVCLKINBC;
f47709a9 5687 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
5688 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5689 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5690 else
5691 dpll |= PLL_REF_INPUT_DREFCLK;
5692
5693 dpll |= DPLL_VCO_ENABLE;
8bcc2795
DV
5694 crtc->config.dpll_hw_state.dpll = dpll;
5695
eb1cbe48 5696 if (INTEL_INFO(dev)->gen >= 4) {
ef1b460d
DV
5697 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
5698 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
8bcc2795 5699 crtc->config.dpll_hw_state.dpll_md = dpll_md;
eb1cbe48
DV
5700 }
5701}
5702
f47709a9 5703static void i8xx_update_pll(struct intel_crtc *crtc,
f47709a9 5704 intel_clock_t *reduced_clock,
eb1cbe48
DV
5705 int num_connectors)
5706{
f47709a9 5707 struct drm_device *dev = crtc->base.dev;
eb1cbe48 5708 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48 5709 u32 dpll;
f47709a9 5710 struct dpll *clock = &crtc->config.dpll;
eb1cbe48 5711
f47709a9 5712 i9xx_update_pll_dividers(crtc, reduced_clock);
2a8f64ca 5713
eb1cbe48
DV
5714 dpll = DPLL_VGA_MODE_DIS;
5715
f47709a9 5716 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
5717 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5718 } else {
5719 if (clock->p1 == 2)
5720 dpll |= PLL_P1_DIVIDE_BY_TWO;
5721 else
5722 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5723 if (clock->p2 == 4)
5724 dpll |= PLL_P2_DIVIDE_BY_4;
5725 }
5726
4a33e48d
DV
5727 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
5728 dpll |= DPLL_DVO_2X_MODE;
5729
f47709a9 5730 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
5731 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5732 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5733 else
5734 dpll |= PLL_REF_INPUT_DREFCLK;
5735
5736 dpll |= DPLL_VCO_ENABLE;
8bcc2795 5737 crtc->config.dpll_hw_state.dpll = dpll;
eb1cbe48
DV
5738}
5739
8a654f3b 5740static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c
PZ
5741{
5742 struct drm_device *dev = intel_crtc->base.dev;
5743 struct drm_i915_private *dev_priv = dev->dev_private;
5744 enum pipe pipe = intel_crtc->pipe;
3b117c8f 5745 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
8a654f3b
DV
5746 struct drm_display_mode *adjusted_mode =
5747 &intel_crtc->config.adjusted_mode;
1caea6e9
VS
5748 uint32_t crtc_vtotal, crtc_vblank_end;
5749 int vsyncshift = 0;
4d8a62ea
DV
5750
5751 /* We need to be careful not to changed the adjusted mode, for otherwise
5752 * the hw state checker will get angry at the mismatch. */
5753 crtc_vtotal = adjusted_mode->crtc_vtotal;
5754 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c 5755
609aeaca 5756 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
b0e77b9c 5757 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
5758 crtc_vtotal -= 1;
5759 crtc_vblank_end -= 1;
609aeaca
VS
5760
5761 if (intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5762 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
5763 else
5764 vsyncshift = adjusted_mode->crtc_hsync_start -
5765 adjusted_mode->crtc_htotal / 2;
1caea6e9
VS
5766 if (vsyncshift < 0)
5767 vsyncshift += adjusted_mode->crtc_htotal;
b0e77b9c
PZ
5768 }
5769
5770 if (INTEL_INFO(dev)->gen > 3)
fe2b8f9d 5771 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 5772
fe2b8f9d 5773 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
5774 (adjusted_mode->crtc_hdisplay - 1) |
5775 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 5776 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
5777 (adjusted_mode->crtc_hblank_start - 1) |
5778 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 5779 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
5780 (adjusted_mode->crtc_hsync_start - 1) |
5781 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5782
fe2b8f9d 5783 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 5784 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 5785 ((crtc_vtotal - 1) << 16));
fe2b8f9d 5786 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 5787 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 5788 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 5789 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
5790 (adjusted_mode->crtc_vsync_start - 1) |
5791 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5792
b5e508d4
PZ
5793 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
5794 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
5795 * documented on the DDI_FUNC_CTL register description, EDP Input Select
5796 * bits. */
5797 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
5798 (pipe == PIPE_B || pipe == PIPE_C))
5799 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
5800
b0e77b9c
PZ
5801 /* pipesrc controls the size that is scaled from, which should
5802 * always be the user's requested size.
5803 */
5804 I915_WRITE(PIPESRC(pipe),
37327abd
VS
5805 ((intel_crtc->config.pipe_src_w - 1) << 16) |
5806 (intel_crtc->config.pipe_src_h - 1));
b0e77b9c
PZ
5807}
5808
1bd1bd80
DV
5809static void intel_get_pipe_timings(struct intel_crtc *crtc,
5810 struct intel_crtc_config *pipe_config)
5811{
5812 struct drm_device *dev = crtc->base.dev;
5813 struct drm_i915_private *dev_priv = dev->dev_private;
5814 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
5815 uint32_t tmp;
5816
5817 tmp = I915_READ(HTOTAL(cpu_transcoder));
5818 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
5819 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
5820 tmp = I915_READ(HBLANK(cpu_transcoder));
5821 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
5822 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
5823 tmp = I915_READ(HSYNC(cpu_transcoder));
5824 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
5825 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
5826
5827 tmp = I915_READ(VTOTAL(cpu_transcoder));
5828 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
5829 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
5830 tmp = I915_READ(VBLANK(cpu_transcoder));
5831 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
5832 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
5833 tmp = I915_READ(VSYNC(cpu_transcoder));
5834 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
5835 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
5836
5837 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
5838 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
5839 pipe_config->adjusted_mode.crtc_vtotal += 1;
5840 pipe_config->adjusted_mode.crtc_vblank_end += 1;
5841 }
5842
5843 tmp = I915_READ(PIPESRC(crtc->pipe));
37327abd
VS
5844 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
5845 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
5846
5847 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
5848 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
1bd1bd80
DV
5849}
5850
f6a83288
DV
5851void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5852 struct intel_crtc_config *pipe_config)
babea61d 5853{
f6a83288
DV
5854 mode->hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
5855 mode->htotal = pipe_config->adjusted_mode.crtc_htotal;
5856 mode->hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
5857 mode->hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
babea61d 5858
f6a83288
DV
5859 mode->vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
5860 mode->vtotal = pipe_config->adjusted_mode.crtc_vtotal;
5861 mode->vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
5862 mode->vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
babea61d 5863
f6a83288 5864 mode->flags = pipe_config->adjusted_mode.flags;
babea61d 5865
f6a83288
DV
5866 mode->clock = pipe_config->adjusted_mode.crtc_clock;
5867 mode->flags |= pipe_config->adjusted_mode.flags;
babea61d
JB
5868}
5869
84b046f3
DV
5870static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
5871{
5872 struct drm_device *dev = intel_crtc->base.dev;
5873 struct drm_i915_private *dev_priv = dev->dev_private;
5874 uint32_t pipeconf;
5875
9f11a9e4 5876 pipeconf = 0;
84b046f3 5877
67c72a12
DV
5878 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
5879 I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE)
5880 pipeconf |= PIPECONF_ENABLE;
5881
cf532bb2
VS
5882 if (intel_crtc->config.double_wide)
5883 pipeconf |= PIPECONF_DOUBLE_WIDE;
84b046f3 5884
ff9ce46e
DV
5885 /* only g4x and later have fancy bpc/dither controls */
5886 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
ff9ce46e
DV
5887 /* Bspec claims that we can't use dithering for 30bpp pipes. */
5888 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
5889 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 5890 PIPECONF_DITHER_TYPE_SP;
84b046f3 5891
ff9ce46e
DV
5892 switch (intel_crtc->config.pipe_bpp) {
5893 case 18:
5894 pipeconf |= PIPECONF_6BPC;
5895 break;
5896 case 24:
5897 pipeconf |= PIPECONF_8BPC;
5898 break;
5899 case 30:
5900 pipeconf |= PIPECONF_10BPC;
5901 break;
5902 default:
5903 /* Case prevented by intel_choose_pipe_bpp_dither. */
5904 BUG();
84b046f3
DV
5905 }
5906 }
5907
5908 if (HAS_PIPE_CXSR(dev)) {
5909 if (intel_crtc->lowfreq_avail) {
5910 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
5911 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
5912 } else {
5913 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
84b046f3
DV
5914 }
5915 }
5916
efc2cfff
VS
5917 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
5918 if (INTEL_INFO(dev)->gen < 4 ||
5919 intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5920 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
5921 else
5922 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
5923 } else
84b046f3
DV
5924 pipeconf |= PIPECONF_PROGRESSIVE;
5925
9f11a9e4
DV
5926 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
5927 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
9c8e09b7 5928
84b046f3
DV
5929 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
5930 POSTING_READ(PIPECONF(intel_crtc->pipe));
5931}
5932
f564048e 5933static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
f564048e 5934 int x, int y,
94352cf9 5935 struct drm_framebuffer *fb)
79e53945
JB
5936{
5937 struct drm_device *dev = crtc->dev;
5938 struct drm_i915_private *dev_priv = dev->dev_private;
5939 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
c751ce4f 5940 int refclk, num_connectors = 0;
652c393a 5941 intel_clock_t clock, reduced_clock;
a16af721 5942 bool ok, has_reduced_clock = false;
e9fd1c02 5943 bool is_lvds = false, is_dsi = false;
5eddb70b 5944 struct intel_encoder *encoder;
d4906093 5945 const intel_limit_t *limit;
79e53945 5946
6c2b7c12 5947 for_each_encoder_on_crtc(dev, crtc, encoder) {
5eddb70b 5948 switch (encoder->type) {
79e53945
JB
5949 case INTEL_OUTPUT_LVDS:
5950 is_lvds = true;
5951 break;
e9fd1c02
JN
5952 case INTEL_OUTPUT_DSI:
5953 is_dsi = true;
5954 break;
79e53945 5955 }
43565a06 5956
c751ce4f 5957 num_connectors++;
79e53945
JB
5958 }
5959
f2335330 5960 if (is_dsi)
5b18e57c 5961 return 0;
f2335330
JN
5962
5963 if (!intel_crtc->config.clock_set) {
5964 refclk = i9xx_get_refclk(crtc, num_connectors);
79e53945 5965
e9fd1c02
JN
5966 /*
5967 * Returns a set of divisors for the desired target clock with
5968 * the given refclk, or FALSE. The returned values represent
5969 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
5970 * 2) / p1 / p2.
5971 */
5972 limit = intel_limit(crtc, refclk);
5973 ok = dev_priv->display.find_dpll(limit, crtc,
5974 intel_crtc->config.port_clock,
5975 refclk, NULL, &clock);
f2335330 5976 if (!ok) {
e9fd1c02
JN
5977 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5978 return -EINVAL;
5979 }
79e53945 5980
f2335330
JN
5981 if (is_lvds && dev_priv->lvds_downclock_avail) {
5982 /*
5983 * Ensure we match the reduced clock's P to the target
5984 * clock. If the clocks don't match, we can't switch
5985 * the display clock by using the FP0/FP1. In such case
5986 * we will disable the LVDS downclock feature.
5987 */
5988 has_reduced_clock =
5989 dev_priv->display.find_dpll(limit, crtc,
5990 dev_priv->lvds_downclock,
5991 refclk, &clock,
5992 &reduced_clock);
5993 }
5994 /* Compat-code for transition, will disappear. */
f47709a9
DV
5995 intel_crtc->config.dpll.n = clock.n;
5996 intel_crtc->config.dpll.m1 = clock.m1;
5997 intel_crtc->config.dpll.m2 = clock.m2;
5998 intel_crtc->config.dpll.p1 = clock.p1;
5999 intel_crtc->config.dpll.p2 = clock.p2;
6000 }
7026d4ac 6001
e9fd1c02 6002 if (IS_GEN2(dev)) {
8a654f3b 6003 i8xx_update_pll(intel_crtc,
2a8f64ca
VP
6004 has_reduced_clock ? &reduced_clock : NULL,
6005 num_connectors);
9d556c99
CML
6006 } else if (IS_CHERRYVIEW(dev)) {
6007 chv_update_pll(intel_crtc);
e9fd1c02 6008 } else if (IS_VALLEYVIEW(dev)) {
f2335330 6009 vlv_update_pll(intel_crtc);
e9fd1c02 6010 } else {
f47709a9 6011 i9xx_update_pll(intel_crtc,
eb1cbe48 6012 has_reduced_clock ? &reduced_clock : NULL,
eba905b2 6013 num_connectors);
e9fd1c02 6014 }
79e53945 6015
c8f7a0db 6016 return 0;
f564048e
EA
6017}
6018
2fa2fe9a
DV
6019static void i9xx_get_pfit_config(struct intel_crtc *crtc,
6020 struct intel_crtc_config *pipe_config)
6021{
6022 struct drm_device *dev = crtc->base.dev;
6023 struct drm_i915_private *dev_priv = dev->dev_private;
6024 uint32_t tmp;
6025
dc9e7dec
VS
6026 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6027 return;
6028
2fa2fe9a 6029 tmp = I915_READ(PFIT_CONTROL);
06922821
DV
6030 if (!(tmp & PFIT_ENABLE))
6031 return;
2fa2fe9a 6032
06922821 6033 /* Check whether the pfit is attached to our pipe. */
2fa2fe9a
DV
6034 if (INTEL_INFO(dev)->gen < 4) {
6035 if (crtc->pipe != PIPE_B)
6036 return;
2fa2fe9a
DV
6037 } else {
6038 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6039 return;
6040 }
6041
06922821 6042 pipe_config->gmch_pfit.control = tmp;
2fa2fe9a
DV
6043 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6044 if (INTEL_INFO(dev)->gen < 5)
6045 pipe_config->gmch_pfit.lvds_border_bits =
6046 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6047}
6048
acbec814
JB
6049static void vlv_crtc_clock_get(struct intel_crtc *crtc,
6050 struct intel_crtc_config *pipe_config)
6051{
6052 struct drm_device *dev = crtc->base.dev;
6053 struct drm_i915_private *dev_priv = dev->dev_private;
6054 int pipe = pipe_config->cpu_transcoder;
6055 intel_clock_t clock;
6056 u32 mdiv;
662c6ecb 6057 int refclk = 100000;
acbec814
JB
6058
6059 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 6060 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
acbec814
JB
6061 mutex_unlock(&dev_priv->dpio_lock);
6062
6063 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6064 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6065 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6066 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6067 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6068
f646628b 6069 vlv_clock(refclk, &clock);
acbec814 6070
f646628b
VS
6071 /* clock.dot is the fast clock */
6072 pipe_config->port_clock = clock.dot / 5;
acbec814
JB
6073}
6074
1ad292b5
JB
6075static void i9xx_get_plane_config(struct intel_crtc *crtc,
6076 struct intel_plane_config *plane_config)
6077{
6078 struct drm_device *dev = crtc->base.dev;
6079 struct drm_i915_private *dev_priv = dev->dev_private;
6080 u32 val, base, offset;
6081 int pipe = crtc->pipe, plane = crtc->plane;
6082 int fourcc, pixel_format;
6083 int aligned_height;
6084
66e514c1
DA
6085 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
6086 if (!crtc->base.primary->fb) {
1ad292b5
JB
6087 DRM_DEBUG_KMS("failed to alloc fb\n");
6088 return;
6089 }
6090
6091 val = I915_READ(DSPCNTR(plane));
6092
6093 if (INTEL_INFO(dev)->gen >= 4)
6094 if (val & DISPPLANE_TILED)
6095 plane_config->tiled = true;
6096
6097 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
6098 fourcc = intel_format_to_fourcc(pixel_format);
66e514c1
DA
6099 crtc->base.primary->fb->pixel_format = fourcc;
6100 crtc->base.primary->fb->bits_per_pixel =
1ad292b5
JB
6101 drm_format_plane_cpp(fourcc, 0) * 8;
6102
6103 if (INTEL_INFO(dev)->gen >= 4) {
6104 if (plane_config->tiled)
6105 offset = I915_READ(DSPTILEOFF(plane));
6106 else
6107 offset = I915_READ(DSPLINOFF(plane));
6108 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6109 } else {
6110 base = I915_READ(DSPADDR(plane));
6111 }
6112 plane_config->base = base;
6113
6114 val = I915_READ(PIPESRC(pipe));
66e514c1
DA
6115 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
6116 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
1ad292b5
JB
6117
6118 val = I915_READ(DSPSTRIDE(pipe));
66e514c1 6119 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
1ad292b5 6120
66e514c1 6121 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
1ad292b5
JB
6122 plane_config->tiled);
6123
66e514c1 6124 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
1ad292b5
JB
6125 aligned_height, PAGE_SIZE);
6126
6127 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
66e514c1
DA
6128 pipe, plane, crtc->base.primary->fb->width,
6129 crtc->base.primary->fb->height,
6130 crtc->base.primary->fb->bits_per_pixel, base,
6131 crtc->base.primary->fb->pitches[0],
1ad292b5
JB
6132 plane_config->size);
6133
6134}
6135
70b23a98
VS
6136static void chv_crtc_clock_get(struct intel_crtc *crtc,
6137 struct intel_crtc_config *pipe_config)
6138{
6139 struct drm_device *dev = crtc->base.dev;
6140 struct drm_i915_private *dev_priv = dev->dev_private;
6141 int pipe = pipe_config->cpu_transcoder;
6142 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6143 intel_clock_t clock;
6144 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6145 int refclk = 100000;
6146
6147 mutex_lock(&dev_priv->dpio_lock);
6148 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6149 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6150 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6151 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6152 mutex_unlock(&dev_priv->dpio_lock);
6153
6154 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6155 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6156 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6157 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6158 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6159
6160 chv_clock(refclk, &clock);
6161
6162 /* clock.dot is the fast clock */
6163 pipe_config->port_clock = clock.dot / 5;
6164}
6165
0e8ffe1b
DV
6166static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
6167 struct intel_crtc_config *pipe_config)
6168{
6169 struct drm_device *dev = crtc->base.dev;
6170 struct drm_i915_private *dev_priv = dev->dev_private;
6171 uint32_t tmp;
6172
b5482bd0
ID
6173 if (!intel_display_power_enabled(dev_priv,
6174 POWER_DOMAIN_PIPE(crtc->pipe)))
6175 return false;
6176
e143a21c 6177 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 6178 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 6179
0e8ffe1b
DV
6180 tmp = I915_READ(PIPECONF(crtc->pipe));
6181 if (!(tmp & PIPECONF_ENABLE))
6182 return false;
6183
42571aef
VS
6184 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6185 switch (tmp & PIPECONF_BPC_MASK) {
6186 case PIPECONF_6BPC:
6187 pipe_config->pipe_bpp = 18;
6188 break;
6189 case PIPECONF_8BPC:
6190 pipe_config->pipe_bpp = 24;
6191 break;
6192 case PIPECONF_10BPC:
6193 pipe_config->pipe_bpp = 30;
6194 break;
6195 default:
6196 break;
6197 }
6198 }
6199
b5a9fa09
DV
6200 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6201 pipe_config->limited_color_range = true;
6202
282740f7
VS
6203 if (INTEL_INFO(dev)->gen < 4)
6204 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6205
1bd1bd80
DV
6206 intel_get_pipe_timings(crtc, pipe_config);
6207
2fa2fe9a
DV
6208 i9xx_get_pfit_config(crtc, pipe_config);
6209
6c49f241
DV
6210 if (INTEL_INFO(dev)->gen >= 4) {
6211 tmp = I915_READ(DPLL_MD(crtc->pipe));
6212 pipe_config->pixel_multiplier =
6213 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6214 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8bcc2795 6215 pipe_config->dpll_hw_state.dpll_md = tmp;
6c49f241
DV
6216 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6217 tmp = I915_READ(DPLL(crtc->pipe));
6218 pipe_config->pixel_multiplier =
6219 ((tmp & SDVO_MULTIPLIER_MASK)
6220 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6221 } else {
6222 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6223 * port and will be fixed up in the encoder->get_config
6224 * function. */
6225 pipe_config->pixel_multiplier = 1;
6226 }
8bcc2795
DV
6227 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6228 if (!IS_VALLEYVIEW(dev)) {
6229 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6230 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
165e901c
VS
6231 } else {
6232 /* Mask out read-only status bits. */
6233 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6234 DPLL_PORTC_READY_MASK |
6235 DPLL_PORTB_READY_MASK);
8bcc2795 6236 }
6c49f241 6237
70b23a98
VS
6238 if (IS_CHERRYVIEW(dev))
6239 chv_crtc_clock_get(crtc, pipe_config);
6240 else if (IS_VALLEYVIEW(dev))
acbec814
JB
6241 vlv_crtc_clock_get(crtc, pipe_config);
6242 else
6243 i9xx_crtc_clock_get(crtc, pipe_config);
18442d08 6244
0e8ffe1b
DV
6245 return true;
6246}
6247
dde86e2d 6248static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67
JB
6249{
6250 struct drm_i915_private *dev_priv = dev->dev_private;
6251 struct drm_mode_config *mode_config = &dev->mode_config;
13d83a67 6252 struct intel_encoder *encoder;
74cfd7ac 6253 u32 val, final;
13d83a67 6254 bool has_lvds = false;
199e5d79 6255 bool has_cpu_edp = false;
199e5d79 6256 bool has_panel = false;
99eb6a01
KP
6257 bool has_ck505 = false;
6258 bool can_ssc = false;
13d83a67
JB
6259
6260 /* We need to take the global config into account */
199e5d79
KP
6261 list_for_each_entry(encoder, &mode_config->encoder_list,
6262 base.head) {
6263 switch (encoder->type) {
6264 case INTEL_OUTPUT_LVDS:
6265 has_panel = true;
6266 has_lvds = true;
6267 break;
6268 case INTEL_OUTPUT_EDP:
6269 has_panel = true;
2de6905f 6270 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
6271 has_cpu_edp = true;
6272 break;
13d83a67
JB
6273 }
6274 }
6275
99eb6a01 6276 if (HAS_PCH_IBX(dev)) {
41aa3448 6277 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
6278 can_ssc = has_ck505;
6279 } else {
6280 has_ck505 = false;
6281 can_ssc = true;
6282 }
6283
2de6905f
ID
6284 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6285 has_panel, has_lvds, has_ck505);
13d83a67
JB
6286
6287 /* Ironlake: try to setup display ref clock before DPLL
6288 * enabling. This is only under driver's control after
6289 * PCH B stepping, previous chipset stepping should be
6290 * ignoring this setting.
6291 */
74cfd7ac
CW
6292 val = I915_READ(PCH_DREF_CONTROL);
6293
6294 /* As we must carefully and slowly disable/enable each source in turn,
6295 * compute the final state we want first and check if we need to
6296 * make any changes at all.
6297 */
6298 final = val;
6299 final &= ~DREF_NONSPREAD_SOURCE_MASK;
6300 if (has_ck505)
6301 final |= DREF_NONSPREAD_CK505_ENABLE;
6302 else
6303 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6304
6305 final &= ~DREF_SSC_SOURCE_MASK;
6306 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6307 final &= ~DREF_SSC1_ENABLE;
6308
6309 if (has_panel) {
6310 final |= DREF_SSC_SOURCE_ENABLE;
6311
6312 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6313 final |= DREF_SSC1_ENABLE;
6314
6315 if (has_cpu_edp) {
6316 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6317 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6318 else
6319 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6320 } else
6321 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6322 } else {
6323 final |= DREF_SSC_SOURCE_DISABLE;
6324 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6325 }
6326
6327 if (final == val)
6328 return;
6329
13d83a67 6330 /* Always enable nonspread source */
74cfd7ac 6331 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 6332
99eb6a01 6333 if (has_ck505)
74cfd7ac 6334 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 6335 else
74cfd7ac 6336 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 6337
199e5d79 6338 if (has_panel) {
74cfd7ac
CW
6339 val &= ~DREF_SSC_SOURCE_MASK;
6340 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 6341
199e5d79 6342 /* SSC must be turned on before enabling the CPU output */
99eb6a01 6343 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 6344 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 6345 val |= DREF_SSC1_ENABLE;
e77166b5 6346 } else
74cfd7ac 6347 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
6348
6349 /* Get SSC going before enabling the outputs */
74cfd7ac 6350 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6351 POSTING_READ(PCH_DREF_CONTROL);
6352 udelay(200);
6353
74cfd7ac 6354 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
6355
6356 /* Enable CPU source on CPU attached eDP */
199e5d79 6357 if (has_cpu_edp) {
99eb6a01 6358 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 6359 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 6360 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
eba905b2 6361 } else
74cfd7ac 6362 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 6363 } else
74cfd7ac 6364 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 6365
74cfd7ac 6366 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6367 POSTING_READ(PCH_DREF_CONTROL);
6368 udelay(200);
6369 } else {
6370 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6371
74cfd7ac 6372 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
6373
6374 /* Turn off CPU output */
74cfd7ac 6375 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 6376
74cfd7ac 6377 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6378 POSTING_READ(PCH_DREF_CONTROL);
6379 udelay(200);
6380
6381 /* Turn off the SSC source */
74cfd7ac
CW
6382 val &= ~DREF_SSC_SOURCE_MASK;
6383 val |= DREF_SSC_SOURCE_DISABLE;
199e5d79
KP
6384
6385 /* Turn off SSC1 */
74cfd7ac 6386 val &= ~DREF_SSC1_ENABLE;
199e5d79 6387
74cfd7ac 6388 I915_WRITE(PCH_DREF_CONTROL, val);
13d83a67
JB
6389 POSTING_READ(PCH_DREF_CONTROL);
6390 udelay(200);
6391 }
74cfd7ac
CW
6392
6393 BUG_ON(val != final);
13d83a67
JB
6394}
6395
f31f2d55 6396static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
dde86e2d 6397{
f31f2d55 6398 uint32_t tmp;
dde86e2d 6399
0ff066a9
PZ
6400 tmp = I915_READ(SOUTH_CHICKEN2);
6401 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6402 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 6403
0ff066a9
PZ
6404 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6405 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6406 DRM_ERROR("FDI mPHY reset assert timeout\n");
dde86e2d 6407
0ff066a9
PZ
6408 tmp = I915_READ(SOUTH_CHICKEN2);
6409 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6410 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 6411
0ff066a9
PZ
6412 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6413 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6414 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
f31f2d55
PZ
6415}
6416
6417/* WaMPhyProgramming:hsw */
6418static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6419{
6420 uint32_t tmp;
dde86e2d
PZ
6421
6422 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6423 tmp &= ~(0xFF << 24);
6424 tmp |= (0x12 << 24);
6425 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6426
dde86e2d
PZ
6427 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6428 tmp |= (1 << 11);
6429 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6430
6431 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6432 tmp |= (1 << 11);
6433 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6434
dde86e2d
PZ
6435 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6436 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6437 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6438
6439 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6440 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6441 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6442
0ff066a9
PZ
6443 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6444 tmp &= ~(7 << 13);
6445 tmp |= (5 << 13);
6446 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
dde86e2d 6447
0ff066a9
PZ
6448 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6449 tmp &= ~(7 << 13);
6450 tmp |= (5 << 13);
6451 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
dde86e2d
PZ
6452
6453 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6454 tmp &= ~0xFF;
6455 tmp |= 0x1C;
6456 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6457
6458 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6459 tmp &= ~0xFF;
6460 tmp |= 0x1C;
6461 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6462
6463 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6464 tmp &= ~(0xFF << 16);
6465 tmp |= (0x1C << 16);
6466 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6467
6468 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6469 tmp &= ~(0xFF << 16);
6470 tmp |= (0x1C << 16);
6471 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6472
0ff066a9
PZ
6473 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6474 tmp |= (1 << 27);
6475 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
dde86e2d 6476
0ff066a9
PZ
6477 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6478 tmp |= (1 << 27);
6479 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
dde86e2d 6480
0ff066a9
PZ
6481 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6482 tmp &= ~(0xF << 28);
6483 tmp |= (4 << 28);
6484 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
dde86e2d 6485
0ff066a9
PZ
6486 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6487 tmp &= ~(0xF << 28);
6488 tmp |= (4 << 28);
6489 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
f31f2d55
PZ
6490}
6491
2fa86a1f
PZ
6492/* Implements 3 different sequences from BSpec chapter "Display iCLK
6493 * Programming" based on the parameters passed:
6494 * - Sequence to enable CLKOUT_DP
6495 * - Sequence to enable CLKOUT_DP without spread
6496 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
6497 */
6498static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
6499 bool with_fdi)
f31f2d55
PZ
6500{
6501 struct drm_i915_private *dev_priv = dev->dev_private;
2fa86a1f
PZ
6502 uint32_t reg, tmp;
6503
6504 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
6505 with_spread = true;
6506 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
6507 with_fdi, "LP PCH doesn't have FDI\n"))
6508 with_fdi = false;
f31f2d55
PZ
6509
6510 mutex_lock(&dev_priv->dpio_lock);
6511
6512 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6513 tmp &= ~SBI_SSCCTL_DISABLE;
6514 tmp |= SBI_SSCCTL_PATHALT;
6515 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6516
6517 udelay(24);
6518
2fa86a1f
PZ
6519 if (with_spread) {
6520 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6521 tmp &= ~SBI_SSCCTL_PATHALT;
6522 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
f31f2d55 6523
2fa86a1f
PZ
6524 if (with_fdi) {
6525 lpt_reset_fdi_mphy(dev_priv);
6526 lpt_program_fdi_mphy(dev_priv);
6527 }
6528 }
dde86e2d 6529
2fa86a1f
PZ
6530 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6531 SBI_GEN0 : SBI_DBUFF0;
6532 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6533 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6534 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
c00db246
DV
6535
6536 mutex_unlock(&dev_priv->dpio_lock);
dde86e2d
PZ
6537}
6538
47701c3b
PZ
6539/* Sequence to disable CLKOUT_DP */
6540static void lpt_disable_clkout_dp(struct drm_device *dev)
6541{
6542 struct drm_i915_private *dev_priv = dev->dev_private;
6543 uint32_t reg, tmp;
6544
6545 mutex_lock(&dev_priv->dpio_lock);
6546
6547 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6548 SBI_GEN0 : SBI_DBUFF0;
6549 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6550 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6551 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
6552
6553 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6554 if (!(tmp & SBI_SSCCTL_DISABLE)) {
6555 if (!(tmp & SBI_SSCCTL_PATHALT)) {
6556 tmp |= SBI_SSCCTL_PATHALT;
6557 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6558 udelay(32);
6559 }
6560 tmp |= SBI_SSCCTL_DISABLE;
6561 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6562 }
6563
6564 mutex_unlock(&dev_priv->dpio_lock);
6565}
6566
bf8fa3d3
PZ
6567static void lpt_init_pch_refclk(struct drm_device *dev)
6568{
6569 struct drm_mode_config *mode_config = &dev->mode_config;
6570 struct intel_encoder *encoder;
6571 bool has_vga = false;
6572
6573 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
6574 switch (encoder->type) {
6575 case INTEL_OUTPUT_ANALOG:
6576 has_vga = true;
6577 break;
6578 }
6579 }
6580
47701c3b
PZ
6581 if (has_vga)
6582 lpt_enable_clkout_dp(dev, true, true);
6583 else
6584 lpt_disable_clkout_dp(dev);
bf8fa3d3
PZ
6585}
6586
dde86e2d
PZ
6587/*
6588 * Initialize reference clocks when the driver loads
6589 */
6590void intel_init_pch_refclk(struct drm_device *dev)
6591{
6592 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
6593 ironlake_init_pch_refclk(dev);
6594 else if (HAS_PCH_LPT(dev))
6595 lpt_init_pch_refclk(dev);
6596}
6597
d9d444cb
JB
6598static int ironlake_get_refclk(struct drm_crtc *crtc)
6599{
6600 struct drm_device *dev = crtc->dev;
6601 struct drm_i915_private *dev_priv = dev->dev_private;
6602 struct intel_encoder *encoder;
d9d444cb
JB
6603 int num_connectors = 0;
6604 bool is_lvds = false;
6605
6c2b7c12 6606 for_each_encoder_on_crtc(dev, crtc, encoder) {
d9d444cb
JB
6607 switch (encoder->type) {
6608 case INTEL_OUTPUT_LVDS:
6609 is_lvds = true;
6610 break;
d9d444cb
JB
6611 }
6612 num_connectors++;
6613 }
6614
6615 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b 6616 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
41aa3448 6617 dev_priv->vbt.lvds_ssc_freq);
e91e941b 6618 return dev_priv->vbt.lvds_ssc_freq;
d9d444cb
JB
6619 }
6620
6621 return 120000;
6622}
6623
6ff93609 6624static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 6625{
c8203565 6626 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
79e53945
JB
6627 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6628 int pipe = intel_crtc->pipe;
c8203565
PZ
6629 uint32_t val;
6630
78114071 6631 val = 0;
c8203565 6632
965e0c48 6633 switch (intel_crtc->config.pipe_bpp) {
c8203565 6634 case 18:
dfd07d72 6635 val |= PIPECONF_6BPC;
c8203565
PZ
6636 break;
6637 case 24:
dfd07d72 6638 val |= PIPECONF_8BPC;
c8203565
PZ
6639 break;
6640 case 30:
dfd07d72 6641 val |= PIPECONF_10BPC;
c8203565
PZ
6642 break;
6643 case 36:
dfd07d72 6644 val |= PIPECONF_12BPC;
c8203565
PZ
6645 break;
6646 default:
cc769b62
PZ
6647 /* Case prevented by intel_choose_pipe_bpp_dither. */
6648 BUG();
c8203565
PZ
6649 }
6650
d8b32247 6651 if (intel_crtc->config.dither)
c8203565
PZ
6652 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6653
6ff93609 6654 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
6655 val |= PIPECONF_INTERLACED_ILK;
6656 else
6657 val |= PIPECONF_PROGRESSIVE;
6658
50f3b016 6659 if (intel_crtc->config.limited_color_range)
3685a8f3 6660 val |= PIPECONF_COLOR_RANGE_SELECT;
3685a8f3 6661
c8203565
PZ
6662 I915_WRITE(PIPECONF(pipe), val);
6663 POSTING_READ(PIPECONF(pipe));
6664}
6665
86d3efce
VS
6666/*
6667 * Set up the pipe CSC unit.
6668 *
6669 * Currently only full range RGB to limited range RGB conversion
6670 * is supported, but eventually this should handle various
6671 * RGB<->YCbCr scenarios as well.
6672 */
50f3b016 6673static void intel_set_pipe_csc(struct drm_crtc *crtc)
86d3efce
VS
6674{
6675 struct drm_device *dev = crtc->dev;
6676 struct drm_i915_private *dev_priv = dev->dev_private;
6677 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6678 int pipe = intel_crtc->pipe;
6679 uint16_t coeff = 0x7800; /* 1.0 */
6680
6681 /*
6682 * TODO: Check what kind of values actually come out of the pipe
6683 * with these coeff/postoff values and adjust to get the best
6684 * accuracy. Perhaps we even need to take the bpc value into
6685 * consideration.
6686 */
6687
50f3b016 6688 if (intel_crtc->config.limited_color_range)
86d3efce
VS
6689 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
6690
6691 /*
6692 * GY/GU and RY/RU should be the other way around according
6693 * to BSpec, but reality doesn't agree. Just set them up in
6694 * a way that results in the correct picture.
6695 */
6696 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
6697 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
6698
6699 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
6700 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
6701
6702 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
6703 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
6704
6705 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
6706 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
6707 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
6708
6709 if (INTEL_INFO(dev)->gen > 6) {
6710 uint16_t postoff = 0;
6711
50f3b016 6712 if (intel_crtc->config.limited_color_range)
32cf0cb0 6713 postoff = (16 * (1 << 12) / 255) & 0x1fff;
86d3efce
VS
6714
6715 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
6716 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
6717 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
6718
6719 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
6720 } else {
6721 uint32_t mode = CSC_MODE_YUV_TO_RGB;
6722
50f3b016 6723 if (intel_crtc->config.limited_color_range)
86d3efce
VS
6724 mode |= CSC_BLACK_SCREEN_OFFSET;
6725
6726 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
6727 }
6728}
6729
6ff93609 6730static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38 6731{
756f85cf
PZ
6732 struct drm_device *dev = crtc->dev;
6733 struct drm_i915_private *dev_priv = dev->dev_private;
ee2b0b38 6734 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
756f85cf 6735 enum pipe pipe = intel_crtc->pipe;
3b117c8f 6736 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
ee2b0b38
PZ
6737 uint32_t val;
6738
3eff4faa 6739 val = 0;
ee2b0b38 6740
756f85cf 6741 if (IS_HASWELL(dev) && intel_crtc->config.dither)
ee2b0b38
PZ
6742 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6743
6ff93609 6744 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
6745 val |= PIPECONF_INTERLACED_ILK;
6746 else
6747 val |= PIPECONF_PROGRESSIVE;
6748
702e7a56
PZ
6749 I915_WRITE(PIPECONF(cpu_transcoder), val);
6750 POSTING_READ(PIPECONF(cpu_transcoder));
3eff4faa
DV
6751
6752 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
6753 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
756f85cf
PZ
6754
6755 if (IS_BROADWELL(dev)) {
6756 val = 0;
6757
6758 switch (intel_crtc->config.pipe_bpp) {
6759 case 18:
6760 val |= PIPEMISC_DITHER_6_BPC;
6761 break;
6762 case 24:
6763 val |= PIPEMISC_DITHER_8_BPC;
6764 break;
6765 case 30:
6766 val |= PIPEMISC_DITHER_10_BPC;
6767 break;
6768 case 36:
6769 val |= PIPEMISC_DITHER_12_BPC;
6770 break;
6771 default:
6772 /* Case prevented by pipe_config_set_bpp. */
6773 BUG();
6774 }
6775
6776 if (intel_crtc->config.dither)
6777 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
6778
6779 I915_WRITE(PIPEMISC(pipe), val);
6780 }
ee2b0b38
PZ
6781}
6782
6591c6e4 6783static bool ironlake_compute_clocks(struct drm_crtc *crtc,
6591c6e4
PZ
6784 intel_clock_t *clock,
6785 bool *has_reduced_clock,
6786 intel_clock_t *reduced_clock)
6787{
6788 struct drm_device *dev = crtc->dev;
6789 struct drm_i915_private *dev_priv = dev->dev_private;
6790 struct intel_encoder *intel_encoder;
6791 int refclk;
d4906093 6792 const intel_limit_t *limit;
a16af721 6793 bool ret, is_lvds = false;
79e53945 6794
6591c6e4
PZ
6795 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6796 switch (intel_encoder->type) {
79e53945
JB
6797 case INTEL_OUTPUT_LVDS:
6798 is_lvds = true;
6799 break;
79e53945
JB
6800 }
6801 }
6802
d9d444cb 6803 refclk = ironlake_get_refclk(crtc);
79e53945 6804
d4906093
ML
6805 /*
6806 * Returns a set of divisors for the desired target clock with the given
6807 * refclk, or FALSE. The returned values represent the clock equation:
6808 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
6809 */
1b894b59 6810 limit = intel_limit(crtc, refclk);
ff9a6750
DV
6811 ret = dev_priv->display.find_dpll(limit, crtc,
6812 to_intel_crtc(crtc)->config.port_clock,
ee9300bb 6813 refclk, NULL, clock);
6591c6e4
PZ
6814 if (!ret)
6815 return false;
cda4b7d3 6816
ddc9003c 6817 if (is_lvds && dev_priv->lvds_downclock_avail) {
cec2f356
SP
6818 /*
6819 * Ensure we match the reduced clock's P to the target clock.
6820 * If the clocks don't match, we can't switch the display clock
6821 * by using the FP0/FP1. In such case we will disable the LVDS
6822 * downclock feature.
6823 */
ee9300bb
DV
6824 *has_reduced_clock =
6825 dev_priv->display.find_dpll(limit, crtc,
6826 dev_priv->lvds_downclock,
6827 refclk, clock,
6828 reduced_clock);
652c393a 6829 }
61e9653f 6830
6591c6e4
PZ
6831 return true;
6832}
6833
d4b1931c
PZ
6834int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
6835{
6836 /*
6837 * Account for spread spectrum to avoid
6838 * oversubscribing the link. Max center spread
6839 * is 2.5%; use 5% for safety's sake.
6840 */
6841 u32 bps = target_clock * bpp * 21 / 20;
619d4d04 6842 return DIV_ROUND_UP(bps, link_bw * 8);
d4b1931c
PZ
6843}
6844
7429e9d4 6845static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
6cf86a5e 6846{
7429e9d4 6847 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
f48d8f23
PZ
6848}
6849
de13a2e3 6850static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
7429e9d4 6851 u32 *fp,
9a7c7890 6852 intel_clock_t *reduced_clock, u32 *fp2)
79e53945 6853{
de13a2e3 6854 struct drm_crtc *crtc = &intel_crtc->base;
79e53945
JB
6855 struct drm_device *dev = crtc->dev;
6856 struct drm_i915_private *dev_priv = dev->dev_private;
de13a2e3
PZ
6857 struct intel_encoder *intel_encoder;
6858 uint32_t dpll;
6cc5f341 6859 int factor, num_connectors = 0;
09ede541 6860 bool is_lvds = false, is_sdvo = false;
79e53945 6861
de13a2e3
PZ
6862 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6863 switch (intel_encoder->type) {
79e53945
JB
6864 case INTEL_OUTPUT_LVDS:
6865 is_lvds = true;
6866 break;
6867 case INTEL_OUTPUT_SDVO:
7d57382e 6868 case INTEL_OUTPUT_HDMI:
79e53945 6869 is_sdvo = true;
79e53945 6870 break;
79e53945 6871 }
43565a06 6872
c751ce4f 6873 num_connectors++;
79e53945 6874 }
79e53945 6875
c1858123 6876 /* Enable autotuning of the PLL clock (if permissible) */
8febb297
EA
6877 factor = 21;
6878 if (is_lvds) {
6879 if ((intel_panel_use_ssc(dev_priv) &&
e91e941b 6880 dev_priv->vbt.lvds_ssc_freq == 100000) ||
f0b44056 6881 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
8febb297 6882 factor = 25;
09ede541 6883 } else if (intel_crtc->config.sdvo_tv_clock)
8febb297 6884 factor = 20;
c1858123 6885
7429e9d4 6886 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
7d0ac5b7 6887 *fp |= FP_CB_TUNE;
2c07245f 6888
9a7c7890
DV
6889 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
6890 *fp2 |= FP_CB_TUNE;
6891
5eddb70b 6892 dpll = 0;
2c07245f 6893
a07d6787
EA
6894 if (is_lvds)
6895 dpll |= DPLLB_MODE_LVDS;
6896 else
6897 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 6898
ef1b460d
DV
6899 dpll |= (intel_crtc->config.pixel_multiplier - 1)
6900 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f
DV
6901
6902 if (is_sdvo)
4a33e48d 6903 dpll |= DPLL_SDVO_HIGH_SPEED;
9566e9af 6904 if (intel_crtc->config.has_dp_encoder)
4a33e48d 6905 dpll |= DPLL_SDVO_HIGH_SPEED;
79e53945 6906
a07d6787 6907 /* compute bitmask from p1 value */
7429e9d4 6908 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 6909 /* also FPA1 */
7429e9d4 6910 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 6911
7429e9d4 6912 switch (intel_crtc->config.dpll.p2) {
a07d6787
EA
6913 case 5:
6914 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6915 break;
6916 case 7:
6917 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6918 break;
6919 case 10:
6920 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6921 break;
6922 case 14:
6923 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6924 break;
79e53945
JB
6925 }
6926
b4c09f3b 6927 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
43565a06 6928 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
6929 else
6930 dpll |= PLL_REF_INPUT_DREFCLK;
6931
959e16d6 6932 return dpll | DPLL_VCO_ENABLE;
de13a2e3
PZ
6933}
6934
6935static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
de13a2e3
PZ
6936 int x, int y,
6937 struct drm_framebuffer *fb)
6938{
6939 struct drm_device *dev = crtc->dev;
de13a2e3 6940 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
de13a2e3
PZ
6941 int num_connectors = 0;
6942 intel_clock_t clock, reduced_clock;
cbbab5bd 6943 u32 dpll = 0, fp = 0, fp2 = 0;
e2f12b07 6944 bool ok, has_reduced_clock = false;
8b47047b 6945 bool is_lvds = false;
de13a2e3 6946 struct intel_encoder *encoder;
e2b78267 6947 struct intel_shared_dpll *pll;
de13a2e3
PZ
6948
6949 for_each_encoder_on_crtc(dev, crtc, encoder) {
6950 switch (encoder->type) {
6951 case INTEL_OUTPUT_LVDS:
6952 is_lvds = true;
6953 break;
de13a2e3
PZ
6954 }
6955
6956 num_connectors++;
a07d6787 6957 }
79e53945 6958
5dc5298b
PZ
6959 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
6960 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
a07d6787 6961
ff9a6750 6962 ok = ironlake_compute_clocks(crtc, &clock,
de13a2e3 6963 &has_reduced_clock, &reduced_clock);
ee9300bb 6964 if (!ok && !intel_crtc->config.clock_set) {
de13a2e3
PZ
6965 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6966 return -EINVAL;
79e53945 6967 }
f47709a9
DV
6968 /* Compat-code for transition, will disappear. */
6969 if (!intel_crtc->config.clock_set) {
6970 intel_crtc->config.dpll.n = clock.n;
6971 intel_crtc->config.dpll.m1 = clock.m1;
6972 intel_crtc->config.dpll.m2 = clock.m2;
6973 intel_crtc->config.dpll.p1 = clock.p1;
6974 intel_crtc->config.dpll.p2 = clock.p2;
6975 }
79e53945 6976
5dc5298b 6977 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
8b47047b 6978 if (intel_crtc->config.has_pch_encoder) {
7429e9d4 6979 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
cbbab5bd 6980 if (has_reduced_clock)
7429e9d4 6981 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
cbbab5bd 6982
7429e9d4 6983 dpll = ironlake_compute_dpll(intel_crtc,
cbbab5bd
DV
6984 &fp, &reduced_clock,
6985 has_reduced_clock ? &fp2 : NULL);
6986
959e16d6 6987 intel_crtc->config.dpll_hw_state.dpll = dpll;
66e985c0
DV
6988 intel_crtc->config.dpll_hw_state.fp0 = fp;
6989 if (has_reduced_clock)
6990 intel_crtc->config.dpll_hw_state.fp1 = fp2;
6991 else
6992 intel_crtc->config.dpll_hw_state.fp1 = fp;
6993
b89a1d39 6994 pll = intel_get_shared_dpll(intel_crtc);
ee7b9f93 6995 if (pll == NULL) {
84f44ce7 6996 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
29407aab 6997 pipe_name(intel_crtc->pipe));
4b645f14
JB
6998 return -EINVAL;
6999 }
ee7b9f93 7000 } else
e72f9fbf 7001 intel_put_shared_dpll(intel_crtc);
79e53945 7002
d330a953 7003 if (is_lvds && has_reduced_clock && i915.powersave)
bcd644e0
DV
7004 intel_crtc->lowfreq_avail = true;
7005 else
7006 intel_crtc->lowfreq_avail = false;
e2b78267 7007
c8f7a0db 7008 return 0;
79e53945
JB
7009}
7010
eb14cb74
VS
7011static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7012 struct intel_link_m_n *m_n)
7013{
7014 struct drm_device *dev = crtc->base.dev;
7015 struct drm_i915_private *dev_priv = dev->dev_private;
7016 enum pipe pipe = crtc->pipe;
7017
7018 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7019 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7020 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7021 & ~TU_SIZE_MASK;
7022 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7023 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7024 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7025}
7026
7027static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7028 enum transcoder transcoder,
7029 struct intel_link_m_n *m_n)
72419203
DV
7030{
7031 struct drm_device *dev = crtc->base.dev;
7032 struct drm_i915_private *dev_priv = dev->dev_private;
eb14cb74 7033 enum pipe pipe = crtc->pipe;
72419203 7034
eb14cb74
VS
7035 if (INTEL_INFO(dev)->gen >= 5) {
7036 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7037 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7038 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7039 & ~TU_SIZE_MASK;
7040 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7041 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7042 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7043 } else {
7044 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7045 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7046 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7047 & ~TU_SIZE_MASK;
7048 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7049 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7050 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7051 }
7052}
7053
7054void intel_dp_get_m_n(struct intel_crtc *crtc,
7055 struct intel_crtc_config *pipe_config)
7056{
7057 if (crtc->config.has_pch_encoder)
7058 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7059 else
7060 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7061 &pipe_config->dp_m_n);
7062}
72419203 7063
eb14cb74
VS
7064static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
7065 struct intel_crtc_config *pipe_config)
7066{
7067 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7068 &pipe_config->fdi_m_n);
72419203
DV
7069}
7070
2fa2fe9a
DV
7071static void ironlake_get_pfit_config(struct intel_crtc *crtc,
7072 struct intel_crtc_config *pipe_config)
7073{
7074 struct drm_device *dev = crtc->base.dev;
7075 struct drm_i915_private *dev_priv = dev->dev_private;
7076 uint32_t tmp;
7077
7078 tmp = I915_READ(PF_CTL(crtc->pipe));
7079
7080 if (tmp & PF_ENABLE) {
fd4daa9c 7081 pipe_config->pch_pfit.enabled = true;
2fa2fe9a
DV
7082 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7083 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
7084
7085 /* We currently do not free assignements of panel fitters on
7086 * ivb/hsw (since we don't use the higher upscaling modes which
7087 * differentiates them) so just WARN about this case for now. */
7088 if (IS_GEN7(dev)) {
7089 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7090 PF_PIPE_SEL_IVB(crtc->pipe));
7091 }
2fa2fe9a 7092 }
79e53945
JB
7093}
7094
4c6baa59
JB
7095static void ironlake_get_plane_config(struct intel_crtc *crtc,
7096 struct intel_plane_config *plane_config)
7097{
7098 struct drm_device *dev = crtc->base.dev;
7099 struct drm_i915_private *dev_priv = dev->dev_private;
7100 u32 val, base, offset;
7101 int pipe = crtc->pipe, plane = crtc->plane;
7102 int fourcc, pixel_format;
7103 int aligned_height;
7104
66e514c1
DA
7105 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
7106 if (!crtc->base.primary->fb) {
4c6baa59
JB
7107 DRM_DEBUG_KMS("failed to alloc fb\n");
7108 return;
7109 }
7110
7111 val = I915_READ(DSPCNTR(plane));
7112
7113 if (INTEL_INFO(dev)->gen >= 4)
7114 if (val & DISPPLANE_TILED)
7115 plane_config->tiled = true;
7116
7117 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
7118 fourcc = intel_format_to_fourcc(pixel_format);
66e514c1
DA
7119 crtc->base.primary->fb->pixel_format = fourcc;
7120 crtc->base.primary->fb->bits_per_pixel =
4c6baa59
JB
7121 drm_format_plane_cpp(fourcc, 0) * 8;
7122
7123 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7124 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
7125 offset = I915_READ(DSPOFFSET(plane));
7126 } else {
7127 if (plane_config->tiled)
7128 offset = I915_READ(DSPTILEOFF(plane));
7129 else
7130 offset = I915_READ(DSPLINOFF(plane));
7131 }
7132 plane_config->base = base;
7133
7134 val = I915_READ(PIPESRC(pipe));
66e514c1
DA
7135 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
7136 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
4c6baa59
JB
7137
7138 val = I915_READ(DSPSTRIDE(pipe));
66e514c1 7139 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
4c6baa59 7140
66e514c1 7141 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
4c6baa59
JB
7142 plane_config->tiled);
7143
66e514c1 7144 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
4c6baa59
JB
7145 aligned_height, PAGE_SIZE);
7146
7147 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
66e514c1
DA
7148 pipe, plane, crtc->base.primary->fb->width,
7149 crtc->base.primary->fb->height,
7150 crtc->base.primary->fb->bits_per_pixel, base,
7151 crtc->base.primary->fb->pitches[0],
4c6baa59
JB
7152 plane_config->size);
7153}
7154
0e8ffe1b
DV
7155static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
7156 struct intel_crtc_config *pipe_config)
7157{
7158 struct drm_device *dev = crtc->base.dev;
7159 struct drm_i915_private *dev_priv = dev->dev_private;
7160 uint32_t tmp;
7161
e143a21c 7162 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 7163 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 7164
0e8ffe1b
DV
7165 tmp = I915_READ(PIPECONF(crtc->pipe));
7166 if (!(tmp & PIPECONF_ENABLE))
7167 return false;
7168
42571aef
VS
7169 switch (tmp & PIPECONF_BPC_MASK) {
7170 case PIPECONF_6BPC:
7171 pipe_config->pipe_bpp = 18;
7172 break;
7173 case PIPECONF_8BPC:
7174 pipe_config->pipe_bpp = 24;
7175 break;
7176 case PIPECONF_10BPC:
7177 pipe_config->pipe_bpp = 30;
7178 break;
7179 case PIPECONF_12BPC:
7180 pipe_config->pipe_bpp = 36;
7181 break;
7182 default:
7183 break;
7184 }
7185
b5a9fa09
DV
7186 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7187 pipe_config->limited_color_range = true;
7188
ab9412ba 7189 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
66e985c0
DV
7190 struct intel_shared_dpll *pll;
7191
88adfff1
DV
7192 pipe_config->has_pch_encoder = true;
7193
627eb5a3
DV
7194 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7195 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7196 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
7197
7198 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241 7199
c0d43d62 7200 if (HAS_PCH_IBX(dev_priv->dev)) {
d94ab068
DV
7201 pipe_config->shared_dpll =
7202 (enum intel_dpll_id) crtc->pipe;
c0d43d62
DV
7203 } else {
7204 tmp = I915_READ(PCH_DPLL_SEL);
7205 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7206 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7207 else
7208 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7209 }
66e985c0
DV
7210
7211 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7212
7213 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7214 &pipe_config->dpll_hw_state));
c93f54cf
DV
7215
7216 tmp = pipe_config->dpll_hw_state.dpll;
7217 pipe_config->pixel_multiplier =
7218 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7219 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
18442d08
VS
7220
7221 ironlake_pch_clock_get(crtc, pipe_config);
6c49f241
DV
7222 } else {
7223 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
7224 }
7225
1bd1bd80
DV
7226 intel_get_pipe_timings(crtc, pipe_config);
7227
2fa2fe9a
DV
7228 ironlake_get_pfit_config(crtc, pipe_config);
7229
0e8ffe1b
DV
7230 return true;
7231}
7232
be256dc7
PZ
7233static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7234{
7235 struct drm_device *dev = dev_priv->dev;
7236 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
7237 struct intel_crtc *crtc;
be256dc7 7238
d3fcc808 7239 for_each_intel_crtc(dev, crtc)
798183c5 7240 WARN(crtc->active, "CRTC for pipe %c enabled\n",
be256dc7
PZ
7241 pipe_name(crtc->pipe));
7242
7243 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7244 WARN(plls->spll_refcount, "SPLL enabled\n");
7245 WARN(plls->wrpll1_refcount, "WRPLL1 enabled\n");
7246 WARN(plls->wrpll2_refcount, "WRPLL2 enabled\n");
7247 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7248 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
7249 "CPU PWM1 enabled\n");
7250 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
7251 "CPU PWM2 enabled\n");
7252 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
7253 "PCH PWM1 enabled\n");
7254 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
7255 "Utility pin enabled\n");
7256 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
7257
9926ada1
PZ
7258 /*
7259 * In theory we can still leave IRQs enabled, as long as only the HPD
7260 * interrupts remain enabled. We used to check for that, but since it's
7261 * gen-specific and since we only disable LCPLL after we fully disable
7262 * the interrupts, the check below should be enough.
7263 */
7264 WARN(!dev_priv->pm.irqs_disabled, "IRQs enabled\n");
be256dc7
PZ
7265}
7266
3c4c9b81
PZ
7267static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7268{
7269 struct drm_device *dev = dev_priv->dev;
7270
7271 if (IS_HASWELL(dev)) {
7272 mutex_lock(&dev_priv->rps.hw_lock);
7273 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7274 val))
7275 DRM_ERROR("Failed to disable D_COMP\n");
7276 mutex_unlock(&dev_priv->rps.hw_lock);
7277 } else {
7278 I915_WRITE(D_COMP, val);
7279 }
7280 POSTING_READ(D_COMP);
be256dc7
PZ
7281}
7282
7283/*
7284 * This function implements pieces of two sequences from BSpec:
7285 * - Sequence for display software to disable LCPLL
7286 * - Sequence for display software to allow package C8+
7287 * The steps implemented here are just the steps that actually touch the LCPLL
7288 * register. Callers should take care of disabling all the display engine
7289 * functions, doing the mode unset, fixing interrupts, etc.
7290 */
6ff58d53
PZ
7291static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7292 bool switch_to_fclk, bool allow_power_down)
be256dc7
PZ
7293{
7294 uint32_t val;
7295
7296 assert_can_disable_lcpll(dev_priv);
7297
7298 val = I915_READ(LCPLL_CTL);
7299
7300 if (switch_to_fclk) {
7301 val |= LCPLL_CD_SOURCE_FCLK;
7302 I915_WRITE(LCPLL_CTL, val);
7303
7304 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7305 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7306 DRM_ERROR("Switching to FCLK failed\n");
7307
7308 val = I915_READ(LCPLL_CTL);
7309 }
7310
7311 val |= LCPLL_PLL_DISABLE;
7312 I915_WRITE(LCPLL_CTL, val);
7313 POSTING_READ(LCPLL_CTL);
7314
7315 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7316 DRM_ERROR("LCPLL still locked\n");
7317
7318 val = I915_READ(D_COMP);
7319 val |= D_COMP_COMP_DISABLE;
3c4c9b81 7320 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
7321 ndelay(100);
7322
7323 if (wait_for((I915_READ(D_COMP) & D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
7324 DRM_ERROR("D_COMP RCOMP still in progress\n");
7325
7326 if (allow_power_down) {
7327 val = I915_READ(LCPLL_CTL);
7328 val |= LCPLL_POWER_DOWN_ALLOW;
7329 I915_WRITE(LCPLL_CTL, val);
7330 POSTING_READ(LCPLL_CTL);
7331 }
7332}
7333
7334/*
7335 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7336 * source.
7337 */
6ff58d53 7338static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
be256dc7
PZ
7339{
7340 uint32_t val;
a8a8bd54 7341 unsigned long irqflags;
be256dc7
PZ
7342
7343 val = I915_READ(LCPLL_CTL);
7344
7345 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7346 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7347 return;
7348
a8a8bd54
PZ
7349 /*
7350 * Make sure we're not on PC8 state before disabling PC8, otherwise
7351 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
7352 *
7353 * The other problem is that hsw_restore_lcpll() is called as part of
7354 * the runtime PM resume sequence, so we can't just call
7355 * gen6_gt_force_wake_get() because that function calls
7356 * intel_runtime_pm_get(), and we can't change the runtime PM refcount
7357 * while we are on the resume sequence. So to solve this problem we have
7358 * to call special forcewake code that doesn't touch runtime PM and
7359 * doesn't enable the forcewake delayed work.
7360 */
7361 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7362 if (dev_priv->uncore.forcewake_count++ == 0)
7363 dev_priv->uncore.funcs.force_wake_get(dev_priv, FORCEWAKE_ALL);
7364 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
215733fa 7365
be256dc7
PZ
7366 if (val & LCPLL_POWER_DOWN_ALLOW) {
7367 val &= ~LCPLL_POWER_DOWN_ALLOW;
7368 I915_WRITE(LCPLL_CTL, val);
35d8f2eb 7369 POSTING_READ(LCPLL_CTL);
be256dc7
PZ
7370 }
7371
7372 val = I915_READ(D_COMP);
7373 val |= D_COMP_COMP_FORCE;
7374 val &= ~D_COMP_COMP_DISABLE;
3c4c9b81 7375 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
7376
7377 val = I915_READ(LCPLL_CTL);
7378 val &= ~LCPLL_PLL_DISABLE;
7379 I915_WRITE(LCPLL_CTL, val);
7380
7381 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7382 DRM_ERROR("LCPLL not locked yet\n");
7383
7384 if (val & LCPLL_CD_SOURCE_FCLK) {
7385 val = I915_READ(LCPLL_CTL);
7386 val &= ~LCPLL_CD_SOURCE_FCLK;
7387 I915_WRITE(LCPLL_CTL, val);
7388
7389 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
7390 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
7391 DRM_ERROR("Switching back to LCPLL failed\n");
7392 }
215733fa 7393
a8a8bd54
PZ
7394 /* See the big comment above. */
7395 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7396 if (--dev_priv->uncore.forcewake_count == 0)
7397 dev_priv->uncore.funcs.force_wake_put(dev_priv, FORCEWAKE_ALL);
7398 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
be256dc7
PZ
7399}
7400
765dab67
PZ
7401/*
7402 * Package states C8 and deeper are really deep PC states that can only be
7403 * reached when all the devices on the system allow it, so even if the graphics
7404 * device allows PC8+, it doesn't mean the system will actually get to these
7405 * states. Our driver only allows PC8+ when going into runtime PM.
7406 *
7407 * The requirements for PC8+ are that all the outputs are disabled, the power
7408 * well is disabled and most interrupts are disabled, and these are also
7409 * requirements for runtime PM. When these conditions are met, we manually do
7410 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
7411 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
7412 * hang the machine.
7413 *
7414 * When we really reach PC8 or deeper states (not just when we allow it) we lose
7415 * the state of some registers, so when we come back from PC8+ we need to
7416 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
7417 * need to take care of the registers kept by RC6. Notice that this happens even
7418 * if we don't put the device in PCI D3 state (which is what currently happens
7419 * because of the runtime PM support).
7420 *
7421 * For more, read "Display Sequences for Package C8" on the hardware
7422 * documentation.
7423 */
a14cb6fc 7424void hsw_enable_pc8(struct drm_i915_private *dev_priv)
c67a470b 7425{
c67a470b
PZ
7426 struct drm_device *dev = dev_priv->dev;
7427 uint32_t val;
7428
c67a470b
PZ
7429 DRM_DEBUG_KMS("Enabling package C8+\n");
7430
c67a470b
PZ
7431 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7432 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7433 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7434 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7435 }
7436
7437 lpt_disable_clkout_dp(dev);
c67a470b
PZ
7438 hsw_disable_lcpll(dev_priv, true, true);
7439}
7440
a14cb6fc 7441void hsw_disable_pc8(struct drm_i915_private *dev_priv)
c67a470b
PZ
7442{
7443 struct drm_device *dev = dev_priv->dev;
7444 uint32_t val;
7445
c67a470b
PZ
7446 DRM_DEBUG_KMS("Disabling package C8+\n");
7447
7448 hsw_restore_lcpll(dev_priv);
c67a470b
PZ
7449 lpt_init_pch_refclk(dev);
7450
7451 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7452 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7453 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
7454 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7455 }
7456
7457 intel_prepare_ddi(dev);
c67a470b
PZ
7458}
7459
9a952a0d
PZ
7460static void snb_modeset_global_resources(struct drm_device *dev)
7461{
7462 modeset_update_crtc_power_domains(dev);
7463}
7464
4f074129
ID
7465static void haswell_modeset_global_resources(struct drm_device *dev)
7466{
da723569 7467 modeset_update_crtc_power_domains(dev);
d6dd9eb1
DV
7468}
7469
09b4ddf9 7470static int haswell_crtc_mode_set(struct drm_crtc *crtc,
09b4ddf9
PZ
7471 int x, int y,
7472 struct drm_framebuffer *fb)
7473{
09b4ddf9 7474 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
09b4ddf9 7475
566b734a 7476 if (!intel_ddi_pll_select(intel_crtc))
6441ab5f 7477 return -EINVAL;
566b734a 7478 intel_ddi_pll_enable(intel_crtc);
6441ab5f 7479
644cef34
DV
7480 intel_crtc->lowfreq_avail = false;
7481
c8f7a0db 7482 return 0;
79e53945
JB
7483}
7484
0e8ffe1b
DV
7485static bool haswell_get_pipe_config(struct intel_crtc *crtc,
7486 struct intel_crtc_config *pipe_config)
7487{
7488 struct drm_device *dev = crtc->base.dev;
7489 struct drm_i915_private *dev_priv = dev->dev_private;
2fa2fe9a 7490 enum intel_display_power_domain pfit_domain;
0e8ffe1b
DV
7491 uint32_t tmp;
7492
b5482bd0
ID
7493 if (!intel_display_power_enabled(dev_priv,
7494 POWER_DOMAIN_PIPE(crtc->pipe)))
7495 return false;
7496
e143a21c 7497 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62
DV
7498 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
7499
eccb140b
DV
7500 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
7501 if (tmp & TRANS_DDI_FUNC_ENABLE) {
7502 enum pipe trans_edp_pipe;
7503 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
7504 default:
7505 WARN(1, "unknown pipe linked to edp transcoder\n");
7506 case TRANS_DDI_EDP_INPUT_A_ONOFF:
7507 case TRANS_DDI_EDP_INPUT_A_ON:
7508 trans_edp_pipe = PIPE_A;
7509 break;
7510 case TRANS_DDI_EDP_INPUT_B_ONOFF:
7511 trans_edp_pipe = PIPE_B;
7512 break;
7513 case TRANS_DDI_EDP_INPUT_C_ONOFF:
7514 trans_edp_pipe = PIPE_C;
7515 break;
7516 }
7517
7518 if (trans_edp_pipe == crtc->pipe)
7519 pipe_config->cpu_transcoder = TRANSCODER_EDP;
7520 }
7521
da7e29bd 7522 if (!intel_display_power_enabled(dev_priv,
eccb140b 7523 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
2bfce950
PZ
7524 return false;
7525
eccb140b 7526 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
0e8ffe1b
DV
7527 if (!(tmp & PIPECONF_ENABLE))
7528 return false;
7529
88adfff1 7530 /*
f196e6be 7531 * Haswell has only FDI/PCH transcoder A. It is which is connected to
88adfff1
DV
7532 * DDI E. So just check whether this pipe is wired to DDI E and whether
7533 * the PCH transcoder is on.
7534 */
eccb140b 7535 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
88adfff1 7536 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
ab9412ba 7537 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
88adfff1
DV
7538 pipe_config->has_pch_encoder = true;
7539
627eb5a3
DV
7540 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
7541 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7542 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
7543
7544 ironlake_get_fdi_m_n_config(crtc, pipe_config);
627eb5a3
DV
7545 }
7546
1bd1bd80
DV
7547 intel_get_pipe_timings(crtc, pipe_config);
7548
2fa2fe9a 7549 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
da7e29bd 7550 if (intel_display_power_enabled(dev_priv, pfit_domain))
2fa2fe9a 7551 ironlake_get_pfit_config(crtc, pipe_config);
88adfff1 7552
e59150dc
JB
7553 if (IS_HASWELL(dev))
7554 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
7555 (I915_READ(IPS_CTL) & IPS_ENABLE);
42db64ef 7556
6c49f241
DV
7557 pipe_config->pixel_multiplier = 1;
7558
0e8ffe1b
DV
7559 return true;
7560}
7561
1a91510d
JN
7562static struct {
7563 int clock;
7564 u32 config;
7565} hdmi_audio_clock[] = {
7566 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
7567 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
7568 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
7569 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
7570 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
7571 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
7572 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
7573 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
7574 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
7575 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
7576};
7577
7578/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
7579static u32 audio_config_hdmi_pixel_clock(struct drm_display_mode *mode)
7580{
7581 int i;
7582
7583 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
7584 if (mode->clock == hdmi_audio_clock[i].clock)
7585 break;
7586 }
7587
7588 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
7589 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n", mode->clock);
7590 i = 1;
7591 }
7592
7593 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
7594 hdmi_audio_clock[i].clock,
7595 hdmi_audio_clock[i].config);
7596
7597 return hdmi_audio_clock[i].config;
7598}
7599
3a9627f4
WF
7600static bool intel_eld_uptodate(struct drm_connector *connector,
7601 int reg_eldv, uint32_t bits_eldv,
7602 int reg_elda, uint32_t bits_elda,
7603 int reg_edid)
7604{
7605 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7606 uint8_t *eld = connector->eld;
7607 uint32_t i;
7608
7609 i = I915_READ(reg_eldv);
7610 i &= bits_eldv;
7611
7612 if (!eld[0])
7613 return !i;
7614
7615 if (!i)
7616 return false;
7617
7618 i = I915_READ(reg_elda);
7619 i &= ~bits_elda;
7620 I915_WRITE(reg_elda, i);
7621
7622 for (i = 0; i < eld[2]; i++)
7623 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
7624 return false;
7625
7626 return true;
7627}
7628
e0dac65e 7629static void g4x_write_eld(struct drm_connector *connector,
34427052
JN
7630 struct drm_crtc *crtc,
7631 struct drm_display_mode *mode)
e0dac65e
WF
7632{
7633 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7634 uint8_t *eld = connector->eld;
7635 uint32_t eldv;
7636 uint32_t len;
7637 uint32_t i;
7638
7639 i = I915_READ(G4X_AUD_VID_DID);
7640
7641 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
7642 eldv = G4X_ELDV_DEVCL_DEVBLC;
7643 else
7644 eldv = G4X_ELDV_DEVCTG;
7645
3a9627f4
WF
7646 if (intel_eld_uptodate(connector,
7647 G4X_AUD_CNTL_ST, eldv,
7648 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
7649 G4X_HDMIW_HDMIEDID))
7650 return;
7651
e0dac65e
WF
7652 i = I915_READ(G4X_AUD_CNTL_ST);
7653 i &= ~(eldv | G4X_ELD_ADDR);
7654 len = (i >> 9) & 0x1f; /* ELD buffer size */
7655 I915_WRITE(G4X_AUD_CNTL_ST, i);
7656
7657 if (!eld[0])
7658 return;
7659
7660 len = min_t(uint8_t, eld[2], len);
7661 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7662 for (i = 0; i < len; i++)
7663 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
7664
7665 i = I915_READ(G4X_AUD_CNTL_ST);
7666 i |= eldv;
7667 I915_WRITE(G4X_AUD_CNTL_ST, i);
7668}
7669
83358c85 7670static void haswell_write_eld(struct drm_connector *connector,
34427052
JN
7671 struct drm_crtc *crtc,
7672 struct drm_display_mode *mode)
83358c85
WX
7673{
7674 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7675 uint8_t *eld = connector->eld;
83358c85
WX
7676 uint32_t eldv;
7677 uint32_t i;
7678 int len;
7679 int pipe = to_intel_crtc(crtc)->pipe;
7680 int tmp;
7681
7682 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
7683 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
7684 int aud_config = HSW_AUD_CFG(pipe);
7685 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
7686
83358c85
WX
7687 /* Audio output enable */
7688 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
7689 tmp = I915_READ(aud_cntrl_st2);
7690 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
7691 I915_WRITE(aud_cntrl_st2, tmp);
c7905792 7692 POSTING_READ(aud_cntrl_st2);
83358c85 7693
c7905792 7694 assert_pipe_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
83358c85
WX
7695
7696 /* Set ELD valid state */
7697 tmp = I915_READ(aud_cntrl_st2);
7e7cb34f 7698 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
83358c85
WX
7699 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
7700 I915_WRITE(aud_cntrl_st2, tmp);
7701 tmp = I915_READ(aud_cntrl_st2);
7e7cb34f 7702 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
83358c85
WX
7703
7704 /* Enable HDMI mode */
7705 tmp = I915_READ(aud_config);
7e7cb34f 7706 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
83358c85
WX
7707 /* clear N_programing_enable and N_value_index */
7708 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
7709 I915_WRITE(aud_config, tmp);
7710
7711 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
7712
7713 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7714
7715 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7716 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7717 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
7718 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
1a91510d
JN
7719 } else {
7720 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7721 }
83358c85
WX
7722
7723 if (intel_eld_uptodate(connector,
7724 aud_cntrl_st2, eldv,
7725 aud_cntl_st, IBX_ELD_ADDRESS,
7726 hdmiw_hdmiedid))
7727 return;
7728
7729 i = I915_READ(aud_cntrl_st2);
7730 i &= ~eldv;
7731 I915_WRITE(aud_cntrl_st2, i);
7732
7733 if (!eld[0])
7734 return;
7735
7736 i = I915_READ(aud_cntl_st);
7737 i &= ~IBX_ELD_ADDRESS;
7738 I915_WRITE(aud_cntl_st, i);
7739 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
7740 DRM_DEBUG_DRIVER("port num:%d\n", i);
7741
7742 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7743 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7744 for (i = 0; i < len; i++)
7745 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7746
7747 i = I915_READ(aud_cntrl_st2);
7748 i |= eldv;
7749 I915_WRITE(aud_cntrl_st2, i);
7750
7751}
7752
e0dac65e 7753static void ironlake_write_eld(struct drm_connector *connector,
34427052
JN
7754 struct drm_crtc *crtc,
7755 struct drm_display_mode *mode)
e0dac65e
WF
7756{
7757 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7758 uint8_t *eld = connector->eld;
7759 uint32_t eldv;
7760 uint32_t i;
7761 int len;
7762 int hdmiw_hdmiedid;
b6daa025 7763 int aud_config;
e0dac65e
WF
7764 int aud_cntl_st;
7765 int aud_cntrl_st2;
9b138a83 7766 int pipe = to_intel_crtc(crtc)->pipe;
e0dac65e 7767
b3f33cbf 7768 if (HAS_PCH_IBX(connector->dev)) {
9b138a83
WX
7769 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
7770 aud_config = IBX_AUD_CFG(pipe);
7771 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
1202b4c6 7772 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
9ca2fe73
ML
7773 } else if (IS_VALLEYVIEW(connector->dev)) {
7774 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
7775 aud_config = VLV_AUD_CFG(pipe);
7776 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
7777 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
e0dac65e 7778 } else {
9b138a83
WX
7779 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
7780 aud_config = CPT_AUD_CFG(pipe);
7781 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
1202b4c6 7782 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
e0dac65e
WF
7783 }
7784
9b138a83 7785 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
e0dac65e 7786
9ca2fe73
ML
7787 if (IS_VALLEYVIEW(connector->dev)) {
7788 struct intel_encoder *intel_encoder;
7789 struct intel_digital_port *intel_dig_port;
7790
7791 intel_encoder = intel_attached_encoder(connector);
7792 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
7793 i = intel_dig_port->port;
7794 } else {
7795 i = I915_READ(aud_cntl_st);
7796 i = (i >> 29) & DIP_PORT_SEL_MASK;
7797 /* DIP_Port_Select, 0x1 = PortB */
7798 }
7799
e0dac65e
WF
7800 if (!i) {
7801 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
7802 /* operate blindly on all ports */
1202b4c6
WF
7803 eldv = IBX_ELD_VALIDB;
7804 eldv |= IBX_ELD_VALIDB << 4;
7805 eldv |= IBX_ELD_VALIDB << 8;
e0dac65e 7806 } else {
2582a850 7807 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
1202b4c6 7808 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
e0dac65e
WF
7809 }
7810
3a9627f4
WF
7811 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7812 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7813 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
b6daa025 7814 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
1a91510d
JN
7815 } else {
7816 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7817 }
e0dac65e 7818
3a9627f4
WF
7819 if (intel_eld_uptodate(connector,
7820 aud_cntrl_st2, eldv,
7821 aud_cntl_st, IBX_ELD_ADDRESS,
7822 hdmiw_hdmiedid))
7823 return;
7824
e0dac65e
WF
7825 i = I915_READ(aud_cntrl_st2);
7826 i &= ~eldv;
7827 I915_WRITE(aud_cntrl_st2, i);
7828
7829 if (!eld[0])
7830 return;
7831
e0dac65e 7832 i = I915_READ(aud_cntl_st);
1202b4c6 7833 i &= ~IBX_ELD_ADDRESS;
e0dac65e
WF
7834 I915_WRITE(aud_cntl_st, i);
7835
7836 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7837 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7838 for (i = 0; i < len; i++)
7839 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7840
7841 i = I915_READ(aud_cntrl_st2);
7842 i |= eldv;
7843 I915_WRITE(aud_cntrl_st2, i);
7844}
7845
7846void intel_write_eld(struct drm_encoder *encoder,
7847 struct drm_display_mode *mode)
7848{
7849 struct drm_crtc *crtc = encoder->crtc;
7850 struct drm_connector *connector;
7851 struct drm_device *dev = encoder->dev;
7852 struct drm_i915_private *dev_priv = dev->dev_private;
7853
7854 connector = drm_select_eld(encoder, mode);
7855 if (!connector)
7856 return;
7857
7858 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7859 connector->base.id,
c23cc417 7860 connector->name,
e0dac65e 7861 connector->encoder->base.id,
8e329a03 7862 connector->encoder->name);
e0dac65e
WF
7863
7864 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
7865
7866 if (dev_priv->display.write_eld)
34427052 7867 dev_priv->display.write_eld(connector, crtc, mode);
e0dac65e
WF
7868}
7869
560b85bb
CW
7870static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
7871{
7872 struct drm_device *dev = crtc->dev;
7873 struct drm_i915_private *dev_priv = dev->dev_private;
7874 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4b0e333e 7875 uint32_t cntl;
560b85bb 7876
4b0e333e 7877 if (base != intel_crtc->cursor_base) {
560b85bb
CW
7878 /* On these chipsets we can only modify the base whilst
7879 * the cursor is disabled.
7880 */
4b0e333e
CW
7881 if (intel_crtc->cursor_cntl) {
7882 I915_WRITE(_CURACNTR, 0);
7883 POSTING_READ(_CURACNTR);
7884 intel_crtc->cursor_cntl = 0;
7885 }
7886
9db4a9c7 7887 I915_WRITE(_CURABASE, base);
4b0e333e
CW
7888 POSTING_READ(_CURABASE);
7889 }
560b85bb 7890
4b0e333e
CW
7891 /* XXX width must be 64, stride 256 => 0x00 << 28 */
7892 cntl = 0;
7893 if (base)
7894 cntl = (CURSOR_ENABLE |
560b85bb 7895 CURSOR_GAMMA_ENABLE |
4b0e333e
CW
7896 CURSOR_FORMAT_ARGB);
7897 if (intel_crtc->cursor_cntl != cntl) {
7898 I915_WRITE(_CURACNTR, cntl);
7899 POSTING_READ(_CURACNTR);
7900 intel_crtc->cursor_cntl = cntl;
7901 }
560b85bb
CW
7902}
7903
7904static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
7905{
7906 struct drm_device *dev = crtc->dev;
7907 struct drm_i915_private *dev_priv = dev->dev_private;
7908 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7909 int pipe = intel_crtc->pipe;
4b0e333e 7910 uint32_t cntl;
4726e0b0 7911
4b0e333e
CW
7912 cntl = 0;
7913 if (base) {
7914 cntl = MCURSOR_GAMMA_ENABLE;
7915 switch (intel_crtc->cursor_width) {
4726e0b0
SK
7916 case 64:
7917 cntl |= CURSOR_MODE_64_ARGB_AX;
7918 break;
7919 case 128:
7920 cntl |= CURSOR_MODE_128_ARGB_AX;
7921 break;
7922 case 256:
7923 cntl |= CURSOR_MODE_256_ARGB_AX;
7924 break;
7925 default:
7926 WARN_ON(1);
7927 return;
560b85bb 7928 }
4b0e333e
CW
7929 cntl |= pipe << 28; /* Connect to correct pipe */
7930 }
7931 if (intel_crtc->cursor_cntl != cntl) {
9db4a9c7 7932 I915_WRITE(CURCNTR(pipe), cntl);
4b0e333e
CW
7933 POSTING_READ(CURCNTR(pipe));
7934 intel_crtc->cursor_cntl = cntl;
560b85bb 7935 }
4b0e333e 7936
560b85bb 7937 /* and commit changes on next vblank */
9db4a9c7 7938 I915_WRITE(CURBASE(pipe), base);
b2ea8ef5 7939 POSTING_READ(CURBASE(pipe));
560b85bb
CW
7940}
7941
65a21cd6
JB
7942static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
7943{
7944 struct drm_device *dev = crtc->dev;
7945 struct drm_i915_private *dev_priv = dev->dev_private;
7946 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7947 int pipe = intel_crtc->pipe;
4b0e333e
CW
7948 uint32_t cntl;
7949
7950 cntl = 0;
7951 if (base) {
7952 cntl = MCURSOR_GAMMA_ENABLE;
7953 switch (intel_crtc->cursor_width) {
4726e0b0
SK
7954 case 64:
7955 cntl |= CURSOR_MODE_64_ARGB_AX;
7956 break;
7957 case 128:
7958 cntl |= CURSOR_MODE_128_ARGB_AX;
7959 break;
7960 case 256:
7961 cntl |= CURSOR_MODE_256_ARGB_AX;
7962 break;
7963 default:
7964 WARN_ON(1);
7965 return;
65a21cd6 7966 }
4b0e333e
CW
7967 }
7968 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
7969 cntl |= CURSOR_PIPE_CSC_ENABLE;
65a21cd6 7970
4b0e333e
CW
7971 if (intel_crtc->cursor_cntl != cntl) {
7972 I915_WRITE(CURCNTR(pipe), cntl);
7973 POSTING_READ(CURCNTR(pipe));
7974 intel_crtc->cursor_cntl = cntl;
65a21cd6 7975 }
4b0e333e 7976
65a21cd6 7977 /* and commit changes on next vblank */
5efb3e28
VS
7978 I915_WRITE(CURBASE(pipe), base);
7979 POSTING_READ(CURBASE(pipe));
65a21cd6
JB
7980}
7981
cda4b7d3 7982/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f
CW
7983static void intel_crtc_update_cursor(struct drm_crtc *crtc,
7984 bool on)
cda4b7d3
CW
7985{
7986 struct drm_device *dev = crtc->dev;
7987 struct drm_i915_private *dev_priv = dev->dev_private;
7988 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7989 int pipe = intel_crtc->pipe;
7990 int x = intel_crtc->cursor_x;
7991 int y = intel_crtc->cursor_y;
d6e4db15 7992 u32 base = 0, pos = 0;
cda4b7d3 7993
d6e4db15 7994 if (on)
cda4b7d3 7995 base = intel_crtc->cursor_addr;
cda4b7d3 7996
d6e4db15
VS
7997 if (x >= intel_crtc->config.pipe_src_w)
7998 base = 0;
7999
8000 if (y >= intel_crtc->config.pipe_src_h)
cda4b7d3
CW
8001 base = 0;
8002
8003 if (x < 0) {
efc9064e 8004 if (x + intel_crtc->cursor_width <= 0)
cda4b7d3
CW
8005 base = 0;
8006
8007 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8008 x = -x;
8009 }
8010 pos |= x << CURSOR_X_SHIFT;
8011
8012 if (y < 0) {
efc9064e 8013 if (y + intel_crtc->cursor_height <= 0)
cda4b7d3
CW
8014 base = 0;
8015
8016 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8017 y = -y;
8018 }
8019 pos |= y << CURSOR_Y_SHIFT;
8020
4b0e333e 8021 if (base == 0 && intel_crtc->cursor_base == 0)
cda4b7d3
CW
8022 return;
8023
5efb3e28
VS
8024 I915_WRITE(CURPOS(pipe), pos);
8025
8026 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev) || IS_BROADWELL(dev))
65a21cd6 8027 ivb_update_cursor(crtc, base);
5efb3e28
VS
8028 else if (IS_845G(dev) || IS_I865G(dev))
8029 i845_update_cursor(crtc, base);
8030 else
8031 i9xx_update_cursor(crtc, base);
4b0e333e 8032 intel_crtc->cursor_base = base;
cda4b7d3
CW
8033}
8034
79e53945 8035static int intel_crtc_cursor_set(struct drm_crtc *crtc,
05394f39 8036 struct drm_file *file,
79e53945
JB
8037 uint32_t handle,
8038 uint32_t width, uint32_t height)
8039{
8040 struct drm_device *dev = crtc->dev;
8041 struct drm_i915_private *dev_priv = dev->dev_private;
8042 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
05394f39 8043 struct drm_i915_gem_object *obj;
64f962e3 8044 unsigned old_width;
cda4b7d3 8045 uint32_t addr;
3f8bc370 8046 int ret;
79e53945 8047
79e53945
JB
8048 /* if we want to turn off the cursor ignore width and height */
8049 if (!handle) {
28c97730 8050 DRM_DEBUG_KMS("cursor off\n");
3f8bc370 8051 addr = 0;
05394f39 8052 obj = NULL;
5004417d 8053 mutex_lock(&dev->struct_mutex);
3f8bc370 8054 goto finish;
79e53945
JB
8055 }
8056
4726e0b0
SK
8057 /* Check for which cursor types we support */
8058 if (!((width == 64 && height == 64) ||
8059 (width == 128 && height == 128 && !IS_GEN2(dev)) ||
8060 (width == 256 && height == 256 && !IS_GEN2(dev)))) {
8061 DRM_DEBUG("Cursor dimension not supported\n");
79e53945
JB
8062 return -EINVAL;
8063 }
8064
05394f39 8065 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
c8725226 8066 if (&obj->base == NULL)
79e53945
JB
8067 return -ENOENT;
8068
05394f39 8069 if (obj->base.size < width * height * 4) {
3b25b31f 8070 DRM_DEBUG_KMS("buffer is to small\n");
34b8686e
DA
8071 ret = -ENOMEM;
8072 goto fail;
79e53945
JB
8073 }
8074
71acb5eb 8075 /* we only need to pin inside GTT if cursor is non-phy */
7f9872e0 8076 mutex_lock(&dev->struct_mutex);
3d13ef2e 8077 if (!INTEL_INFO(dev)->cursor_needs_physical) {
693db184
CW
8078 unsigned alignment;
8079
d9e86c0e 8080 if (obj->tiling_mode) {
3b25b31f 8081 DRM_DEBUG_KMS("cursor cannot be tiled\n");
d9e86c0e
CW
8082 ret = -EINVAL;
8083 goto fail_locked;
8084 }
8085
693db184
CW
8086 /* Note that the w/a also requires 2 PTE of padding following
8087 * the bo. We currently fill all unused PTE with the shadow
8088 * page and so we should always have valid PTE following the
8089 * cursor preventing the VT-d warning.
8090 */
8091 alignment = 0;
8092 if (need_vtd_wa(dev))
8093 alignment = 64*1024;
8094
8095 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
e7b526bb 8096 if (ret) {
3b25b31f 8097 DRM_DEBUG_KMS("failed to move cursor bo into the GTT\n");
2da3b9b9 8098 goto fail_locked;
e7b526bb
CW
8099 }
8100
d9e86c0e
CW
8101 ret = i915_gem_object_put_fence(obj);
8102 if (ret) {
3b25b31f 8103 DRM_DEBUG_KMS("failed to release fence for cursor");
d9e86c0e
CW
8104 goto fail_unpin;
8105 }
8106
f343c5f6 8107 addr = i915_gem_obj_ggtt_offset(obj);
71acb5eb 8108 } else {
6eeefaf3 8109 int align = IS_I830(dev) ? 16 * 1024 : 256;
00731155 8110 ret = i915_gem_object_attach_phys(obj, align);
71acb5eb 8111 if (ret) {
3b25b31f 8112 DRM_DEBUG_KMS("failed to attach phys object\n");
7f9872e0 8113 goto fail_locked;
71acb5eb 8114 }
00731155 8115 addr = obj->phys_handle->busaddr;
3f8bc370
KH
8116 }
8117
a6c45cf0 8118 if (IS_GEN2(dev))
14b60391
JB
8119 I915_WRITE(CURSIZE, (height << 12) | width);
8120
3f8bc370 8121 finish:
3f8bc370 8122 if (intel_crtc->cursor_bo) {
00731155 8123 if (!INTEL_INFO(dev)->cursor_needs_physical)
cc98b413 8124 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
05394f39 8125 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
3f8bc370 8126 }
80824003 8127
7f9872e0 8128 mutex_unlock(&dev->struct_mutex);
3f8bc370 8129
64f962e3
CW
8130 old_width = intel_crtc->cursor_width;
8131
3f8bc370 8132 intel_crtc->cursor_addr = addr;
05394f39 8133 intel_crtc->cursor_bo = obj;
cda4b7d3
CW
8134 intel_crtc->cursor_width = width;
8135 intel_crtc->cursor_height = height;
8136
64f962e3
CW
8137 if (intel_crtc->active) {
8138 if (old_width != width)
8139 intel_update_watermarks(crtc);
f2f5f771 8140 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
64f962e3 8141 }
3f8bc370 8142
79e53945 8143 return 0;
e7b526bb 8144fail_unpin:
cc98b413 8145 i915_gem_object_unpin_from_display_plane(obj);
7f9872e0 8146fail_locked:
34b8686e 8147 mutex_unlock(&dev->struct_mutex);
bc9025bd 8148fail:
05394f39 8149 drm_gem_object_unreference_unlocked(&obj->base);
34b8686e 8150 return ret;
79e53945
JB
8151}
8152
8153static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
8154{
79e53945 8155 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8156
92e76c8c
VS
8157 intel_crtc->cursor_x = clamp_t(int, x, SHRT_MIN, SHRT_MAX);
8158 intel_crtc->cursor_y = clamp_t(int, y, SHRT_MIN, SHRT_MAX);
652c393a 8159
f2f5f771
VS
8160 if (intel_crtc->active)
8161 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
79e53945
JB
8162
8163 return 0;
b8c00ac5
DA
8164}
8165
79e53945 8166static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
7203425a 8167 u16 *blue, uint32_t start, uint32_t size)
79e53945 8168{
7203425a 8169 int end = (start + size > 256) ? 256 : start + size, i;
79e53945 8170 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8171
7203425a 8172 for (i = start; i < end; i++) {
79e53945
JB
8173 intel_crtc->lut_r[i] = red[i] >> 8;
8174 intel_crtc->lut_g[i] = green[i] >> 8;
8175 intel_crtc->lut_b[i] = blue[i] >> 8;
8176 }
8177
8178 intel_crtc_load_lut(crtc);
8179}
8180
79e53945
JB
8181/* VESA 640x480x72Hz mode to set on the pipe */
8182static struct drm_display_mode load_detect_mode = {
8183 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8184 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8185};
8186
a8bb6818
DV
8187struct drm_framebuffer *
8188__intel_framebuffer_create(struct drm_device *dev,
8189 struct drm_mode_fb_cmd2 *mode_cmd,
8190 struct drm_i915_gem_object *obj)
d2dff872
CW
8191{
8192 struct intel_framebuffer *intel_fb;
8193 int ret;
8194
8195 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8196 if (!intel_fb) {
8197 drm_gem_object_unreference_unlocked(&obj->base);
8198 return ERR_PTR(-ENOMEM);
8199 }
8200
8201 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
dd4916c5
DV
8202 if (ret)
8203 goto err;
d2dff872
CW
8204
8205 return &intel_fb->base;
dd4916c5
DV
8206err:
8207 drm_gem_object_unreference_unlocked(&obj->base);
8208 kfree(intel_fb);
8209
8210 return ERR_PTR(ret);
d2dff872
CW
8211}
8212
b5ea642a 8213static struct drm_framebuffer *
a8bb6818
DV
8214intel_framebuffer_create(struct drm_device *dev,
8215 struct drm_mode_fb_cmd2 *mode_cmd,
8216 struct drm_i915_gem_object *obj)
8217{
8218 struct drm_framebuffer *fb;
8219 int ret;
8220
8221 ret = i915_mutex_lock_interruptible(dev);
8222 if (ret)
8223 return ERR_PTR(ret);
8224 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8225 mutex_unlock(&dev->struct_mutex);
8226
8227 return fb;
8228}
8229
d2dff872
CW
8230static u32
8231intel_framebuffer_pitch_for_width(int width, int bpp)
8232{
8233 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8234 return ALIGN(pitch, 64);
8235}
8236
8237static u32
8238intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8239{
8240 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
8241 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
8242}
8243
8244static struct drm_framebuffer *
8245intel_framebuffer_create_for_mode(struct drm_device *dev,
8246 struct drm_display_mode *mode,
8247 int depth, int bpp)
8248{
8249 struct drm_i915_gem_object *obj;
0fed39bd 8250 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872
CW
8251
8252 obj = i915_gem_alloc_object(dev,
8253 intel_framebuffer_size_for_mode(mode, bpp));
8254 if (obj == NULL)
8255 return ERR_PTR(-ENOMEM);
8256
8257 mode_cmd.width = mode->hdisplay;
8258 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
8259 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8260 bpp);
5ca0c34a 8261 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872
CW
8262
8263 return intel_framebuffer_create(dev, &mode_cmd, obj);
8264}
8265
8266static struct drm_framebuffer *
8267mode_fits_in_fbdev(struct drm_device *dev,
8268 struct drm_display_mode *mode)
8269{
4520f53a 8270#ifdef CONFIG_DRM_I915_FBDEV
d2dff872
CW
8271 struct drm_i915_private *dev_priv = dev->dev_private;
8272 struct drm_i915_gem_object *obj;
8273 struct drm_framebuffer *fb;
8274
4c0e5528 8275 if (!dev_priv->fbdev)
d2dff872
CW
8276 return NULL;
8277
4c0e5528 8278 if (!dev_priv->fbdev->fb)
d2dff872
CW
8279 return NULL;
8280
4c0e5528
DV
8281 obj = dev_priv->fbdev->fb->obj;
8282 BUG_ON(!obj);
8283
8bcd4553 8284 fb = &dev_priv->fbdev->fb->base;
01f2c773
VS
8285 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8286 fb->bits_per_pixel))
d2dff872
CW
8287 return NULL;
8288
01f2c773 8289 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
8290 return NULL;
8291
8292 return fb;
4520f53a
DV
8293#else
8294 return NULL;
8295#endif
d2dff872
CW
8296}
8297
d2434ab7 8298bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 8299 struct drm_display_mode *mode,
51fd371b
RC
8300 struct intel_load_detect_pipe *old,
8301 struct drm_modeset_acquire_ctx *ctx)
79e53945
JB
8302{
8303 struct intel_crtc *intel_crtc;
d2434ab7
DV
8304 struct intel_encoder *intel_encoder =
8305 intel_attached_encoder(connector);
79e53945 8306 struct drm_crtc *possible_crtc;
4ef69c7a 8307 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
8308 struct drm_crtc *crtc = NULL;
8309 struct drm_device *dev = encoder->dev;
94352cf9 8310 struct drm_framebuffer *fb;
51fd371b
RC
8311 struct drm_mode_config *config = &dev->mode_config;
8312 int ret, i = -1;
79e53945 8313
d2dff872 8314 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 8315 connector->base.id, connector->name,
8e329a03 8316 encoder->base.id, encoder->name);
d2dff872 8317
51fd371b
RC
8318 drm_modeset_acquire_init(ctx, 0);
8319
8320retry:
8321 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8322 if (ret)
8323 goto fail_unlock;
6e9f798d 8324
79e53945
JB
8325 /*
8326 * Algorithm gets a little messy:
7a5e4805 8327 *
79e53945
JB
8328 * - if the connector already has an assigned crtc, use it (but make
8329 * sure it's on first)
7a5e4805 8330 *
79e53945
JB
8331 * - try to find the first unused crtc that can drive this connector,
8332 * and use that if we find one
79e53945
JB
8333 */
8334
8335 /* See if we already have a CRTC for this connector */
8336 if (encoder->crtc) {
8337 crtc = encoder->crtc;
8261b191 8338
51fd371b
RC
8339 ret = drm_modeset_lock(&crtc->mutex, ctx);
8340 if (ret)
8341 goto fail_unlock;
7b24056b 8342
24218aac 8343 old->dpms_mode = connector->dpms;
8261b191
CW
8344 old->load_detect_temp = false;
8345
8346 /* Make sure the crtc and connector are running */
24218aac
DV
8347 if (connector->dpms != DRM_MODE_DPMS_ON)
8348 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
8261b191 8349
7173188d 8350 return true;
79e53945
JB
8351 }
8352
8353 /* Find an unused one (if possible) */
70e1e0ec 8354 for_each_crtc(dev, possible_crtc) {
79e53945
JB
8355 i++;
8356 if (!(encoder->possible_crtcs & (1 << i)))
8357 continue;
8358 if (!possible_crtc->enabled) {
8359 crtc = possible_crtc;
8360 break;
8361 }
79e53945
JB
8362 }
8363
8364 /*
8365 * If we didn't find an unused CRTC, don't use any.
8366 */
8367 if (!crtc) {
7173188d 8368 DRM_DEBUG_KMS("no pipe available for load-detect\n");
51fd371b 8369 goto fail_unlock;
79e53945
JB
8370 }
8371
51fd371b
RC
8372 ret = drm_modeset_lock(&crtc->mutex, ctx);
8373 if (ret)
8374 goto fail_unlock;
fc303101
DV
8375 intel_encoder->new_crtc = to_intel_crtc(crtc);
8376 to_intel_connector(connector)->new_encoder = intel_encoder;
79e53945
JB
8377
8378 intel_crtc = to_intel_crtc(crtc);
412b61d8
VS
8379 intel_crtc->new_enabled = true;
8380 intel_crtc->new_config = &intel_crtc->config;
24218aac 8381 old->dpms_mode = connector->dpms;
8261b191 8382 old->load_detect_temp = true;
d2dff872 8383 old->release_fb = NULL;
79e53945 8384
6492711d
CW
8385 if (!mode)
8386 mode = &load_detect_mode;
79e53945 8387
d2dff872
CW
8388 /* We need a framebuffer large enough to accommodate all accesses
8389 * that the plane may generate whilst we perform load detection.
8390 * We can not rely on the fbcon either being present (we get called
8391 * during its initialisation to detect all boot displays, or it may
8392 * not even exist) or that it is large enough to satisfy the
8393 * requested mode.
8394 */
94352cf9
DV
8395 fb = mode_fits_in_fbdev(dev, mode);
8396 if (fb == NULL) {
d2dff872 8397 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9
DV
8398 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8399 old->release_fb = fb;
d2dff872
CW
8400 } else
8401 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 8402 if (IS_ERR(fb)) {
d2dff872 8403 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
412b61d8 8404 goto fail;
79e53945 8405 }
79e53945 8406
c0c36b94 8407 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
6492711d 8408 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
d2dff872
CW
8409 if (old->release_fb)
8410 old->release_fb->funcs->destroy(old->release_fb);
412b61d8 8411 goto fail;
79e53945 8412 }
7173188d 8413
79e53945 8414 /* let the connector get through one full cycle before testing */
9d0498a2 8415 intel_wait_for_vblank(dev, intel_crtc->pipe);
7173188d 8416 return true;
412b61d8
VS
8417
8418 fail:
8419 intel_crtc->new_enabled = crtc->enabled;
8420 if (intel_crtc->new_enabled)
8421 intel_crtc->new_config = &intel_crtc->config;
8422 else
8423 intel_crtc->new_config = NULL;
51fd371b
RC
8424fail_unlock:
8425 if (ret == -EDEADLK) {
8426 drm_modeset_backoff(ctx);
8427 goto retry;
8428 }
8429
8430 drm_modeset_drop_locks(ctx);
8431 drm_modeset_acquire_fini(ctx);
6e9f798d 8432
412b61d8 8433 return false;
79e53945
JB
8434}
8435
d2434ab7 8436void intel_release_load_detect_pipe(struct drm_connector *connector,
51fd371b
RC
8437 struct intel_load_detect_pipe *old,
8438 struct drm_modeset_acquire_ctx *ctx)
79e53945 8439{
d2434ab7
DV
8440 struct intel_encoder *intel_encoder =
8441 intel_attached_encoder(connector);
4ef69c7a 8442 struct drm_encoder *encoder = &intel_encoder->base;
7b24056b 8443 struct drm_crtc *crtc = encoder->crtc;
412b61d8 8444 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8445
d2dff872 8446 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 8447 connector->base.id, connector->name,
8e329a03 8448 encoder->base.id, encoder->name);
d2dff872 8449
8261b191 8450 if (old->load_detect_temp) {
fc303101
DV
8451 to_intel_connector(connector)->new_encoder = NULL;
8452 intel_encoder->new_crtc = NULL;
412b61d8
VS
8453 intel_crtc->new_enabled = false;
8454 intel_crtc->new_config = NULL;
fc303101 8455 intel_set_mode(crtc, NULL, 0, 0, NULL);
d2dff872 8456
36206361
DV
8457 if (old->release_fb) {
8458 drm_framebuffer_unregister_private(old->release_fb);
8459 drm_framebuffer_unreference(old->release_fb);
8460 }
d2dff872 8461
51fd371b 8462 goto unlock;
0622a53c 8463 return;
79e53945
JB
8464 }
8465
c751ce4f 8466 /* Switch crtc and encoder back off if necessary */
24218aac
DV
8467 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8468 connector->funcs->dpms(connector, old->dpms_mode);
7b24056b 8469
51fd371b
RC
8470unlock:
8471 drm_modeset_drop_locks(ctx);
8472 drm_modeset_acquire_fini(ctx);
79e53945
JB
8473}
8474
da4a1efa
VS
8475static int i9xx_pll_refclk(struct drm_device *dev,
8476 const struct intel_crtc_config *pipe_config)
8477{
8478 struct drm_i915_private *dev_priv = dev->dev_private;
8479 u32 dpll = pipe_config->dpll_hw_state.dpll;
8480
8481 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
e91e941b 8482 return dev_priv->vbt.lvds_ssc_freq;
da4a1efa
VS
8483 else if (HAS_PCH_SPLIT(dev))
8484 return 120000;
8485 else if (!IS_GEN2(dev))
8486 return 96000;
8487 else
8488 return 48000;
8489}
8490
79e53945 8491/* Returns the clock of the currently programmed mode of the given pipe. */
f1f644dc
JB
8492static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
8493 struct intel_crtc_config *pipe_config)
79e53945 8494{
f1f644dc 8495 struct drm_device *dev = crtc->base.dev;
79e53945 8496 struct drm_i915_private *dev_priv = dev->dev_private;
f1f644dc 8497 int pipe = pipe_config->cpu_transcoder;
293623f7 8498 u32 dpll = pipe_config->dpll_hw_state.dpll;
79e53945
JB
8499 u32 fp;
8500 intel_clock_t clock;
da4a1efa 8501 int refclk = i9xx_pll_refclk(dev, pipe_config);
79e53945
JB
8502
8503 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
293623f7 8504 fp = pipe_config->dpll_hw_state.fp0;
79e53945 8505 else
293623f7 8506 fp = pipe_config->dpll_hw_state.fp1;
79e53945
JB
8507
8508 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
8509 if (IS_PINEVIEW(dev)) {
8510 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8511 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
8512 } else {
8513 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8514 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8515 }
8516
a6c45cf0 8517 if (!IS_GEN2(dev)) {
f2b115e6
AJ
8518 if (IS_PINEVIEW(dev))
8519 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8520 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
8521 else
8522 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
8523 DPLL_FPA01_P1_POST_DIV_SHIFT);
8524
8525 switch (dpll & DPLL_MODE_MASK) {
8526 case DPLLB_MODE_DAC_SERIAL:
8527 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8528 5 : 10;
8529 break;
8530 case DPLLB_MODE_LVDS:
8531 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8532 7 : 14;
8533 break;
8534 default:
28c97730 8535 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945 8536 "mode\n", (int)(dpll & DPLL_MODE_MASK));
f1f644dc 8537 return;
79e53945
JB
8538 }
8539
ac58c3f0 8540 if (IS_PINEVIEW(dev))
da4a1efa 8541 pineview_clock(refclk, &clock);
ac58c3f0 8542 else
da4a1efa 8543 i9xx_clock(refclk, &clock);
79e53945 8544 } else {
0fb58223 8545 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
b1c560d1 8546 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
79e53945
JB
8547
8548 if (is_lvds) {
8549 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8550 DPLL_FPA01_P1_POST_DIV_SHIFT);
b1c560d1
VS
8551
8552 if (lvds & LVDS_CLKB_POWER_UP)
8553 clock.p2 = 7;
8554 else
8555 clock.p2 = 14;
79e53945
JB
8556 } else {
8557 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8558 clock.p1 = 2;
8559 else {
8560 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8561 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8562 }
8563 if (dpll & PLL_P2_DIVIDE_BY_4)
8564 clock.p2 = 4;
8565 else
8566 clock.p2 = 2;
79e53945 8567 }
da4a1efa
VS
8568
8569 i9xx_clock(refclk, &clock);
79e53945
JB
8570 }
8571
18442d08
VS
8572 /*
8573 * This value includes pixel_multiplier. We will use
241bfc38 8574 * port_clock to compute adjusted_mode.crtc_clock in the
18442d08
VS
8575 * encoder's get_config() function.
8576 */
8577 pipe_config->port_clock = clock.dot;
f1f644dc
JB
8578}
8579
6878da05
VS
8580int intel_dotclock_calculate(int link_freq,
8581 const struct intel_link_m_n *m_n)
f1f644dc 8582{
f1f644dc
JB
8583 /*
8584 * The calculation for the data clock is:
1041a02f 8585 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
f1f644dc 8586 * But we want to avoid losing precison if possible, so:
1041a02f 8587 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
f1f644dc
JB
8588 *
8589 * and the link clock is simpler:
1041a02f 8590 * link_clock = (m * link_clock) / n
f1f644dc
JB
8591 */
8592
6878da05
VS
8593 if (!m_n->link_n)
8594 return 0;
f1f644dc 8595
6878da05
VS
8596 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8597}
f1f644dc 8598
18442d08
VS
8599static void ironlake_pch_clock_get(struct intel_crtc *crtc,
8600 struct intel_crtc_config *pipe_config)
6878da05
VS
8601{
8602 struct drm_device *dev = crtc->base.dev;
79e53945 8603
18442d08
VS
8604 /* read out port_clock from the DPLL */
8605 i9xx_crtc_clock_get(crtc, pipe_config);
f1f644dc 8606
f1f644dc 8607 /*
18442d08 8608 * This value does not include pixel_multiplier.
241bfc38 8609 * We will check that port_clock and adjusted_mode.crtc_clock
18442d08
VS
8610 * agree once we know their relationship in the encoder's
8611 * get_config() function.
79e53945 8612 */
241bfc38 8613 pipe_config->adjusted_mode.crtc_clock =
18442d08
VS
8614 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8615 &pipe_config->fdi_m_n);
79e53945
JB
8616}
8617
8618/** Returns the currently programmed mode of the given pipe. */
8619struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8620 struct drm_crtc *crtc)
8621{
548f245b 8622 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 8623 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3b117c8f 8624 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
79e53945 8625 struct drm_display_mode *mode;
f1f644dc 8626 struct intel_crtc_config pipe_config;
fe2b8f9d
PZ
8627 int htot = I915_READ(HTOTAL(cpu_transcoder));
8628 int hsync = I915_READ(HSYNC(cpu_transcoder));
8629 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8630 int vsync = I915_READ(VSYNC(cpu_transcoder));
293623f7 8631 enum pipe pipe = intel_crtc->pipe;
79e53945
JB
8632
8633 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8634 if (!mode)
8635 return NULL;
8636
f1f644dc
JB
8637 /*
8638 * Construct a pipe_config sufficient for getting the clock info
8639 * back out of crtc_clock_get.
8640 *
8641 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8642 * to use a real value here instead.
8643 */
293623f7 8644 pipe_config.cpu_transcoder = (enum transcoder) pipe;
f1f644dc 8645 pipe_config.pixel_multiplier = 1;
293623f7
VS
8646 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8647 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8648 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
f1f644dc
JB
8649 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8650
773ae034 8651 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
79e53945
JB
8652 mode->hdisplay = (htot & 0xffff) + 1;
8653 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8654 mode->hsync_start = (hsync & 0xffff) + 1;
8655 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8656 mode->vdisplay = (vtot & 0xffff) + 1;
8657 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8658 mode->vsync_start = (vsync & 0xffff) + 1;
8659 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8660
8661 drm_mode_set_name(mode);
79e53945
JB
8662
8663 return mode;
8664}
8665
3dec0095 8666static void intel_increase_pllclock(struct drm_crtc *crtc)
652c393a
JB
8667{
8668 struct drm_device *dev = crtc->dev;
fbee40df 8669 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a
JB
8670 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8671 int pipe = intel_crtc->pipe;
dbdc6479
JB
8672 int dpll_reg = DPLL(pipe);
8673 int dpll;
652c393a 8674
bad720ff 8675 if (HAS_PCH_SPLIT(dev))
652c393a
JB
8676 return;
8677
8678 if (!dev_priv->lvds_downclock_avail)
8679 return;
8680
dbdc6479 8681 dpll = I915_READ(dpll_reg);
652c393a 8682 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
44d98a61 8683 DRM_DEBUG_DRIVER("upclocking LVDS\n");
652c393a 8684
8ac5a6d5 8685 assert_panel_unlocked(dev_priv, pipe);
652c393a
JB
8686
8687 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
8688 I915_WRITE(dpll_reg, dpll);
9d0498a2 8689 intel_wait_for_vblank(dev, pipe);
dbdc6479 8690
652c393a
JB
8691 dpll = I915_READ(dpll_reg);
8692 if (dpll & DISPLAY_RATE_SELECT_FPA1)
44d98a61 8693 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
652c393a 8694 }
652c393a
JB
8695}
8696
8697static void intel_decrease_pllclock(struct drm_crtc *crtc)
8698{
8699 struct drm_device *dev = crtc->dev;
fbee40df 8700 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 8701 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
652c393a 8702
bad720ff 8703 if (HAS_PCH_SPLIT(dev))
652c393a
JB
8704 return;
8705
8706 if (!dev_priv->lvds_downclock_avail)
8707 return;
8708
8709 /*
8710 * Since this is called by a timer, we should never get here in
8711 * the manual case.
8712 */
8713 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
dc257cf1
DV
8714 int pipe = intel_crtc->pipe;
8715 int dpll_reg = DPLL(pipe);
8716 int dpll;
f6e5b160 8717
44d98a61 8718 DRM_DEBUG_DRIVER("downclocking LVDS\n");
652c393a 8719
8ac5a6d5 8720 assert_panel_unlocked(dev_priv, pipe);
652c393a 8721
dc257cf1 8722 dpll = I915_READ(dpll_reg);
652c393a
JB
8723 dpll |= DISPLAY_RATE_SELECT_FPA1;
8724 I915_WRITE(dpll_reg, dpll);
9d0498a2 8725 intel_wait_for_vblank(dev, pipe);
652c393a
JB
8726 dpll = I915_READ(dpll_reg);
8727 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
44d98a61 8728 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
652c393a
JB
8729 }
8730
8731}
8732
f047e395
CW
8733void intel_mark_busy(struct drm_device *dev)
8734{
c67a470b
PZ
8735 struct drm_i915_private *dev_priv = dev->dev_private;
8736
f62a0076
CW
8737 if (dev_priv->mm.busy)
8738 return;
8739
43694d69 8740 intel_runtime_pm_get(dev_priv);
c67a470b 8741 i915_update_gfx_val(dev_priv);
f62a0076 8742 dev_priv->mm.busy = true;
f047e395
CW
8743}
8744
8745void intel_mark_idle(struct drm_device *dev)
652c393a 8746{
c67a470b 8747 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 8748 struct drm_crtc *crtc;
652c393a 8749
f62a0076
CW
8750 if (!dev_priv->mm.busy)
8751 return;
8752
8753 dev_priv->mm.busy = false;
8754
d330a953 8755 if (!i915.powersave)
bb4cdd53 8756 goto out;
652c393a 8757
70e1e0ec 8758 for_each_crtc(dev, crtc) {
f4510a27 8759 if (!crtc->primary->fb)
652c393a
JB
8760 continue;
8761
725a5b54 8762 intel_decrease_pllclock(crtc);
652c393a 8763 }
b29c19b6 8764
3d13ef2e 8765 if (INTEL_INFO(dev)->gen >= 6)
b29c19b6 8766 gen6_rps_idle(dev->dev_private);
bb4cdd53
PZ
8767
8768out:
43694d69 8769 intel_runtime_pm_put(dev_priv);
652c393a
JB
8770}
8771
c65355bb 8772void intel_mark_fb_busy(struct drm_i915_gem_object *obj,
a4872ba6 8773 struct intel_engine_cs *ring)
652c393a 8774{
f047e395
CW
8775 struct drm_device *dev = obj->base.dev;
8776 struct drm_crtc *crtc;
652c393a 8777
d330a953 8778 if (!i915.powersave)
acb87dfb
CW
8779 return;
8780
70e1e0ec 8781 for_each_crtc(dev, crtc) {
f4510a27 8782 if (!crtc->primary->fb)
652c393a
JB
8783 continue;
8784
f4510a27 8785 if (to_intel_framebuffer(crtc->primary->fb)->obj != obj)
c65355bb
CW
8786 continue;
8787
8788 intel_increase_pllclock(crtc);
8789 if (ring && intel_fbc_enabled(dev))
8790 ring->fbc_dirty = true;
652c393a
JB
8791 }
8792}
8793
79e53945
JB
8794static void intel_crtc_destroy(struct drm_crtc *crtc)
8795{
8796 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a
DV
8797 struct drm_device *dev = crtc->dev;
8798 struct intel_unpin_work *work;
8799 unsigned long flags;
8800
8801 spin_lock_irqsave(&dev->event_lock, flags);
8802 work = intel_crtc->unpin_work;
8803 intel_crtc->unpin_work = NULL;
8804 spin_unlock_irqrestore(&dev->event_lock, flags);
8805
8806 if (work) {
8807 cancel_work_sync(&work->work);
8808 kfree(work);
8809 }
79e53945 8810
40ccc72b
MK
8811 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
8812
79e53945 8813 drm_crtc_cleanup(crtc);
67e77c5a 8814
79e53945
JB
8815 kfree(intel_crtc);
8816}
8817
6b95a207
KH
8818static void intel_unpin_work_fn(struct work_struct *__work)
8819{
8820 struct intel_unpin_work *work =
8821 container_of(__work, struct intel_unpin_work, work);
b4a98e57 8822 struct drm_device *dev = work->crtc->dev;
6b95a207 8823
b4a98e57 8824 mutex_lock(&dev->struct_mutex);
1690e1eb 8825 intel_unpin_fb_obj(work->old_fb_obj);
05394f39
CW
8826 drm_gem_object_unreference(&work->pending_flip_obj->base);
8827 drm_gem_object_unreference(&work->old_fb_obj->base);
d9e86c0e 8828
b4a98e57
CW
8829 intel_update_fbc(dev);
8830 mutex_unlock(&dev->struct_mutex);
8831
8832 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
8833 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
8834
6b95a207
KH
8835 kfree(work);
8836}
8837
1afe3e9d 8838static void do_intel_finish_page_flip(struct drm_device *dev,
49b14a5c 8839 struct drm_crtc *crtc)
6b95a207 8840{
fbee40df 8841 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
8842 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8843 struct intel_unpin_work *work;
6b95a207
KH
8844 unsigned long flags;
8845
8846 /* Ignore early vblank irqs */
8847 if (intel_crtc == NULL)
8848 return;
8849
8850 spin_lock_irqsave(&dev->event_lock, flags);
8851 work = intel_crtc->unpin_work;
e7d841ca
CW
8852
8853 /* Ensure we don't miss a work->pending update ... */
8854 smp_rmb();
8855
8856 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
6b95a207
KH
8857 spin_unlock_irqrestore(&dev->event_lock, flags);
8858 return;
8859 }
8860
e7d841ca
CW
8861 /* and that the unpin work is consistent wrt ->pending. */
8862 smp_rmb();
8863
6b95a207 8864 intel_crtc->unpin_work = NULL;
6b95a207 8865
45a066eb
RC
8866 if (work->event)
8867 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
6b95a207 8868
87b6b101 8869 drm_crtc_vblank_put(crtc);
0af7e4df 8870
6b95a207
KH
8871 spin_unlock_irqrestore(&dev->event_lock, flags);
8872
2c10d571 8873 wake_up_all(&dev_priv->pending_flip_queue);
b4a98e57
CW
8874
8875 queue_work(dev_priv->wq, &work->work);
e5510fac
JB
8876
8877 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
6b95a207
KH
8878}
8879
1afe3e9d
JB
8880void intel_finish_page_flip(struct drm_device *dev, int pipe)
8881{
fbee40df 8882 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
8883 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
8884
49b14a5c 8885 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
8886}
8887
8888void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
8889{
fbee40df 8890 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
8891 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
8892
49b14a5c 8893 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
8894}
8895
75f7f3ec
VS
8896/* Is 'a' after or equal to 'b'? */
8897static bool g4x_flip_count_after_eq(u32 a, u32 b)
8898{
8899 return !((a - b) & 0x80000000);
8900}
8901
8902static bool page_flip_finished(struct intel_crtc *crtc)
8903{
8904 struct drm_device *dev = crtc->base.dev;
8905 struct drm_i915_private *dev_priv = dev->dev_private;
8906
8907 /*
8908 * The relevant registers doen't exist on pre-ctg.
8909 * As the flip done interrupt doesn't trigger for mmio
8910 * flips on gmch platforms, a flip count check isn't
8911 * really needed there. But since ctg has the registers,
8912 * include it in the check anyway.
8913 */
8914 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
8915 return true;
8916
8917 /*
8918 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
8919 * used the same base address. In that case the mmio flip might
8920 * have completed, but the CS hasn't even executed the flip yet.
8921 *
8922 * A flip count check isn't enough as the CS might have updated
8923 * the base address just after start of vblank, but before we
8924 * managed to process the interrupt. This means we'd complete the
8925 * CS flip too soon.
8926 *
8927 * Combining both checks should get us a good enough result. It may
8928 * still happen that the CS flip has been executed, but has not
8929 * yet actually completed. But in case the base address is the same
8930 * anyway, we don't really care.
8931 */
8932 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
8933 crtc->unpin_work->gtt_offset &&
8934 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
8935 crtc->unpin_work->flip_count);
8936}
8937
6b95a207
KH
8938void intel_prepare_page_flip(struct drm_device *dev, int plane)
8939{
fbee40df 8940 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
8941 struct intel_crtc *intel_crtc =
8942 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
8943 unsigned long flags;
8944
e7d841ca
CW
8945 /* NB: An MMIO update of the plane base pointer will also
8946 * generate a page-flip completion irq, i.e. every modeset
8947 * is also accompanied by a spurious intel_prepare_page_flip().
8948 */
6b95a207 8949 spin_lock_irqsave(&dev->event_lock, flags);
75f7f3ec 8950 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
e7d841ca 8951 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
6b95a207
KH
8952 spin_unlock_irqrestore(&dev->event_lock, flags);
8953}
8954
eba905b2 8955static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
e7d841ca
CW
8956{
8957 /* Ensure that the work item is consistent when activating it ... */
8958 smp_wmb();
8959 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
8960 /* and that it is marked active as soon as the irq could fire. */
8961 smp_wmb();
8962}
8963
8c9f3aaf
JB
8964static int intel_gen2_queue_flip(struct drm_device *dev,
8965 struct drm_crtc *crtc,
8966 struct drm_framebuffer *fb,
ed8d1975 8967 struct drm_i915_gem_object *obj,
a4872ba6 8968 struct intel_engine_cs *ring,
ed8d1975 8969 uint32_t flags)
8c9f3aaf 8970{
8c9f3aaf 8971 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
8972 u32 flip_mask;
8973 int ret;
8974
6d90c952 8975 ret = intel_ring_begin(ring, 6);
8c9f3aaf 8976 if (ret)
4fa62c89 8977 return ret;
8c9f3aaf
JB
8978
8979 /* Can't queue multiple flips, so wait for the previous
8980 * one to finish before executing the next.
8981 */
8982 if (intel_crtc->plane)
8983 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8984 else
8985 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
8986 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8987 intel_ring_emit(ring, MI_NOOP);
8988 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8989 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8990 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 8991 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
6d90c952 8992 intel_ring_emit(ring, 0); /* aux display base address, unused */
e7d841ca
CW
8993
8994 intel_mark_page_flip_active(intel_crtc);
09246732 8995 __intel_ring_advance(ring);
83d4092b 8996 return 0;
8c9f3aaf
JB
8997}
8998
8999static int intel_gen3_queue_flip(struct drm_device *dev,
9000 struct drm_crtc *crtc,
9001 struct drm_framebuffer *fb,
ed8d1975 9002 struct drm_i915_gem_object *obj,
a4872ba6 9003 struct intel_engine_cs *ring,
ed8d1975 9004 uint32_t flags)
8c9f3aaf 9005{
8c9f3aaf 9006 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
9007 u32 flip_mask;
9008 int ret;
9009
6d90c952 9010 ret = intel_ring_begin(ring, 6);
8c9f3aaf 9011 if (ret)
4fa62c89 9012 return ret;
8c9f3aaf
JB
9013
9014 if (intel_crtc->plane)
9015 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9016 else
9017 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
9018 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9019 intel_ring_emit(ring, MI_NOOP);
9020 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9021 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9022 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 9023 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
6d90c952
DV
9024 intel_ring_emit(ring, MI_NOOP);
9025
e7d841ca 9026 intel_mark_page_flip_active(intel_crtc);
09246732 9027 __intel_ring_advance(ring);
83d4092b 9028 return 0;
8c9f3aaf
JB
9029}
9030
9031static int intel_gen4_queue_flip(struct drm_device *dev,
9032 struct drm_crtc *crtc,
9033 struct drm_framebuffer *fb,
ed8d1975 9034 struct drm_i915_gem_object *obj,
a4872ba6 9035 struct intel_engine_cs *ring,
ed8d1975 9036 uint32_t flags)
8c9f3aaf
JB
9037{
9038 struct drm_i915_private *dev_priv = dev->dev_private;
9039 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9040 uint32_t pf, pipesrc;
9041 int ret;
9042
6d90c952 9043 ret = intel_ring_begin(ring, 4);
8c9f3aaf 9044 if (ret)
4fa62c89 9045 return ret;
8c9f3aaf
JB
9046
9047 /* i965+ uses the linear or tiled offsets from the
9048 * Display Registers (which do not change across a page-flip)
9049 * so we need only reprogram the base address.
9050 */
6d90c952
DV
9051 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9052 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9053 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 9054 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
c2c75131 9055 obj->tiling_mode);
8c9f3aaf
JB
9056
9057 /* XXX Enabling the panel-fitter across page-flip is so far
9058 * untested on non-native modes, so ignore it for now.
9059 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9060 */
9061 pf = 0;
9062 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 9063 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
9064
9065 intel_mark_page_flip_active(intel_crtc);
09246732 9066 __intel_ring_advance(ring);
83d4092b 9067 return 0;
8c9f3aaf
JB
9068}
9069
9070static int intel_gen6_queue_flip(struct drm_device *dev,
9071 struct drm_crtc *crtc,
9072 struct drm_framebuffer *fb,
ed8d1975 9073 struct drm_i915_gem_object *obj,
a4872ba6 9074 struct intel_engine_cs *ring,
ed8d1975 9075 uint32_t flags)
8c9f3aaf
JB
9076{
9077 struct drm_i915_private *dev_priv = dev->dev_private;
9078 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9079 uint32_t pf, pipesrc;
9080 int ret;
9081
6d90c952 9082 ret = intel_ring_begin(ring, 4);
8c9f3aaf 9083 if (ret)
4fa62c89 9084 return ret;
8c9f3aaf 9085
6d90c952
DV
9086 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9087 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9088 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
75f7f3ec 9089 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
8c9f3aaf 9090
dc257cf1
DV
9091 /* Contrary to the suggestions in the documentation,
9092 * "Enable Panel Fitter" does not seem to be required when page
9093 * flipping with a non-native mode, and worse causes a normal
9094 * modeset to fail.
9095 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9096 */
9097 pf = 0;
8c9f3aaf 9098 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 9099 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
9100
9101 intel_mark_page_flip_active(intel_crtc);
09246732 9102 __intel_ring_advance(ring);
83d4092b 9103 return 0;
8c9f3aaf
JB
9104}
9105
7c9017e5
JB
9106static int intel_gen7_queue_flip(struct drm_device *dev,
9107 struct drm_crtc *crtc,
9108 struct drm_framebuffer *fb,
ed8d1975 9109 struct drm_i915_gem_object *obj,
a4872ba6 9110 struct intel_engine_cs *ring,
ed8d1975 9111 uint32_t flags)
7c9017e5 9112{
7c9017e5 9113 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cb05d8de 9114 uint32_t plane_bit = 0;
ffe74d75
CW
9115 int len, ret;
9116
eba905b2 9117 switch (intel_crtc->plane) {
cb05d8de
DV
9118 case PLANE_A:
9119 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9120 break;
9121 case PLANE_B:
9122 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9123 break;
9124 case PLANE_C:
9125 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9126 break;
9127 default:
9128 WARN_ONCE(1, "unknown plane in flip command\n");
4fa62c89 9129 return -ENODEV;
cb05d8de
DV
9130 }
9131
ffe74d75 9132 len = 4;
f476828a 9133 if (ring->id == RCS) {
ffe74d75 9134 len += 6;
f476828a
DL
9135 /*
9136 * On Gen 8, SRM is now taking an extra dword to accommodate
9137 * 48bits addresses, and we need a NOOP for the batch size to
9138 * stay even.
9139 */
9140 if (IS_GEN8(dev))
9141 len += 2;
9142 }
ffe74d75 9143
f66fab8e
VS
9144 /*
9145 * BSpec MI_DISPLAY_FLIP for IVB:
9146 * "The full packet must be contained within the same cache line."
9147 *
9148 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9149 * cacheline, if we ever start emitting more commands before
9150 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9151 * then do the cacheline alignment, and finally emit the
9152 * MI_DISPLAY_FLIP.
9153 */
9154 ret = intel_ring_cacheline_align(ring);
9155 if (ret)
4fa62c89 9156 return ret;
f66fab8e 9157
ffe74d75 9158 ret = intel_ring_begin(ring, len);
7c9017e5 9159 if (ret)
4fa62c89 9160 return ret;
7c9017e5 9161
ffe74d75
CW
9162 /* Unmask the flip-done completion message. Note that the bspec says that
9163 * we should do this for both the BCS and RCS, and that we must not unmask
9164 * more than one flip event at any time (or ensure that one flip message
9165 * can be sent by waiting for flip-done prior to queueing new flips).
9166 * Experimentation says that BCS works despite DERRMR masking all
9167 * flip-done completion events and that unmasking all planes at once
9168 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9169 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9170 */
9171 if (ring->id == RCS) {
9172 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9173 intel_ring_emit(ring, DERRMR);
9174 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9175 DERRMR_PIPEB_PRI_FLIP_DONE |
9176 DERRMR_PIPEC_PRI_FLIP_DONE));
f476828a
DL
9177 if (IS_GEN8(dev))
9178 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9179 MI_SRM_LRM_GLOBAL_GTT);
9180 else
9181 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9182 MI_SRM_LRM_GLOBAL_GTT);
ffe74d75
CW
9183 intel_ring_emit(ring, DERRMR);
9184 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
f476828a
DL
9185 if (IS_GEN8(dev)) {
9186 intel_ring_emit(ring, 0);
9187 intel_ring_emit(ring, MI_NOOP);
9188 }
ffe74d75
CW
9189 }
9190
cb05d8de 9191 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
01f2c773 9192 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
75f7f3ec 9193 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
7c9017e5 9194 intel_ring_emit(ring, (MI_NOOP));
e7d841ca
CW
9195
9196 intel_mark_page_flip_active(intel_crtc);
09246732 9197 __intel_ring_advance(ring);
83d4092b 9198 return 0;
7c9017e5
JB
9199}
9200
8c9f3aaf
JB
9201static int intel_default_queue_flip(struct drm_device *dev,
9202 struct drm_crtc *crtc,
9203 struct drm_framebuffer *fb,
ed8d1975 9204 struct drm_i915_gem_object *obj,
a4872ba6 9205 struct intel_engine_cs *ring,
ed8d1975 9206 uint32_t flags)
8c9f3aaf
JB
9207{
9208 return -ENODEV;
9209}
9210
6b95a207
KH
9211static int intel_crtc_page_flip(struct drm_crtc *crtc,
9212 struct drm_framebuffer *fb,
ed8d1975
KP
9213 struct drm_pending_vblank_event *event,
9214 uint32_t page_flip_flags)
6b95a207
KH
9215{
9216 struct drm_device *dev = crtc->dev;
9217 struct drm_i915_private *dev_priv = dev->dev_private;
f4510a27 9218 struct drm_framebuffer *old_fb = crtc->primary->fb;
4a35f83b 9219 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
6b95a207
KH
9220 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9221 struct intel_unpin_work *work;
a4872ba6 9222 struct intel_engine_cs *ring;
8c9f3aaf 9223 unsigned long flags;
52e68630 9224 int ret;
6b95a207 9225
e6a595d2 9226 /* Can't change pixel format via MI display flips. */
f4510a27 9227 if (fb->pixel_format != crtc->primary->fb->pixel_format)
e6a595d2
VS
9228 return -EINVAL;
9229
9230 /*
9231 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9232 * Note that pitch changes could also affect these register.
9233 */
9234 if (INTEL_INFO(dev)->gen > 3 &&
f4510a27
MR
9235 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9236 fb->pitches[0] != crtc->primary->fb->pitches[0]))
e6a595d2
VS
9237 return -EINVAL;
9238
f900db47
CW
9239 if (i915_terminally_wedged(&dev_priv->gpu_error))
9240 goto out_hang;
9241
b14c5679 9242 work = kzalloc(sizeof(*work), GFP_KERNEL);
6b95a207
KH
9243 if (work == NULL)
9244 return -ENOMEM;
9245
6b95a207 9246 work->event = event;
b4a98e57 9247 work->crtc = crtc;
4a35f83b 9248 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
6b95a207
KH
9249 INIT_WORK(&work->work, intel_unpin_work_fn);
9250
87b6b101 9251 ret = drm_crtc_vblank_get(crtc);
7317c75e
JB
9252 if (ret)
9253 goto free_work;
9254
6b95a207
KH
9255 /* We borrow the event spin lock for protecting unpin_work */
9256 spin_lock_irqsave(&dev->event_lock, flags);
9257 if (intel_crtc->unpin_work) {
9258 spin_unlock_irqrestore(&dev->event_lock, flags);
9259 kfree(work);
87b6b101 9260 drm_crtc_vblank_put(crtc);
468f0b44
CW
9261
9262 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
6b95a207
KH
9263 return -EBUSY;
9264 }
9265 intel_crtc->unpin_work = work;
9266 spin_unlock_irqrestore(&dev->event_lock, flags);
9267
b4a98e57
CW
9268 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9269 flush_workqueue(dev_priv->wq);
9270
79158103
CW
9271 ret = i915_mutex_lock_interruptible(dev);
9272 if (ret)
9273 goto cleanup;
6b95a207 9274
75dfca80 9275 /* Reference the objects for the scheduled work. */
05394f39
CW
9276 drm_gem_object_reference(&work->old_fb_obj->base);
9277 drm_gem_object_reference(&obj->base);
6b95a207 9278
f4510a27 9279 crtc->primary->fb = fb;
96b099fd 9280
e1f99ce6 9281 work->pending_flip_obj = obj;
e1f99ce6 9282
4e5359cd
SF
9283 work->enable_stall_check = true;
9284
b4a98e57 9285 atomic_inc(&intel_crtc->unpin_work_count);
10d83730 9286 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
e1f99ce6 9287
75f7f3ec
VS
9288 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
9289 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(intel_crtc->pipe)) + 1;
9290
4fa62c89
VS
9291 if (IS_VALLEYVIEW(dev)) {
9292 ring = &dev_priv->ring[BCS];
9293 } else if (INTEL_INFO(dev)->gen >= 7) {
9294 ring = obj->ring;
9295 if (ring == NULL || ring->id != RCS)
9296 ring = &dev_priv->ring[BCS];
9297 } else {
9298 ring = &dev_priv->ring[RCS];
9299 }
9300
9301 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
8c9f3aaf
JB
9302 if (ret)
9303 goto cleanup_pending;
6b95a207 9304
4fa62c89
VS
9305 work->gtt_offset =
9306 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9307
9308 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring, page_flip_flags);
9309 if (ret)
9310 goto cleanup_unpin;
9311
7782de3b 9312 intel_disable_fbc(dev);
c65355bb 9313 intel_mark_fb_busy(obj, NULL);
6b95a207
KH
9314 mutex_unlock(&dev->struct_mutex);
9315
e5510fac
JB
9316 trace_i915_flip_request(intel_crtc->plane, obj);
9317
6b95a207 9318 return 0;
96b099fd 9319
4fa62c89
VS
9320cleanup_unpin:
9321 intel_unpin_fb_obj(obj);
8c9f3aaf 9322cleanup_pending:
b4a98e57 9323 atomic_dec(&intel_crtc->unpin_work_count);
f4510a27 9324 crtc->primary->fb = old_fb;
05394f39
CW
9325 drm_gem_object_unreference(&work->old_fb_obj->base);
9326 drm_gem_object_unreference(&obj->base);
96b099fd
CW
9327 mutex_unlock(&dev->struct_mutex);
9328
79158103 9329cleanup:
96b099fd
CW
9330 spin_lock_irqsave(&dev->event_lock, flags);
9331 intel_crtc->unpin_work = NULL;
9332 spin_unlock_irqrestore(&dev->event_lock, flags);
9333
87b6b101 9334 drm_crtc_vblank_put(crtc);
7317c75e 9335free_work:
96b099fd
CW
9336 kfree(work);
9337
f900db47
CW
9338 if (ret == -EIO) {
9339out_hang:
9340 intel_crtc_wait_for_pending_flips(crtc);
9341 ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
9342 if (ret == 0 && event)
9343 drm_send_vblank_event(dev, intel_crtc->pipe, event);
9344 }
96b099fd 9345 return ret;
6b95a207
KH
9346}
9347
f6e5b160 9348static struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160
CW
9349 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9350 .load_lut = intel_crtc_load_lut,
f6e5b160
CW
9351};
9352
9a935856
DV
9353/**
9354 * intel_modeset_update_staged_output_state
9355 *
9356 * Updates the staged output configuration state, e.g. after we've read out the
9357 * current hw state.
9358 */
9359static void intel_modeset_update_staged_output_state(struct drm_device *dev)
f6e5b160 9360{
7668851f 9361 struct intel_crtc *crtc;
9a935856
DV
9362 struct intel_encoder *encoder;
9363 struct intel_connector *connector;
f6e5b160 9364
9a935856
DV
9365 list_for_each_entry(connector, &dev->mode_config.connector_list,
9366 base.head) {
9367 connector->new_encoder =
9368 to_intel_encoder(connector->base.encoder);
9369 }
f6e5b160 9370
9a935856
DV
9371 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9372 base.head) {
9373 encoder->new_crtc =
9374 to_intel_crtc(encoder->base.crtc);
9375 }
7668851f 9376
d3fcc808 9377 for_each_intel_crtc(dev, crtc) {
7668851f 9378 crtc->new_enabled = crtc->base.enabled;
7bd0a8e7
VS
9379
9380 if (crtc->new_enabled)
9381 crtc->new_config = &crtc->config;
9382 else
9383 crtc->new_config = NULL;
7668851f 9384 }
f6e5b160
CW
9385}
9386
9a935856
DV
9387/**
9388 * intel_modeset_commit_output_state
9389 *
9390 * This function copies the stage display pipe configuration to the real one.
9391 */
9392static void intel_modeset_commit_output_state(struct drm_device *dev)
9393{
7668851f 9394 struct intel_crtc *crtc;
9a935856
DV
9395 struct intel_encoder *encoder;
9396 struct intel_connector *connector;
f6e5b160 9397
9a935856
DV
9398 list_for_each_entry(connector, &dev->mode_config.connector_list,
9399 base.head) {
9400 connector->base.encoder = &connector->new_encoder->base;
9401 }
f6e5b160 9402
9a935856
DV
9403 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9404 base.head) {
9405 encoder->base.crtc = &encoder->new_crtc->base;
9406 }
7668851f 9407
d3fcc808 9408 for_each_intel_crtc(dev, crtc) {
7668851f
VS
9409 crtc->base.enabled = crtc->new_enabled;
9410 }
9a935856
DV
9411}
9412
050f7aeb 9413static void
eba905b2 9414connected_sink_compute_bpp(struct intel_connector *connector,
050f7aeb
DV
9415 struct intel_crtc_config *pipe_config)
9416{
9417 int bpp = pipe_config->pipe_bpp;
9418
9419 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9420 connector->base.base.id,
c23cc417 9421 connector->base.name);
050f7aeb
DV
9422
9423 /* Don't use an invalid EDID bpc value */
9424 if (connector->base.display_info.bpc &&
9425 connector->base.display_info.bpc * 3 < bpp) {
9426 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9427 bpp, connector->base.display_info.bpc*3);
9428 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9429 }
9430
9431 /* Clamp bpp to 8 on screens without EDID 1.4 */
9432 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9433 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9434 bpp);
9435 pipe_config->pipe_bpp = 24;
9436 }
9437}
9438
4e53c2e0 9439static int
050f7aeb
DV
9440compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9441 struct drm_framebuffer *fb,
9442 struct intel_crtc_config *pipe_config)
4e53c2e0 9443{
050f7aeb
DV
9444 struct drm_device *dev = crtc->base.dev;
9445 struct intel_connector *connector;
4e53c2e0
DV
9446 int bpp;
9447
d42264b1
DV
9448 switch (fb->pixel_format) {
9449 case DRM_FORMAT_C8:
4e53c2e0
DV
9450 bpp = 8*3; /* since we go through a colormap */
9451 break;
d42264b1
DV
9452 case DRM_FORMAT_XRGB1555:
9453 case DRM_FORMAT_ARGB1555:
9454 /* checked in intel_framebuffer_init already */
9455 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
9456 return -EINVAL;
9457 case DRM_FORMAT_RGB565:
4e53c2e0
DV
9458 bpp = 6*3; /* min is 18bpp */
9459 break;
d42264b1
DV
9460 case DRM_FORMAT_XBGR8888:
9461 case DRM_FORMAT_ABGR8888:
9462 /* checked in intel_framebuffer_init already */
9463 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
9464 return -EINVAL;
9465 case DRM_FORMAT_XRGB8888:
9466 case DRM_FORMAT_ARGB8888:
4e53c2e0
DV
9467 bpp = 8*3;
9468 break;
d42264b1
DV
9469 case DRM_FORMAT_XRGB2101010:
9470 case DRM_FORMAT_ARGB2101010:
9471 case DRM_FORMAT_XBGR2101010:
9472 case DRM_FORMAT_ABGR2101010:
9473 /* checked in intel_framebuffer_init already */
9474 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
baba133a 9475 return -EINVAL;
4e53c2e0
DV
9476 bpp = 10*3;
9477 break;
baba133a 9478 /* TODO: gen4+ supports 16 bpc floating point, too. */
4e53c2e0
DV
9479 default:
9480 DRM_DEBUG_KMS("unsupported depth\n");
9481 return -EINVAL;
9482 }
9483
4e53c2e0
DV
9484 pipe_config->pipe_bpp = bpp;
9485
9486 /* Clamp display bpp to EDID value */
9487 list_for_each_entry(connector, &dev->mode_config.connector_list,
050f7aeb 9488 base.head) {
1b829e05
DV
9489 if (!connector->new_encoder ||
9490 connector->new_encoder->new_crtc != crtc)
4e53c2e0
DV
9491 continue;
9492
050f7aeb 9493 connected_sink_compute_bpp(connector, pipe_config);
4e53c2e0
DV
9494 }
9495
9496 return bpp;
9497}
9498
644db711
DV
9499static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
9500{
9501 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
9502 "type: 0x%x flags: 0x%x\n",
1342830c 9503 mode->crtc_clock,
644db711
DV
9504 mode->crtc_hdisplay, mode->crtc_hsync_start,
9505 mode->crtc_hsync_end, mode->crtc_htotal,
9506 mode->crtc_vdisplay, mode->crtc_vsync_start,
9507 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
9508}
9509
c0b03411
DV
9510static void intel_dump_pipe_config(struct intel_crtc *crtc,
9511 struct intel_crtc_config *pipe_config,
9512 const char *context)
9513{
9514 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
9515 context, pipe_name(crtc->pipe));
9516
9517 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
9518 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
9519 pipe_config->pipe_bpp, pipe_config->dither);
9520 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9521 pipe_config->has_pch_encoder,
9522 pipe_config->fdi_lanes,
9523 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
9524 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
9525 pipe_config->fdi_m_n.tu);
eb14cb74
VS
9526 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9527 pipe_config->has_dp_encoder,
9528 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
9529 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
9530 pipe_config->dp_m_n.tu);
c0b03411
DV
9531 DRM_DEBUG_KMS("requested mode:\n");
9532 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
9533 DRM_DEBUG_KMS("adjusted mode:\n");
9534 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
644db711 9535 intel_dump_crtc_timings(&pipe_config->adjusted_mode);
d71b8d4a 9536 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
37327abd
VS
9537 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
9538 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
c0b03411
DV
9539 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
9540 pipe_config->gmch_pfit.control,
9541 pipe_config->gmch_pfit.pgm_ratios,
9542 pipe_config->gmch_pfit.lvds_border_bits);
fd4daa9c 9543 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
c0b03411 9544 pipe_config->pch_pfit.pos,
fd4daa9c
CW
9545 pipe_config->pch_pfit.size,
9546 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
42db64ef 9547 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
cf532bb2 9548 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
c0b03411
DV
9549}
9550
bc079e8b
VS
9551static bool encoders_cloneable(const struct intel_encoder *a,
9552 const struct intel_encoder *b)
accfc0c5 9553{
bc079e8b
VS
9554 /* masks could be asymmetric, so check both ways */
9555 return a == b || (a->cloneable & (1 << b->type) &&
9556 b->cloneable & (1 << a->type));
9557}
9558
9559static bool check_single_encoder_cloning(struct intel_crtc *crtc,
9560 struct intel_encoder *encoder)
9561{
9562 struct drm_device *dev = crtc->base.dev;
9563 struct intel_encoder *source_encoder;
9564
9565 list_for_each_entry(source_encoder,
9566 &dev->mode_config.encoder_list, base.head) {
9567 if (source_encoder->new_crtc != crtc)
9568 continue;
9569
9570 if (!encoders_cloneable(encoder, source_encoder))
9571 return false;
9572 }
9573
9574 return true;
9575}
9576
9577static bool check_encoder_cloning(struct intel_crtc *crtc)
9578{
9579 struct drm_device *dev = crtc->base.dev;
accfc0c5
DV
9580 struct intel_encoder *encoder;
9581
bc079e8b
VS
9582 list_for_each_entry(encoder,
9583 &dev->mode_config.encoder_list, base.head) {
9584 if (encoder->new_crtc != crtc)
accfc0c5
DV
9585 continue;
9586
bc079e8b
VS
9587 if (!check_single_encoder_cloning(crtc, encoder))
9588 return false;
accfc0c5
DV
9589 }
9590
bc079e8b 9591 return true;
accfc0c5
DV
9592}
9593
b8cecdf5
DV
9594static struct intel_crtc_config *
9595intel_modeset_pipe_config(struct drm_crtc *crtc,
4e53c2e0 9596 struct drm_framebuffer *fb,
b8cecdf5 9597 struct drm_display_mode *mode)
ee7b9f93 9598{
7758a113 9599 struct drm_device *dev = crtc->dev;
7758a113 9600 struct intel_encoder *encoder;
b8cecdf5 9601 struct intel_crtc_config *pipe_config;
e29c22c0
DV
9602 int plane_bpp, ret = -EINVAL;
9603 bool retry = true;
ee7b9f93 9604
bc079e8b 9605 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
accfc0c5
DV
9606 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
9607 return ERR_PTR(-EINVAL);
9608 }
9609
b8cecdf5
DV
9610 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
9611 if (!pipe_config)
7758a113
DV
9612 return ERR_PTR(-ENOMEM);
9613
b8cecdf5
DV
9614 drm_mode_copy(&pipe_config->adjusted_mode, mode);
9615 drm_mode_copy(&pipe_config->requested_mode, mode);
37327abd 9616
e143a21c
DV
9617 pipe_config->cpu_transcoder =
9618 (enum transcoder) to_intel_crtc(crtc)->pipe;
c0d43d62 9619 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
b8cecdf5 9620
2960bc9c
ID
9621 /*
9622 * Sanitize sync polarity flags based on requested ones. If neither
9623 * positive or negative polarity is requested, treat this as meaning
9624 * negative polarity.
9625 */
9626 if (!(pipe_config->adjusted_mode.flags &
9627 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
9628 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
9629
9630 if (!(pipe_config->adjusted_mode.flags &
9631 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
9632 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
9633
050f7aeb
DV
9634 /* Compute a starting value for pipe_config->pipe_bpp taking the source
9635 * plane pixel format and any sink constraints into account. Returns the
9636 * source plane bpp so that dithering can be selected on mismatches
9637 * after encoders and crtc also have had their say. */
9638 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
9639 fb, pipe_config);
4e53c2e0
DV
9640 if (plane_bpp < 0)
9641 goto fail;
9642
e41a56be
VS
9643 /*
9644 * Determine the real pipe dimensions. Note that stereo modes can
9645 * increase the actual pipe size due to the frame doubling and
9646 * insertion of additional space for blanks between the frame. This
9647 * is stored in the crtc timings. We use the requested mode to do this
9648 * computation to clearly distinguish it from the adjusted mode, which
9649 * can be changed by the connectors in the below retry loop.
9650 */
9651 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
9652 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
9653 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
9654
e29c22c0 9655encoder_retry:
ef1b460d 9656 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 9657 pipe_config->port_clock = 0;
ef1b460d 9658 pipe_config->pixel_multiplier = 1;
ff9a6750 9659
135c81b8 9660 /* Fill in default crtc timings, allow encoders to overwrite them. */
6ce70f5e 9661 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
135c81b8 9662
7758a113
DV
9663 /* Pass our mode to the connectors and the CRTC to give them a chance to
9664 * adjust it according to limitations or connector properties, and also
9665 * a chance to reject the mode entirely.
47f1c6c9 9666 */
7758a113
DV
9667 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9668 base.head) {
47f1c6c9 9669
7758a113
DV
9670 if (&encoder->new_crtc->base != crtc)
9671 continue;
7ae89233 9672
efea6e8e
DV
9673 if (!(encoder->compute_config(encoder, pipe_config))) {
9674 DRM_DEBUG_KMS("Encoder config failure\n");
7758a113
DV
9675 goto fail;
9676 }
ee7b9f93 9677 }
47f1c6c9 9678
ff9a6750
DV
9679 /* Set default port clock if not overwritten by the encoder. Needs to be
9680 * done afterwards in case the encoder adjusts the mode. */
9681 if (!pipe_config->port_clock)
241bfc38
DL
9682 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
9683 * pipe_config->pixel_multiplier;
ff9a6750 9684
a43f6e0f 9685 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 9686 if (ret < 0) {
7758a113
DV
9687 DRM_DEBUG_KMS("CRTC fixup failed\n");
9688 goto fail;
ee7b9f93 9689 }
e29c22c0
DV
9690
9691 if (ret == RETRY) {
9692 if (WARN(!retry, "loop in pipe configuration computation\n")) {
9693 ret = -EINVAL;
9694 goto fail;
9695 }
9696
9697 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
9698 retry = false;
9699 goto encoder_retry;
9700 }
9701
4e53c2e0
DV
9702 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
9703 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
9704 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
9705
b8cecdf5 9706 return pipe_config;
7758a113 9707fail:
b8cecdf5 9708 kfree(pipe_config);
e29c22c0 9709 return ERR_PTR(ret);
ee7b9f93 9710}
47f1c6c9 9711
e2e1ed41
DV
9712/* Computes which crtcs are affected and sets the relevant bits in the mask. For
9713 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
9714static void
9715intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
9716 unsigned *prepare_pipes, unsigned *disable_pipes)
79e53945
JB
9717{
9718 struct intel_crtc *intel_crtc;
e2e1ed41
DV
9719 struct drm_device *dev = crtc->dev;
9720 struct intel_encoder *encoder;
9721 struct intel_connector *connector;
9722 struct drm_crtc *tmp_crtc;
79e53945 9723
e2e1ed41 9724 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
79e53945 9725
e2e1ed41
DV
9726 /* Check which crtcs have changed outputs connected to them, these need
9727 * to be part of the prepare_pipes mask. We don't (yet) support global
9728 * modeset across multiple crtcs, so modeset_pipes will only have one
9729 * bit set at most. */
9730 list_for_each_entry(connector, &dev->mode_config.connector_list,
9731 base.head) {
9732 if (connector->base.encoder == &connector->new_encoder->base)
9733 continue;
79e53945 9734
e2e1ed41
DV
9735 if (connector->base.encoder) {
9736 tmp_crtc = connector->base.encoder->crtc;
9737
9738 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9739 }
9740
9741 if (connector->new_encoder)
9742 *prepare_pipes |=
9743 1 << connector->new_encoder->new_crtc->pipe;
79e53945
JB
9744 }
9745
e2e1ed41
DV
9746 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9747 base.head) {
9748 if (encoder->base.crtc == &encoder->new_crtc->base)
9749 continue;
9750
9751 if (encoder->base.crtc) {
9752 tmp_crtc = encoder->base.crtc;
9753
9754 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9755 }
9756
9757 if (encoder->new_crtc)
9758 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
80824003
JB
9759 }
9760
7668851f 9761 /* Check for pipes that will be enabled/disabled ... */
d3fcc808 9762 for_each_intel_crtc(dev, intel_crtc) {
7668851f 9763 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
e2e1ed41 9764 continue;
7e7d76c3 9765
7668851f 9766 if (!intel_crtc->new_enabled)
e2e1ed41 9767 *disable_pipes |= 1 << intel_crtc->pipe;
7668851f
VS
9768 else
9769 *prepare_pipes |= 1 << intel_crtc->pipe;
7e7d76c3
JB
9770 }
9771
e2e1ed41
DV
9772
9773 /* set_mode is also used to update properties on life display pipes. */
9774 intel_crtc = to_intel_crtc(crtc);
7668851f 9775 if (intel_crtc->new_enabled)
e2e1ed41
DV
9776 *prepare_pipes |= 1 << intel_crtc->pipe;
9777
b6c5164d
DV
9778 /*
9779 * For simplicity do a full modeset on any pipe where the output routing
9780 * changed. We could be more clever, but that would require us to be
9781 * more careful with calling the relevant encoder->mode_set functions.
9782 */
e2e1ed41
DV
9783 if (*prepare_pipes)
9784 *modeset_pipes = *prepare_pipes;
9785
9786 /* ... and mask these out. */
9787 *modeset_pipes &= ~(*disable_pipes);
9788 *prepare_pipes &= ~(*disable_pipes);
b6c5164d
DV
9789
9790 /*
9791 * HACK: We don't (yet) fully support global modesets. intel_set_config
9792 * obies this rule, but the modeset restore mode of
9793 * intel_modeset_setup_hw_state does not.
9794 */
9795 *modeset_pipes &= 1 << intel_crtc->pipe;
9796 *prepare_pipes &= 1 << intel_crtc->pipe;
e3641d3f
DV
9797
9798 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
9799 *modeset_pipes, *prepare_pipes, *disable_pipes);
47f1c6c9 9800}
79e53945 9801
ea9d758d 9802static bool intel_crtc_in_use(struct drm_crtc *crtc)
f6e5b160 9803{
ea9d758d 9804 struct drm_encoder *encoder;
f6e5b160 9805 struct drm_device *dev = crtc->dev;
f6e5b160 9806
ea9d758d
DV
9807 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
9808 if (encoder->crtc == crtc)
9809 return true;
9810
9811 return false;
9812}
9813
9814static void
9815intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
9816{
9817 struct intel_encoder *intel_encoder;
9818 struct intel_crtc *intel_crtc;
9819 struct drm_connector *connector;
9820
9821 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
9822 base.head) {
9823 if (!intel_encoder->base.crtc)
9824 continue;
9825
9826 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
9827
9828 if (prepare_pipes & (1 << intel_crtc->pipe))
9829 intel_encoder->connectors_active = false;
9830 }
9831
9832 intel_modeset_commit_output_state(dev);
9833
7668851f 9834 /* Double check state. */
d3fcc808 9835 for_each_intel_crtc(dev, intel_crtc) {
7668851f 9836 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
7bd0a8e7
VS
9837 WARN_ON(intel_crtc->new_config &&
9838 intel_crtc->new_config != &intel_crtc->config);
9839 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
ea9d758d
DV
9840 }
9841
9842 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
9843 if (!connector->encoder || !connector->encoder->crtc)
9844 continue;
9845
9846 intel_crtc = to_intel_crtc(connector->encoder->crtc);
9847
9848 if (prepare_pipes & (1 << intel_crtc->pipe)) {
68d34720
DV
9849 struct drm_property *dpms_property =
9850 dev->mode_config.dpms_property;
9851
ea9d758d 9852 connector->dpms = DRM_MODE_DPMS_ON;
662595df 9853 drm_object_property_set_value(&connector->base,
68d34720
DV
9854 dpms_property,
9855 DRM_MODE_DPMS_ON);
ea9d758d
DV
9856
9857 intel_encoder = to_intel_encoder(connector->encoder);
9858 intel_encoder->connectors_active = true;
9859 }
9860 }
9861
9862}
9863
3bd26263 9864static bool intel_fuzzy_clock_check(int clock1, int clock2)
f1f644dc 9865{
3bd26263 9866 int diff;
f1f644dc
JB
9867
9868 if (clock1 == clock2)
9869 return true;
9870
9871 if (!clock1 || !clock2)
9872 return false;
9873
9874 diff = abs(clock1 - clock2);
9875
9876 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
9877 return true;
9878
9879 return false;
9880}
9881
25c5b266
DV
9882#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
9883 list_for_each_entry((intel_crtc), \
9884 &(dev)->mode_config.crtc_list, \
9885 base.head) \
0973f18f 9886 if (mask & (1 <<(intel_crtc)->pipe))
25c5b266 9887
0e8ffe1b 9888static bool
2fa2fe9a
DV
9889intel_pipe_config_compare(struct drm_device *dev,
9890 struct intel_crtc_config *current_config,
0e8ffe1b
DV
9891 struct intel_crtc_config *pipe_config)
9892{
66e985c0
DV
9893#define PIPE_CONF_CHECK_X(name) \
9894 if (current_config->name != pipe_config->name) { \
9895 DRM_ERROR("mismatch in " #name " " \
9896 "(expected 0x%08x, found 0x%08x)\n", \
9897 current_config->name, \
9898 pipe_config->name); \
9899 return false; \
9900 }
9901
08a24034
DV
9902#define PIPE_CONF_CHECK_I(name) \
9903 if (current_config->name != pipe_config->name) { \
9904 DRM_ERROR("mismatch in " #name " " \
9905 "(expected %i, found %i)\n", \
9906 current_config->name, \
9907 pipe_config->name); \
9908 return false; \
88adfff1
DV
9909 }
9910
1bd1bd80
DV
9911#define PIPE_CONF_CHECK_FLAGS(name, mask) \
9912 if ((current_config->name ^ pipe_config->name) & (mask)) { \
6f02488e 9913 DRM_ERROR("mismatch in " #name "(" #mask ") " \
1bd1bd80
DV
9914 "(expected %i, found %i)\n", \
9915 current_config->name & (mask), \
9916 pipe_config->name & (mask)); \
9917 return false; \
9918 }
9919
5e550656
VS
9920#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
9921 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
9922 DRM_ERROR("mismatch in " #name " " \
9923 "(expected %i, found %i)\n", \
9924 current_config->name, \
9925 pipe_config->name); \
9926 return false; \
9927 }
9928
bb760063
DV
9929#define PIPE_CONF_QUIRK(quirk) \
9930 ((current_config->quirks | pipe_config->quirks) & (quirk))
9931
eccb140b
DV
9932 PIPE_CONF_CHECK_I(cpu_transcoder);
9933
08a24034
DV
9934 PIPE_CONF_CHECK_I(has_pch_encoder);
9935 PIPE_CONF_CHECK_I(fdi_lanes);
72419203
DV
9936 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
9937 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
9938 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
9939 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
9940 PIPE_CONF_CHECK_I(fdi_m_n.tu);
08a24034 9941
eb14cb74
VS
9942 PIPE_CONF_CHECK_I(has_dp_encoder);
9943 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
9944 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
9945 PIPE_CONF_CHECK_I(dp_m_n.link_m);
9946 PIPE_CONF_CHECK_I(dp_m_n.link_n);
9947 PIPE_CONF_CHECK_I(dp_m_n.tu);
9948
1bd1bd80
DV
9949 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
9950 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
9951 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
9952 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
9953 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
9954 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
9955
9956 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
9957 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
9958 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
9959 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
9960 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
9961 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
9962
c93f54cf 9963 PIPE_CONF_CHECK_I(pixel_multiplier);
6897b4b5 9964 PIPE_CONF_CHECK_I(has_hdmi_sink);
b5a9fa09
DV
9965 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
9966 IS_VALLEYVIEW(dev))
9967 PIPE_CONF_CHECK_I(limited_color_range);
6c49f241 9968
9ed109a7
DV
9969 PIPE_CONF_CHECK_I(has_audio);
9970
1bd1bd80
DV
9971 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9972 DRM_MODE_FLAG_INTERLACE);
9973
bb760063
DV
9974 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
9975 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9976 DRM_MODE_FLAG_PHSYNC);
9977 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9978 DRM_MODE_FLAG_NHSYNC);
9979 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9980 DRM_MODE_FLAG_PVSYNC);
9981 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9982 DRM_MODE_FLAG_NVSYNC);
9983 }
045ac3b5 9984
37327abd
VS
9985 PIPE_CONF_CHECK_I(pipe_src_w);
9986 PIPE_CONF_CHECK_I(pipe_src_h);
1bd1bd80 9987
9953599b
DV
9988 /*
9989 * FIXME: BIOS likes to set up a cloned config with lvds+external
9990 * screen. Since we don't yet re-compute the pipe config when moving
9991 * just the lvds port away to another pipe the sw tracking won't match.
9992 *
9993 * Proper atomic modesets with recomputed global state will fix this.
9994 * Until then just don't check gmch state for inherited modes.
9995 */
9996 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
9997 PIPE_CONF_CHECK_I(gmch_pfit.control);
9998 /* pfit ratios are autocomputed by the hw on gen4+ */
9999 if (INTEL_INFO(dev)->gen < 4)
10000 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10001 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10002 }
10003
fd4daa9c
CW
10004 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10005 if (current_config->pch_pfit.enabled) {
10006 PIPE_CONF_CHECK_I(pch_pfit.pos);
10007 PIPE_CONF_CHECK_I(pch_pfit.size);
10008 }
2fa2fe9a 10009
e59150dc
JB
10010 /* BDW+ don't expose a synchronous way to read the state */
10011 if (IS_HASWELL(dev))
10012 PIPE_CONF_CHECK_I(ips_enabled);
42db64ef 10013
282740f7
VS
10014 PIPE_CONF_CHECK_I(double_wide);
10015
c0d43d62 10016 PIPE_CONF_CHECK_I(shared_dpll);
66e985c0 10017 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
8bcc2795 10018 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
66e985c0
DV
10019 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10020 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
c0d43d62 10021
42571aef
VS
10022 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10023 PIPE_CONF_CHECK_I(pipe_bpp);
10024
a9a7e98a
JB
10025 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
10026 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
5e550656 10027
66e985c0 10028#undef PIPE_CONF_CHECK_X
08a24034 10029#undef PIPE_CONF_CHECK_I
1bd1bd80 10030#undef PIPE_CONF_CHECK_FLAGS
5e550656 10031#undef PIPE_CONF_CHECK_CLOCK_FUZZY
bb760063 10032#undef PIPE_CONF_QUIRK
88adfff1 10033
0e8ffe1b
DV
10034 return true;
10035}
10036
91d1b4bd
DV
10037static void
10038check_connector_state(struct drm_device *dev)
8af6cf88 10039{
8af6cf88
DV
10040 struct intel_connector *connector;
10041
10042 list_for_each_entry(connector, &dev->mode_config.connector_list,
10043 base.head) {
10044 /* This also checks the encoder/connector hw state with the
10045 * ->get_hw_state callbacks. */
10046 intel_connector_check_state(connector);
10047
10048 WARN(&connector->new_encoder->base != connector->base.encoder,
10049 "connector's staged encoder doesn't match current encoder\n");
10050 }
91d1b4bd
DV
10051}
10052
10053static void
10054check_encoder_state(struct drm_device *dev)
10055{
10056 struct intel_encoder *encoder;
10057 struct intel_connector *connector;
8af6cf88
DV
10058
10059 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10060 base.head) {
10061 bool enabled = false;
10062 bool active = false;
10063 enum pipe pipe, tracked_pipe;
10064
10065 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10066 encoder->base.base.id,
8e329a03 10067 encoder->base.name);
8af6cf88
DV
10068
10069 WARN(&encoder->new_crtc->base != encoder->base.crtc,
10070 "encoder's stage crtc doesn't match current crtc\n");
10071 WARN(encoder->connectors_active && !encoder->base.crtc,
10072 "encoder's active_connectors set, but no crtc\n");
10073
10074 list_for_each_entry(connector, &dev->mode_config.connector_list,
10075 base.head) {
10076 if (connector->base.encoder != &encoder->base)
10077 continue;
10078 enabled = true;
10079 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10080 active = true;
10081 }
10082 WARN(!!encoder->base.crtc != enabled,
10083 "encoder's enabled state mismatch "
10084 "(expected %i, found %i)\n",
10085 !!encoder->base.crtc, enabled);
10086 WARN(active && !encoder->base.crtc,
10087 "active encoder with no crtc\n");
10088
10089 WARN(encoder->connectors_active != active,
10090 "encoder's computed active state doesn't match tracked active state "
10091 "(expected %i, found %i)\n", active, encoder->connectors_active);
10092
10093 active = encoder->get_hw_state(encoder, &pipe);
10094 WARN(active != encoder->connectors_active,
10095 "encoder's hw state doesn't match sw tracking "
10096 "(expected %i, found %i)\n",
10097 encoder->connectors_active, active);
10098
10099 if (!encoder->base.crtc)
10100 continue;
10101
10102 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
10103 WARN(active && pipe != tracked_pipe,
10104 "active encoder's pipe doesn't match"
10105 "(expected %i, found %i)\n",
10106 tracked_pipe, pipe);
10107
10108 }
91d1b4bd
DV
10109}
10110
10111static void
10112check_crtc_state(struct drm_device *dev)
10113{
fbee40df 10114 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
10115 struct intel_crtc *crtc;
10116 struct intel_encoder *encoder;
10117 struct intel_crtc_config pipe_config;
8af6cf88 10118
d3fcc808 10119 for_each_intel_crtc(dev, crtc) {
8af6cf88
DV
10120 bool enabled = false;
10121 bool active = false;
10122
045ac3b5
JB
10123 memset(&pipe_config, 0, sizeof(pipe_config));
10124
8af6cf88
DV
10125 DRM_DEBUG_KMS("[CRTC:%d]\n",
10126 crtc->base.base.id);
10127
10128 WARN(crtc->active && !crtc->base.enabled,
10129 "active crtc, but not enabled in sw tracking\n");
10130
10131 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10132 base.head) {
10133 if (encoder->base.crtc != &crtc->base)
10134 continue;
10135 enabled = true;
10136 if (encoder->connectors_active)
10137 active = true;
10138 }
6c49f241 10139
8af6cf88
DV
10140 WARN(active != crtc->active,
10141 "crtc's computed active state doesn't match tracked active state "
10142 "(expected %i, found %i)\n", active, crtc->active);
10143 WARN(enabled != crtc->base.enabled,
10144 "crtc's computed enabled state doesn't match tracked enabled state "
10145 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10146
0e8ffe1b
DV
10147 active = dev_priv->display.get_pipe_config(crtc,
10148 &pipe_config);
d62cf62a
DV
10149
10150 /* hw state is inconsistent with the pipe A quirk */
10151 if (crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
10152 active = crtc->active;
10153
6c49f241
DV
10154 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10155 base.head) {
3eaba51c 10156 enum pipe pipe;
6c49f241
DV
10157 if (encoder->base.crtc != &crtc->base)
10158 continue;
1d37b689 10159 if (encoder->get_hw_state(encoder, &pipe))
6c49f241
DV
10160 encoder->get_config(encoder, &pipe_config);
10161 }
10162
0e8ffe1b
DV
10163 WARN(crtc->active != active,
10164 "crtc active state doesn't match with hw state "
10165 "(expected %i, found %i)\n", crtc->active, active);
10166
c0b03411
DV
10167 if (active &&
10168 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
10169 WARN(1, "pipe state doesn't match!\n");
10170 intel_dump_pipe_config(crtc, &pipe_config,
10171 "[hw state]");
10172 intel_dump_pipe_config(crtc, &crtc->config,
10173 "[sw state]");
10174 }
8af6cf88
DV
10175 }
10176}
10177
91d1b4bd
DV
10178static void
10179check_shared_dpll_state(struct drm_device *dev)
10180{
fbee40df 10181 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
10182 struct intel_crtc *crtc;
10183 struct intel_dpll_hw_state dpll_hw_state;
10184 int i;
5358901f
DV
10185
10186 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10187 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10188 int enabled_crtcs = 0, active_crtcs = 0;
10189 bool active;
10190
10191 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10192
10193 DRM_DEBUG_KMS("%s\n", pll->name);
10194
10195 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10196
10197 WARN(pll->active > pll->refcount,
10198 "more active pll users than references: %i vs %i\n",
10199 pll->active, pll->refcount);
10200 WARN(pll->active && !pll->on,
10201 "pll in active use but not on in sw tracking\n");
35c95375
DV
10202 WARN(pll->on && !pll->active,
10203 "pll in on but not on in use in sw tracking\n");
5358901f
DV
10204 WARN(pll->on != active,
10205 "pll on state mismatch (expected %i, found %i)\n",
10206 pll->on, active);
10207
d3fcc808 10208 for_each_intel_crtc(dev, crtc) {
5358901f
DV
10209 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10210 enabled_crtcs++;
10211 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10212 active_crtcs++;
10213 }
10214 WARN(pll->active != active_crtcs,
10215 "pll active crtcs mismatch (expected %i, found %i)\n",
10216 pll->active, active_crtcs);
10217 WARN(pll->refcount != enabled_crtcs,
10218 "pll enabled crtcs mismatch (expected %i, found %i)\n",
10219 pll->refcount, enabled_crtcs);
66e985c0
DV
10220
10221 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
10222 sizeof(dpll_hw_state)),
10223 "pll hw state mismatch\n");
5358901f 10224 }
8af6cf88
DV
10225}
10226
91d1b4bd
DV
10227void
10228intel_modeset_check_state(struct drm_device *dev)
10229{
10230 check_connector_state(dev);
10231 check_encoder_state(dev);
10232 check_crtc_state(dev);
10233 check_shared_dpll_state(dev);
10234}
10235
18442d08
VS
10236void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
10237 int dotclock)
10238{
10239 /*
10240 * FDI already provided one idea for the dotclock.
10241 * Yell if the encoder disagrees.
10242 */
241bfc38 10243 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
18442d08 10244 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
241bfc38 10245 pipe_config->adjusted_mode.crtc_clock, dotclock);
18442d08
VS
10246}
10247
80715b2f
VS
10248static void update_scanline_offset(struct intel_crtc *crtc)
10249{
10250 struct drm_device *dev = crtc->base.dev;
10251
10252 /*
10253 * The scanline counter increments at the leading edge of hsync.
10254 *
10255 * On most platforms it starts counting from vtotal-1 on the
10256 * first active line. That means the scanline counter value is
10257 * always one less than what we would expect. Ie. just after
10258 * start of vblank, which also occurs at start of hsync (on the
10259 * last active line), the scanline counter will read vblank_start-1.
10260 *
10261 * On gen2 the scanline counter starts counting from 1 instead
10262 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
10263 * to keep the value positive), instead of adding one.
10264 *
10265 * On HSW+ the behaviour of the scanline counter depends on the output
10266 * type. For DP ports it behaves like most other platforms, but on HDMI
10267 * there's an extra 1 line difference. So we need to add two instead of
10268 * one to the value.
10269 */
10270 if (IS_GEN2(dev)) {
10271 const struct drm_display_mode *mode = &crtc->config.adjusted_mode;
10272 int vtotal;
10273
10274 vtotal = mode->crtc_vtotal;
10275 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
10276 vtotal /= 2;
10277
10278 crtc->scanline_offset = vtotal - 1;
10279 } else if (HAS_DDI(dev) &&
10280 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI)) {
10281 crtc->scanline_offset = 2;
10282 } else
10283 crtc->scanline_offset = 1;
10284}
10285
f30da187
DV
10286static int __intel_set_mode(struct drm_crtc *crtc,
10287 struct drm_display_mode *mode,
10288 int x, int y, struct drm_framebuffer *fb)
a6778b3c
DV
10289{
10290 struct drm_device *dev = crtc->dev;
fbee40df 10291 struct drm_i915_private *dev_priv = dev->dev_private;
4b4b9238 10292 struct drm_display_mode *saved_mode;
b8cecdf5 10293 struct intel_crtc_config *pipe_config = NULL;
25c5b266
DV
10294 struct intel_crtc *intel_crtc;
10295 unsigned disable_pipes, prepare_pipes, modeset_pipes;
c0c36b94 10296 int ret = 0;
a6778b3c 10297
4b4b9238 10298 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
c0c36b94
CW
10299 if (!saved_mode)
10300 return -ENOMEM;
a6778b3c 10301
e2e1ed41 10302 intel_modeset_affected_pipes(crtc, &modeset_pipes,
25c5b266
DV
10303 &prepare_pipes, &disable_pipes);
10304
3ac18232 10305 *saved_mode = crtc->mode;
a6778b3c 10306
25c5b266
DV
10307 /* Hack: Because we don't (yet) support global modeset on multiple
10308 * crtcs, we don't keep track of the new mode for more than one crtc.
10309 * Hence simply check whether any bit is set in modeset_pipes in all the
10310 * pieces of code that are not yet converted to deal with mutliple crtcs
10311 * changing their mode at the same time. */
25c5b266 10312 if (modeset_pipes) {
4e53c2e0 10313 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
b8cecdf5
DV
10314 if (IS_ERR(pipe_config)) {
10315 ret = PTR_ERR(pipe_config);
10316 pipe_config = NULL;
10317
3ac18232 10318 goto out;
25c5b266 10319 }
c0b03411
DV
10320 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
10321 "[modeset]");
50741abc 10322 to_intel_crtc(crtc)->new_config = pipe_config;
25c5b266 10323 }
a6778b3c 10324
30a970c6
JB
10325 /*
10326 * See if the config requires any additional preparation, e.g.
10327 * to adjust global state with pipes off. We need to do this
10328 * here so we can get the modeset_pipe updated config for the new
10329 * mode set on this crtc. For other crtcs we need to use the
10330 * adjusted_mode bits in the crtc directly.
10331 */
c164f833 10332 if (IS_VALLEYVIEW(dev)) {
2f2d7aa1 10333 valleyview_modeset_global_pipes(dev, &prepare_pipes);
30a970c6 10334
c164f833
VS
10335 /* may have added more to prepare_pipes than we should */
10336 prepare_pipes &= ~disable_pipes;
10337 }
10338
460da916
DV
10339 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
10340 intel_crtc_disable(&intel_crtc->base);
10341
ea9d758d
DV
10342 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10343 if (intel_crtc->base.enabled)
10344 dev_priv->display.crtc_disable(&intel_crtc->base);
10345 }
a6778b3c 10346
6c4c86f5
DV
10347 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
10348 * to set it here already despite that we pass it down the callchain.
f6e5b160 10349 */
b8cecdf5 10350 if (modeset_pipes) {
25c5b266 10351 crtc->mode = *mode;
b8cecdf5
DV
10352 /* mode_set/enable/disable functions rely on a correct pipe
10353 * config. */
10354 to_intel_crtc(crtc)->config = *pipe_config;
50741abc 10355 to_intel_crtc(crtc)->new_config = &to_intel_crtc(crtc)->config;
c326c0a9
VS
10356
10357 /*
10358 * Calculate and store various constants which
10359 * are later needed by vblank and swap-completion
10360 * timestamping. They are derived from true hwmode.
10361 */
10362 drm_calc_timestamping_constants(crtc,
10363 &pipe_config->adjusted_mode);
b8cecdf5 10364 }
7758a113 10365
ea9d758d
DV
10366 /* Only after disabling all output pipelines that will be changed can we
10367 * update the the output configuration. */
10368 intel_modeset_update_state(dev, prepare_pipes);
f6e5b160 10369
47fab737
DV
10370 if (dev_priv->display.modeset_global_resources)
10371 dev_priv->display.modeset_global_resources(dev);
10372
a6778b3c
DV
10373 /* Set up the DPLL and any encoders state that needs to adjust or depend
10374 * on the DPLL.
f6e5b160 10375 */
25c5b266 10376 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
4c10794f
DV
10377 struct drm_framebuffer *old_fb;
10378
10379 mutex_lock(&dev->struct_mutex);
10380 ret = intel_pin_and_fence_fb_obj(dev,
10381 to_intel_framebuffer(fb)->obj,
10382 NULL);
10383 if (ret != 0) {
10384 DRM_ERROR("pin & fence failed\n");
10385 mutex_unlock(&dev->struct_mutex);
10386 goto done;
10387 }
10388 old_fb = crtc->primary->fb;
10389 if (old_fb)
10390 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
10391 mutex_unlock(&dev->struct_mutex);
10392
10393 crtc->primary->fb = fb;
10394 crtc->x = x;
10395 crtc->y = y;
10396
4271b753
DV
10397 ret = dev_priv->display.crtc_mode_set(&intel_crtc->base,
10398 x, y, fb);
c0c36b94
CW
10399 if (ret)
10400 goto done;
a6778b3c
DV
10401 }
10402
10403 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
80715b2f
VS
10404 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10405 update_scanline_offset(intel_crtc);
10406
25c5b266 10407 dev_priv->display.crtc_enable(&intel_crtc->base);
80715b2f 10408 }
a6778b3c 10409
a6778b3c
DV
10410 /* FIXME: add subpixel order */
10411done:
4b4b9238 10412 if (ret && crtc->enabled)
3ac18232 10413 crtc->mode = *saved_mode;
a6778b3c 10414
3ac18232 10415out:
b8cecdf5 10416 kfree(pipe_config);
3ac18232 10417 kfree(saved_mode);
a6778b3c 10418 return ret;
f6e5b160
CW
10419}
10420
e7457a9a
DL
10421static int intel_set_mode(struct drm_crtc *crtc,
10422 struct drm_display_mode *mode,
10423 int x, int y, struct drm_framebuffer *fb)
f30da187
DV
10424{
10425 int ret;
10426
10427 ret = __intel_set_mode(crtc, mode, x, y, fb);
10428
10429 if (ret == 0)
10430 intel_modeset_check_state(crtc->dev);
10431
10432 return ret;
10433}
10434
c0c36b94
CW
10435void intel_crtc_restore_mode(struct drm_crtc *crtc)
10436{
f4510a27 10437 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
c0c36b94
CW
10438}
10439
25c5b266
DV
10440#undef for_each_intel_crtc_masked
10441
d9e55608
DV
10442static void intel_set_config_free(struct intel_set_config *config)
10443{
10444 if (!config)
10445 return;
10446
1aa4b628
DV
10447 kfree(config->save_connector_encoders);
10448 kfree(config->save_encoder_crtcs);
7668851f 10449 kfree(config->save_crtc_enabled);
d9e55608
DV
10450 kfree(config);
10451}
10452
85f9eb71
DV
10453static int intel_set_config_save_state(struct drm_device *dev,
10454 struct intel_set_config *config)
10455{
7668851f 10456 struct drm_crtc *crtc;
85f9eb71
DV
10457 struct drm_encoder *encoder;
10458 struct drm_connector *connector;
10459 int count;
10460
7668851f
VS
10461 config->save_crtc_enabled =
10462 kcalloc(dev->mode_config.num_crtc,
10463 sizeof(bool), GFP_KERNEL);
10464 if (!config->save_crtc_enabled)
10465 return -ENOMEM;
10466
1aa4b628
DV
10467 config->save_encoder_crtcs =
10468 kcalloc(dev->mode_config.num_encoder,
10469 sizeof(struct drm_crtc *), GFP_KERNEL);
10470 if (!config->save_encoder_crtcs)
85f9eb71
DV
10471 return -ENOMEM;
10472
1aa4b628
DV
10473 config->save_connector_encoders =
10474 kcalloc(dev->mode_config.num_connector,
10475 sizeof(struct drm_encoder *), GFP_KERNEL);
10476 if (!config->save_connector_encoders)
85f9eb71
DV
10477 return -ENOMEM;
10478
10479 /* Copy data. Note that driver private data is not affected.
10480 * Should anything bad happen only the expected state is
10481 * restored, not the drivers personal bookkeeping.
10482 */
7668851f 10483 count = 0;
70e1e0ec 10484 for_each_crtc(dev, crtc) {
7668851f
VS
10485 config->save_crtc_enabled[count++] = crtc->enabled;
10486 }
10487
85f9eb71
DV
10488 count = 0;
10489 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
1aa4b628 10490 config->save_encoder_crtcs[count++] = encoder->crtc;
85f9eb71
DV
10491 }
10492
10493 count = 0;
10494 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1aa4b628 10495 config->save_connector_encoders[count++] = connector->encoder;
85f9eb71
DV
10496 }
10497
10498 return 0;
10499}
10500
10501static void intel_set_config_restore_state(struct drm_device *dev,
10502 struct intel_set_config *config)
10503{
7668851f 10504 struct intel_crtc *crtc;
9a935856
DV
10505 struct intel_encoder *encoder;
10506 struct intel_connector *connector;
85f9eb71
DV
10507 int count;
10508
7668851f 10509 count = 0;
d3fcc808 10510 for_each_intel_crtc(dev, crtc) {
7668851f 10511 crtc->new_enabled = config->save_crtc_enabled[count++];
7bd0a8e7
VS
10512
10513 if (crtc->new_enabled)
10514 crtc->new_config = &crtc->config;
10515 else
10516 crtc->new_config = NULL;
7668851f
VS
10517 }
10518
85f9eb71 10519 count = 0;
9a935856
DV
10520 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10521 encoder->new_crtc =
10522 to_intel_crtc(config->save_encoder_crtcs[count++]);
85f9eb71
DV
10523 }
10524
10525 count = 0;
9a935856
DV
10526 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10527 connector->new_encoder =
10528 to_intel_encoder(config->save_connector_encoders[count++]);
85f9eb71
DV
10529 }
10530}
10531
e3de42b6 10532static bool
2e57f47d 10533is_crtc_connector_off(struct drm_mode_set *set)
e3de42b6
ID
10534{
10535 int i;
10536
2e57f47d
CW
10537 if (set->num_connectors == 0)
10538 return false;
10539
10540 if (WARN_ON(set->connectors == NULL))
10541 return false;
10542
10543 for (i = 0; i < set->num_connectors; i++)
10544 if (set->connectors[i]->encoder &&
10545 set->connectors[i]->encoder->crtc == set->crtc &&
10546 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
e3de42b6
ID
10547 return true;
10548
10549 return false;
10550}
10551
5e2b584e
DV
10552static void
10553intel_set_config_compute_mode_changes(struct drm_mode_set *set,
10554 struct intel_set_config *config)
10555{
10556
10557 /* We should be able to check here if the fb has the same properties
10558 * and then just flip_or_move it */
2e57f47d
CW
10559 if (is_crtc_connector_off(set)) {
10560 config->mode_changed = true;
f4510a27 10561 } else if (set->crtc->primary->fb != set->fb) {
5e2b584e 10562 /* If we have no fb then treat it as a full mode set */
f4510a27 10563 if (set->crtc->primary->fb == NULL) {
319d9827
JB
10564 struct intel_crtc *intel_crtc =
10565 to_intel_crtc(set->crtc);
10566
d330a953 10567 if (intel_crtc->active && i915.fastboot) {
319d9827
JB
10568 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
10569 config->fb_changed = true;
10570 } else {
10571 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
10572 config->mode_changed = true;
10573 }
5e2b584e
DV
10574 } else if (set->fb == NULL) {
10575 config->mode_changed = true;
72f4901e 10576 } else if (set->fb->pixel_format !=
f4510a27 10577 set->crtc->primary->fb->pixel_format) {
5e2b584e 10578 config->mode_changed = true;
e3de42b6 10579 } else {
5e2b584e 10580 config->fb_changed = true;
e3de42b6 10581 }
5e2b584e
DV
10582 }
10583
835c5873 10584 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
5e2b584e
DV
10585 config->fb_changed = true;
10586
10587 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
10588 DRM_DEBUG_KMS("modes are different, full mode set\n");
10589 drm_mode_debug_printmodeline(&set->crtc->mode);
10590 drm_mode_debug_printmodeline(set->mode);
10591 config->mode_changed = true;
10592 }
a1d95703
CW
10593
10594 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
10595 set->crtc->base.id, config->mode_changed, config->fb_changed);
5e2b584e
DV
10596}
10597
2e431051 10598static int
9a935856
DV
10599intel_modeset_stage_output_state(struct drm_device *dev,
10600 struct drm_mode_set *set,
10601 struct intel_set_config *config)
50f56119 10602{
9a935856
DV
10603 struct intel_connector *connector;
10604 struct intel_encoder *encoder;
7668851f 10605 struct intel_crtc *crtc;
f3f08572 10606 int ro;
50f56119 10607
9abdda74 10608 /* The upper layers ensure that we either disable a crtc or have a list
9a935856
DV
10609 * of connectors. For paranoia, double-check this. */
10610 WARN_ON(!set->fb && (set->num_connectors != 0));
10611 WARN_ON(set->fb && (set->num_connectors == 0));
10612
9a935856
DV
10613 list_for_each_entry(connector, &dev->mode_config.connector_list,
10614 base.head) {
10615 /* Otherwise traverse passed in connector list and get encoders
10616 * for them. */
50f56119 10617 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856
DV
10618 if (set->connectors[ro] == &connector->base) {
10619 connector->new_encoder = connector->encoder;
50f56119
DV
10620 break;
10621 }
10622 }
10623
9a935856
DV
10624 /* If we disable the crtc, disable all its connectors. Also, if
10625 * the connector is on the changing crtc but not on the new
10626 * connector list, disable it. */
10627 if ((!set->fb || ro == set->num_connectors) &&
10628 connector->base.encoder &&
10629 connector->base.encoder->crtc == set->crtc) {
10630 connector->new_encoder = NULL;
10631
10632 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
10633 connector->base.base.id,
c23cc417 10634 connector->base.name);
9a935856
DV
10635 }
10636
10637
10638 if (&connector->new_encoder->base != connector->base.encoder) {
50f56119 10639 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
5e2b584e 10640 config->mode_changed = true;
50f56119
DV
10641 }
10642 }
9a935856 10643 /* connector->new_encoder is now updated for all connectors. */
50f56119 10644
9a935856 10645 /* Update crtc of enabled connectors. */
9a935856
DV
10646 list_for_each_entry(connector, &dev->mode_config.connector_list,
10647 base.head) {
7668851f
VS
10648 struct drm_crtc *new_crtc;
10649
9a935856 10650 if (!connector->new_encoder)
50f56119
DV
10651 continue;
10652
9a935856 10653 new_crtc = connector->new_encoder->base.crtc;
50f56119
DV
10654
10655 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856 10656 if (set->connectors[ro] == &connector->base)
50f56119
DV
10657 new_crtc = set->crtc;
10658 }
10659
10660 /* Make sure the new CRTC will work with the encoder */
14509916
TR
10661 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
10662 new_crtc)) {
5e2b584e 10663 return -EINVAL;
50f56119 10664 }
9a935856
DV
10665 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
10666
10667 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
10668 connector->base.base.id,
c23cc417 10669 connector->base.name,
9a935856
DV
10670 new_crtc->base.id);
10671 }
10672
10673 /* Check for any encoders that needs to be disabled. */
10674 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10675 base.head) {
5a65f358 10676 int num_connectors = 0;
9a935856
DV
10677 list_for_each_entry(connector,
10678 &dev->mode_config.connector_list,
10679 base.head) {
10680 if (connector->new_encoder == encoder) {
10681 WARN_ON(!connector->new_encoder->new_crtc);
5a65f358 10682 num_connectors++;
9a935856
DV
10683 }
10684 }
5a65f358
PZ
10685
10686 if (num_connectors == 0)
10687 encoder->new_crtc = NULL;
10688 else if (num_connectors > 1)
10689 return -EINVAL;
10690
9a935856
DV
10691 /* Only now check for crtc changes so we don't miss encoders
10692 * that will be disabled. */
10693 if (&encoder->new_crtc->base != encoder->base.crtc) {
50f56119 10694 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
5e2b584e 10695 config->mode_changed = true;
50f56119
DV
10696 }
10697 }
9a935856 10698 /* Now we've also updated encoder->new_crtc for all encoders. */
50f56119 10699
d3fcc808 10700 for_each_intel_crtc(dev, crtc) {
7668851f
VS
10701 crtc->new_enabled = false;
10702
10703 list_for_each_entry(encoder,
10704 &dev->mode_config.encoder_list,
10705 base.head) {
10706 if (encoder->new_crtc == crtc) {
10707 crtc->new_enabled = true;
10708 break;
10709 }
10710 }
10711
10712 if (crtc->new_enabled != crtc->base.enabled) {
10713 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
10714 crtc->new_enabled ? "en" : "dis");
10715 config->mode_changed = true;
10716 }
7bd0a8e7
VS
10717
10718 if (crtc->new_enabled)
10719 crtc->new_config = &crtc->config;
10720 else
10721 crtc->new_config = NULL;
7668851f
VS
10722 }
10723
2e431051
DV
10724 return 0;
10725}
10726
7d00a1f5
VS
10727static void disable_crtc_nofb(struct intel_crtc *crtc)
10728{
10729 struct drm_device *dev = crtc->base.dev;
10730 struct intel_encoder *encoder;
10731 struct intel_connector *connector;
10732
10733 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
10734 pipe_name(crtc->pipe));
10735
10736 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10737 if (connector->new_encoder &&
10738 connector->new_encoder->new_crtc == crtc)
10739 connector->new_encoder = NULL;
10740 }
10741
10742 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10743 if (encoder->new_crtc == crtc)
10744 encoder->new_crtc = NULL;
10745 }
10746
10747 crtc->new_enabled = false;
7bd0a8e7 10748 crtc->new_config = NULL;
7d00a1f5
VS
10749}
10750
2e431051
DV
10751static int intel_crtc_set_config(struct drm_mode_set *set)
10752{
10753 struct drm_device *dev;
2e431051
DV
10754 struct drm_mode_set save_set;
10755 struct intel_set_config *config;
10756 int ret;
2e431051 10757
8d3e375e
DV
10758 BUG_ON(!set);
10759 BUG_ON(!set->crtc);
10760 BUG_ON(!set->crtc->helper_private);
2e431051 10761
7e53f3a4
DV
10762 /* Enforce sane interface api - has been abused by the fb helper. */
10763 BUG_ON(!set->mode && set->fb);
10764 BUG_ON(set->fb && set->num_connectors == 0);
431e50f7 10765
2e431051
DV
10766 if (set->fb) {
10767 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
10768 set->crtc->base.id, set->fb->base.id,
10769 (int)set->num_connectors, set->x, set->y);
10770 } else {
10771 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
2e431051
DV
10772 }
10773
10774 dev = set->crtc->dev;
10775
10776 ret = -ENOMEM;
10777 config = kzalloc(sizeof(*config), GFP_KERNEL);
10778 if (!config)
10779 goto out_config;
10780
10781 ret = intel_set_config_save_state(dev, config);
10782 if (ret)
10783 goto out_config;
10784
10785 save_set.crtc = set->crtc;
10786 save_set.mode = &set->crtc->mode;
10787 save_set.x = set->crtc->x;
10788 save_set.y = set->crtc->y;
f4510a27 10789 save_set.fb = set->crtc->primary->fb;
2e431051
DV
10790
10791 /* Compute whether we need a full modeset, only an fb base update or no
10792 * change at all. In the future we might also check whether only the
10793 * mode changed, e.g. for LVDS where we only change the panel fitter in
10794 * such cases. */
10795 intel_set_config_compute_mode_changes(set, config);
10796
9a935856 10797 ret = intel_modeset_stage_output_state(dev, set, config);
2e431051
DV
10798 if (ret)
10799 goto fail;
10800
5e2b584e 10801 if (config->mode_changed) {
c0c36b94
CW
10802 ret = intel_set_mode(set->crtc, set->mode,
10803 set->x, set->y, set->fb);
5e2b584e 10804 } else if (config->fb_changed) {
4878cae2
VS
10805 intel_crtc_wait_for_pending_flips(set->crtc);
10806
4f660f49 10807 ret = intel_pipe_set_base(set->crtc,
94352cf9 10808 set->x, set->y, set->fb);
7ca51a3a
JB
10809 /*
10810 * In the fastboot case this may be our only check of the
10811 * state after boot. It would be better to only do it on
10812 * the first update, but we don't have a nice way of doing that
10813 * (and really, set_config isn't used much for high freq page
10814 * flipping, so increasing its cost here shouldn't be a big
10815 * deal).
10816 */
d330a953 10817 if (i915.fastboot && ret == 0)
7ca51a3a 10818 intel_modeset_check_state(set->crtc->dev);
50f56119
DV
10819 }
10820
2d05eae1 10821 if (ret) {
bf67dfeb
DV
10822 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
10823 set->crtc->base.id, ret);
50f56119 10824fail:
2d05eae1 10825 intel_set_config_restore_state(dev, config);
50f56119 10826
7d00a1f5
VS
10827 /*
10828 * HACK: if the pipe was on, but we didn't have a framebuffer,
10829 * force the pipe off to avoid oopsing in the modeset code
10830 * due to fb==NULL. This should only happen during boot since
10831 * we don't yet reconstruct the FB from the hardware state.
10832 */
10833 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
10834 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
10835
2d05eae1
CW
10836 /* Try to restore the config */
10837 if (config->mode_changed &&
10838 intel_set_mode(save_set.crtc, save_set.mode,
10839 save_set.x, save_set.y, save_set.fb))
10840 DRM_ERROR("failed to restore config after modeset failure\n");
10841 }
50f56119 10842
d9e55608
DV
10843out_config:
10844 intel_set_config_free(config);
50f56119
DV
10845 return ret;
10846}
f6e5b160
CW
10847
10848static const struct drm_crtc_funcs intel_crtc_funcs = {
f6e5b160
CW
10849 .cursor_set = intel_crtc_cursor_set,
10850 .cursor_move = intel_crtc_cursor_move,
10851 .gamma_set = intel_crtc_gamma_set,
50f56119 10852 .set_config = intel_crtc_set_config,
f6e5b160
CW
10853 .destroy = intel_crtc_destroy,
10854 .page_flip = intel_crtc_page_flip,
10855};
10856
79f689aa
PZ
10857static void intel_cpu_pll_init(struct drm_device *dev)
10858{
affa9354 10859 if (HAS_DDI(dev))
79f689aa
PZ
10860 intel_ddi_pll_init(dev);
10861}
10862
5358901f
DV
10863static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
10864 struct intel_shared_dpll *pll,
10865 struct intel_dpll_hw_state *hw_state)
ee7b9f93 10866{
5358901f 10867 uint32_t val;
ee7b9f93 10868
5358901f 10869 val = I915_READ(PCH_DPLL(pll->id));
66e985c0
DV
10870 hw_state->dpll = val;
10871 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
10872 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
5358901f
DV
10873
10874 return val & DPLL_VCO_ENABLE;
10875}
10876
15bdd4cf
DV
10877static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
10878 struct intel_shared_dpll *pll)
10879{
10880 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
10881 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
10882}
10883
e7b903d2
DV
10884static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
10885 struct intel_shared_dpll *pll)
10886{
e7b903d2 10887 /* PCH refclock must be enabled first */
89eff4be 10888 ibx_assert_pch_refclk_enabled(dev_priv);
e7b903d2 10889
15bdd4cf
DV
10890 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10891
10892 /* Wait for the clocks to stabilize. */
10893 POSTING_READ(PCH_DPLL(pll->id));
10894 udelay(150);
10895
10896 /* The pixel multiplier can only be updated once the
10897 * DPLL is enabled and the clocks are stable.
10898 *
10899 * So write it again.
10900 */
10901 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10902 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
10903 udelay(200);
10904}
10905
10906static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
10907 struct intel_shared_dpll *pll)
10908{
10909 struct drm_device *dev = dev_priv->dev;
10910 struct intel_crtc *crtc;
e7b903d2
DV
10911
10912 /* Make sure no transcoder isn't still depending on us. */
d3fcc808 10913 for_each_intel_crtc(dev, crtc) {
e7b903d2
DV
10914 if (intel_crtc_to_shared_dpll(crtc) == pll)
10915 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
ee7b9f93
JB
10916 }
10917
15bdd4cf
DV
10918 I915_WRITE(PCH_DPLL(pll->id), 0);
10919 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
10920 udelay(200);
10921}
10922
46edb027
DV
10923static char *ibx_pch_dpll_names[] = {
10924 "PCH DPLL A",
10925 "PCH DPLL B",
10926};
10927
7c74ade1 10928static void ibx_pch_dpll_init(struct drm_device *dev)
ee7b9f93 10929{
e7b903d2 10930 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93
JB
10931 int i;
10932
7c74ade1 10933 dev_priv->num_shared_dpll = 2;
ee7b9f93 10934
e72f9fbf 10935 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
46edb027
DV
10936 dev_priv->shared_dplls[i].id = i;
10937 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
15bdd4cf 10938 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
e7b903d2
DV
10939 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
10940 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
5358901f
DV
10941 dev_priv->shared_dplls[i].get_hw_state =
10942 ibx_pch_dpll_get_hw_state;
ee7b9f93
JB
10943 }
10944}
10945
7c74ade1
DV
10946static void intel_shared_dpll_init(struct drm_device *dev)
10947{
e7b903d2 10948 struct drm_i915_private *dev_priv = dev->dev_private;
7c74ade1
DV
10949
10950 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
10951 ibx_pch_dpll_init(dev);
10952 else
10953 dev_priv->num_shared_dpll = 0;
10954
10955 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
7c74ade1
DV
10956}
10957
b358d0a6 10958static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 10959{
fbee40df 10960 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945
JB
10961 struct intel_crtc *intel_crtc;
10962 int i;
10963
955382f3 10964 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
79e53945
JB
10965 if (intel_crtc == NULL)
10966 return;
10967
10968 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
10969
10970 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
79e53945
JB
10971 for (i = 0; i < 256; i++) {
10972 intel_crtc->lut_r[i] = i;
10973 intel_crtc->lut_g[i] = i;
10974 intel_crtc->lut_b[i] = i;
10975 }
10976
1f1c2e24
VS
10977 /*
10978 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
10979 * is hooked to plane B. Hence we want plane A feeding pipe B.
10980 */
80824003
JB
10981 intel_crtc->pipe = pipe;
10982 intel_crtc->plane = pipe;
3a77c4c4 10983 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
28c97730 10984 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 10985 intel_crtc->plane = !pipe;
80824003
JB
10986 }
10987
4b0e333e
CW
10988 intel_crtc->cursor_base = ~0;
10989 intel_crtc->cursor_cntl = ~0;
10990
8d7849db
VS
10991 init_waitqueue_head(&intel_crtc->vbl_wait);
10992
22fd0fab
JB
10993 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
10994 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
10995 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
10996 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
10997
79e53945 10998 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
87b6b101
DV
10999
11000 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
79e53945
JB
11001}
11002
752aa88a
JB
11003enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
11004{
11005 struct drm_encoder *encoder = connector->base.encoder;
6e9f798d 11006 struct drm_device *dev = connector->base.dev;
752aa88a 11007
51fd371b 11008 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
752aa88a
JB
11009
11010 if (!encoder)
11011 return INVALID_PIPE;
11012
11013 return to_intel_crtc(encoder->crtc)->pipe;
11014}
11015
08d7b3d1 11016int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 11017 struct drm_file *file)
08d7b3d1 11018{
08d7b3d1 11019 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
c05422d5
DV
11020 struct drm_mode_object *drmmode_obj;
11021 struct intel_crtc *crtc;
08d7b3d1 11022
1cff8f6b
DV
11023 if (!drm_core_check_feature(dev, DRIVER_MODESET))
11024 return -ENODEV;
08d7b3d1 11025
c05422d5
DV
11026 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
11027 DRM_MODE_OBJECT_CRTC);
08d7b3d1 11028
c05422d5 11029 if (!drmmode_obj) {
08d7b3d1 11030 DRM_ERROR("no such CRTC id\n");
3f2c2057 11031 return -ENOENT;
08d7b3d1
CW
11032 }
11033
c05422d5
DV
11034 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
11035 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 11036
c05422d5 11037 return 0;
08d7b3d1
CW
11038}
11039
66a9278e 11040static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 11041{
66a9278e
DV
11042 struct drm_device *dev = encoder->base.dev;
11043 struct intel_encoder *source_encoder;
79e53945 11044 int index_mask = 0;
79e53945
JB
11045 int entry = 0;
11046
66a9278e
DV
11047 list_for_each_entry(source_encoder,
11048 &dev->mode_config.encoder_list, base.head) {
bc079e8b 11049 if (encoders_cloneable(encoder, source_encoder))
66a9278e
DV
11050 index_mask |= (1 << entry);
11051
79e53945
JB
11052 entry++;
11053 }
4ef69c7a 11054
79e53945
JB
11055 return index_mask;
11056}
11057
4d302442
CW
11058static bool has_edp_a(struct drm_device *dev)
11059{
11060 struct drm_i915_private *dev_priv = dev->dev_private;
11061
11062 if (!IS_MOBILE(dev))
11063 return false;
11064
11065 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
11066 return false;
11067
e3589908 11068 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
4d302442
CW
11069 return false;
11070
11071 return true;
11072}
11073
ba0fbca4
DL
11074const char *intel_output_name(int output)
11075{
11076 static const char *names[] = {
11077 [INTEL_OUTPUT_UNUSED] = "Unused",
11078 [INTEL_OUTPUT_ANALOG] = "Analog",
11079 [INTEL_OUTPUT_DVO] = "DVO",
11080 [INTEL_OUTPUT_SDVO] = "SDVO",
11081 [INTEL_OUTPUT_LVDS] = "LVDS",
11082 [INTEL_OUTPUT_TVOUT] = "TV",
11083 [INTEL_OUTPUT_HDMI] = "HDMI",
11084 [INTEL_OUTPUT_DISPLAYPORT] = "DisplayPort",
11085 [INTEL_OUTPUT_EDP] = "eDP",
11086 [INTEL_OUTPUT_DSI] = "DSI",
11087 [INTEL_OUTPUT_UNKNOWN] = "Unknown",
11088 };
11089
11090 if (output < 0 || output >= ARRAY_SIZE(names) || !names[output])
11091 return "Invalid";
11092
11093 return names[output];
11094}
11095
79e53945
JB
11096static void intel_setup_outputs(struct drm_device *dev)
11097{
725e30ad 11098 struct drm_i915_private *dev_priv = dev->dev_private;
4ef69c7a 11099 struct intel_encoder *encoder;
cb0953d7 11100 bool dpd_is_edp = false;
79e53945 11101
c9093354 11102 intel_lvds_init(dev);
79e53945 11103
27da3bdf 11104 if (!IS_ULT(dev) && !IS_CHERRYVIEW(dev) && dev_priv->vbt.int_crt_support)
79935fca 11105 intel_crt_init(dev);
cb0953d7 11106
affa9354 11107 if (HAS_DDI(dev)) {
0e72a5b5
ED
11108 int found;
11109
11110 /* Haswell uses DDI functions to detect digital outputs */
11111 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
11112 /* DDI A only supports eDP */
11113 if (found)
11114 intel_ddi_init(dev, PORT_A);
11115
11116 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
11117 * register */
11118 found = I915_READ(SFUSE_STRAP);
11119
11120 if (found & SFUSE_STRAP_DDIB_DETECTED)
11121 intel_ddi_init(dev, PORT_B);
11122 if (found & SFUSE_STRAP_DDIC_DETECTED)
11123 intel_ddi_init(dev, PORT_C);
11124 if (found & SFUSE_STRAP_DDID_DETECTED)
11125 intel_ddi_init(dev, PORT_D);
11126 } else if (HAS_PCH_SPLIT(dev)) {
cb0953d7 11127 int found;
5d8a7752 11128 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
270b3042
DV
11129
11130 if (has_edp_a(dev))
11131 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 11132
dc0fa718 11133 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 11134 /* PCH SDVOB multiplex with HDMIB */
eef4eacb 11135 found = intel_sdvo_init(dev, PCH_SDVOB, true);
30ad48b7 11136 if (!found)
e2debe91 11137 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 11138 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 11139 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
11140 }
11141
dc0fa718 11142 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 11143 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 11144
dc0fa718 11145 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 11146 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 11147
5eb08b69 11148 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 11149 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 11150
270b3042 11151 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 11152 intel_dp_init(dev, PCH_DP_D, PORT_D);
4a87d65d 11153 } else if (IS_VALLEYVIEW(dev)) {
585a94b8
AB
11154 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
11155 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
11156 PORT_B);
11157 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
11158 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
11159 }
11160
6f6005a5
JB
11161 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
11162 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
11163 PORT_C);
11164 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
5d8a7752 11165 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
6f6005a5 11166 }
19c03924 11167
9418c1f1
VS
11168 if (IS_CHERRYVIEW(dev)) {
11169 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED) {
11170 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
11171 PORT_D);
11172 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
11173 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
11174 }
11175 }
11176
3cfca973 11177 intel_dsi_init(dev);
103a196f 11178 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
27185ae1 11179 bool found = false;
7d57382e 11180
e2debe91 11181 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 11182 DRM_DEBUG_KMS("probing SDVOB\n");
e2debe91 11183 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
b01f2c3a
JB
11184 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
11185 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 11186 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 11187 }
27185ae1 11188
e7281eab 11189 if (!found && SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 11190 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 11191 }
13520b05
KH
11192
11193 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 11194
e2debe91 11195 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 11196 DRM_DEBUG_KMS("probing SDVOC\n");
e2debe91 11197 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
b01f2c3a 11198 }
27185ae1 11199
e2debe91 11200 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 11201
b01f2c3a
JB
11202 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
11203 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 11204 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 11205 }
e7281eab 11206 if (SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 11207 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 11208 }
27185ae1 11209
b01f2c3a 11210 if (SUPPORTS_INTEGRATED_DP(dev) &&
e7281eab 11211 (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 11212 intel_dp_init(dev, DP_D, PORT_D);
bad720ff 11213 } else if (IS_GEN2(dev))
79e53945
JB
11214 intel_dvo_init(dev);
11215
103a196f 11216 if (SUPPORTS_TV(dev))
79e53945
JB
11217 intel_tv_init(dev);
11218
4ef69c7a
CW
11219 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
11220 encoder->base.possible_crtcs = encoder->crtc_mask;
11221 encoder->base.possible_clones =
66a9278e 11222 intel_encoder_clones(encoder);
79e53945 11223 }
47356eb6 11224
dde86e2d 11225 intel_init_pch_refclk(dev);
270b3042
DV
11226
11227 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
11228}
11229
11230static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
11231{
11232 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945 11233
ef2d633e
DV
11234 drm_framebuffer_cleanup(fb);
11235 WARN_ON(!intel_fb->obj->framebuffer_references--);
11236 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
79e53945
JB
11237 kfree(intel_fb);
11238}
11239
11240static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 11241 struct drm_file *file,
79e53945
JB
11242 unsigned int *handle)
11243{
11244 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 11245 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 11246
05394f39 11247 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
11248}
11249
11250static const struct drm_framebuffer_funcs intel_fb_funcs = {
11251 .destroy = intel_user_framebuffer_destroy,
11252 .create_handle = intel_user_framebuffer_create_handle,
11253};
11254
b5ea642a
DV
11255static int intel_framebuffer_init(struct drm_device *dev,
11256 struct intel_framebuffer *intel_fb,
11257 struct drm_mode_fb_cmd2 *mode_cmd,
11258 struct drm_i915_gem_object *obj)
79e53945 11259{
a57ce0b2 11260 int aligned_height;
a35cdaa0 11261 int pitch_limit;
79e53945
JB
11262 int ret;
11263
dd4916c5
DV
11264 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
11265
c16ed4be
CW
11266 if (obj->tiling_mode == I915_TILING_Y) {
11267 DRM_DEBUG("hardware does not support tiling Y\n");
57cd6508 11268 return -EINVAL;
c16ed4be 11269 }
57cd6508 11270
c16ed4be
CW
11271 if (mode_cmd->pitches[0] & 63) {
11272 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
11273 mode_cmd->pitches[0]);
57cd6508 11274 return -EINVAL;
c16ed4be 11275 }
57cd6508 11276
a35cdaa0
CW
11277 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
11278 pitch_limit = 32*1024;
11279 } else if (INTEL_INFO(dev)->gen >= 4) {
11280 if (obj->tiling_mode)
11281 pitch_limit = 16*1024;
11282 else
11283 pitch_limit = 32*1024;
11284 } else if (INTEL_INFO(dev)->gen >= 3) {
11285 if (obj->tiling_mode)
11286 pitch_limit = 8*1024;
11287 else
11288 pitch_limit = 16*1024;
11289 } else
11290 /* XXX DSPC is limited to 4k tiled */
11291 pitch_limit = 8*1024;
11292
11293 if (mode_cmd->pitches[0] > pitch_limit) {
11294 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
11295 obj->tiling_mode ? "tiled" : "linear",
11296 mode_cmd->pitches[0], pitch_limit);
5d7bd705 11297 return -EINVAL;
c16ed4be 11298 }
5d7bd705
VS
11299
11300 if (obj->tiling_mode != I915_TILING_NONE &&
c16ed4be
CW
11301 mode_cmd->pitches[0] != obj->stride) {
11302 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
11303 mode_cmd->pitches[0], obj->stride);
5d7bd705 11304 return -EINVAL;
c16ed4be 11305 }
5d7bd705 11306
57779d06 11307 /* Reject formats not supported by any plane early. */
308e5bcb 11308 switch (mode_cmd->pixel_format) {
57779d06 11309 case DRM_FORMAT_C8:
04b3924d
VS
11310 case DRM_FORMAT_RGB565:
11311 case DRM_FORMAT_XRGB8888:
11312 case DRM_FORMAT_ARGB8888:
57779d06
VS
11313 break;
11314 case DRM_FORMAT_XRGB1555:
11315 case DRM_FORMAT_ARGB1555:
c16ed4be 11316 if (INTEL_INFO(dev)->gen > 3) {
4ee62c76
VS
11317 DRM_DEBUG("unsupported pixel format: %s\n",
11318 drm_get_format_name(mode_cmd->pixel_format));
57779d06 11319 return -EINVAL;
c16ed4be 11320 }
57779d06
VS
11321 break;
11322 case DRM_FORMAT_XBGR8888:
11323 case DRM_FORMAT_ABGR8888:
04b3924d
VS
11324 case DRM_FORMAT_XRGB2101010:
11325 case DRM_FORMAT_ARGB2101010:
57779d06
VS
11326 case DRM_FORMAT_XBGR2101010:
11327 case DRM_FORMAT_ABGR2101010:
c16ed4be 11328 if (INTEL_INFO(dev)->gen < 4) {
4ee62c76
VS
11329 DRM_DEBUG("unsupported pixel format: %s\n",
11330 drm_get_format_name(mode_cmd->pixel_format));
57779d06 11331 return -EINVAL;
c16ed4be 11332 }
b5626747 11333 break;
04b3924d
VS
11334 case DRM_FORMAT_YUYV:
11335 case DRM_FORMAT_UYVY:
11336 case DRM_FORMAT_YVYU:
11337 case DRM_FORMAT_VYUY:
c16ed4be 11338 if (INTEL_INFO(dev)->gen < 5) {
4ee62c76
VS
11339 DRM_DEBUG("unsupported pixel format: %s\n",
11340 drm_get_format_name(mode_cmd->pixel_format));
57779d06 11341 return -EINVAL;
c16ed4be 11342 }
57cd6508
CW
11343 break;
11344 default:
4ee62c76
VS
11345 DRM_DEBUG("unsupported pixel format: %s\n",
11346 drm_get_format_name(mode_cmd->pixel_format));
57cd6508
CW
11347 return -EINVAL;
11348 }
11349
90f9a336
VS
11350 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
11351 if (mode_cmd->offsets[0] != 0)
11352 return -EINVAL;
11353
a57ce0b2
JB
11354 aligned_height = intel_align_height(dev, mode_cmd->height,
11355 obj->tiling_mode);
53155c0a
DV
11356 /* FIXME drm helper for size checks (especially planar formats)? */
11357 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
11358 return -EINVAL;
11359
c7d73f6a
DV
11360 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
11361 intel_fb->obj = obj;
80075d49 11362 intel_fb->obj->framebuffer_references++;
c7d73f6a 11363
79e53945
JB
11364 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
11365 if (ret) {
11366 DRM_ERROR("framebuffer init failed %d\n", ret);
11367 return ret;
11368 }
11369
79e53945
JB
11370 return 0;
11371}
11372
79e53945
JB
11373static struct drm_framebuffer *
11374intel_user_framebuffer_create(struct drm_device *dev,
11375 struct drm_file *filp,
308e5bcb 11376 struct drm_mode_fb_cmd2 *mode_cmd)
79e53945 11377{
05394f39 11378 struct drm_i915_gem_object *obj;
79e53945 11379
308e5bcb
JB
11380 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
11381 mode_cmd->handles[0]));
c8725226 11382 if (&obj->base == NULL)
cce13ff7 11383 return ERR_PTR(-ENOENT);
79e53945 11384
d2dff872 11385 return intel_framebuffer_create(dev, mode_cmd, obj);
79e53945
JB
11386}
11387
4520f53a 11388#ifndef CONFIG_DRM_I915_FBDEV
0632fef6 11389static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
4520f53a
DV
11390{
11391}
11392#endif
11393
79e53945 11394static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 11395 .fb_create = intel_user_framebuffer_create,
0632fef6 11396 .output_poll_changed = intel_fbdev_output_poll_changed,
79e53945
JB
11397};
11398
e70236a8
JB
11399/* Set up chip specific display functions */
11400static void intel_init_display(struct drm_device *dev)
11401{
11402 struct drm_i915_private *dev_priv = dev->dev_private;
11403
ee9300bb
DV
11404 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
11405 dev_priv->display.find_dpll = g4x_find_best_dpll;
ef9348c8
CML
11406 else if (IS_CHERRYVIEW(dev))
11407 dev_priv->display.find_dpll = chv_find_best_dpll;
ee9300bb
DV
11408 else if (IS_VALLEYVIEW(dev))
11409 dev_priv->display.find_dpll = vlv_find_best_dpll;
11410 else if (IS_PINEVIEW(dev))
11411 dev_priv->display.find_dpll = pnv_find_best_dpll;
11412 else
11413 dev_priv->display.find_dpll = i9xx_find_best_dpll;
11414
affa9354 11415 if (HAS_DDI(dev)) {
0e8ffe1b 11416 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
4c6baa59 11417 dev_priv->display.get_plane_config = ironlake_get_plane_config;
09b4ddf9 11418 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
4f771f10
PZ
11419 dev_priv->display.crtc_enable = haswell_crtc_enable;
11420 dev_priv->display.crtc_disable = haswell_crtc_disable;
6441ab5f 11421 dev_priv->display.off = haswell_crtc_off;
262ca2b0
MR
11422 dev_priv->display.update_primary_plane =
11423 ironlake_update_primary_plane;
09b4ddf9 11424 } else if (HAS_PCH_SPLIT(dev)) {
0e8ffe1b 11425 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
4c6baa59 11426 dev_priv->display.get_plane_config = ironlake_get_plane_config;
f564048e 11427 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
76e5a89c
DV
11428 dev_priv->display.crtc_enable = ironlake_crtc_enable;
11429 dev_priv->display.crtc_disable = ironlake_crtc_disable;
ee7b9f93 11430 dev_priv->display.off = ironlake_crtc_off;
262ca2b0
MR
11431 dev_priv->display.update_primary_plane =
11432 ironlake_update_primary_plane;
89b667f8
JB
11433 } else if (IS_VALLEYVIEW(dev)) {
11434 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
1ad292b5 11435 dev_priv->display.get_plane_config = i9xx_get_plane_config;
89b667f8
JB
11436 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
11437 dev_priv->display.crtc_enable = valleyview_crtc_enable;
11438 dev_priv->display.crtc_disable = i9xx_crtc_disable;
11439 dev_priv->display.off = i9xx_crtc_off;
262ca2b0
MR
11440 dev_priv->display.update_primary_plane =
11441 i9xx_update_primary_plane;
f564048e 11442 } else {
0e8ffe1b 11443 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
1ad292b5 11444 dev_priv->display.get_plane_config = i9xx_get_plane_config;
f564048e 11445 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
76e5a89c
DV
11446 dev_priv->display.crtc_enable = i9xx_crtc_enable;
11447 dev_priv->display.crtc_disable = i9xx_crtc_disable;
ee7b9f93 11448 dev_priv->display.off = i9xx_crtc_off;
262ca2b0
MR
11449 dev_priv->display.update_primary_plane =
11450 i9xx_update_primary_plane;
f564048e 11451 }
e70236a8 11452
e70236a8 11453 /* Returns the core display clock speed */
25eb05fc
JB
11454 if (IS_VALLEYVIEW(dev))
11455 dev_priv->display.get_display_clock_speed =
11456 valleyview_get_display_clock_speed;
11457 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
e70236a8
JB
11458 dev_priv->display.get_display_clock_speed =
11459 i945_get_display_clock_speed;
11460 else if (IS_I915G(dev))
11461 dev_priv->display.get_display_clock_speed =
11462 i915_get_display_clock_speed;
257a7ffc 11463 else if (IS_I945GM(dev) || IS_845G(dev))
e70236a8
JB
11464 dev_priv->display.get_display_clock_speed =
11465 i9xx_misc_get_display_clock_speed;
257a7ffc
DV
11466 else if (IS_PINEVIEW(dev))
11467 dev_priv->display.get_display_clock_speed =
11468 pnv_get_display_clock_speed;
e70236a8
JB
11469 else if (IS_I915GM(dev))
11470 dev_priv->display.get_display_clock_speed =
11471 i915gm_get_display_clock_speed;
11472 else if (IS_I865G(dev))
11473 dev_priv->display.get_display_clock_speed =
11474 i865_get_display_clock_speed;
f0f8a9ce 11475 else if (IS_I85X(dev))
e70236a8
JB
11476 dev_priv->display.get_display_clock_speed =
11477 i855_get_display_clock_speed;
11478 else /* 852, 830 */
11479 dev_priv->display.get_display_clock_speed =
11480 i830_get_display_clock_speed;
11481
7f8a8569 11482 if (HAS_PCH_SPLIT(dev)) {
f00a3ddf 11483 if (IS_GEN5(dev)) {
674cf967 11484 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
e0dac65e 11485 dev_priv->display.write_eld = ironlake_write_eld;
1398261a 11486 } else if (IS_GEN6(dev)) {
674cf967 11487 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
e0dac65e 11488 dev_priv->display.write_eld = ironlake_write_eld;
9a952a0d
PZ
11489 dev_priv->display.modeset_global_resources =
11490 snb_modeset_global_resources;
357555c0
JB
11491 } else if (IS_IVYBRIDGE(dev)) {
11492 /* FIXME: detect B0+ stepping and use auto training */
11493 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
e0dac65e 11494 dev_priv->display.write_eld = ironlake_write_eld;
01a415fd
DV
11495 dev_priv->display.modeset_global_resources =
11496 ivb_modeset_global_resources;
4e0bbc31 11497 } else if (IS_HASWELL(dev) || IS_GEN8(dev)) {
c82e4d26 11498 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
83358c85 11499 dev_priv->display.write_eld = haswell_write_eld;
d6dd9eb1
DV
11500 dev_priv->display.modeset_global_resources =
11501 haswell_modeset_global_resources;
a0e63c22 11502 }
6067aaea 11503 } else if (IS_G4X(dev)) {
e0dac65e 11504 dev_priv->display.write_eld = g4x_write_eld;
30a970c6
JB
11505 } else if (IS_VALLEYVIEW(dev)) {
11506 dev_priv->display.modeset_global_resources =
11507 valleyview_modeset_global_resources;
9ca2fe73 11508 dev_priv->display.write_eld = ironlake_write_eld;
e70236a8 11509 }
8c9f3aaf
JB
11510
11511 /* Default just returns -ENODEV to indicate unsupported */
11512 dev_priv->display.queue_flip = intel_default_queue_flip;
11513
11514 switch (INTEL_INFO(dev)->gen) {
11515 case 2:
11516 dev_priv->display.queue_flip = intel_gen2_queue_flip;
11517 break;
11518
11519 case 3:
11520 dev_priv->display.queue_flip = intel_gen3_queue_flip;
11521 break;
11522
11523 case 4:
11524 case 5:
11525 dev_priv->display.queue_flip = intel_gen4_queue_flip;
11526 break;
11527
11528 case 6:
11529 dev_priv->display.queue_flip = intel_gen6_queue_flip;
11530 break;
7c9017e5 11531 case 7:
4e0bbc31 11532 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
7c9017e5
JB
11533 dev_priv->display.queue_flip = intel_gen7_queue_flip;
11534 break;
8c9f3aaf 11535 }
7bd688cd
JN
11536
11537 intel_panel_init_backlight_funcs(dev);
e70236a8
JB
11538}
11539
b690e96c
JB
11540/*
11541 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
11542 * resume, or other times. This quirk makes sure that's the case for
11543 * affected systems.
11544 */
0206e353 11545static void quirk_pipea_force(struct drm_device *dev)
b690e96c
JB
11546{
11547 struct drm_i915_private *dev_priv = dev->dev_private;
11548
11549 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 11550 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
11551}
11552
435793df
KP
11553/*
11554 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
11555 */
11556static void quirk_ssc_force_disable(struct drm_device *dev)
11557{
11558 struct drm_i915_private *dev_priv = dev->dev_private;
11559 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 11560 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
11561}
11562
4dca20ef 11563/*
5a15ab5b
CE
11564 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
11565 * brightness value
4dca20ef
CE
11566 */
11567static void quirk_invert_brightness(struct drm_device *dev)
11568{
11569 struct drm_i915_private *dev_priv = dev->dev_private;
11570 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 11571 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
11572}
11573
b690e96c
JB
11574struct intel_quirk {
11575 int device;
11576 int subsystem_vendor;
11577 int subsystem_device;
11578 void (*hook)(struct drm_device *dev);
11579};
11580
5f85f176
EE
11581/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
11582struct intel_dmi_quirk {
11583 void (*hook)(struct drm_device *dev);
11584 const struct dmi_system_id (*dmi_id_list)[];
11585};
11586
11587static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
11588{
11589 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
11590 return 1;
11591}
11592
11593static const struct intel_dmi_quirk intel_dmi_quirks[] = {
11594 {
11595 .dmi_id_list = &(const struct dmi_system_id[]) {
11596 {
11597 .callback = intel_dmi_reverse_brightness,
11598 .ident = "NCR Corporation",
11599 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
11600 DMI_MATCH(DMI_PRODUCT_NAME, ""),
11601 },
11602 },
11603 { } /* terminating entry */
11604 },
11605 .hook = quirk_invert_brightness,
11606 },
11607};
11608
c43b5634 11609static struct intel_quirk intel_quirks[] = {
b690e96c 11610 /* HP Mini needs pipe A force quirk (LP: #322104) */
0206e353 11611 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
b690e96c 11612
b690e96c
JB
11613 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
11614 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
11615
b690e96c
JB
11616 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
11617 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
11618
435793df
KP
11619 /* Lenovo U160 cannot use SSC on LVDS */
11620 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
11621
11622 /* Sony Vaio Y cannot use SSC on LVDS */
11623 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b 11624
be505f64
AH
11625 /* Acer Aspire 5734Z must invert backlight brightness */
11626 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
11627
11628 /* Acer/eMachines G725 */
11629 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
11630
11631 /* Acer/eMachines e725 */
11632 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
11633
11634 /* Acer/Packard Bell NCL20 */
11635 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
11636
11637 /* Acer Aspire 4736Z */
11638 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
0f540c3a
JN
11639
11640 /* Acer Aspire 5336 */
11641 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
b690e96c
JB
11642};
11643
11644static void intel_init_quirks(struct drm_device *dev)
11645{
11646 struct pci_dev *d = dev->pdev;
11647 int i;
11648
11649 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
11650 struct intel_quirk *q = &intel_quirks[i];
11651
11652 if (d->device == q->device &&
11653 (d->subsystem_vendor == q->subsystem_vendor ||
11654 q->subsystem_vendor == PCI_ANY_ID) &&
11655 (d->subsystem_device == q->subsystem_device ||
11656 q->subsystem_device == PCI_ANY_ID))
11657 q->hook(dev);
11658 }
5f85f176
EE
11659 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
11660 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
11661 intel_dmi_quirks[i].hook(dev);
11662 }
b690e96c
JB
11663}
11664
9cce37f4
JB
11665/* Disable the VGA plane that we never use */
11666static void i915_disable_vga(struct drm_device *dev)
11667{
11668 struct drm_i915_private *dev_priv = dev->dev_private;
11669 u8 sr1;
766aa1c4 11670 u32 vga_reg = i915_vgacntrl_reg(dev);
9cce37f4 11671
2b37c616 11672 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
9cce37f4 11673 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 11674 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
11675 sr1 = inb(VGA_SR_DATA);
11676 outb(sr1 | 1<<5, VGA_SR_DATA);
11677 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
11678 udelay(300);
11679
11680 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
11681 POSTING_READ(vga_reg);
11682}
11683
f817586c
DV
11684void intel_modeset_init_hw(struct drm_device *dev)
11685{
a8f78b58
ED
11686 intel_prepare_ddi(dev);
11687
f817586c
DV
11688 intel_init_clock_gating(dev);
11689
5382f5f3 11690 intel_reset_dpio(dev);
40e9cf64 11691
8090c6b9 11692 intel_enable_gt_powersave(dev);
f817586c
DV
11693}
11694
7d708ee4
ID
11695void intel_modeset_suspend_hw(struct drm_device *dev)
11696{
11697 intel_suspend_hw(dev);
11698}
11699
79e53945
JB
11700void intel_modeset_init(struct drm_device *dev)
11701{
652c393a 11702 struct drm_i915_private *dev_priv = dev->dev_private;
1fe47785 11703 int sprite, ret;
8cc87b75 11704 enum pipe pipe;
46f297fb 11705 struct intel_crtc *crtc;
79e53945
JB
11706
11707 drm_mode_config_init(dev);
11708
11709 dev->mode_config.min_width = 0;
11710 dev->mode_config.min_height = 0;
11711
019d96cb
DA
11712 dev->mode_config.preferred_depth = 24;
11713 dev->mode_config.prefer_shadow = 1;
11714
e6ecefaa 11715 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 11716
b690e96c
JB
11717 intel_init_quirks(dev);
11718
1fa61106
ED
11719 intel_init_pm(dev);
11720
e3c74757
BW
11721 if (INTEL_INFO(dev)->num_pipes == 0)
11722 return;
11723
e70236a8
JB
11724 intel_init_display(dev);
11725
a6c45cf0
CW
11726 if (IS_GEN2(dev)) {
11727 dev->mode_config.max_width = 2048;
11728 dev->mode_config.max_height = 2048;
11729 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
11730 dev->mode_config.max_width = 4096;
11731 dev->mode_config.max_height = 4096;
79e53945 11732 } else {
a6c45cf0
CW
11733 dev->mode_config.max_width = 8192;
11734 dev->mode_config.max_height = 8192;
79e53945 11735 }
068be561
DL
11736
11737 if (IS_GEN2(dev)) {
11738 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
11739 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
11740 } else {
11741 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
11742 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
11743 }
11744
5d4545ae 11745 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
79e53945 11746
28c97730 11747 DRM_DEBUG_KMS("%d display pipe%s available.\n",
7eb552ae
BW
11748 INTEL_INFO(dev)->num_pipes,
11749 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
79e53945 11750
8cc87b75
DL
11751 for_each_pipe(pipe) {
11752 intel_crtc_init(dev, pipe);
1fe47785
DL
11753 for_each_sprite(pipe, sprite) {
11754 ret = intel_plane_init(dev, pipe, sprite);
7f1f3851 11755 if (ret)
06da8da2 11756 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
1fe47785 11757 pipe_name(pipe), sprite_name(pipe, sprite), ret);
7f1f3851 11758 }
79e53945
JB
11759 }
11760
f42bb70d 11761 intel_init_dpio(dev);
5382f5f3 11762 intel_reset_dpio(dev);
f42bb70d 11763
79f689aa 11764 intel_cpu_pll_init(dev);
e72f9fbf 11765 intel_shared_dpll_init(dev);
ee7b9f93 11766
9cce37f4
JB
11767 /* Just disable it once at startup */
11768 i915_disable_vga(dev);
79e53945 11769 intel_setup_outputs(dev);
11be49eb
CW
11770
11771 /* Just in case the BIOS is doing something questionable. */
11772 intel_disable_fbc(dev);
fa9fa083 11773
6e9f798d 11774 drm_modeset_lock_all(dev);
fa9fa083 11775 intel_modeset_setup_hw_state(dev, false);
6e9f798d 11776 drm_modeset_unlock_all(dev);
46f297fb 11777
d3fcc808 11778 for_each_intel_crtc(dev, crtc) {
46f297fb
JB
11779 if (!crtc->active)
11780 continue;
11781
46f297fb 11782 /*
46f297fb
JB
11783 * Note that reserving the BIOS fb up front prevents us
11784 * from stuffing other stolen allocations like the ring
11785 * on top. This prevents some ugliness at boot time, and
11786 * can even allow for smooth boot transitions if the BIOS
11787 * fb is large enough for the active pipe configuration.
11788 */
11789 if (dev_priv->display.get_plane_config) {
11790 dev_priv->display.get_plane_config(crtc,
11791 &crtc->plane_config);
11792 /*
11793 * If the fb is shared between multiple heads, we'll
11794 * just get the first one.
11795 */
484b41dd 11796 intel_find_plane_obj(crtc, &crtc->plane_config);
46f297fb 11797 }
46f297fb 11798 }
2c7111db
CW
11799}
11800
7fad798e
DV
11801static void intel_enable_pipe_a(struct drm_device *dev)
11802{
11803 struct intel_connector *connector;
11804 struct drm_connector *crt = NULL;
11805 struct intel_load_detect_pipe load_detect_temp;
51fd371b 11806 struct drm_modeset_acquire_ctx ctx;
7fad798e
DV
11807
11808 /* We can't just switch on the pipe A, we need to set things up with a
11809 * proper mode and output configuration. As a gross hack, enable pipe A
11810 * by enabling the load detect pipe once. */
11811 list_for_each_entry(connector,
11812 &dev->mode_config.connector_list,
11813 base.head) {
11814 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
11815 crt = &connector->base;
11816 break;
11817 }
11818 }
11819
11820 if (!crt)
11821 return;
11822
51fd371b
RC
11823 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, &ctx))
11824 intel_release_load_detect_pipe(crt, &load_detect_temp, &ctx);
7fad798e 11825
652c393a 11826
7fad798e
DV
11827}
11828
fa555837
DV
11829static bool
11830intel_check_plane_mapping(struct intel_crtc *crtc)
11831{
7eb552ae
BW
11832 struct drm_device *dev = crtc->base.dev;
11833 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837
DV
11834 u32 reg, val;
11835
7eb552ae 11836 if (INTEL_INFO(dev)->num_pipes == 1)
fa555837
DV
11837 return true;
11838
11839 reg = DSPCNTR(!crtc->plane);
11840 val = I915_READ(reg);
11841
11842 if ((val & DISPLAY_PLANE_ENABLE) &&
11843 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
11844 return false;
11845
11846 return true;
11847}
11848
24929352
DV
11849static void intel_sanitize_crtc(struct intel_crtc *crtc)
11850{
11851 struct drm_device *dev = crtc->base.dev;
11852 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837 11853 u32 reg;
24929352 11854
24929352 11855 /* Clear any frame start delays used for debugging left by the BIOS */
3b117c8f 11856 reg = PIPECONF(crtc->config.cpu_transcoder);
24929352
DV
11857 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
11858
d3eaf884
VS
11859 /* restore vblank interrupts to correct state */
11860 if (crtc->active)
11861 drm_vblank_on(dev, crtc->pipe);
11862 else
11863 drm_vblank_off(dev, crtc->pipe);
11864
24929352 11865 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
11866 * disable the crtc (and hence change the state) if it is wrong. Note
11867 * that gen4+ has a fixed plane -> pipe mapping. */
11868 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
11869 struct intel_connector *connector;
11870 bool plane;
11871
24929352
DV
11872 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
11873 crtc->base.base.id);
11874
11875 /* Pipe has the wrong plane attached and the plane is active.
11876 * Temporarily change the plane mapping and disable everything
11877 * ... */
11878 plane = crtc->plane;
11879 crtc->plane = !plane;
11880 dev_priv->display.crtc_disable(&crtc->base);
11881 crtc->plane = plane;
11882
11883 /* ... and break all links. */
11884 list_for_each_entry(connector, &dev->mode_config.connector_list,
11885 base.head) {
11886 if (connector->encoder->base.crtc != &crtc->base)
11887 continue;
11888
7f1950fb
EE
11889 connector->base.dpms = DRM_MODE_DPMS_OFF;
11890 connector->base.encoder = NULL;
24929352 11891 }
7f1950fb
EE
11892 /* multiple connectors may have the same encoder:
11893 * handle them and break crtc link separately */
11894 list_for_each_entry(connector, &dev->mode_config.connector_list,
11895 base.head)
11896 if (connector->encoder->base.crtc == &crtc->base) {
11897 connector->encoder->base.crtc = NULL;
11898 connector->encoder->connectors_active = false;
11899 }
24929352
DV
11900
11901 WARN_ON(crtc->active);
11902 crtc->base.enabled = false;
11903 }
24929352 11904
7fad798e
DV
11905 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
11906 crtc->pipe == PIPE_A && !crtc->active) {
11907 /* BIOS forgot to enable pipe A, this mostly happens after
11908 * resume. Force-enable the pipe to fix this, the update_dpms
11909 * call below we restore the pipe to the right state, but leave
11910 * the required bits on. */
11911 intel_enable_pipe_a(dev);
11912 }
11913
24929352
DV
11914 /* Adjust the state of the output pipe according to whether we
11915 * have active connectors/encoders. */
11916 intel_crtc_update_dpms(&crtc->base);
11917
11918 if (crtc->active != crtc->base.enabled) {
11919 struct intel_encoder *encoder;
11920
11921 /* This can happen either due to bugs in the get_hw_state
11922 * functions or because the pipe is force-enabled due to the
11923 * pipe A quirk. */
11924 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
11925 crtc->base.base.id,
11926 crtc->base.enabled ? "enabled" : "disabled",
11927 crtc->active ? "enabled" : "disabled");
11928
11929 crtc->base.enabled = crtc->active;
11930
11931 /* Because we only establish the connector -> encoder ->
11932 * crtc links if something is active, this means the
11933 * crtc is now deactivated. Break the links. connector
11934 * -> encoder links are only establish when things are
11935 * actually up, hence no need to break them. */
11936 WARN_ON(crtc->active);
11937
11938 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
11939 WARN_ON(encoder->connectors_active);
11940 encoder->base.crtc = NULL;
11941 }
11942 }
c5ab3bc0
DV
11943
11944 if (crtc->active || IS_VALLEYVIEW(dev) || INTEL_INFO(dev)->gen < 5) {
4cc31489
DV
11945 /*
11946 * We start out with underrun reporting disabled to avoid races.
11947 * For correct bookkeeping mark this on active crtcs.
11948 *
c5ab3bc0
DV
11949 * Also on gmch platforms we dont have any hardware bits to
11950 * disable the underrun reporting. Which means we need to start
11951 * out with underrun reporting disabled also on inactive pipes,
11952 * since otherwise we'll complain about the garbage we read when
11953 * e.g. coming up after runtime pm.
11954 *
4cc31489
DV
11955 * No protection against concurrent access is required - at
11956 * worst a fifo underrun happens which also sets this to false.
11957 */
11958 crtc->cpu_fifo_underrun_disabled = true;
11959 crtc->pch_fifo_underrun_disabled = true;
80715b2f
VS
11960
11961 update_scanline_offset(crtc);
4cc31489 11962 }
24929352
DV
11963}
11964
11965static void intel_sanitize_encoder(struct intel_encoder *encoder)
11966{
11967 struct intel_connector *connector;
11968 struct drm_device *dev = encoder->base.dev;
11969
11970 /* We need to check both for a crtc link (meaning that the
11971 * encoder is active and trying to read from a pipe) and the
11972 * pipe itself being active. */
11973 bool has_active_crtc = encoder->base.crtc &&
11974 to_intel_crtc(encoder->base.crtc)->active;
11975
11976 if (encoder->connectors_active && !has_active_crtc) {
11977 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
11978 encoder->base.base.id,
8e329a03 11979 encoder->base.name);
24929352
DV
11980
11981 /* Connector is active, but has no active pipe. This is
11982 * fallout from our resume register restoring. Disable
11983 * the encoder manually again. */
11984 if (encoder->base.crtc) {
11985 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
11986 encoder->base.base.id,
8e329a03 11987 encoder->base.name);
24929352
DV
11988 encoder->disable(encoder);
11989 }
7f1950fb
EE
11990 encoder->base.crtc = NULL;
11991 encoder->connectors_active = false;
24929352
DV
11992
11993 /* Inconsistent output/port/pipe state happens presumably due to
11994 * a bug in one of the get_hw_state functions. Or someplace else
11995 * in our code, like the register restore mess on resume. Clamp
11996 * things to off as a safer default. */
11997 list_for_each_entry(connector,
11998 &dev->mode_config.connector_list,
11999 base.head) {
12000 if (connector->encoder != encoder)
12001 continue;
7f1950fb
EE
12002 connector->base.dpms = DRM_MODE_DPMS_OFF;
12003 connector->base.encoder = NULL;
24929352
DV
12004 }
12005 }
12006 /* Enabled encoders without active connectors will be fixed in
12007 * the crtc fixup. */
12008}
12009
04098753 12010void i915_redisable_vga_power_on(struct drm_device *dev)
0fde901f
KM
12011{
12012 struct drm_i915_private *dev_priv = dev->dev_private;
766aa1c4 12013 u32 vga_reg = i915_vgacntrl_reg(dev);
0fde901f 12014
04098753
ID
12015 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
12016 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
12017 i915_disable_vga(dev);
12018 }
12019}
12020
12021void i915_redisable_vga(struct drm_device *dev)
12022{
12023 struct drm_i915_private *dev_priv = dev->dev_private;
12024
8dc8a27c
PZ
12025 /* This function can be called both from intel_modeset_setup_hw_state or
12026 * at a very early point in our resume sequence, where the power well
12027 * structures are not yet restored. Since this function is at a very
12028 * paranoid "someone might have enabled VGA while we were not looking"
12029 * level, just check if the power well is enabled instead of trying to
12030 * follow the "don't touch the power well if we don't need it" policy
12031 * the rest of the driver uses. */
04098753 12032 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_VGA))
8dc8a27c
PZ
12033 return;
12034
04098753 12035 i915_redisable_vga_power_on(dev);
0fde901f
KM
12036}
12037
98ec7739
VS
12038static bool primary_get_hw_state(struct intel_crtc *crtc)
12039{
12040 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
12041
12042 if (!crtc->active)
12043 return false;
12044
12045 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
12046}
12047
30e984df 12048static void intel_modeset_readout_hw_state(struct drm_device *dev)
24929352
DV
12049{
12050 struct drm_i915_private *dev_priv = dev->dev_private;
12051 enum pipe pipe;
24929352
DV
12052 struct intel_crtc *crtc;
12053 struct intel_encoder *encoder;
12054 struct intel_connector *connector;
5358901f 12055 int i;
24929352 12056
d3fcc808 12057 for_each_intel_crtc(dev, crtc) {
88adfff1 12058 memset(&crtc->config, 0, sizeof(crtc->config));
3b117c8f 12059
9953599b
DV
12060 crtc->config.quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
12061
0e8ffe1b
DV
12062 crtc->active = dev_priv->display.get_pipe_config(crtc,
12063 &crtc->config);
24929352
DV
12064
12065 crtc->base.enabled = crtc->active;
98ec7739 12066 crtc->primary_enabled = primary_get_hw_state(crtc);
24929352
DV
12067
12068 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
12069 crtc->base.base.id,
12070 crtc->active ? "enabled" : "disabled");
12071 }
12072
5358901f 12073 /* FIXME: Smash this into the new shared dpll infrastructure. */
affa9354 12074 if (HAS_DDI(dev))
6441ab5f
PZ
12075 intel_ddi_setup_hw_pll_state(dev);
12076
5358901f
DV
12077 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12078 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12079
12080 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
12081 pll->active = 0;
d3fcc808 12082 for_each_intel_crtc(dev, crtc) {
5358901f
DV
12083 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
12084 pll->active++;
12085 }
12086 pll->refcount = pll->active;
12087
35c95375
DV
12088 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
12089 pll->name, pll->refcount, pll->on);
5358901f
DV
12090 }
12091
24929352
DV
12092 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12093 base.head) {
12094 pipe = 0;
12095
12096 if (encoder->get_hw_state(encoder, &pipe)) {
045ac3b5
JB
12097 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12098 encoder->base.crtc = &crtc->base;
1d37b689 12099 encoder->get_config(encoder, &crtc->config);
24929352
DV
12100 } else {
12101 encoder->base.crtc = NULL;
12102 }
12103
12104 encoder->connectors_active = false;
6f2bcceb 12105 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
24929352 12106 encoder->base.base.id,
8e329a03 12107 encoder->base.name,
24929352 12108 encoder->base.crtc ? "enabled" : "disabled",
6f2bcceb 12109 pipe_name(pipe));
24929352
DV
12110 }
12111
12112 list_for_each_entry(connector, &dev->mode_config.connector_list,
12113 base.head) {
12114 if (connector->get_hw_state(connector)) {
12115 connector->base.dpms = DRM_MODE_DPMS_ON;
12116 connector->encoder->connectors_active = true;
12117 connector->base.encoder = &connector->encoder->base;
12118 } else {
12119 connector->base.dpms = DRM_MODE_DPMS_OFF;
12120 connector->base.encoder = NULL;
12121 }
12122 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
12123 connector->base.base.id,
c23cc417 12124 connector->base.name,
24929352
DV
12125 connector->base.encoder ? "enabled" : "disabled");
12126 }
30e984df
DV
12127}
12128
12129/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
12130 * and i915 state tracking structures. */
12131void intel_modeset_setup_hw_state(struct drm_device *dev,
12132 bool force_restore)
12133{
12134 struct drm_i915_private *dev_priv = dev->dev_private;
12135 enum pipe pipe;
30e984df
DV
12136 struct intel_crtc *crtc;
12137 struct intel_encoder *encoder;
35c95375 12138 int i;
30e984df
DV
12139
12140 intel_modeset_readout_hw_state(dev);
24929352 12141
babea61d
JB
12142 /*
12143 * Now that we have the config, copy it to each CRTC struct
12144 * Note that this could go away if we move to using crtc_config
12145 * checking everywhere.
12146 */
d3fcc808 12147 for_each_intel_crtc(dev, crtc) {
d330a953 12148 if (crtc->active && i915.fastboot) {
f6a83288 12149 intel_mode_from_pipe_config(&crtc->base.mode, &crtc->config);
babea61d
JB
12150 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
12151 crtc->base.base.id);
12152 drm_mode_debug_printmodeline(&crtc->base.mode);
12153 }
12154 }
12155
24929352
DV
12156 /* HW state is read out, now we need to sanitize this mess. */
12157 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12158 base.head) {
12159 intel_sanitize_encoder(encoder);
12160 }
12161
12162 for_each_pipe(pipe) {
12163 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12164 intel_sanitize_crtc(crtc);
c0b03411 12165 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
24929352 12166 }
9a935856 12167
35c95375
DV
12168 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12169 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12170
12171 if (!pll->on || pll->active)
12172 continue;
12173
12174 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
12175
12176 pll->disable(dev_priv, pll);
12177 pll->on = false;
12178 }
12179
96f90c54 12180 if (HAS_PCH_SPLIT(dev))
243e6a44
VS
12181 ilk_wm_get_hw_state(dev);
12182
45e2b5f6 12183 if (force_restore) {
7d0bc1ea
VS
12184 i915_redisable_vga(dev);
12185
f30da187
DV
12186 /*
12187 * We need to use raw interfaces for restoring state to avoid
12188 * checking (bogus) intermediate states.
12189 */
45e2b5f6 12190 for_each_pipe(pipe) {
b5644d05
JB
12191 struct drm_crtc *crtc =
12192 dev_priv->pipe_to_crtc_mapping[pipe];
f30da187
DV
12193
12194 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
f4510a27 12195 crtc->primary->fb);
45e2b5f6
DV
12196 }
12197 } else {
12198 intel_modeset_update_staged_output_state(dev);
12199 }
8af6cf88
DV
12200
12201 intel_modeset_check_state(dev);
2c7111db
CW
12202}
12203
12204void intel_modeset_gem_init(struct drm_device *dev)
12205{
484b41dd
JB
12206 struct drm_crtc *c;
12207 struct intel_framebuffer *fb;
12208
ae48434c
ID
12209 mutex_lock(&dev->struct_mutex);
12210 intel_init_gt_powersave(dev);
12211 mutex_unlock(&dev->struct_mutex);
12212
1833b134 12213 intel_modeset_init_hw(dev);
02e792fb
DV
12214
12215 intel_setup_overlay(dev);
484b41dd
JB
12216
12217 /*
12218 * Make sure any fbs we allocated at startup are properly
12219 * pinned & fenced. When we do the allocation it's too early
12220 * for this.
12221 */
12222 mutex_lock(&dev->struct_mutex);
70e1e0ec 12223 for_each_crtc(dev, c) {
66e514c1 12224 if (!c->primary->fb)
484b41dd
JB
12225 continue;
12226
66e514c1 12227 fb = to_intel_framebuffer(c->primary->fb);
484b41dd
JB
12228 if (intel_pin_and_fence_fb_obj(dev, fb->obj, NULL)) {
12229 DRM_ERROR("failed to pin boot fb on pipe %d\n",
12230 to_intel_crtc(c)->pipe);
66e514c1
DA
12231 drm_framebuffer_unreference(c->primary->fb);
12232 c->primary->fb = NULL;
484b41dd
JB
12233 }
12234 }
12235 mutex_unlock(&dev->struct_mutex);
79e53945
JB
12236}
12237
4932e2c3
ID
12238void intel_connector_unregister(struct intel_connector *intel_connector)
12239{
12240 struct drm_connector *connector = &intel_connector->base;
12241
12242 intel_panel_destroy_backlight(connector);
12243 drm_sysfs_connector_remove(connector);
12244}
12245
79e53945
JB
12246void intel_modeset_cleanup(struct drm_device *dev)
12247{
652c393a
JB
12248 struct drm_i915_private *dev_priv = dev->dev_private;
12249 struct drm_crtc *crtc;
d9255d57 12250 struct drm_connector *connector;
652c393a 12251
fd0c0642
DV
12252 /*
12253 * Interrupts and polling as the first thing to avoid creating havoc.
12254 * Too much stuff here (turning of rps, connectors, ...) would
12255 * experience fancy races otherwise.
12256 */
12257 drm_irq_uninstall(dev);
12258 cancel_work_sync(&dev_priv->hotplug_work);
12259 /*
12260 * Due to the hpd irq storm handling the hotplug work can re-arm the
12261 * poll handlers. Hence disable polling after hpd handling is shut down.
12262 */
f87ea761 12263 drm_kms_helper_poll_fini(dev);
fd0c0642 12264
652c393a
JB
12265 mutex_lock(&dev->struct_mutex);
12266
723bfd70
JB
12267 intel_unregister_dsm_handler();
12268
70e1e0ec 12269 for_each_crtc(dev, crtc) {
652c393a 12270 /* Skip inactive CRTCs */
f4510a27 12271 if (!crtc->primary->fb)
652c393a
JB
12272 continue;
12273
3dec0095 12274 intel_increase_pllclock(crtc);
652c393a
JB
12275 }
12276
973d04f9 12277 intel_disable_fbc(dev);
e70236a8 12278
8090c6b9 12279 intel_disable_gt_powersave(dev);
0cdab21f 12280
930ebb46
DV
12281 ironlake_teardown_rc6(dev);
12282
69341a5e
KH
12283 mutex_unlock(&dev->struct_mutex);
12284
1630fe75
CW
12285 /* flush any delayed tasks or pending work */
12286 flush_scheduled_work();
12287
db31af1d
JN
12288 /* destroy the backlight and sysfs files before encoders/connectors */
12289 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4932e2c3
ID
12290 struct intel_connector *intel_connector;
12291
12292 intel_connector = to_intel_connector(connector);
12293 intel_connector->unregister(intel_connector);
db31af1d 12294 }
d9255d57 12295
79e53945 12296 drm_mode_config_cleanup(dev);
4d7bb011
DV
12297
12298 intel_cleanup_overlay(dev);
ae48434c
ID
12299
12300 mutex_lock(&dev->struct_mutex);
12301 intel_cleanup_gt_powersave(dev);
12302 mutex_unlock(&dev->struct_mutex);
79e53945
JB
12303}
12304
f1c79df3
ZW
12305/*
12306 * Return which encoder is currently attached for connector.
12307 */
df0e9248 12308struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
79e53945 12309{
df0e9248
CW
12310 return &intel_attached_encoder(connector)->base;
12311}
f1c79df3 12312
df0e9248
CW
12313void intel_connector_attach_encoder(struct intel_connector *connector,
12314 struct intel_encoder *encoder)
12315{
12316 connector->encoder = encoder;
12317 drm_mode_connector_attach_encoder(&connector->base,
12318 &encoder->base);
79e53945 12319}
28d52043
DA
12320
12321/*
12322 * set vga decode state - true == enable VGA decode
12323 */
12324int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
12325{
12326 struct drm_i915_private *dev_priv = dev->dev_private;
a885b3cc 12327 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
28d52043
DA
12328 u16 gmch_ctrl;
12329
75fa041d
CW
12330 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
12331 DRM_ERROR("failed to read control word\n");
12332 return -EIO;
12333 }
12334
c0cc8a55
CW
12335 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
12336 return 0;
12337
28d52043
DA
12338 if (state)
12339 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
12340 else
12341 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
75fa041d
CW
12342
12343 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
12344 DRM_ERROR("failed to write control word\n");
12345 return -EIO;
12346 }
12347
28d52043
DA
12348 return 0;
12349}
c4a1d9e4 12350
c4a1d9e4 12351struct intel_display_error_state {
ff57f1b0
PZ
12352
12353 u32 power_well_driver;
12354
63b66e5b
CW
12355 int num_transcoders;
12356
c4a1d9e4
CW
12357 struct intel_cursor_error_state {
12358 u32 control;
12359 u32 position;
12360 u32 base;
12361 u32 size;
52331309 12362 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
12363
12364 struct intel_pipe_error_state {
ddf9c536 12365 bool power_domain_on;
c4a1d9e4 12366 u32 source;
f301b1e1 12367 u32 stat;
52331309 12368 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
12369
12370 struct intel_plane_error_state {
12371 u32 control;
12372 u32 stride;
12373 u32 size;
12374 u32 pos;
12375 u32 addr;
12376 u32 surface;
12377 u32 tile_offset;
52331309 12378 } plane[I915_MAX_PIPES];
63b66e5b
CW
12379
12380 struct intel_transcoder_error_state {
ddf9c536 12381 bool power_domain_on;
63b66e5b
CW
12382 enum transcoder cpu_transcoder;
12383
12384 u32 conf;
12385
12386 u32 htotal;
12387 u32 hblank;
12388 u32 hsync;
12389 u32 vtotal;
12390 u32 vblank;
12391 u32 vsync;
12392 } transcoder[4];
c4a1d9e4
CW
12393};
12394
12395struct intel_display_error_state *
12396intel_display_capture_error_state(struct drm_device *dev)
12397{
fbee40df 12398 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4 12399 struct intel_display_error_state *error;
63b66e5b
CW
12400 int transcoders[] = {
12401 TRANSCODER_A,
12402 TRANSCODER_B,
12403 TRANSCODER_C,
12404 TRANSCODER_EDP,
12405 };
c4a1d9e4
CW
12406 int i;
12407
63b66e5b
CW
12408 if (INTEL_INFO(dev)->num_pipes == 0)
12409 return NULL;
12410
9d1cb914 12411 error = kzalloc(sizeof(*error), GFP_ATOMIC);
c4a1d9e4
CW
12412 if (error == NULL)
12413 return NULL;
12414
190be112 12415 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
ff57f1b0
PZ
12416 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
12417
52331309 12418 for_each_pipe(i) {
ddf9c536 12419 error->pipe[i].power_domain_on =
da7e29bd
ID
12420 intel_display_power_enabled_sw(dev_priv,
12421 POWER_DOMAIN_PIPE(i));
ddf9c536 12422 if (!error->pipe[i].power_domain_on)
9d1cb914
PZ
12423 continue;
12424
5efb3e28
VS
12425 error->cursor[i].control = I915_READ(CURCNTR(i));
12426 error->cursor[i].position = I915_READ(CURPOS(i));
12427 error->cursor[i].base = I915_READ(CURBASE(i));
c4a1d9e4
CW
12428
12429 error->plane[i].control = I915_READ(DSPCNTR(i));
12430 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
80ca378b 12431 if (INTEL_INFO(dev)->gen <= 3) {
51889b35 12432 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
12433 error->plane[i].pos = I915_READ(DSPPOS(i));
12434 }
ca291363
PZ
12435 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
12436 error->plane[i].addr = I915_READ(DSPADDR(i));
c4a1d9e4
CW
12437 if (INTEL_INFO(dev)->gen >= 4) {
12438 error->plane[i].surface = I915_READ(DSPSURF(i));
12439 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
12440 }
12441
c4a1d9e4 12442 error->pipe[i].source = I915_READ(PIPESRC(i));
f301b1e1
ID
12443
12444 if (!HAS_PCH_SPLIT(dev))
12445 error->pipe[i].stat = I915_READ(PIPESTAT(i));
63b66e5b
CW
12446 }
12447
12448 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
12449 if (HAS_DDI(dev_priv->dev))
12450 error->num_transcoders++; /* Account for eDP. */
12451
12452 for (i = 0; i < error->num_transcoders; i++) {
12453 enum transcoder cpu_transcoder = transcoders[i];
12454
ddf9c536 12455 error->transcoder[i].power_domain_on =
da7e29bd 12456 intel_display_power_enabled_sw(dev_priv,
38cc1daf 12457 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
ddf9c536 12458 if (!error->transcoder[i].power_domain_on)
9d1cb914
PZ
12459 continue;
12460
63b66e5b
CW
12461 error->transcoder[i].cpu_transcoder = cpu_transcoder;
12462
12463 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
12464 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
12465 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
12466 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
12467 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
12468 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
12469 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
12470 }
12471
12472 return error;
12473}
12474
edc3d884
MK
12475#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
12476
c4a1d9e4 12477void
edc3d884 12478intel_display_print_error_state(struct drm_i915_error_state_buf *m,
c4a1d9e4
CW
12479 struct drm_device *dev,
12480 struct intel_display_error_state *error)
12481{
12482 int i;
12483
63b66e5b
CW
12484 if (!error)
12485 return;
12486
edc3d884 12487 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
190be112 12488 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
edc3d884 12489 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 12490 error->power_well_driver);
52331309 12491 for_each_pipe(i) {
edc3d884 12492 err_printf(m, "Pipe [%d]:\n", i);
ddf9c536
ID
12493 err_printf(m, " Power: %s\n",
12494 error->pipe[i].power_domain_on ? "on" : "off");
edc3d884 12495 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
f301b1e1 12496 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
edc3d884
MK
12497
12498 err_printf(m, "Plane [%d]:\n", i);
12499 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
12500 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
80ca378b 12501 if (INTEL_INFO(dev)->gen <= 3) {
edc3d884
MK
12502 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
12503 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 12504 }
4b71a570 12505 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
edc3d884 12506 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
c4a1d9e4 12507 if (INTEL_INFO(dev)->gen >= 4) {
edc3d884
MK
12508 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
12509 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
12510 }
12511
edc3d884
MK
12512 err_printf(m, "Cursor [%d]:\n", i);
12513 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
12514 err_printf(m, " POS: %08x\n", error->cursor[i].position);
12515 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4 12516 }
63b66e5b
CW
12517
12518 for (i = 0; i < error->num_transcoders; i++) {
1cf84bb6 12519 err_printf(m, "CPU transcoder: %c\n",
63b66e5b 12520 transcoder_name(error->transcoder[i].cpu_transcoder));
ddf9c536
ID
12521 err_printf(m, " Power: %s\n",
12522 error->transcoder[i].power_domain_on ? "on" : "off");
63b66e5b
CW
12523 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
12524 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
12525 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
12526 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
12527 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
12528 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
12529 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
12530 }
c4a1d9e4 12531}