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