Merge branch 'topic/drm-vblank-rework' into drm-intel-next-queued
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_display.c
CommitLineData
79e53945
JB
1/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
618563e3 27#include <linux/dmi.h>
c1c7af60
JB
28#include <linux/module.h>
29#include <linux/input.h>
79e53945 30#include <linux/i2c.h>
7662c8bd 31#include <linux/kernel.h>
5a0e3ad6 32#include <linux/slab.h>
9cce37f4 33#include <linux/vgaarb.h>
e0dac65e 34#include <drm/drm_edid.h>
760285e7 35#include <drm/drmP.h>
79e53945 36#include "intel_drv.h"
760285e7 37#include <drm/i915_drm.h>
79e53945 38#include "i915_drv.h"
e5510fac 39#include "i915_trace.h"
760285e7
DH
40#include <drm/drm_dp_helper.h>
41#include <drm/drm_crtc_helper.h>
c0f372b3 42#include <linux/dma_remapping.h>
79e53945 43
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
e5cbfbfb
ID
1487 /*
1488 * Enable the CRI clock source so we can get at the display and the
1489 * reference clock for VGA hotplug / manual detection.
1490 */
404faabc 1491 I915_WRITE(DPLL(PIPE_B), I915_READ(DPLL(PIPE_B)) |
e5cbfbfb 1492 DPLL_REFA_CLK_ENABLE_VLV |
404faabc
ID
1493 DPLL_INTEGRATED_CRI_CLK_VLV);
1494
076ed3b2
CML
1495 if (IS_CHERRYVIEW(dev)) {
1496 enum dpio_phy phy;
1497 u32 val;
1498
1499 for (phy = DPIO_PHY0; phy < I915_NUM_PHYS_VLV; phy++) {
1500 /* Poll for phypwrgood signal */
1501 if (wait_for(I915_READ(DISPLAY_PHY_STATUS) &
1502 PHY_POWERGOOD(phy), 1))
1503 DRM_ERROR("Display PHY %d is not power up\n", phy);
1504
1505 /*
1506 * Deassert common lane reset for PHY.
1507 *
1508 * This should only be done on init and resume from S3
1509 * with both PLLs disabled, or we risk losing DPIO and
1510 * PLL synchronization.
1511 */
1512 val = I915_READ(DISPLAY_PHY_CONTROL);
1513 I915_WRITE(DISPLAY_PHY_CONTROL,
1514 PHY_COM_LANE_RESET_DEASSERT(phy, val));
1515 }
1516
1517 } else {
1518 /*
1519 * From VLV2A0_DP_eDP_DPIO_driver_vbios_notes_10.docx -
1520 * 6. De-assert cmn_reset/side_reset. Same as VLV X0.
1521 * a. GUnit 0x2110 bit[0] set to 1 (def 0)
1522 * b. The other bits such as sfr settings / modesel may all
1523 * be set to 0.
1524 *
1525 * This should only be done on init and resume from S3 with
1526 * both PLLs disabled, or we risk losing DPIO and PLL
1527 * synchronization.
1528 */
1529 I915_WRITE(DPIO_CTL, I915_READ(DPIO_CTL) | DPIO_CMNRST);
1530 }
40e9cf64
JB
1531}
1532
426115cf 1533static void vlv_enable_pll(struct intel_crtc *crtc)
87442f73 1534{
426115cf
DV
1535 struct drm_device *dev = crtc->base.dev;
1536 struct drm_i915_private *dev_priv = dev->dev_private;
1537 int reg = DPLL(crtc->pipe);
1538 u32 dpll = crtc->config.dpll_hw_state.dpll;
87442f73 1539
426115cf 1540 assert_pipe_disabled(dev_priv, crtc->pipe);
87442f73
DV
1541
1542 /* No really, not for ILK+ */
1543 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1544
1545 /* PLL is protected by panel, make sure we can write it */
1546 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
426115cf 1547 assert_panel_unlocked(dev_priv, crtc->pipe);
87442f73 1548
426115cf
DV
1549 I915_WRITE(reg, dpll);
1550 POSTING_READ(reg);
1551 udelay(150);
1552
1553 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1554 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1555
1556 I915_WRITE(DPLL_MD(crtc->pipe), crtc->config.dpll_hw_state.dpll_md);
1557 POSTING_READ(DPLL_MD(crtc->pipe));
87442f73
DV
1558
1559 /* We do this three times for luck */
426115cf 1560 I915_WRITE(reg, dpll);
87442f73
DV
1561 POSTING_READ(reg);
1562 udelay(150); /* wait for warmup */
426115cf 1563 I915_WRITE(reg, dpll);
87442f73
DV
1564 POSTING_READ(reg);
1565 udelay(150); /* wait for warmup */
426115cf 1566 I915_WRITE(reg, dpll);
87442f73
DV
1567 POSTING_READ(reg);
1568 udelay(150); /* wait for warmup */
1569}
1570
9d556c99
CML
1571static void chv_enable_pll(struct intel_crtc *crtc)
1572{
1573 struct drm_device *dev = crtc->base.dev;
1574 struct drm_i915_private *dev_priv = dev->dev_private;
1575 int pipe = crtc->pipe;
1576 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9d556c99
CML
1577 u32 tmp;
1578
1579 assert_pipe_disabled(dev_priv, crtc->pipe);
1580
1581 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1582
1583 mutex_lock(&dev_priv->dpio_lock);
1584
1585 /* Enable back the 10bit clock to display controller */
1586 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1587 tmp |= DPIO_DCLKP_EN;
1588 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1589
1590 /*
1591 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1592 */
1593 udelay(1);
1594
1595 /* Enable PLL */
a11b0703 1596 I915_WRITE(DPLL(pipe), crtc->config.dpll_hw_state.dpll);
9d556c99
CML
1597
1598 /* Check PLL is locked */
a11b0703 1599 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
9d556c99
CML
1600 DRM_ERROR("PLL %d failed to lock\n", pipe);
1601
a11b0703
VS
1602 /* not sure when this should be written */
1603 I915_WRITE(DPLL_MD(pipe), crtc->config.dpll_hw_state.dpll_md);
1604 POSTING_READ(DPLL_MD(pipe));
1605
9d556c99
CML
1606 mutex_unlock(&dev_priv->dpio_lock);
1607}
1608
66e3d5c0 1609static void i9xx_enable_pll(struct intel_crtc *crtc)
63d7bbe9 1610{
66e3d5c0
DV
1611 struct drm_device *dev = crtc->base.dev;
1612 struct drm_i915_private *dev_priv = dev->dev_private;
1613 int reg = DPLL(crtc->pipe);
1614 u32 dpll = crtc->config.dpll_hw_state.dpll;
63d7bbe9 1615
66e3d5c0 1616 assert_pipe_disabled(dev_priv, crtc->pipe);
58c6eaa2 1617
63d7bbe9 1618 /* No really, not for ILK+ */
3d13ef2e 1619 BUG_ON(INTEL_INFO(dev)->gen >= 5);
63d7bbe9
JB
1620
1621 /* PLL is protected by panel, make sure we can write it */
66e3d5c0
DV
1622 if (IS_MOBILE(dev) && !IS_I830(dev))
1623 assert_panel_unlocked(dev_priv, crtc->pipe);
63d7bbe9 1624
66e3d5c0
DV
1625 I915_WRITE(reg, dpll);
1626
1627 /* Wait for the clocks to stabilize. */
1628 POSTING_READ(reg);
1629 udelay(150);
1630
1631 if (INTEL_INFO(dev)->gen >= 4) {
1632 I915_WRITE(DPLL_MD(crtc->pipe),
1633 crtc->config.dpll_hw_state.dpll_md);
1634 } else {
1635 /* The pixel multiplier can only be updated once the
1636 * DPLL is enabled and the clocks are stable.
1637 *
1638 * So write it again.
1639 */
1640 I915_WRITE(reg, dpll);
1641 }
63d7bbe9
JB
1642
1643 /* We do this three times for luck */
66e3d5c0 1644 I915_WRITE(reg, dpll);
63d7bbe9
JB
1645 POSTING_READ(reg);
1646 udelay(150); /* wait for warmup */
66e3d5c0 1647 I915_WRITE(reg, dpll);
63d7bbe9
JB
1648 POSTING_READ(reg);
1649 udelay(150); /* wait for warmup */
66e3d5c0 1650 I915_WRITE(reg, dpll);
63d7bbe9
JB
1651 POSTING_READ(reg);
1652 udelay(150); /* wait for warmup */
1653}
1654
1655/**
50b44a44 1656 * i9xx_disable_pll - disable a PLL
63d7bbe9
JB
1657 * @dev_priv: i915 private structure
1658 * @pipe: pipe PLL to disable
1659 *
1660 * Disable the PLL for @pipe, making sure the pipe is off first.
1661 *
1662 * Note! This is for pre-ILK only.
1663 */
50b44a44 1664static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
63d7bbe9 1665{
63d7bbe9
JB
1666 /* Don't disable pipe A or pipe A PLLs if needed */
1667 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1668 return;
1669
1670 /* Make sure the pipe isn't still relying on us */
1671 assert_pipe_disabled(dev_priv, pipe);
1672
50b44a44
DV
1673 I915_WRITE(DPLL(pipe), 0);
1674 POSTING_READ(DPLL(pipe));
63d7bbe9
JB
1675}
1676
f6071166
JB
1677static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1678{
1679 u32 val = 0;
1680
1681 /* Make sure the pipe isn't still relying on us */
1682 assert_pipe_disabled(dev_priv, pipe);
1683
e5cbfbfb
ID
1684 /*
1685 * Leave integrated clock source and reference clock enabled for pipe B.
1686 * The latter is needed for VGA hotplug / manual detection.
1687 */
f6071166 1688 if (pipe == PIPE_B)
e5cbfbfb 1689 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
f6071166
JB
1690 I915_WRITE(DPLL(pipe), val);
1691 POSTING_READ(DPLL(pipe));
076ed3b2
CML
1692
1693}
1694
1695static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1696{
d752048d 1697 enum dpio_channel port = vlv_pipe_to_channel(pipe);
076ed3b2
CML
1698 u32 val;
1699
a11b0703
VS
1700 /* Make sure the pipe isn't still relying on us */
1701 assert_pipe_disabled(dev_priv, pipe);
076ed3b2 1702
a11b0703
VS
1703 /* Set PLL en = 0 */
1704 val = DPLL_SSC_REF_CLOCK_CHV;
1705 if (pipe != PIPE_A)
1706 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1707 I915_WRITE(DPLL(pipe), val);
1708 POSTING_READ(DPLL(pipe));
d752048d
VS
1709
1710 mutex_lock(&dev_priv->dpio_lock);
1711
1712 /* Disable 10bit clock to display controller */
1713 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1714 val &= ~DPIO_DCLKP_EN;
1715 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1716
1717 mutex_unlock(&dev_priv->dpio_lock);
f6071166
JB
1718}
1719
e4607fcf
CML
1720void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1721 struct intel_digital_port *dport)
89b667f8
JB
1722{
1723 u32 port_mask;
00fc31b7 1724 int dpll_reg;
89b667f8 1725
e4607fcf
CML
1726 switch (dport->port) {
1727 case PORT_B:
89b667f8 1728 port_mask = DPLL_PORTB_READY_MASK;
00fc31b7 1729 dpll_reg = DPLL(0);
e4607fcf
CML
1730 break;
1731 case PORT_C:
89b667f8 1732 port_mask = DPLL_PORTC_READY_MASK;
00fc31b7
CML
1733 dpll_reg = DPLL(0);
1734 break;
1735 case PORT_D:
1736 port_mask = DPLL_PORTD_READY_MASK;
1737 dpll_reg = DPIO_PHY_STATUS;
e4607fcf
CML
1738 break;
1739 default:
1740 BUG();
1741 }
89b667f8 1742
00fc31b7 1743 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
89b667f8 1744 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
00fc31b7 1745 port_name(dport->port), I915_READ(dpll_reg));
89b667f8
JB
1746}
1747
b14b1055
DV
1748static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1749{
1750 struct drm_device *dev = crtc->base.dev;
1751 struct drm_i915_private *dev_priv = dev->dev_private;
1752 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1753
1754 WARN_ON(!pll->refcount);
1755 if (pll->active == 0) {
1756 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1757 WARN_ON(pll->on);
1758 assert_shared_dpll_disabled(dev_priv, pll);
1759
1760 pll->mode_set(dev_priv, pll);
1761 }
1762}
1763
92f2584a 1764/**
85b3894f 1765 * intel_enable_shared_dpll - enable PCH PLL
92f2584a
JB
1766 * @dev_priv: i915 private structure
1767 * @pipe: pipe PLL to enable
1768 *
1769 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1770 * drives the transcoder clock.
1771 */
85b3894f 1772static void intel_enable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1773{
3d13ef2e
DL
1774 struct drm_device *dev = crtc->base.dev;
1775 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1776 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
92f2584a 1777
87a875bb 1778 if (WARN_ON(pll == NULL))
48da64a8
CW
1779 return;
1780
1781 if (WARN_ON(pll->refcount == 0))
1782 return;
ee7b9f93 1783
46edb027
DV
1784 DRM_DEBUG_KMS("enable %s (active %d, on? %d)for crtc %d\n",
1785 pll->name, pll->active, pll->on,
e2b78267 1786 crtc->base.base.id);
92f2584a 1787
cdbd2316
DV
1788 if (pll->active++) {
1789 WARN_ON(!pll->on);
e9d6944e 1790 assert_shared_dpll_enabled(dev_priv, pll);
ee7b9f93
JB
1791 return;
1792 }
f4a091c7 1793 WARN_ON(pll->on);
ee7b9f93 1794
46edb027 1795 DRM_DEBUG_KMS("enabling %s\n", pll->name);
e7b903d2 1796 pll->enable(dev_priv, pll);
ee7b9f93 1797 pll->on = true;
92f2584a
JB
1798}
1799
e2b78267 1800static void intel_disable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1801{
3d13ef2e
DL
1802 struct drm_device *dev = crtc->base.dev;
1803 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1804 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
4c609cb8 1805
92f2584a 1806 /* PCH only available on ILK+ */
3d13ef2e 1807 BUG_ON(INTEL_INFO(dev)->gen < 5);
87a875bb 1808 if (WARN_ON(pll == NULL))
ee7b9f93 1809 return;
92f2584a 1810
48da64a8
CW
1811 if (WARN_ON(pll->refcount == 0))
1812 return;
7a419866 1813
46edb027
DV
1814 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1815 pll->name, pll->active, pll->on,
e2b78267 1816 crtc->base.base.id);
7a419866 1817
48da64a8 1818 if (WARN_ON(pll->active == 0)) {
e9d6944e 1819 assert_shared_dpll_disabled(dev_priv, pll);
48da64a8
CW
1820 return;
1821 }
1822
e9d6944e 1823 assert_shared_dpll_enabled(dev_priv, pll);
f4a091c7 1824 WARN_ON(!pll->on);
cdbd2316 1825 if (--pll->active)
7a419866 1826 return;
ee7b9f93 1827
46edb027 1828 DRM_DEBUG_KMS("disabling %s\n", pll->name);
e7b903d2 1829 pll->disable(dev_priv, pll);
ee7b9f93 1830 pll->on = false;
92f2584a
JB
1831}
1832
b8a4f404
PZ
1833static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1834 enum pipe pipe)
040484af 1835{
23670b32 1836 struct drm_device *dev = dev_priv->dev;
7c26e5c6 1837 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e2b78267 1838 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
23670b32 1839 uint32_t reg, val, pipeconf_val;
040484af
JB
1840
1841 /* PCH only available on ILK+ */
3d13ef2e 1842 BUG_ON(INTEL_INFO(dev)->gen < 5);
040484af
JB
1843
1844 /* Make sure PCH DPLL is enabled */
e72f9fbf 1845 assert_shared_dpll_enabled(dev_priv,
e9d6944e 1846 intel_crtc_to_shared_dpll(intel_crtc));
040484af
JB
1847
1848 /* FDI must be feeding us bits for PCH ports */
1849 assert_fdi_tx_enabled(dev_priv, pipe);
1850 assert_fdi_rx_enabled(dev_priv, pipe);
1851
23670b32
DV
1852 if (HAS_PCH_CPT(dev)) {
1853 /* Workaround: Set the timing override bit before enabling the
1854 * pch transcoder. */
1855 reg = TRANS_CHICKEN2(pipe);
1856 val = I915_READ(reg);
1857 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1858 I915_WRITE(reg, val);
59c859d6 1859 }
23670b32 1860
ab9412ba 1861 reg = PCH_TRANSCONF(pipe);
040484af 1862 val = I915_READ(reg);
5f7f726d 1863 pipeconf_val = I915_READ(PIPECONF(pipe));
e9bcff5c
JB
1864
1865 if (HAS_PCH_IBX(dev_priv->dev)) {
1866 /*
1867 * make the BPC in transcoder be consistent with
1868 * that in pipeconf reg.
1869 */
dfd07d72
DV
1870 val &= ~PIPECONF_BPC_MASK;
1871 val |= pipeconf_val & PIPECONF_BPC_MASK;
e9bcff5c 1872 }
5f7f726d
PZ
1873
1874 val &= ~TRANS_INTERLACE_MASK;
1875 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
7c26e5c6
PZ
1876 if (HAS_PCH_IBX(dev_priv->dev) &&
1877 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1878 val |= TRANS_LEGACY_INTERLACED_ILK;
1879 else
1880 val |= TRANS_INTERLACED;
5f7f726d
PZ
1881 else
1882 val |= TRANS_PROGRESSIVE;
1883
040484af
JB
1884 I915_WRITE(reg, val | TRANS_ENABLE);
1885 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
4bb6f1f3 1886 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
040484af
JB
1887}
1888
8fb033d7 1889static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
937bb610 1890 enum transcoder cpu_transcoder)
040484af 1891{
8fb033d7 1892 u32 val, pipeconf_val;
8fb033d7
PZ
1893
1894 /* PCH only available on ILK+ */
3d13ef2e 1895 BUG_ON(INTEL_INFO(dev_priv->dev)->gen < 5);
8fb033d7 1896
8fb033d7 1897 /* FDI must be feeding us bits for PCH ports */
1a240d4d 1898 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
937bb610 1899 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
8fb033d7 1900
223a6fdf
PZ
1901 /* Workaround: set timing override bit. */
1902 val = I915_READ(_TRANSA_CHICKEN2);
23670b32 1903 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
223a6fdf
PZ
1904 I915_WRITE(_TRANSA_CHICKEN2, val);
1905
25f3ef11 1906 val = TRANS_ENABLE;
937bb610 1907 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
8fb033d7 1908
9a76b1c6
PZ
1909 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1910 PIPECONF_INTERLACED_ILK)
a35f2679 1911 val |= TRANS_INTERLACED;
8fb033d7
PZ
1912 else
1913 val |= TRANS_PROGRESSIVE;
1914
ab9412ba
DV
1915 I915_WRITE(LPT_TRANSCONF, val);
1916 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
937bb610 1917 DRM_ERROR("Failed to enable PCH transcoder\n");
8fb033d7
PZ
1918}
1919
b8a4f404
PZ
1920static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1921 enum pipe pipe)
040484af 1922{
23670b32
DV
1923 struct drm_device *dev = dev_priv->dev;
1924 uint32_t reg, val;
040484af
JB
1925
1926 /* FDI relies on the transcoder */
1927 assert_fdi_tx_disabled(dev_priv, pipe);
1928 assert_fdi_rx_disabled(dev_priv, pipe);
1929
291906f1
JB
1930 /* Ports must be off as well */
1931 assert_pch_ports_disabled(dev_priv, pipe);
1932
ab9412ba 1933 reg = PCH_TRANSCONF(pipe);
040484af
JB
1934 val = I915_READ(reg);
1935 val &= ~TRANS_ENABLE;
1936 I915_WRITE(reg, val);
1937 /* wait for PCH transcoder off, transcoder state */
1938 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
4bb6f1f3 1939 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
23670b32
DV
1940
1941 if (!HAS_PCH_IBX(dev)) {
1942 /* Workaround: Clear the timing override chicken bit again. */
1943 reg = TRANS_CHICKEN2(pipe);
1944 val = I915_READ(reg);
1945 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1946 I915_WRITE(reg, val);
1947 }
040484af
JB
1948}
1949
ab4d966c 1950static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
8fb033d7 1951{
8fb033d7
PZ
1952 u32 val;
1953
ab9412ba 1954 val = I915_READ(LPT_TRANSCONF);
8fb033d7 1955 val &= ~TRANS_ENABLE;
ab9412ba 1956 I915_WRITE(LPT_TRANSCONF, val);
8fb033d7 1957 /* wait for PCH transcoder off, transcoder state */
ab9412ba 1958 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
8a52fd9f 1959 DRM_ERROR("Failed to disable PCH transcoder\n");
223a6fdf
PZ
1960
1961 /* Workaround: clear timing override bit. */
1962 val = I915_READ(_TRANSA_CHICKEN2);
23670b32 1963 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
223a6fdf 1964 I915_WRITE(_TRANSA_CHICKEN2, val);
040484af
JB
1965}
1966
b24e7179 1967/**
309cfea8 1968 * intel_enable_pipe - enable a pipe, asserting requirements
0372264a 1969 * @crtc: crtc responsible for the pipe
b24e7179 1970 *
0372264a 1971 * Enable @crtc's pipe, making sure that various hardware specific requirements
b24e7179 1972 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
b24e7179 1973 */
e1fdc473 1974static void intel_enable_pipe(struct intel_crtc *crtc)
b24e7179 1975{
0372264a
PZ
1976 struct drm_device *dev = crtc->base.dev;
1977 struct drm_i915_private *dev_priv = dev->dev_private;
1978 enum pipe pipe = crtc->pipe;
702e7a56
PZ
1979 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1980 pipe);
1a240d4d 1981 enum pipe pch_transcoder;
b24e7179
JB
1982 int reg;
1983 u32 val;
1984
58c6eaa2 1985 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 1986 assert_cursor_disabled(dev_priv, pipe);
58c6eaa2
DV
1987 assert_sprites_disabled(dev_priv, pipe);
1988
681e5811 1989 if (HAS_PCH_LPT(dev_priv->dev))
cc391bbb
PZ
1990 pch_transcoder = TRANSCODER_A;
1991 else
1992 pch_transcoder = pipe;
1993
b24e7179
JB
1994 /*
1995 * A pipe without a PLL won't actually be able to drive bits from
1996 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1997 * need the check.
1998 */
1999 if (!HAS_PCH_SPLIT(dev_priv->dev))
fbf3218a 2000 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DSI))
23538ef1
JN
2001 assert_dsi_pll_enabled(dev_priv);
2002 else
2003 assert_pll_enabled(dev_priv, pipe);
040484af 2004 else {
30421c4f 2005 if (crtc->config.has_pch_encoder) {
040484af 2006 /* if driving the PCH, we need FDI enabled */
cc391bbb 2007 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
1a240d4d
DV
2008 assert_fdi_tx_pll_enabled(dev_priv,
2009 (enum pipe) cpu_transcoder);
040484af
JB
2010 }
2011 /* FIXME: assert CPU port conditions for SNB+ */
2012 }
b24e7179 2013
702e7a56 2014 reg = PIPECONF(cpu_transcoder);
b24e7179 2015 val = I915_READ(reg);
7ad25d48
PZ
2016 if (val & PIPECONF_ENABLE) {
2017 WARN_ON(!(pipe == PIPE_A &&
2018 dev_priv->quirks & QUIRK_PIPEA_FORCE));
00d70b15 2019 return;
7ad25d48 2020 }
00d70b15
CW
2021
2022 I915_WRITE(reg, val | PIPECONF_ENABLE);
851855d8 2023 POSTING_READ(reg);
b24e7179
JB
2024}
2025
2026/**
309cfea8 2027 * intel_disable_pipe - disable a pipe, asserting requirements
b24e7179
JB
2028 * @dev_priv: i915 private structure
2029 * @pipe: pipe to disable
2030 *
2031 * Disable @pipe, making sure that various hardware specific requirements
2032 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
2033 *
2034 * @pipe should be %PIPE_A or %PIPE_B.
2035 *
2036 * Will wait until the pipe has shut down before returning.
2037 */
2038static void intel_disable_pipe(struct drm_i915_private *dev_priv,
2039 enum pipe pipe)
2040{
702e7a56
PZ
2041 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2042 pipe);
b24e7179
JB
2043 int reg;
2044 u32 val;
2045
2046 /*
2047 * Make sure planes won't keep trying to pump pixels to us,
2048 * or we might hang the display.
2049 */
2050 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2051 assert_cursor_disabled(dev_priv, pipe);
19332d7a 2052 assert_sprites_disabled(dev_priv, pipe);
b24e7179
JB
2053
2054 /* Don't disable pipe A or pipe A PLLs if needed */
2055 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2056 return;
2057
702e7a56 2058 reg = PIPECONF(cpu_transcoder);
b24e7179 2059 val = I915_READ(reg);
00d70b15
CW
2060 if ((val & PIPECONF_ENABLE) == 0)
2061 return;
2062
2063 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
b24e7179
JB
2064 intel_wait_for_pipe_off(dev_priv->dev, pipe);
2065}
2066
d74362c9
KP
2067/*
2068 * Plane regs are double buffered, going from enabled->disabled needs a
2069 * trigger in order to latch. The display address reg provides this.
2070 */
1dba99f4
VS
2071void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2072 enum plane plane)
d74362c9 2073{
3d13ef2e
DL
2074 struct drm_device *dev = dev_priv->dev;
2075 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
1dba99f4
VS
2076
2077 I915_WRITE(reg, I915_READ(reg));
2078 POSTING_READ(reg);
d74362c9
KP
2079}
2080
b24e7179 2081/**
262ca2b0 2082 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
b24e7179
JB
2083 * @dev_priv: i915 private structure
2084 * @plane: plane to enable
2085 * @pipe: pipe being fed
2086 *
2087 * Enable @plane on @pipe, making sure that @pipe is running first.
2088 */
262ca2b0
MR
2089static void intel_enable_primary_hw_plane(struct drm_i915_private *dev_priv,
2090 enum plane plane, enum pipe pipe)
b24e7179 2091{
939c2fe8
VS
2092 struct intel_crtc *intel_crtc =
2093 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
b24e7179
JB
2094 int reg;
2095 u32 val;
2096
2097 /* If the pipe isn't enabled, we can't pump pixels and may hang */
2098 assert_pipe_enabled(dev_priv, pipe);
2099
98ec7739
VS
2100 if (intel_crtc->primary_enabled)
2101 return;
0037f71c 2102
4c445e0e 2103 intel_crtc->primary_enabled = true;
939c2fe8 2104
b24e7179
JB
2105 reg = DSPCNTR(plane);
2106 val = I915_READ(reg);
10efa932 2107 WARN_ON(val & DISPLAY_PLANE_ENABLE);
00d70b15
CW
2108
2109 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
1dba99f4 2110 intel_flush_primary_plane(dev_priv, plane);
b24e7179
JB
2111}
2112
b24e7179 2113/**
262ca2b0 2114 * intel_disable_primary_hw_plane - disable the primary hardware plane
b24e7179
JB
2115 * @dev_priv: i915 private structure
2116 * @plane: plane to disable
2117 * @pipe: pipe consuming the data
2118 *
2119 * Disable @plane; should be an independent operation.
2120 */
262ca2b0
MR
2121static void intel_disable_primary_hw_plane(struct drm_i915_private *dev_priv,
2122 enum plane plane, enum pipe pipe)
b24e7179 2123{
939c2fe8
VS
2124 struct intel_crtc *intel_crtc =
2125 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
b24e7179
JB
2126 int reg;
2127 u32 val;
2128
98ec7739
VS
2129 if (!intel_crtc->primary_enabled)
2130 return;
0037f71c 2131
4c445e0e 2132 intel_crtc->primary_enabled = false;
939c2fe8 2133
b24e7179
JB
2134 reg = DSPCNTR(plane);
2135 val = I915_READ(reg);
10efa932 2136 WARN_ON((val & DISPLAY_PLANE_ENABLE) == 0);
00d70b15
CW
2137
2138 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
1dba99f4 2139 intel_flush_primary_plane(dev_priv, plane);
b24e7179
JB
2140}
2141
693db184
CW
2142static bool need_vtd_wa(struct drm_device *dev)
2143{
2144#ifdef CONFIG_INTEL_IOMMU
2145 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2146 return true;
2147#endif
2148 return false;
2149}
2150
a57ce0b2
JB
2151static int intel_align_height(struct drm_device *dev, int height, bool tiled)
2152{
2153 int tile_height;
2154
2155 tile_height = tiled ? (IS_GEN2(dev) ? 16 : 8) : 1;
2156 return ALIGN(height, tile_height);
2157}
2158
127bd2ac 2159int
48b956c5 2160intel_pin_and_fence_fb_obj(struct drm_device *dev,
05394f39 2161 struct drm_i915_gem_object *obj,
919926ae 2162 struct intel_ring_buffer *pipelined)
6b95a207 2163{
ce453d81 2164 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
2165 u32 alignment;
2166 int ret;
2167
05394f39 2168 switch (obj->tiling_mode) {
6b95a207 2169 case I915_TILING_NONE:
534843da
CW
2170 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2171 alignment = 128 * 1024;
a6c45cf0 2172 else if (INTEL_INFO(dev)->gen >= 4)
534843da
CW
2173 alignment = 4 * 1024;
2174 else
2175 alignment = 64 * 1024;
6b95a207
KH
2176 break;
2177 case I915_TILING_X:
2178 /* pin() will align the object as required by fence */
2179 alignment = 0;
2180 break;
2181 case I915_TILING_Y:
80075d49 2182 WARN(1, "Y tiled bo slipped through, driver bug!\n");
6b95a207
KH
2183 return -EINVAL;
2184 default:
2185 BUG();
2186 }
2187
693db184
CW
2188 /* Note that the w/a also requires 64 PTE of padding following the
2189 * bo. We currently fill all unused PTE with the shadow page and so
2190 * we should always have valid PTE following the scanout preventing
2191 * the VT-d warning.
2192 */
2193 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2194 alignment = 256 * 1024;
2195
ce453d81 2196 dev_priv->mm.interruptible = false;
2da3b9b9 2197 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
48b956c5 2198 if (ret)
ce453d81 2199 goto err_interruptible;
6b95a207
KH
2200
2201 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2202 * fence, whereas 965+ only requires a fence if using
2203 * framebuffer compression. For simplicity, we always install
2204 * a fence as the cost is not that onerous.
2205 */
06d98131 2206 ret = i915_gem_object_get_fence(obj);
9a5a53b3
CW
2207 if (ret)
2208 goto err_unpin;
1690e1eb 2209
9a5a53b3 2210 i915_gem_object_pin_fence(obj);
6b95a207 2211
ce453d81 2212 dev_priv->mm.interruptible = true;
6b95a207 2213 return 0;
48b956c5
CW
2214
2215err_unpin:
cc98b413 2216 i915_gem_object_unpin_from_display_plane(obj);
ce453d81
CW
2217err_interruptible:
2218 dev_priv->mm.interruptible = true;
48b956c5 2219 return ret;
6b95a207
KH
2220}
2221
1690e1eb
CW
2222void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2223{
2224 i915_gem_object_unpin_fence(obj);
cc98b413 2225 i915_gem_object_unpin_from_display_plane(obj);
1690e1eb
CW
2226}
2227
c2c75131
DV
2228/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2229 * is assumed to be a power-of-two. */
bc752862
CW
2230unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2231 unsigned int tiling_mode,
2232 unsigned int cpp,
2233 unsigned int pitch)
c2c75131 2234{
bc752862
CW
2235 if (tiling_mode != I915_TILING_NONE) {
2236 unsigned int tile_rows, tiles;
c2c75131 2237
bc752862
CW
2238 tile_rows = *y / 8;
2239 *y %= 8;
c2c75131 2240
bc752862
CW
2241 tiles = *x / (512/cpp);
2242 *x %= 512/cpp;
2243
2244 return tile_rows * pitch * 8 + tiles * 4096;
2245 } else {
2246 unsigned int offset;
2247
2248 offset = *y * pitch + *x * cpp;
2249 *y = 0;
2250 *x = (offset & 4095) / cpp;
2251 return offset & -4096;
2252 }
c2c75131
DV
2253}
2254
46f297fb
JB
2255int intel_format_to_fourcc(int format)
2256{
2257 switch (format) {
2258 case DISPPLANE_8BPP:
2259 return DRM_FORMAT_C8;
2260 case DISPPLANE_BGRX555:
2261 return DRM_FORMAT_XRGB1555;
2262 case DISPPLANE_BGRX565:
2263 return DRM_FORMAT_RGB565;
2264 default:
2265 case DISPPLANE_BGRX888:
2266 return DRM_FORMAT_XRGB8888;
2267 case DISPPLANE_RGBX888:
2268 return DRM_FORMAT_XBGR8888;
2269 case DISPPLANE_BGRX101010:
2270 return DRM_FORMAT_XRGB2101010;
2271 case DISPPLANE_RGBX101010:
2272 return DRM_FORMAT_XBGR2101010;
2273 }
2274}
2275
484b41dd 2276static bool intel_alloc_plane_obj(struct intel_crtc *crtc,
46f297fb
JB
2277 struct intel_plane_config *plane_config)
2278{
2279 struct drm_device *dev = crtc->base.dev;
2280 struct drm_i915_gem_object *obj = NULL;
2281 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2282 u32 base = plane_config->base;
2283
ff2652ea
CW
2284 if (plane_config->size == 0)
2285 return false;
2286
46f297fb
JB
2287 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2288 plane_config->size);
2289 if (!obj)
484b41dd 2290 return false;
46f297fb
JB
2291
2292 if (plane_config->tiled) {
2293 obj->tiling_mode = I915_TILING_X;
66e514c1 2294 obj->stride = crtc->base.primary->fb->pitches[0];
46f297fb
JB
2295 }
2296
66e514c1
DA
2297 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2298 mode_cmd.width = crtc->base.primary->fb->width;
2299 mode_cmd.height = crtc->base.primary->fb->height;
2300 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
46f297fb
JB
2301
2302 mutex_lock(&dev->struct_mutex);
2303
66e514c1 2304 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
484b41dd 2305 &mode_cmd, obj)) {
46f297fb
JB
2306 DRM_DEBUG_KMS("intel fb init failed\n");
2307 goto out_unref_obj;
2308 }
2309
2310 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2311
2312 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2313 return true;
46f297fb
JB
2314
2315out_unref_obj:
2316 drm_gem_object_unreference(&obj->base);
2317 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2318 return false;
2319}
2320
2321static void intel_find_plane_obj(struct intel_crtc *intel_crtc,
2322 struct intel_plane_config *plane_config)
2323{
2324 struct drm_device *dev = intel_crtc->base.dev;
2325 struct drm_crtc *c;
2326 struct intel_crtc *i;
2327 struct intel_framebuffer *fb;
2328
66e514c1 2329 if (!intel_crtc->base.primary->fb)
484b41dd
JB
2330 return;
2331
2332 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2333 return;
2334
66e514c1
DA
2335 kfree(intel_crtc->base.primary->fb);
2336 intel_crtc->base.primary->fb = NULL;
484b41dd
JB
2337
2338 /*
2339 * Failed to alloc the obj, check to see if we should share
2340 * an fb with another CRTC instead
2341 */
70e1e0ec 2342 for_each_crtc(dev, c) {
484b41dd
JB
2343 i = to_intel_crtc(c);
2344
2345 if (c == &intel_crtc->base)
2346 continue;
2347
66e514c1 2348 if (!i->active || !c->primary->fb)
484b41dd
JB
2349 continue;
2350
66e514c1 2351 fb = to_intel_framebuffer(c->primary->fb);
484b41dd 2352 if (i915_gem_obj_ggtt_offset(fb->obj) == plane_config->base) {
66e514c1
DA
2353 drm_framebuffer_reference(c->primary->fb);
2354 intel_crtc->base.primary->fb = c->primary->fb;
484b41dd
JB
2355 break;
2356 }
2357 }
46f297fb
JB
2358}
2359
29b9bde6
DV
2360static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2361 struct drm_framebuffer *fb,
2362 int x, int y)
81255565
JB
2363{
2364 struct drm_device *dev = crtc->dev;
2365 struct drm_i915_private *dev_priv = dev->dev_private;
2366 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2367 struct intel_framebuffer *intel_fb;
05394f39 2368 struct drm_i915_gem_object *obj;
81255565 2369 int plane = intel_crtc->plane;
e506a0c6 2370 unsigned long linear_offset;
81255565 2371 u32 dspcntr;
5eddb70b 2372 u32 reg;
81255565 2373
81255565
JB
2374 intel_fb = to_intel_framebuffer(fb);
2375 obj = intel_fb->obj;
81255565 2376
5eddb70b
CW
2377 reg = DSPCNTR(plane);
2378 dspcntr = I915_READ(reg);
81255565
JB
2379 /* Mask out pixel format bits in case we change it */
2380 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
57779d06
VS
2381 switch (fb->pixel_format) {
2382 case DRM_FORMAT_C8:
81255565
JB
2383 dspcntr |= DISPPLANE_8BPP;
2384 break;
57779d06
VS
2385 case DRM_FORMAT_XRGB1555:
2386 case DRM_FORMAT_ARGB1555:
2387 dspcntr |= DISPPLANE_BGRX555;
81255565 2388 break;
57779d06
VS
2389 case DRM_FORMAT_RGB565:
2390 dspcntr |= DISPPLANE_BGRX565;
2391 break;
2392 case DRM_FORMAT_XRGB8888:
2393 case DRM_FORMAT_ARGB8888:
2394 dspcntr |= DISPPLANE_BGRX888;
2395 break;
2396 case DRM_FORMAT_XBGR8888:
2397 case DRM_FORMAT_ABGR8888:
2398 dspcntr |= DISPPLANE_RGBX888;
2399 break;
2400 case DRM_FORMAT_XRGB2101010:
2401 case DRM_FORMAT_ARGB2101010:
2402 dspcntr |= DISPPLANE_BGRX101010;
2403 break;
2404 case DRM_FORMAT_XBGR2101010:
2405 case DRM_FORMAT_ABGR2101010:
2406 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
2407 break;
2408 default:
baba133a 2409 BUG();
81255565 2410 }
57779d06 2411
a6c45cf0 2412 if (INTEL_INFO(dev)->gen >= 4) {
05394f39 2413 if (obj->tiling_mode != I915_TILING_NONE)
81255565
JB
2414 dspcntr |= DISPPLANE_TILED;
2415 else
2416 dspcntr &= ~DISPPLANE_TILED;
2417 }
2418
de1aa629
VS
2419 if (IS_G4X(dev))
2420 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2421
5eddb70b 2422 I915_WRITE(reg, dspcntr);
81255565 2423
e506a0c6 2424 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
81255565 2425
c2c75131
DV
2426 if (INTEL_INFO(dev)->gen >= 4) {
2427 intel_crtc->dspaddr_offset =
bc752862
CW
2428 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2429 fb->bits_per_pixel / 8,
2430 fb->pitches[0]);
c2c75131
DV
2431 linear_offset -= intel_crtc->dspaddr_offset;
2432 } else {
e506a0c6 2433 intel_crtc->dspaddr_offset = linear_offset;
c2c75131 2434 }
e506a0c6 2435
f343c5f6
BW
2436 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2437 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2438 fb->pitches[0]);
01f2c773 2439 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
a6c45cf0 2440 if (INTEL_INFO(dev)->gen >= 4) {
85ba7b7d
DV
2441 I915_WRITE(DSPSURF(plane),
2442 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
5eddb70b 2443 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 2444 I915_WRITE(DSPLINOFF(plane), linear_offset);
5eddb70b 2445 } else
f343c5f6 2446 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
5eddb70b 2447 POSTING_READ(reg);
17638cd6
JB
2448}
2449
29b9bde6
DV
2450static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2451 struct drm_framebuffer *fb,
2452 int x, int y)
17638cd6
JB
2453{
2454 struct drm_device *dev = crtc->dev;
2455 struct drm_i915_private *dev_priv = dev->dev_private;
2456 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2457 struct intel_framebuffer *intel_fb;
2458 struct drm_i915_gem_object *obj;
2459 int plane = intel_crtc->plane;
e506a0c6 2460 unsigned long linear_offset;
17638cd6
JB
2461 u32 dspcntr;
2462 u32 reg;
2463
17638cd6
JB
2464 intel_fb = to_intel_framebuffer(fb);
2465 obj = intel_fb->obj;
2466
2467 reg = DSPCNTR(plane);
2468 dspcntr = I915_READ(reg);
2469 /* Mask out pixel format bits in case we change it */
2470 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
57779d06
VS
2471 switch (fb->pixel_format) {
2472 case DRM_FORMAT_C8:
17638cd6
JB
2473 dspcntr |= DISPPLANE_8BPP;
2474 break;
57779d06
VS
2475 case DRM_FORMAT_RGB565:
2476 dspcntr |= DISPPLANE_BGRX565;
17638cd6 2477 break;
57779d06
VS
2478 case DRM_FORMAT_XRGB8888:
2479 case DRM_FORMAT_ARGB8888:
2480 dspcntr |= DISPPLANE_BGRX888;
2481 break;
2482 case DRM_FORMAT_XBGR8888:
2483 case DRM_FORMAT_ABGR8888:
2484 dspcntr |= DISPPLANE_RGBX888;
2485 break;
2486 case DRM_FORMAT_XRGB2101010:
2487 case DRM_FORMAT_ARGB2101010:
2488 dspcntr |= DISPPLANE_BGRX101010;
2489 break;
2490 case DRM_FORMAT_XBGR2101010:
2491 case DRM_FORMAT_ABGR2101010:
2492 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
2493 break;
2494 default:
baba133a 2495 BUG();
17638cd6
JB
2496 }
2497
2498 if (obj->tiling_mode != I915_TILING_NONE)
2499 dspcntr |= DISPPLANE_TILED;
2500 else
2501 dspcntr &= ~DISPPLANE_TILED;
2502
b42c6009 2503 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
1f5d76db
PZ
2504 dspcntr &= ~DISPPLANE_TRICKLE_FEED_DISABLE;
2505 else
2506 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
17638cd6
JB
2507
2508 I915_WRITE(reg, dspcntr);
2509
e506a0c6 2510 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
c2c75131 2511 intel_crtc->dspaddr_offset =
bc752862
CW
2512 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2513 fb->bits_per_pixel / 8,
2514 fb->pitches[0]);
c2c75131 2515 linear_offset -= intel_crtc->dspaddr_offset;
17638cd6 2516
f343c5f6
BW
2517 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2518 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2519 fb->pitches[0]);
01f2c773 2520 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
85ba7b7d
DV
2521 I915_WRITE(DSPSURF(plane),
2522 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
b3dc685e 2523 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
bc1c91eb
DL
2524 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2525 } else {
2526 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2527 I915_WRITE(DSPLINOFF(plane), linear_offset);
2528 }
17638cd6 2529 POSTING_READ(reg);
17638cd6
JB
2530}
2531
2532/* Assume fb object is pinned & idle & fenced and just update base pointers */
2533static int
2534intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2535 int x, int y, enum mode_set_atomic state)
2536{
2537 struct drm_device *dev = crtc->dev;
2538 struct drm_i915_private *dev_priv = dev->dev_private;
17638cd6 2539
6b8e6ed0
CW
2540 if (dev_priv->display.disable_fbc)
2541 dev_priv->display.disable_fbc(dev);
3dec0095 2542 intel_increase_pllclock(crtc);
81255565 2543
29b9bde6
DV
2544 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2545
2546 return 0;
81255565
JB
2547}
2548
96a02917
VS
2549void intel_display_handle_reset(struct drm_device *dev)
2550{
2551 struct drm_i915_private *dev_priv = dev->dev_private;
2552 struct drm_crtc *crtc;
2553
2554 /*
2555 * Flips in the rings have been nuked by the reset,
2556 * so complete all pending flips so that user space
2557 * will get its events and not get stuck.
2558 *
2559 * Also update the base address of all primary
2560 * planes to the the last fb to make sure we're
2561 * showing the correct fb after a reset.
2562 *
2563 * Need to make two loops over the crtcs so that we
2564 * don't try to grab a crtc mutex before the
2565 * pending_flip_queue really got woken up.
2566 */
2567
70e1e0ec 2568 for_each_crtc(dev, crtc) {
96a02917
VS
2569 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2570 enum plane plane = intel_crtc->plane;
2571
2572 intel_prepare_page_flip(dev, plane);
2573 intel_finish_page_flip_plane(dev, plane);
2574 }
2575
70e1e0ec 2576 for_each_crtc(dev, crtc) {
96a02917
VS
2577 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2578
2579 mutex_lock(&crtc->mutex);
947fdaad
CW
2580 /*
2581 * FIXME: Once we have proper support for primary planes (and
2582 * disabling them without disabling the entire crtc) allow again
66e514c1 2583 * a NULL crtc->primary->fb.
947fdaad 2584 */
f4510a27 2585 if (intel_crtc->active && crtc->primary->fb)
262ca2b0 2586 dev_priv->display.update_primary_plane(crtc,
66e514c1 2587 crtc->primary->fb,
262ca2b0
MR
2588 crtc->x,
2589 crtc->y);
96a02917
VS
2590 mutex_unlock(&crtc->mutex);
2591 }
2592}
2593
14667a4b
CW
2594static int
2595intel_finish_fb(struct drm_framebuffer *old_fb)
2596{
2597 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2598 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2599 bool was_interruptible = dev_priv->mm.interruptible;
2600 int ret;
2601
14667a4b
CW
2602 /* Big Hammer, we also need to ensure that any pending
2603 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2604 * current scanout is retired before unpinning the old
2605 * framebuffer.
2606 *
2607 * This should only fail upon a hung GPU, in which case we
2608 * can safely continue.
2609 */
2610 dev_priv->mm.interruptible = false;
2611 ret = i915_gem_object_finish_gpu(obj);
2612 dev_priv->mm.interruptible = was_interruptible;
2613
2614 return ret;
2615}
2616
7d5e3799
CW
2617static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2618{
2619 struct drm_device *dev = crtc->dev;
2620 struct drm_i915_private *dev_priv = dev->dev_private;
2621 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2622 unsigned long flags;
2623 bool pending;
2624
2625 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2626 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2627 return false;
2628
2629 spin_lock_irqsave(&dev->event_lock, flags);
2630 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2631 spin_unlock_irqrestore(&dev->event_lock, flags);
2632
2633 return pending;
2634}
2635
5c3b82e2 2636static int
3c4fdcfb 2637intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
94352cf9 2638 struct drm_framebuffer *fb)
79e53945
JB
2639{
2640 struct drm_device *dev = crtc->dev;
6b8e6ed0 2641 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 2642 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
94352cf9 2643 struct drm_framebuffer *old_fb;
5c3b82e2 2644 int ret;
79e53945 2645
7d5e3799
CW
2646 if (intel_crtc_has_pending_flip(crtc)) {
2647 DRM_ERROR("pipe is still busy with an old pageflip\n");
2648 return -EBUSY;
2649 }
2650
79e53945 2651 /* no fb bound */
94352cf9 2652 if (!fb) {
a5071c2f 2653 DRM_ERROR("No FB bound\n");
5c3b82e2
CW
2654 return 0;
2655 }
2656
7eb552ae 2657 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
84f44ce7
VS
2658 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2659 plane_name(intel_crtc->plane),
2660 INTEL_INFO(dev)->num_pipes);
5c3b82e2 2661 return -EINVAL;
79e53945
JB
2662 }
2663
5c3b82e2 2664 mutex_lock(&dev->struct_mutex);
265db958 2665 ret = intel_pin_and_fence_fb_obj(dev,
94352cf9 2666 to_intel_framebuffer(fb)->obj,
919926ae 2667 NULL);
8ac36ec1 2668 mutex_unlock(&dev->struct_mutex);
5c3b82e2 2669 if (ret != 0) {
a5071c2f 2670 DRM_ERROR("pin & fence failed\n");
5c3b82e2
CW
2671 return ret;
2672 }
79e53945 2673
bb2043de
DL
2674 /*
2675 * Update pipe size and adjust fitter if needed: the reason for this is
2676 * that in compute_mode_changes we check the native mode (not the pfit
2677 * mode) to see if we can flip rather than do a full mode set. In the
2678 * fastboot case, we'll flip, but if we don't update the pipesrc and
2679 * pfit state, we'll end up with a big fb scanned out into the wrong
2680 * sized surface.
2681 *
2682 * To fix this properly, we need to hoist the checks up into
2683 * compute_mode_changes (or above), check the actual pfit state and
2684 * whether the platform allows pfit disable with pipe active, and only
2685 * then update the pipesrc and pfit state, even on the flip path.
2686 */
d330a953 2687 if (i915.fastboot) {
d7bf63f2
DL
2688 const struct drm_display_mode *adjusted_mode =
2689 &intel_crtc->config.adjusted_mode;
2690
4d6a3e63 2691 I915_WRITE(PIPESRC(intel_crtc->pipe),
d7bf63f2
DL
2692 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2693 (adjusted_mode->crtc_vdisplay - 1));
fd4daa9c 2694 if (!intel_crtc->config.pch_pfit.enabled &&
4d6a3e63
JB
2695 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2696 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2697 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2698 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2699 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2700 }
0637d60d
JB
2701 intel_crtc->config.pipe_src_w = adjusted_mode->crtc_hdisplay;
2702 intel_crtc->config.pipe_src_h = adjusted_mode->crtc_vdisplay;
4d6a3e63
JB
2703 }
2704
29b9bde6 2705 dev_priv->display.update_primary_plane(crtc, fb, x, y);
3c4fdcfb 2706
f4510a27
MR
2707 old_fb = crtc->primary->fb;
2708 crtc->primary->fb = fb;
6c4c86f5
DV
2709 crtc->x = x;
2710 crtc->y = y;
94352cf9 2711
b7f1de28 2712 if (old_fb) {
d7697eea
DV
2713 if (intel_crtc->active && old_fb != fb)
2714 intel_wait_for_vblank(dev, intel_crtc->pipe);
8ac36ec1 2715 mutex_lock(&dev->struct_mutex);
1690e1eb 2716 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
8ac36ec1 2717 mutex_unlock(&dev->struct_mutex);
b7f1de28 2718 }
652c393a 2719
8ac36ec1 2720 mutex_lock(&dev->struct_mutex);
6b8e6ed0 2721 intel_update_fbc(dev);
4906557e 2722 intel_edp_psr_update(dev);
5c3b82e2 2723 mutex_unlock(&dev->struct_mutex);
79e53945 2724
5c3b82e2 2725 return 0;
79e53945
JB
2726}
2727
5e84e1a4
ZW
2728static void intel_fdi_normal_train(struct drm_crtc *crtc)
2729{
2730 struct drm_device *dev = crtc->dev;
2731 struct drm_i915_private *dev_priv = dev->dev_private;
2732 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2733 int pipe = intel_crtc->pipe;
2734 u32 reg, temp;
2735
2736 /* enable normal train */
2737 reg = FDI_TX_CTL(pipe);
2738 temp = I915_READ(reg);
61e499bf 2739 if (IS_IVYBRIDGE(dev)) {
357555c0
JB
2740 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2741 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
2742 } else {
2743 temp &= ~FDI_LINK_TRAIN_NONE;
2744 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 2745 }
5e84e1a4
ZW
2746 I915_WRITE(reg, temp);
2747
2748 reg = FDI_RX_CTL(pipe);
2749 temp = I915_READ(reg);
2750 if (HAS_PCH_CPT(dev)) {
2751 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2752 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2753 } else {
2754 temp &= ~FDI_LINK_TRAIN_NONE;
2755 temp |= FDI_LINK_TRAIN_NONE;
2756 }
2757 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2758
2759 /* wait one idle pattern time */
2760 POSTING_READ(reg);
2761 udelay(1000);
357555c0
JB
2762
2763 /* IVB wants error correction enabled */
2764 if (IS_IVYBRIDGE(dev))
2765 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2766 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
2767}
2768
1fbc0d78 2769static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
1e833f40 2770{
1fbc0d78
DV
2771 return crtc->base.enabled && crtc->active &&
2772 crtc->config.has_pch_encoder;
1e833f40
DV
2773}
2774
01a415fd
DV
2775static void ivb_modeset_global_resources(struct drm_device *dev)
2776{
2777 struct drm_i915_private *dev_priv = dev->dev_private;
2778 struct intel_crtc *pipe_B_crtc =
2779 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2780 struct intel_crtc *pipe_C_crtc =
2781 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2782 uint32_t temp;
2783
1e833f40
DV
2784 /*
2785 * When everything is off disable fdi C so that we could enable fdi B
2786 * with all lanes. Note that we don't care about enabled pipes without
2787 * an enabled pch encoder.
2788 */
2789 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2790 !pipe_has_enabled_pch(pipe_C_crtc)) {
01a415fd
DV
2791 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2792 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2793
2794 temp = I915_READ(SOUTH_CHICKEN1);
2795 temp &= ~FDI_BC_BIFURCATION_SELECT;
2796 DRM_DEBUG_KMS("disabling fdi C rx\n");
2797 I915_WRITE(SOUTH_CHICKEN1, temp);
2798 }
2799}
2800
8db9d77b
ZW
2801/* The FDI link training functions for ILK/Ibexpeak. */
2802static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2803{
2804 struct drm_device *dev = crtc->dev;
2805 struct drm_i915_private *dev_priv = dev->dev_private;
2806 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2807 int pipe = intel_crtc->pipe;
5eddb70b 2808 u32 reg, temp, tries;
8db9d77b 2809
1c8562f6 2810 /* FDI needs bits from pipe first */
0fc932b8 2811 assert_pipe_enabled(dev_priv, pipe);
0fc932b8 2812
e1a44743
AJ
2813 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2814 for train result */
5eddb70b
CW
2815 reg = FDI_RX_IMR(pipe);
2816 temp = I915_READ(reg);
e1a44743
AJ
2817 temp &= ~FDI_RX_SYMBOL_LOCK;
2818 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
2819 I915_WRITE(reg, temp);
2820 I915_READ(reg);
e1a44743
AJ
2821 udelay(150);
2822
8db9d77b 2823 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
2824 reg = FDI_TX_CTL(pipe);
2825 temp = I915_READ(reg);
627eb5a3
DV
2826 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2827 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
8db9d77b
ZW
2828 temp &= ~FDI_LINK_TRAIN_NONE;
2829 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 2830 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 2831
5eddb70b
CW
2832 reg = FDI_RX_CTL(pipe);
2833 temp = I915_READ(reg);
8db9d77b
ZW
2834 temp &= ~FDI_LINK_TRAIN_NONE;
2835 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
2836 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2837
2838 POSTING_READ(reg);
8db9d77b
ZW
2839 udelay(150);
2840
5b2adf89 2841 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
2842 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2843 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2844 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 2845
5eddb70b 2846 reg = FDI_RX_IIR(pipe);
e1a44743 2847 for (tries = 0; tries < 5; tries++) {
5eddb70b 2848 temp = I915_READ(reg);
8db9d77b
ZW
2849 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2850
2851 if ((temp & FDI_RX_BIT_LOCK)) {
2852 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 2853 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
2854 break;
2855 }
8db9d77b 2856 }
e1a44743 2857 if (tries == 5)
5eddb70b 2858 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
2859
2860 /* Train 2 */
5eddb70b
CW
2861 reg = FDI_TX_CTL(pipe);
2862 temp = I915_READ(reg);
8db9d77b
ZW
2863 temp &= ~FDI_LINK_TRAIN_NONE;
2864 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 2865 I915_WRITE(reg, temp);
8db9d77b 2866
5eddb70b
CW
2867 reg = FDI_RX_CTL(pipe);
2868 temp = I915_READ(reg);
8db9d77b
ZW
2869 temp &= ~FDI_LINK_TRAIN_NONE;
2870 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 2871 I915_WRITE(reg, temp);
8db9d77b 2872
5eddb70b
CW
2873 POSTING_READ(reg);
2874 udelay(150);
8db9d77b 2875
5eddb70b 2876 reg = FDI_RX_IIR(pipe);
e1a44743 2877 for (tries = 0; tries < 5; tries++) {
5eddb70b 2878 temp = I915_READ(reg);
8db9d77b
ZW
2879 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2880
2881 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 2882 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
2883 DRM_DEBUG_KMS("FDI train 2 done.\n");
2884 break;
2885 }
8db9d77b 2886 }
e1a44743 2887 if (tries == 5)
5eddb70b 2888 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
2889
2890 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 2891
8db9d77b
ZW
2892}
2893
0206e353 2894static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
2895 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2896 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2897 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2898 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2899};
2900
2901/* The FDI link training functions for SNB/Cougarpoint. */
2902static void gen6_fdi_link_train(struct drm_crtc *crtc)
2903{
2904 struct drm_device *dev = crtc->dev;
2905 struct drm_i915_private *dev_priv = dev->dev_private;
2906 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2907 int pipe = intel_crtc->pipe;
fa37d39e 2908 u32 reg, temp, i, retry;
8db9d77b 2909
e1a44743
AJ
2910 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2911 for train result */
5eddb70b
CW
2912 reg = FDI_RX_IMR(pipe);
2913 temp = I915_READ(reg);
e1a44743
AJ
2914 temp &= ~FDI_RX_SYMBOL_LOCK;
2915 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
2916 I915_WRITE(reg, temp);
2917
2918 POSTING_READ(reg);
e1a44743
AJ
2919 udelay(150);
2920
8db9d77b 2921 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
2922 reg = FDI_TX_CTL(pipe);
2923 temp = I915_READ(reg);
627eb5a3
DV
2924 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2925 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
8db9d77b
ZW
2926 temp &= ~FDI_LINK_TRAIN_NONE;
2927 temp |= FDI_LINK_TRAIN_PATTERN_1;
2928 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2929 /* SNB-B */
2930 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 2931 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 2932
d74cf324
DV
2933 I915_WRITE(FDI_RX_MISC(pipe),
2934 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2935
5eddb70b
CW
2936 reg = FDI_RX_CTL(pipe);
2937 temp = I915_READ(reg);
8db9d77b
ZW
2938 if (HAS_PCH_CPT(dev)) {
2939 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2940 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2941 } else {
2942 temp &= ~FDI_LINK_TRAIN_NONE;
2943 temp |= FDI_LINK_TRAIN_PATTERN_1;
2944 }
5eddb70b
CW
2945 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2946
2947 POSTING_READ(reg);
8db9d77b
ZW
2948 udelay(150);
2949
0206e353 2950 for (i = 0; i < 4; i++) {
5eddb70b
CW
2951 reg = FDI_TX_CTL(pipe);
2952 temp = I915_READ(reg);
8db9d77b
ZW
2953 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2954 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
2955 I915_WRITE(reg, temp);
2956
2957 POSTING_READ(reg);
8db9d77b
ZW
2958 udelay(500);
2959
fa37d39e
SP
2960 for (retry = 0; retry < 5; retry++) {
2961 reg = FDI_RX_IIR(pipe);
2962 temp = I915_READ(reg);
2963 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2964 if (temp & FDI_RX_BIT_LOCK) {
2965 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2966 DRM_DEBUG_KMS("FDI train 1 done.\n");
2967 break;
2968 }
2969 udelay(50);
8db9d77b 2970 }
fa37d39e
SP
2971 if (retry < 5)
2972 break;
8db9d77b
ZW
2973 }
2974 if (i == 4)
5eddb70b 2975 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
2976
2977 /* Train 2 */
5eddb70b
CW
2978 reg = FDI_TX_CTL(pipe);
2979 temp = I915_READ(reg);
8db9d77b
ZW
2980 temp &= ~FDI_LINK_TRAIN_NONE;
2981 temp |= FDI_LINK_TRAIN_PATTERN_2;
2982 if (IS_GEN6(dev)) {
2983 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2984 /* SNB-B */
2985 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2986 }
5eddb70b 2987 I915_WRITE(reg, temp);
8db9d77b 2988
5eddb70b
CW
2989 reg = FDI_RX_CTL(pipe);
2990 temp = I915_READ(reg);
8db9d77b
ZW
2991 if (HAS_PCH_CPT(dev)) {
2992 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2993 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2994 } else {
2995 temp &= ~FDI_LINK_TRAIN_NONE;
2996 temp |= FDI_LINK_TRAIN_PATTERN_2;
2997 }
5eddb70b
CW
2998 I915_WRITE(reg, temp);
2999
3000 POSTING_READ(reg);
8db9d77b
ZW
3001 udelay(150);
3002
0206e353 3003 for (i = 0; i < 4; i++) {
5eddb70b
CW
3004 reg = FDI_TX_CTL(pipe);
3005 temp = I915_READ(reg);
8db9d77b
ZW
3006 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3007 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3008 I915_WRITE(reg, temp);
3009
3010 POSTING_READ(reg);
8db9d77b
ZW
3011 udelay(500);
3012
fa37d39e
SP
3013 for (retry = 0; retry < 5; retry++) {
3014 reg = FDI_RX_IIR(pipe);
3015 temp = I915_READ(reg);
3016 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3017 if (temp & FDI_RX_SYMBOL_LOCK) {
3018 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3019 DRM_DEBUG_KMS("FDI train 2 done.\n");
3020 break;
3021 }
3022 udelay(50);
8db9d77b 3023 }
fa37d39e
SP
3024 if (retry < 5)
3025 break;
8db9d77b
ZW
3026 }
3027 if (i == 4)
5eddb70b 3028 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3029
3030 DRM_DEBUG_KMS("FDI train done.\n");
3031}
3032
357555c0
JB
3033/* Manual link training for Ivy Bridge A0 parts */
3034static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3035{
3036 struct drm_device *dev = crtc->dev;
3037 struct drm_i915_private *dev_priv = dev->dev_private;
3038 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3039 int pipe = intel_crtc->pipe;
139ccd3f 3040 u32 reg, temp, i, j;
357555c0
JB
3041
3042 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3043 for train result */
3044 reg = FDI_RX_IMR(pipe);
3045 temp = I915_READ(reg);
3046 temp &= ~FDI_RX_SYMBOL_LOCK;
3047 temp &= ~FDI_RX_BIT_LOCK;
3048 I915_WRITE(reg, temp);
3049
3050 POSTING_READ(reg);
3051 udelay(150);
3052
01a415fd
DV
3053 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3054 I915_READ(FDI_RX_IIR(pipe)));
3055
139ccd3f
JB
3056 /* Try each vswing and preemphasis setting twice before moving on */
3057 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3058 /* disable first in case we need to retry */
3059 reg = FDI_TX_CTL(pipe);
3060 temp = I915_READ(reg);
3061 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3062 temp &= ~FDI_TX_ENABLE;
3063 I915_WRITE(reg, temp);
357555c0 3064
139ccd3f
JB
3065 reg = FDI_RX_CTL(pipe);
3066 temp = I915_READ(reg);
3067 temp &= ~FDI_LINK_TRAIN_AUTO;
3068 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3069 temp &= ~FDI_RX_ENABLE;
3070 I915_WRITE(reg, temp);
357555c0 3071
139ccd3f 3072 /* enable CPU FDI TX and PCH FDI RX */
357555c0
JB
3073 reg = FDI_TX_CTL(pipe);
3074 temp = I915_READ(reg);
139ccd3f
JB
3075 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3076 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
3077 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
357555c0 3078 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
139ccd3f
JB
3079 temp |= snb_b_fdi_train_param[j/2];
3080 temp |= FDI_COMPOSITE_SYNC;
3081 I915_WRITE(reg, temp | FDI_TX_ENABLE);
357555c0 3082
139ccd3f
JB
3083 I915_WRITE(FDI_RX_MISC(pipe),
3084 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
357555c0 3085
139ccd3f 3086 reg = FDI_RX_CTL(pipe);
357555c0 3087 temp = I915_READ(reg);
139ccd3f
JB
3088 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3089 temp |= FDI_COMPOSITE_SYNC;
3090 I915_WRITE(reg, temp | FDI_RX_ENABLE);
357555c0 3091
139ccd3f
JB
3092 POSTING_READ(reg);
3093 udelay(1); /* should be 0.5us */
357555c0 3094
139ccd3f
JB
3095 for (i = 0; i < 4; i++) {
3096 reg = FDI_RX_IIR(pipe);
3097 temp = I915_READ(reg);
3098 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3099
139ccd3f
JB
3100 if (temp & FDI_RX_BIT_LOCK ||
3101 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3102 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3103 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3104 i);
3105 break;
3106 }
3107 udelay(1); /* should be 0.5us */
3108 }
3109 if (i == 4) {
3110 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3111 continue;
3112 }
357555c0 3113
139ccd3f 3114 /* Train 2 */
357555c0
JB
3115 reg = FDI_TX_CTL(pipe);
3116 temp = I915_READ(reg);
139ccd3f
JB
3117 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3118 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3119 I915_WRITE(reg, temp);
3120
3121 reg = FDI_RX_CTL(pipe);
3122 temp = I915_READ(reg);
3123 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3124 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
357555c0
JB
3125 I915_WRITE(reg, temp);
3126
3127 POSTING_READ(reg);
139ccd3f 3128 udelay(2); /* should be 1.5us */
357555c0 3129
139ccd3f
JB
3130 for (i = 0; i < 4; i++) {
3131 reg = FDI_RX_IIR(pipe);
3132 temp = I915_READ(reg);
3133 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3134
139ccd3f
JB
3135 if (temp & FDI_RX_SYMBOL_LOCK ||
3136 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3137 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3138 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3139 i);
3140 goto train_done;
3141 }
3142 udelay(2); /* should be 1.5us */
357555c0 3143 }
139ccd3f
JB
3144 if (i == 4)
3145 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
357555c0 3146 }
357555c0 3147
139ccd3f 3148train_done:
357555c0
JB
3149 DRM_DEBUG_KMS("FDI train done.\n");
3150}
3151
88cefb6c 3152static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 3153{
88cefb6c 3154 struct drm_device *dev = intel_crtc->base.dev;
2c07245f 3155 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 3156 int pipe = intel_crtc->pipe;
5eddb70b 3157 u32 reg, temp;
79e53945 3158
c64e311e 3159
c98e9dcf 3160 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
3161 reg = FDI_RX_CTL(pipe);
3162 temp = I915_READ(reg);
627eb5a3
DV
3163 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
3164 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
dfd07d72 3165 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
3166 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3167
3168 POSTING_READ(reg);
c98e9dcf
JB
3169 udelay(200);
3170
3171 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
3172 temp = I915_READ(reg);
3173 I915_WRITE(reg, temp | FDI_PCDCLK);
3174
3175 POSTING_READ(reg);
c98e9dcf
JB
3176 udelay(200);
3177
20749730
PZ
3178 /* Enable CPU FDI TX PLL, always on for Ironlake */
3179 reg = FDI_TX_CTL(pipe);
3180 temp = I915_READ(reg);
3181 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3182 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 3183
20749730
PZ
3184 POSTING_READ(reg);
3185 udelay(100);
6be4a607 3186 }
0e23b99d
JB
3187}
3188
88cefb6c
DV
3189static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3190{
3191 struct drm_device *dev = intel_crtc->base.dev;
3192 struct drm_i915_private *dev_priv = dev->dev_private;
3193 int pipe = intel_crtc->pipe;
3194 u32 reg, temp;
3195
3196 /* Switch from PCDclk to Rawclk */
3197 reg = FDI_RX_CTL(pipe);
3198 temp = I915_READ(reg);
3199 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3200
3201 /* Disable CPU FDI TX PLL */
3202 reg = FDI_TX_CTL(pipe);
3203 temp = I915_READ(reg);
3204 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3205
3206 POSTING_READ(reg);
3207 udelay(100);
3208
3209 reg = FDI_RX_CTL(pipe);
3210 temp = I915_READ(reg);
3211 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3212
3213 /* Wait for the clocks to turn off. */
3214 POSTING_READ(reg);
3215 udelay(100);
3216}
3217
0fc932b8
JB
3218static void ironlake_fdi_disable(struct drm_crtc *crtc)
3219{
3220 struct drm_device *dev = crtc->dev;
3221 struct drm_i915_private *dev_priv = dev->dev_private;
3222 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3223 int pipe = intel_crtc->pipe;
3224 u32 reg, temp;
3225
3226 /* disable CPU FDI tx and PCH FDI rx */
3227 reg = FDI_TX_CTL(pipe);
3228 temp = I915_READ(reg);
3229 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3230 POSTING_READ(reg);
3231
3232 reg = FDI_RX_CTL(pipe);
3233 temp = I915_READ(reg);
3234 temp &= ~(0x7 << 16);
dfd07d72 3235 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3236 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3237
3238 POSTING_READ(reg);
3239 udelay(100);
3240
3241 /* Ironlake workaround, disable clock pointer after downing FDI */
eba905b2 3242 if (HAS_PCH_IBX(dev))
6f06ce18 3243 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
0fc932b8
JB
3244
3245 /* still set train pattern 1 */
3246 reg = FDI_TX_CTL(pipe);
3247 temp = I915_READ(reg);
3248 temp &= ~FDI_LINK_TRAIN_NONE;
3249 temp |= FDI_LINK_TRAIN_PATTERN_1;
3250 I915_WRITE(reg, temp);
3251
3252 reg = FDI_RX_CTL(pipe);
3253 temp = I915_READ(reg);
3254 if (HAS_PCH_CPT(dev)) {
3255 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3256 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3257 } else {
3258 temp &= ~FDI_LINK_TRAIN_NONE;
3259 temp |= FDI_LINK_TRAIN_PATTERN_1;
3260 }
3261 /* BPC in FDI rx is consistent with that in PIPECONF */
3262 temp &= ~(0x07 << 16);
dfd07d72 3263 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3264 I915_WRITE(reg, temp);
3265
3266 POSTING_READ(reg);
3267 udelay(100);
3268}
3269
5dce5b93
CW
3270bool intel_has_pending_fb_unpin(struct drm_device *dev)
3271{
3272 struct intel_crtc *crtc;
3273
3274 /* Note that we don't need to be called with mode_config.lock here
3275 * as our list of CRTC objects is static for the lifetime of the
3276 * device and so cannot disappear as we iterate. Similarly, we can
3277 * happily treat the predicates as racy, atomic checks as userspace
3278 * cannot claim and pin a new fb without at least acquring the
3279 * struct_mutex and so serialising with us.
3280 */
d3fcc808 3281 for_each_intel_crtc(dev, crtc) {
5dce5b93
CW
3282 if (atomic_read(&crtc->unpin_work_count) == 0)
3283 continue;
3284
3285 if (crtc->unpin_work)
3286 intel_wait_for_vblank(dev, crtc->pipe);
3287
3288 return true;
3289 }
3290
3291 return false;
3292}
3293
e6c3a2a6
CW
3294static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
3295{
0f91128d 3296 struct drm_device *dev = crtc->dev;
5bb61643 3297 struct drm_i915_private *dev_priv = dev->dev_private;
e6c3a2a6 3298
f4510a27 3299 if (crtc->primary->fb == NULL)
e6c3a2a6
CW
3300 return;
3301
2c10d571
DV
3302 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
3303
eed6d67d
DV
3304 WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3305 !intel_crtc_has_pending_flip(crtc),
3306 60*HZ) == 0);
5bb61643 3307
0f91128d 3308 mutex_lock(&dev->struct_mutex);
f4510a27 3309 intel_finish_fb(crtc->primary->fb);
0f91128d 3310 mutex_unlock(&dev->struct_mutex);
e6c3a2a6
CW
3311}
3312
e615efe4
ED
3313/* Program iCLKIP clock to the desired frequency */
3314static void lpt_program_iclkip(struct drm_crtc *crtc)
3315{
3316 struct drm_device *dev = crtc->dev;
3317 struct drm_i915_private *dev_priv = dev->dev_private;
241bfc38 3318 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
e615efe4
ED
3319 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3320 u32 temp;
3321
09153000
DV
3322 mutex_lock(&dev_priv->dpio_lock);
3323
e615efe4
ED
3324 /* It is necessary to ungate the pixclk gate prior to programming
3325 * the divisors, and gate it back when it is done.
3326 */
3327 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3328
3329 /* Disable SSCCTL */
3330 intel_sbi_write(dev_priv, SBI_SSCCTL6,
988d6ee8
PZ
3331 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3332 SBI_SSCCTL_DISABLE,
3333 SBI_ICLK);
e615efe4
ED
3334
3335 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
12d7ceed 3336 if (clock == 20000) {
e615efe4
ED
3337 auxdiv = 1;
3338 divsel = 0x41;
3339 phaseinc = 0x20;
3340 } else {
3341 /* The iCLK virtual clock root frequency is in MHz,
241bfc38
DL
3342 * but the adjusted_mode->crtc_clock in in KHz. To get the
3343 * divisors, it is necessary to divide one by another, so we
e615efe4
ED
3344 * convert the virtual clock precision to KHz here for higher
3345 * precision.
3346 */
3347 u32 iclk_virtual_root_freq = 172800 * 1000;
3348 u32 iclk_pi_range = 64;
3349 u32 desired_divisor, msb_divisor_value, pi_value;
3350
12d7ceed 3351 desired_divisor = (iclk_virtual_root_freq / clock);
e615efe4
ED
3352 msb_divisor_value = desired_divisor / iclk_pi_range;
3353 pi_value = desired_divisor % iclk_pi_range;
3354
3355 auxdiv = 0;
3356 divsel = msb_divisor_value - 2;
3357 phaseinc = pi_value;
3358 }
3359
3360 /* This should not happen with any sane values */
3361 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3362 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3363 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3364 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3365
3366 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
12d7ceed 3367 clock,
e615efe4
ED
3368 auxdiv,
3369 divsel,
3370 phasedir,
3371 phaseinc);
3372
3373 /* Program SSCDIVINTPHASE6 */
988d6ee8 3374 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
3375 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3376 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3377 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3378 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3379 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3380 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 3381 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
3382
3383 /* Program SSCAUXDIV */
988d6ee8 3384 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
3385 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3386 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 3387 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
3388
3389 /* Enable modulator and associated divider */
988d6ee8 3390 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 3391 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 3392 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4
ED
3393
3394 /* Wait for initialization time */
3395 udelay(24);
3396
3397 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
09153000
DV
3398
3399 mutex_unlock(&dev_priv->dpio_lock);
e615efe4
ED
3400}
3401
275f01b2
DV
3402static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3403 enum pipe pch_transcoder)
3404{
3405 struct drm_device *dev = crtc->base.dev;
3406 struct drm_i915_private *dev_priv = dev->dev_private;
3407 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3408
3409 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3410 I915_READ(HTOTAL(cpu_transcoder)));
3411 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3412 I915_READ(HBLANK(cpu_transcoder)));
3413 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3414 I915_READ(HSYNC(cpu_transcoder)));
3415
3416 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3417 I915_READ(VTOTAL(cpu_transcoder)));
3418 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3419 I915_READ(VBLANK(cpu_transcoder)));
3420 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3421 I915_READ(VSYNC(cpu_transcoder)));
3422 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3423 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3424}
3425
1fbc0d78
DV
3426static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3427{
3428 struct drm_i915_private *dev_priv = dev->dev_private;
3429 uint32_t temp;
3430
3431 temp = I915_READ(SOUTH_CHICKEN1);
3432 if (temp & FDI_BC_BIFURCATION_SELECT)
3433 return;
3434
3435 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3436 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3437
3438 temp |= FDI_BC_BIFURCATION_SELECT;
3439 DRM_DEBUG_KMS("enabling fdi C rx\n");
3440 I915_WRITE(SOUTH_CHICKEN1, temp);
3441 POSTING_READ(SOUTH_CHICKEN1);
3442}
3443
3444static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3445{
3446 struct drm_device *dev = intel_crtc->base.dev;
3447 struct drm_i915_private *dev_priv = dev->dev_private;
3448
3449 switch (intel_crtc->pipe) {
3450 case PIPE_A:
3451 break;
3452 case PIPE_B:
3453 if (intel_crtc->config.fdi_lanes > 2)
3454 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3455 else
3456 cpt_enable_fdi_bc_bifurcation(dev);
3457
3458 break;
3459 case PIPE_C:
3460 cpt_enable_fdi_bc_bifurcation(dev);
3461
3462 break;
3463 default:
3464 BUG();
3465 }
3466}
3467
f67a559d
JB
3468/*
3469 * Enable PCH resources required for PCH ports:
3470 * - PCH PLLs
3471 * - FDI training & RX/TX
3472 * - update transcoder timings
3473 * - DP transcoding bits
3474 * - transcoder
3475 */
3476static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
3477{
3478 struct drm_device *dev = crtc->dev;
3479 struct drm_i915_private *dev_priv = dev->dev_private;
3480 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3481 int pipe = intel_crtc->pipe;
ee7b9f93 3482 u32 reg, temp;
2c07245f 3483
ab9412ba 3484 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 3485
1fbc0d78
DV
3486 if (IS_IVYBRIDGE(dev))
3487 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3488
cd986abb
DV
3489 /* Write the TU size bits before fdi link training, so that error
3490 * detection works. */
3491 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3492 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3493
c98e9dcf 3494 /* For PCH output, training FDI link */
674cf967 3495 dev_priv->display.fdi_link_train(crtc);
2c07245f 3496
3ad8a208
DV
3497 /* We need to program the right clock selection before writing the pixel
3498 * mutliplier into the DPLL. */
303b81e0 3499 if (HAS_PCH_CPT(dev)) {
ee7b9f93 3500 u32 sel;
4b645f14 3501
c98e9dcf 3502 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
3503 temp |= TRANS_DPLL_ENABLE(pipe);
3504 sel = TRANS_DPLLB_SEL(pipe);
a43f6e0f 3505 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
ee7b9f93
JB
3506 temp |= sel;
3507 else
3508 temp &= ~sel;
c98e9dcf 3509 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 3510 }
5eddb70b 3511
3ad8a208
DV
3512 /* XXX: pch pll's can be enabled any time before we enable the PCH
3513 * transcoder, and we actually should do this to not upset any PCH
3514 * transcoder that already use the clock when we share it.
3515 *
3516 * Note that enable_shared_dpll tries to do the right thing, but
3517 * get_shared_dpll unconditionally resets the pll - we need that to have
3518 * the right LVDS enable sequence. */
85b3894f 3519 intel_enable_shared_dpll(intel_crtc);
3ad8a208 3520
d9b6cb56
JB
3521 /* set transcoder timing, panel must allow it */
3522 assert_panel_unlocked(dev_priv, pipe);
275f01b2 3523 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 3524
303b81e0 3525 intel_fdi_normal_train(crtc);
5e84e1a4 3526
c98e9dcf
JB
3527 /* For PCH DP, enable TRANS_DP_CTL */
3528 if (HAS_PCH_CPT(dev) &&
417e822d
KP
3529 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3530 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
dfd07d72 3531 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
5eddb70b
CW
3532 reg = TRANS_DP_CTL(pipe);
3533 temp = I915_READ(reg);
3534 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
3535 TRANS_DP_SYNC_MASK |
3536 TRANS_DP_BPC_MASK);
5eddb70b
CW
3537 temp |= (TRANS_DP_OUTPUT_ENABLE |
3538 TRANS_DP_ENH_FRAMING);
9325c9f0 3539 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf
JB
3540
3541 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 3542 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
c98e9dcf 3543 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 3544 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
3545
3546 switch (intel_trans_dp_port_sel(crtc)) {
3547 case PCH_DP_B:
5eddb70b 3548 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf
JB
3549 break;
3550 case PCH_DP_C:
5eddb70b 3551 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf
JB
3552 break;
3553 case PCH_DP_D:
5eddb70b 3554 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
3555 break;
3556 default:
e95d41e1 3557 BUG();
32f9d658 3558 }
2c07245f 3559
5eddb70b 3560 I915_WRITE(reg, temp);
6be4a607 3561 }
b52eb4dc 3562
b8a4f404 3563 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
3564}
3565
1507e5bd
PZ
3566static void lpt_pch_enable(struct drm_crtc *crtc)
3567{
3568 struct drm_device *dev = crtc->dev;
3569 struct drm_i915_private *dev_priv = dev->dev_private;
3570 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3b117c8f 3571 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
1507e5bd 3572
ab9412ba 3573 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 3574
8c52b5e8 3575 lpt_program_iclkip(crtc);
1507e5bd 3576
0540e488 3577 /* Set transcoder timing. */
275f01b2 3578 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 3579
937bb610 3580 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
3581}
3582
e2b78267 3583static void intel_put_shared_dpll(struct intel_crtc *crtc)
ee7b9f93 3584{
e2b78267 3585 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
ee7b9f93
JB
3586
3587 if (pll == NULL)
3588 return;
3589
3590 if (pll->refcount == 0) {
46edb027 3591 WARN(1, "bad %s refcount\n", pll->name);
ee7b9f93
JB
3592 return;
3593 }
3594
f4a091c7
DV
3595 if (--pll->refcount == 0) {
3596 WARN_ON(pll->on);
3597 WARN_ON(pll->active);
3598 }
3599
a43f6e0f 3600 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
ee7b9f93
JB
3601}
3602
b89a1d39 3603static struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
ee7b9f93 3604{
e2b78267
DV
3605 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3606 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3607 enum intel_dpll_id i;
ee7b9f93 3608
ee7b9f93 3609 if (pll) {
46edb027
DV
3610 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3611 crtc->base.base.id, pll->name);
e2b78267 3612 intel_put_shared_dpll(crtc);
ee7b9f93
JB
3613 }
3614
98b6bd99
DV
3615 if (HAS_PCH_IBX(dev_priv->dev)) {
3616 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
d94ab068 3617 i = (enum intel_dpll_id) crtc->pipe;
e72f9fbf 3618 pll = &dev_priv->shared_dplls[i];
98b6bd99 3619
46edb027
DV
3620 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3621 crtc->base.base.id, pll->name);
98b6bd99 3622
f2a69f44
DV
3623 WARN_ON(pll->refcount);
3624
98b6bd99
DV
3625 goto found;
3626 }
3627
e72f9fbf
DV
3628 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3629 pll = &dev_priv->shared_dplls[i];
ee7b9f93
JB
3630
3631 /* Only want to check enabled timings first */
3632 if (pll->refcount == 0)
3633 continue;
3634
b89a1d39
DV
3635 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3636 sizeof(pll->hw_state)) == 0) {
46edb027 3637 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
e2b78267 3638 crtc->base.base.id,
46edb027 3639 pll->name, pll->refcount, pll->active);
ee7b9f93
JB
3640
3641 goto found;
3642 }
3643 }
3644
3645 /* Ok no matching timings, maybe there's a free one? */
e72f9fbf
DV
3646 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3647 pll = &dev_priv->shared_dplls[i];
ee7b9f93 3648 if (pll->refcount == 0) {
46edb027
DV
3649 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3650 crtc->base.base.id, pll->name);
ee7b9f93
JB
3651 goto found;
3652 }
3653 }
3654
3655 return NULL;
3656
3657found:
f2a69f44
DV
3658 if (pll->refcount == 0)
3659 pll->hw_state = crtc->config.dpll_hw_state;
3660
a43f6e0f 3661 crtc->config.shared_dpll = i;
46edb027
DV
3662 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3663 pipe_name(crtc->pipe));
ee7b9f93 3664
cdbd2316 3665 pll->refcount++;
e04c7350 3666
ee7b9f93
JB
3667 return pll;
3668}
3669
a1520318 3670static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57
JB
3671{
3672 struct drm_i915_private *dev_priv = dev->dev_private;
23670b32 3673 int dslreg = PIPEDSL(pipe);
d4270e57
JB
3674 u32 temp;
3675
3676 temp = I915_READ(dslreg);
3677 udelay(500);
3678 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 3679 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 3680 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
3681 }
3682}
3683
b074cec8
JB
3684static void ironlake_pfit_enable(struct intel_crtc *crtc)
3685{
3686 struct drm_device *dev = crtc->base.dev;
3687 struct drm_i915_private *dev_priv = dev->dev_private;
3688 int pipe = crtc->pipe;
3689
fd4daa9c 3690 if (crtc->config.pch_pfit.enabled) {
b074cec8
JB
3691 /* Force use of hard-coded filter coefficients
3692 * as some pre-programmed values are broken,
3693 * e.g. x201.
3694 */
3695 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3696 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3697 PF_PIPE_SEL_IVB(pipe));
3698 else
3699 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3700 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3701 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
d4270e57
JB
3702 }
3703}
3704
bb53d4ae
VS
3705static void intel_enable_planes(struct drm_crtc *crtc)
3706{
3707 struct drm_device *dev = crtc->dev;
3708 enum pipe pipe = to_intel_crtc(crtc)->pipe;
af2b653b 3709 struct drm_plane *plane;
bb53d4ae
VS
3710 struct intel_plane *intel_plane;
3711
af2b653b
MR
3712 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3713 intel_plane = to_intel_plane(plane);
bb53d4ae
VS
3714 if (intel_plane->pipe == pipe)
3715 intel_plane_restore(&intel_plane->base);
af2b653b 3716 }
bb53d4ae
VS
3717}
3718
3719static void intel_disable_planes(struct drm_crtc *crtc)
3720{
3721 struct drm_device *dev = crtc->dev;
3722 enum pipe pipe = to_intel_crtc(crtc)->pipe;
af2b653b 3723 struct drm_plane *plane;
bb53d4ae
VS
3724 struct intel_plane *intel_plane;
3725
af2b653b
MR
3726 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3727 intel_plane = to_intel_plane(plane);
bb53d4ae
VS
3728 if (intel_plane->pipe == pipe)
3729 intel_plane_disable(&intel_plane->base);
af2b653b 3730 }
bb53d4ae
VS
3731}
3732
20bc8673 3733void hsw_enable_ips(struct intel_crtc *crtc)
d77e4531 3734{
cea165c3
VS
3735 struct drm_device *dev = crtc->base.dev;
3736 struct drm_i915_private *dev_priv = dev->dev_private;
d77e4531
PZ
3737
3738 if (!crtc->config.ips_enabled)
3739 return;
3740
cea165c3
VS
3741 /* We can only enable IPS after we enable a plane and wait for a vblank */
3742 intel_wait_for_vblank(dev, crtc->pipe);
3743
d77e4531 3744 assert_plane_enabled(dev_priv, crtc->plane);
cea165c3 3745 if (IS_BROADWELL(dev)) {
2a114cc1
BW
3746 mutex_lock(&dev_priv->rps.hw_lock);
3747 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
3748 mutex_unlock(&dev_priv->rps.hw_lock);
3749 /* Quoting Art Runyan: "its not safe to expect any particular
3750 * value in IPS_CTL bit 31 after enabling IPS through the
e59150dc
JB
3751 * mailbox." Moreover, the mailbox may return a bogus state,
3752 * so we need to just enable it and continue on.
2a114cc1
BW
3753 */
3754 } else {
3755 I915_WRITE(IPS_CTL, IPS_ENABLE);
3756 /* The bit only becomes 1 in the next vblank, so this wait here
3757 * is essentially intel_wait_for_vblank. If we don't have this
3758 * and don't wait for vblanks until the end of crtc_enable, then
3759 * the HW state readout code will complain that the expected
3760 * IPS_CTL value is not the one we read. */
3761 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
3762 DRM_ERROR("Timed out waiting for IPS enable\n");
3763 }
d77e4531
PZ
3764}
3765
20bc8673 3766void hsw_disable_ips(struct intel_crtc *crtc)
d77e4531
PZ
3767{
3768 struct drm_device *dev = crtc->base.dev;
3769 struct drm_i915_private *dev_priv = dev->dev_private;
3770
3771 if (!crtc->config.ips_enabled)
3772 return;
3773
3774 assert_plane_enabled(dev_priv, crtc->plane);
23d0b130 3775 if (IS_BROADWELL(dev)) {
2a114cc1
BW
3776 mutex_lock(&dev_priv->rps.hw_lock);
3777 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
3778 mutex_unlock(&dev_priv->rps.hw_lock);
23d0b130
BW
3779 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
3780 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
3781 DRM_ERROR("Timed out waiting for IPS disable\n");
e59150dc 3782 } else {
2a114cc1 3783 I915_WRITE(IPS_CTL, 0);
e59150dc
JB
3784 POSTING_READ(IPS_CTL);
3785 }
d77e4531
PZ
3786
3787 /* We need to wait for a vblank before we can disable the plane. */
3788 intel_wait_for_vblank(dev, crtc->pipe);
3789}
3790
3791/** Loads the palette/gamma unit for the CRTC with the prepared values */
3792static void intel_crtc_load_lut(struct drm_crtc *crtc)
3793{
3794 struct drm_device *dev = crtc->dev;
3795 struct drm_i915_private *dev_priv = dev->dev_private;
3796 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3797 enum pipe pipe = intel_crtc->pipe;
3798 int palreg = PALETTE(pipe);
3799 int i;
3800 bool reenable_ips = false;
3801
3802 /* The clocks have to be on to load the palette. */
3803 if (!crtc->enabled || !intel_crtc->active)
3804 return;
3805
3806 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3807 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3808 assert_dsi_pll_enabled(dev_priv);
3809 else
3810 assert_pll_enabled(dev_priv, pipe);
3811 }
3812
3813 /* use legacy palette for Ironlake */
3814 if (HAS_PCH_SPLIT(dev))
3815 palreg = LGC_PALETTE(pipe);
3816
3817 /* Workaround : Do not read or write the pipe palette/gamma data while
3818 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3819 */
41e6fc4c 3820 if (IS_HASWELL(dev) && intel_crtc->config.ips_enabled &&
d77e4531
PZ
3821 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3822 GAMMA_MODE_MODE_SPLIT)) {
3823 hsw_disable_ips(intel_crtc);
3824 reenable_ips = true;
3825 }
3826
3827 for (i = 0; i < 256; i++) {
3828 I915_WRITE(palreg + 4 * i,
3829 (intel_crtc->lut_r[i] << 16) |
3830 (intel_crtc->lut_g[i] << 8) |
3831 intel_crtc->lut_b[i]);
3832 }
3833
3834 if (reenable_ips)
3835 hsw_enable_ips(intel_crtc);
3836}
3837
d3eedb1a
VS
3838static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3839{
3840 if (!enable && intel_crtc->overlay) {
3841 struct drm_device *dev = intel_crtc->base.dev;
3842 struct drm_i915_private *dev_priv = dev->dev_private;
3843
3844 mutex_lock(&dev->struct_mutex);
3845 dev_priv->mm.interruptible = false;
3846 (void) intel_overlay_switch_off(intel_crtc->overlay);
3847 dev_priv->mm.interruptible = true;
3848 mutex_unlock(&dev->struct_mutex);
3849 }
3850
3851 /* Let userspace switch the overlay on again. In most cases userspace
3852 * has to recompute where to put it anyway.
3853 */
3854}
3855
3856/**
3857 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3858 * cursor plane briefly if not already running after enabling the display
3859 * plane.
3860 * This workaround avoids occasional blank screens when self refresh is
3861 * enabled.
3862 */
3863static void
3864g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3865{
3866 u32 cntl = I915_READ(CURCNTR(pipe));
3867
3868 if ((cntl & CURSOR_MODE) == 0) {
3869 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3870
3871 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3872 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3873 intel_wait_for_vblank(dev_priv->dev, pipe);
3874 I915_WRITE(CURCNTR(pipe), cntl);
3875 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3876 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3877 }
3878}
3879
3880static void intel_crtc_enable_planes(struct drm_crtc *crtc)
a5c4d7bc
VS
3881{
3882 struct drm_device *dev = crtc->dev;
3883 struct drm_i915_private *dev_priv = dev->dev_private;
3884 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3885 int pipe = intel_crtc->pipe;
3886 int plane = intel_crtc->plane;
3887
3888 intel_enable_primary_hw_plane(dev_priv, plane, pipe);
3889 intel_enable_planes(crtc);
d3eedb1a
VS
3890 /* The fixup needs to happen before cursor is enabled */
3891 if (IS_G4X(dev))
3892 g4x_fixup_plane(dev_priv, pipe);
a5c4d7bc 3893 intel_crtc_update_cursor(crtc, true);
d3eedb1a 3894 intel_crtc_dpms_overlay(intel_crtc, true);
a5c4d7bc
VS
3895
3896 hsw_enable_ips(intel_crtc);
3897
3898 mutex_lock(&dev->struct_mutex);
3899 intel_update_fbc(dev);
71b1c373 3900 intel_edp_psr_update(dev);
a5c4d7bc
VS
3901 mutex_unlock(&dev->struct_mutex);
3902}
3903
d3eedb1a 3904static void intel_crtc_disable_planes(struct drm_crtc *crtc)
a5c4d7bc
VS
3905{
3906 struct drm_device *dev = crtc->dev;
3907 struct drm_i915_private *dev_priv = dev->dev_private;
3908 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3909 int pipe = intel_crtc->pipe;
3910 int plane = intel_crtc->plane;
3911
3912 intel_crtc_wait_for_pending_flips(crtc);
87b6b101 3913 drm_crtc_vblank_off(crtc);
a5c4d7bc
VS
3914
3915 if (dev_priv->fbc.plane == plane)
3916 intel_disable_fbc(dev);
3917
3918 hsw_disable_ips(intel_crtc);
3919
d3eedb1a 3920 intel_crtc_dpms_overlay(intel_crtc, false);
a5c4d7bc
VS
3921 intel_crtc_update_cursor(crtc, false);
3922 intel_disable_planes(crtc);
3923 intel_disable_primary_hw_plane(dev_priv, plane, pipe);
3924}
3925
f67a559d
JB
3926static void ironlake_crtc_enable(struct drm_crtc *crtc)
3927{
3928 struct drm_device *dev = crtc->dev;
3929 struct drm_i915_private *dev_priv = dev->dev_private;
3930 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 3931 struct intel_encoder *encoder;
f67a559d 3932 int pipe = intel_crtc->pipe;
29407aab 3933 enum plane plane = intel_crtc->plane;
f67a559d 3934
08a48469
DV
3935 WARN_ON(!crtc->enabled);
3936
f67a559d
JB
3937 if (intel_crtc->active)
3938 return;
3939
b14b1055
DV
3940 if (intel_crtc->config.has_pch_encoder)
3941 intel_prepare_shared_dpll(intel_crtc);
3942
29407aab
DV
3943 if (intel_crtc->config.has_dp_encoder)
3944 intel_dp_set_m_n(intel_crtc);
3945
3946 intel_set_pipe_timings(intel_crtc);
3947
3948 if (intel_crtc->config.has_pch_encoder) {
3949 intel_cpu_transcoder_set_m_n(intel_crtc,
3950 &intel_crtc->config.fdi_m_n);
3951 }
3952
3953 ironlake_set_pipeconf(crtc);
3954
3955 /* Set up the display plane register */
3956 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
3957 POSTING_READ(DSPCNTR(plane));
3958
3959 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
3960 crtc->x, crtc->y);
3961
f67a559d 3962 intel_crtc->active = true;
8664281b
PZ
3963
3964 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3965 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3966
f6736a1a 3967 for_each_encoder_on_crtc(dev, crtc, encoder)
952735ee
DV
3968 if (encoder->pre_enable)
3969 encoder->pre_enable(encoder);
f67a559d 3970
5bfe2ac0 3971 if (intel_crtc->config.has_pch_encoder) {
fff367c7
DV
3972 /* Note: FDI PLL enabling _must_ be done before we enable the
3973 * cpu pipes, hence this is separate from all the other fdi/pch
3974 * enabling. */
88cefb6c 3975 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
3976 } else {
3977 assert_fdi_tx_disabled(dev_priv, pipe);
3978 assert_fdi_rx_disabled(dev_priv, pipe);
3979 }
f67a559d 3980
b074cec8 3981 ironlake_pfit_enable(intel_crtc);
f67a559d 3982
9c54c0dd
JB
3983 /*
3984 * On ILK+ LUT must be loaded before the pipe is running but with
3985 * clocks enabled
3986 */
3987 intel_crtc_load_lut(crtc);
3988
f37fcc2a 3989 intel_update_watermarks(crtc);
e1fdc473 3990 intel_enable_pipe(intel_crtc);
f67a559d 3991
5bfe2ac0 3992 if (intel_crtc->config.has_pch_encoder)
f67a559d 3993 ironlake_pch_enable(crtc);
c98e9dcf 3994
fa5c73b1
DV
3995 for_each_encoder_on_crtc(dev, crtc, encoder)
3996 encoder->enable(encoder);
61b77ddd
DV
3997
3998 if (HAS_PCH_CPT(dev))
a1520318 3999 cpt_verify_modeset(dev, intel_crtc->pipe);
6ce94100 4000
d3eedb1a 4001 intel_crtc_enable_planes(crtc);
a5c4d7bc 4002
87b6b101 4003 drm_crtc_vblank_on(crtc);
6be4a607
JB
4004}
4005
42db64ef
PZ
4006/* IPS only exists on ULT machines and is tied to pipe A. */
4007static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4008{
f5adf94e 4009 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
42db64ef
PZ
4010}
4011
e4916946
PZ
4012/*
4013 * This implements the workaround described in the "notes" section of the mode
4014 * set sequence documentation. When going from no pipes or single pipe to
4015 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4016 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4017 */
4018static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4019{
4020 struct drm_device *dev = crtc->base.dev;
4021 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4022
4023 /* We want to get the other_active_crtc only if there's only 1 other
4024 * active crtc. */
d3fcc808 4025 for_each_intel_crtc(dev, crtc_it) {
e4916946
PZ
4026 if (!crtc_it->active || crtc_it == crtc)
4027 continue;
4028
4029 if (other_active_crtc)
4030 return;
4031
4032 other_active_crtc = crtc_it;
4033 }
4034 if (!other_active_crtc)
4035 return;
4036
4037 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4038 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4039}
4040
4f771f10
PZ
4041static void haswell_crtc_enable(struct drm_crtc *crtc)
4042{
4043 struct drm_device *dev = crtc->dev;
4044 struct drm_i915_private *dev_priv = dev->dev_private;
4045 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4046 struct intel_encoder *encoder;
4047 int pipe = intel_crtc->pipe;
229fca97 4048 enum plane plane = intel_crtc->plane;
4f771f10
PZ
4049
4050 WARN_ON(!crtc->enabled);
4051
4052 if (intel_crtc->active)
4053 return;
4054
229fca97
DV
4055 if (intel_crtc->config.has_dp_encoder)
4056 intel_dp_set_m_n(intel_crtc);
4057
4058 intel_set_pipe_timings(intel_crtc);
4059
4060 if (intel_crtc->config.has_pch_encoder) {
4061 intel_cpu_transcoder_set_m_n(intel_crtc,
4062 &intel_crtc->config.fdi_m_n);
4063 }
4064
4065 haswell_set_pipeconf(crtc);
4066
4067 intel_set_pipe_csc(crtc);
4068
4069 /* Set up the display plane register */
4070 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
4071 POSTING_READ(DSPCNTR(plane));
4072
4073 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4074 crtc->x, crtc->y);
4075
4f771f10 4076 intel_crtc->active = true;
8664281b
PZ
4077
4078 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4079 if (intel_crtc->config.has_pch_encoder)
4080 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
4081
5bfe2ac0 4082 if (intel_crtc->config.has_pch_encoder)
04945641 4083 dev_priv->display.fdi_link_train(crtc);
4f771f10
PZ
4084
4085 for_each_encoder_on_crtc(dev, crtc, encoder)
4086 if (encoder->pre_enable)
4087 encoder->pre_enable(encoder);
4088
1f544388 4089 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 4090
b074cec8 4091 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
4092
4093 /*
4094 * On ILK+ LUT must be loaded before the pipe is running but with
4095 * clocks enabled
4096 */
4097 intel_crtc_load_lut(crtc);
4098
1f544388 4099 intel_ddi_set_pipe_settings(crtc);
8228c251 4100 intel_ddi_enable_transcoder_func(crtc);
4f771f10 4101
f37fcc2a 4102 intel_update_watermarks(crtc);
e1fdc473 4103 intel_enable_pipe(intel_crtc);
42db64ef 4104
5bfe2ac0 4105 if (intel_crtc->config.has_pch_encoder)
1507e5bd 4106 lpt_pch_enable(crtc);
4f771f10 4107
8807e55b 4108 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10 4109 encoder->enable(encoder);
8807e55b
JN
4110 intel_opregion_notify_encoder(encoder, true);
4111 }
4f771f10 4112
e4916946
PZ
4113 /* If we change the relative order between pipe/planes enabling, we need
4114 * to change the workaround. */
4115 haswell_mode_set_planes_workaround(intel_crtc);
d3eedb1a 4116 intel_crtc_enable_planes(crtc);
f2752282 4117
87b6b101 4118 drm_crtc_vblank_on(crtc);
4f771f10
PZ
4119}
4120
3f8dce3a
DV
4121static void ironlake_pfit_disable(struct intel_crtc *crtc)
4122{
4123 struct drm_device *dev = crtc->base.dev;
4124 struct drm_i915_private *dev_priv = dev->dev_private;
4125 int pipe = crtc->pipe;
4126
4127 /* To avoid upsetting the power well on haswell only disable the pfit if
4128 * it's in use. The hw state code will make sure we get this right. */
fd4daa9c 4129 if (crtc->config.pch_pfit.enabled) {
3f8dce3a
DV
4130 I915_WRITE(PF_CTL(pipe), 0);
4131 I915_WRITE(PF_WIN_POS(pipe), 0);
4132 I915_WRITE(PF_WIN_SZ(pipe), 0);
4133 }
4134}
4135
6be4a607
JB
4136static void ironlake_crtc_disable(struct drm_crtc *crtc)
4137{
4138 struct drm_device *dev = crtc->dev;
4139 struct drm_i915_private *dev_priv = dev->dev_private;
4140 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4141 struct intel_encoder *encoder;
6be4a607 4142 int pipe = intel_crtc->pipe;
5eddb70b 4143 u32 reg, temp;
b52eb4dc 4144
f7abfe8b
CW
4145 if (!intel_crtc->active)
4146 return;
4147
d3eedb1a 4148 intel_crtc_disable_planes(crtc);
a5c4d7bc 4149
ea9d758d
DV
4150 for_each_encoder_on_crtc(dev, crtc, encoder)
4151 encoder->disable(encoder);
4152
d925c59a
DV
4153 if (intel_crtc->config.has_pch_encoder)
4154 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
4155
b24e7179 4156 intel_disable_pipe(dev_priv, pipe);
32f9d658 4157
3f8dce3a 4158 ironlake_pfit_disable(intel_crtc);
2c07245f 4159
bf49ec8c
DV
4160 for_each_encoder_on_crtc(dev, crtc, encoder)
4161 if (encoder->post_disable)
4162 encoder->post_disable(encoder);
2c07245f 4163
d925c59a
DV
4164 if (intel_crtc->config.has_pch_encoder) {
4165 ironlake_fdi_disable(crtc);
913d8d11 4166
d925c59a
DV
4167 ironlake_disable_pch_transcoder(dev_priv, pipe);
4168 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
6be4a607 4169
d925c59a
DV
4170 if (HAS_PCH_CPT(dev)) {
4171 /* disable TRANS_DP_CTL */
4172 reg = TRANS_DP_CTL(pipe);
4173 temp = I915_READ(reg);
4174 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4175 TRANS_DP_PORT_SEL_MASK);
4176 temp |= TRANS_DP_PORT_SEL_NONE;
4177 I915_WRITE(reg, temp);
4178
4179 /* disable DPLL_SEL */
4180 temp = I915_READ(PCH_DPLL_SEL);
11887397 4181 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 4182 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 4183 }
e3421a18 4184
d925c59a 4185 /* disable PCH DPLL */
e72f9fbf 4186 intel_disable_shared_dpll(intel_crtc);
8db9d77b 4187
d925c59a
DV
4188 ironlake_fdi_pll_disable(intel_crtc);
4189 }
6b383a7f 4190
f7abfe8b 4191 intel_crtc->active = false;
46ba614c 4192 intel_update_watermarks(crtc);
d1ebd816
BW
4193
4194 mutex_lock(&dev->struct_mutex);
6b383a7f 4195 intel_update_fbc(dev);
71b1c373 4196 intel_edp_psr_update(dev);
d1ebd816 4197 mutex_unlock(&dev->struct_mutex);
6be4a607 4198}
1b3c7a47 4199
4f771f10 4200static void haswell_crtc_disable(struct drm_crtc *crtc)
ee7b9f93 4201{
4f771f10
PZ
4202 struct drm_device *dev = crtc->dev;
4203 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93 4204 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4f771f10
PZ
4205 struct intel_encoder *encoder;
4206 int pipe = intel_crtc->pipe;
3b117c8f 4207 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
ee7b9f93 4208
4f771f10
PZ
4209 if (!intel_crtc->active)
4210 return;
4211
d3eedb1a 4212 intel_crtc_disable_planes(crtc);
dda9a66a 4213
8807e55b
JN
4214 for_each_encoder_on_crtc(dev, crtc, encoder) {
4215 intel_opregion_notify_encoder(encoder, false);
4f771f10 4216 encoder->disable(encoder);
8807e55b 4217 }
4f771f10 4218
8664281b
PZ
4219 if (intel_crtc->config.has_pch_encoder)
4220 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
4f771f10
PZ
4221 intel_disable_pipe(dev_priv, pipe);
4222
ad80a810 4223 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 4224
3f8dce3a 4225 ironlake_pfit_disable(intel_crtc);
4f771f10 4226
1f544388 4227 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10
PZ
4228
4229 for_each_encoder_on_crtc(dev, crtc, encoder)
4230 if (encoder->post_disable)
4231 encoder->post_disable(encoder);
4232
88adfff1 4233 if (intel_crtc->config.has_pch_encoder) {
ab4d966c 4234 lpt_disable_pch_transcoder(dev_priv);
8664281b 4235 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
1ad960f2 4236 intel_ddi_fdi_disable(crtc);
83616634 4237 }
4f771f10
PZ
4238
4239 intel_crtc->active = false;
46ba614c 4240 intel_update_watermarks(crtc);
4f771f10
PZ
4241
4242 mutex_lock(&dev->struct_mutex);
4243 intel_update_fbc(dev);
71b1c373 4244 intel_edp_psr_update(dev);
4f771f10
PZ
4245 mutex_unlock(&dev->struct_mutex);
4246}
4247
ee7b9f93
JB
4248static void ironlake_crtc_off(struct drm_crtc *crtc)
4249{
4250 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
e72f9fbf 4251 intel_put_shared_dpll(intel_crtc);
ee7b9f93
JB
4252}
4253
6441ab5f
PZ
4254static void haswell_crtc_off(struct drm_crtc *crtc)
4255{
4256 intel_ddi_put_crtc_pll(crtc);
4257}
4258
2dd24552
JB
4259static void i9xx_pfit_enable(struct intel_crtc *crtc)
4260{
4261 struct drm_device *dev = crtc->base.dev;
4262 struct drm_i915_private *dev_priv = dev->dev_private;
4263 struct intel_crtc_config *pipe_config = &crtc->config;
4264
328d8e82 4265 if (!crtc->config.gmch_pfit.control)
2dd24552
JB
4266 return;
4267
2dd24552 4268 /*
c0b03411
DV
4269 * The panel fitter should only be adjusted whilst the pipe is disabled,
4270 * according to register description and PRM.
2dd24552 4271 */
c0b03411
DV
4272 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4273 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 4274
b074cec8
JB
4275 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4276 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
4277
4278 /* Border color in case we don't scale up to the full screen. Black by
4279 * default, change to something else for debugging. */
4280 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
4281}
4282
77d22dca
ID
4283#define for_each_power_domain(domain, mask) \
4284 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4285 if ((1 << (domain)) & (mask))
4286
319be8ae
ID
4287enum intel_display_power_domain
4288intel_display_port_power_domain(struct intel_encoder *intel_encoder)
4289{
4290 struct drm_device *dev = intel_encoder->base.dev;
4291 struct intel_digital_port *intel_dig_port;
4292
4293 switch (intel_encoder->type) {
4294 case INTEL_OUTPUT_UNKNOWN:
4295 /* Only DDI platforms should ever use this output type */
4296 WARN_ON_ONCE(!HAS_DDI(dev));
4297 case INTEL_OUTPUT_DISPLAYPORT:
4298 case INTEL_OUTPUT_HDMI:
4299 case INTEL_OUTPUT_EDP:
4300 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
4301 switch (intel_dig_port->port) {
4302 case PORT_A:
4303 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4304 case PORT_B:
4305 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4306 case PORT_C:
4307 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4308 case PORT_D:
4309 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4310 default:
4311 WARN_ON_ONCE(1);
4312 return POWER_DOMAIN_PORT_OTHER;
4313 }
4314 case INTEL_OUTPUT_ANALOG:
4315 return POWER_DOMAIN_PORT_CRT;
4316 case INTEL_OUTPUT_DSI:
4317 return POWER_DOMAIN_PORT_DSI;
4318 default:
4319 return POWER_DOMAIN_PORT_OTHER;
4320 }
4321}
4322
4323static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
77d22dca 4324{
319be8ae
ID
4325 struct drm_device *dev = crtc->dev;
4326 struct intel_encoder *intel_encoder;
4327 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4328 enum pipe pipe = intel_crtc->pipe;
4329 bool pfit_enabled = intel_crtc->config.pch_pfit.enabled;
77d22dca
ID
4330 unsigned long mask;
4331 enum transcoder transcoder;
4332
4333 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4334
4335 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4336 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
4337 if (pfit_enabled)
4338 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4339
319be8ae
ID
4340 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4341 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4342
77d22dca
ID
4343 return mask;
4344}
4345
4346void intel_display_set_init_power(struct drm_i915_private *dev_priv,
4347 bool enable)
4348{
4349 if (dev_priv->power_domains.init_power_on == enable)
4350 return;
4351
4352 if (enable)
4353 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
4354 else
4355 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
4356
4357 dev_priv->power_domains.init_power_on = enable;
4358}
4359
4360static void modeset_update_crtc_power_domains(struct drm_device *dev)
4361{
4362 struct drm_i915_private *dev_priv = dev->dev_private;
4363 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4364 struct intel_crtc *crtc;
4365
4366 /*
4367 * First get all needed power domains, then put all unneeded, to avoid
4368 * any unnecessary toggling of the power wells.
4369 */
d3fcc808 4370 for_each_intel_crtc(dev, crtc) {
77d22dca
ID
4371 enum intel_display_power_domain domain;
4372
4373 if (!crtc->base.enabled)
4374 continue;
4375
319be8ae 4376 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
77d22dca
ID
4377
4378 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4379 intel_display_power_get(dev_priv, domain);
4380 }
4381
d3fcc808 4382 for_each_intel_crtc(dev, crtc) {
77d22dca
ID
4383 enum intel_display_power_domain domain;
4384
4385 for_each_power_domain(domain, crtc->enabled_power_domains)
4386 intel_display_power_put(dev_priv, domain);
4387
4388 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4389 }
4390
4391 intel_display_set_init_power(dev_priv, false);
4392}
4393
586f49dc 4394int valleyview_get_vco(struct drm_i915_private *dev_priv)
30a970c6 4395{
586f49dc 4396 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
30a970c6 4397
586f49dc
JB
4398 /* Obtain SKU information */
4399 mutex_lock(&dev_priv->dpio_lock);
4400 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4401 CCK_FUSE_HPLL_FREQ_MASK;
4402 mutex_unlock(&dev_priv->dpio_lock);
30a970c6 4403
586f49dc 4404 return vco_freq[hpll_freq];
30a970c6
JB
4405}
4406
4407/* Adjust CDclk dividers to allow high res or save power if possible */
4408static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4409{
4410 struct drm_i915_private *dev_priv = dev->dev_private;
4411 u32 val, cmd;
4412
d60c4473
ID
4413 WARN_ON(valleyview_cur_cdclk(dev_priv) != dev_priv->vlv_cdclk_freq);
4414 dev_priv->vlv_cdclk_freq = cdclk;
4415
30a970c6
JB
4416 if (cdclk >= 320) /* jump to highest voltage for 400MHz too */
4417 cmd = 2;
4418 else if (cdclk == 266)
4419 cmd = 1;
4420 else
4421 cmd = 0;
4422
4423 mutex_lock(&dev_priv->rps.hw_lock);
4424 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4425 val &= ~DSPFREQGUAR_MASK;
4426 val |= (cmd << DSPFREQGUAR_SHIFT);
4427 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4428 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4429 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4430 50)) {
4431 DRM_ERROR("timed out waiting for CDclk change\n");
4432 }
4433 mutex_unlock(&dev_priv->rps.hw_lock);
4434
4435 if (cdclk == 400) {
4436 u32 divider, vco;
4437
4438 vco = valleyview_get_vco(dev_priv);
4439 divider = ((vco << 1) / cdclk) - 1;
4440
4441 mutex_lock(&dev_priv->dpio_lock);
4442 /* adjust cdclk divider */
4443 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4444 val &= ~0xf;
4445 val |= divider;
4446 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
4447 mutex_unlock(&dev_priv->dpio_lock);
4448 }
4449
4450 mutex_lock(&dev_priv->dpio_lock);
4451 /* adjust self-refresh exit latency value */
4452 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4453 val &= ~0x7f;
4454
4455 /*
4456 * For high bandwidth configs, we set a higher latency in the bunit
4457 * so that the core display fetch happens in time to avoid underruns.
4458 */
4459 if (cdclk == 400)
4460 val |= 4500 / 250; /* 4.5 usec */
4461 else
4462 val |= 3000 / 250; /* 3.0 usec */
4463 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4464 mutex_unlock(&dev_priv->dpio_lock);
4465
4466 /* Since we changed the CDclk, we need to update the GMBUSFREQ too */
4467 intel_i2c_reset(dev);
4468}
4469
d60c4473 4470int valleyview_cur_cdclk(struct drm_i915_private *dev_priv)
30a970c6
JB
4471{
4472 int cur_cdclk, vco;
4473 int divider;
4474
4475 vco = valleyview_get_vco(dev_priv);
4476
4477 mutex_lock(&dev_priv->dpio_lock);
4478 divider = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4479 mutex_unlock(&dev_priv->dpio_lock);
4480
4481 divider &= 0xf;
4482
4483 cur_cdclk = (vco << 1) / (divider + 1);
4484
4485 return cur_cdclk;
4486}
4487
4488static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4489 int max_pixclk)
4490{
30a970c6
JB
4491 /*
4492 * Really only a few cases to deal with, as only 4 CDclks are supported:
4493 * 200MHz
4494 * 267MHz
4495 * 320MHz
4496 * 400MHz
4497 * So we check to see whether we're above 90% of the lower bin and
4498 * adjust if needed.
4499 */
4500 if (max_pixclk > 288000) {
4501 return 400;
4502 } else if (max_pixclk > 240000) {
4503 return 320;
4504 } else
4505 return 266;
4506 /* Looks like the 200MHz CDclk freq doesn't work on some configs */
4507}
4508
2f2d7aa1
VS
4509/* compute the max pixel clock for new configuration */
4510static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
30a970c6
JB
4511{
4512 struct drm_device *dev = dev_priv->dev;
4513 struct intel_crtc *intel_crtc;
4514 int max_pixclk = 0;
4515
d3fcc808 4516 for_each_intel_crtc(dev, intel_crtc) {
2f2d7aa1 4517 if (intel_crtc->new_enabled)
30a970c6 4518 max_pixclk = max(max_pixclk,
2f2d7aa1 4519 intel_crtc->new_config->adjusted_mode.crtc_clock);
30a970c6
JB
4520 }
4521
4522 return max_pixclk;
4523}
4524
4525static void valleyview_modeset_global_pipes(struct drm_device *dev,
2f2d7aa1 4526 unsigned *prepare_pipes)
30a970c6
JB
4527{
4528 struct drm_i915_private *dev_priv = dev->dev_private;
4529 struct intel_crtc *intel_crtc;
2f2d7aa1 4530 int max_pixclk = intel_mode_max_pixclk(dev_priv);
30a970c6 4531
d60c4473
ID
4532 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4533 dev_priv->vlv_cdclk_freq)
30a970c6
JB
4534 return;
4535
2f2d7aa1 4536 /* disable/enable all currently active pipes while we change cdclk */
d3fcc808 4537 for_each_intel_crtc(dev, intel_crtc)
30a970c6
JB
4538 if (intel_crtc->base.enabled)
4539 *prepare_pipes |= (1 << intel_crtc->pipe);
4540}
4541
4542static void valleyview_modeset_global_resources(struct drm_device *dev)
4543{
4544 struct drm_i915_private *dev_priv = dev->dev_private;
2f2d7aa1 4545 int max_pixclk = intel_mode_max_pixclk(dev_priv);
30a970c6
JB
4546 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4547
d60c4473 4548 if (req_cdclk != dev_priv->vlv_cdclk_freq)
30a970c6 4549 valleyview_set_cdclk(dev, req_cdclk);
77961eb9 4550 modeset_update_crtc_power_domains(dev);
30a970c6
JB
4551}
4552
89b667f8
JB
4553static void valleyview_crtc_enable(struct drm_crtc *crtc)
4554{
4555 struct drm_device *dev = crtc->dev;
5b18e57c 4556 struct drm_i915_private *dev_priv = dev->dev_private;
89b667f8
JB
4557 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4558 struct intel_encoder *encoder;
4559 int pipe = intel_crtc->pipe;
5b18e57c 4560 int plane = intel_crtc->plane;
23538ef1 4561 bool is_dsi;
5b18e57c 4562 u32 dspcntr;
89b667f8
JB
4563
4564 WARN_ON(!crtc->enabled);
4565
4566 if (intel_crtc->active)
4567 return;
4568
bdd4b6a6
DV
4569 vlv_prepare_pll(intel_crtc);
4570
5b18e57c
DV
4571 /* Set up the display plane register */
4572 dspcntr = DISPPLANE_GAMMA_ENABLE;
4573
4574 if (intel_crtc->config.has_dp_encoder)
4575 intel_dp_set_m_n(intel_crtc);
4576
4577 intel_set_pipe_timings(intel_crtc);
4578
4579 /* pipesrc and dspsize control the size that is scaled from,
4580 * which should always be the user's requested size.
4581 */
4582 I915_WRITE(DSPSIZE(plane),
4583 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4584 (intel_crtc->config.pipe_src_w - 1));
4585 I915_WRITE(DSPPOS(plane), 0);
4586
4587 i9xx_set_pipeconf(intel_crtc);
4588
4589 I915_WRITE(DSPCNTR(plane), dspcntr);
4590 POSTING_READ(DSPCNTR(plane));
4591
4592 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4593 crtc->x, crtc->y);
4594
89b667f8 4595 intel_crtc->active = true;
89b667f8 4596
89b667f8
JB
4597 for_each_encoder_on_crtc(dev, crtc, encoder)
4598 if (encoder->pre_pll_enable)
4599 encoder->pre_pll_enable(encoder);
4600
23538ef1
JN
4601 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4602
9d556c99
CML
4603 if (!is_dsi) {
4604 if (IS_CHERRYVIEW(dev))
4605 chv_enable_pll(intel_crtc);
4606 else
4607 vlv_enable_pll(intel_crtc);
4608 }
89b667f8
JB
4609
4610 for_each_encoder_on_crtc(dev, crtc, encoder)
4611 if (encoder->pre_enable)
4612 encoder->pre_enable(encoder);
4613
2dd24552
JB
4614 i9xx_pfit_enable(intel_crtc);
4615
63cbb074
VS
4616 intel_crtc_load_lut(crtc);
4617
f37fcc2a 4618 intel_update_watermarks(crtc);
e1fdc473 4619 intel_enable_pipe(intel_crtc);
2d9d2b0b 4620 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
be6a6f8e 4621
5004945f
JN
4622 for_each_encoder_on_crtc(dev, crtc, encoder)
4623 encoder->enable(encoder);
9ab0460b
VS
4624
4625 intel_crtc_enable_planes(crtc);
d40d9187 4626
87b6b101 4627 drm_crtc_vblank_on(crtc);
89b667f8
JB
4628}
4629
f13c2ef3
DV
4630static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
4631{
4632 struct drm_device *dev = crtc->base.dev;
4633 struct drm_i915_private *dev_priv = dev->dev_private;
4634
4635 I915_WRITE(FP0(crtc->pipe), crtc->config.dpll_hw_state.fp0);
4636 I915_WRITE(FP1(crtc->pipe), crtc->config.dpll_hw_state.fp1);
4637}
4638
0b8765c6 4639static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
4640{
4641 struct drm_device *dev = crtc->dev;
5b18e57c 4642 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 4643 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4644 struct intel_encoder *encoder;
79e53945 4645 int pipe = intel_crtc->pipe;
5b18e57c
DV
4646 int plane = intel_crtc->plane;
4647 u32 dspcntr;
79e53945 4648
08a48469
DV
4649 WARN_ON(!crtc->enabled);
4650
f7abfe8b
CW
4651 if (intel_crtc->active)
4652 return;
4653
f13c2ef3
DV
4654 i9xx_set_pll_dividers(intel_crtc);
4655
5b18e57c
DV
4656 /* Set up the display plane register */
4657 dspcntr = DISPPLANE_GAMMA_ENABLE;
4658
4659 if (pipe == 0)
4660 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4661 else
4662 dspcntr |= DISPPLANE_SEL_PIPE_B;
4663
4664 if (intel_crtc->config.has_dp_encoder)
4665 intel_dp_set_m_n(intel_crtc);
4666
4667 intel_set_pipe_timings(intel_crtc);
4668
4669 /* pipesrc and dspsize control the size that is scaled from,
4670 * which should always be the user's requested size.
4671 */
4672 I915_WRITE(DSPSIZE(plane),
4673 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4674 (intel_crtc->config.pipe_src_w - 1));
4675 I915_WRITE(DSPPOS(plane), 0);
4676
4677 i9xx_set_pipeconf(intel_crtc);
4678
4679 I915_WRITE(DSPCNTR(plane), dspcntr);
4680 POSTING_READ(DSPCNTR(plane));
4681
4682 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4683 crtc->x, crtc->y);
4684
f7abfe8b 4685 intel_crtc->active = true;
6b383a7f 4686
9d6d9f19
MK
4687 for_each_encoder_on_crtc(dev, crtc, encoder)
4688 if (encoder->pre_enable)
4689 encoder->pre_enable(encoder);
4690
f6736a1a
DV
4691 i9xx_enable_pll(intel_crtc);
4692
2dd24552
JB
4693 i9xx_pfit_enable(intel_crtc);
4694
63cbb074
VS
4695 intel_crtc_load_lut(crtc);
4696
f37fcc2a 4697 intel_update_watermarks(crtc);
e1fdc473 4698 intel_enable_pipe(intel_crtc);
2d9d2b0b 4699 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
be6a6f8e 4700
fa5c73b1
DV
4701 for_each_encoder_on_crtc(dev, crtc, encoder)
4702 encoder->enable(encoder);
9ab0460b
VS
4703
4704 intel_crtc_enable_planes(crtc);
d40d9187 4705
87b6b101 4706 drm_crtc_vblank_on(crtc);
0b8765c6 4707}
79e53945 4708
87476d63
DV
4709static void i9xx_pfit_disable(struct intel_crtc *crtc)
4710{
4711 struct drm_device *dev = crtc->base.dev;
4712 struct drm_i915_private *dev_priv = dev->dev_private;
87476d63 4713
328d8e82
DV
4714 if (!crtc->config.gmch_pfit.control)
4715 return;
87476d63 4716
328d8e82 4717 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 4718
328d8e82
DV
4719 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
4720 I915_READ(PFIT_CONTROL));
4721 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
4722}
4723
0b8765c6
JB
4724static void i9xx_crtc_disable(struct drm_crtc *crtc)
4725{
4726 struct drm_device *dev = crtc->dev;
4727 struct drm_i915_private *dev_priv = dev->dev_private;
4728 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4729 struct intel_encoder *encoder;
0b8765c6 4730 int pipe = intel_crtc->pipe;
ef9c3aee 4731
f7abfe8b
CW
4732 if (!intel_crtc->active)
4733 return;
4734
9ab0460b
VS
4735 intel_crtc_disable_planes(crtc);
4736
ea9d758d
DV
4737 for_each_encoder_on_crtc(dev, crtc, encoder)
4738 encoder->disable(encoder);
4739
6304cd91
VS
4740 /*
4741 * On gen2 planes are double buffered but the pipe isn't, so we must
4742 * wait for planes to fully turn off before disabling the pipe.
4743 */
4744 if (IS_GEN2(dev))
4745 intel_wait_for_vblank(dev, pipe);
4746
2d9d2b0b 4747 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
b24e7179 4748 intel_disable_pipe(dev_priv, pipe);
24a1f16d 4749
87476d63 4750 i9xx_pfit_disable(intel_crtc);
24a1f16d 4751
89b667f8
JB
4752 for_each_encoder_on_crtc(dev, crtc, encoder)
4753 if (encoder->post_disable)
4754 encoder->post_disable(encoder);
4755
076ed3b2
CML
4756 if (!intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI)) {
4757 if (IS_CHERRYVIEW(dev))
4758 chv_disable_pll(dev_priv, pipe);
4759 else if (IS_VALLEYVIEW(dev))
4760 vlv_disable_pll(dev_priv, pipe);
4761 else
4762 i9xx_disable_pll(dev_priv, pipe);
4763 }
0b8765c6 4764
f7abfe8b 4765 intel_crtc->active = false;
46ba614c 4766 intel_update_watermarks(crtc);
f37fcc2a 4767
efa9624e 4768 mutex_lock(&dev->struct_mutex);
6b383a7f 4769 intel_update_fbc(dev);
71b1c373 4770 intel_edp_psr_update(dev);
efa9624e 4771 mutex_unlock(&dev->struct_mutex);
0b8765c6
JB
4772}
4773
ee7b9f93
JB
4774static void i9xx_crtc_off(struct drm_crtc *crtc)
4775{
4776}
4777
976f8a20
DV
4778static void intel_crtc_update_sarea(struct drm_crtc *crtc,
4779 bool enabled)
2c07245f
ZW
4780{
4781 struct drm_device *dev = crtc->dev;
4782 struct drm_i915_master_private *master_priv;
4783 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4784 int pipe = intel_crtc->pipe;
79e53945
JB
4785
4786 if (!dev->primary->master)
4787 return;
4788
4789 master_priv = dev->primary->master->driver_priv;
4790 if (!master_priv->sarea_priv)
4791 return;
4792
79e53945
JB
4793 switch (pipe) {
4794 case 0:
4795 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4796 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4797 break;
4798 case 1:
4799 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4800 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4801 break;
4802 default:
9db4a9c7 4803 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
79e53945
JB
4804 break;
4805 }
79e53945
JB
4806}
4807
976f8a20
DV
4808/**
4809 * Sets the power management mode of the pipe and plane.
4810 */
4811void intel_crtc_update_dpms(struct drm_crtc *crtc)
4812{
4813 struct drm_device *dev = crtc->dev;
4814 struct drm_i915_private *dev_priv = dev->dev_private;
4815 struct intel_encoder *intel_encoder;
4816 bool enable = false;
4817
4818 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4819 enable |= intel_encoder->connectors_active;
4820
4821 if (enable)
4822 dev_priv->display.crtc_enable(crtc);
4823 else
4824 dev_priv->display.crtc_disable(crtc);
4825
4826 intel_crtc_update_sarea(crtc, enable);
4827}
4828
cdd59983
CW
4829static void intel_crtc_disable(struct drm_crtc *crtc)
4830{
cdd59983 4831 struct drm_device *dev = crtc->dev;
976f8a20 4832 struct drm_connector *connector;
ee7b9f93 4833 struct drm_i915_private *dev_priv = dev->dev_private;
cdd59983 4834
976f8a20
DV
4835 /* crtc should still be enabled when we disable it. */
4836 WARN_ON(!crtc->enabled);
4837
4838 dev_priv->display.crtc_disable(crtc);
4839 intel_crtc_update_sarea(crtc, false);
ee7b9f93
JB
4840 dev_priv->display.off(crtc);
4841
931872fc 4842 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
93ce0ba6 4843 assert_cursor_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
931872fc 4844 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
cdd59983 4845
f4510a27 4846 if (crtc->primary->fb) {
cdd59983 4847 mutex_lock(&dev->struct_mutex);
f4510a27 4848 intel_unpin_fb_obj(to_intel_framebuffer(crtc->primary->fb)->obj);
cdd59983 4849 mutex_unlock(&dev->struct_mutex);
f4510a27 4850 crtc->primary->fb = NULL;
976f8a20
DV
4851 }
4852
4853 /* Update computed state. */
4854 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4855 if (!connector->encoder || !connector->encoder->crtc)
4856 continue;
4857
4858 if (connector->encoder->crtc != crtc)
4859 continue;
4860
4861 connector->dpms = DRM_MODE_DPMS_OFF;
4862 to_intel_encoder(connector->encoder)->connectors_active = false;
cdd59983
CW
4863 }
4864}
4865
ea5b213a 4866void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 4867{
4ef69c7a 4868 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 4869
ea5b213a
CW
4870 drm_encoder_cleanup(encoder);
4871 kfree(intel_encoder);
7e7d76c3
JB
4872}
4873
9237329d 4874/* Simple dpms helper for encoders with just one connector, no cloning and only
5ab432ef
DV
4875 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
4876 * state of the entire output pipe. */
9237329d 4877static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
7e7d76c3 4878{
5ab432ef
DV
4879 if (mode == DRM_MODE_DPMS_ON) {
4880 encoder->connectors_active = true;
4881
b2cabb0e 4882 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef
DV
4883 } else {
4884 encoder->connectors_active = false;
4885
b2cabb0e 4886 intel_crtc_update_dpms(encoder->base.crtc);
5ab432ef 4887 }
79e53945
JB
4888}
4889
0a91ca29
DV
4890/* Cross check the actual hw state with our own modeset state tracking (and it's
4891 * internal consistency). */
b980514c 4892static void intel_connector_check_state(struct intel_connector *connector)
79e53945 4893{
0a91ca29
DV
4894 if (connector->get_hw_state(connector)) {
4895 struct intel_encoder *encoder = connector->encoder;
4896 struct drm_crtc *crtc;
4897 bool encoder_enabled;
4898 enum pipe pipe;
4899
4900 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4901 connector->base.base.id,
4902 drm_get_connector_name(&connector->base));
4903
4904 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
4905 "wrong connector dpms state\n");
4906 WARN(connector->base.encoder != &encoder->base,
4907 "active connector not linked to encoder\n");
4908 WARN(!encoder->connectors_active,
4909 "encoder->connectors_active not set\n");
4910
4911 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
4912 WARN(!encoder_enabled, "encoder not enabled\n");
4913 if (WARN_ON(!encoder->base.crtc))
4914 return;
4915
4916 crtc = encoder->base.crtc;
4917
4918 WARN(!crtc->enabled, "crtc not enabled\n");
4919 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
4920 WARN(pipe != to_intel_crtc(crtc)->pipe,
4921 "encoder active on the wrong pipe\n");
4922 }
79e53945
JB
4923}
4924
5ab432ef
DV
4925/* Even simpler default implementation, if there's really no special case to
4926 * consider. */
4927void intel_connector_dpms(struct drm_connector *connector, int mode)
79e53945 4928{
5ab432ef
DV
4929 /* All the simple cases only support two dpms states. */
4930 if (mode != DRM_MODE_DPMS_ON)
4931 mode = DRM_MODE_DPMS_OFF;
d4270e57 4932
5ab432ef
DV
4933 if (mode == connector->dpms)
4934 return;
4935
4936 connector->dpms = mode;
4937
4938 /* Only need to change hw state when actually enabled */
c9976dcf
CW
4939 if (connector->encoder)
4940 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
0a91ca29 4941
b980514c 4942 intel_modeset_check_state(connector->dev);
79e53945
JB
4943}
4944
f0947c37
DV
4945/* Simple connector->get_hw_state implementation for encoders that support only
4946 * one connector and no cloning and hence the encoder state determines the state
4947 * of the connector. */
4948bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 4949{
24929352 4950 enum pipe pipe = 0;
f0947c37 4951 struct intel_encoder *encoder = connector->encoder;
ea5b213a 4952
f0947c37 4953 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
4954}
4955
1857e1da
DV
4956static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
4957 struct intel_crtc_config *pipe_config)
4958{
4959 struct drm_i915_private *dev_priv = dev->dev_private;
4960 struct intel_crtc *pipe_B_crtc =
4961 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
4962
4963 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
4964 pipe_name(pipe), pipe_config->fdi_lanes);
4965 if (pipe_config->fdi_lanes > 4) {
4966 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
4967 pipe_name(pipe), pipe_config->fdi_lanes);
4968 return false;
4969 }
4970
bafb6553 4971 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
1857e1da
DV
4972 if (pipe_config->fdi_lanes > 2) {
4973 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
4974 pipe_config->fdi_lanes);
4975 return false;
4976 } else {
4977 return true;
4978 }
4979 }
4980
4981 if (INTEL_INFO(dev)->num_pipes == 2)
4982 return true;
4983
4984 /* Ivybridge 3 pipe is really complicated */
4985 switch (pipe) {
4986 case PIPE_A:
4987 return true;
4988 case PIPE_B:
4989 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
4990 pipe_config->fdi_lanes > 2) {
4991 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4992 pipe_name(pipe), pipe_config->fdi_lanes);
4993 return false;
4994 }
4995 return true;
4996 case PIPE_C:
1e833f40 4997 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
1857e1da
DV
4998 pipe_B_crtc->config.fdi_lanes <= 2) {
4999 if (pipe_config->fdi_lanes > 2) {
5000 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5001 pipe_name(pipe), pipe_config->fdi_lanes);
5002 return false;
5003 }
5004 } else {
5005 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5006 return false;
5007 }
5008 return true;
5009 default:
5010 BUG();
5011 }
5012}
5013
e29c22c0
DV
5014#define RETRY 1
5015static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5016 struct intel_crtc_config *pipe_config)
877d48d5 5017{
1857e1da 5018 struct drm_device *dev = intel_crtc->base.dev;
877d48d5 5019 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
ff9a6750 5020 int lane, link_bw, fdi_dotclock;
e29c22c0 5021 bool setup_ok, needs_recompute = false;
877d48d5 5022
e29c22c0 5023retry:
877d48d5
DV
5024 /* FDI is a binary signal running at ~2.7GHz, encoding
5025 * each output octet as 10 bits. The actual frequency
5026 * is stored as a divider into a 100MHz clock, and the
5027 * mode pixel clock is stored in units of 1KHz.
5028 * Hence the bw of each lane in terms of the mode signal
5029 * is:
5030 */
5031 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5032
241bfc38 5033 fdi_dotclock = adjusted_mode->crtc_clock;
877d48d5 5034
2bd89a07 5035 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
5036 pipe_config->pipe_bpp);
5037
5038 pipe_config->fdi_lanes = lane;
5039
2bd89a07 5040 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 5041 link_bw, &pipe_config->fdi_m_n);
1857e1da 5042
e29c22c0
DV
5043 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5044 intel_crtc->pipe, pipe_config);
5045 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5046 pipe_config->pipe_bpp -= 2*3;
5047 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5048 pipe_config->pipe_bpp);
5049 needs_recompute = true;
5050 pipe_config->bw_constrained = true;
5051
5052 goto retry;
5053 }
5054
5055 if (needs_recompute)
5056 return RETRY;
5057
5058 return setup_ok ? 0 : -EINVAL;
877d48d5
DV
5059}
5060
42db64ef
PZ
5061static void hsw_compute_ips_config(struct intel_crtc *crtc,
5062 struct intel_crtc_config *pipe_config)
5063{
d330a953 5064 pipe_config->ips_enabled = i915.enable_ips &&
3c4ca58c 5065 hsw_crtc_supports_ips(crtc) &&
b6dfdc9b 5066 pipe_config->pipe_bpp <= 24;
42db64ef
PZ
5067}
5068
a43f6e0f 5069static int intel_crtc_compute_config(struct intel_crtc *crtc,
e29c22c0 5070 struct intel_crtc_config *pipe_config)
79e53945 5071{
a43f6e0f 5072 struct drm_device *dev = crtc->base.dev;
b8cecdf5 5073 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
89749350 5074
ad3a4479 5075 /* FIXME should check pixel clock limits on all platforms */
cf532bb2
VS
5076 if (INTEL_INFO(dev)->gen < 4) {
5077 struct drm_i915_private *dev_priv = dev->dev_private;
5078 int clock_limit =
5079 dev_priv->display.get_display_clock_speed(dev);
5080
5081 /*
5082 * Enable pixel doubling when the dot clock
5083 * is > 90% of the (display) core speed.
5084 *
b397c96b
VS
5085 * GDG double wide on either pipe,
5086 * otherwise pipe A only.
cf532bb2 5087 */
b397c96b 5088 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
241bfc38 5089 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
ad3a4479 5090 clock_limit *= 2;
cf532bb2 5091 pipe_config->double_wide = true;
ad3a4479
VS
5092 }
5093
241bfc38 5094 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
e29c22c0 5095 return -EINVAL;
2c07245f 5096 }
89749350 5097
1d1d0e27
VS
5098 /*
5099 * Pipe horizontal size must be even in:
5100 * - DVO ganged mode
5101 * - LVDS dual channel mode
5102 * - Double wide pipe
5103 */
5104 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
5105 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5106 pipe_config->pipe_src_w &= ~1;
5107
8693a824
DL
5108 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5109 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42
CW
5110 */
5111 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5112 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
e29c22c0 5113 return -EINVAL;
44f46b42 5114
bd080ee5 5115 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
5d2d38dd 5116 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
bd080ee5 5117 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
5d2d38dd
DV
5118 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5119 * for lvds. */
5120 pipe_config->pipe_bpp = 8*3;
5121 }
5122
f5adf94e 5123 if (HAS_IPS(dev))
a43f6e0f
DV
5124 hsw_compute_ips_config(crtc, pipe_config);
5125
5126 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
5127 * clock survives for now. */
5128 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5129 pipe_config->shared_dpll = crtc->config.shared_dpll;
42db64ef 5130
877d48d5 5131 if (pipe_config->has_pch_encoder)
a43f6e0f 5132 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 5133
e29c22c0 5134 return 0;
79e53945
JB
5135}
5136
25eb05fc
JB
5137static int valleyview_get_display_clock_speed(struct drm_device *dev)
5138{
5139 return 400000; /* FIXME */
5140}
5141
e70236a8
JB
5142static int i945_get_display_clock_speed(struct drm_device *dev)
5143{
5144 return 400000;
5145}
79e53945 5146
e70236a8 5147static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 5148{
e70236a8
JB
5149 return 333000;
5150}
79e53945 5151
e70236a8
JB
5152static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5153{
5154 return 200000;
5155}
79e53945 5156
257a7ffc
DV
5157static int pnv_get_display_clock_speed(struct drm_device *dev)
5158{
5159 u16 gcfgc = 0;
5160
5161 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5162
5163 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5164 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5165 return 267000;
5166 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5167 return 333000;
5168 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5169 return 444000;
5170 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5171 return 200000;
5172 default:
5173 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5174 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5175 return 133000;
5176 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5177 return 167000;
5178 }
5179}
5180
e70236a8
JB
5181static int i915gm_get_display_clock_speed(struct drm_device *dev)
5182{
5183 u16 gcfgc = 0;
79e53945 5184
e70236a8
JB
5185 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5186
5187 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
5188 return 133000;
5189 else {
5190 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5191 case GC_DISPLAY_CLOCK_333_MHZ:
5192 return 333000;
5193 default:
5194 case GC_DISPLAY_CLOCK_190_200_MHZ:
5195 return 190000;
79e53945 5196 }
e70236a8
JB
5197 }
5198}
5199
5200static int i865_get_display_clock_speed(struct drm_device *dev)
5201{
5202 return 266000;
5203}
5204
5205static int i855_get_display_clock_speed(struct drm_device *dev)
5206{
5207 u16 hpllcc = 0;
5208 /* Assume that the hardware is in the high speed state. This
5209 * should be the default.
5210 */
5211 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5212 case GC_CLOCK_133_200:
5213 case GC_CLOCK_100_200:
5214 return 200000;
5215 case GC_CLOCK_166_250:
5216 return 250000;
5217 case GC_CLOCK_100_133:
79e53945 5218 return 133000;
e70236a8 5219 }
79e53945 5220
e70236a8
JB
5221 /* Shouldn't happen */
5222 return 0;
5223}
79e53945 5224
e70236a8
JB
5225static int i830_get_display_clock_speed(struct drm_device *dev)
5226{
5227 return 133000;
79e53945
JB
5228}
5229
2c07245f 5230static void
a65851af 5231intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 5232{
a65851af
VS
5233 while (*num > DATA_LINK_M_N_MASK ||
5234 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
5235 *num >>= 1;
5236 *den >>= 1;
5237 }
5238}
5239
a65851af
VS
5240static void compute_m_n(unsigned int m, unsigned int n,
5241 uint32_t *ret_m, uint32_t *ret_n)
5242{
5243 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5244 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5245 intel_reduce_m_n_ratio(ret_m, ret_n);
5246}
5247
e69d0bc1
DV
5248void
5249intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5250 int pixel_clock, int link_clock,
5251 struct intel_link_m_n *m_n)
2c07245f 5252{
e69d0bc1 5253 m_n->tu = 64;
a65851af
VS
5254
5255 compute_m_n(bits_per_pixel * pixel_clock,
5256 link_clock * nlanes * 8,
5257 &m_n->gmch_m, &m_n->gmch_n);
5258
5259 compute_m_n(pixel_clock, link_clock,
5260 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
5261}
5262
a7615030
CW
5263static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5264{
d330a953
JN
5265 if (i915.panel_use_ssc >= 0)
5266 return i915.panel_use_ssc != 0;
41aa3448 5267 return dev_priv->vbt.lvds_use_ssc
435793df 5268 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
5269}
5270
c65d77d8
JB
5271static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
5272{
5273 struct drm_device *dev = crtc->dev;
5274 struct drm_i915_private *dev_priv = dev->dev_private;
5275 int refclk;
5276
a0c4da24 5277 if (IS_VALLEYVIEW(dev)) {
9a0ea498 5278 refclk = 100000;
a0c4da24 5279 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
c65d77d8 5280 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b
VS
5281 refclk = dev_priv->vbt.lvds_ssc_freq;
5282 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
c65d77d8
JB
5283 } else if (!IS_GEN2(dev)) {
5284 refclk = 96000;
5285 } else {
5286 refclk = 48000;
5287 }
5288
5289 return refclk;
5290}
5291
7429e9d4 5292static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
c65d77d8 5293{
7df00d7a 5294 return (1 << dpll->n) << 16 | dpll->m2;
7429e9d4 5295}
f47709a9 5296
7429e9d4
DV
5297static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5298{
5299 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
c65d77d8
JB
5300}
5301
f47709a9 5302static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
a7516a05
JB
5303 intel_clock_t *reduced_clock)
5304{
f47709a9 5305 struct drm_device *dev = crtc->base.dev;
a7516a05
JB
5306 u32 fp, fp2 = 0;
5307
5308 if (IS_PINEVIEW(dev)) {
7429e9d4 5309 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
a7516a05 5310 if (reduced_clock)
7429e9d4 5311 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 5312 } else {
7429e9d4 5313 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
a7516a05 5314 if (reduced_clock)
7429e9d4 5315 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
5316 }
5317
8bcc2795 5318 crtc->config.dpll_hw_state.fp0 = fp;
a7516a05 5319
f47709a9
DV
5320 crtc->lowfreq_avail = false;
5321 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
d330a953 5322 reduced_clock && i915.powersave) {
8bcc2795 5323 crtc->config.dpll_hw_state.fp1 = fp2;
f47709a9 5324 crtc->lowfreq_avail = true;
a7516a05 5325 } else {
8bcc2795 5326 crtc->config.dpll_hw_state.fp1 = fp;
a7516a05
JB
5327 }
5328}
5329
5e69f97f
CML
5330static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5331 pipe)
89b667f8
JB
5332{
5333 u32 reg_val;
5334
5335 /*
5336 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5337 * and set it to a reasonable value instead.
5338 */
ab3c759a 5339 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8
JB
5340 reg_val &= 0xffffff00;
5341 reg_val |= 0x00000030;
ab3c759a 5342 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 5343
ab3c759a 5344 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
5345 reg_val &= 0x8cffffff;
5346 reg_val = 0x8c000000;
ab3c759a 5347 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8 5348
ab3c759a 5349 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8 5350 reg_val &= 0xffffff00;
ab3c759a 5351 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 5352
ab3c759a 5353 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
5354 reg_val &= 0x00ffffff;
5355 reg_val |= 0xb0000000;
ab3c759a 5356 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8
JB
5357}
5358
b551842d
DV
5359static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5360 struct intel_link_m_n *m_n)
5361{
5362 struct drm_device *dev = crtc->base.dev;
5363 struct drm_i915_private *dev_priv = dev->dev_private;
5364 int pipe = crtc->pipe;
5365
e3b95f1e
DV
5366 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5367 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5368 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5369 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
5370}
5371
5372static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
5373 struct intel_link_m_n *m_n)
5374{
5375 struct drm_device *dev = crtc->base.dev;
5376 struct drm_i915_private *dev_priv = dev->dev_private;
5377 int pipe = crtc->pipe;
5378 enum transcoder transcoder = crtc->config.cpu_transcoder;
5379
5380 if (INTEL_INFO(dev)->gen >= 5) {
5381 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5382 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5383 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5384 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
5385 } else {
e3b95f1e
DV
5386 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5387 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5388 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5389 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
5390 }
5391}
5392
03afc4a2
DV
5393static void intel_dp_set_m_n(struct intel_crtc *crtc)
5394{
5395 if (crtc->config.has_pch_encoder)
5396 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5397 else
5398 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5399}
5400
f47709a9 5401static void vlv_update_pll(struct intel_crtc *crtc)
bdd4b6a6
DV
5402{
5403 u32 dpll, dpll_md;
5404
5405 /*
5406 * Enable DPIO clock input. We should never disable the reference
5407 * clock for pipe B, since VGA hotplug / manual detection depends
5408 * on it.
5409 */
5410 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5411 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5412 /* We should never disable this, set it here for state tracking */
5413 if (crtc->pipe == PIPE_B)
5414 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5415 dpll |= DPLL_VCO_ENABLE;
5416 crtc->config.dpll_hw_state.dpll = dpll;
5417
5418 dpll_md = (crtc->config.pixel_multiplier - 1)
5419 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
5420 crtc->config.dpll_hw_state.dpll_md = dpll_md;
5421}
5422
5423static void vlv_prepare_pll(struct intel_crtc *crtc)
a0c4da24 5424{
f47709a9 5425 struct drm_device *dev = crtc->base.dev;
a0c4da24 5426 struct drm_i915_private *dev_priv = dev->dev_private;
f47709a9 5427 int pipe = crtc->pipe;
bdd4b6a6 5428 u32 mdiv;
a0c4da24 5429 u32 bestn, bestm1, bestm2, bestp1, bestp2;
bdd4b6a6 5430 u32 coreclk, reg_val;
a0c4da24 5431
09153000
DV
5432 mutex_lock(&dev_priv->dpio_lock);
5433
f47709a9
DV
5434 bestn = crtc->config.dpll.n;
5435 bestm1 = crtc->config.dpll.m1;
5436 bestm2 = crtc->config.dpll.m2;
5437 bestp1 = crtc->config.dpll.p1;
5438 bestp2 = crtc->config.dpll.p2;
a0c4da24 5439
89b667f8
JB
5440 /* See eDP HDMI DPIO driver vbios notes doc */
5441
5442 /* PLL B needs special handling */
bdd4b6a6 5443 if (pipe == PIPE_B)
5e69f97f 5444 vlv_pllb_recal_opamp(dev_priv, pipe);
89b667f8
JB
5445
5446 /* Set up Tx target for periodic Rcomp update */
ab3c759a 5447 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
89b667f8
JB
5448
5449 /* Disable target IRef on PLL */
ab3c759a 5450 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
89b667f8 5451 reg_val &= 0x00ffffff;
ab3c759a 5452 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
89b667f8
JB
5453
5454 /* Disable fast lock */
ab3c759a 5455 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
89b667f8
JB
5456
5457 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
5458 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5459 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5460 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 5461 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
5462
5463 /*
5464 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5465 * but we don't support that).
5466 * Note: don't use the DAC post divider as it seems unstable.
5467 */
5468 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ab3c759a 5469 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 5470
a0c4da24 5471 mdiv |= DPIO_ENABLE_CALIBRATION;
ab3c759a 5472 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 5473
89b667f8 5474 /* Set HBR and RBR LPF coefficients */
ff9a6750 5475 if (crtc->config.port_clock == 162000 ||
99750bd4 5476 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
89b667f8 5477 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
ab3c759a 5478 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
885b0120 5479 0x009f0003);
89b667f8 5480 else
ab3c759a 5481 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
89b667f8
JB
5482 0x00d0000f);
5483
5484 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
5485 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
5486 /* Use SSC source */
bdd4b6a6 5487 if (pipe == PIPE_A)
ab3c759a 5488 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5489 0x0df40000);
5490 else
ab3c759a 5491 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5492 0x0df70000);
5493 } else { /* HDMI or VGA */
5494 /* Use bend source */
bdd4b6a6 5495 if (pipe == PIPE_A)
ab3c759a 5496 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5497 0x0df70000);
5498 else
ab3c759a 5499 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
5500 0x0df40000);
5501 }
a0c4da24 5502
ab3c759a 5503 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
89b667f8
JB
5504 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
5505 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
5506 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
5507 coreclk |= 0x01000000;
ab3c759a 5508 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
a0c4da24 5509
ab3c759a 5510 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
09153000 5511 mutex_unlock(&dev_priv->dpio_lock);
a0c4da24
JB
5512}
5513
9d556c99
CML
5514static void chv_update_pll(struct intel_crtc *crtc)
5515{
5516 struct drm_device *dev = crtc->base.dev;
5517 struct drm_i915_private *dev_priv = dev->dev_private;
5518 int pipe = crtc->pipe;
5519 int dpll_reg = DPLL(crtc->pipe);
5520 enum dpio_channel port = vlv_pipe_to_channel(pipe);
580d3811 5521 u32 loopfilter, intcoeff;
9d556c99
CML
5522 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
5523 int refclk;
5524
a11b0703
VS
5525 crtc->config.dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
5526 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
5527 DPLL_VCO_ENABLE;
5528 if (pipe != PIPE_A)
5529 crtc->config.dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5530
5531 crtc->config.dpll_hw_state.dpll_md =
5532 (crtc->config.pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
9d556c99
CML
5533
5534 bestn = crtc->config.dpll.n;
5535 bestm2_frac = crtc->config.dpll.m2 & 0x3fffff;
5536 bestm1 = crtc->config.dpll.m1;
5537 bestm2 = crtc->config.dpll.m2 >> 22;
5538 bestp1 = crtc->config.dpll.p1;
5539 bestp2 = crtc->config.dpll.p2;
5540
5541 /*
5542 * Enable Refclk and SSC
5543 */
a11b0703
VS
5544 I915_WRITE(dpll_reg,
5545 crtc->config.dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
5546
5547 mutex_lock(&dev_priv->dpio_lock);
9d556c99 5548
9d556c99
CML
5549 /* p1 and p2 divider */
5550 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
5551 5 << DPIO_CHV_S1_DIV_SHIFT |
5552 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
5553 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
5554 1 << DPIO_CHV_K_DIV_SHIFT);
5555
5556 /* Feedback post-divider - m2 */
5557 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
5558
5559 /* Feedback refclk divider - n and m1 */
5560 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
5561 DPIO_CHV_M1_DIV_BY_2 |
5562 1 << DPIO_CHV_N_DIV_SHIFT);
5563
5564 /* M2 fraction division */
5565 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
5566
5567 /* M2 fraction division enable */
5568 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
5569 DPIO_CHV_FRAC_DIV_EN |
5570 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
5571
5572 /* Loop filter */
5573 refclk = i9xx_get_refclk(&crtc->base, 0);
5574 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
5575 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
5576 if (refclk == 100000)
5577 intcoeff = 11;
5578 else if (refclk == 38400)
5579 intcoeff = 10;
5580 else
5581 intcoeff = 9;
5582 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
5583 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
5584
5585 /* AFC Recal */
5586 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
5587 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
5588 DPIO_AFC_RECAL);
5589
5590 mutex_unlock(&dev_priv->dpio_lock);
5591}
5592
f47709a9
DV
5593static void i9xx_update_pll(struct intel_crtc *crtc,
5594 intel_clock_t *reduced_clock,
eb1cbe48
DV
5595 int num_connectors)
5596{
f47709a9 5597 struct drm_device *dev = crtc->base.dev;
eb1cbe48 5598 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48
DV
5599 u32 dpll;
5600 bool is_sdvo;
f47709a9 5601 struct dpll *clock = &crtc->config.dpll;
eb1cbe48 5602
f47709a9 5603 i9xx_update_pll_dividers(crtc, reduced_clock);
2a8f64ca 5604
f47709a9
DV
5605 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
5606 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
eb1cbe48
DV
5607
5608 dpll = DPLL_VGA_MODE_DIS;
5609
f47709a9 5610 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
5611 dpll |= DPLLB_MODE_LVDS;
5612 else
5613 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 5614
ef1b460d 5615 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
198a037f
DV
5616 dpll |= (crtc->config.pixel_multiplier - 1)
5617 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 5618 }
198a037f
DV
5619
5620 if (is_sdvo)
4a33e48d 5621 dpll |= DPLL_SDVO_HIGH_SPEED;
198a037f 5622
f47709a9 5623 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
4a33e48d 5624 dpll |= DPLL_SDVO_HIGH_SPEED;
eb1cbe48
DV
5625
5626 /* compute bitmask from p1 value */
5627 if (IS_PINEVIEW(dev))
5628 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
5629 else {
5630 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5631 if (IS_G4X(dev) && reduced_clock)
5632 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5633 }
5634 switch (clock->p2) {
5635 case 5:
5636 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5637 break;
5638 case 7:
5639 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5640 break;
5641 case 10:
5642 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5643 break;
5644 case 14:
5645 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5646 break;
5647 }
5648 if (INTEL_INFO(dev)->gen >= 4)
5649 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
5650
09ede541 5651 if (crtc->config.sdvo_tv_clock)
eb1cbe48 5652 dpll |= PLL_REF_INPUT_TVCLKINBC;
f47709a9 5653 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
5654 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5655 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5656 else
5657 dpll |= PLL_REF_INPUT_DREFCLK;
5658
5659 dpll |= DPLL_VCO_ENABLE;
8bcc2795
DV
5660 crtc->config.dpll_hw_state.dpll = dpll;
5661
eb1cbe48 5662 if (INTEL_INFO(dev)->gen >= 4) {
ef1b460d
DV
5663 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
5664 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
8bcc2795 5665 crtc->config.dpll_hw_state.dpll_md = dpll_md;
eb1cbe48
DV
5666 }
5667}
5668
f47709a9 5669static void i8xx_update_pll(struct intel_crtc *crtc,
f47709a9 5670 intel_clock_t *reduced_clock,
eb1cbe48
DV
5671 int num_connectors)
5672{
f47709a9 5673 struct drm_device *dev = crtc->base.dev;
eb1cbe48 5674 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48 5675 u32 dpll;
f47709a9 5676 struct dpll *clock = &crtc->config.dpll;
eb1cbe48 5677
f47709a9 5678 i9xx_update_pll_dividers(crtc, reduced_clock);
2a8f64ca 5679
eb1cbe48
DV
5680 dpll = DPLL_VGA_MODE_DIS;
5681
f47709a9 5682 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
5683 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5684 } else {
5685 if (clock->p1 == 2)
5686 dpll |= PLL_P1_DIVIDE_BY_TWO;
5687 else
5688 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5689 if (clock->p2 == 4)
5690 dpll |= PLL_P2_DIVIDE_BY_4;
5691 }
5692
4a33e48d
DV
5693 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
5694 dpll |= DPLL_DVO_2X_MODE;
5695
f47709a9 5696 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
5697 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5698 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5699 else
5700 dpll |= PLL_REF_INPUT_DREFCLK;
5701
5702 dpll |= DPLL_VCO_ENABLE;
8bcc2795 5703 crtc->config.dpll_hw_state.dpll = dpll;
eb1cbe48
DV
5704}
5705
8a654f3b 5706static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c
PZ
5707{
5708 struct drm_device *dev = intel_crtc->base.dev;
5709 struct drm_i915_private *dev_priv = dev->dev_private;
5710 enum pipe pipe = intel_crtc->pipe;
3b117c8f 5711 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
8a654f3b
DV
5712 struct drm_display_mode *adjusted_mode =
5713 &intel_crtc->config.adjusted_mode;
1caea6e9
VS
5714 uint32_t crtc_vtotal, crtc_vblank_end;
5715 int vsyncshift = 0;
4d8a62ea
DV
5716
5717 /* We need to be careful not to changed the adjusted mode, for otherwise
5718 * the hw state checker will get angry at the mismatch. */
5719 crtc_vtotal = adjusted_mode->crtc_vtotal;
5720 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c 5721
609aeaca 5722 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
b0e77b9c 5723 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
5724 crtc_vtotal -= 1;
5725 crtc_vblank_end -= 1;
609aeaca
VS
5726
5727 if (intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5728 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
5729 else
5730 vsyncshift = adjusted_mode->crtc_hsync_start -
5731 adjusted_mode->crtc_htotal / 2;
1caea6e9
VS
5732 if (vsyncshift < 0)
5733 vsyncshift += adjusted_mode->crtc_htotal;
b0e77b9c
PZ
5734 }
5735
5736 if (INTEL_INFO(dev)->gen > 3)
fe2b8f9d 5737 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 5738
fe2b8f9d 5739 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
5740 (adjusted_mode->crtc_hdisplay - 1) |
5741 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 5742 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
5743 (adjusted_mode->crtc_hblank_start - 1) |
5744 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 5745 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
5746 (adjusted_mode->crtc_hsync_start - 1) |
5747 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5748
fe2b8f9d 5749 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 5750 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 5751 ((crtc_vtotal - 1) << 16));
fe2b8f9d 5752 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 5753 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 5754 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 5755 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
5756 (adjusted_mode->crtc_vsync_start - 1) |
5757 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5758
b5e508d4
PZ
5759 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
5760 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
5761 * documented on the DDI_FUNC_CTL register description, EDP Input Select
5762 * bits. */
5763 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
5764 (pipe == PIPE_B || pipe == PIPE_C))
5765 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
5766
b0e77b9c
PZ
5767 /* pipesrc controls the size that is scaled from, which should
5768 * always be the user's requested size.
5769 */
5770 I915_WRITE(PIPESRC(pipe),
37327abd
VS
5771 ((intel_crtc->config.pipe_src_w - 1) << 16) |
5772 (intel_crtc->config.pipe_src_h - 1));
b0e77b9c
PZ
5773}
5774
1bd1bd80
DV
5775static void intel_get_pipe_timings(struct intel_crtc *crtc,
5776 struct intel_crtc_config *pipe_config)
5777{
5778 struct drm_device *dev = crtc->base.dev;
5779 struct drm_i915_private *dev_priv = dev->dev_private;
5780 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
5781 uint32_t tmp;
5782
5783 tmp = I915_READ(HTOTAL(cpu_transcoder));
5784 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
5785 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
5786 tmp = I915_READ(HBLANK(cpu_transcoder));
5787 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
5788 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
5789 tmp = I915_READ(HSYNC(cpu_transcoder));
5790 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
5791 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
5792
5793 tmp = I915_READ(VTOTAL(cpu_transcoder));
5794 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
5795 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
5796 tmp = I915_READ(VBLANK(cpu_transcoder));
5797 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
5798 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
5799 tmp = I915_READ(VSYNC(cpu_transcoder));
5800 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
5801 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
5802
5803 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
5804 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
5805 pipe_config->adjusted_mode.crtc_vtotal += 1;
5806 pipe_config->adjusted_mode.crtc_vblank_end += 1;
5807 }
5808
5809 tmp = I915_READ(PIPESRC(crtc->pipe));
37327abd
VS
5810 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
5811 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
5812
5813 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
5814 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
1bd1bd80
DV
5815}
5816
f6a83288
DV
5817void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5818 struct intel_crtc_config *pipe_config)
babea61d 5819{
f6a83288
DV
5820 mode->hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
5821 mode->htotal = pipe_config->adjusted_mode.crtc_htotal;
5822 mode->hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
5823 mode->hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
babea61d 5824
f6a83288
DV
5825 mode->vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
5826 mode->vtotal = pipe_config->adjusted_mode.crtc_vtotal;
5827 mode->vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
5828 mode->vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
babea61d 5829
f6a83288 5830 mode->flags = pipe_config->adjusted_mode.flags;
babea61d 5831
f6a83288
DV
5832 mode->clock = pipe_config->adjusted_mode.crtc_clock;
5833 mode->flags |= pipe_config->adjusted_mode.flags;
babea61d
JB
5834}
5835
84b046f3
DV
5836static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
5837{
5838 struct drm_device *dev = intel_crtc->base.dev;
5839 struct drm_i915_private *dev_priv = dev->dev_private;
5840 uint32_t pipeconf;
5841
9f11a9e4 5842 pipeconf = 0;
84b046f3 5843
67c72a12
DV
5844 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
5845 I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE)
5846 pipeconf |= PIPECONF_ENABLE;
5847
cf532bb2
VS
5848 if (intel_crtc->config.double_wide)
5849 pipeconf |= PIPECONF_DOUBLE_WIDE;
84b046f3 5850
ff9ce46e
DV
5851 /* only g4x and later have fancy bpc/dither controls */
5852 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
ff9ce46e
DV
5853 /* Bspec claims that we can't use dithering for 30bpp pipes. */
5854 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
5855 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 5856 PIPECONF_DITHER_TYPE_SP;
84b046f3 5857
ff9ce46e
DV
5858 switch (intel_crtc->config.pipe_bpp) {
5859 case 18:
5860 pipeconf |= PIPECONF_6BPC;
5861 break;
5862 case 24:
5863 pipeconf |= PIPECONF_8BPC;
5864 break;
5865 case 30:
5866 pipeconf |= PIPECONF_10BPC;
5867 break;
5868 default:
5869 /* Case prevented by intel_choose_pipe_bpp_dither. */
5870 BUG();
84b046f3
DV
5871 }
5872 }
5873
5874 if (HAS_PIPE_CXSR(dev)) {
5875 if (intel_crtc->lowfreq_avail) {
5876 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
5877 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
5878 } else {
5879 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
84b046f3
DV
5880 }
5881 }
5882
efc2cfff
VS
5883 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
5884 if (INTEL_INFO(dev)->gen < 4 ||
5885 intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5886 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
5887 else
5888 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
5889 } else
84b046f3
DV
5890 pipeconf |= PIPECONF_PROGRESSIVE;
5891
9f11a9e4
DV
5892 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
5893 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
9c8e09b7 5894
84b046f3
DV
5895 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
5896 POSTING_READ(PIPECONF(intel_crtc->pipe));
5897}
5898
f564048e 5899static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
f564048e 5900 int x, int y,
94352cf9 5901 struct drm_framebuffer *fb)
79e53945
JB
5902{
5903 struct drm_device *dev = crtc->dev;
5904 struct drm_i915_private *dev_priv = dev->dev_private;
5905 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
c751ce4f 5906 int refclk, num_connectors = 0;
652c393a 5907 intel_clock_t clock, reduced_clock;
a16af721 5908 bool ok, has_reduced_clock = false;
e9fd1c02 5909 bool is_lvds = false, is_dsi = false;
5eddb70b 5910 struct intel_encoder *encoder;
d4906093 5911 const intel_limit_t *limit;
79e53945 5912
6c2b7c12 5913 for_each_encoder_on_crtc(dev, crtc, encoder) {
5eddb70b 5914 switch (encoder->type) {
79e53945
JB
5915 case INTEL_OUTPUT_LVDS:
5916 is_lvds = true;
5917 break;
e9fd1c02
JN
5918 case INTEL_OUTPUT_DSI:
5919 is_dsi = true;
5920 break;
79e53945 5921 }
43565a06 5922
c751ce4f 5923 num_connectors++;
79e53945
JB
5924 }
5925
f2335330 5926 if (is_dsi)
5b18e57c 5927 return 0;
f2335330
JN
5928
5929 if (!intel_crtc->config.clock_set) {
5930 refclk = i9xx_get_refclk(crtc, num_connectors);
79e53945 5931
e9fd1c02
JN
5932 /*
5933 * Returns a set of divisors for the desired target clock with
5934 * the given refclk, or FALSE. The returned values represent
5935 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
5936 * 2) / p1 / p2.
5937 */
5938 limit = intel_limit(crtc, refclk);
5939 ok = dev_priv->display.find_dpll(limit, crtc,
5940 intel_crtc->config.port_clock,
5941 refclk, NULL, &clock);
f2335330 5942 if (!ok) {
e9fd1c02
JN
5943 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5944 return -EINVAL;
5945 }
79e53945 5946
f2335330
JN
5947 if (is_lvds && dev_priv->lvds_downclock_avail) {
5948 /*
5949 * Ensure we match the reduced clock's P to the target
5950 * clock. If the clocks don't match, we can't switch
5951 * the display clock by using the FP0/FP1. In such case
5952 * we will disable the LVDS downclock feature.
5953 */
5954 has_reduced_clock =
5955 dev_priv->display.find_dpll(limit, crtc,
5956 dev_priv->lvds_downclock,
5957 refclk, &clock,
5958 &reduced_clock);
5959 }
5960 /* Compat-code for transition, will disappear. */
f47709a9
DV
5961 intel_crtc->config.dpll.n = clock.n;
5962 intel_crtc->config.dpll.m1 = clock.m1;
5963 intel_crtc->config.dpll.m2 = clock.m2;
5964 intel_crtc->config.dpll.p1 = clock.p1;
5965 intel_crtc->config.dpll.p2 = clock.p2;
5966 }
7026d4ac 5967
e9fd1c02 5968 if (IS_GEN2(dev)) {
8a654f3b 5969 i8xx_update_pll(intel_crtc,
2a8f64ca
VP
5970 has_reduced_clock ? &reduced_clock : NULL,
5971 num_connectors);
9d556c99
CML
5972 } else if (IS_CHERRYVIEW(dev)) {
5973 chv_update_pll(intel_crtc);
e9fd1c02 5974 } else if (IS_VALLEYVIEW(dev)) {
f2335330 5975 vlv_update_pll(intel_crtc);
e9fd1c02 5976 } else {
f47709a9 5977 i9xx_update_pll(intel_crtc,
eb1cbe48 5978 has_reduced_clock ? &reduced_clock : NULL,
eba905b2 5979 num_connectors);
e9fd1c02 5980 }
79e53945 5981
c8f7a0db 5982 return 0;
f564048e
EA
5983}
5984
2fa2fe9a
DV
5985static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5986 struct intel_crtc_config *pipe_config)
5987{
5988 struct drm_device *dev = crtc->base.dev;
5989 struct drm_i915_private *dev_priv = dev->dev_private;
5990 uint32_t tmp;
5991
dc9e7dec
VS
5992 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
5993 return;
5994
2fa2fe9a 5995 tmp = I915_READ(PFIT_CONTROL);
06922821
DV
5996 if (!(tmp & PFIT_ENABLE))
5997 return;
2fa2fe9a 5998
06922821 5999 /* Check whether the pfit is attached to our pipe. */
2fa2fe9a
DV
6000 if (INTEL_INFO(dev)->gen < 4) {
6001 if (crtc->pipe != PIPE_B)
6002 return;
2fa2fe9a
DV
6003 } else {
6004 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6005 return;
6006 }
6007
06922821 6008 pipe_config->gmch_pfit.control = tmp;
2fa2fe9a
DV
6009 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6010 if (INTEL_INFO(dev)->gen < 5)
6011 pipe_config->gmch_pfit.lvds_border_bits =
6012 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6013}
6014
acbec814
JB
6015static void vlv_crtc_clock_get(struct intel_crtc *crtc,
6016 struct intel_crtc_config *pipe_config)
6017{
6018 struct drm_device *dev = crtc->base.dev;
6019 struct drm_i915_private *dev_priv = dev->dev_private;
6020 int pipe = pipe_config->cpu_transcoder;
6021 intel_clock_t clock;
6022 u32 mdiv;
662c6ecb 6023 int refclk = 100000;
acbec814
JB
6024
6025 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 6026 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
acbec814
JB
6027 mutex_unlock(&dev_priv->dpio_lock);
6028
6029 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6030 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6031 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6032 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6033 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6034
f646628b 6035 vlv_clock(refclk, &clock);
acbec814 6036
f646628b
VS
6037 /* clock.dot is the fast clock */
6038 pipe_config->port_clock = clock.dot / 5;
acbec814
JB
6039}
6040
1ad292b5
JB
6041static void i9xx_get_plane_config(struct intel_crtc *crtc,
6042 struct intel_plane_config *plane_config)
6043{
6044 struct drm_device *dev = crtc->base.dev;
6045 struct drm_i915_private *dev_priv = dev->dev_private;
6046 u32 val, base, offset;
6047 int pipe = crtc->pipe, plane = crtc->plane;
6048 int fourcc, pixel_format;
6049 int aligned_height;
6050
66e514c1
DA
6051 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
6052 if (!crtc->base.primary->fb) {
1ad292b5
JB
6053 DRM_DEBUG_KMS("failed to alloc fb\n");
6054 return;
6055 }
6056
6057 val = I915_READ(DSPCNTR(plane));
6058
6059 if (INTEL_INFO(dev)->gen >= 4)
6060 if (val & DISPPLANE_TILED)
6061 plane_config->tiled = true;
6062
6063 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
6064 fourcc = intel_format_to_fourcc(pixel_format);
66e514c1
DA
6065 crtc->base.primary->fb->pixel_format = fourcc;
6066 crtc->base.primary->fb->bits_per_pixel =
1ad292b5
JB
6067 drm_format_plane_cpp(fourcc, 0) * 8;
6068
6069 if (INTEL_INFO(dev)->gen >= 4) {
6070 if (plane_config->tiled)
6071 offset = I915_READ(DSPTILEOFF(plane));
6072 else
6073 offset = I915_READ(DSPLINOFF(plane));
6074 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6075 } else {
6076 base = I915_READ(DSPADDR(plane));
6077 }
6078 plane_config->base = base;
6079
6080 val = I915_READ(PIPESRC(pipe));
66e514c1
DA
6081 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
6082 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
1ad292b5
JB
6083
6084 val = I915_READ(DSPSTRIDE(pipe));
66e514c1 6085 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
1ad292b5 6086
66e514c1 6087 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
1ad292b5
JB
6088 plane_config->tiled);
6089
66e514c1 6090 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
1ad292b5
JB
6091 aligned_height, PAGE_SIZE);
6092
6093 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
66e514c1
DA
6094 pipe, plane, crtc->base.primary->fb->width,
6095 crtc->base.primary->fb->height,
6096 crtc->base.primary->fb->bits_per_pixel, base,
6097 crtc->base.primary->fb->pitches[0],
1ad292b5
JB
6098 plane_config->size);
6099
6100}
6101
70b23a98
VS
6102static void chv_crtc_clock_get(struct intel_crtc *crtc,
6103 struct intel_crtc_config *pipe_config)
6104{
6105 struct drm_device *dev = crtc->base.dev;
6106 struct drm_i915_private *dev_priv = dev->dev_private;
6107 int pipe = pipe_config->cpu_transcoder;
6108 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6109 intel_clock_t clock;
6110 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6111 int refclk = 100000;
6112
6113 mutex_lock(&dev_priv->dpio_lock);
6114 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6115 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6116 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6117 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6118 mutex_unlock(&dev_priv->dpio_lock);
6119
6120 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6121 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6122 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6123 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6124 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6125
6126 chv_clock(refclk, &clock);
6127
6128 /* clock.dot is the fast clock */
6129 pipe_config->port_clock = clock.dot / 5;
6130}
6131
0e8ffe1b
DV
6132static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
6133 struct intel_crtc_config *pipe_config)
6134{
6135 struct drm_device *dev = crtc->base.dev;
6136 struct drm_i915_private *dev_priv = dev->dev_private;
6137 uint32_t tmp;
6138
b5482bd0
ID
6139 if (!intel_display_power_enabled(dev_priv,
6140 POWER_DOMAIN_PIPE(crtc->pipe)))
6141 return false;
6142
e143a21c 6143 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 6144 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 6145
0e8ffe1b
DV
6146 tmp = I915_READ(PIPECONF(crtc->pipe));
6147 if (!(tmp & PIPECONF_ENABLE))
6148 return false;
6149
42571aef
VS
6150 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6151 switch (tmp & PIPECONF_BPC_MASK) {
6152 case PIPECONF_6BPC:
6153 pipe_config->pipe_bpp = 18;
6154 break;
6155 case PIPECONF_8BPC:
6156 pipe_config->pipe_bpp = 24;
6157 break;
6158 case PIPECONF_10BPC:
6159 pipe_config->pipe_bpp = 30;
6160 break;
6161 default:
6162 break;
6163 }
6164 }
6165
b5a9fa09
DV
6166 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6167 pipe_config->limited_color_range = true;
6168
282740f7
VS
6169 if (INTEL_INFO(dev)->gen < 4)
6170 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6171
1bd1bd80
DV
6172 intel_get_pipe_timings(crtc, pipe_config);
6173
2fa2fe9a
DV
6174 i9xx_get_pfit_config(crtc, pipe_config);
6175
6c49f241
DV
6176 if (INTEL_INFO(dev)->gen >= 4) {
6177 tmp = I915_READ(DPLL_MD(crtc->pipe));
6178 pipe_config->pixel_multiplier =
6179 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6180 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8bcc2795 6181 pipe_config->dpll_hw_state.dpll_md = tmp;
6c49f241
DV
6182 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6183 tmp = I915_READ(DPLL(crtc->pipe));
6184 pipe_config->pixel_multiplier =
6185 ((tmp & SDVO_MULTIPLIER_MASK)
6186 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6187 } else {
6188 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6189 * port and will be fixed up in the encoder->get_config
6190 * function. */
6191 pipe_config->pixel_multiplier = 1;
6192 }
8bcc2795
DV
6193 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6194 if (!IS_VALLEYVIEW(dev)) {
6195 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6196 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
165e901c
VS
6197 } else {
6198 /* Mask out read-only status bits. */
6199 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6200 DPLL_PORTC_READY_MASK |
6201 DPLL_PORTB_READY_MASK);
8bcc2795 6202 }
6c49f241 6203
70b23a98
VS
6204 if (IS_CHERRYVIEW(dev))
6205 chv_crtc_clock_get(crtc, pipe_config);
6206 else if (IS_VALLEYVIEW(dev))
acbec814
JB
6207 vlv_crtc_clock_get(crtc, pipe_config);
6208 else
6209 i9xx_crtc_clock_get(crtc, pipe_config);
18442d08 6210
0e8ffe1b
DV
6211 return true;
6212}
6213
dde86e2d 6214static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67
JB
6215{
6216 struct drm_i915_private *dev_priv = dev->dev_private;
6217 struct drm_mode_config *mode_config = &dev->mode_config;
13d83a67 6218 struct intel_encoder *encoder;
74cfd7ac 6219 u32 val, final;
13d83a67 6220 bool has_lvds = false;
199e5d79 6221 bool has_cpu_edp = false;
199e5d79 6222 bool has_panel = false;
99eb6a01
KP
6223 bool has_ck505 = false;
6224 bool can_ssc = false;
13d83a67
JB
6225
6226 /* We need to take the global config into account */
199e5d79
KP
6227 list_for_each_entry(encoder, &mode_config->encoder_list,
6228 base.head) {
6229 switch (encoder->type) {
6230 case INTEL_OUTPUT_LVDS:
6231 has_panel = true;
6232 has_lvds = true;
6233 break;
6234 case INTEL_OUTPUT_EDP:
6235 has_panel = true;
2de6905f 6236 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
6237 has_cpu_edp = true;
6238 break;
13d83a67
JB
6239 }
6240 }
6241
99eb6a01 6242 if (HAS_PCH_IBX(dev)) {
41aa3448 6243 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
6244 can_ssc = has_ck505;
6245 } else {
6246 has_ck505 = false;
6247 can_ssc = true;
6248 }
6249
2de6905f
ID
6250 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6251 has_panel, has_lvds, has_ck505);
13d83a67
JB
6252
6253 /* Ironlake: try to setup display ref clock before DPLL
6254 * enabling. This is only under driver's control after
6255 * PCH B stepping, previous chipset stepping should be
6256 * ignoring this setting.
6257 */
74cfd7ac
CW
6258 val = I915_READ(PCH_DREF_CONTROL);
6259
6260 /* As we must carefully and slowly disable/enable each source in turn,
6261 * compute the final state we want first and check if we need to
6262 * make any changes at all.
6263 */
6264 final = val;
6265 final &= ~DREF_NONSPREAD_SOURCE_MASK;
6266 if (has_ck505)
6267 final |= DREF_NONSPREAD_CK505_ENABLE;
6268 else
6269 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6270
6271 final &= ~DREF_SSC_SOURCE_MASK;
6272 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6273 final &= ~DREF_SSC1_ENABLE;
6274
6275 if (has_panel) {
6276 final |= DREF_SSC_SOURCE_ENABLE;
6277
6278 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6279 final |= DREF_SSC1_ENABLE;
6280
6281 if (has_cpu_edp) {
6282 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6283 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6284 else
6285 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6286 } else
6287 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6288 } else {
6289 final |= DREF_SSC_SOURCE_DISABLE;
6290 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6291 }
6292
6293 if (final == val)
6294 return;
6295
13d83a67 6296 /* Always enable nonspread source */
74cfd7ac 6297 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 6298
99eb6a01 6299 if (has_ck505)
74cfd7ac 6300 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 6301 else
74cfd7ac 6302 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 6303
199e5d79 6304 if (has_panel) {
74cfd7ac
CW
6305 val &= ~DREF_SSC_SOURCE_MASK;
6306 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 6307
199e5d79 6308 /* SSC must be turned on before enabling the CPU output */
99eb6a01 6309 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 6310 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 6311 val |= DREF_SSC1_ENABLE;
e77166b5 6312 } else
74cfd7ac 6313 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
6314
6315 /* Get SSC going before enabling the outputs */
74cfd7ac 6316 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6317 POSTING_READ(PCH_DREF_CONTROL);
6318 udelay(200);
6319
74cfd7ac 6320 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
6321
6322 /* Enable CPU source on CPU attached eDP */
199e5d79 6323 if (has_cpu_edp) {
99eb6a01 6324 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 6325 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 6326 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
eba905b2 6327 } else
74cfd7ac 6328 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 6329 } else
74cfd7ac 6330 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 6331
74cfd7ac 6332 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6333 POSTING_READ(PCH_DREF_CONTROL);
6334 udelay(200);
6335 } else {
6336 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6337
74cfd7ac 6338 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
6339
6340 /* Turn off CPU output */
74cfd7ac 6341 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 6342
74cfd7ac 6343 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
6344 POSTING_READ(PCH_DREF_CONTROL);
6345 udelay(200);
6346
6347 /* Turn off the SSC source */
74cfd7ac
CW
6348 val &= ~DREF_SSC_SOURCE_MASK;
6349 val |= DREF_SSC_SOURCE_DISABLE;
199e5d79
KP
6350
6351 /* Turn off SSC1 */
74cfd7ac 6352 val &= ~DREF_SSC1_ENABLE;
199e5d79 6353
74cfd7ac 6354 I915_WRITE(PCH_DREF_CONTROL, val);
13d83a67
JB
6355 POSTING_READ(PCH_DREF_CONTROL);
6356 udelay(200);
6357 }
74cfd7ac
CW
6358
6359 BUG_ON(val != final);
13d83a67
JB
6360}
6361
f31f2d55 6362static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
dde86e2d 6363{
f31f2d55 6364 uint32_t tmp;
dde86e2d 6365
0ff066a9
PZ
6366 tmp = I915_READ(SOUTH_CHICKEN2);
6367 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6368 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 6369
0ff066a9
PZ
6370 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6371 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6372 DRM_ERROR("FDI mPHY reset assert timeout\n");
dde86e2d 6373
0ff066a9
PZ
6374 tmp = I915_READ(SOUTH_CHICKEN2);
6375 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6376 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 6377
0ff066a9
PZ
6378 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6379 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6380 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
f31f2d55
PZ
6381}
6382
6383/* WaMPhyProgramming:hsw */
6384static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6385{
6386 uint32_t tmp;
dde86e2d
PZ
6387
6388 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6389 tmp &= ~(0xFF << 24);
6390 tmp |= (0x12 << 24);
6391 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6392
dde86e2d
PZ
6393 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6394 tmp |= (1 << 11);
6395 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6396
6397 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6398 tmp |= (1 << 11);
6399 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6400
dde86e2d
PZ
6401 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6402 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6403 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6404
6405 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6406 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6407 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6408
0ff066a9
PZ
6409 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6410 tmp &= ~(7 << 13);
6411 tmp |= (5 << 13);
6412 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
dde86e2d 6413
0ff066a9
PZ
6414 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6415 tmp &= ~(7 << 13);
6416 tmp |= (5 << 13);
6417 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
dde86e2d
PZ
6418
6419 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6420 tmp &= ~0xFF;
6421 tmp |= 0x1C;
6422 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6423
6424 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6425 tmp &= ~0xFF;
6426 tmp |= 0x1C;
6427 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6428
6429 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6430 tmp &= ~(0xFF << 16);
6431 tmp |= (0x1C << 16);
6432 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6433
6434 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6435 tmp &= ~(0xFF << 16);
6436 tmp |= (0x1C << 16);
6437 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6438
0ff066a9
PZ
6439 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6440 tmp |= (1 << 27);
6441 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
dde86e2d 6442
0ff066a9
PZ
6443 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6444 tmp |= (1 << 27);
6445 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
dde86e2d 6446
0ff066a9
PZ
6447 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6448 tmp &= ~(0xF << 28);
6449 tmp |= (4 << 28);
6450 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
dde86e2d 6451
0ff066a9
PZ
6452 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6453 tmp &= ~(0xF << 28);
6454 tmp |= (4 << 28);
6455 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
f31f2d55
PZ
6456}
6457
2fa86a1f
PZ
6458/* Implements 3 different sequences from BSpec chapter "Display iCLK
6459 * Programming" based on the parameters passed:
6460 * - Sequence to enable CLKOUT_DP
6461 * - Sequence to enable CLKOUT_DP without spread
6462 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
6463 */
6464static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
6465 bool with_fdi)
f31f2d55
PZ
6466{
6467 struct drm_i915_private *dev_priv = dev->dev_private;
2fa86a1f
PZ
6468 uint32_t reg, tmp;
6469
6470 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
6471 with_spread = true;
6472 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
6473 with_fdi, "LP PCH doesn't have FDI\n"))
6474 with_fdi = false;
f31f2d55
PZ
6475
6476 mutex_lock(&dev_priv->dpio_lock);
6477
6478 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6479 tmp &= ~SBI_SSCCTL_DISABLE;
6480 tmp |= SBI_SSCCTL_PATHALT;
6481 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6482
6483 udelay(24);
6484
2fa86a1f
PZ
6485 if (with_spread) {
6486 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6487 tmp &= ~SBI_SSCCTL_PATHALT;
6488 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
f31f2d55 6489
2fa86a1f
PZ
6490 if (with_fdi) {
6491 lpt_reset_fdi_mphy(dev_priv);
6492 lpt_program_fdi_mphy(dev_priv);
6493 }
6494 }
dde86e2d 6495
2fa86a1f
PZ
6496 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6497 SBI_GEN0 : SBI_DBUFF0;
6498 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6499 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6500 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
c00db246
DV
6501
6502 mutex_unlock(&dev_priv->dpio_lock);
dde86e2d
PZ
6503}
6504
47701c3b
PZ
6505/* Sequence to disable CLKOUT_DP */
6506static void lpt_disable_clkout_dp(struct drm_device *dev)
6507{
6508 struct drm_i915_private *dev_priv = dev->dev_private;
6509 uint32_t reg, tmp;
6510
6511 mutex_lock(&dev_priv->dpio_lock);
6512
6513 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6514 SBI_GEN0 : SBI_DBUFF0;
6515 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6516 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6517 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
6518
6519 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6520 if (!(tmp & SBI_SSCCTL_DISABLE)) {
6521 if (!(tmp & SBI_SSCCTL_PATHALT)) {
6522 tmp |= SBI_SSCCTL_PATHALT;
6523 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6524 udelay(32);
6525 }
6526 tmp |= SBI_SSCCTL_DISABLE;
6527 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6528 }
6529
6530 mutex_unlock(&dev_priv->dpio_lock);
6531}
6532
bf8fa3d3
PZ
6533static void lpt_init_pch_refclk(struct drm_device *dev)
6534{
6535 struct drm_mode_config *mode_config = &dev->mode_config;
6536 struct intel_encoder *encoder;
6537 bool has_vga = false;
6538
6539 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
6540 switch (encoder->type) {
6541 case INTEL_OUTPUT_ANALOG:
6542 has_vga = true;
6543 break;
6544 }
6545 }
6546
47701c3b
PZ
6547 if (has_vga)
6548 lpt_enable_clkout_dp(dev, true, true);
6549 else
6550 lpt_disable_clkout_dp(dev);
bf8fa3d3
PZ
6551}
6552
dde86e2d
PZ
6553/*
6554 * Initialize reference clocks when the driver loads
6555 */
6556void intel_init_pch_refclk(struct drm_device *dev)
6557{
6558 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
6559 ironlake_init_pch_refclk(dev);
6560 else if (HAS_PCH_LPT(dev))
6561 lpt_init_pch_refclk(dev);
6562}
6563
d9d444cb
JB
6564static int ironlake_get_refclk(struct drm_crtc *crtc)
6565{
6566 struct drm_device *dev = crtc->dev;
6567 struct drm_i915_private *dev_priv = dev->dev_private;
6568 struct intel_encoder *encoder;
d9d444cb
JB
6569 int num_connectors = 0;
6570 bool is_lvds = false;
6571
6c2b7c12 6572 for_each_encoder_on_crtc(dev, crtc, encoder) {
d9d444cb
JB
6573 switch (encoder->type) {
6574 case INTEL_OUTPUT_LVDS:
6575 is_lvds = true;
6576 break;
d9d444cb
JB
6577 }
6578 num_connectors++;
6579 }
6580
6581 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b 6582 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
41aa3448 6583 dev_priv->vbt.lvds_ssc_freq);
e91e941b 6584 return dev_priv->vbt.lvds_ssc_freq;
d9d444cb
JB
6585 }
6586
6587 return 120000;
6588}
6589
6ff93609 6590static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 6591{
c8203565 6592 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
79e53945
JB
6593 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6594 int pipe = intel_crtc->pipe;
c8203565
PZ
6595 uint32_t val;
6596
78114071 6597 val = 0;
c8203565 6598
965e0c48 6599 switch (intel_crtc->config.pipe_bpp) {
c8203565 6600 case 18:
dfd07d72 6601 val |= PIPECONF_6BPC;
c8203565
PZ
6602 break;
6603 case 24:
dfd07d72 6604 val |= PIPECONF_8BPC;
c8203565
PZ
6605 break;
6606 case 30:
dfd07d72 6607 val |= PIPECONF_10BPC;
c8203565
PZ
6608 break;
6609 case 36:
dfd07d72 6610 val |= PIPECONF_12BPC;
c8203565
PZ
6611 break;
6612 default:
cc769b62
PZ
6613 /* Case prevented by intel_choose_pipe_bpp_dither. */
6614 BUG();
c8203565
PZ
6615 }
6616
d8b32247 6617 if (intel_crtc->config.dither)
c8203565
PZ
6618 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6619
6ff93609 6620 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
6621 val |= PIPECONF_INTERLACED_ILK;
6622 else
6623 val |= PIPECONF_PROGRESSIVE;
6624
50f3b016 6625 if (intel_crtc->config.limited_color_range)
3685a8f3 6626 val |= PIPECONF_COLOR_RANGE_SELECT;
3685a8f3 6627
c8203565
PZ
6628 I915_WRITE(PIPECONF(pipe), val);
6629 POSTING_READ(PIPECONF(pipe));
6630}
6631
86d3efce
VS
6632/*
6633 * Set up the pipe CSC unit.
6634 *
6635 * Currently only full range RGB to limited range RGB conversion
6636 * is supported, but eventually this should handle various
6637 * RGB<->YCbCr scenarios as well.
6638 */
50f3b016 6639static void intel_set_pipe_csc(struct drm_crtc *crtc)
86d3efce
VS
6640{
6641 struct drm_device *dev = crtc->dev;
6642 struct drm_i915_private *dev_priv = dev->dev_private;
6643 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6644 int pipe = intel_crtc->pipe;
6645 uint16_t coeff = 0x7800; /* 1.0 */
6646
6647 /*
6648 * TODO: Check what kind of values actually come out of the pipe
6649 * with these coeff/postoff values and adjust to get the best
6650 * accuracy. Perhaps we even need to take the bpc value into
6651 * consideration.
6652 */
6653
50f3b016 6654 if (intel_crtc->config.limited_color_range)
86d3efce
VS
6655 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
6656
6657 /*
6658 * GY/GU and RY/RU should be the other way around according
6659 * to BSpec, but reality doesn't agree. Just set them up in
6660 * a way that results in the correct picture.
6661 */
6662 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
6663 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
6664
6665 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
6666 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
6667
6668 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
6669 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
6670
6671 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
6672 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
6673 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
6674
6675 if (INTEL_INFO(dev)->gen > 6) {
6676 uint16_t postoff = 0;
6677
50f3b016 6678 if (intel_crtc->config.limited_color_range)
32cf0cb0 6679 postoff = (16 * (1 << 12) / 255) & 0x1fff;
86d3efce
VS
6680
6681 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
6682 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
6683 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
6684
6685 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
6686 } else {
6687 uint32_t mode = CSC_MODE_YUV_TO_RGB;
6688
50f3b016 6689 if (intel_crtc->config.limited_color_range)
86d3efce
VS
6690 mode |= CSC_BLACK_SCREEN_OFFSET;
6691
6692 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
6693 }
6694}
6695
6ff93609 6696static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38 6697{
756f85cf
PZ
6698 struct drm_device *dev = crtc->dev;
6699 struct drm_i915_private *dev_priv = dev->dev_private;
ee2b0b38 6700 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
756f85cf 6701 enum pipe pipe = intel_crtc->pipe;
3b117c8f 6702 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
ee2b0b38
PZ
6703 uint32_t val;
6704
3eff4faa 6705 val = 0;
ee2b0b38 6706
756f85cf 6707 if (IS_HASWELL(dev) && intel_crtc->config.dither)
ee2b0b38
PZ
6708 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6709
6ff93609 6710 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
6711 val |= PIPECONF_INTERLACED_ILK;
6712 else
6713 val |= PIPECONF_PROGRESSIVE;
6714
702e7a56
PZ
6715 I915_WRITE(PIPECONF(cpu_transcoder), val);
6716 POSTING_READ(PIPECONF(cpu_transcoder));
3eff4faa
DV
6717
6718 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
6719 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
756f85cf
PZ
6720
6721 if (IS_BROADWELL(dev)) {
6722 val = 0;
6723
6724 switch (intel_crtc->config.pipe_bpp) {
6725 case 18:
6726 val |= PIPEMISC_DITHER_6_BPC;
6727 break;
6728 case 24:
6729 val |= PIPEMISC_DITHER_8_BPC;
6730 break;
6731 case 30:
6732 val |= PIPEMISC_DITHER_10_BPC;
6733 break;
6734 case 36:
6735 val |= PIPEMISC_DITHER_12_BPC;
6736 break;
6737 default:
6738 /* Case prevented by pipe_config_set_bpp. */
6739 BUG();
6740 }
6741
6742 if (intel_crtc->config.dither)
6743 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
6744
6745 I915_WRITE(PIPEMISC(pipe), val);
6746 }
ee2b0b38
PZ
6747}
6748
6591c6e4 6749static bool ironlake_compute_clocks(struct drm_crtc *crtc,
6591c6e4
PZ
6750 intel_clock_t *clock,
6751 bool *has_reduced_clock,
6752 intel_clock_t *reduced_clock)
6753{
6754 struct drm_device *dev = crtc->dev;
6755 struct drm_i915_private *dev_priv = dev->dev_private;
6756 struct intel_encoder *intel_encoder;
6757 int refclk;
d4906093 6758 const intel_limit_t *limit;
a16af721 6759 bool ret, is_lvds = false;
79e53945 6760
6591c6e4
PZ
6761 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6762 switch (intel_encoder->type) {
79e53945
JB
6763 case INTEL_OUTPUT_LVDS:
6764 is_lvds = true;
6765 break;
79e53945
JB
6766 }
6767 }
6768
d9d444cb 6769 refclk = ironlake_get_refclk(crtc);
79e53945 6770
d4906093
ML
6771 /*
6772 * Returns a set of divisors for the desired target clock with the given
6773 * refclk, or FALSE. The returned values represent the clock equation:
6774 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
6775 */
1b894b59 6776 limit = intel_limit(crtc, refclk);
ff9a6750
DV
6777 ret = dev_priv->display.find_dpll(limit, crtc,
6778 to_intel_crtc(crtc)->config.port_clock,
ee9300bb 6779 refclk, NULL, clock);
6591c6e4
PZ
6780 if (!ret)
6781 return false;
cda4b7d3 6782
ddc9003c 6783 if (is_lvds && dev_priv->lvds_downclock_avail) {
cec2f356
SP
6784 /*
6785 * Ensure we match the reduced clock's P to the target clock.
6786 * If the clocks don't match, we can't switch the display clock
6787 * by using the FP0/FP1. In such case we will disable the LVDS
6788 * downclock feature.
6789 */
ee9300bb
DV
6790 *has_reduced_clock =
6791 dev_priv->display.find_dpll(limit, crtc,
6792 dev_priv->lvds_downclock,
6793 refclk, clock,
6794 reduced_clock);
652c393a 6795 }
61e9653f 6796
6591c6e4
PZ
6797 return true;
6798}
6799
d4b1931c
PZ
6800int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
6801{
6802 /*
6803 * Account for spread spectrum to avoid
6804 * oversubscribing the link. Max center spread
6805 * is 2.5%; use 5% for safety's sake.
6806 */
6807 u32 bps = target_clock * bpp * 21 / 20;
619d4d04 6808 return DIV_ROUND_UP(bps, link_bw * 8);
d4b1931c
PZ
6809}
6810
7429e9d4 6811static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
6cf86a5e 6812{
7429e9d4 6813 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
f48d8f23
PZ
6814}
6815
de13a2e3 6816static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
7429e9d4 6817 u32 *fp,
9a7c7890 6818 intel_clock_t *reduced_clock, u32 *fp2)
79e53945 6819{
de13a2e3 6820 struct drm_crtc *crtc = &intel_crtc->base;
79e53945
JB
6821 struct drm_device *dev = crtc->dev;
6822 struct drm_i915_private *dev_priv = dev->dev_private;
de13a2e3
PZ
6823 struct intel_encoder *intel_encoder;
6824 uint32_t dpll;
6cc5f341 6825 int factor, num_connectors = 0;
09ede541 6826 bool is_lvds = false, is_sdvo = false;
79e53945 6827
de13a2e3
PZ
6828 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6829 switch (intel_encoder->type) {
79e53945
JB
6830 case INTEL_OUTPUT_LVDS:
6831 is_lvds = true;
6832 break;
6833 case INTEL_OUTPUT_SDVO:
7d57382e 6834 case INTEL_OUTPUT_HDMI:
79e53945 6835 is_sdvo = true;
79e53945 6836 break;
79e53945 6837 }
43565a06 6838
c751ce4f 6839 num_connectors++;
79e53945 6840 }
79e53945 6841
c1858123 6842 /* Enable autotuning of the PLL clock (if permissible) */
8febb297
EA
6843 factor = 21;
6844 if (is_lvds) {
6845 if ((intel_panel_use_ssc(dev_priv) &&
e91e941b 6846 dev_priv->vbt.lvds_ssc_freq == 100000) ||
f0b44056 6847 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
8febb297 6848 factor = 25;
09ede541 6849 } else if (intel_crtc->config.sdvo_tv_clock)
8febb297 6850 factor = 20;
c1858123 6851
7429e9d4 6852 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
7d0ac5b7 6853 *fp |= FP_CB_TUNE;
2c07245f 6854
9a7c7890
DV
6855 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
6856 *fp2 |= FP_CB_TUNE;
6857
5eddb70b 6858 dpll = 0;
2c07245f 6859
a07d6787
EA
6860 if (is_lvds)
6861 dpll |= DPLLB_MODE_LVDS;
6862 else
6863 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 6864
ef1b460d
DV
6865 dpll |= (intel_crtc->config.pixel_multiplier - 1)
6866 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f
DV
6867
6868 if (is_sdvo)
4a33e48d 6869 dpll |= DPLL_SDVO_HIGH_SPEED;
9566e9af 6870 if (intel_crtc->config.has_dp_encoder)
4a33e48d 6871 dpll |= DPLL_SDVO_HIGH_SPEED;
79e53945 6872
a07d6787 6873 /* compute bitmask from p1 value */
7429e9d4 6874 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 6875 /* also FPA1 */
7429e9d4 6876 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 6877
7429e9d4 6878 switch (intel_crtc->config.dpll.p2) {
a07d6787
EA
6879 case 5:
6880 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6881 break;
6882 case 7:
6883 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6884 break;
6885 case 10:
6886 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6887 break;
6888 case 14:
6889 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6890 break;
79e53945
JB
6891 }
6892
b4c09f3b 6893 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
43565a06 6894 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
6895 else
6896 dpll |= PLL_REF_INPUT_DREFCLK;
6897
959e16d6 6898 return dpll | DPLL_VCO_ENABLE;
de13a2e3
PZ
6899}
6900
6901static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
de13a2e3
PZ
6902 int x, int y,
6903 struct drm_framebuffer *fb)
6904{
6905 struct drm_device *dev = crtc->dev;
de13a2e3 6906 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
de13a2e3
PZ
6907 int num_connectors = 0;
6908 intel_clock_t clock, reduced_clock;
cbbab5bd 6909 u32 dpll = 0, fp = 0, fp2 = 0;
e2f12b07 6910 bool ok, has_reduced_clock = false;
8b47047b 6911 bool is_lvds = false;
de13a2e3 6912 struct intel_encoder *encoder;
e2b78267 6913 struct intel_shared_dpll *pll;
de13a2e3
PZ
6914
6915 for_each_encoder_on_crtc(dev, crtc, encoder) {
6916 switch (encoder->type) {
6917 case INTEL_OUTPUT_LVDS:
6918 is_lvds = true;
6919 break;
de13a2e3
PZ
6920 }
6921
6922 num_connectors++;
a07d6787 6923 }
79e53945 6924
5dc5298b
PZ
6925 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
6926 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
a07d6787 6927
ff9a6750 6928 ok = ironlake_compute_clocks(crtc, &clock,
de13a2e3 6929 &has_reduced_clock, &reduced_clock);
ee9300bb 6930 if (!ok && !intel_crtc->config.clock_set) {
de13a2e3
PZ
6931 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6932 return -EINVAL;
79e53945 6933 }
f47709a9
DV
6934 /* Compat-code for transition, will disappear. */
6935 if (!intel_crtc->config.clock_set) {
6936 intel_crtc->config.dpll.n = clock.n;
6937 intel_crtc->config.dpll.m1 = clock.m1;
6938 intel_crtc->config.dpll.m2 = clock.m2;
6939 intel_crtc->config.dpll.p1 = clock.p1;
6940 intel_crtc->config.dpll.p2 = clock.p2;
6941 }
79e53945 6942
5dc5298b 6943 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
8b47047b 6944 if (intel_crtc->config.has_pch_encoder) {
7429e9d4 6945 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
cbbab5bd 6946 if (has_reduced_clock)
7429e9d4 6947 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
cbbab5bd 6948
7429e9d4 6949 dpll = ironlake_compute_dpll(intel_crtc,
cbbab5bd
DV
6950 &fp, &reduced_clock,
6951 has_reduced_clock ? &fp2 : NULL);
6952
959e16d6 6953 intel_crtc->config.dpll_hw_state.dpll = dpll;
66e985c0
DV
6954 intel_crtc->config.dpll_hw_state.fp0 = fp;
6955 if (has_reduced_clock)
6956 intel_crtc->config.dpll_hw_state.fp1 = fp2;
6957 else
6958 intel_crtc->config.dpll_hw_state.fp1 = fp;
6959
b89a1d39 6960 pll = intel_get_shared_dpll(intel_crtc);
ee7b9f93 6961 if (pll == NULL) {
84f44ce7 6962 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
29407aab 6963 pipe_name(intel_crtc->pipe));
4b645f14
JB
6964 return -EINVAL;
6965 }
ee7b9f93 6966 } else
e72f9fbf 6967 intel_put_shared_dpll(intel_crtc);
79e53945 6968
d330a953 6969 if (is_lvds && has_reduced_clock && i915.powersave)
bcd644e0
DV
6970 intel_crtc->lowfreq_avail = true;
6971 else
6972 intel_crtc->lowfreq_avail = false;
e2b78267 6973
c8f7a0db 6974 return 0;
79e53945
JB
6975}
6976
eb14cb74
VS
6977static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
6978 struct intel_link_m_n *m_n)
6979{
6980 struct drm_device *dev = crtc->base.dev;
6981 struct drm_i915_private *dev_priv = dev->dev_private;
6982 enum pipe pipe = crtc->pipe;
6983
6984 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
6985 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
6986 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
6987 & ~TU_SIZE_MASK;
6988 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
6989 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
6990 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6991}
6992
6993static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
6994 enum transcoder transcoder,
6995 struct intel_link_m_n *m_n)
72419203
DV
6996{
6997 struct drm_device *dev = crtc->base.dev;
6998 struct drm_i915_private *dev_priv = dev->dev_private;
eb14cb74 6999 enum pipe pipe = crtc->pipe;
72419203 7000
eb14cb74
VS
7001 if (INTEL_INFO(dev)->gen >= 5) {
7002 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7003 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7004 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7005 & ~TU_SIZE_MASK;
7006 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7007 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7008 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7009 } else {
7010 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7011 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7012 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7013 & ~TU_SIZE_MASK;
7014 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7015 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7016 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7017 }
7018}
7019
7020void intel_dp_get_m_n(struct intel_crtc *crtc,
7021 struct intel_crtc_config *pipe_config)
7022{
7023 if (crtc->config.has_pch_encoder)
7024 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7025 else
7026 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7027 &pipe_config->dp_m_n);
7028}
72419203 7029
eb14cb74
VS
7030static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
7031 struct intel_crtc_config *pipe_config)
7032{
7033 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7034 &pipe_config->fdi_m_n);
72419203
DV
7035}
7036
2fa2fe9a
DV
7037static void ironlake_get_pfit_config(struct intel_crtc *crtc,
7038 struct intel_crtc_config *pipe_config)
7039{
7040 struct drm_device *dev = crtc->base.dev;
7041 struct drm_i915_private *dev_priv = dev->dev_private;
7042 uint32_t tmp;
7043
7044 tmp = I915_READ(PF_CTL(crtc->pipe));
7045
7046 if (tmp & PF_ENABLE) {
fd4daa9c 7047 pipe_config->pch_pfit.enabled = true;
2fa2fe9a
DV
7048 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7049 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
7050
7051 /* We currently do not free assignements of panel fitters on
7052 * ivb/hsw (since we don't use the higher upscaling modes which
7053 * differentiates them) so just WARN about this case for now. */
7054 if (IS_GEN7(dev)) {
7055 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7056 PF_PIPE_SEL_IVB(crtc->pipe));
7057 }
2fa2fe9a 7058 }
79e53945
JB
7059}
7060
4c6baa59
JB
7061static void ironlake_get_plane_config(struct intel_crtc *crtc,
7062 struct intel_plane_config *plane_config)
7063{
7064 struct drm_device *dev = crtc->base.dev;
7065 struct drm_i915_private *dev_priv = dev->dev_private;
7066 u32 val, base, offset;
7067 int pipe = crtc->pipe, plane = crtc->plane;
7068 int fourcc, pixel_format;
7069 int aligned_height;
7070
66e514c1
DA
7071 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
7072 if (!crtc->base.primary->fb) {
4c6baa59
JB
7073 DRM_DEBUG_KMS("failed to alloc fb\n");
7074 return;
7075 }
7076
7077 val = I915_READ(DSPCNTR(plane));
7078
7079 if (INTEL_INFO(dev)->gen >= 4)
7080 if (val & DISPPLANE_TILED)
7081 plane_config->tiled = true;
7082
7083 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
7084 fourcc = intel_format_to_fourcc(pixel_format);
66e514c1
DA
7085 crtc->base.primary->fb->pixel_format = fourcc;
7086 crtc->base.primary->fb->bits_per_pixel =
4c6baa59
JB
7087 drm_format_plane_cpp(fourcc, 0) * 8;
7088
7089 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7090 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
7091 offset = I915_READ(DSPOFFSET(plane));
7092 } else {
7093 if (plane_config->tiled)
7094 offset = I915_READ(DSPTILEOFF(plane));
7095 else
7096 offset = I915_READ(DSPLINOFF(plane));
7097 }
7098 plane_config->base = base;
7099
7100 val = I915_READ(PIPESRC(pipe));
66e514c1
DA
7101 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
7102 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
4c6baa59
JB
7103
7104 val = I915_READ(DSPSTRIDE(pipe));
66e514c1 7105 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
4c6baa59 7106
66e514c1 7107 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
4c6baa59
JB
7108 plane_config->tiled);
7109
66e514c1 7110 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
4c6baa59
JB
7111 aligned_height, PAGE_SIZE);
7112
7113 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
66e514c1
DA
7114 pipe, plane, crtc->base.primary->fb->width,
7115 crtc->base.primary->fb->height,
7116 crtc->base.primary->fb->bits_per_pixel, base,
7117 crtc->base.primary->fb->pitches[0],
4c6baa59
JB
7118 plane_config->size);
7119}
7120
0e8ffe1b
DV
7121static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
7122 struct intel_crtc_config *pipe_config)
7123{
7124 struct drm_device *dev = crtc->base.dev;
7125 struct drm_i915_private *dev_priv = dev->dev_private;
7126 uint32_t tmp;
7127
e143a21c 7128 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 7129 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 7130
0e8ffe1b
DV
7131 tmp = I915_READ(PIPECONF(crtc->pipe));
7132 if (!(tmp & PIPECONF_ENABLE))
7133 return false;
7134
42571aef
VS
7135 switch (tmp & PIPECONF_BPC_MASK) {
7136 case PIPECONF_6BPC:
7137 pipe_config->pipe_bpp = 18;
7138 break;
7139 case PIPECONF_8BPC:
7140 pipe_config->pipe_bpp = 24;
7141 break;
7142 case PIPECONF_10BPC:
7143 pipe_config->pipe_bpp = 30;
7144 break;
7145 case PIPECONF_12BPC:
7146 pipe_config->pipe_bpp = 36;
7147 break;
7148 default:
7149 break;
7150 }
7151
b5a9fa09
DV
7152 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7153 pipe_config->limited_color_range = true;
7154
ab9412ba 7155 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
66e985c0
DV
7156 struct intel_shared_dpll *pll;
7157
88adfff1
DV
7158 pipe_config->has_pch_encoder = true;
7159
627eb5a3
DV
7160 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7161 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7162 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
7163
7164 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241 7165
c0d43d62 7166 if (HAS_PCH_IBX(dev_priv->dev)) {
d94ab068
DV
7167 pipe_config->shared_dpll =
7168 (enum intel_dpll_id) crtc->pipe;
c0d43d62
DV
7169 } else {
7170 tmp = I915_READ(PCH_DPLL_SEL);
7171 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7172 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7173 else
7174 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7175 }
66e985c0
DV
7176
7177 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7178
7179 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7180 &pipe_config->dpll_hw_state));
c93f54cf
DV
7181
7182 tmp = pipe_config->dpll_hw_state.dpll;
7183 pipe_config->pixel_multiplier =
7184 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7185 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
18442d08
VS
7186
7187 ironlake_pch_clock_get(crtc, pipe_config);
6c49f241
DV
7188 } else {
7189 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
7190 }
7191
1bd1bd80
DV
7192 intel_get_pipe_timings(crtc, pipe_config);
7193
2fa2fe9a
DV
7194 ironlake_get_pfit_config(crtc, pipe_config);
7195
0e8ffe1b
DV
7196 return true;
7197}
7198
be256dc7
PZ
7199static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7200{
7201 struct drm_device *dev = dev_priv->dev;
7202 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
7203 struct intel_crtc *crtc;
be256dc7 7204
d3fcc808 7205 for_each_intel_crtc(dev, crtc)
798183c5 7206 WARN(crtc->active, "CRTC for pipe %c enabled\n",
be256dc7
PZ
7207 pipe_name(crtc->pipe));
7208
7209 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7210 WARN(plls->spll_refcount, "SPLL enabled\n");
7211 WARN(plls->wrpll1_refcount, "WRPLL1 enabled\n");
7212 WARN(plls->wrpll2_refcount, "WRPLL2 enabled\n");
7213 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7214 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
7215 "CPU PWM1 enabled\n");
7216 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
7217 "CPU PWM2 enabled\n");
7218 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
7219 "PCH PWM1 enabled\n");
7220 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
7221 "Utility pin enabled\n");
7222 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
7223
9926ada1
PZ
7224 /*
7225 * In theory we can still leave IRQs enabled, as long as only the HPD
7226 * interrupts remain enabled. We used to check for that, but since it's
7227 * gen-specific and since we only disable LCPLL after we fully disable
7228 * the interrupts, the check below should be enough.
7229 */
7230 WARN(!dev_priv->pm.irqs_disabled, "IRQs enabled\n");
be256dc7
PZ
7231}
7232
3c4c9b81
PZ
7233static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7234{
7235 struct drm_device *dev = dev_priv->dev;
7236
7237 if (IS_HASWELL(dev)) {
7238 mutex_lock(&dev_priv->rps.hw_lock);
7239 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7240 val))
7241 DRM_ERROR("Failed to disable D_COMP\n");
7242 mutex_unlock(&dev_priv->rps.hw_lock);
7243 } else {
7244 I915_WRITE(D_COMP, val);
7245 }
7246 POSTING_READ(D_COMP);
be256dc7
PZ
7247}
7248
7249/*
7250 * This function implements pieces of two sequences from BSpec:
7251 * - Sequence for display software to disable LCPLL
7252 * - Sequence for display software to allow package C8+
7253 * The steps implemented here are just the steps that actually touch the LCPLL
7254 * register. Callers should take care of disabling all the display engine
7255 * functions, doing the mode unset, fixing interrupts, etc.
7256 */
6ff58d53
PZ
7257static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7258 bool switch_to_fclk, bool allow_power_down)
be256dc7
PZ
7259{
7260 uint32_t val;
7261
7262 assert_can_disable_lcpll(dev_priv);
7263
7264 val = I915_READ(LCPLL_CTL);
7265
7266 if (switch_to_fclk) {
7267 val |= LCPLL_CD_SOURCE_FCLK;
7268 I915_WRITE(LCPLL_CTL, val);
7269
7270 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7271 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7272 DRM_ERROR("Switching to FCLK failed\n");
7273
7274 val = I915_READ(LCPLL_CTL);
7275 }
7276
7277 val |= LCPLL_PLL_DISABLE;
7278 I915_WRITE(LCPLL_CTL, val);
7279 POSTING_READ(LCPLL_CTL);
7280
7281 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7282 DRM_ERROR("LCPLL still locked\n");
7283
7284 val = I915_READ(D_COMP);
7285 val |= D_COMP_COMP_DISABLE;
3c4c9b81 7286 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
7287 ndelay(100);
7288
7289 if (wait_for((I915_READ(D_COMP) & D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
7290 DRM_ERROR("D_COMP RCOMP still in progress\n");
7291
7292 if (allow_power_down) {
7293 val = I915_READ(LCPLL_CTL);
7294 val |= LCPLL_POWER_DOWN_ALLOW;
7295 I915_WRITE(LCPLL_CTL, val);
7296 POSTING_READ(LCPLL_CTL);
7297 }
7298}
7299
7300/*
7301 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7302 * source.
7303 */
6ff58d53 7304static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
be256dc7
PZ
7305{
7306 uint32_t val;
a8a8bd54 7307 unsigned long irqflags;
be256dc7
PZ
7308
7309 val = I915_READ(LCPLL_CTL);
7310
7311 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7312 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7313 return;
7314
a8a8bd54
PZ
7315 /*
7316 * Make sure we're not on PC8 state before disabling PC8, otherwise
7317 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
7318 *
7319 * The other problem is that hsw_restore_lcpll() is called as part of
7320 * the runtime PM resume sequence, so we can't just call
7321 * gen6_gt_force_wake_get() because that function calls
7322 * intel_runtime_pm_get(), and we can't change the runtime PM refcount
7323 * while we are on the resume sequence. So to solve this problem we have
7324 * to call special forcewake code that doesn't touch runtime PM and
7325 * doesn't enable the forcewake delayed work.
7326 */
7327 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7328 if (dev_priv->uncore.forcewake_count++ == 0)
7329 dev_priv->uncore.funcs.force_wake_get(dev_priv, FORCEWAKE_ALL);
7330 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
215733fa 7331
be256dc7
PZ
7332 if (val & LCPLL_POWER_DOWN_ALLOW) {
7333 val &= ~LCPLL_POWER_DOWN_ALLOW;
7334 I915_WRITE(LCPLL_CTL, val);
35d8f2eb 7335 POSTING_READ(LCPLL_CTL);
be256dc7
PZ
7336 }
7337
7338 val = I915_READ(D_COMP);
7339 val |= D_COMP_COMP_FORCE;
7340 val &= ~D_COMP_COMP_DISABLE;
3c4c9b81 7341 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
7342
7343 val = I915_READ(LCPLL_CTL);
7344 val &= ~LCPLL_PLL_DISABLE;
7345 I915_WRITE(LCPLL_CTL, val);
7346
7347 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7348 DRM_ERROR("LCPLL not locked yet\n");
7349
7350 if (val & LCPLL_CD_SOURCE_FCLK) {
7351 val = I915_READ(LCPLL_CTL);
7352 val &= ~LCPLL_CD_SOURCE_FCLK;
7353 I915_WRITE(LCPLL_CTL, val);
7354
7355 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
7356 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
7357 DRM_ERROR("Switching back to LCPLL failed\n");
7358 }
215733fa 7359
a8a8bd54
PZ
7360 /* See the big comment above. */
7361 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7362 if (--dev_priv->uncore.forcewake_count == 0)
7363 dev_priv->uncore.funcs.force_wake_put(dev_priv, FORCEWAKE_ALL);
7364 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
be256dc7
PZ
7365}
7366
765dab67
PZ
7367/*
7368 * Package states C8 and deeper are really deep PC states that can only be
7369 * reached when all the devices on the system allow it, so even if the graphics
7370 * device allows PC8+, it doesn't mean the system will actually get to these
7371 * states. Our driver only allows PC8+ when going into runtime PM.
7372 *
7373 * The requirements for PC8+ are that all the outputs are disabled, the power
7374 * well is disabled and most interrupts are disabled, and these are also
7375 * requirements for runtime PM. When these conditions are met, we manually do
7376 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
7377 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
7378 * hang the machine.
7379 *
7380 * When we really reach PC8 or deeper states (not just when we allow it) we lose
7381 * the state of some registers, so when we come back from PC8+ we need to
7382 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
7383 * need to take care of the registers kept by RC6. Notice that this happens even
7384 * if we don't put the device in PCI D3 state (which is what currently happens
7385 * because of the runtime PM support).
7386 *
7387 * For more, read "Display Sequences for Package C8" on the hardware
7388 * documentation.
7389 */
a14cb6fc 7390void hsw_enable_pc8(struct drm_i915_private *dev_priv)
c67a470b 7391{
c67a470b
PZ
7392 struct drm_device *dev = dev_priv->dev;
7393 uint32_t val;
7394
c67a470b
PZ
7395 DRM_DEBUG_KMS("Enabling package C8+\n");
7396
c67a470b
PZ
7397 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7398 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7399 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7400 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7401 }
7402
7403 lpt_disable_clkout_dp(dev);
c67a470b
PZ
7404 hsw_disable_lcpll(dev_priv, true, true);
7405}
7406
a14cb6fc 7407void hsw_disable_pc8(struct drm_i915_private *dev_priv)
c67a470b
PZ
7408{
7409 struct drm_device *dev = dev_priv->dev;
7410 uint32_t val;
7411
c67a470b
PZ
7412 DRM_DEBUG_KMS("Disabling package C8+\n");
7413
7414 hsw_restore_lcpll(dev_priv);
c67a470b
PZ
7415 lpt_init_pch_refclk(dev);
7416
7417 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7418 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7419 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
7420 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7421 }
7422
7423 intel_prepare_ddi(dev);
c67a470b
PZ
7424}
7425
9a952a0d
PZ
7426static void snb_modeset_global_resources(struct drm_device *dev)
7427{
7428 modeset_update_crtc_power_domains(dev);
7429}
7430
4f074129
ID
7431static void haswell_modeset_global_resources(struct drm_device *dev)
7432{
da723569 7433 modeset_update_crtc_power_domains(dev);
d6dd9eb1
DV
7434}
7435
09b4ddf9 7436static int haswell_crtc_mode_set(struct drm_crtc *crtc,
09b4ddf9
PZ
7437 int x, int y,
7438 struct drm_framebuffer *fb)
7439{
09b4ddf9 7440 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
09b4ddf9 7441
566b734a 7442 if (!intel_ddi_pll_select(intel_crtc))
6441ab5f 7443 return -EINVAL;
566b734a 7444 intel_ddi_pll_enable(intel_crtc);
6441ab5f 7445
644cef34
DV
7446 intel_crtc->lowfreq_avail = false;
7447
c8f7a0db 7448 return 0;
79e53945
JB
7449}
7450
0e8ffe1b
DV
7451static bool haswell_get_pipe_config(struct intel_crtc *crtc,
7452 struct intel_crtc_config *pipe_config)
7453{
7454 struct drm_device *dev = crtc->base.dev;
7455 struct drm_i915_private *dev_priv = dev->dev_private;
2fa2fe9a 7456 enum intel_display_power_domain pfit_domain;
0e8ffe1b
DV
7457 uint32_t tmp;
7458
b5482bd0
ID
7459 if (!intel_display_power_enabled(dev_priv,
7460 POWER_DOMAIN_PIPE(crtc->pipe)))
7461 return false;
7462
e143a21c 7463 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62
DV
7464 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
7465
eccb140b
DV
7466 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
7467 if (tmp & TRANS_DDI_FUNC_ENABLE) {
7468 enum pipe trans_edp_pipe;
7469 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
7470 default:
7471 WARN(1, "unknown pipe linked to edp transcoder\n");
7472 case TRANS_DDI_EDP_INPUT_A_ONOFF:
7473 case TRANS_DDI_EDP_INPUT_A_ON:
7474 trans_edp_pipe = PIPE_A;
7475 break;
7476 case TRANS_DDI_EDP_INPUT_B_ONOFF:
7477 trans_edp_pipe = PIPE_B;
7478 break;
7479 case TRANS_DDI_EDP_INPUT_C_ONOFF:
7480 trans_edp_pipe = PIPE_C;
7481 break;
7482 }
7483
7484 if (trans_edp_pipe == crtc->pipe)
7485 pipe_config->cpu_transcoder = TRANSCODER_EDP;
7486 }
7487
da7e29bd 7488 if (!intel_display_power_enabled(dev_priv,
eccb140b 7489 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
2bfce950
PZ
7490 return false;
7491
eccb140b 7492 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
0e8ffe1b
DV
7493 if (!(tmp & PIPECONF_ENABLE))
7494 return false;
7495
88adfff1 7496 /*
f196e6be 7497 * Haswell has only FDI/PCH transcoder A. It is which is connected to
88adfff1
DV
7498 * DDI E. So just check whether this pipe is wired to DDI E and whether
7499 * the PCH transcoder is on.
7500 */
eccb140b 7501 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
88adfff1 7502 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
ab9412ba 7503 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
88adfff1
DV
7504 pipe_config->has_pch_encoder = true;
7505
627eb5a3
DV
7506 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
7507 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7508 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
7509
7510 ironlake_get_fdi_m_n_config(crtc, pipe_config);
627eb5a3
DV
7511 }
7512
1bd1bd80
DV
7513 intel_get_pipe_timings(crtc, pipe_config);
7514
2fa2fe9a 7515 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
da7e29bd 7516 if (intel_display_power_enabled(dev_priv, pfit_domain))
2fa2fe9a 7517 ironlake_get_pfit_config(crtc, pipe_config);
88adfff1 7518
e59150dc
JB
7519 if (IS_HASWELL(dev))
7520 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
7521 (I915_READ(IPS_CTL) & IPS_ENABLE);
42db64ef 7522
6c49f241
DV
7523 pipe_config->pixel_multiplier = 1;
7524
0e8ffe1b
DV
7525 return true;
7526}
7527
1a91510d
JN
7528static struct {
7529 int clock;
7530 u32 config;
7531} hdmi_audio_clock[] = {
7532 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
7533 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
7534 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
7535 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
7536 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
7537 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
7538 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
7539 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
7540 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
7541 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
7542};
7543
7544/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
7545static u32 audio_config_hdmi_pixel_clock(struct drm_display_mode *mode)
7546{
7547 int i;
7548
7549 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
7550 if (mode->clock == hdmi_audio_clock[i].clock)
7551 break;
7552 }
7553
7554 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
7555 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n", mode->clock);
7556 i = 1;
7557 }
7558
7559 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
7560 hdmi_audio_clock[i].clock,
7561 hdmi_audio_clock[i].config);
7562
7563 return hdmi_audio_clock[i].config;
7564}
7565
3a9627f4
WF
7566static bool intel_eld_uptodate(struct drm_connector *connector,
7567 int reg_eldv, uint32_t bits_eldv,
7568 int reg_elda, uint32_t bits_elda,
7569 int reg_edid)
7570{
7571 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7572 uint8_t *eld = connector->eld;
7573 uint32_t i;
7574
7575 i = I915_READ(reg_eldv);
7576 i &= bits_eldv;
7577
7578 if (!eld[0])
7579 return !i;
7580
7581 if (!i)
7582 return false;
7583
7584 i = I915_READ(reg_elda);
7585 i &= ~bits_elda;
7586 I915_WRITE(reg_elda, i);
7587
7588 for (i = 0; i < eld[2]; i++)
7589 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
7590 return false;
7591
7592 return true;
7593}
7594
e0dac65e 7595static void g4x_write_eld(struct drm_connector *connector,
34427052
JN
7596 struct drm_crtc *crtc,
7597 struct drm_display_mode *mode)
e0dac65e
WF
7598{
7599 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7600 uint8_t *eld = connector->eld;
7601 uint32_t eldv;
7602 uint32_t len;
7603 uint32_t i;
7604
7605 i = I915_READ(G4X_AUD_VID_DID);
7606
7607 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
7608 eldv = G4X_ELDV_DEVCL_DEVBLC;
7609 else
7610 eldv = G4X_ELDV_DEVCTG;
7611
3a9627f4
WF
7612 if (intel_eld_uptodate(connector,
7613 G4X_AUD_CNTL_ST, eldv,
7614 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
7615 G4X_HDMIW_HDMIEDID))
7616 return;
7617
e0dac65e
WF
7618 i = I915_READ(G4X_AUD_CNTL_ST);
7619 i &= ~(eldv | G4X_ELD_ADDR);
7620 len = (i >> 9) & 0x1f; /* ELD buffer size */
7621 I915_WRITE(G4X_AUD_CNTL_ST, i);
7622
7623 if (!eld[0])
7624 return;
7625
7626 len = min_t(uint8_t, eld[2], len);
7627 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7628 for (i = 0; i < len; i++)
7629 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
7630
7631 i = I915_READ(G4X_AUD_CNTL_ST);
7632 i |= eldv;
7633 I915_WRITE(G4X_AUD_CNTL_ST, i);
7634}
7635
83358c85 7636static void haswell_write_eld(struct drm_connector *connector,
34427052
JN
7637 struct drm_crtc *crtc,
7638 struct drm_display_mode *mode)
83358c85
WX
7639{
7640 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7641 uint8_t *eld = connector->eld;
83358c85
WX
7642 uint32_t eldv;
7643 uint32_t i;
7644 int len;
7645 int pipe = to_intel_crtc(crtc)->pipe;
7646 int tmp;
7647
7648 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
7649 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
7650 int aud_config = HSW_AUD_CFG(pipe);
7651 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
7652
83358c85
WX
7653 /* Audio output enable */
7654 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
7655 tmp = I915_READ(aud_cntrl_st2);
7656 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
7657 I915_WRITE(aud_cntrl_st2, tmp);
c7905792 7658 POSTING_READ(aud_cntrl_st2);
83358c85 7659
c7905792 7660 assert_pipe_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
83358c85
WX
7661
7662 /* Set ELD valid state */
7663 tmp = I915_READ(aud_cntrl_st2);
7e7cb34f 7664 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
83358c85
WX
7665 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
7666 I915_WRITE(aud_cntrl_st2, tmp);
7667 tmp = I915_READ(aud_cntrl_st2);
7e7cb34f 7668 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
83358c85
WX
7669
7670 /* Enable HDMI mode */
7671 tmp = I915_READ(aud_config);
7e7cb34f 7672 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
83358c85
WX
7673 /* clear N_programing_enable and N_value_index */
7674 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
7675 I915_WRITE(aud_config, tmp);
7676
7677 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
7678
7679 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7680
7681 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7682 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7683 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
7684 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
1a91510d
JN
7685 } else {
7686 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7687 }
83358c85
WX
7688
7689 if (intel_eld_uptodate(connector,
7690 aud_cntrl_st2, eldv,
7691 aud_cntl_st, IBX_ELD_ADDRESS,
7692 hdmiw_hdmiedid))
7693 return;
7694
7695 i = I915_READ(aud_cntrl_st2);
7696 i &= ~eldv;
7697 I915_WRITE(aud_cntrl_st2, i);
7698
7699 if (!eld[0])
7700 return;
7701
7702 i = I915_READ(aud_cntl_st);
7703 i &= ~IBX_ELD_ADDRESS;
7704 I915_WRITE(aud_cntl_st, i);
7705 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
7706 DRM_DEBUG_DRIVER("port num:%d\n", i);
7707
7708 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7709 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7710 for (i = 0; i < len; i++)
7711 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7712
7713 i = I915_READ(aud_cntrl_st2);
7714 i |= eldv;
7715 I915_WRITE(aud_cntrl_st2, i);
7716
7717}
7718
e0dac65e 7719static void ironlake_write_eld(struct drm_connector *connector,
34427052
JN
7720 struct drm_crtc *crtc,
7721 struct drm_display_mode *mode)
e0dac65e
WF
7722{
7723 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7724 uint8_t *eld = connector->eld;
7725 uint32_t eldv;
7726 uint32_t i;
7727 int len;
7728 int hdmiw_hdmiedid;
b6daa025 7729 int aud_config;
e0dac65e
WF
7730 int aud_cntl_st;
7731 int aud_cntrl_st2;
9b138a83 7732 int pipe = to_intel_crtc(crtc)->pipe;
e0dac65e 7733
b3f33cbf 7734 if (HAS_PCH_IBX(connector->dev)) {
9b138a83
WX
7735 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
7736 aud_config = IBX_AUD_CFG(pipe);
7737 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
1202b4c6 7738 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
9ca2fe73
ML
7739 } else if (IS_VALLEYVIEW(connector->dev)) {
7740 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
7741 aud_config = VLV_AUD_CFG(pipe);
7742 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
7743 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
e0dac65e 7744 } else {
9b138a83
WX
7745 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
7746 aud_config = CPT_AUD_CFG(pipe);
7747 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
1202b4c6 7748 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
e0dac65e
WF
7749 }
7750
9b138a83 7751 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
e0dac65e 7752
9ca2fe73
ML
7753 if (IS_VALLEYVIEW(connector->dev)) {
7754 struct intel_encoder *intel_encoder;
7755 struct intel_digital_port *intel_dig_port;
7756
7757 intel_encoder = intel_attached_encoder(connector);
7758 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
7759 i = intel_dig_port->port;
7760 } else {
7761 i = I915_READ(aud_cntl_st);
7762 i = (i >> 29) & DIP_PORT_SEL_MASK;
7763 /* DIP_Port_Select, 0x1 = PortB */
7764 }
7765
e0dac65e
WF
7766 if (!i) {
7767 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
7768 /* operate blindly on all ports */
1202b4c6
WF
7769 eldv = IBX_ELD_VALIDB;
7770 eldv |= IBX_ELD_VALIDB << 4;
7771 eldv |= IBX_ELD_VALIDB << 8;
e0dac65e 7772 } else {
2582a850 7773 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
1202b4c6 7774 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
e0dac65e
WF
7775 }
7776
3a9627f4
WF
7777 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7778 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7779 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
b6daa025 7780 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
1a91510d
JN
7781 } else {
7782 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7783 }
e0dac65e 7784
3a9627f4
WF
7785 if (intel_eld_uptodate(connector,
7786 aud_cntrl_st2, eldv,
7787 aud_cntl_st, IBX_ELD_ADDRESS,
7788 hdmiw_hdmiedid))
7789 return;
7790
e0dac65e
WF
7791 i = I915_READ(aud_cntrl_st2);
7792 i &= ~eldv;
7793 I915_WRITE(aud_cntrl_st2, i);
7794
7795 if (!eld[0])
7796 return;
7797
e0dac65e 7798 i = I915_READ(aud_cntl_st);
1202b4c6 7799 i &= ~IBX_ELD_ADDRESS;
e0dac65e
WF
7800 I915_WRITE(aud_cntl_st, i);
7801
7802 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7803 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7804 for (i = 0; i < len; i++)
7805 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7806
7807 i = I915_READ(aud_cntrl_st2);
7808 i |= eldv;
7809 I915_WRITE(aud_cntrl_st2, i);
7810}
7811
7812void intel_write_eld(struct drm_encoder *encoder,
7813 struct drm_display_mode *mode)
7814{
7815 struct drm_crtc *crtc = encoder->crtc;
7816 struct drm_connector *connector;
7817 struct drm_device *dev = encoder->dev;
7818 struct drm_i915_private *dev_priv = dev->dev_private;
7819
7820 connector = drm_select_eld(encoder, mode);
7821 if (!connector)
7822 return;
7823
7824 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7825 connector->base.id,
7826 drm_get_connector_name(connector),
7827 connector->encoder->base.id,
7828 drm_get_encoder_name(connector->encoder));
7829
7830 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
7831
7832 if (dev_priv->display.write_eld)
34427052 7833 dev_priv->display.write_eld(connector, crtc, mode);
e0dac65e
WF
7834}
7835
560b85bb
CW
7836static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
7837{
7838 struct drm_device *dev = crtc->dev;
7839 struct drm_i915_private *dev_priv = dev->dev_private;
7840 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7841 bool visible = base != 0;
7842 u32 cntl;
7843
7844 if (intel_crtc->cursor_visible == visible)
7845 return;
7846
9db4a9c7 7847 cntl = I915_READ(_CURACNTR);
560b85bb
CW
7848 if (visible) {
7849 /* On these chipsets we can only modify the base whilst
7850 * the cursor is disabled.
7851 */
9db4a9c7 7852 I915_WRITE(_CURABASE, base);
560b85bb
CW
7853
7854 cntl &= ~(CURSOR_FORMAT_MASK);
7855 /* XXX width must be 64, stride 256 => 0x00 << 28 */
7856 cntl |= CURSOR_ENABLE |
7857 CURSOR_GAMMA_ENABLE |
7858 CURSOR_FORMAT_ARGB;
7859 } else
7860 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
9db4a9c7 7861 I915_WRITE(_CURACNTR, cntl);
560b85bb
CW
7862
7863 intel_crtc->cursor_visible = visible;
7864}
7865
7866static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
7867{
7868 struct drm_device *dev = crtc->dev;
7869 struct drm_i915_private *dev_priv = dev->dev_private;
7870 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7871 int pipe = intel_crtc->pipe;
7872 bool visible = base != 0;
7873
7874 if (intel_crtc->cursor_visible != visible) {
4726e0b0 7875 int16_t width = intel_crtc->cursor_width;
548f245b 7876 uint32_t cntl = I915_READ(CURCNTR(pipe));
560b85bb
CW
7877 if (base) {
7878 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4726e0b0
SK
7879 cntl |= MCURSOR_GAMMA_ENABLE;
7880
7881 switch (width) {
7882 case 64:
7883 cntl |= CURSOR_MODE_64_ARGB_AX;
7884 break;
7885 case 128:
7886 cntl |= CURSOR_MODE_128_ARGB_AX;
7887 break;
7888 case 256:
7889 cntl |= CURSOR_MODE_256_ARGB_AX;
7890 break;
7891 default:
7892 WARN_ON(1);
7893 return;
7894 }
560b85bb
CW
7895 cntl |= pipe << 28; /* Connect to correct pipe */
7896 } else {
7897 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7898 cntl |= CURSOR_MODE_DISABLE;
7899 }
9db4a9c7 7900 I915_WRITE(CURCNTR(pipe), cntl);
560b85bb
CW
7901
7902 intel_crtc->cursor_visible = visible;
7903 }
7904 /* and commit changes on next vblank */
b2ea8ef5 7905 POSTING_READ(CURCNTR(pipe));
9db4a9c7 7906 I915_WRITE(CURBASE(pipe), base);
b2ea8ef5 7907 POSTING_READ(CURBASE(pipe));
560b85bb
CW
7908}
7909
65a21cd6
JB
7910static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
7911{
7912 struct drm_device *dev = crtc->dev;
7913 struct drm_i915_private *dev_priv = dev->dev_private;
7914 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7915 int pipe = intel_crtc->pipe;
7916 bool visible = base != 0;
7917
7918 if (intel_crtc->cursor_visible != visible) {
4726e0b0 7919 int16_t width = intel_crtc->cursor_width;
5efb3e28 7920 uint32_t cntl = I915_READ(CURCNTR(pipe));
65a21cd6
JB
7921 if (base) {
7922 cntl &= ~CURSOR_MODE;
4726e0b0
SK
7923 cntl |= MCURSOR_GAMMA_ENABLE;
7924 switch (width) {
7925 case 64:
7926 cntl |= CURSOR_MODE_64_ARGB_AX;
7927 break;
7928 case 128:
7929 cntl |= CURSOR_MODE_128_ARGB_AX;
7930 break;
7931 case 256:
7932 cntl |= CURSOR_MODE_256_ARGB_AX;
7933 break;
7934 default:
7935 WARN_ON(1);
7936 return;
7937 }
65a21cd6
JB
7938 } else {
7939 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7940 cntl |= CURSOR_MODE_DISABLE;
7941 }
6bbfa1c5 7942 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
86d3efce 7943 cntl |= CURSOR_PIPE_CSC_ENABLE;
1f5d76db
PZ
7944 cntl &= ~CURSOR_TRICKLE_FEED_DISABLE;
7945 }
5efb3e28 7946 I915_WRITE(CURCNTR(pipe), cntl);
65a21cd6
JB
7947
7948 intel_crtc->cursor_visible = visible;
7949 }
7950 /* and commit changes on next vblank */
5efb3e28
VS
7951 POSTING_READ(CURCNTR(pipe));
7952 I915_WRITE(CURBASE(pipe), base);
7953 POSTING_READ(CURBASE(pipe));
65a21cd6
JB
7954}
7955
cda4b7d3 7956/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f
CW
7957static void intel_crtc_update_cursor(struct drm_crtc *crtc,
7958 bool on)
cda4b7d3
CW
7959{
7960 struct drm_device *dev = crtc->dev;
7961 struct drm_i915_private *dev_priv = dev->dev_private;
7962 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7963 int pipe = intel_crtc->pipe;
7964 int x = intel_crtc->cursor_x;
7965 int y = intel_crtc->cursor_y;
d6e4db15 7966 u32 base = 0, pos = 0;
cda4b7d3
CW
7967 bool visible;
7968
d6e4db15 7969 if (on)
cda4b7d3 7970 base = intel_crtc->cursor_addr;
cda4b7d3 7971
d6e4db15
VS
7972 if (x >= intel_crtc->config.pipe_src_w)
7973 base = 0;
7974
7975 if (y >= intel_crtc->config.pipe_src_h)
cda4b7d3
CW
7976 base = 0;
7977
7978 if (x < 0) {
efc9064e 7979 if (x + intel_crtc->cursor_width <= 0)
cda4b7d3
CW
7980 base = 0;
7981
7982 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
7983 x = -x;
7984 }
7985 pos |= x << CURSOR_X_SHIFT;
7986
7987 if (y < 0) {
efc9064e 7988 if (y + intel_crtc->cursor_height <= 0)
cda4b7d3
CW
7989 base = 0;
7990
7991 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
7992 y = -y;
7993 }
7994 pos |= y << CURSOR_Y_SHIFT;
7995
7996 visible = base != 0;
560b85bb 7997 if (!visible && !intel_crtc->cursor_visible)
cda4b7d3
CW
7998 return;
7999
5efb3e28
VS
8000 I915_WRITE(CURPOS(pipe), pos);
8001
8002 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev) || IS_BROADWELL(dev))
65a21cd6 8003 ivb_update_cursor(crtc, base);
5efb3e28
VS
8004 else if (IS_845G(dev) || IS_I865G(dev))
8005 i845_update_cursor(crtc, base);
8006 else
8007 i9xx_update_cursor(crtc, base);
cda4b7d3
CW
8008}
8009
79e53945 8010static int intel_crtc_cursor_set(struct drm_crtc *crtc,
05394f39 8011 struct drm_file *file,
79e53945
JB
8012 uint32_t handle,
8013 uint32_t width, uint32_t height)
8014{
8015 struct drm_device *dev = crtc->dev;
8016 struct drm_i915_private *dev_priv = dev->dev_private;
8017 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
05394f39 8018 struct drm_i915_gem_object *obj;
64f962e3 8019 unsigned old_width;
cda4b7d3 8020 uint32_t addr;
3f8bc370 8021 int ret;
79e53945 8022
79e53945
JB
8023 /* if we want to turn off the cursor ignore width and height */
8024 if (!handle) {
28c97730 8025 DRM_DEBUG_KMS("cursor off\n");
3f8bc370 8026 addr = 0;
05394f39 8027 obj = NULL;
5004417d 8028 mutex_lock(&dev->struct_mutex);
3f8bc370 8029 goto finish;
79e53945
JB
8030 }
8031
4726e0b0
SK
8032 /* Check for which cursor types we support */
8033 if (!((width == 64 && height == 64) ||
8034 (width == 128 && height == 128 && !IS_GEN2(dev)) ||
8035 (width == 256 && height == 256 && !IS_GEN2(dev)))) {
8036 DRM_DEBUG("Cursor dimension not supported\n");
79e53945
JB
8037 return -EINVAL;
8038 }
8039
05394f39 8040 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
c8725226 8041 if (&obj->base == NULL)
79e53945
JB
8042 return -ENOENT;
8043
05394f39 8044 if (obj->base.size < width * height * 4) {
3b25b31f 8045 DRM_DEBUG_KMS("buffer is to small\n");
34b8686e
DA
8046 ret = -ENOMEM;
8047 goto fail;
79e53945
JB
8048 }
8049
71acb5eb 8050 /* we only need to pin inside GTT if cursor is non-phy */
7f9872e0 8051 mutex_lock(&dev->struct_mutex);
3d13ef2e 8052 if (!INTEL_INFO(dev)->cursor_needs_physical) {
693db184
CW
8053 unsigned alignment;
8054
d9e86c0e 8055 if (obj->tiling_mode) {
3b25b31f 8056 DRM_DEBUG_KMS("cursor cannot be tiled\n");
d9e86c0e
CW
8057 ret = -EINVAL;
8058 goto fail_locked;
8059 }
8060
693db184
CW
8061 /* Note that the w/a also requires 2 PTE of padding following
8062 * the bo. We currently fill all unused PTE with the shadow
8063 * page and so we should always have valid PTE following the
8064 * cursor preventing the VT-d warning.
8065 */
8066 alignment = 0;
8067 if (need_vtd_wa(dev))
8068 alignment = 64*1024;
8069
8070 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
e7b526bb 8071 if (ret) {
3b25b31f 8072 DRM_DEBUG_KMS("failed to move cursor bo into the GTT\n");
2da3b9b9 8073 goto fail_locked;
e7b526bb
CW
8074 }
8075
d9e86c0e
CW
8076 ret = i915_gem_object_put_fence(obj);
8077 if (ret) {
3b25b31f 8078 DRM_DEBUG_KMS("failed to release fence for cursor");
d9e86c0e
CW
8079 goto fail_unpin;
8080 }
8081
f343c5f6 8082 addr = i915_gem_obj_ggtt_offset(obj);
71acb5eb 8083 } else {
6eeefaf3 8084 int align = IS_I830(dev) ? 16 * 1024 : 256;
05394f39 8085 ret = i915_gem_attach_phys_object(dev, obj,
6eeefaf3
CW
8086 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
8087 align);
71acb5eb 8088 if (ret) {
3b25b31f 8089 DRM_DEBUG_KMS("failed to attach phys object\n");
7f9872e0 8090 goto fail_locked;
71acb5eb 8091 }
05394f39 8092 addr = obj->phys_obj->handle->busaddr;
3f8bc370
KH
8093 }
8094
a6c45cf0 8095 if (IS_GEN2(dev))
14b60391
JB
8096 I915_WRITE(CURSIZE, (height << 12) | width);
8097
3f8bc370 8098 finish:
3f8bc370 8099 if (intel_crtc->cursor_bo) {
3d13ef2e 8100 if (INTEL_INFO(dev)->cursor_needs_physical) {
05394f39 8101 if (intel_crtc->cursor_bo != obj)
71acb5eb
DA
8102 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
8103 } else
cc98b413 8104 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
05394f39 8105 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
3f8bc370 8106 }
80824003 8107
7f9872e0 8108 mutex_unlock(&dev->struct_mutex);
3f8bc370 8109
64f962e3
CW
8110 old_width = intel_crtc->cursor_width;
8111
3f8bc370 8112 intel_crtc->cursor_addr = addr;
05394f39 8113 intel_crtc->cursor_bo = obj;
cda4b7d3
CW
8114 intel_crtc->cursor_width = width;
8115 intel_crtc->cursor_height = height;
8116
64f962e3
CW
8117 if (intel_crtc->active) {
8118 if (old_width != width)
8119 intel_update_watermarks(crtc);
f2f5f771 8120 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
64f962e3 8121 }
3f8bc370 8122
79e53945 8123 return 0;
e7b526bb 8124fail_unpin:
cc98b413 8125 i915_gem_object_unpin_from_display_plane(obj);
7f9872e0 8126fail_locked:
34b8686e 8127 mutex_unlock(&dev->struct_mutex);
bc9025bd 8128fail:
05394f39 8129 drm_gem_object_unreference_unlocked(&obj->base);
34b8686e 8130 return ret;
79e53945
JB
8131}
8132
8133static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
8134{
79e53945 8135 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8136
92e76c8c
VS
8137 intel_crtc->cursor_x = clamp_t(int, x, SHRT_MIN, SHRT_MAX);
8138 intel_crtc->cursor_y = clamp_t(int, y, SHRT_MIN, SHRT_MAX);
652c393a 8139
f2f5f771
VS
8140 if (intel_crtc->active)
8141 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
79e53945
JB
8142
8143 return 0;
b8c00ac5
DA
8144}
8145
79e53945 8146static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
7203425a 8147 u16 *blue, uint32_t start, uint32_t size)
79e53945 8148{
7203425a 8149 int end = (start + size > 256) ? 256 : start + size, i;
79e53945 8150 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8151
7203425a 8152 for (i = start; i < end; i++) {
79e53945
JB
8153 intel_crtc->lut_r[i] = red[i] >> 8;
8154 intel_crtc->lut_g[i] = green[i] >> 8;
8155 intel_crtc->lut_b[i] = blue[i] >> 8;
8156 }
8157
8158 intel_crtc_load_lut(crtc);
8159}
8160
79e53945
JB
8161/* VESA 640x480x72Hz mode to set on the pipe */
8162static struct drm_display_mode load_detect_mode = {
8163 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8164 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8165};
8166
a8bb6818
DV
8167struct drm_framebuffer *
8168__intel_framebuffer_create(struct drm_device *dev,
8169 struct drm_mode_fb_cmd2 *mode_cmd,
8170 struct drm_i915_gem_object *obj)
d2dff872
CW
8171{
8172 struct intel_framebuffer *intel_fb;
8173 int ret;
8174
8175 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8176 if (!intel_fb) {
8177 drm_gem_object_unreference_unlocked(&obj->base);
8178 return ERR_PTR(-ENOMEM);
8179 }
8180
8181 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
dd4916c5
DV
8182 if (ret)
8183 goto err;
d2dff872
CW
8184
8185 return &intel_fb->base;
dd4916c5
DV
8186err:
8187 drm_gem_object_unreference_unlocked(&obj->base);
8188 kfree(intel_fb);
8189
8190 return ERR_PTR(ret);
d2dff872
CW
8191}
8192
b5ea642a 8193static struct drm_framebuffer *
a8bb6818
DV
8194intel_framebuffer_create(struct drm_device *dev,
8195 struct drm_mode_fb_cmd2 *mode_cmd,
8196 struct drm_i915_gem_object *obj)
8197{
8198 struct drm_framebuffer *fb;
8199 int ret;
8200
8201 ret = i915_mutex_lock_interruptible(dev);
8202 if (ret)
8203 return ERR_PTR(ret);
8204 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8205 mutex_unlock(&dev->struct_mutex);
8206
8207 return fb;
8208}
8209
d2dff872
CW
8210static u32
8211intel_framebuffer_pitch_for_width(int width, int bpp)
8212{
8213 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8214 return ALIGN(pitch, 64);
8215}
8216
8217static u32
8218intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8219{
8220 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
8221 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
8222}
8223
8224static struct drm_framebuffer *
8225intel_framebuffer_create_for_mode(struct drm_device *dev,
8226 struct drm_display_mode *mode,
8227 int depth, int bpp)
8228{
8229 struct drm_i915_gem_object *obj;
0fed39bd 8230 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872
CW
8231
8232 obj = i915_gem_alloc_object(dev,
8233 intel_framebuffer_size_for_mode(mode, bpp));
8234 if (obj == NULL)
8235 return ERR_PTR(-ENOMEM);
8236
8237 mode_cmd.width = mode->hdisplay;
8238 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
8239 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8240 bpp);
5ca0c34a 8241 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872
CW
8242
8243 return intel_framebuffer_create(dev, &mode_cmd, obj);
8244}
8245
8246static struct drm_framebuffer *
8247mode_fits_in_fbdev(struct drm_device *dev,
8248 struct drm_display_mode *mode)
8249{
4520f53a 8250#ifdef CONFIG_DRM_I915_FBDEV
d2dff872
CW
8251 struct drm_i915_private *dev_priv = dev->dev_private;
8252 struct drm_i915_gem_object *obj;
8253 struct drm_framebuffer *fb;
8254
4c0e5528 8255 if (!dev_priv->fbdev)
d2dff872
CW
8256 return NULL;
8257
4c0e5528 8258 if (!dev_priv->fbdev->fb)
d2dff872
CW
8259 return NULL;
8260
4c0e5528
DV
8261 obj = dev_priv->fbdev->fb->obj;
8262 BUG_ON(!obj);
8263
8bcd4553 8264 fb = &dev_priv->fbdev->fb->base;
01f2c773
VS
8265 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8266 fb->bits_per_pixel))
d2dff872
CW
8267 return NULL;
8268
01f2c773 8269 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
8270 return NULL;
8271
8272 return fb;
4520f53a
DV
8273#else
8274 return NULL;
8275#endif
d2dff872
CW
8276}
8277
d2434ab7 8278bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 8279 struct drm_display_mode *mode,
8261b191 8280 struct intel_load_detect_pipe *old)
79e53945
JB
8281{
8282 struct intel_crtc *intel_crtc;
d2434ab7
DV
8283 struct intel_encoder *intel_encoder =
8284 intel_attached_encoder(connector);
79e53945 8285 struct drm_crtc *possible_crtc;
4ef69c7a 8286 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
8287 struct drm_crtc *crtc = NULL;
8288 struct drm_device *dev = encoder->dev;
94352cf9 8289 struct drm_framebuffer *fb;
79e53945
JB
8290 int i = -1;
8291
d2dff872
CW
8292 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8293 connector->base.id, drm_get_connector_name(connector),
8294 encoder->base.id, drm_get_encoder_name(encoder));
8295
79e53945
JB
8296 /*
8297 * Algorithm gets a little messy:
7a5e4805 8298 *
79e53945
JB
8299 * - if the connector already has an assigned crtc, use it (but make
8300 * sure it's on first)
7a5e4805 8301 *
79e53945
JB
8302 * - try to find the first unused crtc that can drive this connector,
8303 * and use that if we find one
79e53945
JB
8304 */
8305
8306 /* See if we already have a CRTC for this connector */
8307 if (encoder->crtc) {
8308 crtc = encoder->crtc;
8261b191 8309
7b24056b
DV
8310 mutex_lock(&crtc->mutex);
8311
24218aac 8312 old->dpms_mode = connector->dpms;
8261b191
CW
8313 old->load_detect_temp = false;
8314
8315 /* Make sure the crtc and connector are running */
24218aac
DV
8316 if (connector->dpms != DRM_MODE_DPMS_ON)
8317 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
8261b191 8318
7173188d 8319 return true;
79e53945
JB
8320 }
8321
8322 /* Find an unused one (if possible) */
70e1e0ec 8323 for_each_crtc(dev, possible_crtc) {
79e53945
JB
8324 i++;
8325 if (!(encoder->possible_crtcs & (1 << i)))
8326 continue;
8327 if (!possible_crtc->enabled) {
8328 crtc = possible_crtc;
8329 break;
8330 }
79e53945
JB
8331 }
8332
8333 /*
8334 * If we didn't find an unused CRTC, don't use any.
8335 */
8336 if (!crtc) {
7173188d
CW
8337 DRM_DEBUG_KMS("no pipe available for load-detect\n");
8338 return false;
79e53945
JB
8339 }
8340
7b24056b 8341 mutex_lock(&crtc->mutex);
fc303101
DV
8342 intel_encoder->new_crtc = to_intel_crtc(crtc);
8343 to_intel_connector(connector)->new_encoder = intel_encoder;
79e53945
JB
8344
8345 intel_crtc = to_intel_crtc(crtc);
412b61d8
VS
8346 intel_crtc->new_enabled = true;
8347 intel_crtc->new_config = &intel_crtc->config;
24218aac 8348 old->dpms_mode = connector->dpms;
8261b191 8349 old->load_detect_temp = true;
d2dff872 8350 old->release_fb = NULL;
79e53945 8351
6492711d
CW
8352 if (!mode)
8353 mode = &load_detect_mode;
79e53945 8354
d2dff872
CW
8355 /* We need a framebuffer large enough to accommodate all accesses
8356 * that the plane may generate whilst we perform load detection.
8357 * We can not rely on the fbcon either being present (we get called
8358 * during its initialisation to detect all boot displays, or it may
8359 * not even exist) or that it is large enough to satisfy the
8360 * requested mode.
8361 */
94352cf9
DV
8362 fb = mode_fits_in_fbdev(dev, mode);
8363 if (fb == NULL) {
d2dff872 8364 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9
DV
8365 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8366 old->release_fb = fb;
d2dff872
CW
8367 } else
8368 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 8369 if (IS_ERR(fb)) {
d2dff872 8370 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
412b61d8 8371 goto fail;
79e53945 8372 }
79e53945 8373
c0c36b94 8374 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
6492711d 8375 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
d2dff872
CW
8376 if (old->release_fb)
8377 old->release_fb->funcs->destroy(old->release_fb);
412b61d8 8378 goto fail;
79e53945 8379 }
7173188d 8380
79e53945 8381 /* let the connector get through one full cycle before testing */
9d0498a2 8382 intel_wait_for_vblank(dev, intel_crtc->pipe);
7173188d 8383 return true;
412b61d8
VS
8384
8385 fail:
8386 intel_crtc->new_enabled = crtc->enabled;
8387 if (intel_crtc->new_enabled)
8388 intel_crtc->new_config = &intel_crtc->config;
8389 else
8390 intel_crtc->new_config = NULL;
8391 mutex_unlock(&crtc->mutex);
8392 return false;
79e53945
JB
8393}
8394
d2434ab7 8395void intel_release_load_detect_pipe(struct drm_connector *connector,
8261b191 8396 struct intel_load_detect_pipe *old)
79e53945 8397{
d2434ab7
DV
8398 struct intel_encoder *intel_encoder =
8399 intel_attached_encoder(connector);
4ef69c7a 8400 struct drm_encoder *encoder = &intel_encoder->base;
7b24056b 8401 struct drm_crtc *crtc = encoder->crtc;
412b61d8 8402 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 8403
d2dff872
CW
8404 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8405 connector->base.id, drm_get_connector_name(connector),
8406 encoder->base.id, drm_get_encoder_name(encoder));
8407
8261b191 8408 if (old->load_detect_temp) {
fc303101
DV
8409 to_intel_connector(connector)->new_encoder = NULL;
8410 intel_encoder->new_crtc = NULL;
412b61d8
VS
8411 intel_crtc->new_enabled = false;
8412 intel_crtc->new_config = NULL;
fc303101 8413 intel_set_mode(crtc, NULL, 0, 0, NULL);
d2dff872 8414
36206361
DV
8415 if (old->release_fb) {
8416 drm_framebuffer_unregister_private(old->release_fb);
8417 drm_framebuffer_unreference(old->release_fb);
8418 }
d2dff872 8419
67c96400 8420 mutex_unlock(&crtc->mutex);
0622a53c 8421 return;
79e53945
JB
8422 }
8423
c751ce4f 8424 /* Switch crtc and encoder back off if necessary */
24218aac
DV
8425 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8426 connector->funcs->dpms(connector, old->dpms_mode);
7b24056b
DV
8427
8428 mutex_unlock(&crtc->mutex);
79e53945
JB
8429}
8430
da4a1efa
VS
8431static int i9xx_pll_refclk(struct drm_device *dev,
8432 const struct intel_crtc_config *pipe_config)
8433{
8434 struct drm_i915_private *dev_priv = dev->dev_private;
8435 u32 dpll = pipe_config->dpll_hw_state.dpll;
8436
8437 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
e91e941b 8438 return dev_priv->vbt.lvds_ssc_freq;
da4a1efa
VS
8439 else if (HAS_PCH_SPLIT(dev))
8440 return 120000;
8441 else if (!IS_GEN2(dev))
8442 return 96000;
8443 else
8444 return 48000;
8445}
8446
79e53945 8447/* Returns the clock of the currently programmed mode of the given pipe. */
f1f644dc
JB
8448static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
8449 struct intel_crtc_config *pipe_config)
79e53945 8450{
f1f644dc 8451 struct drm_device *dev = crtc->base.dev;
79e53945 8452 struct drm_i915_private *dev_priv = dev->dev_private;
f1f644dc 8453 int pipe = pipe_config->cpu_transcoder;
293623f7 8454 u32 dpll = pipe_config->dpll_hw_state.dpll;
79e53945
JB
8455 u32 fp;
8456 intel_clock_t clock;
da4a1efa 8457 int refclk = i9xx_pll_refclk(dev, pipe_config);
79e53945
JB
8458
8459 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
293623f7 8460 fp = pipe_config->dpll_hw_state.fp0;
79e53945 8461 else
293623f7 8462 fp = pipe_config->dpll_hw_state.fp1;
79e53945
JB
8463
8464 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
8465 if (IS_PINEVIEW(dev)) {
8466 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8467 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
8468 } else {
8469 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8470 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8471 }
8472
a6c45cf0 8473 if (!IS_GEN2(dev)) {
f2b115e6
AJ
8474 if (IS_PINEVIEW(dev))
8475 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8476 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
8477 else
8478 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
8479 DPLL_FPA01_P1_POST_DIV_SHIFT);
8480
8481 switch (dpll & DPLL_MODE_MASK) {
8482 case DPLLB_MODE_DAC_SERIAL:
8483 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8484 5 : 10;
8485 break;
8486 case DPLLB_MODE_LVDS:
8487 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8488 7 : 14;
8489 break;
8490 default:
28c97730 8491 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945 8492 "mode\n", (int)(dpll & DPLL_MODE_MASK));
f1f644dc 8493 return;
79e53945
JB
8494 }
8495
ac58c3f0 8496 if (IS_PINEVIEW(dev))
da4a1efa 8497 pineview_clock(refclk, &clock);
ac58c3f0 8498 else
da4a1efa 8499 i9xx_clock(refclk, &clock);
79e53945 8500 } else {
0fb58223 8501 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
b1c560d1 8502 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
79e53945
JB
8503
8504 if (is_lvds) {
8505 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8506 DPLL_FPA01_P1_POST_DIV_SHIFT);
b1c560d1
VS
8507
8508 if (lvds & LVDS_CLKB_POWER_UP)
8509 clock.p2 = 7;
8510 else
8511 clock.p2 = 14;
79e53945
JB
8512 } else {
8513 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8514 clock.p1 = 2;
8515 else {
8516 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8517 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8518 }
8519 if (dpll & PLL_P2_DIVIDE_BY_4)
8520 clock.p2 = 4;
8521 else
8522 clock.p2 = 2;
79e53945 8523 }
da4a1efa
VS
8524
8525 i9xx_clock(refclk, &clock);
79e53945
JB
8526 }
8527
18442d08
VS
8528 /*
8529 * This value includes pixel_multiplier. We will use
241bfc38 8530 * port_clock to compute adjusted_mode.crtc_clock in the
18442d08
VS
8531 * encoder's get_config() function.
8532 */
8533 pipe_config->port_clock = clock.dot;
f1f644dc
JB
8534}
8535
6878da05
VS
8536int intel_dotclock_calculate(int link_freq,
8537 const struct intel_link_m_n *m_n)
f1f644dc 8538{
f1f644dc
JB
8539 /*
8540 * The calculation for the data clock is:
1041a02f 8541 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
f1f644dc 8542 * But we want to avoid losing precison if possible, so:
1041a02f 8543 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
f1f644dc
JB
8544 *
8545 * and the link clock is simpler:
1041a02f 8546 * link_clock = (m * link_clock) / n
f1f644dc
JB
8547 */
8548
6878da05
VS
8549 if (!m_n->link_n)
8550 return 0;
f1f644dc 8551
6878da05
VS
8552 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8553}
f1f644dc 8554
18442d08
VS
8555static void ironlake_pch_clock_get(struct intel_crtc *crtc,
8556 struct intel_crtc_config *pipe_config)
6878da05
VS
8557{
8558 struct drm_device *dev = crtc->base.dev;
79e53945 8559
18442d08
VS
8560 /* read out port_clock from the DPLL */
8561 i9xx_crtc_clock_get(crtc, pipe_config);
f1f644dc 8562
f1f644dc 8563 /*
18442d08 8564 * This value does not include pixel_multiplier.
241bfc38 8565 * We will check that port_clock and adjusted_mode.crtc_clock
18442d08
VS
8566 * agree once we know their relationship in the encoder's
8567 * get_config() function.
79e53945 8568 */
241bfc38 8569 pipe_config->adjusted_mode.crtc_clock =
18442d08
VS
8570 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8571 &pipe_config->fdi_m_n);
79e53945
JB
8572}
8573
8574/** Returns the currently programmed mode of the given pipe. */
8575struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8576 struct drm_crtc *crtc)
8577{
548f245b 8578 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 8579 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3b117c8f 8580 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
79e53945 8581 struct drm_display_mode *mode;
f1f644dc 8582 struct intel_crtc_config pipe_config;
fe2b8f9d
PZ
8583 int htot = I915_READ(HTOTAL(cpu_transcoder));
8584 int hsync = I915_READ(HSYNC(cpu_transcoder));
8585 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8586 int vsync = I915_READ(VSYNC(cpu_transcoder));
293623f7 8587 enum pipe pipe = intel_crtc->pipe;
79e53945
JB
8588
8589 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8590 if (!mode)
8591 return NULL;
8592
f1f644dc
JB
8593 /*
8594 * Construct a pipe_config sufficient for getting the clock info
8595 * back out of crtc_clock_get.
8596 *
8597 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8598 * to use a real value here instead.
8599 */
293623f7 8600 pipe_config.cpu_transcoder = (enum transcoder) pipe;
f1f644dc 8601 pipe_config.pixel_multiplier = 1;
293623f7
VS
8602 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8603 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8604 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
f1f644dc
JB
8605 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8606
773ae034 8607 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
79e53945
JB
8608 mode->hdisplay = (htot & 0xffff) + 1;
8609 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8610 mode->hsync_start = (hsync & 0xffff) + 1;
8611 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8612 mode->vdisplay = (vtot & 0xffff) + 1;
8613 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8614 mode->vsync_start = (vsync & 0xffff) + 1;
8615 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8616
8617 drm_mode_set_name(mode);
79e53945
JB
8618
8619 return mode;
8620}
8621
3dec0095 8622static void intel_increase_pllclock(struct drm_crtc *crtc)
652c393a
JB
8623{
8624 struct drm_device *dev = crtc->dev;
fbee40df 8625 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a
JB
8626 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8627 int pipe = intel_crtc->pipe;
dbdc6479
JB
8628 int dpll_reg = DPLL(pipe);
8629 int dpll;
652c393a 8630
bad720ff 8631 if (HAS_PCH_SPLIT(dev))
652c393a
JB
8632 return;
8633
8634 if (!dev_priv->lvds_downclock_avail)
8635 return;
8636
dbdc6479 8637 dpll = I915_READ(dpll_reg);
652c393a 8638 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
44d98a61 8639 DRM_DEBUG_DRIVER("upclocking LVDS\n");
652c393a 8640
8ac5a6d5 8641 assert_panel_unlocked(dev_priv, pipe);
652c393a
JB
8642
8643 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
8644 I915_WRITE(dpll_reg, dpll);
9d0498a2 8645 intel_wait_for_vblank(dev, pipe);
dbdc6479 8646
652c393a
JB
8647 dpll = I915_READ(dpll_reg);
8648 if (dpll & DISPLAY_RATE_SELECT_FPA1)
44d98a61 8649 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
652c393a 8650 }
652c393a
JB
8651}
8652
8653static void intel_decrease_pllclock(struct drm_crtc *crtc)
8654{
8655 struct drm_device *dev = crtc->dev;
fbee40df 8656 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 8657 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
652c393a 8658
bad720ff 8659 if (HAS_PCH_SPLIT(dev))
652c393a
JB
8660 return;
8661
8662 if (!dev_priv->lvds_downclock_avail)
8663 return;
8664
8665 /*
8666 * Since this is called by a timer, we should never get here in
8667 * the manual case.
8668 */
8669 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
dc257cf1
DV
8670 int pipe = intel_crtc->pipe;
8671 int dpll_reg = DPLL(pipe);
8672 int dpll;
f6e5b160 8673
44d98a61 8674 DRM_DEBUG_DRIVER("downclocking LVDS\n");
652c393a 8675
8ac5a6d5 8676 assert_panel_unlocked(dev_priv, pipe);
652c393a 8677
dc257cf1 8678 dpll = I915_READ(dpll_reg);
652c393a
JB
8679 dpll |= DISPLAY_RATE_SELECT_FPA1;
8680 I915_WRITE(dpll_reg, dpll);
9d0498a2 8681 intel_wait_for_vblank(dev, pipe);
652c393a
JB
8682 dpll = I915_READ(dpll_reg);
8683 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
44d98a61 8684 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
652c393a
JB
8685 }
8686
8687}
8688
f047e395
CW
8689void intel_mark_busy(struct drm_device *dev)
8690{
c67a470b
PZ
8691 struct drm_i915_private *dev_priv = dev->dev_private;
8692
f62a0076
CW
8693 if (dev_priv->mm.busy)
8694 return;
8695
43694d69 8696 intel_runtime_pm_get(dev_priv);
c67a470b 8697 i915_update_gfx_val(dev_priv);
f62a0076 8698 dev_priv->mm.busy = true;
f047e395
CW
8699}
8700
8701void intel_mark_idle(struct drm_device *dev)
652c393a 8702{
c67a470b 8703 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 8704 struct drm_crtc *crtc;
652c393a 8705
f62a0076
CW
8706 if (!dev_priv->mm.busy)
8707 return;
8708
8709 dev_priv->mm.busy = false;
8710
d330a953 8711 if (!i915.powersave)
bb4cdd53 8712 goto out;
652c393a 8713
70e1e0ec 8714 for_each_crtc(dev, crtc) {
f4510a27 8715 if (!crtc->primary->fb)
652c393a
JB
8716 continue;
8717
725a5b54 8718 intel_decrease_pllclock(crtc);
652c393a 8719 }
b29c19b6 8720
3d13ef2e 8721 if (INTEL_INFO(dev)->gen >= 6)
b29c19b6 8722 gen6_rps_idle(dev->dev_private);
bb4cdd53
PZ
8723
8724out:
43694d69 8725 intel_runtime_pm_put(dev_priv);
652c393a
JB
8726}
8727
c65355bb
CW
8728void intel_mark_fb_busy(struct drm_i915_gem_object *obj,
8729 struct intel_ring_buffer *ring)
652c393a 8730{
f047e395
CW
8731 struct drm_device *dev = obj->base.dev;
8732 struct drm_crtc *crtc;
652c393a 8733
d330a953 8734 if (!i915.powersave)
acb87dfb
CW
8735 return;
8736
70e1e0ec 8737 for_each_crtc(dev, crtc) {
f4510a27 8738 if (!crtc->primary->fb)
652c393a
JB
8739 continue;
8740
f4510a27 8741 if (to_intel_framebuffer(crtc->primary->fb)->obj != obj)
c65355bb
CW
8742 continue;
8743
8744 intel_increase_pllclock(crtc);
8745 if (ring && intel_fbc_enabled(dev))
8746 ring->fbc_dirty = true;
652c393a
JB
8747 }
8748}
8749
79e53945
JB
8750static void intel_crtc_destroy(struct drm_crtc *crtc)
8751{
8752 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a
DV
8753 struct drm_device *dev = crtc->dev;
8754 struct intel_unpin_work *work;
8755 unsigned long flags;
8756
8757 spin_lock_irqsave(&dev->event_lock, flags);
8758 work = intel_crtc->unpin_work;
8759 intel_crtc->unpin_work = NULL;
8760 spin_unlock_irqrestore(&dev->event_lock, flags);
8761
8762 if (work) {
8763 cancel_work_sync(&work->work);
8764 kfree(work);
8765 }
79e53945 8766
40ccc72b
MK
8767 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
8768
79e53945 8769 drm_crtc_cleanup(crtc);
67e77c5a 8770
79e53945
JB
8771 kfree(intel_crtc);
8772}
8773
6b95a207
KH
8774static void intel_unpin_work_fn(struct work_struct *__work)
8775{
8776 struct intel_unpin_work *work =
8777 container_of(__work, struct intel_unpin_work, work);
b4a98e57 8778 struct drm_device *dev = work->crtc->dev;
6b95a207 8779
b4a98e57 8780 mutex_lock(&dev->struct_mutex);
1690e1eb 8781 intel_unpin_fb_obj(work->old_fb_obj);
05394f39
CW
8782 drm_gem_object_unreference(&work->pending_flip_obj->base);
8783 drm_gem_object_unreference(&work->old_fb_obj->base);
d9e86c0e 8784
b4a98e57
CW
8785 intel_update_fbc(dev);
8786 mutex_unlock(&dev->struct_mutex);
8787
8788 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
8789 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
8790
6b95a207
KH
8791 kfree(work);
8792}
8793
1afe3e9d 8794static void do_intel_finish_page_flip(struct drm_device *dev,
49b14a5c 8795 struct drm_crtc *crtc)
6b95a207 8796{
fbee40df 8797 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
8798 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8799 struct intel_unpin_work *work;
6b95a207
KH
8800 unsigned long flags;
8801
8802 /* Ignore early vblank irqs */
8803 if (intel_crtc == NULL)
8804 return;
8805
8806 spin_lock_irqsave(&dev->event_lock, flags);
8807 work = intel_crtc->unpin_work;
e7d841ca
CW
8808
8809 /* Ensure we don't miss a work->pending update ... */
8810 smp_rmb();
8811
8812 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
6b95a207
KH
8813 spin_unlock_irqrestore(&dev->event_lock, flags);
8814 return;
8815 }
8816
e7d841ca
CW
8817 /* and that the unpin work is consistent wrt ->pending. */
8818 smp_rmb();
8819
6b95a207 8820 intel_crtc->unpin_work = NULL;
6b95a207 8821
45a066eb
RC
8822 if (work->event)
8823 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
6b95a207 8824
87b6b101 8825 drm_crtc_vblank_put(crtc);
0af7e4df 8826
6b95a207
KH
8827 spin_unlock_irqrestore(&dev->event_lock, flags);
8828
2c10d571 8829 wake_up_all(&dev_priv->pending_flip_queue);
b4a98e57
CW
8830
8831 queue_work(dev_priv->wq, &work->work);
e5510fac
JB
8832
8833 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
6b95a207
KH
8834}
8835
1afe3e9d
JB
8836void intel_finish_page_flip(struct drm_device *dev, int pipe)
8837{
fbee40df 8838 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
8839 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
8840
49b14a5c 8841 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
8842}
8843
8844void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
8845{
fbee40df 8846 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
8847 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
8848
49b14a5c 8849 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
8850}
8851
75f7f3ec
VS
8852/* Is 'a' after or equal to 'b'? */
8853static bool g4x_flip_count_after_eq(u32 a, u32 b)
8854{
8855 return !((a - b) & 0x80000000);
8856}
8857
8858static bool page_flip_finished(struct intel_crtc *crtc)
8859{
8860 struct drm_device *dev = crtc->base.dev;
8861 struct drm_i915_private *dev_priv = dev->dev_private;
8862
8863 /*
8864 * The relevant registers doen't exist on pre-ctg.
8865 * As the flip done interrupt doesn't trigger for mmio
8866 * flips on gmch platforms, a flip count check isn't
8867 * really needed there. But since ctg has the registers,
8868 * include it in the check anyway.
8869 */
8870 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
8871 return true;
8872
8873 /*
8874 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
8875 * used the same base address. In that case the mmio flip might
8876 * have completed, but the CS hasn't even executed the flip yet.
8877 *
8878 * A flip count check isn't enough as the CS might have updated
8879 * the base address just after start of vblank, but before we
8880 * managed to process the interrupt. This means we'd complete the
8881 * CS flip too soon.
8882 *
8883 * Combining both checks should get us a good enough result. It may
8884 * still happen that the CS flip has been executed, but has not
8885 * yet actually completed. But in case the base address is the same
8886 * anyway, we don't really care.
8887 */
8888 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
8889 crtc->unpin_work->gtt_offset &&
8890 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
8891 crtc->unpin_work->flip_count);
8892}
8893
6b95a207
KH
8894void intel_prepare_page_flip(struct drm_device *dev, int plane)
8895{
fbee40df 8896 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
8897 struct intel_crtc *intel_crtc =
8898 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
8899 unsigned long flags;
8900
e7d841ca
CW
8901 /* NB: An MMIO update of the plane base pointer will also
8902 * generate a page-flip completion irq, i.e. every modeset
8903 * is also accompanied by a spurious intel_prepare_page_flip().
8904 */
6b95a207 8905 spin_lock_irqsave(&dev->event_lock, flags);
75f7f3ec 8906 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
e7d841ca 8907 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
6b95a207
KH
8908 spin_unlock_irqrestore(&dev->event_lock, flags);
8909}
8910
eba905b2 8911static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
e7d841ca
CW
8912{
8913 /* Ensure that the work item is consistent when activating it ... */
8914 smp_wmb();
8915 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
8916 /* and that it is marked active as soon as the irq could fire. */
8917 smp_wmb();
8918}
8919
8c9f3aaf
JB
8920static int intel_gen2_queue_flip(struct drm_device *dev,
8921 struct drm_crtc *crtc,
8922 struct drm_framebuffer *fb,
ed8d1975 8923 struct drm_i915_gem_object *obj,
4fa62c89 8924 struct intel_ring_buffer *ring,
ed8d1975 8925 uint32_t flags)
8c9f3aaf 8926{
8c9f3aaf 8927 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
8928 u32 flip_mask;
8929 int ret;
8930
6d90c952 8931 ret = intel_ring_begin(ring, 6);
8c9f3aaf 8932 if (ret)
4fa62c89 8933 return ret;
8c9f3aaf
JB
8934
8935 /* Can't queue multiple flips, so wait for the previous
8936 * one to finish before executing the next.
8937 */
8938 if (intel_crtc->plane)
8939 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8940 else
8941 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
8942 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8943 intel_ring_emit(ring, MI_NOOP);
8944 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8945 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8946 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 8947 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
6d90c952 8948 intel_ring_emit(ring, 0); /* aux display base address, unused */
e7d841ca
CW
8949
8950 intel_mark_page_flip_active(intel_crtc);
09246732 8951 __intel_ring_advance(ring);
83d4092b 8952 return 0;
8c9f3aaf
JB
8953}
8954
8955static int intel_gen3_queue_flip(struct drm_device *dev,
8956 struct drm_crtc *crtc,
8957 struct drm_framebuffer *fb,
ed8d1975 8958 struct drm_i915_gem_object *obj,
4fa62c89 8959 struct intel_ring_buffer *ring,
ed8d1975 8960 uint32_t flags)
8c9f3aaf 8961{
8c9f3aaf 8962 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
8963 u32 flip_mask;
8964 int ret;
8965
6d90c952 8966 ret = intel_ring_begin(ring, 6);
8c9f3aaf 8967 if (ret)
4fa62c89 8968 return ret;
8c9f3aaf
JB
8969
8970 if (intel_crtc->plane)
8971 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8972 else
8973 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
8974 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8975 intel_ring_emit(ring, MI_NOOP);
8976 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
8977 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8978 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 8979 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
6d90c952
DV
8980 intel_ring_emit(ring, MI_NOOP);
8981
e7d841ca 8982 intel_mark_page_flip_active(intel_crtc);
09246732 8983 __intel_ring_advance(ring);
83d4092b 8984 return 0;
8c9f3aaf
JB
8985}
8986
8987static int intel_gen4_queue_flip(struct drm_device *dev,
8988 struct drm_crtc *crtc,
8989 struct drm_framebuffer *fb,
ed8d1975 8990 struct drm_i915_gem_object *obj,
4fa62c89 8991 struct intel_ring_buffer *ring,
ed8d1975 8992 uint32_t flags)
8c9f3aaf
JB
8993{
8994 struct drm_i915_private *dev_priv = dev->dev_private;
8995 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8996 uint32_t pf, pipesrc;
8997 int ret;
8998
6d90c952 8999 ret = intel_ring_begin(ring, 4);
8c9f3aaf 9000 if (ret)
4fa62c89 9001 return ret;
8c9f3aaf
JB
9002
9003 /* i965+ uses the linear or tiled offsets from the
9004 * Display Registers (which do not change across a page-flip)
9005 * so we need only reprogram the base address.
9006 */
6d90c952
DV
9007 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9008 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9009 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 9010 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
c2c75131 9011 obj->tiling_mode);
8c9f3aaf
JB
9012
9013 /* XXX Enabling the panel-fitter across page-flip is so far
9014 * untested on non-native modes, so ignore it for now.
9015 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9016 */
9017 pf = 0;
9018 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 9019 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
9020
9021 intel_mark_page_flip_active(intel_crtc);
09246732 9022 __intel_ring_advance(ring);
83d4092b 9023 return 0;
8c9f3aaf
JB
9024}
9025
9026static int intel_gen6_queue_flip(struct drm_device *dev,
9027 struct drm_crtc *crtc,
9028 struct drm_framebuffer *fb,
ed8d1975 9029 struct drm_i915_gem_object *obj,
4fa62c89 9030 struct intel_ring_buffer *ring,
ed8d1975 9031 uint32_t flags)
8c9f3aaf
JB
9032{
9033 struct drm_i915_private *dev_priv = dev->dev_private;
9034 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9035 uint32_t pf, pipesrc;
9036 int ret;
9037
6d90c952 9038 ret = intel_ring_begin(ring, 4);
8c9f3aaf 9039 if (ret)
4fa62c89 9040 return ret;
8c9f3aaf 9041
6d90c952
DV
9042 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9043 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9044 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
75f7f3ec 9045 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
8c9f3aaf 9046
dc257cf1
DV
9047 /* Contrary to the suggestions in the documentation,
9048 * "Enable Panel Fitter" does not seem to be required when page
9049 * flipping with a non-native mode, and worse causes a normal
9050 * modeset to fail.
9051 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9052 */
9053 pf = 0;
8c9f3aaf 9054 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 9055 intel_ring_emit(ring, pf | pipesrc);
e7d841ca
CW
9056
9057 intel_mark_page_flip_active(intel_crtc);
09246732 9058 __intel_ring_advance(ring);
83d4092b 9059 return 0;
8c9f3aaf
JB
9060}
9061
7c9017e5
JB
9062static int intel_gen7_queue_flip(struct drm_device *dev,
9063 struct drm_crtc *crtc,
9064 struct drm_framebuffer *fb,
ed8d1975 9065 struct drm_i915_gem_object *obj,
4fa62c89 9066 struct intel_ring_buffer *ring,
ed8d1975 9067 uint32_t flags)
7c9017e5 9068{
7c9017e5 9069 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cb05d8de 9070 uint32_t plane_bit = 0;
ffe74d75
CW
9071 int len, ret;
9072
eba905b2 9073 switch (intel_crtc->plane) {
cb05d8de
DV
9074 case PLANE_A:
9075 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9076 break;
9077 case PLANE_B:
9078 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9079 break;
9080 case PLANE_C:
9081 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9082 break;
9083 default:
9084 WARN_ONCE(1, "unknown plane in flip command\n");
4fa62c89 9085 return -ENODEV;
cb05d8de
DV
9086 }
9087
ffe74d75 9088 len = 4;
f476828a 9089 if (ring->id == RCS) {
ffe74d75 9090 len += 6;
f476828a
DL
9091 /*
9092 * On Gen 8, SRM is now taking an extra dword to accommodate
9093 * 48bits addresses, and we need a NOOP for the batch size to
9094 * stay even.
9095 */
9096 if (IS_GEN8(dev))
9097 len += 2;
9098 }
ffe74d75 9099
f66fab8e
VS
9100 /*
9101 * BSpec MI_DISPLAY_FLIP for IVB:
9102 * "The full packet must be contained within the same cache line."
9103 *
9104 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9105 * cacheline, if we ever start emitting more commands before
9106 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9107 * then do the cacheline alignment, and finally emit the
9108 * MI_DISPLAY_FLIP.
9109 */
9110 ret = intel_ring_cacheline_align(ring);
9111 if (ret)
4fa62c89 9112 return ret;
f66fab8e 9113
ffe74d75 9114 ret = intel_ring_begin(ring, len);
7c9017e5 9115 if (ret)
4fa62c89 9116 return ret;
7c9017e5 9117
ffe74d75
CW
9118 /* Unmask the flip-done completion message. Note that the bspec says that
9119 * we should do this for both the BCS and RCS, and that we must not unmask
9120 * more than one flip event at any time (or ensure that one flip message
9121 * can be sent by waiting for flip-done prior to queueing new flips).
9122 * Experimentation says that BCS works despite DERRMR masking all
9123 * flip-done completion events and that unmasking all planes at once
9124 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9125 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9126 */
9127 if (ring->id == RCS) {
9128 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9129 intel_ring_emit(ring, DERRMR);
9130 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9131 DERRMR_PIPEB_PRI_FLIP_DONE |
9132 DERRMR_PIPEC_PRI_FLIP_DONE));
f476828a
DL
9133 if (IS_GEN8(dev))
9134 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9135 MI_SRM_LRM_GLOBAL_GTT);
9136 else
9137 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9138 MI_SRM_LRM_GLOBAL_GTT);
ffe74d75
CW
9139 intel_ring_emit(ring, DERRMR);
9140 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
f476828a
DL
9141 if (IS_GEN8(dev)) {
9142 intel_ring_emit(ring, 0);
9143 intel_ring_emit(ring, MI_NOOP);
9144 }
ffe74d75
CW
9145 }
9146
cb05d8de 9147 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
01f2c773 9148 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
75f7f3ec 9149 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
7c9017e5 9150 intel_ring_emit(ring, (MI_NOOP));
e7d841ca
CW
9151
9152 intel_mark_page_flip_active(intel_crtc);
09246732 9153 __intel_ring_advance(ring);
83d4092b 9154 return 0;
7c9017e5
JB
9155}
9156
8c9f3aaf
JB
9157static int intel_default_queue_flip(struct drm_device *dev,
9158 struct drm_crtc *crtc,
9159 struct drm_framebuffer *fb,
ed8d1975 9160 struct drm_i915_gem_object *obj,
4fa62c89 9161 struct intel_ring_buffer *ring,
ed8d1975 9162 uint32_t flags)
8c9f3aaf
JB
9163{
9164 return -ENODEV;
9165}
9166
6b95a207
KH
9167static int intel_crtc_page_flip(struct drm_crtc *crtc,
9168 struct drm_framebuffer *fb,
ed8d1975
KP
9169 struct drm_pending_vblank_event *event,
9170 uint32_t page_flip_flags)
6b95a207
KH
9171{
9172 struct drm_device *dev = crtc->dev;
9173 struct drm_i915_private *dev_priv = dev->dev_private;
f4510a27 9174 struct drm_framebuffer *old_fb = crtc->primary->fb;
4a35f83b 9175 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
6b95a207
KH
9176 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9177 struct intel_unpin_work *work;
4fa62c89 9178 struct intel_ring_buffer *ring;
8c9f3aaf 9179 unsigned long flags;
52e68630 9180 int ret;
6b95a207 9181
e6a595d2 9182 /* Can't change pixel format via MI display flips. */
f4510a27 9183 if (fb->pixel_format != crtc->primary->fb->pixel_format)
e6a595d2
VS
9184 return -EINVAL;
9185
9186 /*
9187 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9188 * Note that pitch changes could also affect these register.
9189 */
9190 if (INTEL_INFO(dev)->gen > 3 &&
f4510a27
MR
9191 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9192 fb->pitches[0] != crtc->primary->fb->pitches[0]))
e6a595d2
VS
9193 return -EINVAL;
9194
f900db47
CW
9195 if (i915_terminally_wedged(&dev_priv->gpu_error))
9196 goto out_hang;
9197
b14c5679 9198 work = kzalloc(sizeof(*work), GFP_KERNEL);
6b95a207
KH
9199 if (work == NULL)
9200 return -ENOMEM;
9201
6b95a207 9202 work->event = event;
b4a98e57 9203 work->crtc = crtc;
4a35f83b 9204 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
6b95a207
KH
9205 INIT_WORK(&work->work, intel_unpin_work_fn);
9206
87b6b101 9207 ret = drm_crtc_vblank_get(crtc);
7317c75e
JB
9208 if (ret)
9209 goto free_work;
9210
6b95a207
KH
9211 /* We borrow the event spin lock for protecting unpin_work */
9212 spin_lock_irqsave(&dev->event_lock, flags);
9213 if (intel_crtc->unpin_work) {
9214 spin_unlock_irqrestore(&dev->event_lock, flags);
9215 kfree(work);
87b6b101 9216 drm_crtc_vblank_put(crtc);
468f0b44
CW
9217
9218 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
6b95a207
KH
9219 return -EBUSY;
9220 }
9221 intel_crtc->unpin_work = work;
9222 spin_unlock_irqrestore(&dev->event_lock, flags);
9223
b4a98e57
CW
9224 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9225 flush_workqueue(dev_priv->wq);
9226
79158103
CW
9227 ret = i915_mutex_lock_interruptible(dev);
9228 if (ret)
9229 goto cleanup;
6b95a207 9230
75dfca80 9231 /* Reference the objects for the scheduled work. */
05394f39
CW
9232 drm_gem_object_reference(&work->old_fb_obj->base);
9233 drm_gem_object_reference(&obj->base);
6b95a207 9234
f4510a27 9235 crtc->primary->fb = fb;
96b099fd 9236
e1f99ce6 9237 work->pending_flip_obj = obj;
e1f99ce6 9238
4e5359cd
SF
9239 work->enable_stall_check = true;
9240
b4a98e57 9241 atomic_inc(&intel_crtc->unpin_work_count);
10d83730 9242 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
e1f99ce6 9243
75f7f3ec
VS
9244 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
9245 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(intel_crtc->pipe)) + 1;
9246
4fa62c89
VS
9247 if (IS_VALLEYVIEW(dev)) {
9248 ring = &dev_priv->ring[BCS];
9249 } else if (INTEL_INFO(dev)->gen >= 7) {
9250 ring = obj->ring;
9251 if (ring == NULL || ring->id != RCS)
9252 ring = &dev_priv->ring[BCS];
9253 } else {
9254 ring = &dev_priv->ring[RCS];
9255 }
9256
9257 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
8c9f3aaf
JB
9258 if (ret)
9259 goto cleanup_pending;
6b95a207 9260
4fa62c89
VS
9261 work->gtt_offset =
9262 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9263
9264 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring, page_flip_flags);
9265 if (ret)
9266 goto cleanup_unpin;
9267
7782de3b 9268 intel_disable_fbc(dev);
c65355bb 9269 intel_mark_fb_busy(obj, NULL);
6b95a207
KH
9270 mutex_unlock(&dev->struct_mutex);
9271
e5510fac
JB
9272 trace_i915_flip_request(intel_crtc->plane, obj);
9273
6b95a207 9274 return 0;
96b099fd 9275
4fa62c89
VS
9276cleanup_unpin:
9277 intel_unpin_fb_obj(obj);
8c9f3aaf 9278cleanup_pending:
b4a98e57 9279 atomic_dec(&intel_crtc->unpin_work_count);
f4510a27 9280 crtc->primary->fb = old_fb;
05394f39
CW
9281 drm_gem_object_unreference(&work->old_fb_obj->base);
9282 drm_gem_object_unreference(&obj->base);
96b099fd
CW
9283 mutex_unlock(&dev->struct_mutex);
9284
79158103 9285cleanup:
96b099fd
CW
9286 spin_lock_irqsave(&dev->event_lock, flags);
9287 intel_crtc->unpin_work = NULL;
9288 spin_unlock_irqrestore(&dev->event_lock, flags);
9289
87b6b101 9290 drm_crtc_vblank_put(crtc);
7317c75e 9291free_work:
96b099fd
CW
9292 kfree(work);
9293
f900db47
CW
9294 if (ret == -EIO) {
9295out_hang:
9296 intel_crtc_wait_for_pending_flips(crtc);
9297 ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
9298 if (ret == 0 && event)
9299 drm_send_vblank_event(dev, intel_crtc->pipe, event);
9300 }
96b099fd 9301 return ret;
6b95a207
KH
9302}
9303
f6e5b160 9304static struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160
CW
9305 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9306 .load_lut = intel_crtc_load_lut,
f6e5b160
CW
9307};
9308
9a935856
DV
9309/**
9310 * intel_modeset_update_staged_output_state
9311 *
9312 * Updates the staged output configuration state, e.g. after we've read out the
9313 * current hw state.
9314 */
9315static void intel_modeset_update_staged_output_state(struct drm_device *dev)
f6e5b160 9316{
7668851f 9317 struct intel_crtc *crtc;
9a935856
DV
9318 struct intel_encoder *encoder;
9319 struct intel_connector *connector;
f6e5b160 9320
9a935856
DV
9321 list_for_each_entry(connector, &dev->mode_config.connector_list,
9322 base.head) {
9323 connector->new_encoder =
9324 to_intel_encoder(connector->base.encoder);
9325 }
f6e5b160 9326
9a935856
DV
9327 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9328 base.head) {
9329 encoder->new_crtc =
9330 to_intel_crtc(encoder->base.crtc);
9331 }
7668851f 9332
d3fcc808 9333 for_each_intel_crtc(dev, crtc) {
7668851f 9334 crtc->new_enabled = crtc->base.enabled;
7bd0a8e7
VS
9335
9336 if (crtc->new_enabled)
9337 crtc->new_config = &crtc->config;
9338 else
9339 crtc->new_config = NULL;
7668851f 9340 }
f6e5b160
CW
9341}
9342
9a935856
DV
9343/**
9344 * intel_modeset_commit_output_state
9345 *
9346 * This function copies the stage display pipe configuration to the real one.
9347 */
9348static void intel_modeset_commit_output_state(struct drm_device *dev)
9349{
7668851f 9350 struct intel_crtc *crtc;
9a935856
DV
9351 struct intel_encoder *encoder;
9352 struct intel_connector *connector;
f6e5b160 9353
9a935856
DV
9354 list_for_each_entry(connector, &dev->mode_config.connector_list,
9355 base.head) {
9356 connector->base.encoder = &connector->new_encoder->base;
9357 }
f6e5b160 9358
9a935856
DV
9359 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9360 base.head) {
9361 encoder->base.crtc = &encoder->new_crtc->base;
9362 }
7668851f 9363
d3fcc808 9364 for_each_intel_crtc(dev, crtc) {
7668851f
VS
9365 crtc->base.enabled = crtc->new_enabled;
9366 }
9a935856
DV
9367}
9368
050f7aeb 9369static void
eba905b2 9370connected_sink_compute_bpp(struct intel_connector *connector,
050f7aeb
DV
9371 struct intel_crtc_config *pipe_config)
9372{
9373 int bpp = pipe_config->pipe_bpp;
9374
9375 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9376 connector->base.base.id,
9377 drm_get_connector_name(&connector->base));
9378
9379 /* Don't use an invalid EDID bpc value */
9380 if (connector->base.display_info.bpc &&
9381 connector->base.display_info.bpc * 3 < bpp) {
9382 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9383 bpp, connector->base.display_info.bpc*3);
9384 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9385 }
9386
9387 /* Clamp bpp to 8 on screens without EDID 1.4 */
9388 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9389 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9390 bpp);
9391 pipe_config->pipe_bpp = 24;
9392 }
9393}
9394
4e53c2e0 9395static int
050f7aeb
DV
9396compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9397 struct drm_framebuffer *fb,
9398 struct intel_crtc_config *pipe_config)
4e53c2e0 9399{
050f7aeb
DV
9400 struct drm_device *dev = crtc->base.dev;
9401 struct intel_connector *connector;
4e53c2e0
DV
9402 int bpp;
9403
d42264b1
DV
9404 switch (fb->pixel_format) {
9405 case DRM_FORMAT_C8:
4e53c2e0
DV
9406 bpp = 8*3; /* since we go through a colormap */
9407 break;
d42264b1
DV
9408 case DRM_FORMAT_XRGB1555:
9409 case DRM_FORMAT_ARGB1555:
9410 /* checked in intel_framebuffer_init already */
9411 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
9412 return -EINVAL;
9413 case DRM_FORMAT_RGB565:
4e53c2e0
DV
9414 bpp = 6*3; /* min is 18bpp */
9415 break;
d42264b1
DV
9416 case DRM_FORMAT_XBGR8888:
9417 case DRM_FORMAT_ABGR8888:
9418 /* checked in intel_framebuffer_init already */
9419 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
9420 return -EINVAL;
9421 case DRM_FORMAT_XRGB8888:
9422 case DRM_FORMAT_ARGB8888:
4e53c2e0
DV
9423 bpp = 8*3;
9424 break;
d42264b1
DV
9425 case DRM_FORMAT_XRGB2101010:
9426 case DRM_FORMAT_ARGB2101010:
9427 case DRM_FORMAT_XBGR2101010:
9428 case DRM_FORMAT_ABGR2101010:
9429 /* checked in intel_framebuffer_init already */
9430 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
baba133a 9431 return -EINVAL;
4e53c2e0
DV
9432 bpp = 10*3;
9433 break;
baba133a 9434 /* TODO: gen4+ supports 16 bpc floating point, too. */
4e53c2e0
DV
9435 default:
9436 DRM_DEBUG_KMS("unsupported depth\n");
9437 return -EINVAL;
9438 }
9439
4e53c2e0
DV
9440 pipe_config->pipe_bpp = bpp;
9441
9442 /* Clamp display bpp to EDID value */
9443 list_for_each_entry(connector, &dev->mode_config.connector_list,
050f7aeb 9444 base.head) {
1b829e05
DV
9445 if (!connector->new_encoder ||
9446 connector->new_encoder->new_crtc != crtc)
4e53c2e0
DV
9447 continue;
9448
050f7aeb 9449 connected_sink_compute_bpp(connector, pipe_config);
4e53c2e0
DV
9450 }
9451
9452 return bpp;
9453}
9454
644db711
DV
9455static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
9456{
9457 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
9458 "type: 0x%x flags: 0x%x\n",
1342830c 9459 mode->crtc_clock,
644db711
DV
9460 mode->crtc_hdisplay, mode->crtc_hsync_start,
9461 mode->crtc_hsync_end, mode->crtc_htotal,
9462 mode->crtc_vdisplay, mode->crtc_vsync_start,
9463 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
9464}
9465
c0b03411
DV
9466static void intel_dump_pipe_config(struct intel_crtc *crtc,
9467 struct intel_crtc_config *pipe_config,
9468 const char *context)
9469{
9470 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
9471 context, pipe_name(crtc->pipe));
9472
9473 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
9474 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
9475 pipe_config->pipe_bpp, pipe_config->dither);
9476 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9477 pipe_config->has_pch_encoder,
9478 pipe_config->fdi_lanes,
9479 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
9480 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
9481 pipe_config->fdi_m_n.tu);
eb14cb74
VS
9482 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9483 pipe_config->has_dp_encoder,
9484 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
9485 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
9486 pipe_config->dp_m_n.tu);
c0b03411
DV
9487 DRM_DEBUG_KMS("requested mode:\n");
9488 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
9489 DRM_DEBUG_KMS("adjusted mode:\n");
9490 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
644db711 9491 intel_dump_crtc_timings(&pipe_config->adjusted_mode);
d71b8d4a 9492 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
37327abd
VS
9493 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
9494 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
c0b03411
DV
9495 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
9496 pipe_config->gmch_pfit.control,
9497 pipe_config->gmch_pfit.pgm_ratios,
9498 pipe_config->gmch_pfit.lvds_border_bits);
fd4daa9c 9499 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
c0b03411 9500 pipe_config->pch_pfit.pos,
fd4daa9c
CW
9501 pipe_config->pch_pfit.size,
9502 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
42db64ef 9503 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
cf532bb2 9504 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
c0b03411
DV
9505}
9506
bc079e8b
VS
9507static bool encoders_cloneable(const struct intel_encoder *a,
9508 const struct intel_encoder *b)
accfc0c5 9509{
bc079e8b
VS
9510 /* masks could be asymmetric, so check both ways */
9511 return a == b || (a->cloneable & (1 << b->type) &&
9512 b->cloneable & (1 << a->type));
9513}
9514
9515static bool check_single_encoder_cloning(struct intel_crtc *crtc,
9516 struct intel_encoder *encoder)
9517{
9518 struct drm_device *dev = crtc->base.dev;
9519 struct intel_encoder *source_encoder;
9520
9521 list_for_each_entry(source_encoder,
9522 &dev->mode_config.encoder_list, base.head) {
9523 if (source_encoder->new_crtc != crtc)
9524 continue;
9525
9526 if (!encoders_cloneable(encoder, source_encoder))
9527 return false;
9528 }
9529
9530 return true;
9531}
9532
9533static bool check_encoder_cloning(struct intel_crtc *crtc)
9534{
9535 struct drm_device *dev = crtc->base.dev;
accfc0c5
DV
9536 struct intel_encoder *encoder;
9537
bc079e8b
VS
9538 list_for_each_entry(encoder,
9539 &dev->mode_config.encoder_list, base.head) {
9540 if (encoder->new_crtc != crtc)
accfc0c5
DV
9541 continue;
9542
bc079e8b
VS
9543 if (!check_single_encoder_cloning(crtc, encoder))
9544 return false;
accfc0c5
DV
9545 }
9546
bc079e8b 9547 return true;
accfc0c5
DV
9548}
9549
b8cecdf5
DV
9550static struct intel_crtc_config *
9551intel_modeset_pipe_config(struct drm_crtc *crtc,
4e53c2e0 9552 struct drm_framebuffer *fb,
b8cecdf5 9553 struct drm_display_mode *mode)
ee7b9f93 9554{
7758a113 9555 struct drm_device *dev = crtc->dev;
7758a113 9556 struct intel_encoder *encoder;
b8cecdf5 9557 struct intel_crtc_config *pipe_config;
e29c22c0
DV
9558 int plane_bpp, ret = -EINVAL;
9559 bool retry = true;
ee7b9f93 9560
bc079e8b 9561 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
accfc0c5
DV
9562 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
9563 return ERR_PTR(-EINVAL);
9564 }
9565
b8cecdf5
DV
9566 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
9567 if (!pipe_config)
7758a113
DV
9568 return ERR_PTR(-ENOMEM);
9569
b8cecdf5
DV
9570 drm_mode_copy(&pipe_config->adjusted_mode, mode);
9571 drm_mode_copy(&pipe_config->requested_mode, mode);
37327abd 9572
e143a21c
DV
9573 pipe_config->cpu_transcoder =
9574 (enum transcoder) to_intel_crtc(crtc)->pipe;
c0d43d62 9575 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
b8cecdf5 9576
2960bc9c
ID
9577 /*
9578 * Sanitize sync polarity flags based on requested ones. If neither
9579 * positive or negative polarity is requested, treat this as meaning
9580 * negative polarity.
9581 */
9582 if (!(pipe_config->adjusted_mode.flags &
9583 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
9584 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
9585
9586 if (!(pipe_config->adjusted_mode.flags &
9587 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
9588 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
9589
050f7aeb
DV
9590 /* Compute a starting value for pipe_config->pipe_bpp taking the source
9591 * plane pixel format and any sink constraints into account. Returns the
9592 * source plane bpp so that dithering can be selected on mismatches
9593 * after encoders and crtc also have had their say. */
9594 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
9595 fb, pipe_config);
4e53c2e0
DV
9596 if (plane_bpp < 0)
9597 goto fail;
9598
e41a56be
VS
9599 /*
9600 * Determine the real pipe dimensions. Note that stereo modes can
9601 * increase the actual pipe size due to the frame doubling and
9602 * insertion of additional space for blanks between the frame. This
9603 * is stored in the crtc timings. We use the requested mode to do this
9604 * computation to clearly distinguish it from the adjusted mode, which
9605 * can be changed by the connectors in the below retry loop.
9606 */
9607 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
9608 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
9609 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
9610
e29c22c0 9611encoder_retry:
ef1b460d 9612 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 9613 pipe_config->port_clock = 0;
ef1b460d 9614 pipe_config->pixel_multiplier = 1;
ff9a6750 9615
135c81b8 9616 /* Fill in default crtc timings, allow encoders to overwrite them. */
6ce70f5e 9617 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
135c81b8 9618
7758a113
DV
9619 /* Pass our mode to the connectors and the CRTC to give them a chance to
9620 * adjust it according to limitations or connector properties, and also
9621 * a chance to reject the mode entirely.
47f1c6c9 9622 */
7758a113
DV
9623 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9624 base.head) {
47f1c6c9 9625
7758a113
DV
9626 if (&encoder->new_crtc->base != crtc)
9627 continue;
7ae89233 9628
efea6e8e
DV
9629 if (!(encoder->compute_config(encoder, pipe_config))) {
9630 DRM_DEBUG_KMS("Encoder config failure\n");
7758a113
DV
9631 goto fail;
9632 }
ee7b9f93 9633 }
47f1c6c9 9634
ff9a6750
DV
9635 /* Set default port clock if not overwritten by the encoder. Needs to be
9636 * done afterwards in case the encoder adjusts the mode. */
9637 if (!pipe_config->port_clock)
241bfc38
DL
9638 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
9639 * pipe_config->pixel_multiplier;
ff9a6750 9640
a43f6e0f 9641 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 9642 if (ret < 0) {
7758a113
DV
9643 DRM_DEBUG_KMS("CRTC fixup failed\n");
9644 goto fail;
ee7b9f93 9645 }
e29c22c0
DV
9646
9647 if (ret == RETRY) {
9648 if (WARN(!retry, "loop in pipe configuration computation\n")) {
9649 ret = -EINVAL;
9650 goto fail;
9651 }
9652
9653 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
9654 retry = false;
9655 goto encoder_retry;
9656 }
9657
4e53c2e0
DV
9658 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
9659 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
9660 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
9661
b8cecdf5 9662 return pipe_config;
7758a113 9663fail:
b8cecdf5 9664 kfree(pipe_config);
e29c22c0 9665 return ERR_PTR(ret);
ee7b9f93 9666}
47f1c6c9 9667
e2e1ed41
DV
9668/* Computes which crtcs are affected and sets the relevant bits in the mask. For
9669 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
9670static void
9671intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
9672 unsigned *prepare_pipes, unsigned *disable_pipes)
79e53945
JB
9673{
9674 struct intel_crtc *intel_crtc;
e2e1ed41
DV
9675 struct drm_device *dev = crtc->dev;
9676 struct intel_encoder *encoder;
9677 struct intel_connector *connector;
9678 struct drm_crtc *tmp_crtc;
79e53945 9679
e2e1ed41 9680 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
79e53945 9681
e2e1ed41
DV
9682 /* Check which crtcs have changed outputs connected to them, these need
9683 * to be part of the prepare_pipes mask. We don't (yet) support global
9684 * modeset across multiple crtcs, so modeset_pipes will only have one
9685 * bit set at most. */
9686 list_for_each_entry(connector, &dev->mode_config.connector_list,
9687 base.head) {
9688 if (connector->base.encoder == &connector->new_encoder->base)
9689 continue;
79e53945 9690
e2e1ed41
DV
9691 if (connector->base.encoder) {
9692 tmp_crtc = connector->base.encoder->crtc;
9693
9694 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9695 }
9696
9697 if (connector->new_encoder)
9698 *prepare_pipes |=
9699 1 << connector->new_encoder->new_crtc->pipe;
79e53945
JB
9700 }
9701
e2e1ed41
DV
9702 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9703 base.head) {
9704 if (encoder->base.crtc == &encoder->new_crtc->base)
9705 continue;
9706
9707 if (encoder->base.crtc) {
9708 tmp_crtc = encoder->base.crtc;
9709
9710 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9711 }
9712
9713 if (encoder->new_crtc)
9714 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
80824003
JB
9715 }
9716
7668851f 9717 /* Check for pipes that will be enabled/disabled ... */
d3fcc808 9718 for_each_intel_crtc(dev, intel_crtc) {
7668851f 9719 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
e2e1ed41 9720 continue;
7e7d76c3 9721
7668851f 9722 if (!intel_crtc->new_enabled)
e2e1ed41 9723 *disable_pipes |= 1 << intel_crtc->pipe;
7668851f
VS
9724 else
9725 *prepare_pipes |= 1 << intel_crtc->pipe;
7e7d76c3
JB
9726 }
9727
e2e1ed41
DV
9728
9729 /* set_mode is also used to update properties on life display pipes. */
9730 intel_crtc = to_intel_crtc(crtc);
7668851f 9731 if (intel_crtc->new_enabled)
e2e1ed41
DV
9732 *prepare_pipes |= 1 << intel_crtc->pipe;
9733
b6c5164d
DV
9734 /*
9735 * For simplicity do a full modeset on any pipe where the output routing
9736 * changed. We could be more clever, but that would require us to be
9737 * more careful with calling the relevant encoder->mode_set functions.
9738 */
e2e1ed41
DV
9739 if (*prepare_pipes)
9740 *modeset_pipes = *prepare_pipes;
9741
9742 /* ... and mask these out. */
9743 *modeset_pipes &= ~(*disable_pipes);
9744 *prepare_pipes &= ~(*disable_pipes);
b6c5164d
DV
9745
9746 /*
9747 * HACK: We don't (yet) fully support global modesets. intel_set_config
9748 * obies this rule, but the modeset restore mode of
9749 * intel_modeset_setup_hw_state does not.
9750 */
9751 *modeset_pipes &= 1 << intel_crtc->pipe;
9752 *prepare_pipes &= 1 << intel_crtc->pipe;
e3641d3f
DV
9753
9754 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
9755 *modeset_pipes, *prepare_pipes, *disable_pipes);
47f1c6c9 9756}
79e53945 9757
ea9d758d 9758static bool intel_crtc_in_use(struct drm_crtc *crtc)
f6e5b160 9759{
ea9d758d 9760 struct drm_encoder *encoder;
f6e5b160 9761 struct drm_device *dev = crtc->dev;
f6e5b160 9762
ea9d758d
DV
9763 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
9764 if (encoder->crtc == crtc)
9765 return true;
9766
9767 return false;
9768}
9769
9770static void
9771intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
9772{
9773 struct intel_encoder *intel_encoder;
9774 struct intel_crtc *intel_crtc;
9775 struct drm_connector *connector;
9776
9777 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
9778 base.head) {
9779 if (!intel_encoder->base.crtc)
9780 continue;
9781
9782 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
9783
9784 if (prepare_pipes & (1 << intel_crtc->pipe))
9785 intel_encoder->connectors_active = false;
9786 }
9787
9788 intel_modeset_commit_output_state(dev);
9789
7668851f 9790 /* Double check state. */
d3fcc808 9791 for_each_intel_crtc(dev, intel_crtc) {
7668851f 9792 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
7bd0a8e7
VS
9793 WARN_ON(intel_crtc->new_config &&
9794 intel_crtc->new_config != &intel_crtc->config);
9795 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
ea9d758d
DV
9796 }
9797
9798 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
9799 if (!connector->encoder || !connector->encoder->crtc)
9800 continue;
9801
9802 intel_crtc = to_intel_crtc(connector->encoder->crtc);
9803
9804 if (prepare_pipes & (1 << intel_crtc->pipe)) {
68d34720
DV
9805 struct drm_property *dpms_property =
9806 dev->mode_config.dpms_property;
9807
ea9d758d 9808 connector->dpms = DRM_MODE_DPMS_ON;
662595df 9809 drm_object_property_set_value(&connector->base,
68d34720
DV
9810 dpms_property,
9811 DRM_MODE_DPMS_ON);
ea9d758d
DV
9812
9813 intel_encoder = to_intel_encoder(connector->encoder);
9814 intel_encoder->connectors_active = true;
9815 }
9816 }
9817
9818}
9819
3bd26263 9820static bool intel_fuzzy_clock_check(int clock1, int clock2)
f1f644dc 9821{
3bd26263 9822 int diff;
f1f644dc
JB
9823
9824 if (clock1 == clock2)
9825 return true;
9826
9827 if (!clock1 || !clock2)
9828 return false;
9829
9830 diff = abs(clock1 - clock2);
9831
9832 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
9833 return true;
9834
9835 return false;
9836}
9837
25c5b266
DV
9838#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
9839 list_for_each_entry((intel_crtc), \
9840 &(dev)->mode_config.crtc_list, \
9841 base.head) \
0973f18f 9842 if (mask & (1 <<(intel_crtc)->pipe))
25c5b266 9843
0e8ffe1b 9844static bool
2fa2fe9a
DV
9845intel_pipe_config_compare(struct drm_device *dev,
9846 struct intel_crtc_config *current_config,
0e8ffe1b
DV
9847 struct intel_crtc_config *pipe_config)
9848{
66e985c0
DV
9849#define PIPE_CONF_CHECK_X(name) \
9850 if (current_config->name != pipe_config->name) { \
9851 DRM_ERROR("mismatch in " #name " " \
9852 "(expected 0x%08x, found 0x%08x)\n", \
9853 current_config->name, \
9854 pipe_config->name); \
9855 return false; \
9856 }
9857
08a24034
DV
9858#define PIPE_CONF_CHECK_I(name) \
9859 if (current_config->name != pipe_config->name) { \
9860 DRM_ERROR("mismatch in " #name " " \
9861 "(expected %i, found %i)\n", \
9862 current_config->name, \
9863 pipe_config->name); \
9864 return false; \
88adfff1
DV
9865 }
9866
1bd1bd80
DV
9867#define PIPE_CONF_CHECK_FLAGS(name, mask) \
9868 if ((current_config->name ^ pipe_config->name) & (mask)) { \
6f02488e 9869 DRM_ERROR("mismatch in " #name "(" #mask ") " \
1bd1bd80
DV
9870 "(expected %i, found %i)\n", \
9871 current_config->name & (mask), \
9872 pipe_config->name & (mask)); \
9873 return false; \
9874 }
9875
5e550656
VS
9876#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
9877 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
9878 DRM_ERROR("mismatch in " #name " " \
9879 "(expected %i, found %i)\n", \
9880 current_config->name, \
9881 pipe_config->name); \
9882 return false; \
9883 }
9884
bb760063
DV
9885#define PIPE_CONF_QUIRK(quirk) \
9886 ((current_config->quirks | pipe_config->quirks) & (quirk))
9887
eccb140b
DV
9888 PIPE_CONF_CHECK_I(cpu_transcoder);
9889
08a24034
DV
9890 PIPE_CONF_CHECK_I(has_pch_encoder);
9891 PIPE_CONF_CHECK_I(fdi_lanes);
72419203
DV
9892 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
9893 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
9894 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
9895 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
9896 PIPE_CONF_CHECK_I(fdi_m_n.tu);
08a24034 9897
eb14cb74
VS
9898 PIPE_CONF_CHECK_I(has_dp_encoder);
9899 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
9900 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
9901 PIPE_CONF_CHECK_I(dp_m_n.link_m);
9902 PIPE_CONF_CHECK_I(dp_m_n.link_n);
9903 PIPE_CONF_CHECK_I(dp_m_n.tu);
9904
1bd1bd80
DV
9905 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
9906 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
9907 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
9908 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
9909 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
9910 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
9911
9912 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
9913 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
9914 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
9915 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
9916 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
9917 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
9918
c93f54cf 9919 PIPE_CONF_CHECK_I(pixel_multiplier);
6897b4b5 9920 PIPE_CONF_CHECK_I(has_hdmi_sink);
b5a9fa09
DV
9921 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
9922 IS_VALLEYVIEW(dev))
9923 PIPE_CONF_CHECK_I(limited_color_range);
6c49f241 9924
9ed109a7
DV
9925 PIPE_CONF_CHECK_I(has_audio);
9926
1bd1bd80
DV
9927 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9928 DRM_MODE_FLAG_INTERLACE);
9929
bb760063
DV
9930 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
9931 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9932 DRM_MODE_FLAG_PHSYNC);
9933 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9934 DRM_MODE_FLAG_NHSYNC);
9935 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9936 DRM_MODE_FLAG_PVSYNC);
9937 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9938 DRM_MODE_FLAG_NVSYNC);
9939 }
045ac3b5 9940
37327abd
VS
9941 PIPE_CONF_CHECK_I(pipe_src_w);
9942 PIPE_CONF_CHECK_I(pipe_src_h);
1bd1bd80 9943
9953599b
DV
9944 /*
9945 * FIXME: BIOS likes to set up a cloned config with lvds+external
9946 * screen. Since we don't yet re-compute the pipe config when moving
9947 * just the lvds port away to another pipe the sw tracking won't match.
9948 *
9949 * Proper atomic modesets with recomputed global state will fix this.
9950 * Until then just don't check gmch state for inherited modes.
9951 */
9952 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
9953 PIPE_CONF_CHECK_I(gmch_pfit.control);
9954 /* pfit ratios are autocomputed by the hw on gen4+ */
9955 if (INTEL_INFO(dev)->gen < 4)
9956 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
9957 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
9958 }
9959
fd4daa9c
CW
9960 PIPE_CONF_CHECK_I(pch_pfit.enabled);
9961 if (current_config->pch_pfit.enabled) {
9962 PIPE_CONF_CHECK_I(pch_pfit.pos);
9963 PIPE_CONF_CHECK_I(pch_pfit.size);
9964 }
2fa2fe9a 9965
e59150dc
JB
9966 /* BDW+ don't expose a synchronous way to read the state */
9967 if (IS_HASWELL(dev))
9968 PIPE_CONF_CHECK_I(ips_enabled);
42db64ef 9969
282740f7
VS
9970 PIPE_CONF_CHECK_I(double_wide);
9971
c0d43d62 9972 PIPE_CONF_CHECK_I(shared_dpll);
66e985c0 9973 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
8bcc2795 9974 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
66e985c0
DV
9975 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
9976 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
c0d43d62 9977
42571aef
VS
9978 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
9979 PIPE_CONF_CHECK_I(pipe_bpp);
9980
a9a7e98a
JB
9981 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
9982 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
5e550656 9983
66e985c0 9984#undef PIPE_CONF_CHECK_X
08a24034 9985#undef PIPE_CONF_CHECK_I
1bd1bd80 9986#undef PIPE_CONF_CHECK_FLAGS
5e550656 9987#undef PIPE_CONF_CHECK_CLOCK_FUZZY
bb760063 9988#undef PIPE_CONF_QUIRK
88adfff1 9989
0e8ffe1b
DV
9990 return true;
9991}
9992
91d1b4bd
DV
9993static void
9994check_connector_state(struct drm_device *dev)
8af6cf88 9995{
8af6cf88
DV
9996 struct intel_connector *connector;
9997
9998 list_for_each_entry(connector, &dev->mode_config.connector_list,
9999 base.head) {
10000 /* This also checks the encoder/connector hw state with the
10001 * ->get_hw_state callbacks. */
10002 intel_connector_check_state(connector);
10003
10004 WARN(&connector->new_encoder->base != connector->base.encoder,
10005 "connector's staged encoder doesn't match current encoder\n");
10006 }
91d1b4bd
DV
10007}
10008
10009static void
10010check_encoder_state(struct drm_device *dev)
10011{
10012 struct intel_encoder *encoder;
10013 struct intel_connector *connector;
8af6cf88
DV
10014
10015 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10016 base.head) {
10017 bool enabled = false;
10018 bool active = false;
10019 enum pipe pipe, tracked_pipe;
10020
10021 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10022 encoder->base.base.id,
10023 drm_get_encoder_name(&encoder->base));
10024
10025 WARN(&encoder->new_crtc->base != encoder->base.crtc,
10026 "encoder's stage crtc doesn't match current crtc\n");
10027 WARN(encoder->connectors_active && !encoder->base.crtc,
10028 "encoder's active_connectors set, but no crtc\n");
10029
10030 list_for_each_entry(connector, &dev->mode_config.connector_list,
10031 base.head) {
10032 if (connector->base.encoder != &encoder->base)
10033 continue;
10034 enabled = true;
10035 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10036 active = true;
10037 }
10038 WARN(!!encoder->base.crtc != enabled,
10039 "encoder's enabled state mismatch "
10040 "(expected %i, found %i)\n",
10041 !!encoder->base.crtc, enabled);
10042 WARN(active && !encoder->base.crtc,
10043 "active encoder with no crtc\n");
10044
10045 WARN(encoder->connectors_active != active,
10046 "encoder's computed active state doesn't match tracked active state "
10047 "(expected %i, found %i)\n", active, encoder->connectors_active);
10048
10049 active = encoder->get_hw_state(encoder, &pipe);
10050 WARN(active != encoder->connectors_active,
10051 "encoder's hw state doesn't match sw tracking "
10052 "(expected %i, found %i)\n",
10053 encoder->connectors_active, active);
10054
10055 if (!encoder->base.crtc)
10056 continue;
10057
10058 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
10059 WARN(active && pipe != tracked_pipe,
10060 "active encoder's pipe doesn't match"
10061 "(expected %i, found %i)\n",
10062 tracked_pipe, pipe);
10063
10064 }
91d1b4bd
DV
10065}
10066
10067static void
10068check_crtc_state(struct drm_device *dev)
10069{
fbee40df 10070 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
10071 struct intel_crtc *crtc;
10072 struct intel_encoder *encoder;
10073 struct intel_crtc_config pipe_config;
8af6cf88 10074
d3fcc808 10075 for_each_intel_crtc(dev, crtc) {
8af6cf88
DV
10076 bool enabled = false;
10077 bool active = false;
10078
045ac3b5
JB
10079 memset(&pipe_config, 0, sizeof(pipe_config));
10080
8af6cf88
DV
10081 DRM_DEBUG_KMS("[CRTC:%d]\n",
10082 crtc->base.base.id);
10083
10084 WARN(crtc->active && !crtc->base.enabled,
10085 "active crtc, but not enabled in sw tracking\n");
10086
10087 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10088 base.head) {
10089 if (encoder->base.crtc != &crtc->base)
10090 continue;
10091 enabled = true;
10092 if (encoder->connectors_active)
10093 active = true;
10094 }
6c49f241 10095
8af6cf88
DV
10096 WARN(active != crtc->active,
10097 "crtc's computed active state doesn't match tracked active state "
10098 "(expected %i, found %i)\n", active, crtc->active);
10099 WARN(enabled != crtc->base.enabled,
10100 "crtc's computed enabled state doesn't match tracked enabled state "
10101 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10102
0e8ffe1b
DV
10103 active = dev_priv->display.get_pipe_config(crtc,
10104 &pipe_config);
d62cf62a
DV
10105
10106 /* hw state is inconsistent with the pipe A quirk */
10107 if (crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
10108 active = crtc->active;
10109
6c49f241
DV
10110 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10111 base.head) {
3eaba51c 10112 enum pipe pipe;
6c49f241
DV
10113 if (encoder->base.crtc != &crtc->base)
10114 continue;
1d37b689 10115 if (encoder->get_hw_state(encoder, &pipe))
6c49f241
DV
10116 encoder->get_config(encoder, &pipe_config);
10117 }
10118
0e8ffe1b
DV
10119 WARN(crtc->active != active,
10120 "crtc active state doesn't match with hw state "
10121 "(expected %i, found %i)\n", crtc->active, active);
10122
c0b03411
DV
10123 if (active &&
10124 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
10125 WARN(1, "pipe state doesn't match!\n");
10126 intel_dump_pipe_config(crtc, &pipe_config,
10127 "[hw state]");
10128 intel_dump_pipe_config(crtc, &crtc->config,
10129 "[sw state]");
10130 }
8af6cf88
DV
10131 }
10132}
10133
91d1b4bd
DV
10134static void
10135check_shared_dpll_state(struct drm_device *dev)
10136{
fbee40df 10137 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
10138 struct intel_crtc *crtc;
10139 struct intel_dpll_hw_state dpll_hw_state;
10140 int i;
5358901f
DV
10141
10142 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10143 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10144 int enabled_crtcs = 0, active_crtcs = 0;
10145 bool active;
10146
10147 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10148
10149 DRM_DEBUG_KMS("%s\n", pll->name);
10150
10151 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10152
10153 WARN(pll->active > pll->refcount,
10154 "more active pll users than references: %i vs %i\n",
10155 pll->active, pll->refcount);
10156 WARN(pll->active && !pll->on,
10157 "pll in active use but not on in sw tracking\n");
35c95375
DV
10158 WARN(pll->on && !pll->active,
10159 "pll in on but not on in use in sw tracking\n");
5358901f
DV
10160 WARN(pll->on != active,
10161 "pll on state mismatch (expected %i, found %i)\n",
10162 pll->on, active);
10163
d3fcc808 10164 for_each_intel_crtc(dev, crtc) {
5358901f
DV
10165 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10166 enabled_crtcs++;
10167 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10168 active_crtcs++;
10169 }
10170 WARN(pll->active != active_crtcs,
10171 "pll active crtcs mismatch (expected %i, found %i)\n",
10172 pll->active, active_crtcs);
10173 WARN(pll->refcount != enabled_crtcs,
10174 "pll enabled crtcs mismatch (expected %i, found %i)\n",
10175 pll->refcount, enabled_crtcs);
66e985c0
DV
10176
10177 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
10178 sizeof(dpll_hw_state)),
10179 "pll hw state mismatch\n");
5358901f 10180 }
8af6cf88
DV
10181}
10182
91d1b4bd
DV
10183void
10184intel_modeset_check_state(struct drm_device *dev)
10185{
10186 check_connector_state(dev);
10187 check_encoder_state(dev);
10188 check_crtc_state(dev);
10189 check_shared_dpll_state(dev);
10190}
10191
18442d08
VS
10192void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
10193 int dotclock)
10194{
10195 /*
10196 * FDI already provided one idea for the dotclock.
10197 * Yell if the encoder disagrees.
10198 */
241bfc38 10199 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
18442d08 10200 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
241bfc38 10201 pipe_config->adjusted_mode.crtc_clock, dotclock);
18442d08
VS
10202}
10203
f30da187
DV
10204static int __intel_set_mode(struct drm_crtc *crtc,
10205 struct drm_display_mode *mode,
10206 int x, int y, struct drm_framebuffer *fb)
a6778b3c
DV
10207{
10208 struct drm_device *dev = crtc->dev;
fbee40df 10209 struct drm_i915_private *dev_priv = dev->dev_private;
4b4b9238 10210 struct drm_display_mode *saved_mode;
b8cecdf5 10211 struct intel_crtc_config *pipe_config = NULL;
25c5b266
DV
10212 struct intel_crtc *intel_crtc;
10213 unsigned disable_pipes, prepare_pipes, modeset_pipes;
c0c36b94 10214 int ret = 0;
a6778b3c 10215
4b4b9238 10216 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
c0c36b94
CW
10217 if (!saved_mode)
10218 return -ENOMEM;
a6778b3c 10219
e2e1ed41 10220 intel_modeset_affected_pipes(crtc, &modeset_pipes,
25c5b266
DV
10221 &prepare_pipes, &disable_pipes);
10222
3ac18232 10223 *saved_mode = crtc->mode;
a6778b3c 10224
25c5b266
DV
10225 /* Hack: Because we don't (yet) support global modeset on multiple
10226 * crtcs, we don't keep track of the new mode for more than one crtc.
10227 * Hence simply check whether any bit is set in modeset_pipes in all the
10228 * pieces of code that are not yet converted to deal with mutliple crtcs
10229 * changing their mode at the same time. */
25c5b266 10230 if (modeset_pipes) {
4e53c2e0 10231 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
b8cecdf5
DV
10232 if (IS_ERR(pipe_config)) {
10233 ret = PTR_ERR(pipe_config);
10234 pipe_config = NULL;
10235
3ac18232 10236 goto out;
25c5b266 10237 }
c0b03411
DV
10238 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
10239 "[modeset]");
50741abc 10240 to_intel_crtc(crtc)->new_config = pipe_config;
25c5b266 10241 }
a6778b3c 10242
30a970c6
JB
10243 /*
10244 * See if the config requires any additional preparation, e.g.
10245 * to adjust global state with pipes off. We need to do this
10246 * here so we can get the modeset_pipe updated config for the new
10247 * mode set on this crtc. For other crtcs we need to use the
10248 * adjusted_mode bits in the crtc directly.
10249 */
c164f833 10250 if (IS_VALLEYVIEW(dev)) {
2f2d7aa1 10251 valleyview_modeset_global_pipes(dev, &prepare_pipes);
30a970c6 10252
c164f833
VS
10253 /* may have added more to prepare_pipes than we should */
10254 prepare_pipes &= ~disable_pipes;
10255 }
10256
460da916
DV
10257 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
10258 intel_crtc_disable(&intel_crtc->base);
10259
ea9d758d
DV
10260 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10261 if (intel_crtc->base.enabled)
10262 dev_priv->display.crtc_disable(&intel_crtc->base);
10263 }
a6778b3c 10264
6c4c86f5
DV
10265 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
10266 * to set it here already despite that we pass it down the callchain.
f6e5b160 10267 */
b8cecdf5 10268 if (modeset_pipes) {
25c5b266 10269 crtc->mode = *mode;
b8cecdf5
DV
10270 /* mode_set/enable/disable functions rely on a correct pipe
10271 * config. */
10272 to_intel_crtc(crtc)->config = *pipe_config;
50741abc 10273 to_intel_crtc(crtc)->new_config = &to_intel_crtc(crtc)->config;
c326c0a9
VS
10274
10275 /*
10276 * Calculate and store various constants which
10277 * are later needed by vblank and swap-completion
10278 * timestamping. They are derived from true hwmode.
10279 */
10280 drm_calc_timestamping_constants(crtc,
10281 &pipe_config->adjusted_mode);
b8cecdf5 10282 }
7758a113 10283
ea9d758d
DV
10284 /* Only after disabling all output pipelines that will be changed can we
10285 * update the the output configuration. */
10286 intel_modeset_update_state(dev, prepare_pipes);
f6e5b160 10287
47fab737
DV
10288 if (dev_priv->display.modeset_global_resources)
10289 dev_priv->display.modeset_global_resources(dev);
10290
a6778b3c
DV
10291 /* Set up the DPLL and any encoders state that needs to adjust or depend
10292 * on the DPLL.
f6e5b160 10293 */
25c5b266 10294 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
4c10794f
DV
10295 struct drm_framebuffer *old_fb;
10296
10297 mutex_lock(&dev->struct_mutex);
10298 ret = intel_pin_and_fence_fb_obj(dev,
10299 to_intel_framebuffer(fb)->obj,
10300 NULL);
10301 if (ret != 0) {
10302 DRM_ERROR("pin & fence failed\n");
10303 mutex_unlock(&dev->struct_mutex);
10304 goto done;
10305 }
10306 old_fb = crtc->primary->fb;
10307 if (old_fb)
10308 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
10309 mutex_unlock(&dev->struct_mutex);
10310
10311 crtc->primary->fb = fb;
10312 crtc->x = x;
10313 crtc->y = y;
10314
4271b753
DV
10315 ret = dev_priv->display.crtc_mode_set(&intel_crtc->base,
10316 x, y, fb);
c0c36b94
CW
10317 if (ret)
10318 goto done;
a6778b3c
DV
10319 }
10320
10321 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
25c5b266
DV
10322 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
10323 dev_priv->display.crtc_enable(&intel_crtc->base);
a6778b3c 10324
a6778b3c
DV
10325 /* FIXME: add subpixel order */
10326done:
4b4b9238 10327 if (ret && crtc->enabled)
3ac18232 10328 crtc->mode = *saved_mode;
a6778b3c 10329
3ac18232 10330out:
b8cecdf5 10331 kfree(pipe_config);
3ac18232 10332 kfree(saved_mode);
a6778b3c 10333 return ret;
f6e5b160
CW
10334}
10335
e7457a9a
DL
10336static int intel_set_mode(struct drm_crtc *crtc,
10337 struct drm_display_mode *mode,
10338 int x, int y, struct drm_framebuffer *fb)
f30da187
DV
10339{
10340 int ret;
10341
10342 ret = __intel_set_mode(crtc, mode, x, y, fb);
10343
10344 if (ret == 0)
10345 intel_modeset_check_state(crtc->dev);
10346
10347 return ret;
10348}
10349
c0c36b94
CW
10350void intel_crtc_restore_mode(struct drm_crtc *crtc)
10351{
f4510a27 10352 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
c0c36b94
CW
10353}
10354
25c5b266
DV
10355#undef for_each_intel_crtc_masked
10356
d9e55608
DV
10357static void intel_set_config_free(struct intel_set_config *config)
10358{
10359 if (!config)
10360 return;
10361
1aa4b628
DV
10362 kfree(config->save_connector_encoders);
10363 kfree(config->save_encoder_crtcs);
7668851f 10364 kfree(config->save_crtc_enabled);
d9e55608
DV
10365 kfree(config);
10366}
10367
85f9eb71
DV
10368static int intel_set_config_save_state(struct drm_device *dev,
10369 struct intel_set_config *config)
10370{
7668851f 10371 struct drm_crtc *crtc;
85f9eb71
DV
10372 struct drm_encoder *encoder;
10373 struct drm_connector *connector;
10374 int count;
10375
7668851f
VS
10376 config->save_crtc_enabled =
10377 kcalloc(dev->mode_config.num_crtc,
10378 sizeof(bool), GFP_KERNEL);
10379 if (!config->save_crtc_enabled)
10380 return -ENOMEM;
10381
1aa4b628
DV
10382 config->save_encoder_crtcs =
10383 kcalloc(dev->mode_config.num_encoder,
10384 sizeof(struct drm_crtc *), GFP_KERNEL);
10385 if (!config->save_encoder_crtcs)
85f9eb71
DV
10386 return -ENOMEM;
10387
1aa4b628
DV
10388 config->save_connector_encoders =
10389 kcalloc(dev->mode_config.num_connector,
10390 sizeof(struct drm_encoder *), GFP_KERNEL);
10391 if (!config->save_connector_encoders)
85f9eb71
DV
10392 return -ENOMEM;
10393
10394 /* Copy data. Note that driver private data is not affected.
10395 * Should anything bad happen only the expected state is
10396 * restored, not the drivers personal bookkeeping.
10397 */
7668851f 10398 count = 0;
70e1e0ec 10399 for_each_crtc(dev, crtc) {
7668851f
VS
10400 config->save_crtc_enabled[count++] = crtc->enabled;
10401 }
10402
85f9eb71
DV
10403 count = 0;
10404 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
1aa4b628 10405 config->save_encoder_crtcs[count++] = encoder->crtc;
85f9eb71
DV
10406 }
10407
10408 count = 0;
10409 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1aa4b628 10410 config->save_connector_encoders[count++] = connector->encoder;
85f9eb71
DV
10411 }
10412
10413 return 0;
10414}
10415
10416static void intel_set_config_restore_state(struct drm_device *dev,
10417 struct intel_set_config *config)
10418{
7668851f 10419 struct intel_crtc *crtc;
9a935856
DV
10420 struct intel_encoder *encoder;
10421 struct intel_connector *connector;
85f9eb71
DV
10422 int count;
10423
7668851f 10424 count = 0;
d3fcc808 10425 for_each_intel_crtc(dev, crtc) {
7668851f 10426 crtc->new_enabled = config->save_crtc_enabled[count++];
7bd0a8e7
VS
10427
10428 if (crtc->new_enabled)
10429 crtc->new_config = &crtc->config;
10430 else
10431 crtc->new_config = NULL;
7668851f
VS
10432 }
10433
85f9eb71 10434 count = 0;
9a935856
DV
10435 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10436 encoder->new_crtc =
10437 to_intel_crtc(config->save_encoder_crtcs[count++]);
85f9eb71
DV
10438 }
10439
10440 count = 0;
9a935856
DV
10441 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10442 connector->new_encoder =
10443 to_intel_encoder(config->save_connector_encoders[count++]);
85f9eb71
DV
10444 }
10445}
10446
e3de42b6 10447static bool
2e57f47d 10448is_crtc_connector_off(struct drm_mode_set *set)
e3de42b6
ID
10449{
10450 int i;
10451
2e57f47d
CW
10452 if (set->num_connectors == 0)
10453 return false;
10454
10455 if (WARN_ON(set->connectors == NULL))
10456 return false;
10457
10458 for (i = 0; i < set->num_connectors; i++)
10459 if (set->connectors[i]->encoder &&
10460 set->connectors[i]->encoder->crtc == set->crtc &&
10461 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
e3de42b6
ID
10462 return true;
10463
10464 return false;
10465}
10466
5e2b584e
DV
10467static void
10468intel_set_config_compute_mode_changes(struct drm_mode_set *set,
10469 struct intel_set_config *config)
10470{
10471
10472 /* We should be able to check here if the fb has the same properties
10473 * and then just flip_or_move it */
2e57f47d
CW
10474 if (is_crtc_connector_off(set)) {
10475 config->mode_changed = true;
f4510a27 10476 } else if (set->crtc->primary->fb != set->fb) {
5e2b584e 10477 /* If we have no fb then treat it as a full mode set */
f4510a27 10478 if (set->crtc->primary->fb == NULL) {
319d9827
JB
10479 struct intel_crtc *intel_crtc =
10480 to_intel_crtc(set->crtc);
10481
d330a953 10482 if (intel_crtc->active && i915.fastboot) {
319d9827
JB
10483 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
10484 config->fb_changed = true;
10485 } else {
10486 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
10487 config->mode_changed = true;
10488 }
5e2b584e
DV
10489 } else if (set->fb == NULL) {
10490 config->mode_changed = true;
72f4901e 10491 } else if (set->fb->pixel_format !=
f4510a27 10492 set->crtc->primary->fb->pixel_format) {
5e2b584e 10493 config->mode_changed = true;
e3de42b6 10494 } else {
5e2b584e 10495 config->fb_changed = true;
e3de42b6 10496 }
5e2b584e
DV
10497 }
10498
835c5873 10499 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
5e2b584e
DV
10500 config->fb_changed = true;
10501
10502 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
10503 DRM_DEBUG_KMS("modes are different, full mode set\n");
10504 drm_mode_debug_printmodeline(&set->crtc->mode);
10505 drm_mode_debug_printmodeline(set->mode);
10506 config->mode_changed = true;
10507 }
a1d95703
CW
10508
10509 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
10510 set->crtc->base.id, config->mode_changed, config->fb_changed);
5e2b584e
DV
10511}
10512
2e431051 10513static int
9a935856
DV
10514intel_modeset_stage_output_state(struct drm_device *dev,
10515 struct drm_mode_set *set,
10516 struct intel_set_config *config)
50f56119 10517{
9a935856
DV
10518 struct intel_connector *connector;
10519 struct intel_encoder *encoder;
7668851f 10520 struct intel_crtc *crtc;
f3f08572 10521 int ro;
50f56119 10522
9abdda74 10523 /* The upper layers ensure that we either disable a crtc or have a list
9a935856
DV
10524 * of connectors. For paranoia, double-check this. */
10525 WARN_ON(!set->fb && (set->num_connectors != 0));
10526 WARN_ON(set->fb && (set->num_connectors == 0));
10527
9a935856
DV
10528 list_for_each_entry(connector, &dev->mode_config.connector_list,
10529 base.head) {
10530 /* Otherwise traverse passed in connector list and get encoders
10531 * for them. */
50f56119 10532 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856
DV
10533 if (set->connectors[ro] == &connector->base) {
10534 connector->new_encoder = connector->encoder;
50f56119
DV
10535 break;
10536 }
10537 }
10538
9a935856
DV
10539 /* If we disable the crtc, disable all its connectors. Also, if
10540 * the connector is on the changing crtc but not on the new
10541 * connector list, disable it. */
10542 if ((!set->fb || ro == set->num_connectors) &&
10543 connector->base.encoder &&
10544 connector->base.encoder->crtc == set->crtc) {
10545 connector->new_encoder = NULL;
10546
10547 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
10548 connector->base.base.id,
10549 drm_get_connector_name(&connector->base));
10550 }
10551
10552
10553 if (&connector->new_encoder->base != connector->base.encoder) {
50f56119 10554 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
5e2b584e 10555 config->mode_changed = true;
50f56119
DV
10556 }
10557 }
9a935856 10558 /* connector->new_encoder is now updated for all connectors. */
50f56119 10559
9a935856 10560 /* Update crtc of enabled connectors. */
9a935856
DV
10561 list_for_each_entry(connector, &dev->mode_config.connector_list,
10562 base.head) {
7668851f
VS
10563 struct drm_crtc *new_crtc;
10564
9a935856 10565 if (!connector->new_encoder)
50f56119
DV
10566 continue;
10567
9a935856 10568 new_crtc = connector->new_encoder->base.crtc;
50f56119
DV
10569
10570 for (ro = 0; ro < set->num_connectors; ro++) {
9a935856 10571 if (set->connectors[ro] == &connector->base)
50f56119
DV
10572 new_crtc = set->crtc;
10573 }
10574
10575 /* Make sure the new CRTC will work with the encoder */
14509916
TR
10576 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
10577 new_crtc)) {
5e2b584e 10578 return -EINVAL;
50f56119 10579 }
9a935856
DV
10580 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
10581
10582 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
10583 connector->base.base.id,
10584 drm_get_connector_name(&connector->base),
10585 new_crtc->base.id);
10586 }
10587
10588 /* Check for any encoders that needs to be disabled. */
10589 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10590 base.head) {
5a65f358 10591 int num_connectors = 0;
9a935856
DV
10592 list_for_each_entry(connector,
10593 &dev->mode_config.connector_list,
10594 base.head) {
10595 if (connector->new_encoder == encoder) {
10596 WARN_ON(!connector->new_encoder->new_crtc);
5a65f358 10597 num_connectors++;
9a935856
DV
10598 }
10599 }
5a65f358
PZ
10600
10601 if (num_connectors == 0)
10602 encoder->new_crtc = NULL;
10603 else if (num_connectors > 1)
10604 return -EINVAL;
10605
9a935856
DV
10606 /* Only now check for crtc changes so we don't miss encoders
10607 * that will be disabled. */
10608 if (&encoder->new_crtc->base != encoder->base.crtc) {
50f56119 10609 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
5e2b584e 10610 config->mode_changed = true;
50f56119
DV
10611 }
10612 }
9a935856 10613 /* Now we've also updated encoder->new_crtc for all encoders. */
50f56119 10614
d3fcc808 10615 for_each_intel_crtc(dev, crtc) {
7668851f
VS
10616 crtc->new_enabled = false;
10617
10618 list_for_each_entry(encoder,
10619 &dev->mode_config.encoder_list,
10620 base.head) {
10621 if (encoder->new_crtc == crtc) {
10622 crtc->new_enabled = true;
10623 break;
10624 }
10625 }
10626
10627 if (crtc->new_enabled != crtc->base.enabled) {
10628 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
10629 crtc->new_enabled ? "en" : "dis");
10630 config->mode_changed = true;
10631 }
7bd0a8e7
VS
10632
10633 if (crtc->new_enabled)
10634 crtc->new_config = &crtc->config;
10635 else
10636 crtc->new_config = NULL;
7668851f
VS
10637 }
10638
2e431051
DV
10639 return 0;
10640}
10641
7d00a1f5
VS
10642static void disable_crtc_nofb(struct intel_crtc *crtc)
10643{
10644 struct drm_device *dev = crtc->base.dev;
10645 struct intel_encoder *encoder;
10646 struct intel_connector *connector;
10647
10648 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
10649 pipe_name(crtc->pipe));
10650
10651 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10652 if (connector->new_encoder &&
10653 connector->new_encoder->new_crtc == crtc)
10654 connector->new_encoder = NULL;
10655 }
10656
10657 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10658 if (encoder->new_crtc == crtc)
10659 encoder->new_crtc = NULL;
10660 }
10661
10662 crtc->new_enabled = false;
7bd0a8e7 10663 crtc->new_config = NULL;
7d00a1f5
VS
10664}
10665
2e431051
DV
10666static int intel_crtc_set_config(struct drm_mode_set *set)
10667{
10668 struct drm_device *dev;
2e431051
DV
10669 struct drm_mode_set save_set;
10670 struct intel_set_config *config;
10671 int ret;
2e431051 10672
8d3e375e
DV
10673 BUG_ON(!set);
10674 BUG_ON(!set->crtc);
10675 BUG_ON(!set->crtc->helper_private);
2e431051 10676
7e53f3a4
DV
10677 /* Enforce sane interface api - has been abused by the fb helper. */
10678 BUG_ON(!set->mode && set->fb);
10679 BUG_ON(set->fb && set->num_connectors == 0);
431e50f7 10680
2e431051
DV
10681 if (set->fb) {
10682 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
10683 set->crtc->base.id, set->fb->base.id,
10684 (int)set->num_connectors, set->x, set->y);
10685 } else {
10686 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
2e431051
DV
10687 }
10688
10689 dev = set->crtc->dev;
10690
10691 ret = -ENOMEM;
10692 config = kzalloc(sizeof(*config), GFP_KERNEL);
10693 if (!config)
10694 goto out_config;
10695
10696 ret = intel_set_config_save_state(dev, config);
10697 if (ret)
10698 goto out_config;
10699
10700 save_set.crtc = set->crtc;
10701 save_set.mode = &set->crtc->mode;
10702 save_set.x = set->crtc->x;
10703 save_set.y = set->crtc->y;
f4510a27 10704 save_set.fb = set->crtc->primary->fb;
2e431051
DV
10705
10706 /* Compute whether we need a full modeset, only an fb base update or no
10707 * change at all. In the future we might also check whether only the
10708 * mode changed, e.g. for LVDS where we only change the panel fitter in
10709 * such cases. */
10710 intel_set_config_compute_mode_changes(set, config);
10711
9a935856 10712 ret = intel_modeset_stage_output_state(dev, set, config);
2e431051
DV
10713 if (ret)
10714 goto fail;
10715
5e2b584e 10716 if (config->mode_changed) {
c0c36b94
CW
10717 ret = intel_set_mode(set->crtc, set->mode,
10718 set->x, set->y, set->fb);
5e2b584e 10719 } else if (config->fb_changed) {
4878cae2
VS
10720 intel_crtc_wait_for_pending_flips(set->crtc);
10721
4f660f49 10722 ret = intel_pipe_set_base(set->crtc,
94352cf9 10723 set->x, set->y, set->fb);
7ca51a3a
JB
10724 /*
10725 * In the fastboot case this may be our only check of the
10726 * state after boot. It would be better to only do it on
10727 * the first update, but we don't have a nice way of doing that
10728 * (and really, set_config isn't used much for high freq page
10729 * flipping, so increasing its cost here shouldn't be a big
10730 * deal).
10731 */
d330a953 10732 if (i915.fastboot && ret == 0)
7ca51a3a 10733 intel_modeset_check_state(set->crtc->dev);
50f56119
DV
10734 }
10735
2d05eae1 10736 if (ret) {
bf67dfeb
DV
10737 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
10738 set->crtc->base.id, ret);
50f56119 10739fail:
2d05eae1 10740 intel_set_config_restore_state(dev, config);
50f56119 10741
7d00a1f5
VS
10742 /*
10743 * HACK: if the pipe was on, but we didn't have a framebuffer,
10744 * force the pipe off to avoid oopsing in the modeset code
10745 * due to fb==NULL. This should only happen during boot since
10746 * we don't yet reconstruct the FB from the hardware state.
10747 */
10748 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
10749 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
10750
2d05eae1
CW
10751 /* Try to restore the config */
10752 if (config->mode_changed &&
10753 intel_set_mode(save_set.crtc, save_set.mode,
10754 save_set.x, save_set.y, save_set.fb))
10755 DRM_ERROR("failed to restore config after modeset failure\n");
10756 }
50f56119 10757
d9e55608
DV
10758out_config:
10759 intel_set_config_free(config);
50f56119
DV
10760 return ret;
10761}
f6e5b160
CW
10762
10763static const struct drm_crtc_funcs intel_crtc_funcs = {
f6e5b160
CW
10764 .cursor_set = intel_crtc_cursor_set,
10765 .cursor_move = intel_crtc_cursor_move,
10766 .gamma_set = intel_crtc_gamma_set,
50f56119 10767 .set_config = intel_crtc_set_config,
f6e5b160
CW
10768 .destroy = intel_crtc_destroy,
10769 .page_flip = intel_crtc_page_flip,
10770};
10771
79f689aa
PZ
10772static void intel_cpu_pll_init(struct drm_device *dev)
10773{
affa9354 10774 if (HAS_DDI(dev))
79f689aa
PZ
10775 intel_ddi_pll_init(dev);
10776}
10777
5358901f
DV
10778static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
10779 struct intel_shared_dpll *pll,
10780 struct intel_dpll_hw_state *hw_state)
ee7b9f93 10781{
5358901f 10782 uint32_t val;
ee7b9f93 10783
5358901f 10784 val = I915_READ(PCH_DPLL(pll->id));
66e985c0
DV
10785 hw_state->dpll = val;
10786 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
10787 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
5358901f
DV
10788
10789 return val & DPLL_VCO_ENABLE;
10790}
10791
15bdd4cf
DV
10792static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
10793 struct intel_shared_dpll *pll)
10794{
10795 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
10796 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
10797}
10798
e7b903d2
DV
10799static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
10800 struct intel_shared_dpll *pll)
10801{
e7b903d2 10802 /* PCH refclock must be enabled first */
89eff4be 10803 ibx_assert_pch_refclk_enabled(dev_priv);
e7b903d2 10804
15bdd4cf
DV
10805 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10806
10807 /* Wait for the clocks to stabilize. */
10808 POSTING_READ(PCH_DPLL(pll->id));
10809 udelay(150);
10810
10811 /* The pixel multiplier can only be updated once the
10812 * DPLL is enabled and the clocks are stable.
10813 *
10814 * So write it again.
10815 */
10816 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10817 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
10818 udelay(200);
10819}
10820
10821static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
10822 struct intel_shared_dpll *pll)
10823{
10824 struct drm_device *dev = dev_priv->dev;
10825 struct intel_crtc *crtc;
e7b903d2
DV
10826
10827 /* Make sure no transcoder isn't still depending on us. */
d3fcc808 10828 for_each_intel_crtc(dev, crtc) {
e7b903d2
DV
10829 if (intel_crtc_to_shared_dpll(crtc) == pll)
10830 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
ee7b9f93
JB
10831 }
10832
15bdd4cf
DV
10833 I915_WRITE(PCH_DPLL(pll->id), 0);
10834 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
10835 udelay(200);
10836}
10837
46edb027
DV
10838static char *ibx_pch_dpll_names[] = {
10839 "PCH DPLL A",
10840 "PCH DPLL B",
10841};
10842
7c74ade1 10843static void ibx_pch_dpll_init(struct drm_device *dev)
ee7b9f93 10844{
e7b903d2 10845 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93
JB
10846 int i;
10847
7c74ade1 10848 dev_priv->num_shared_dpll = 2;
ee7b9f93 10849
e72f9fbf 10850 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
46edb027
DV
10851 dev_priv->shared_dplls[i].id = i;
10852 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
15bdd4cf 10853 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
e7b903d2
DV
10854 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
10855 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
5358901f
DV
10856 dev_priv->shared_dplls[i].get_hw_state =
10857 ibx_pch_dpll_get_hw_state;
ee7b9f93
JB
10858 }
10859}
10860
7c74ade1
DV
10861static void intel_shared_dpll_init(struct drm_device *dev)
10862{
e7b903d2 10863 struct drm_i915_private *dev_priv = dev->dev_private;
7c74ade1
DV
10864
10865 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
10866 ibx_pch_dpll_init(dev);
10867 else
10868 dev_priv->num_shared_dpll = 0;
10869
10870 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
7c74ade1
DV
10871}
10872
b358d0a6 10873static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 10874{
fbee40df 10875 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945
JB
10876 struct intel_crtc *intel_crtc;
10877 int i;
10878
955382f3 10879 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
79e53945
JB
10880 if (intel_crtc == NULL)
10881 return;
10882
10883 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
10884
10885 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
79e53945
JB
10886 for (i = 0; i < 256; i++) {
10887 intel_crtc->lut_r[i] = i;
10888 intel_crtc->lut_g[i] = i;
10889 intel_crtc->lut_b[i] = i;
10890 }
10891
1f1c2e24
VS
10892 /*
10893 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
10894 * is hooked to plane B. Hence we want plane A feeding pipe B.
10895 */
80824003
JB
10896 intel_crtc->pipe = pipe;
10897 intel_crtc->plane = pipe;
3a77c4c4 10898 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
28c97730 10899 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 10900 intel_crtc->plane = !pipe;
80824003
JB
10901 }
10902
8d7849db
VS
10903 init_waitqueue_head(&intel_crtc->vbl_wait);
10904
22fd0fab
JB
10905 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
10906 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
10907 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
10908 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
10909
79e53945 10910 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
87b6b101
DV
10911
10912 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
79e53945
JB
10913}
10914
752aa88a
JB
10915enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
10916{
10917 struct drm_encoder *encoder = connector->base.encoder;
10918
10919 WARN_ON(!mutex_is_locked(&connector->base.dev->mode_config.mutex));
10920
10921 if (!encoder)
10922 return INVALID_PIPE;
10923
10924 return to_intel_crtc(encoder->crtc)->pipe;
10925}
10926
08d7b3d1 10927int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 10928 struct drm_file *file)
08d7b3d1 10929{
08d7b3d1 10930 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
c05422d5
DV
10931 struct drm_mode_object *drmmode_obj;
10932 struct intel_crtc *crtc;
08d7b3d1 10933
1cff8f6b
DV
10934 if (!drm_core_check_feature(dev, DRIVER_MODESET))
10935 return -ENODEV;
08d7b3d1 10936
c05422d5
DV
10937 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
10938 DRM_MODE_OBJECT_CRTC);
08d7b3d1 10939
c05422d5 10940 if (!drmmode_obj) {
08d7b3d1 10941 DRM_ERROR("no such CRTC id\n");
3f2c2057 10942 return -ENOENT;
08d7b3d1
CW
10943 }
10944
c05422d5
DV
10945 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
10946 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 10947
c05422d5 10948 return 0;
08d7b3d1
CW
10949}
10950
66a9278e 10951static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 10952{
66a9278e
DV
10953 struct drm_device *dev = encoder->base.dev;
10954 struct intel_encoder *source_encoder;
79e53945 10955 int index_mask = 0;
79e53945
JB
10956 int entry = 0;
10957
66a9278e
DV
10958 list_for_each_entry(source_encoder,
10959 &dev->mode_config.encoder_list, base.head) {
bc079e8b 10960 if (encoders_cloneable(encoder, source_encoder))
66a9278e
DV
10961 index_mask |= (1 << entry);
10962
79e53945
JB
10963 entry++;
10964 }
4ef69c7a 10965
79e53945
JB
10966 return index_mask;
10967}
10968
4d302442
CW
10969static bool has_edp_a(struct drm_device *dev)
10970{
10971 struct drm_i915_private *dev_priv = dev->dev_private;
10972
10973 if (!IS_MOBILE(dev))
10974 return false;
10975
10976 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
10977 return false;
10978
e3589908 10979 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
4d302442
CW
10980 return false;
10981
10982 return true;
10983}
10984
ba0fbca4
DL
10985const char *intel_output_name(int output)
10986{
10987 static const char *names[] = {
10988 [INTEL_OUTPUT_UNUSED] = "Unused",
10989 [INTEL_OUTPUT_ANALOG] = "Analog",
10990 [INTEL_OUTPUT_DVO] = "DVO",
10991 [INTEL_OUTPUT_SDVO] = "SDVO",
10992 [INTEL_OUTPUT_LVDS] = "LVDS",
10993 [INTEL_OUTPUT_TVOUT] = "TV",
10994 [INTEL_OUTPUT_HDMI] = "HDMI",
10995 [INTEL_OUTPUT_DISPLAYPORT] = "DisplayPort",
10996 [INTEL_OUTPUT_EDP] = "eDP",
10997 [INTEL_OUTPUT_DSI] = "DSI",
10998 [INTEL_OUTPUT_UNKNOWN] = "Unknown",
10999 };
11000
11001 if (output < 0 || output >= ARRAY_SIZE(names) || !names[output])
11002 return "Invalid";
11003
11004 return names[output];
11005}
11006
79e53945
JB
11007static void intel_setup_outputs(struct drm_device *dev)
11008{
725e30ad 11009 struct drm_i915_private *dev_priv = dev->dev_private;
4ef69c7a 11010 struct intel_encoder *encoder;
cb0953d7 11011 bool dpd_is_edp = false;
79e53945 11012
c9093354 11013 intel_lvds_init(dev);
79e53945 11014
7895a81d 11015 if (!IS_ULT(dev) && !IS_CHERRYVIEW(dev))
79935fca 11016 intel_crt_init(dev);
cb0953d7 11017
affa9354 11018 if (HAS_DDI(dev)) {
0e72a5b5
ED
11019 int found;
11020
11021 /* Haswell uses DDI functions to detect digital outputs */
11022 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
11023 /* DDI A only supports eDP */
11024 if (found)
11025 intel_ddi_init(dev, PORT_A);
11026
11027 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
11028 * register */
11029 found = I915_READ(SFUSE_STRAP);
11030
11031 if (found & SFUSE_STRAP_DDIB_DETECTED)
11032 intel_ddi_init(dev, PORT_B);
11033 if (found & SFUSE_STRAP_DDIC_DETECTED)
11034 intel_ddi_init(dev, PORT_C);
11035 if (found & SFUSE_STRAP_DDID_DETECTED)
11036 intel_ddi_init(dev, PORT_D);
11037 } else if (HAS_PCH_SPLIT(dev)) {
cb0953d7 11038 int found;
5d8a7752 11039 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
270b3042
DV
11040
11041 if (has_edp_a(dev))
11042 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 11043
dc0fa718 11044 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 11045 /* PCH SDVOB multiplex with HDMIB */
eef4eacb 11046 found = intel_sdvo_init(dev, PCH_SDVOB, true);
30ad48b7 11047 if (!found)
e2debe91 11048 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 11049 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 11050 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
11051 }
11052
dc0fa718 11053 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 11054 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 11055
dc0fa718 11056 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 11057 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 11058
5eb08b69 11059 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 11060 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 11061
270b3042 11062 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 11063 intel_dp_init(dev, PCH_DP_D, PORT_D);
4a87d65d 11064 } else if (IS_VALLEYVIEW(dev)) {
585a94b8
AB
11065 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
11066 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
11067 PORT_B);
11068 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
11069 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
11070 }
11071
6f6005a5
JB
11072 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
11073 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
11074 PORT_C);
11075 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
5d8a7752 11076 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
6f6005a5 11077 }
19c03924 11078
9418c1f1
VS
11079 if (IS_CHERRYVIEW(dev)) {
11080 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED) {
11081 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
11082 PORT_D);
11083 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
11084 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
11085 }
11086 }
11087
3cfca973 11088 intel_dsi_init(dev);
103a196f 11089 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
27185ae1 11090 bool found = false;
7d57382e 11091
e2debe91 11092 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 11093 DRM_DEBUG_KMS("probing SDVOB\n");
e2debe91 11094 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
b01f2c3a
JB
11095 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
11096 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 11097 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 11098 }
27185ae1 11099
e7281eab 11100 if (!found && SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 11101 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 11102 }
13520b05
KH
11103
11104 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 11105
e2debe91 11106 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 11107 DRM_DEBUG_KMS("probing SDVOC\n");
e2debe91 11108 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
b01f2c3a 11109 }
27185ae1 11110
e2debe91 11111 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 11112
b01f2c3a
JB
11113 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
11114 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 11115 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 11116 }
e7281eab 11117 if (SUPPORTS_INTEGRATED_DP(dev))
ab9d7c30 11118 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 11119 }
27185ae1 11120
b01f2c3a 11121 if (SUPPORTS_INTEGRATED_DP(dev) &&
e7281eab 11122 (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 11123 intel_dp_init(dev, DP_D, PORT_D);
bad720ff 11124 } else if (IS_GEN2(dev))
79e53945
JB
11125 intel_dvo_init(dev);
11126
103a196f 11127 if (SUPPORTS_TV(dev))
79e53945
JB
11128 intel_tv_init(dev);
11129
4ef69c7a
CW
11130 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
11131 encoder->base.possible_crtcs = encoder->crtc_mask;
11132 encoder->base.possible_clones =
66a9278e 11133 intel_encoder_clones(encoder);
79e53945 11134 }
47356eb6 11135
dde86e2d 11136 intel_init_pch_refclk(dev);
270b3042
DV
11137
11138 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
11139}
11140
11141static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
11142{
11143 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945 11144
ef2d633e
DV
11145 drm_framebuffer_cleanup(fb);
11146 WARN_ON(!intel_fb->obj->framebuffer_references--);
11147 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
79e53945
JB
11148 kfree(intel_fb);
11149}
11150
11151static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 11152 struct drm_file *file,
79e53945
JB
11153 unsigned int *handle)
11154{
11155 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 11156 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 11157
05394f39 11158 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
11159}
11160
11161static const struct drm_framebuffer_funcs intel_fb_funcs = {
11162 .destroy = intel_user_framebuffer_destroy,
11163 .create_handle = intel_user_framebuffer_create_handle,
11164};
11165
b5ea642a
DV
11166static int intel_framebuffer_init(struct drm_device *dev,
11167 struct intel_framebuffer *intel_fb,
11168 struct drm_mode_fb_cmd2 *mode_cmd,
11169 struct drm_i915_gem_object *obj)
79e53945 11170{
a57ce0b2 11171 int aligned_height;
a35cdaa0 11172 int pitch_limit;
79e53945
JB
11173 int ret;
11174
dd4916c5
DV
11175 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
11176
c16ed4be
CW
11177 if (obj->tiling_mode == I915_TILING_Y) {
11178 DRM_DEBUG("hardware does not support tiling Y\n");
57cd6508 11179 return -EINVAL;
c16ed4be 11180 }
57cd6508 11181
c16ed4be
CW
11182 if (mode_cmd->pitches[0] & 63) {
11183 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
11184 mode_cmd->pitches[0]);
57cd6508 11185 return -EINVAL;
c16ed4be 11186 }
57cd6508 11187
a35cdaa0
CW
11188 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
11189 pitch_limit = 32*1024;
11190 } else if (INTEL_INFO(dev)->gen >= 4) {
11191 if (obj->tiling_mode)
11192 pitch_limit = 16*1024;
11193 else
11194 pitch_limit = 32*1024;
11195 } else if (INTEL_INFO(dev)->gen >= 3) {
11196 if (obj->tiling_mode)
11197 pitch_limit = 8*1024;
11198 else
11199 pitch_limit = 16*1024;
11200 } else
11201 /* XXX DSPC is limited to 4k tiled */
11202 pitch_limit = 8*1024;
11203
11204 if (mode_cmd->pitches[0] > pitch_limit) {
11205 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
11206 obj->tiling_mode ? "tiled" : "linear",
11207 mode_cmd->pitches[0], pitch_limit);
5d7bd705 11208 return -EINVAL;
c16ed4be 11209 }
5d7bd705
VS
11210
11211 if (obj->tiling_mode != I915_TILING_NONE &&
c16ed4be
CW
11212 mode_cmd->pitches[0] != obj->stride) {
11213 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
11214 mode_cmd->pitches[0], obj->stride);
5d7bd705 11215 return -EINVAL;
c16ed4be 11216 }
5d7bd705 11217
57779d06 11218 /* Reject formats not supported by any plane early. */
308e5bcb 11219 switch (mode_cmd->pixel_format) {
57779d06 11220 case DRM_FORMAT_C8:
04b3924d
VS
11221 case DRM_FORMAT_RGB565:
11222 case DRM_FORMAT_XRGB8888:
11223 case DRM_FORMAT_ARGB8888:
57779d06
VS
11224 break;
11225 case DRM_FORMAT_XRGB1555:
11226 case DRM_FORMAT_ARGB1555:
c16ed4be 11227 if (INTEL_INFO(dev)->gen > 3) {
4ee62c76
VS
11228 DRM_DEBUG("unsupported pixel format: %s\n",
11229 drm_get_format_name(mode_cmd->pixel_format));
57779d06 11230 return -EINVAL;
c16ed4be 11231 }
57779d06
VS
11232 break;
11233 case DRM_FORMAT_XBGR8888:
11234 case DRM_FORMAT_ABGR8888:
04b3924d
VS
11235 case DRM_FORMAT_XRGB2101010:
11236 case DRM_FORMAT_ARGB2101010:
57779d06
VS
11237 case DRM_FORMAT_XBGR2101010:
11238 case DRM_FORMAT_ABGR2101010:
c16ed4be 11239 if (INTEL_INFO(dev)->gen < 4) {
4ee62c76
VS
11240 DRM_DEBUG("unsupported pixel format: %s\n",
11241 drm_get_format_name(mode_cmd->pixel_format));
57779d06 11242 return -EINVAL;
c16ed4be 11243 }
b5626747 11244 break;
04b3924d
VS
11245 case DRM_FORMAT_YUYV:
11246 case DRM_FORMAT_UYVY:
11247 case DRM_FORMAT_YVYU:
11248 case DRM_FORMAT_VYUY:
c16ed4be 11249 if (INTEL_INFO(dev)->gen < 5) {
4ee62c76
VS
11250 DRM_DEBUG("unsupported pixel format: %s\n",
11251 drm_get_format_name(mode_cmd->pixel_format));
57779d06 11252 return -EINVAL;
c16ed4be 11253 }
57cd6508
CW
11254 break;
11255 default:
4ee62c76
VS
11256 DRM_DEBUG("unsupported pixel format: %s\n",
11257 drm_get_format_name(mode_cmd->pixel_format));
57cd6508
CW
11258 return -EINVAL;
11259 }
11260
90f9a336
VS
11261 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
11262 if (mode_cmd->offsets[0] != 0)
11263 return -EINVAL;
11264
a57ce0b2
JB
11265 aligned_height = intel_align_height(dev, mode_cmd->height,
11266 obj->tiling_mode);
53155c0a
DV
11267 /* FIXME drm helper for size checks (especially planar formats)? */
11268 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
11269 return -EINVAL;
11270
c7d73f6a
DV
11271 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
11272 intel_fb->obj = obj;
80075d49 11273 intel_fb->obj->framebuffer_references++;
c7d73f6a 11274
79e53945
JB
11275 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
11276 if (ret) {
11277 DRM_ERROR("framebuffer init failed %d\n", ret);
11278 return ret;
11279 }
11280
79e53945
JB
11281 return 0;
11282}
11283
79e53945
JB
11284static struct drm_framebuffer *
11285intel_user_framebuffer_create(struct drm_device *dev,
11286 struct drm_file *filp,
308e5bcb 11287 struct drm_mode_fb_cmd2 *mode_cmd)
79e53945 11288{
05394f39 11289 struct drm_i915_gem_object *obj;
79e53945 11290
308e5bcb
JB
11291 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
11292 mode_cmd->handles[0]));
c8725226 11293 if (&obj->base == NULL)
cce13ff7 11294 return ERR_PTR(-ENOENT);
79e53945 11295
d2dff872 11296 return intel_framebuffer_create(dev, mode_cmd, obj);
79e53945
JB
11297}
11298
4520f53a 11299#ifndef CONFIG_DRM_I915_FBDEV
0632fef6 11300static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
4520f53a
DV
11301{
11302}
11303#endif
11304
79e53945 11305static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 11306 .fb_create = intel_user_framebuffer_create,
0632fef6 11307 .output_poll_changed = intel_fbdev_output_poll_changed,
79e53945
JB
11308};
11309
e70236a8
JB
11310/* Set up chip specific display functions */
11311static void intel_init_display(struct drm_device *dev)
11312{
11313 struct drm_i915_private *dev_priv = dev->dev_private;
11314
ee9300bb
DV
11315 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
11316 dev_priv->display.find_dpll = g4x_find_best_dpll;
ef9348c8
CML
11317 else if (IS_CHERRYVIEW(dev))
11318 dev_priv->display.find_dpll = chv_find_best_dpll;
ee9300bb
DV
11319 else if (IS_VALLEYVIEW(dev))
11320 dev_priv->display.find_dpll = vlv_find_best_dpll;
11321 else if (IS_PINEVIEW(dev))
11322 dev_priv->display.find_dpll = pnv_find_best_dpll;
11323 else
11324 dev_priv->display.find_dpll = i9xx_find_best_dpll;
11325
affa9354 11326 if (HAS_DDI(dev)) {
0e8ffe1b 11327 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
4c6baa59 11328 dev_priv->display.get_plane_config = ironlake_get_plane_config;
09b4ddf9 11329 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
4f771f10
PZ
11330 dev_priv->display.crtc_enable = haswell_crtc_enable;
11331 dev_priv->display.crtc_disable = haswell_crtc_disable;
6441ab5f 11332 dev_priv->display.off = haswell_crtc_off;
262ca2b0
MR
11333 dev_priv->display.update_primary_plane =
11334 ironlake_update_primary_plane;
09b4ddf9 11335 } else if (HAS_PCH_SPLIT(dev)) {
0e8ffe1b 11336 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
4c6baa59 11337 dev_priv->display.get_plane_config = ironlake_get_plane_config;
f564048e 11338 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
76e5a89c
DV
11339 dev_priv->display.crtc_enable = ironlake_crtc_enable;
11340 dev_priv->display.crtc_disable = ironlake_crtc_disable;
ee7b9f93 11341 dev_priv->display.off = ironlake_crtc_off;
262ca2b0
MR
11342 dev_priv->display.update_primary_plane =
11343 ironlake_update_primary_plane;
89b667f8
JB
11344 } else if (IS_VALLEYVIEW(dev)) {
11345 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
1ad292b5 11346 dev_priv->display.get_plane_config = i9xx_get_plane_config;
89b667f8
JB
11347 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
11348 dev_priv->display.crtc_enable = valleyview_crtc_enable;
11349 dev_priv->display.crtc_disable = i9xx_crtc_disable;
11350 dev_priv->display.off = i9xx_crtc_off;
262ca2b0
MR
11351 dev_priv->display.update_primary_plane =
11352 i9xx_update_primary_plane;
f564048e 11353 } else {
0e8ffe1b 11354 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
1ad292b5 11355 dev_priv->display.get_plane_config = i9xx_get_plane_config;
f564048e 11356 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
76e5a89c
DV
11357 dev_priv->display.crtc_enable = i9xx_crtc_enable;
11358 dev_priv->display.crtc_disable = i9xx_crtc_disable;
ee7b9f93 11359 dev_priv->display.off = i9xx_crtc_off;
262ca2b0
MR
11360 dev_priv->display.update_primary_plane =
11361 i9xx_update_primary_plane;
f564048e 11362 }
e70236a8 11363
e70236a8 11364 /* Returns the core display clock speed */
25eb05fc
JB
11365 if (IS_VALLEYVIEW(dev))
11366 dev_priv->display.get_display_clock_speed =
11367 valleyview_get_display_clock_speed;
11368 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
e70236a8
JB
11369 dev_priv->display.get_display_clock_speed =
11370 i945_get_display_clock_speed;
11371 else if (IS_I915G(dev))
11372 dev_priv->display.get_display_clock_speed =
11373 i915_get_display_clock_speed;
257a7ffc 11374 else if (IS_I945GM(dev) || IS_845G(dev))
e70236a8
JB
11375 dev_priv->display.get_display_clock_speed =
11376 i9xx_misc_get_display_clock_speed;
257a7ffc
DV
11377 else if (IS_PINEVIEW(dev))
11378 dev_priv->display.get_display_clock_speed =
11379 pnv_get_display_clock_speed;
e70236a8
JB
11380 else if (IS_I915GM(dev))
11381 dev_priv->display.get_display_clock_speed =
11382 i915gm_get_display_clock_speed;
11383 else if (IS_I865G(dev))
11384 dev_priv->display.get_display_clock_speed =
11385 i865_get_display_clock_speed;
f0f8a9ce 11386 else if (IS_I85X(dev))
e70236a8
JB
11387 dev_priv->display.get_display_clock_speed =
11388 i855_get_display_clock_speed;
11389 else /* 852, 830 */
11390 dev_priv->display.get_display_clock_speed =
11391 i830_get_display_clock_speed;
11392
7f8a8569 11393 if (HAS_PCH_SPLIT(dev)) {
f00a3ddf 11394 if (IS_GEN5(dev)) {
674cf967 11395 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
e0dac65e 11396 dev_priv->display.write_eld = ironlake_write_eld;
1398261a 11397 } else if (IS_GEN6(dev)) {
674cf967 11398 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
e0dac65e 11399 dev_priv->display.write_eld = ironlake_write_eld;
9a952a0d
PZ
11400 dev_priv->display.modeset_global_resources =
11401 snb_modeset_global_resources;
357555c0
JB
11402 } else if (IS_IVYBRIDGE(dev)) {
11403 /* FIXME: detect B0+ stepping and use auto training */
11404 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
e0dac65e 11405 dev_priv->display.write_eld = ironlake_write_eld;
01a415fd
DV
11406 dev_priv->display.modeset_global_resources =
11407 ivb_modeset_global_resources;
4e0bbc31 11408 } else if (IS_HASWELL(dev) || IS_GEN8(dev)) {
c82e4d26 11409 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
83358c85 11410 dev_priv->display.write_eld = haswell_write_eld;
d6dd9eb1
DV
11411 dev_priv->display.modeset_global_resources =
11412 haswell_modeset_global_resources;
a0e63c22 11413 }
6067aaea 11414 } else if (IS_G4X(dev)) {
e0dac65e 11415 dev_priv->display.write_eld = g4x_write_eld;
30a970c6
JB
11416 } else if (IS_VALLEYVIEW(dev)) {
11417 dev_priv->display.modeset_global_resources =
11418 valleyview_modeset_global_resources;
9ca2fe73 11419 dev_priv->display.write_eld = ironlake_write_eld;
e70236a8 11420 }
8c9f3aaf
JB
11421
11422 /* Default just returns -ENODEV to indicate unsupported */
11423 dev_priv->display.queue_flip = intel_default_queue_flip;
11424
11425 switch (INTEL_INFO(dev)->gen) {
11426 case 2:
11427 dev_priv->display.queue_flip = intel_gen2_queue_flip;
11428 break;
11429
11430 case 3:
11431 dev_priv->display.queue_flip = intel_gen3_queue_flip;
11432 break;
11433
11434 case 4:
11435 case 5:
11436 dev_priv->display.queue_flip = intel_gen4_queue_flip;
11437 break;
11438
11439 case 6:
11440 dev_priv->display.queue_flip = intel_gen6_queue_flip;
11441 break;
7c9017e5 11442 case 7:
4e0bbc31 11443 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
7c9017e5
JB
11444 dev_priv->display.queue_flip = intel_gen7_queue_flip;
11445 break;
8c9f3aaf 11446 }
7bd688cd
JN
11447
11448 intel_panel_init_backlight_funcs(dev);
e70236a8
JB
11449}
11450
b690e96c
JB
11451/*
11452 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
11453 * resume, or other times. This quirk makes sure that's the case for
11454 * affected systems.
11455 */
0206e353 11456static void quirk_pipea_force(struct drm_device *dev)
b690e96c
JB
11457{
11458 struct drm_i915_private *dev_priv = dev->dev_private;
11459
11460 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 11461 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
11462}
11463
435793df
KP
11464/*
11465 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
11466 */
11467static void quirk_ssc_force_disable(struct drm_device *dev)
11468{
11469 struct drm_i915_private *dev_priv = dev->dev_private;
11470 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 11471 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
11472}
11473
4dca20ef 11474/*
5a15ab5b
CE
11475 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
11476 * brightness value
4dca20ef
CE
11477 */
11478static void quirk_invert_brightness(struct drm_device *dev)
11479{
11480 struct drm_i915_private *dev_priv = dev->dev_private;
11481 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 11482 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
11483}
11484
b690e96c
JB
11485struct intel_quirk {
11486 int device;
11487 int subsystem_vendor;
11488 int subsystem_device;
11489 void (*hook)(struct drm_device *dev);
11490};
11491
5f85f176
EE
11492/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
11493struct intel_dmi_quirk {
11494 void (*hook)(struct drm_device *dev);
11495 const struct dmi_system_id (*dmi_id_list)[];
11496};
11497
11498static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
11499{
11500 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
11501 return 1;
11502}
11503
11504static const struct intel_dmi_quirk intel_dmi_quirks[] = {
11505 {
11506 .dmi_id_list = &(const struct dmi_system_id[]) {
11507 {
11508 .callback = intel_dmi_reverse_brightness,
11509 .ident = "NCR Corporation",
11510 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
11511 DMI_MATCH(DMI_PRODUCT_NAME, ""),
11512 },
11513 },
11514 { } /* terminating entry */
11515 },
11516 .hook = quirk_invert_brightness,
11517 },
11518};
11519
c43b5634 11520static struct intel_quirk intel_quirks[] = {
b690e96c 11521 /* HP Mini needs pipe A force quirk (LP: #322104) */
0206e353 11522 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
b690e96c 11523
b690e96c
JB
11524 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
11525 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
11526
b690e96c
JB
11527 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
11528 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
11529
a4945f95 11530 /* 830 needs to leave pipe A & dpll A up */
dcdaed6e 11531 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
435793df
KP
11532
11533 /* Lenovo U160 cannot use SSC on LVDS */
11534 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
11535
11536 /* Sony Vaio Y cannot use SSC on LVDS */
11537 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b 11538
be505f64
AH
11539 /* Acer Aspire 5734Z must invert backlight brightness */
11540 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
11541
11542 /* Acer/eMachines G725 */
11543 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
11544
11545 /* Acer/eMachines e725 */
11546 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
11547
11548 /* Acer/Packard Bell NCL20 */
11549 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
11550
11551 /* Acer Aspire 4736Z */
11552 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
0f540c3a
JN
11553
11554 /* Acer Aspire 5336 */
11555 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
b690e96c
JB
11556};
11557
11558static void intel_init_quirks(struct drm_device *dev)
11559{
11560 struct pci_dev *d = dev->pdev;
11561 int i;
11562
11563 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
11564 struct intel_quirk *q = &intel_quirks[i];
11565
11566 if (d->device == q->device &&
11567 (d->subsystem_vendor == q->subsystem_vendor ||
11568 q->subsystem_vendor == PCI_ANY_ID) &&
11569 (d->subsystem_device == q->subsystem_device ||
11570 q->subsystem_device == PCI_ANY_ID))
11571 q->hook(dev);
11572 }
5f85f176
EE
11573 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
11574 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
11575 intel_dmi_quirks[i].hook(dev);
11576 }
b690e96c
JB
11577}
11578
9cce37f4
JB
11579/* Disable the VGA plane that we never use */
11580static void i915_disable_vga(struct drm_device *dev)
11581{
11582 struct drm_i915_private *dev_priv = dev->dev_private;
11583 u8 sr1;
766aa1c4 11584 u32 vga_reg = i915_vgacntrl_reg(dev);
9cce37f4 11585
2b37c616 11586 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
9cce37f4 11587 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 11588 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
11589 sr1 = inb(VGA_SR_DATA);
11590 outb(sr1 | 1<<5, VGA_SR_DATA);
11591 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
11592 udelay(300);
11593
11594 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
11595 POSTING_READ(vga_reg);
11596}
11597
f817586c
DV
11598void intel_modeset_init_hw(struct drm_device *dev)
11599{
a8f78b58
ED
11600 intel_prepare_ddi(dev);
11601
f817586c
DV
11602 intel_init_clock_gating(dev);
11603
5382f5f3 11604 intel_reset_dpio(dev);
40e9cf64 11605
8090c6b9 11606 intel_enable_gt_powersave(dev);
f817586c
DV
11607}
11608
7d708ee4
ID
11609void intel_modeset_suspend_hw(struct drm_device *dev)
11610{
11611 intel_suspend_hw(dev);
11612}
11613
79e53945
JB
11614void intel_modeset_init(struct drm_device *dev)
11615{
652c393a 11616 struct drm_i915_private *dev_priv = dev->dev_private;
1fe47785 11617 int sprite, ret;
8cc87b75 11618 enum pipe pipe;
46f297fb 11619 struct intel_crtc *crtc;
79e53945
JB
11620
11621 drm_mode_config_init(dev);
11622
11623 dev->mode_config.min_width = 0;
11624 dev->mode_config.min_height = 0;
11625
019d96cb
DA
11626 dev->mode_config.preferred_depth = 24;
11627 dev->mode_config.prefer_shadow = 1;
11628
e6ecefaa 11629 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 11630
b690e96c
JB
11631 intel_init_quirks(dev);
11632
1fa61106
ED
11633 intel_init_pm(dev);
11634
e3c74757
BW
11635 if (INTEL_INFO(dev)->num_pipes == 0)
11636 return;
11637
e70236a8
JB
11638 intel_init_display(dev);
11639
a6c45cf0
CW
11640 if (IS_GEN2(dev)) {
11641 dev->mode_config.max_width = 2048;
11642 dev->mode_config.max_height = 2048;
11643 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
11644 dev->mode_config.max_width = 4096;
11645 dev->mode_config.max_height = 4096;
79e53945 11646 } else {
a6c45cf0
CW
11647 dev->mode_config.max_width = 8192;
11648 dev->mode_config.max_height = 8192;
79e53945 11649 }
068be561
DL
11650
11651 if (IS_GEN2(dev)) {
11652 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
11653 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
11654 } else {
11655 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
11656 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
11657 }
11658
5d4545ae 11659 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
79e53945 11660
28c97730 11661 DRM_DEBUG_KMS("%d display pipe%s available.\n",
7eb552ae
BW
11662 INTEL_INFO(dev)->num_pipes,
11663 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
79e53945 11664
8cc87b75
DL
11665 for_each_pipe(pipe) {
11666 intel_crtc_init(dev, pipe);
1fe47785
DL
11667 for_each_sprite(pipe, sprite) {
11668 ret = intel_plane_init(dev, pipe, sprite);
7f1f3851 11669 if (ret)
06da8da2 11670 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
1fe47785 11671 pipe_name(pipe), sprite_name(pipe, sprite), ret);
7f1f3851 11672 }
79e53945
JB
11673 }
11674
f42bb70d 11675 intel_init_dpio(dev);
5382f5f3 11676 intel_reset_dpio(dev);
f42bb70d 11677
79f689aa 11678 intel_cpu_pll_init(dev);
e72f9fbf 11679 intel_shared_dpll_init(dev);
ee7b9f93 11680
9cce37f4
JB
11681 /* Just disable it once at startup */
11682 i915_disable_vga(dev);
79e53945 11683 intel_setup_outputs(dev);
11be49eb
CW
11684
11685 /* Just in case the BIOS is doing something questionable. */
11686 intel_disable_fbc(dev);
fa9fa083 11687
8b687df4 11688 mutex_lock(&dev->mode_config.mutex);
fa9fa083 11689 intel_modeset_setup_hw_state(dev, false);
8b687df4 11690 mutex_unlock(&dev->mode_config.mutex);
46f297fb 11691
d3fcc808 11692 for_each_intel_crtc(dev, crtc) {
46f297fb
JB
11693 if (!crtc->active)
11694 continue;
11695
46f297fb 11696 /*
46f297fb
JB
11697 * Note that reserving the BIOS fb up front prevents us
11698 * from stuffing other stolen allocations like the ring
11699 * on top. This prevents some ugliness at boot time, and
11700 * can even allow for smooth boot transitions if the BIOS
11701 * fb is large enough for the active pipe configuration.
11702 */
11703 if (dev_priv->display.get_plane_config) {
11704 dev_priv->display.get_plane_config(crtc,
11705 &crtc->plane_config);
11706 /*
11707 * If the fb is shared between multiple heads, we'll
11708 * just get the first one.
11709 */
484b41dd 11710 intel_find_plane_obj(crtc, &crtc->plane_config);
46f297fb 11711 }
46f297fb 11712 }
2c7111db
CW
11713}
11714
24929352
DV
11715static void
11716intel_connector_break_all_links(struct intel_connector *connector)
11717{
11718 connector->base.dpms = DRM_MODE_DPMS_OFF;
11719 connector->base.encoder = NULL;
11720 connector->encoder->connectors_active = false;
11721 connector->encoder->base.crtc = NULL;
11722}
11723
7fad798e
DV
11724static void intel_enable_pipe_a(struct drm_device *dev)
11725{
11726 struct intel_connector *connector;
11727 struct drm_connector *crt = NULL;
11728 struct intel_load_detect_pipe load_detect_temp;
11729
11730 /* We can't just switch on the pipe A, we need to set things up with a
11731 * proper mode and output configuration. As a gross hack, enable pipe A
11732 * by enabling the load detect pipe once. */
11733 list_for_each_entry(connector,
11734 &dev->mode_config.connector_list,
11735 base.head) {
11736 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
11737 crt = &connector->base;
11738 break;
11739 }
11740 }
11741
11742 if (!crt)
11743 return;
11744
11745 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
11746 intel_release_load_detect_pipe(crt, &load_detect_temp);
11747
652c393a 11748
7fad798e
DV
11749}
11750
fa555837
DV
11751static bool
11752intel_check_plane_mapping(struct intel_crtc *crtc)
11753{
7eb552ae
BW
11754 struct drm_device *dev = crtc->base.dev;
11755 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837
DV
11756 u32 reg, val;
11757
7eb552ae 11758 if (INTEL_INFO(dev)->num_pipes == 1)
fa555837
DV
11759 return true;
11760
11761 reg = DSPCNTR(!crtc->plane);
11762 val = I915_READ(reg);
11763
11764 if ((val & DISPLAY_PLANE_ENABLE) &&
11765 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
11766 return false;
11767
11768 return true;
11769}
11770
24929352
DV
11771static void intel_sanitize_crtc(struct intel_crtc *crtc)
11772{
11773 struct drm_device *dev = crtc->base.dev;
11774 struct drm_i915_private *dev_priv = dev->dev_private;
fa555837 11775 u32 reg;
24929352 11776
24929352 11777 /* Clear any frame start delays used for debugging left by the BIOS */
3b117c8f 11778 reg = PIPECONF(crtc->config.cpu_transcoder);
24929352
DV
11779 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
11780
11781 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
11782 * disable the crtc (and hence change the state) if it is wrong. Note
11783 * that gen4+ has a fixed plane -> pipe mapping. */
11784 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
11785 struct intel_connector *connector;
11786 bool plane;
11787
24929352
DV
11788 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
11789 crtc->base.base.id);
11790
11791 /* Pipe has the wrong plane attached and the plane is active.
11792 * Temporarily change the plane mapping and disable everything
11793 * ... */
11794 plane = crtc->plane;
11795 crtc->plane = !plane;
11796 dev_priv->display.crtc_disable(&crtc->base);
11797 crtc->plane = plane;
11798
11799 /* ... and break all links. */
11800 list_for_each_entry(connector, &dev->mode_config.connector_list,
11801 base.head) {
11802 if (connector->encoder->base.crtc != &crtc->base)
11803 continue;
11804
11805 intel_connector_break_all_links(connector);
11806 }
11807
11808 WARN_ON(crtc->active);
11809 crtc->base.enabled = false;
11810 }
24929352 11811
7fad798e
DV
11812 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
11813 crtc->pipe == PIPE_A && !crtc->active) {
11814 /* BIOS forgot to enable pipe A, this mostly happens after
11815 * resume. Force-enable the pipe to fix this, the update_dpms
11816 * call below we restore the pipe to the right state, but leave
11817 * the required bits on. */
11818 intel_enable_pipe_a(dev);
11819 }
11820
24929352
DV
11821 /* Adjust the state of the output pipe according to whether we
11822 * have active connectors/encoders. */
11823 intel_crtc_update_dpms(&crtc->base);
11824
11825 if (crtc->active != crtc->base.enabled) {
11826 struct intel_encoder *encoder;
11827
11828 /* This can happen either due to bugs in the get_hw_state
11829 * functions or because the pipe is force-enabled due to the
11830 * pipe A quirk. */
11831 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
11832 crtc->base.base.id,
11833 crtc->base.enabled ? "enabled" : "disabled",
11834 crtc->active ? "enabled" : "disabled");
11835
11836 crtc->base.enabled = crtc->active;
11837
11838 /* Because we only establish the connector -> encoder ->
11839 * crtc links if something is active, this means the
11840 * crtc is now deactivated. Break the links. connector
11841 * -> encoder links are only establish when things are
11842 * actually up, hence no need to break them. */
11843 WARN_ON(crtc->active);
11844
11845 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
11846 WARN_ON(encoder->connectors_active);
11847 encoder->base.crtc = NULL;
11848 }
11849 }
c5ab3bc0
DV
11850
11851 if (crtc->active || IS_VALLEYVIEW(dev) || INTEL_INFO(dev)->gen < 5) {
4cc31489
DV
11852 /*
11853 * We start out with underrun reporting disabled to avoid races.
11854 * For correct bookkeeping mark this on active crtcs.
11855 *
c5ab3bc0
DV
11856 * Also on gmch platforms we dont have any hardware bits to
11857 * disable the underrun reporting. Which means we need to start
11858 * out with underrun reporting disabled also on inactive pipes,
11859 * since otherwise we'll complain about the garbage we read when
11860 * e.g. coming up after runtime pm.
11861 *
4cc31489
DV
11862 * No protection against concurrent access is required - at
11863 * worst a fifo underrun happens which also sets this to false.
11864 */
11865 crtc->cpu_fifo_underrun_disabled = true;
11866 crtc->pch_fifo_underrun_disabled = true;
11867 }
24929352
DV
11868}
11869
11870static void intel_sanitize_encoder(struct intel_encoder *encoder)
11871{
11872 struct intel_connector *connector;
11873 struct drm_device *dev = encoder->base.dev;
11874
11875 /* We need to check both for a crtc link (meaning that the
11876 * encoder is active and trying to read from a pipe) and the
11877 * pipe itself being active. */
11878 bool has_active_crtc = encoder->base.crtc &&
11879 to_intel_crtc(encoder->base.crtc)->active;
11880
11881 if (encoder->connectors_active && !has_active_crtc) {
11882 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
11883 encoder->base.base.id,
11884 drm_get_encoder_name(&encoder->base));
11885
11886 /* Connector is active, but has no active pipe. This is
11887 * fallout from our resume register restoring. Disable
11888 * the encoder manually again. */
11889 if (encoder->base.crtc) {
11890 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
11891 encoder->base.base.id,
11892 drm_get_encoder_name(&encoder->base));
11893 encoder->disable(encoder);
11894 }
11895
11896 /* Inconsistent output/port/pipe state happens presumably due to
11897 * a bug in one of the get_hw_state functions. Or someplace else
11898 * in our code, like the register restore mess on resume. Clamp
11899 * things to off as a safer default. */
11900 list_for_each_entry(connector,
11901 &dev->mode_config.connector_list,
11902 base.head) {
11903 if (connector->encoder != encoder)
11904 continue;
11905
11906 intel_connector_break_all_links(connector);
11907 }
11908 }
11909 /* Enabled encoders without active connectors will be fixed in
11910 * the crtc fixup. */
11911}
11912
04098753 11913void i915_redisable_vga_power_on(struct drm_device *dev)
0fde901f
KM
11914{
11915 struct drm_i915_private *dev_priv = dev->dev_private;
766aa1c4 11916 u32 vga_reg = i915_vgacntrl_reg(dev);
0fde901f 11917
04098753
ID
11918 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
11919 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
11920 i915_disable_vga(dev);
11921 }
11922}
11923
11924void i915_redisable_vga(struct drm_device *dev)
11925{
11926 struct drm_i915_private *dev_priv = dev->dev_private;
11927
8dc8a27c
PZ
11928 /* This function can be called both from intel_modeset_setup_hw_state or
11929 * at a very early point in our resume sequence, where the power well
11930 * structures are not yet restored. Since this function is at a very
11931 * paranoid "someone might have enabled VGA while we were not looking"
11932 * level, just check if the power well is enabled instead of trying to
11933 * follow the "don't touch the power well if we don't need it" policy
11934 * the rest of the driver uses. */
04098753 11935 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_VGA))
8dc8a27c
PZ
11936 return;
11937
04098753 11938 i915_redisable_vga_power_on(dev);
0fde901f
KM
11939}
11940
98ec7739
VS
11941static bool primary_get_hw_state(struct intel_crtc *crtc)
11942{
11943 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
11944
11945 if (!crtc->active)
11946 return false;
11947
11948 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
11949}
11950
30e984df 11951static void intel_modeset_readout_hw_state(struct drm_device *dev)
24929352
DV
11952{
11953 struct drm_i915_private *dev_priv = dev->dev_private;
11954 enum pipe pipe;
24929352
DV
11955 struct intel_crtc *crtc;
11956 struct intel_encoder *encoder;
11957 struct intel_connector *connector;
5358901f 11958 int i;
24929352 11959
d3fcc808 11960 for_each_intel_crtc(dev, crtc) {
88adfff1 11961 memset(&crtc->config, 0, sizeof(crtc->config));
3b117c8f 11962
9953599b
DV
11963 crtc->config.quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
11964
0e8ffe1b
DV
11965 crtc->active = dev_priv->display.get_pipe_config(crtc,
11966 &crtc->config);
24929352
DV
11967
11968 crtc->base.enabled = crtc->active;
98ec7739 11969 crtc->primary_enabled = primary_get_hw_state(crtc);
24929352
DV
11970
11971 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
11972 crtc->base.base.id,
11973 crtc->active ? "enabled" : "disabled");
11974 }
11975
5358901f 11976 /* FIXME: Smash this into the new shared dpll infrastructure. */
affa9354 11977 if (HAS_DDI(dev))
6441ab5f
PZ
11978 intel_ddi_setup_hw_pll_state(dev);
11979
5358901f
DV
11980 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
11981 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
11982
11983 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
11984 pll->active = 0;
d3fcc808 11985 for_each_intel_crtc(dev, crtc) {
5358901f
DV
11986 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
11987 pll->active++;
11988 }
11989 pll->refcount = pll->active;
11990
35c95375
DV
11991 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
11992 pll->name, pll->refcount, pll->on);
5358901f
DV
11993 }
11994
24929352
DV
11995 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
11996 base.head) {
11997 pipe = 0;
11998
11999 if (encoder->get_hw_state(encoder, &pipe)) {
045ac3b5
JB
12000 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12001 encoder->base.crtc = &crtc->base;
1d37b689 12002 encoder->get_config(encoder, &crtc->config);
24929352
DV
12003 } else {
12004 encoder->base.crtc = NULL;
12005 }
12006
12007 encoder->connectors_active = false;
6f2bcceb 12008 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
24929352
DV
12009 encoder->base.base.id,
12010 drm_get_encoder_name(&encoder->base),
12011 encoder->base.crtc ? "enabled" : "disabled",
6f2bcceb 12012 pipe_name(pipe));
24929352
DV
12013 }
12014
12015 list_for_each_entry(connector, &dev->mode_config.connector_list,
12016 base.head) {
12017 if (connector->get_hw_state(connector)) {
12018 connector->base.dpms = DRM_MODE_DPMS_ON;
12019 connector->encoder->connectors_active = true;
12020 connector->base.encoder = &connector->encoder->base;
12021 } else {
12022 connector->base.dpms = DRM_MODE_DPMS_OFF;
12023 connector->base.encoder = NULL;
12024 }
12025 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
12026 connector->base.base.id,
12027 drm_get_connector_name(&connector->base),
12028 connector->base.encoder ? "enabled" : "disabled");
12029 }
30e984df
DV
12030}
12031
12032/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
12033 * and i915 state tracking structures. */
12034void intel_modeset_setup_hw_state(struct drm_device *dev,
12035 bool force_restore)
12036{
12037 struct drm_i915_private *dev_priv = dev->dev_private;
12038 enum pipe pipe;
30e984df
DV
12039 struct intel_crtc *crtc;
12040 struct intel_encoder *encoder;
35c95375 12041 int i;
30e984df
DV
12042
12043 intel_modeset_readout_hw_state(dev);
24929352 12044
babea61d
JB
12045 /*
12046 * Now that we have the config, copy it to each CRTC struct
12047 * Note that this could go away if we move to using crtc_config
12048 * checking everywhere.
12049 */
d3fcc808 12050 for_each_intel_crtc(dev, crtc) {
d330a953 12051 if (crtc->active && i915.fastboot) {
f6a83288 12052 intel_mode_from_pipe_config(&crtc->base.mode, &crtc->config);
babea61d
JB
12053 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
12054 crtc->base.base.id);
12055 drm_mode_debug_printmodeline(&crtc->base.mode);
12056 }
12057 }
12058
24929352
DV
12059 /* HW state is read out, now we need to sanitize this mess. */
12060 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12061 base.head) {
12062 intel_sanitize_encoder(encoder);
12063 }
12064
12065 for_each_pipe(pipe) {
12066 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12067 intel_sanitize_crtc(crtc);
c0b03411 12068 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
24929352 12069 }
9a935856 12070
35c95375
DV
12071 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12072 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12073
12074 if (!pll->on || pll->active)
12075 continue;
12076
12077 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
12078
12079 pll->disable(dev_priv, pll);
12080 pll->on = false;
12081 }
12082
96f90c54 12083 if (HAS_PCH_SPLIT(dev))
243e6a44
VS
12084 ilk_wm_get_hw_state(dev);
12085
45e2b5f6 12086 if (force_restore) {
7d0bc1ea
VS
12087 i915_redisable_vga(dev);
12088
f30da187
DV
12089 /*
12090 * We need to use raw interfaces for restoring state to avoid
12091 * checking (bogus) intermediate states.
12092 */
45e2b5f6 12093 for_each_pipe(pipe) {
b5644d05
JB
12094 struct drm_crtc *crtc =
12095 dev_priv->pipe_to_crtc_mapping[pipe];
f30da187
DV
12096
12097 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
f4510a27 12098 crtc->primary->fb);
45e2b5f6
DV
12099 }
12100 } else {
12101 intel_modeset_update_staged_output_state(dev);
12102 }
8af6cf88
DV
12103
12104 intel_modeset_check_state(dev);
2c7111db
CW
12105}
12106
12107void intel_modeset_gem_init(struct drm_device *dev)
12108{
484b41dd
JB
12109 struct drm_crtc *c;
12110 struct intel_framebuffer *fb;
12111
ae48434c
ID
12112 mutex_lock(&dev->struct_mutex);
12113 intel_init_gt_powersave(dev);
12114 mutex_unlock(&dev->struct_mutex);
12115
1833b134 12116 intel_modeset_init_hw(dev);
02e792fb
DV
12117
12118 intel_setup_overlay(dev);
484b41dd
JB
12119
12120 /*
12121 * Make sure any fbs we allocated at startup are properly
12122 * pinned & fenced. When we do the allocation it's too early
12123 * for this.
12124 */
12125 mutex_lock(&dev->struct_mutex);
70e1e0ec 12126 for_each_crtc(dev, c) {
66e514c1 12127 if (!c->primary->fb)
484b41dd
JB
12128 continue;
12129
66e514c1 12130 fb = to_intel_framebuffer(c->primary->fb);
484b41dd
JB
12131 if (intel_pin_and_fence_fb_obj(dev, fb->obj, NULL)) {
12132 DRM_ERROR("failed to pin boot fb on pipe %d\n",
12133 to_intel_crtc(c)->pipe);
66e514c1
DA
12134 drm_framebuffer_unreference(c->primary->fb);
12135 c->primary->fb = NULL;
484b41dd
JB
12136 }
12137 }
12138 mutex_unlock(&dev->struct_mutex);
79e53945
JB
12139}
12140
4932e2c3
ID
12141void intel_connector_unregister(struct intel_connector *intel_connector)
12142{
12143 struct drm_connector *connector = &intel_connector->base;
12144
12145 intel_panel_destroy_backlight(connector);
12146 drm_sysfs_connector_remove(connector);
12147}
12148
79e53945
JB
12149void intel_modeset_cleanup(struct drm_device *dev)
12150{
652c393a
JB
12151 struct drm_i915_private *dev_priv = dev->dev_private;
12152 struct drm_crtc *crtc;
d9255d57 12153 struct drm_connector *connector;
652c393a 12154
fd0c0642
DV
12155 /*
12156 * Interrupts and polling as the first thing to avoid creating havoc.
12157 * Too much stuff here (turning of rps, connectors, ...) would
12158 * experience fancy races otherwise.
12159 */
12160 drm_irq_uninstall(dev);
12161 cancel_work_sync(&dev_priv->hotplug_work);
12162 /*
12163 * Due to the hpd irq storm handling the hotplug work can re-arm the
12164 * poll handlers. Hence disable polling after hpd handling is shut down.
12165 */
f87ea761 12166 drm_kms_helper_poll_fini(dev);
fd0c0642 12167
652c393a
JB
12168 mutex_lock(&dev->struct_mutex);
12169
723bfd70
JB
12170 intel_unregister_dsm_handler();
12171
70e1e0ec 12172 for_each_crtc(dev, crtc) {
652c393a 12173 /* Skip inactive CRTCs */
f4510a27 12174 if (!crtc->primary->fb)
652c393a
JB
12175 continue;
12176
3dec0095 12177 intel_increase_pllclock(crtc);
652c393a
JB
12178 }
12179
973d04f9 12180 intel_disable_fbc(dev);
e70236a8 12181
8090c6b9 12182 intel_disable_gt_powersave(dev);
0cdab21f 12183
930ebb46
DV
12184 ironlake_teardown_rc6(dev);
12185
69341a5e
KH
12186 mutex_unlock(&dev->struct_mutex);
12187
1630fe75
CW
12188 /* flush any delayed tasks or pending work */
12189 flush_scheduled_work();
12190
db31af1d
JN
12191 /* destroy the backlight and sysfs files before encoders/connectors */
12192 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4932e2c3
ID
12193 struct intel_connector *intel_connector;
12194
12195 intel_connector = to_intel_connector(connector);
12196 intel_connector->unregister(intel_connector);
db31af1d 12197 }
d9255d57 12198
79e53945 12199 drm_mode_config_cleanup(dev);
4d7bb011
DV
12200
12201 intel_cleanup_overlay(dev);
ae48434c
ID
12202
12203 mutex_lock(&dev->struct_mutex);
12204 intel_cleanup_gt_powersave(dev);
12205 mutex_unlock(&dev->struct_mutex);
79e53945
JB
12206}
12207
f1c79df3
ZW
12208/*
12209 * Return which encoder is currently attached for connector.
12210 */
df0e9248 12211struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
79e53945 12212{
df0e9248
CW
12213 return &intel_attached_encoder(connector)->base;
12214}
f1c79df3 12215
df0e9248
CW
12216void intel_connector_attach_encoder(struct intel_connector *connector,
12217 struct intel_encoder *encoder)
12218{
12219 connector->encoder = encoder;
12220 drm_mode_connector_attach_encoder(&connector->base,
12221 &encoder->base);
79e53945 12222}
28d52043
DA
12223
12224/*
12225 * set vga decode state - true == enable VGA decode
12226 */
12227int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
12228{
12229 struct drm_i915_private *dev_priv = dev->dev_private;
a885b3cc 12230 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
28d52043
DA
12231 u16 gmch_ctrl;
12232
75fa041d
CW
12233 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
12234 DRM_ERROR("failed to read control word\n");
12235 return -EIO;
12236 }
12237
c0cc8a55
CW
12238 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
12239 return 0;
12240
28d52043
DA
12241 if (state)
12242 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
12243 else
12244 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
75fa041d
CW
12245
12246 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
12247 DRM_ERROR("failed to write control word\n");
12248 return -EIO;
12249 }
12250
28d52043
DA
12251 return 0;
12252}
c4a1d9e4 12253
c4a1d9e4 12254struct intel_display_error_state {
ff57f1b0
PZ
12255
12256 u32 power_well_driver;
12257
63b66e5b
CW
12258 int num_transcoders;
12259
c4a1d9e4
CW
12260 struct intel_cursor_error_state {
12261 u32 control;
12262 u32 position;
12263 u32 base;
12264 u32 size;
52331309 12265 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
12266
12267 struct intel_pipe_error_state {
ddf9c536 12268 bool power_domain_on;
c4a1d9e4 12269 u32 source;
f301b1e1 12270 u32 stat;
52331309 12271 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
12272
12273 struct intel_plane_error_state {
12274 u32 control;
12275 u32 stride;
12276 u32 size;
12277 u32 pos;
12278 u32 addr;
12279 u32 surface;
12280 u32 tile_offset;
52331309 12281 } plane[I915_MAX_PIPES];
63b66e5b
CW
12282
12283 struct intel_transcoder_error_state {
ddf9c536 12284 bool power_domain_on;
63b66e5b
CW
12285 enum transcoder cpu_transcoder;
12286
12287 u32 conf;
12288
12289 u32 htotal;
12290 u32 hblank;
12291 u32 hsync;
12292 u32 vtotal;
12293 u32 vblank;
12294 u32 vsync;
12295 } transcoder[4];
c4a1d9e4
CW
12296};
12297
12298struct intel_display_error_state *
12299intel_display_capture_error_state(struct drm_device *dev)
12300{
fbee40df 12301 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4 12302 struct intel_display_error_state *error;
63b66e5b
CW
12303 int transcoders[] = {
12304 TRANSCODER_A,
12305 TRANSCODER_B,
12306 TRANSCODER_C,
12307 TRANSCODER_EDP,
12308 };
c4a1d9e4
CW
12309 int i;
12310
63b66e5b
CW
12311 if (INTEL_INFO(dev)->num_pipes == 0)
12312 return NULL;
12313
9d1cb914 12314 error = kzalloc(sizeof(*error), GFP_ATOMIC);
c4a1d9e4
CW
12315 if (error == NULL)
12316 return NULL;
12317
190be112 12318 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
ff57f1b0
PZ
12319 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
12320
52331309 12321 for_each_pipe(i) {
ddf9c536 12322 error->pipe[i].power_domain_on =
da7e29bd
ID
12323 intel_display_power_enabled_sw(dev_priv,
12324 POWER_DOMAIN_PIPE(i));
ddf9c536 12325 if (!error->pipe[i].power_domain_on)
9d1cb914
PZ
12326 continue;
12327
5efb3e28
VS
12328 error->cursor[i].control = I915_READ(CURCNTR(i));
12329 error->cursor[i].position = I915_READ(CURPOS(i));
12330 error->cursor[i].base = I915_READ(CURBASE(i));
c4a1d9e4
CW
12331
12332 error->plane[i].control = I915_READ(DSPCNTR(i));
12333 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
80ca378b 12334 if (INTEL_INFO(dev)->gen <= 3) {
51889b35 12335 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
12336 error->plane[i].pos = I915_READ(DSPPOS(i));
12337 }
ca291363
PZ
12338 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
12339 error->plane[i].addr = I915_READ(DSPADDR(i));
c4a1d9e4
CW
12340 if (INTEL_INFO(dev)->gen >= 4) {
12341 error->plane[i].surface = I915_READ(DSPSURF(i));
12342 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
12343 }
12344
c4a1d9e4 12345 error->pipe[i].source = I915_READ(PIPESRC(i));
f301b1e1
ID
12346
12347 if (!HAS_PCH_SPLIT(dev))
12348 error->pipe[i].stat = I915_READ(PIPESTAT(i));
63b66e5b
CW
12349 }
12350
12351 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
12352 if (HAS_DDI(dev_priv->dev))
12353 error->num_transcoders++; /* Account for eDP. */
12354
12355 for (i = 0; i < error->num_transcoders; i++) {
12356 enum transcoder cpu_transcoder = transcoders[i];
12357
ddf9c536 12358 error->transcoder[i].power_domain_on =
da7e29bd 12359 intel_display_power_enabled_sw(dev_priv,
38cc1daf 12360 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
ddf9c536 12361 if (!error->transcoder[i].power_domain_on)
9d1cb914
PZ
12362 continue;
12363
63b66e5b
CW
12364 error->transcoder[i].cpu_transcoder = cpu_transcoder;
12365
12366 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
12367 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
12368 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
12369 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
12370 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
12371 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
12372 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
12373 }
12374
12375 return error;
12376}
12377
edc3d884
MK
12378#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
12379
c4a1d9e4 12380void
edc3d884 12381intel_display_print_error_state(struct drm_i915_error_state_buf *m,
c4a1d9e4
CW
12382 struct drm_device *dev,
12383 struct intel_display_error_state *error)
12384{
12385 int i;
12386
63b66e5b
CW
12387 if (!error)
12388 return;
12389
edc3d884 12390 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
190be112 12391 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
edc3d884 12392 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 12393 error->power_well_driver);
52331309 12394 for_each_pipe(i) {
edc3d884 12395 err_printf(m, "Pipe [%d]:\n", i);
ddf9c536
ID
12396 err_printf(m, " Power: %s\n",
12397 error->pipe[i].power_domain_on ? "on" : "off");
edc3d884 12398 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
f301b1e1 12399 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
edc3d884
MK
12400
12401 err_printf(m, "Plane [%d]:\n", i);
12402 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
12403 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
80ca378b 12404 if (INTEL_INFO(dev)->gen <= 3) {
edc3d884
MK
12405 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
12406 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 12407 }
4b71a570 12408 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
edc3d884 12409 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
c4a1d9e4 12410 if (INTEL_INFO(dev)->gen >= 4) {
edc3d884
MK
12411 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
12412 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
12413 }
12414
edc3d884
MK
12415 err_printf(m, "Cursor [%d]:\n", i);
12416 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
12417 err_printf(m, " POS: %08x\n", error->cursor[i].position);
12418 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4 12419 }
63b66e5b
CW
12420
12421 for (i = 0; i < error->num_transcoders; i++) {
1cf84bb6 12422 err_printf(m, "CPU transcoder: %c\n",
63b66e5b 12423 transcoder_name(error->transcoder[i].cpu_transcoder));
ddf9c536
ID
12424 err_printf(m, " Power: %s\n",
12425 error->transcoder[i].power_domain_on ? "on" : "off");
63b66e5b
CW
12426 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
12427 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
12428 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
12429 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
12430 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
12431 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
12432 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
12433 }
c4a1d9e4 12434}
This page took 2.199101 seconds and 5 git commands to generate.