2 * Copyright © 2006-2007 Intel Corporation
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:
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
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.
24 * Eric Anholt <eric@anholt.net>
27 #include <linux/dmi.h>
28 #include <linux/module.h>
29 #include <linux/input.h>
30 #include <linux/i2c.h>
31 #include <linux/kernel.h>
32 #include <linux/slab.h>
33 #include <linux/vgaarb.h>
34 #include <drm/drm_edid.h>
36 #include "intel_drv.h"
37 #include <drm/i915_drm.h>
39 #include "i915_trace.h"
40 #include <drm/drm_dp_helper.h>
41 #include <drm/drm_crtc_helper.h>
42 #include <linux/dma_remapping.h>
44 bool intel_pipe_has_type(struct drm_crtc
*crtc
, int type
);
45 static void intel_increase_pllclock(struct drm_crtc
*crtc
);
46 static void intel_crtc_update_cursor(struct drm_crtc
*crtc
, bool on
);
48 static void i9xx_crtc_clock_get(struct intel_crtc
*crtc
,
49 struct intel_crtc_config
*pipe_config
);
50 static void ironlake_crtc_clock_get(struct intel_crtc
*crtc
,
51 struct intel_crtc_config
*pipe_config
);
53 static int intel_set_mode(struct drm_crtc
*crtc
, struct drm_display_mode
*mode
,
54 int x
, int y
, struct drm_framebuffer
*old_fb
);
66 typedef struct intel_limit intel_limit_t
;
68 intel_range_t dot
, vco
, n
, m
, m1
, m2
, p
, p1
;
73 #define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */
76 intel_pch_rawclk(struct drm_device
*dev
)
78 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
80 WARN_ON(!HAS_PCH_SPLIT(dev
));
82 return I915_READ(PCH_RAWCLK_FREQ
) & RAWCLK_FREQ_MASK
;
85 static inline u32
/* units of 100MHz */
86 intel_fdi_link_freq(struct drm_device
*dev
)
89 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
90 return (I915_READ(FDI_PLL_BIOS_0
) & FDI_PLL_FB_CLOCK_MASK
) + 2;
95 static const intel_limit_t intel_limits_i8xx_dac
= {
96 .dot
= { .min
= 25000, .max
= 350000 },
97 .vco
= { .min
= 930000, .max
= 1400000 },
98 .n
= { .min
= 3, .max
= 16 },
99 .m
= { .min
= 96, .max
= 140 },
100 .m1
= { .min
= 18, .max
= 26 },
101 .m2
= { .min
= 6, .max
= 16 },
102 .p
= { .min
= 4, .max
= 128 },
103 .p1
= { .min
= 2, .max
= 33 },
104 .p2
= { .dot_limit
= 165000,
105 .p2_slow
= 4, .p2_fast
= 2 },
108 static const intel_limit_t intel_limits_i8xx_dvo
= {
109 .dot
= { .min
= 25000, .max
= 350000 },
110 .vco
= { .min
= 930000, .max
= 1400000 },
111 .n
= { .min
= 3, .max
= 16 },
112 .m
= { .min
= 96, .max
= 140 },
113 .m1
= { .min
= 18, .max
= 26 },
114 .m2
= { .min
= 6, .max
= 16 },
115 .p
= { .min
= 4, .max
= 128 },
116 .p1
= { .min
= 2, .max
= 33 },
117 .p2
= { .dot_limit
= 165000,
118 .p2_slow
= 4, .p2_fast
= 4 },
121 static const intel_limit_t intel_limits_i8xx_lvds
= {
122 .dot
= { .min
= 25000, .max
= 350000 },
123 .vco
= { .min
= 930000, .max
= 1400000 },
124 .n
= { .min
= 3, .max
= 16 },
125 .m
= { .min
= 96, .max
= 140 },
126 .m1
= { .min
= 18, .max
= 26 },
127 .m2
= { .min
= 6, .max
= 16 },
128 .p
= { .min
= 4, .max
= 128 },
129 .p1
= { .min
= 1, .max
= 6 },
130 .p2
= { .dot_limit
= 165000,
131 .p2_slow
= 14, .p2_fast
= 7 },
134 static const intel_limit_t intel_limits_i9xx_sdvo
= {
135 .dot
= { .min
= 20000, .max
= 400000 },
136 .vco
= { .min
= 1400000, .max
= 2800000 },
137 .n
= { .min
= 1, .max
= 6 },
138 .m
= { .min
= 70, .max
= 120 },
139 .m1
= { .min
= 8, .max
= 18 },
140 .m2
= { .min
= 3, .max
= 7 },
141 .p
= { .min
= 5, .max
= 80 },
142 .p1
= { .min
= 1, .max
= 8 },
143 .p2
= { .dot_limit
= 200000,
144 .p2_slow
= 10, .p2_fast
= 5 },
147 static const intel_limit_t intel_limits_i9xx_lvds
= {
148 .dot
= { .min
= 20000, .max
= 400000 },
149 .vco
= { .min
= 1400000, .max
= 2800000 },
150 .n
= { .min
= 1, .max
= 6 },
151 .m
= { .min
= 70, .max
= 120 },
152 .m1
= { .min
= 8, .max
= 18 },
153 .m2
= { .min
= 3, .max
= 7 },
154 .p
= { .min
= 7, .max
= 98 },
155 .p1
= { .min
= 1, .max
= 8 },
156 .p2
= { .dot_limit
= 112000,
157 .p2_slow
= 14, .p2_fast
= 7 },
161 static const intel_limit_t intel_limits_g4x_sdvo
= {
162 .dot
= { .min
= 25000, .max
= 270000 },
163 .vco
= { .min
= 1750000, .max
= 3500000},
164 .n
= { .min
= 1, .max
= 4 },
165 .m
= { .min
= 104, .max
= 138 },
166 .m1
= { .min
= 17, .max
= 23 },
167 .m2
= { .min
= 5, .max
= 11 },
168 .p
= { .min
= 10, .max
= 30 },
169 .p1
= { .min
= 1, .max
= 3},
170 .p2
= { .dot_limit
= 270000,
176 static const intel_limit_t intel_limits_g4x_hdmi
= {
177 .dot
= { .min
= 22000, .max
= 400000 },
178 .vco
= { .min
= 1750000, .max
= 3500000},
179 .n
= { .min
= 1, .max
= 4 },
180 .m
= { .min
= 104, .max
= 138 },
181 .m1
= { .min
= 16, .max
= 23 },
182 .m2
= { .min
= 5, .max
= 11 },
183 .p
= { .min
= 5, .max
= 80 },
184 .p1
= { .min
= 1, .max
= 8},
185 .p2
= { .dot_limit
= 165000,
186 .p2_slow
= 10, .p2_fast
= 5 },
189 static const intel_limit_t intel_limits_g4x_single_channel_lvds
= {
190 .dot
= { .min
= 20000, .max
= 115000 },
191 .vco
= { .min
= 1750000, .max
= 3500000 },
192 .n
= { .min
= 1, .max
= 3 },
193 .m
= { .min
= 104, .max
= 138 },
194 .m1
= { .min
= 17, .max
= 23 },
195 .m2
= { .min
= 5, .max
= 11 },
196 .p
= { .min
= 28, .max
= 112 },
197 .p1
= { .min
= 2, .max
= 8 },
198 .p2
= { .dot_limit
= 0,
199 .p2_slow
= 14, .p2_fast
= 14
203 static const intel_limit_t intel_limits_g4x_dual_channel_lvds
= {
204 .dot
= { .min
= 80000, .max
= 224000 },
205 .vco
= { .min
= 1750000, .max
= 3500000 },
206 .n
= { .min
= 1, .max
= 3 },
207 .m
= { .min
= 104, .max
= 138 },
208 .m1
= { .min
= 17, .max
= 23 },
209 .m2
= { .min
= 5, .max
= 11 },
210 .p
= { .min
= 14, .max
= 42 },
211 .p1
= { .min
= 2, .max
= 6 },
212 .p2
= { .dot_limit
= 0,
213 .p2_slow
= 7, .p2_fast
= 7
217 static const intel_limit_t intel_limits_pineview_sdvo
= {
218 .dot
= { .min
= 20000, .max
= 400000},
219 .vco
= { .min
= 1700000, .max
= 3500000 },
220 /* Pineview's Ncounter is a ring counter */
221 .n
= { .min
= 3, .max
= 6 },
222 .m
= { .min
= 2, .max
= 256 },
223 /* Pineview only has one combined m divider, which we treat as m2. */
224 .m1
= { .min
= 0, .max
= 0 },
225 .m2
= { .min
= 0, .max
= 254 },
226 .p
= { .min
= 5, .max
= 80 },
227 .p1
= { .min
= 1, .max
= 8 },
228 .p2
= { .dot_limit
= 200000,
229 .p2_slow
= 10, .p2_fast
= 5 },
232 static const intel_limit_t intel_limits_pineview_lvds
= {
233 .dot
= { .min
= 20000, .max
= 400000 },
234 .vco
= { .min
= 1700000, .max
= 3500000 },
235 .n
= { .min
= 3, .max
= 6 },
236 .m
= { .min
= 2, .max
= 256 },
237 .m1
= { .min
= 0, .max
= 0 },
238 .m2
= { .min
= 0, .max
= 254 },
239 .p
= { .min
= 7, .max
= 112 },
240 .p1
= { .min
= 1, .max
= 8 },
241 .p2
= { .dot_limit
= 112000,
242 .p2_slow
= 14, .p2_fast
= 14 },
245 /* Ironlake / Sandybridge
247 * We calculate clock using (register_value + 2) for N/M1/M2, so here
248 * the range value for them is (actual_value - 2).
250 static const intel_limit_t intel_limits_ironlake_dac
= {
251 .dot
= { .min
= 25000, .max
= 350000 },
252 .vco
= { .min
= 1760000, .max
= 3510000 },
253 .n
= { .min
= 1, .max
= 5 },
254 .m
= { .min
= 79, .max
= 127 },
255 .m1
= { .min
= 12, .max
= 22 },
256 .m2
= { .min
= 5, .max
= 9 },
257 .p
= { .min
= 5, .max
= 80 },
258 .p1
= { .min
= 1, .max
= 8 },
259 .p2
= { .dot_limit
= 225000,
260 .p2_slow
= 10, .p2_fast
= 5 },
263 static const intel_limit_t intel_limits_ironlake_single_lvds
= {
264 .dot
= { .min
= 25000, .max
= 350000 },
265 .vco
= { .min
= 1760000, .max
= 3510000 },
266 .n
= { .min
= 1, .max
= 3 },
267 .m
= { .min
= 79, .max
= 118 },
268 .m1
= { .min
= 12, .max
= 22 },
269 .m2
= { .min
= 5, .max
= 9 },
270 .p
= { .min
= 28, .max
= 112 },
271 .p1
= { .min
= 2, .max
= 8 },
272 .p2
= { .dot_limit
= 225000,
273 .p2_slow
= 14, .p2_fast
= 14 },
276 static const intel_limit_t intel_limits_ironlake_dual_lvds
= {
277 .dot
= { .min
= 25000, .max
= 350000 },
278 .vco
= { .min
= 1760000, .max
= 3510000 },
279 .n
= { .min
= 1, .max
= 3 },
280 .m
= { .min
= 79, .max
= 127 },
281 .m1
= { .min
= 12, .max
= 22 },
282 .m2
= { .min
= 5, .max
= 9 },
283 .p
= { .min
= 14, .max
= 56 },
284 .p1
= { .min
= 2, .max
= 8 },
285 .p2
= { .dot_limit
= 225000,
286 .p2_slow
= 7, .p2_fast
= 7 },
289 /* LVDS 100mhz refclk limits. */
290 static const intel_limit_t intel_limits_ironlake_single_lvds_100m
= {
291 .dot
= { .min
= 25000, .max
= 350000 },
292 .vco
= { .min
= 1760000, .max
= 3510000 },
293 .n
= { .min
= 1, .max
= 2 },
294 .m
= { .min
= 79, .max
= 126 },
295 .m1
= { .min
= 12, .max
= 22 },
296 .m2
= { .min
= 5, .max
= 9 },
297 .p
= { .min
= 28, .max
= 112 },
298 .p1
= { .min
= 2, .max
= 8 },
299 .p2
= { .dot_limit
= 225000,
300 .p2_slow
= 14, .p2_fast
= 14 },
303 static const intel_limit_t intel_limits_ironlake_dual_lvds_100m
= {
304 .dot
= { .min
= 25000, .max
= 350000 },
305 .vco
= { .min
= 1760000, .max
= 3510000 },
306 .n
= { .min
= 1, .max
= 3 },
307 .m
= { .min
= 79, .max
= 126 },
308 .m1
= { .min
= 12, .max
= 22 },
309 .m2
= { .min
= 5, .max
= 9 },
310 .p
= { .min
= 14, .max
= 42 },
311 .p1
= { .min
= 2, .max
= 6 },
312 .p2
= { .dot_limit
= 225000,
313 .p2_slow
= 7, .p2_fast
= 7 },
316 static const intel_limit_t intel_limits_vlv_dac
= {
317 .dot
= { .min
= 25000, .max
= 270000 },
318 .vco
= { .min
= 4000000, .max
= 6000000 },
319 .n
= { .min
= 1, .max
= 7 },
320 .m
= { .min
= 22, .max
= 450 }, /* guess */
321 .m1
= { .min
= 2, .max
= 3 },
322 .m2
= { .min
= 11, .max
= 156 },
323 .p
= { .min
= 10, .max
= 30 },
324 .p1
= { .min
= 1, .max
= 3 },
325 .p2
= { .dot_limit
= 270000,
326 .p2_slow
= 2, .p2_fast
= 20 },
329 static const intel_limit_t intel_limits_vlv_hdmi
= {
330 .dot
= { .min
= 25000, .max
= 270000 },
331 .vco
= { .min
= 4000000, .max
= 6000000 },
332 .n
= { .min
= 1, .max
= 7 },
333 .m
= { .min
= 60, .max
= 300 }, /* guess */
334 .m1
= { .min
= 2, .max
= 3 },
335 .m2
= { .min
= 11, .max
= 156 },
336 .p
= { .min
= 10, .max
= 30 },
337 .p1
= { .min
= 2, .max
= 3 },
338 .p2
= { .dot_limit
= 270000,
339 .p2_slow
= 2, .p2_fast
= 20 },
342 static const intel_limit_t intel_limits_vlv_dp
= {
343 .dot
= { .min
= 25000, .max
= 270000 },
344 .vco
= { .min
= 4000000, .max
= 6000000 },
345 .n
= { .min
= 1, .max
= 7 },
346 .m
= { .min
= 22, .max
= 450 },
347 .m1
= { .min
= 2, .max
= 3 },
348 .m2
= { .min
= 11, .max
= 156 },
349 .p
= { .min
= 10, .max
= 30 },
350 .p1
= { .min
= 1, .max
= 3 },
351 .p2
= { .dot_limit
= 270000,
352 .p2_slow
= 2, .p2_fast
= 20 },
355 static const intel_limit_t
*intel_ironlake_limit(struct drm_crtc
*crtc
,
358 struct drm_device
*dev
= crtc
->dev
;
359 const intel_limit_t
*limit
;
361 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_LVDS
)) {
362 if (intel_is_dual_link_lvds(dev
)) {
363 if (refclk
== 100000)
364 limit
= &intel_limits_ironlake_dual_lvds_100m
;
366 limit
= &intel_limits_ironlake_dual_lvds
;
368 if (refclk
== 100000)
369 limit
= &intel_limits_ironlake_single_lvds_100m
;
371 limit
= &intel_limits_ironlake_single_lvds
;
374 limit
= &intel_limits_ironlake_dac
;
379 static const intel_limit_t
*intel_g4x_limit(struct drm_crtc
*crtc
)
381 struct drm_device
*dev
= crtc
->dev
;
382 const intel_limit_t
*limit
;
384 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_LVDS
)) {
385 if (intel_is_dual_link_lvds(dev
))
386 limit
= &intel_limits_g4x_dual_channel_lvds
;
388 limit
= &intel_limits_g4x_single_channel_lvds
;
389 } else if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_HDMI
) ||
390 intel_pipe_has_type(crtc
, INTEL_OUTPUT_ANALOG
)) {
391 limit
= &intel_limits_g4x_hdmi
;
392 } else if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_SDVO
)) {
393 limit
= &intel_limits_g4x_sdvo
;
394 } else /* The option is for other outputs */
395 limit
= &intel_limits_i9xx_sdvo
;
400 static const intel_limit_t
*intel_limit(struct drm_crtc
*crtc
, int refclk
)
402 struct drm_device
*dev
= crtc
->dev
;
403 const intel_limit_t
*limit
;
405 if (HAS_PCH_SPLIT(dev
))
406 limit
= intel_ironlake_limit(crtc
, refclk
);
407 else if (IS_G4X(dev
)) {
408 limit
= intel_g4x_limit(crtc
);
409 } else if (IS_PINEVIEW(dev
)) {
410 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_LVDS
))
411 limit
= &intel_limits_pineview_lvds
;
413 limit
= &intel_limits_pineview_sdvo
;
414 } else if (IS_VALLEYVIEW(dev
)) {
415 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_ANALOG
))
416 limit
= &intel_limits_vlv_dac
;
417 else if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_HDMI
))
418 limit
= &intel_limits_vlv_hdmi
;
420 limit
= &intel_limits_vlv_dp
;
421 } else if (!IS_GEN2(dev
)) {
422 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_LVDS
))
423 limit
= &intel_limits_i9xx_lvds
;
425 limit
= &intel_limits_i9xx_sdvo
;
427 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_LVDS
))
428 limit
= &intel_limits_i8xx_lvds
;
429 else if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_DVO
))
430 limit
= &intel_limits_i8xx_dvo
;
432 limit
= &intel_limits_i8xx_dac
;
437 /* m1 is reserved as 0 in Pineview, n is a ring counter */
438 static void pineview_clock(int refclk
, intel_clock_t
*clock
)
440 clock
->m
= clock
->m2
+ 2;
441 clock
->p
= clock
->p1
* clock
->p2
;
442 clock
->vco
= refclk
* clock
->m
/ clock
->n
;
443 clock
->dot
= clock
->vco
/ clock
->p
;
446 static uint32_t i9xx_dpll_compute_m(struct dpll
*dpll
)
448 return 5 * (dpll
->m1
+ 2) + (dpll
->m2
+ 2);
451 static void i9xx_clock(int refclk
, intel_clock_t
*clock
)
453 clock
->m
= i9xx_dpll_compute_m(clock
);
454 clock
->p
= clock
->p1
* clock
->p2
;
455 clock
->vco
= refclk
* clock
->m
/ (clock
->n
+ 2);
456 clock
->dot
= clock
->vco
/ clock
->p
;
460 * Returns whether any output on the specified pipe is of the specified type
462 bool intel_pipe_has_type(struct drm_crtc
*crtc
, int type
)
464 struct drm_device
*dev
= crtc
->dev
;
465 struct intel_encoder
*encoder
;
467 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
468 if (encoder
->type
== type
)
474 #define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
476 * Returns whether the given set of divisors are valid for a given refclk with
477 * the given connectors.
480 static bool intel_PLL_is_valid(struct drm_device
*dev
,
481 const intel_limit_t
*limit
,
482 const intel_clock_t
*clock
)
484 if (clock
->p1
< limit
->p1
.min
|| limit
->p1
.max
< clock
->p1
)
485 INTELPllInvalid("p1 out of range\n");
486 if (clock
->p
< limit
->p
.min
|| limit
->p
.max
< clock
->p
)
487 INTELPllInvalid("p out of range\n");
488 if (clock
->m2
< limit
->m2
.min
|| limit
->m2
.max
< clock
->m2
)
489 INTELPllInvalid("m2 out of range\n");
490 if (clock
->m1
< limit
->m1
.min
|| limit
->m1
.max
< clock
->m1
)
491 INTELPllInvalid("m1 out of range\n");
492 if (clock
->m1
<= clock
->m2
&& !IS_PINEVIEW(dev
))
493 INTELPllInvalid("m1 <= m2\n");
494 if (clock
->m
< limit
->m
.min
|| limit
->m
.max
< clock
->m
)
495 INTELPllInvalid("m out of range\n");
496 if (clock
->n
< limit
->n
.min
|| limit
->n
.max
< clock
->n
)
497 INTELPllInvalid("n out of range\n");
498 if (clock
->vco
< limit
->vco
.min
|| limit
->vco
.max
< clock
->vco
)
499 INTELPllInvalid("vco out of range\n");
500 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
501 * connector, etc., rather than just a single range.
503 if (clock
->dot
< limit
->dot
.min
|| limit
->dot
.max
< clock
->dot
)
504 INTELPllInvalid("dot out of range\n");
510 i9xx_find_best_dpll(const intel_limit_t
*limit
, struct drm_crtc
*crtc
,
511 int target
, int refclk
, intel_clock_t
*match_clock
,
512 intel_clock_t
*best_clock
)
514 struct drm_device
*dev
= crtc
->dev
;
518 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_LVDS
)) {
520 * For LVDS just rely on its current settings for dual-channel.
521 * We haven't figured out how to reliably set up different
522 * single/dual channel state, if we even can.
524 if (intel_is_dual_link_lvds(dev
))
525 clock
.p2
= limit
->p2
.p2_fast
;
527 clock
.p2
= limit
->p2
.p2_slow
;
529 if (target
< limit
->p2
.dot_limit
)
530 clock
.p2
= limit
->p2
.p2_slow
;
532 clock
.p2
= limit
->p2
.p2_fast
;
535 memset(best_clock
, 0, sizeof(*best_clock
));
537 for (clock
.m1
= limit
->m1
.min
; clock
.m1
<= limit
->m1
.max
;
539 for (clock
.m2
= limit
->m2
.min
;
540 clock
.m2
<= limit
->m2
.max
; clock
.m2
++) {
541 if (clock
.m2
>= clock
.m1
)
543 for (clock
.n
= limit
->n
.min
;
544 clock
.n
<= limit
->n
.max
; clock
.n
++) {
545 for (clock
.p1
= limit
->p1
.min
;
546 clock
.p1
<= limit
->p1
.max
; clock
.p1
++) {
549 i9xx_clock(refclk
, &clock
);
550 if (!intel_PLL_is_valid(dev
, limit
,
554 clock
.p
!= match_clock
->p
)
557 this_err
= abs(clock
.dot
- target
);
558 if (this_err
< err
) {
567 return (err
!= target
);
571 pnv_find_best_dpll(const intel_limit_t
*limit
, struct drm_crtc
*crtc
,
572 int target
, int refclk
, intel_clock_t
*match_clock
,
573 intel_clock_t
*best_clock
)
575 struct drm_device
*dev
= crtc
->dev
;
579 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_LVDS
)) {
581 * For LVDS just rely on its current settings for dual-channel.
582 * We haven't figured out how to reliably set up different
583 * single/dual channel state, if we even can.
585 if (intel_is_dual_link_lvds(dev
))
586 clock
.p2
= limit
->p2
.p2_fast
;
588 clock
.p2
= limit
->p2
.p2_slow
;
590 if (target
< limit
->p2
.dot_limit
)
591 clock
.p2
= limit
->p2
.p2_slow
;
593 clock
.p2
= limit
->p2
.p2_fast
;
596 memset(best_clock
, 0, sizeof(*best_clock
));
598 for (clock
.m1
= limit
->m1
.min
; clock
.m1
<= limit
->m1
.max
;
600 for (clock
.m2
= limit
->m2
.min
;
601 clock
.m2
<= limit
->m2
.max
; clock
.m2
++) {
602 for (clock
.n
= limit
->n
.min
;
603 clock
.n
<= limit
->n
.max
; clock
.n
++) {
604 for (clock
.p1
= limit
->p1
.min
;
605 clock
.p1
<= limit
->p1
.max
; clock
.p1
++) {
608 pineview_clock(refclk
, &clock
);
609 if (!intel_PLL_is_valid(dev
, limit
,
613 clock
.p
!= match_clock
->p
)
616 this_err
= abs(clock
.dot
- target
);
617 if (this_err
< err
) {
626 return (err
!= target
);
630 g4x_find_best_dpll(const intel_limit_t
*limit
, struct drm_crtc
*crtc
,
631 int target
, int refclk
, intel_clock_t
*match_clock
,
632 intel_clock_t
*best_clock
)
634 struct drm_device
*dev
= crtc
->dev
;
638 /* approximately equals target * 0.00585 */
639 int err_most
= (target
>> 8) + (target
>> 9);
642 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_LVDS
)) {
643 if (intel_is_dual_link_lvds(dev
))
644 clock
.p2
= limit
->p2
.p2_fast
;
646 clock
.p2
= limit
->p2
.p2_slow
;
648 if (target
< limit
->p2
.dot_limit
)
649 clock
.p2
= limit
->p2
.p2_slow
;
651 clock
.p2
= limit
->p2
.p2_fast
;
654 memset(best_clock
, 0, sizeof(*best_clock
));
655 max_n
= limit
->n
.max
;
656 /* based on hardware requirement, prefer smaller n to precision */
657 for (clock
.n
= limit
->n
.min
; clock
.n
<= max_n
; clock
.n
++) {
658 /* based on hardware requirement, prefere larger m1,m2 */
659 for (clock
.m1
= limit
->m1
.max
;
660 clock
.m1
>= limit
->m1
.min
; clock
.m1
--) {
661 for (clock
.m2
= limit
->m2
.max
;
662 clock
.m2
>= limit
->m2
.min
; clock
.m2
--) {
663 for (clock
.p1
= limit
->p1
.max
;
664 clock
.p1
>= limit
->p1
.min
; clock
.p1
--) {
667 i9xx_clock(refclk
, &clock
);
668 if (!intel_PLL_is_valid(dev
, limit
,
672 this_err
= abs(clock
.dot
- target
);
673 if (this_err
< err_most
) {
687 vlv_find_best_dpll(const intel_limit_t
*limit
, struct drm_crtc
*crtc
,
688 int target
, int refclk
, intel_clock_t
*match_clock
,
689 intel_clock_t
*best_clock
)
691 u32 p1
, p2
, m1
, m2
, vco
, bestn
, bestm1
, bestm2
, bestp1
, bestp2
;
693 u32 updrate
, minupdate
, p
;
694 unsigned long bestppm
, ppm
, absppm
;
698 dotclk
= target
* 1000;
701 fastclk
= dotclk
/ (2*100);
704 n
= p
= p1
= p2
= m
= m1
= m2
= vco
= bestn
= 0;
705 bestm1
= bestm2
= bestp1
= bestp2
= 0;
707 /* based on hardware requirement, prefer smaller n to precision */
708 for (n
= limit
->n
.min
; n
<= ((refclk
) / minupdate
); n
++) {
709 updrate
= refclk
/ n
;
710 for (p1
= limit
->p1
.max
; p1
> limit
->p1
.min
; p1
--) {
711 for (p2
= limit
->p2
.p2_fast
+1; p2
> 0; p2
--) {
715 /* based on hardware requirement, prefer bigger m1,m2 values */
716 for (m1
= limit
->m1
.min
; m1
<= limit
->m1
.max
; m1
++) {
717 m2
= (((2*(fastclk
* p
* n
/ m1
)) +
718 refclk
) / (2*refclk
));
721 if (vco
>= limit
->vco
.min
&& vco
< limit
->vco
.max
) {
722 ppm
= 1000000 * ((vco
/ p
) - fastclk
) / fastclk
;
723 absppm
= (ppm
> 0) ? ppm
: (-ppm
);
724 if (absppm
< 100 && ((p1
* p2
) > (bestp1
* bestp2
))) {
728 if (absppm
< bestppm
- 10) {
745 best_clock
->n
= bestn
;
746 best_clock
->m1
= bestm1
;
747 best_clock
->m2
= bestm2
;
748 best_clock
->p1
= bestp1
;
749 best_clock
->p2
= bestp2
;
754 enum transcoder
intel_pipe_to_cpu_transcoder(struct drm_i915_private
*dev_priv
,
757 struct drm_crtc
*crtc
= dev_priv
->pipe_to_crtc_mapping
[pipe
];
758 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
760 return intel_crtc
->config
.cpu_transcoder
;
763 static void ironlake_wait_for_vblank(struct drm_device
*dev
, int pipe
)
765 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
766 u32 frame
, frame_reg
= PIPEFRAME(pipe
);
768 frame
= I915_READ(frame_reg
);
770 if (wait_for(I915_READ_NOTRACE(frame_reg
) != frame
, 50))
771 DRM_DEBUG_KMS("vblank wait timed out\n");
775 * intel_wait_for_vblank - wait for vblank on a given pipe
777 * @pipe: pipe to wait for
779 * Wait for vblank to occur on a given pipe. Needed for various bits of
782 void intel_wait_for_vblank(struct drm_device
*dev
, int pipe
)
784 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
785 int pipestat_reg
= PIPESTAT(pipe
);
787 if (INTEL_INFO(dev
)->gen
>= 5) {
788 ironlake_wait_for_vblank(dev
, pipe
);
792 /* Clear existing vblank status. Note this will clear any other
793 * sticky status fields as well.
795 * This races with i915_driver_irq_handler() with the result
796 * that either function could miss a vblank event. Here it is not
797 * fatal, as we will either wait upon the next vblank interrupt or
798 * timeout. Generally speaking intel_wait_for_vblank() is only
799 * called during modeset at which time the GPU should be idle and
800 * should *not* be performing page flips and thus not waiting on
802 * Currently, the result of us stealing a vblank from the irq
803 * handler is that a single frame will be skipped during swapbuffers.
805 I915_WRITE(pipestat_reg
,
806 I915_READ(pipestat_reg
) | PIPE_VBLANK_INTERRUPT_STATUS
);
808 /* Wait for vblank interrupt bit to set */
809 if (wait_for(I915_READ(pipestat_reg
) &
810 PIPE_VBLANK_INTERRUPT_STATUS
,
812 DRM_DEBUG_KMS("vblank wait timed out\n");
816 * intel_wait_for_pipe_off - wait for pipe to turn off
818 * @pipe: pipe to wait for
820 * After disabling a pipe, we can't wait for vblank in the usual way,
821 * spinning on the vblank interrupt status bit, since we won't actually
822 * see an interrupt when the pipe is disabled.
825 * wait for the pipe register state bit to turn off
828 * wait for the display line value to settle (it usually
829 * ends up stopping at the start of the next frame).
832 void intel_wait_for_pipe_off(struct drm_device
*dev
, int pipe
)
834 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
835 enum transcoder cpu_transcoder
= intel_pipe_to_cpu_transcoder(dev_priv
,
838 if (INTEL_INFO(dev
)->gen
>= 4) {
839 int reg
= PIPECONF(cpu_transcoder
);
841 /* Wait for the Pipe State to go off */
842 if (wait_for((I915_READ(reg
) & I965_PIPECONF_ACTIVE
) == 0,
844 WARN(1, "pipe_off wait timed out\n");
846 u32 last_line
, line_mask
;
847 int reg
= PIPEDSL(pipe
);
848 unsigned long timeout
= jiffies
+ msecs_to_jiffies(100);
851 line_mask
= DSL_LINEMASK_GEN2
;
853 line_mask
= DSL_LINEMASK_GEN3
;
855 /* Wait for the display line to settle */
857 last_line
= I915_READ(reg
) & line_mask
;
859 } while (((I915_READ(reg
) & line_mask
) != last_line
) &&
860 time_after(timeout
, jiffies
));
861 if (time_after(jiffies
, timeout
))
862 WARN(1, "pipe_off wait timed out\n");
867 * ibx_digital_port_connected - is the specified port connected?
868 * @dev_priv: i915 private structure
869 * @port: the port to test
871 * Returns true if @port is connected, false otherwise.
873 bool ibx_digital_port_connected(struct drm_i915_private
*dev_priv
,
874 struct intel_digital_port
*port
)
878 if (HAS_PCH_IBX(dev_priv
->dev
)) {
881 bit
= SDE_PORTB_HOTPLUG
;
884 bit
= SDE_PORTC_HOTPLUG
;
887 bit
= SDE_PORTD_HOTPLUG
;
895 bit
= SDE_PORTB_HOTPLUG_CPT
;
898 bit
= SDE_PORTC_HOTPLUG_CPT
;
901 bit
= SDE_PORTD_HOTPLUG_CPT
;
908 return I915_READ(SDEISR
) & bit
;
911 static const char *state_string(bool enabled
)
913 return enabled
? "on" : "off";
916 /* Only for pre-ILK configs */
917 void assert_pll(struct drm_i915_private
*dev_priv
,
918 enum pipe pipe
, bool state
)
925 val
= I915_READ(reg
);
926 cur_state
= !!(val
& DPLL_VCO_ENABLE
);
927 WARN(cur_state
!= state
,
928 "PLL state assertion failure (expected %s, current %s)\n",
929 state_string(state
), state_string(cur_state
));
932 struct intel_shared_dpll
*
933 intel_crtc_to_shared_dpll(struct intel_crtc
*crtc
)
935 struct drm_i915_private
*dev_priv
= crtc
->base
.dev
->dev_private
;
937 if (crtc
->config
.shared_dpll
< 0)
940 return &dev_priv
->shared_dplls
[crtc
->config
.shared_dpll
];
944 void assert_shared_dpll(struct drm_i915_private
*dev_priv
,
945 struct intel_shared_dpll
*pll
,
949 struct intel_dpll_hw_state hw_state
;
951 if (HAS_PCH_LPT(dev_priv
->dev
)) {
952 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
957 "asserting DPLL %s with no DPLL\n", state_string(state
)))
960 cur_state
= pll
->get_hw_state(dev_priv
, pll
, &hw_state
);
961 WARN(cur_state
!= state
,
962 "%s assertion failure (expected %s, current %s)\n",
963 pll
->name
, state_string(state
), state_string(cur_state
));
966 static void assert_fdi_tx(struct drm_i915_private
*dev_priv
,
967 enum pipe pipe
, bool state
)
972 enum transcoder cpu_transcoder
= intel_pipe_to_cpu_transcoder(dev_priv
,
975 if (HAS_DDI(dev_priv
->dev
)) {
976 /* DDI does not have a specific FDI_TX register */
977 reg
= TRANS_DDI_FUNC_CTL(cpu_transcoder
);
978 val
= I915_READ(reg
);
979 cur_state
= !!(val
& TRANS_DDI_FUNC_ENABLE
);
981 reg
= FDI_TX_CTL(pipe
);
982 val
= I915_READ(reg
);
983 cur_state
= !!(val
& FDI_TX_ENABLE
);
985 WARN(cur_state
!= state
,
986 "FDI TX state assertion failure (expected %s, current %s)\n",
987 state_string(state
), state_string(cur_state
));
989 #define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
990 #define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
992 static void assert_fdi_rx(struct drm_i915_private
*dev_priv
,
993 enum pipe pipe
, bool state
)
999 reg
= FDI_RX_CTL(pipe
);
1000 val
= I915_READ(reg
);
1001 cur_state
= !!(val
& FDI_RX_ENABLE
);
1002 WARN(cur_state
!= state
,
1003 "FDI RX state assertion failure (expected %s, current %s)\n",
1004 state_string(state
), state_string(cur_state
));
1006 #define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1007 #define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1009 static void assert_fdi_tx_pll_enabled(struct drm_i915_private
*dev_priv
,
1015 /* ILK FDI PLL is always enabled */
1016 if (dev_priv
->info
->gen
== 5)
1019 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
1020 if (HAS_DDI(dev_priv
->dev
))
1023 reg
= FDI_TX_CTL(pipe
);
1024 val
= I915_READ(reg
);
1025 WARN(!(val
& FDI_TX_PLL_ENABLE
), "FDI TX PLL assertion failure, should be active but is disabled\n");
1028 void assert_fdi_rx_pll(struct drm_i915_private
*dev_priv
,
1029 enum pipe pipe
, bool state
)
1035 reg
= FDI_RX_CTL(pipe
);
1036 val
= I915_READ(reg
);
1037 cur_state
= !!(val
& FDI_RX_PLL_ENABLE
);
1038 WARN(cur_state
!= state
,
1039 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1040 state_string(state
), state_string(cur_state
));
1043 static void assert_panel_unlocked(struct drm_i915_private
*dev_priv
,
1046 int pp_reg
, lvds_reg
;
1048 enum pipe panel_pipe
= PIPE_A
;
1051 if (HAS_PCH_SPLIT(dev_priv
->dev
)) {
1052 pp_reg
= PCH_PP_CONTROL
;
1053 lvds_reg
= PCH_LVDS
;
1055 pp_reg
= PP_CONTROL
;
1059 val
= I915_READ(pp_reg
);
1060 if (!(val
& PANEL_POWER_ON
) ||
1061 ((val
& PANEL_UNLOCK_REGS
) == PANEL_UNLOCK_REGS
))
1064 if (I915_READ(lvds_reg
) & LVDS_PIPEB_SELECT
)
1065 panel_pipe
= PIPE_B
;
1067 WARN(panel_pipe
== pipe
&& locked
,
1068 "panel assertion failure, pipe %c regs locked\n",
1072 void assert_pipe(struct drm_i915_private
*dev_priv
,
1073 enum pipe pipe
, bool state
)
1078 enum transcoder cpu_transcoder
= intel_pipe_to_cpu_transcoder(dev_priv
,
1081 /* if we need the pipe A quirk it must be always on */
1082 if (pipe
== PIPE_A
&& dev_priv
->quirks
& QUIRK_PIPEA_FORCE
)
1085 if (!intel_display_power_enabled(dev_priv
->dev
,
1086 POWER_DOMAIN_TRANSCODER(cpu_transcoder
))) {
1089 reg
= PIPECONF(cpu_transcoder
);
1090 val
= I915_READ(reg
);
1091 cur_state
= !!(val
& PIPECONF_ENABLE
);
1094 WARN(cur_state
!= state
,
1095 "pipe %c assertion failure (expected %s, current %s)\n",
1096 pipe_name(pipe
), state_string(state
), state_string(cur_state
));
1099 static void assert_plane(struct drm_i915_private
*dev_priv
,
1100 enum plane plane
, bool state
)
1106 reg
= DSPCNTR(plane
);
1107 val
= I915_READ(reg
);
1108 cur_state
= !!(val
& DISPLAY_PLANE_ENABLE
);
1109 WARN(cur_state
!= state
,
1110 "plane %c assertion failure (expected %s, current %s)\n",
1111 plane_name(plane
), state_string(state
), state_string(cur_state
));
1114 #define assert_plane_enabled(d, p) assert_plane(d, p, true)
1115 #define assert_plane_disabled(d, p) assert_plane(d, p, false)
1117 static void assert_planes_disabled(struct drm_i915_private
*dev_priv
,
1120 struct drm_device
*dev
= dev_priv
->dev
;
1125 /* Primary planes are fixed to pipes on gen4+ */
1126 if (INTEL_INFO(dev
)->gen
>= 4) {
1127 reg
= DSPCNTR(pipe
);
1128 val
= I915_READ(reg
);
1129 WARN((val
& DISPLAY_PLANE_ENABLE
),
1130 "plane %c assertion failure, should be disabled but not\n",
1135 /* Need to check both planes against the pipe */
1138 val
= I915_READ(reg
);
1139 cur_pipe
= (val
& DISPPLANE_SEL_PIPE_MASK
) >>
1140 DISPPLANE_SEL_PIPE_SHIFT
;
1141 WARN((val
& DISPLAY_PLANE_ENABLE
) && pipe
== cur_pipe
,
1142 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1143 plane_name(i
), pipe_name(pipe
));
1147 static void assert_sprites_disabled(struct drm_i915_private
*dev_priv
,
1150 struct drm_device
*dev
= dev_priv
->dev
;
1154 if (IS_VALLEYVIEW(dev
)) {
1155 for (i
= 0; i
< dev_priv
->num_plane
; i
++) {
1156 reg
= SPCNTR(pipe
, i
);
1157 val
= I915_READ(reg
);
1158 WARN((val
& SP_ENABLE
),
1159 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1160 sprite_name(pipe
, i
), pipe_name(pipe
));
1162 } else if (INTEL_INFO(dev
)->gen
>= 7) {
1164 val
= I915_READ(reg
);
1165 WARN((val
& SPRITE_ENABLE
),
1166 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1167 plane_name(pipe
), pipe_name(pipe
));
1168 } else if (INTEL_INFO(dev
)->gen
>= 5) {
1169 reg
= DVSCNTR(pipe
);
1170 val
= I915_READ(reg
);
1171 WARN((val
& DVS_ENABLE
),
1172 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1173 plane_name(pipe
), pipe_name(pipe
));
1177 static void assert_pch_refclk_enabled(struct drm_i915_private
*dev_priv
)
1182 if (HAS_PCH_LPT(dev_priv
->dev
)) {
1183 DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n");
1187 val
= I915_READ(PCH_DREF_CONTROL
);
1188 enabled
= !!(val
& (DREF_SSC_SOURCE_MASK
| DREF_NONSPREAD_SOURCE_MASK
|
1189 DREF_SUPERSPREAD_SOURCE_MASK
));
1190 WARN(!enabled
, "PCH refclk assertion failure, should be active but is disabled\n");
1193 static void assert_pch_transcoder_disabled(struct drm_i915_private
*dev_priv
,
1200 reg
= PCH_TRANSCONF(pipe
);
1201 val
= I915_READ(reg
);
1202 enabled
= !!(val
& TRANS_ENABLE
);
1204 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1208 static bool dp_pipe_enabled(struct drm_i915_private
*dev_priv
,
1209 enum pipe pipe
, u32 port_sel
, u32 val
)
1211 if ((val
& DP_PORT_EN
) == 0)
1214 if (HAS_PCH_CPT(dev_priv
->dev
)) {
1215 u32 trans_dp_ctl_reg
= TRANS_DP_CTL(pipe
);
1216 u32 trans_dp_ctl
= I915_READ(trans_dp_ctl_reg
);
1217 if ((trans_dp_ctl
& TRANS_DP_PORT_SEL_MASK
) != port_sel
)
1220 if ((val
& DP_PIPE_MASK
) != (pipe
<< 30))
1226 static bool hdmi_pipe_enabled(struct drm_i915_private
*dev_priv
,
1227 enum pipe pipe
, u32 val
)
1229 if ((val
& SDVO_ENABLE
) == 0)
1232 if (HAS_PCH_CPT(dev_priv
->dev
)) {
1233 if ((val
& SDVO_PIPE_SEL_MASK_CPT
) != SDVO_PIPE_SEL_CPT(pipe
))
1236 if ((val
& SDVO_PIPE_SEL_MASK
) != SDVO_PIPE_SEL(pipe
))
1242 static bool lvds_pipe_enabled(struct drm_i915_private
*dev_priv
,
1243 enum pipe pipe
, u32 val
)
1245 if ((val
& LVDS_PORT_EN
) == 0)
1248 if (HAS_PCH_CPT(dev_priv
->dev
)) {
1249 if ((val
& PORT_TRANS_SEL_MASK
) != PORT_TRANS_SEL_CPT(pipe
))
1252 if ((val
& LVDS_PIPE_MASK
) != LVDS_PIPE(pipe
))
1258 static bool adpa_pipe_enabled(struct drm_i915_private
*dev_priv
,
1259 enum pipe pipe
, u32 val
)
1261 if ((val
& ADPA_DAC_ENABLE
) == 0)
1263 if (HAS_PCH_CPT(dev_priv
->dev
)) {
1264 if ((val
& PORT_TRANS_SEL_MASK
) != PORT_TRANS_SEL_CPT(pipe
))
1267 if ((val
& ADPA_PIPE_SELECT_MASK
) != ADPA_PIPE_SELECT(pipe
))
1273 static void assert_pch_dp_disabled(struct drm_i915_private
*dev_priv
,
1274 enum pipe pipe
, int reg
, u32 port_sel
)
1276 u32 val
= I915_READ(reg
);
1277 WARN(dp_pipe_enabled(dev_priv
, pipe
, port_sel
, val
),
1278 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
1279 reg
, pipe_name(pipe
));
1281 WARN(HAS_PCH_IBX(dev_priv
->dev
) && (val
& DP_PORT_EN
) == 0
1282 && (val
& DP_PIPEB_SELECT
),
1283 "IBX PCH dp port still using transcoder B\n");
1286 static void assert_pch_hdmi_disabled(struct drm_i915_private
*dev_priv
,
1287 enum pipe pipe
, int reg
)
1289 u32 val
= I915_READ(reg
);
1290 WARN(hdmi_pipe_enabled(dev_priv
, pipe
, val
),
1291 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
1292 reg
, pipe_name(pipe
));
1294 WARN(HAS_PCH_IBX(dev_priv
->dev
) && (val
& SDVO_ENABLE
) == 0
1295 && (val
& SDVO_PIPE_B_SELECT
),
1296 "IBX PCH hdmi port still using transcoder B\n");
1299 static void assert_pch_ports_disabled(struct drm_i915_private
*dev_priv
,
1305 assert_pch_dp_disabled(dev_priv
, pipe
, PCH_DP_B
, TRANS_DP_PORT_SEL_B
);
1306 assert_pch_dp_disabled(dev_priv
, pipe
, PCH_DP_C
, TRANS_DP_PORT_SEL_C
);
1307 assert_pch_dp_disabled(dev_priv
, pipe
, PCH_DP_D
, TRANS_DP_PORT_SEL_D
);
1310 val
= I915_READ(reg
);
1311 WARN(adpa_pipe_enabled(dev_priv
, pipe
, val
),
1312 "PCH VGA enabled on transcoder %c, should be disabled\n",
1316 val
= I915_READ(reg
);
1317 WARN(lvds_pipe_enabled(dev_priv
, pipe
, val
),
1318 "PCH LVDS enabled on transcoder %c, should be disabled\n",
1321 assert_pch_hdmi_disabled(dev_priv
, pipe
, PCH_HDMIB
);
1322 assert_pch_hdmi_disabled(dev_priv
, pipe
, PCH_HDMIC
);
1323 assert_pch_hdmi_disabled(dev_priv
, pipe
, PCH_HDMID
);
1326 static void vlv_enable_pll(struct intel_crtc
*crtc
)
1328 struct drm_device
*dev
= crtc
->base
.dev
;
1329 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
1330 int reg
= DPLL(crtc
->pipe
);
1331 u32 dpll
= crtc
->config
.dpll_hw_state
.dpll
;
1333 assert_pipe_disabled(dev_priv
, crtc
->pipe
);
1335 /* No really, not for ILK+ */
1336 BUG_ON(!IS_VALLEYVIEW(dev_priv
->dev
));
1338 /* PLL is protected by panel, make sure we can write it */
1339 if (IS_MOBILE(dev_priv
->dev
) && !IS_I830(dev_priv
->dev
))
1340 assert_panel_unlocked(dev_priv
, crtc
->pipe
);
1342 I915_WRITE(reg
, dpll
);
1346 if (wait_for(((I915_READ(reg
) & DPLL_LOCK_VLV
) == DPLL_LOCK_VLV
), 1))
1347 DRM_ERROR("DPLL %d failed to lock\n", crtc
->pipe
);
1349 I915_WRITE(DPLL_MD(crtc
->pipe
), crtc
->config
.dpll_hw_state
.dpll_md
);
1350 POSTING_READ(DPLL_MD(crtc
->pipe
));
1352 /* We do this three times for luck */
1353 I915_WRITE(reg
, dpll
);
1355 udelay(150); /* wait for warmup */
1356 I915_WRITE(reg
, dpll
);
1358 udelay(150); /* wait for warmup */
1359 I915_WRITE(reg
, dpll
);
1361 udelay(150); /* wait for warmup */
1364 static void i9xx_enable_pll(struct intel_crtc
*crtc
)
1366 struct drm_device
*dev
= crtc
->base
.dev
;
1367 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
1368 int reg
= DPLL(crtc
->pipe
);
1369 u32 dpll
= crtc
->config
.dpll_hw_state
.dpll
;
1371 assert_pipe_disabled(dev_priv
, crtc
->pipe
);
1373 /* No really, not for ILK+ */
1374 BUG_ON(dev_priv
->info
->gen
>= 5);
1376 /* PLL is protected by panel, make sure we can write it */
1377 if (IS_MOBILE(dev
) && !IS_I830(dev
))
1378 assert_panel_unlocked(dev_priv
, crtc
->pipe
);
1380 I915_WRITE(reg
, dpll
);
1382 /* Wait for the clocks to stabilize. */
1386 if (INTEL_INFO(dev
)->gen
>= 4) {
1387 I915_WRITE(DPLL_MD(crtc
->pipe
),
1388 crtc
->config
.dpll_hw_state
.dpll_md
);
1390 /* The pixel multiplier can only be updated once the
1391 * DPLL is enabled and the clocks are stable.
1393 * So write it again.
1395 I915_WRITE(reg
, dpll
);
1398 /* We do this three times for luck */
1399 I915_WRITE(reg
, dpll
);
1401 udelay(150); /* wait for warmup */
1402 I915_WRITE(reg
, dpll
);
1404 udelay(150); /* wait for warmup */
1405 I915_WRITE(reg
, dpll
);
1407 udelay(150); /* wait for warmup */
1411 * i9xx_disable_pll - disable a PLL
1412 * @dev_priv: i915 private structure
1413 * @pipe: pipe PLL to disable
1415 * Disable the PLL for @pipe, making sure the pipe is off first.
1417 * Note! This is for pre-ILK only.
1419 static void i9xx_disable_pll(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
1421 /* Don't disable pipe A or pipe A PLLs if needed */
1422 if (pipe
== PIPE_A
&& (dev_priv
->quirks
& QUIRK_PIPEA_FORCE
))
1425 /* Make sure the pipe isn't still relying on us */
1426 assert_pipe_disabled(dev_priv
, pipe
);
1428 I915_WRITE(DPLL(pipe
), 0);
1429 POSTING_READ(DPLL(pipe
));
1432 static void vlv_disable_pll(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
1436 /* Make sure the pipe isn't still relying on us */
1437 assert_pipe_disabled(dev_priv
, pipe
);
1439 /* Leave integrated clock source enabled */
1441 val
= DPLL_INTEGRATED_CRI_CLK_VLV
;
1442 I915_WRITE(DPLL(pipe
), val
);
1443 POSTING_READ(DPLL(pipe
));
1446 void vlv_wait_port_ready(struct drm_i915_private
*dev_priv
, int port
)
1451 port_mask
= DPLL_PORTB_READY_MASK
;
1453 port_mask
= DPLL_PORTC_READY_MASK
;
1455 if (wait_for((I915_READ(DPLL(0)) & port_mask
) == 0, 1000))
1456 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
1457 'B' + port
, I915_READ(DPLL(0)));
1461 * ironlake_enable_shared_dpll - enable PCH PLL
1462 * @dev_priv: i915 private structure
1463 * @pipe: pipe PLL to enable
1465 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1466 * drives the transcoder clock.
1468 static void ironlake_enable_shared_dpll(struct intel_crtc
*crtc
)
1470 struct drm_i915_private
*dev_priv
= crtc
->base
.dev
->dev_private
;
1471 struct intel_shared_dpll
*pll
= intel_crtc_to_shared_dpll(crtc
);
1473 /* PCH PLLs only available on ILK, SNB and IVB */
1474 BUG_ON(dev_priv
->info
->gen
< 5);
1475 if (WARN_ON(pll
== NULL
))
1478 if (WARN_ON(pll
->refcount
== 0))
1481 DRM_DEBUG_KMS("enable %s (active %d, on? %d)for crtc %d\n",
1482 pll
->name
, pll
->active
, pll
->on
,
1483 crtc
->base
.base
.id
);
1485 if (pll
->active
++) {
1487 assert_shared_dpll_enabled(dev_priv
, pll
);
1492 DRM_DEBUG_KMS("enabling %s\n", pll
->name
);
1493 pll
->enable(dev_priv
, pll
);
1497 static void intel_disable_shared_dpll(struct intel_crtc
*crtc
)
1499 struct drm_i915_private
*dev_priv
= crtc
->base
.dev
->dev_private
;
1500 struct intel_shared_dpll
*pll
= intel_crtc_to_shared_dpll(crtc
);
1502 /* PCH only available on ILK+ */
1503 BUG_ON(dev_priv
->info
->gen
< 5);
1504 if (WARN_ON(pll
== NULL
))
1507 if (WARN_ON(pll
->refcount
== 0))
1510 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1511 pll
->name
, pll
->active
, pll
->on
,
1512 crtc
->base
.base
.id
);
1514 if (WARN_ON(pll
->active
== 0)) {
1515 assert_shared_dpll_disabled(dev_priv
, pll
);
1519 assert_shared_dpll_enabled(dev_priv
, pll
);
1524 DRM_DEBUG_KMS("disabling %s\n", pll
->name
);
1525 pll
->disable(dev_priv
, pll
);
1529 static void ironlake_enable_pch_transcoder(struct drm_i915_private
*dev_priv
,
1532 struct drm_device
*dev
= dev_priv
->dev
;
1533 struct drm_crtc
*crtc
= dev_priv
->pipe_to_crtc_mapping
[pipe
];
1534 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
1535 uint32_t reg
, val
, pipeconf_val
;
1537 /* PCH only available on ILK+ */
1538 BUG_ON(dev_priv
->info
->gen
< 5);
1540 /* Make sure PCH DPLL is enabled */
1541 assert_shared_dpll_enabled(dev_priv
,
1542 intel_crtc_to_shared_dpll(intel_crtc
));
1544 /* FDI must be feeding us bits for PCH ports */
1545 assert_fdi_tx_enabled(dev_priv
, pipe
);
1546 assert_fdi_rx_enabled(dev_priv
, pipe
);
1548 if (HAS_PCH_CPT(dev
)) {
1549 /* Workaround: Set the timing override bit before enabling the
1550 * pch transcoder. */
1551 reg
= TRANS_CHICKEN2(pipe
);
1552 val
= I915_READ(reg
);
1553 val
|= TRANS_CHICKEN2_TIMING_OVERRIDE
;
1554 I915_WRITE(reg
, val
);
1557 reg
= PCH_TRANSCONF(pipe
);
1558 val
= I915_READ(reg
);
1559 pipeconf_val
= I915_READ(PIPECONF(pipe
));
1561 if (HAS_PCH_IBX(dev_priv
->dev
)) {
1563 * make the BPC in transcoder be consistent with
1564 * that in pipeconf reg.
1566 val
&= ~PIPECONF_BPC_MASK
;
1567 val
|= pipeconf_val
& PIPECONF_BPC_MASK
;
1570 val
&= ~TRANS_INTERLACE_MASK
;
1571 if ((pipeconf_val
& PIPECONF_INTERLACE_MASK
) == PIPECONF_INTERLACED_ILK
)
1572 if (HAS_PCH_IBX(dev_priv
->dev
) &&
1573 intel_pipe_has_type(crtc
, INTEL_OUTPUT_SDVO
))
1574 val
|= TRANS_LEGACY_INTERLACED_ILK
;
1576 val
|= TRANS_INTERLACED
;
1578 val
|= TRANS_PROGRESSIVE
;
1580 I915_WRITE(reg
, val
| TRANS_ENABLE
);
1581 if (wait_for(I915_READ(reg
) & TRANS_STATE_ENABLE
, 100))
1582 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe
));
1585 static void lpt_enable_pch_transcoder(struct drm_i915_private
*dev_priv
,
1586 enum transcoder cpu_transcoder
)
1588 u32 val
, pipeconf_val
;
1590 /* PCH only available on ILK+ */
1591 BUG_ON(dev_priv
->info
->gen
< 5);
1593 /* FDI must be feeding us bits for PCH ports */
1594 assert_fdi_tx_enabled(dev_priv
, (enum pipe
) cpu_transcoder
);
1595 assert_fdi_rx_enabled(dev_priv
, TRANSCODER_A
);
1597 /* Workaround: set timing override bit. */
1598 val
= I915_READ(_TRANSA_CHICKEN2
);
1599 val
|= TRANS_CHICKEN2_TIMING_OVERRIDE
;
1600 I915_WRITE(_TRANSA_CHICKEN2
, val
);
1603 pipeconf_val
= I915_READ(PIPECONF(cpu_transcoder
));
1605 if ((pipeconf_val
& PIPECONF_INTERLACE_MASK_HSW
) ==
1606 PIPECONF_INTERLACED_ILK
)
1607 val
|= TRANS_INTERLACED
;
1609 val
|= TRANS_PROGRESSIVE
;
1611 I915_WRITE(LPT_TRANSCONF
, val
);
1612 if (wait_for(I915_READ(LPT_TRANSCONF
) & TRANS_STATE_ENABLE
, 100))
1613 DRM_ERROR("Failed to enable PCH transcoder\n");
1616 static void ironlake_disable_pch_transcoder(struct drm_i915_private
*dev_priv
,
1619 struct drm_device
*dev
= dev_priv
->dev
;
1622 /* FDI relies on the transcoder */
1623 assert_fdi_tx_disabled(dev_priv
, pipe
);
1624 assert_fdi_rx_disabled(dev_priv
, pipe
);
1626 /* Ports must be off as well */
1627 assert_pch_ports_disabled(dev_priv
, pipe
);
1629 reg
= PCH_TRANSCONF(pipe
);
1630 val
= I915_READ(reg
);
1631 val
&= ~TRANS_ENABLE
;
1632 I915_WRITE(reg
, val
);
1633 /* wait for PCH transcoder off, transcoder state */
1634 if (wait_for((I915_READ(reg
) & TRANS_STATE_ENABLE
) == 0, 50))
1635 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe
));
1637 if (!HAS_PCH_IBX(dev
)) {
1638 /* Workaround: Clear the timing override chicken bit again. */
1639 reg
= TRANS_CHICKEN2(pipe
);
1640 val
= I915_READ(reg
);
1641 val
&= ~TRANS_CHICKEN2_TIMING_OVERRIDE
;
1642 I915_WRITE(reg
, val
);
1646 static void lpt_disable_pch_transcoder(struct drm_i915_private
*dev_priv
)
1650 val
= I915_READ(LPT_TRANSCONF
);
1651 val
&= ~TRANS_ENABLE
;
1652 I915_WRITE(LPT_TRANSCONF
, val
);
1653 /* wait for PCH transcoder off, transcoder state */
1654 if (wait_for((I915_READ(LPT_TRANSCONF
) & TRANS_STATE_ENABLE
) == 0, 50))
1655 DRM_ERROR("Failed to disable PCH transcoder\n");
1657 /* Workaround: clear timing override bit. */
1658 val
= I915_READ(_TRANSA_CHICKEN2
);
1659 val
&= ~TRANS_CHICKEN2_TIMING_OVERRIDE
;
1660 I915_WRITE(_TRANSA_CHICKEN2
, val
);
1664 * intel_enable_pipe - enable a pipe, asserting requirements
1665 * @dev_priv: i915 private structure
1666 * @pipe: pipe to enable
1667 * @pch_port: on ILK+, is this pipe driving a PCH port or not
1669 * Enable @pipe, making sure that various hardware specific requirements
1670 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1672 * @pipe should be %PIPE_A or %PIPE_B.
1674 * Will wait until the pipe is actually running (i.e. first vblank) before
1677 static void intel_enable_pipe(struct drm_i915_private
*dev_priv
, enum pipe pipe
,
1680 enum transcoder cpu_transcoder
= intel_pipe_to_cpu_transcoder(dev_priv
,
1682 enum pipe pch_transcoder
;
1686 assert_planes_disabled(dev_priv
, pipe
);
1687 assert_sprites_disabled(dev_priv
, pipe
);
1689 if (HAS_PCH_LPT(dev_priv
->dev
))
1690 pch_transcoder
= TRANSCODER_A
;
1692 pch_transcoder
= pipe
;
1695 * A pipe without a PLL won't actually be able to drive bits from
1696 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1699 if (!HAS_PCH_SPLIT(dev_priv
->dev
))
1700 assert_pll_enabled(dev_priv
, pipe
);
1703 /* if driving the PCH, we need FDI enabled */
1704 assert_fdi_rx_pll_enabled(dev_priv
, pch_transcoder
);
1705 assert_fdi_tx_pll_enabled(dev_priv
,
1706 (enum pipe
) cpu_transcoder
);
1708 /* FIXME: assert CPU port conditions for SNB+ */
1711 reg
= PIPECONF(cpu_transcoder
);
1712 val
= I915_READ(reg
);
1713 if (val
& PIPECONF_ENABLE
)
1716 I915_WRITE(reg
, val
| PIPECONF_ENABLE
);
1717 intel_wait_for_vblank(dev_priv
->dev
, pipe
);
1721 * intel_disable_pipe - disable a pipe, asserting requirements
1722 * @dev_priv: i915 private structure
1723 * @pipe: pipe to disable
1725 * Disable @pipe, making sure that various hardware specific requirements
1726 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1728 * @pipe should be %PIPE_A or %PIPE_B.
1730 * Will wait until the pipe has shut down before returning.
1732 static void intel_disable_pipe(struct drm_i915_private
*dev_priv
,
1735 enum transcoder cpu_transcoder
= intel_pipe_to_cpu_transcoder(dev_priv
,
1741 * Make sure planes won't keep trying to pump pixels to us,
1742 * or we might hang the display.
1744 assert_planes_disabled(dev_priv
, pipe
);
1745 assert_sprites_disabled(dev_priv
, pipe
);
1747 /* Don't disable pipe A or pipe A PLLs if needed */
1748 if (pipe
== PIPE_A
&& (dev_priv
->quirks
& QUIRK_PIPEA_FORCE
))
1751 reg
= PIPECONF(cpu_transcoder
);
1752 val
= I915_READ(reg
);
1753 if ((val
& PIPECONF_ENABLE
) == 0)
1756 I915_WRITE(reg
, val
& ~PIPECONF_ENABLE
);
1757 intel_wait_for_pipe_off(dev_priv
->dev
, pipe
);
1761 * Plane regs are double buffered, going from enabled->disabled needs a
1762 * trigger in order to latch. The display address reg provides this.
1764 void intel_flush_display_plane(struct drm_i915_private
*dev_priv
,
1767 if (dev_priv
->info
->gen
>= 4)
1768 I915_WRITE(DSPSURF(plane
), I915_READ(DSPSURF(plane
)));
1770 I915_WRITE(DSPADDR(plane
), I915_READ(DSPADDR(plane
)));
1774 * intel_enable_plane - enable a display plane on a given pipe
1775 * @dev_priv: i915 private structure
1776 * @plane: plane to enable
1777 * @pipe: pipe being fed
1779 * Enable @plane on @pipe, making sure that @pipe is running first.
1781 static void intel_enable_plane(struct drm_i915_private
*dev_priv
,
1782 enum plane plane
, enum pipe pipe
)
1787 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1788 assert_pipe_enabled(dev_priv
, pipe
);
1790 reg
= DSPCNTR(plane
);
1791 val
= I915_READ(reg
);
1792 if (val
& DISPLAY_PLANE_ENABLE
)
1795 I915_WRITE(reg
, val
| DISPLAY_PLANE_ENABLE
);
1796 intel_flush_display_plane(dev_priv
, plane
);
1797 intel_wait_for_vblank(dev_priv
->dev
, pipe
);
1801 * intel_disable_plane - disable a display plane
1802 * @dev_priv: i915 private structure
1803 * @plane: plane to disable
1804 * @pipe: pipe consuming the data
1806 * Disable @plane; should be an independent operation.
1808 static void intel_disable_plane(struct drm_i915_private
*dev_priv
,
1809 enum plane plane
, enum pipe pipe
)
1814 reg
= DSPCNTR(plane
);
1815 val
= I915_READ(reg
);
1816 if ((val
& DISPLAY_PLANE_ENABLE
) == 0)
1819 I915_WRITE(reg
, val
& ~DISPLAY_PLANE_ENABLE
);
1820 intel_flush_display_plane(dev_priv
, plane
);
1821 intel_wait_for_vblank(dev_priv
->dev
, pipe
);
1824 static bool need_vtd_wa(struct drm_device
*dev
)
1826 #ifdef CONFIG_INTEL_IOMMU
1827 if (INTEL_INFO(dev
)->gen
>= 6 && intel_iommu_gfx_mapped
)
1834 intel_pin_and_fence_fb_obj(struct drm_device
*dev
,
1835 struct drm_i915_gem_object
*obj
,
1836 struct intel_ring_buffer
*pipelined
)
1838 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
1842 switch (obj
->tiling_mode
) {
1843 case I915_TILING_NONE
:
1844 if (IS_BROADWATER(dev
) || IS_CRESTLINE(dev
))
1845 alignment
= 128 * 1024;
1846 else if (INTEL_INFO(dev
)->gen
>= 4)
1847 alignment
= 4 * 1024;
1849 alignment
= 64 * 1024;
1852 /* pin() will align the object as required by fence */
1856 /* Despite that we check this in framebuffer_init userspace can
1857 * screw us over and change the tiling after the fact. Only
1858 * pinned buffers can't change their tiling. */
1859 DRM_DEBUG_DRIVER("Y tiled not allowed for scan out buffers\n");
1865 /* Note that the w/a also requires 64 PTE of padding following the
1866 * bo. We currently fill all unused PTE with the shadow page and so
1867 * we should always have valid PTE following the scanout preventing
1870 if (need_vtd_wa(dev
) && alignment
< 256 * 1024)
1871 alignment
= 256 * 1024;
1873 dev_priv
->mm
.interruptible
= false;
1874 ret
= i915_gem_object_pin_to_display_plane(obj
, alignment
, pipelined
);
1876 goto err_interruptible
;
1878 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1879 * fence, whereas 965+ only requires a fence if using
1880 * framebuffer compression. For simplicity, we always install
1881 * a fence as the cost is not that onerous.
1883 ret
= i915_gem_object_get_fence(obj
);
1887 i915_gem_object_pin_fence(obj
);
1889 dev_priv
->mm
.interruptible
= true;
1893 i915_gem_object_unpin_from_display_plane(obj
);
1895 dev_priv
->mm
.interruptible
= true;
1899 void intel_unpin_fb_obj(struct drm_i915_gem_object
*obj
)
1901 i915_gem_object_unpin_fence(obj
);
1902 i915_gem_object_unpin_from_display_plane(obj
);
1905 /* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
1906 * is assumed to be a power-of-two. */
1907 unsigned long intel_gen4_compute_page_offset(int *x
, int *y
,
1908 unsigned int tiling_mode
,
1912 if (tiling_mode
!= I915_TILING_NONE
) {
1913 unsigned int tile_rows
, tiles
;
1918 tiles
= *x
/ (512/cpp
);
1921 return tile_rows
* pitch
* 8 + tiles
* 4096;
1923 unsigned int offset
;
1925 offset
= *y
* pitch
+ *x
* cpp
;
1927 *x
= (offset
& 4095) / cpp
;
1928 return offset
& -4096;
1932 static int i9xx_update_plane(struct drm_crtc
*crtc
, struct drm_framebuffer
*fb
,
1935 struct drm_device
*dev
= crtc
->dev
;
1936 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
1937 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
1938 struct intel_framebuffer
*intel_fb
;
1939 struct drm_i915_gem_object
*obj
;
1940 int plane
= intel_crtc
->plane
;
1941 unsigned long linear_offset
;
1950 DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane
));
1954 intel_fb
= to_intel_framebuffer(fb
);
1955 obj
= intel_fb
->obj
;
1957 reg
= DSPCNTR(plane
);
1958 dspcntr
= I915_READ(reg
);
1959 /* Mask out pixel format bits in case we change it */
1960 dspcntr
&= ~DISPPLANE_PIXFORMAT_MASK
;
1961 switch (fb
->pixel_format
) {
1963 dspcntr
|= DISPPLANE_8BPP
;
1965 case DRM_FORMAT_XRGB1555
:
1966 case DRM_FORMAT_ARGB1555
:
1967 dspcntr
|= DISPPLANE_BGRX555
;
1969 case DRM_FORMAT_RGB565
:
1970 dspcntr
|= DISPPLANE_BGRX565
;
1972 case DRM_FORMAT_XRGB8888
:
1973 case DRM_FORMAT_ARGB8888
:
1974 dspcntr
|= DISPPLANE_BGRX888
;
1976 case DRM_FORMAT_XBGR8888
:
1977 case DRM_FORMAT_ABGR8888
:
1978 dspcntr
|= DISPPLANE_RGBX888
;
1980 case DRM_FORMAT_XRGB2101010
:
1981 case DRM_FORMAT_ARGB2101010
:
1982 dspcntr
|= DISPPLANE_BGRX101010
;
1984 case DRM_FORMAT_XBGR2101010
:
1985 case DRM_FORMAT_ABGR2101010
:
1986 dspcntr
|= DISPPLANE_RGBX101010
;
1992 if (INTEL_INFO(dev
)->gen
>= 4) {
1993 if (obj
->tiling_mode
!= I915_TILING_NONE
)
1994 dspcntr
|= DISPPLANE_TILED
;
1996 dspcntr
&= ~DISPPLANE_TILED
;
2000 dspcntr
|= DISPPLANE_TRICKLE_FEED_DISABLE
;
2002 I915_WRITE(reg
, dspcntr
);
2004 linear_offset
= y
* fb
->pitches
[0] + x
* (fb
->bits_per_pixel
/ 8);
2006 if (INTEL_INFO(dev
)->gen
>= 4) {
2007 intel_crtc
->dspaddr_offset
=
2008 intel_gen4_compute_page_offset(&x
, &y
, obj
->tiling_mode
,
2009 fb
->bits_per_pixel
/ 8,
2011 linear_offset
-= intel_crtc
->dspaddr_offset
;
2013 intel_crtc
->dspaddr_offset
= linear_offset
;
2016 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2017 i915_gem_obj_ggtt_offset(obj
), linear_offset
, x
, y
,
2019 I915_WRITE(DSPSTRIDE(plane
), fb
->pitches
[0]);
2020 if (INTEL_INFO(dev
)->gen
>= 4) {
2021 I915_MODIFY_DISPBASE(DSPSURF(plane
),
2022 i915_gem_obj_ggtt_offset(obj
) + intel_crtc
->dspaddr_offset
);
2023 I915_WRITE(DSPTILEOFF(plane
), (y
<< 16) | x
);
2024 I915_WRITE(DSPLINOFF(plane
), linear_offset
);
2026 I915_WRITE(DSPADDR(plane
), i915_gem_obj_ggtt_offset(obj
) + linear_offset
);
2032 static int ironlake_update_plane(struct drm_crtc
*crtc
,
2033 struct drm_framebuffer
*fb
, int x
, int y
)
2035 struct drm_device
*dev
= crtc
->dev
;
2036 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2037 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
2038 struct intel_framebuffer
*intel_fb
;
2039 struct drm_i915_gem_object
*obj
;
2040 int plane
= intel_crtc
->plane
;
2041 unsigned long linear_offset
;
2051 DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane
));
2055 intel_fb
= to_intel_framebuffer(fb
);
2056 obj
= intel_fb
->obj
;
2058 reg
= DSPCNTR(plane
);
2059 dspcntr
= I915_READ(reg
);
2060 /* Mask out pixel format bits in case we change it */
2061 dspcntr
&= ~DISPPLANE_PIXFORMAT_MASK
;
2062 switch (fb
->pixel_format
) {
2064 dspcntr
|= DISPPLANE_8BPP
;
2066 case DRM_FORMAT_RGB565
:
2067 dspcntr
|= DISPPLANE_BGRX565
;
2069 case DRM_FORMAT_XRGB8888
:
2070 case DRM_FORMAT_ARGB8888
:
2071 dspcntr
|= DISPPLANE_BGRX888
;
2073 case DRM_FORMAT_XBGR8888
:
2074 case DRM_FORMAT_ABGR8888
:
2075 dspcntr
|= DISPPLANE_RGBX888
;
2077 case DRM_FORMAT_XRGB2101010
:
2078 case DRM_FORMAT_ARGB2101010
:
2079 dspcntr
|= DISPPLANE_BGRX101010
;
2081 case DRM_FORMAT_XBGR2101010
:
2082 case DRM_FORMAT_ABGR2101010
:
2083 dspcntr
|= DISPPLANE_RGBX101010
;
2089 if (obj
->tiling_mode
!= I915_TILING_NONE
)
2090 dspcntr
|= DISPPLANE_TILED
;
2092 dspcntr
&= ~DISPPLANE_TILED
;
2094 if (IS_HASWELL(dev
))
2095 dspcntr
&= ~DISPPLANE_TRICKLE_FEED_DISABLE
;
2097 dspcntr
|= DISPPLANE_TRICKLE_FEED_DISABLE
;
2099 I915_WRITE(reg
, dspcntr
);
2101 linear_offset
= y
* fb
->pitches
[0] + x
* (fb
->bits_per_pixel
/ 8);
2102 intel_crtc
->dspaddr_offset
=
2103 intel_gen4_compute_page_offset(&x
, &y
, obj
->tiling_mode
,
2104 fb
->bits_per_pixel
/ 8,
2106 linear_offset
-= intel_crtc
->dspaddr_offset
;
2108 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2109 i915_gem_obj_ggtt_offset(obj
), linear_offset
, x
, y
,
2111 I915_WRITE(DSPSTRIDE(plane
), fb
->pitches
[0]);
2112 I915_MODIFY_DISPBASE(DSPSURF(plane
),
2113 i915_gem_obj_ggtt_offset(obj
) + intel_crtc
->dspaddr_offset
);
2114 if (IS_HASWELL(dev
)) {
2115 I915_WRITE(DSPOFFSET(plane
), (y
<< 16) | x
);
2117 I915_WRITE(DSPTILEOFF(plane
), (y
<< 16) | x
);
2118 I915_WRITE(DSPLINOFF(plane
), linear_offset
);
2125 /* Assume fb object is pinned & idle & fenced and just update base pointers */
2127 intel_pipe_set_base_atomic(struct drm_crtc
*crtc
, struct drm_framebuffer
*fb
,
2128 int x
, int y
, enum mode_set_atomic state
)
2130 struct drm_device
*dev
= crtc
->dev
;
2131 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2133 if (dev_priv
->display
.disable_fbc
)
2134 dev_priv
->display
.disable_fbc(dev
);
2135 intel_increase_pllclock(crtc
);
2137 return dev_priv
->display
.update_plane(crtc
, fb
, x
, y
);
2140 void intel_display_handle_reset(struct drm_device
*dev
)
2142 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2143 struct drm_crtc
*crtc
;
2146 * Flips in the rings have been nuked by the reset,
2147 * so complete all pending flips so that user space
2148 * will get its events and not get stuck.
2150 * Also update the base address of all primary
2151 * planes to the the last fb to make sure we're
2152 * showing the correct fb after a reset.
2154 * Need to make two loops over the crtcs so that we
2155 * don't try to grab a crtc mutex before the
2156 * pending_flip_queue really got woken up.
2159 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
2160 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
2161 enum plane plane
= intel_crtc
->plane
;
2163 intel_prepare_page_flip(dev
, plane
);
2164 intel_finish_page_flip_plane(dev
, plane
);
2167 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
2168 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
2170 mutex_lock(&crtc
->mutex
);
2171 if (intel_crtc
->active
)
2172 dev_priv
->display
.update_plane(crtc
, crtc
->fb
,
2174 mutex_unlock(&crtc
->mutex
);
2179 intel_finish_fb(struct drm_framebuffer
*old_fb
)
2181 struct drm_i915_gem_object
*obj
= to_intel_framebuffer(old_fb
)->obj
;
2182 struct drm_i915_private
*dev_priv
= obj
->base
.dev
->dev_private
;
2183 bool was_interruptible
= dev_priv
->mm
.interruptible
;
2186 /* Big Hammer, we also need to ensure that any pending
2187 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2188 * current scanout is retired before unpinning the old
2191 * This should only fail upon a hung GPU, in which case we
2192 * can safely continue.
2194 dev_priv
->mm
.interruptible
= false;
2195 ret
= i915_gem_object_finish_gpu(obj
);
2196 dev_priv
->mm
.interruptible
= was_interruptible
;
2201 static void intel_crtc_update_sarea_pos(struct drm_crtc
*crtc
, int x
, int y
)
2203 struct drm_device
*dev
= crtc
->dev
;
2204 struct drm_i915_master_private
*master_priv
;
2205 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
2207 if (!dev
->primary
->master
)
2210 master_priv
= dev
->primary
->master
->driver_priv
;
2211 if (!master_priv
->sarea_priv
)
2214 switch (intel_crtc
->pipe
) {
2216 master_priv
->sarea_priv
->pipeA_x
= x
;
2217 master_priv
->sarea_priv
->pipeA_y
= y
;
2220 master_priv
->sarea_priv
->pipeB_x
= x
;
2221 master_priv
->sarea_priv
->pipeB_y
= y
;
2229 intel_pipe_set_base(struct drm_crtc
*crtc
, int x
, int y
,
2230 struct drm_framebuffer
*fb
)
2232 struct drm_device
*dev
= crtc
->dev
;
2233 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2234 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
2235 struct drm_framebuffer
*old_fb
;
2240 DRM_ERROR("No FB bound\n");
2244 if (intel_crtc
->plane
> INTEL_INFO(dev
)->num_pipes
) {
2245 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2246 plane_name(intel_crtc
->plane
),
2247 INTEL_INFO(dev
)->num_pipes
);
2251 mutex_lock(&dev
->struct_mutex
);
2252 ret
= intel_pin_and_fence_fb_obj(dev
,
2253 to_intel_framebuffer(fb
)->obj
,
2256 mutex_unlock(&dev
->struct_mutex
);
2257 DRM_ERROR("pin & fence failed\n");
2261 /* Update pipe size and adjust fitter if needed */
2262 if (i915_fastboot
) {
2263 I915_WRITE(PIPESRC(intel_crtc
->pipe
),
2264 ((crtc
->mode
.hdisplay
- 1) << 16) |
2265 (crtc
->mode
.vdisplay
- 1));
2266 if (!intel_crtc
->config
.pch_pfit
.enabled
&&
2267 (intel_pipe_has_type(crtc
, INTEL_OUTPUT_LVDS
) ||
2268 intel_pipe_has_type(crtc
, INTEL_OUTPUT_EDP
))) {
2269 I915_WRITE(PF_CTL(intel_crtc
->pipe
), 0);
2270 I915_WRITE(PF_WIN_POS(intel_crtc
->pipe
), 0);
2271 I915_WRITE(PF_WIN_SZ(intel_crtc
->pipe
), 0);
2275 ret
= dev_priv
->display
.update_plane(crtc
, fb
, x
, y
);
2277 intel_unpin_fb_obj(to_intel_framebuffer(fb
)->obj
);
2278 mutex_unlock(&dev
->struct_mutex
);
2279 DRM_ERROR("failed to update base address\n");
2289 if (intel_crtc
->active
&& old_fb
!= fb
)
2290 intel_wait_for_vblank(dev
, intel_crtc
->pipe
);
2291 intel_unpin_fb_obj(to_intel_framebuffer(old_fb
)->obj
);
2294 intel_update_fbc(dev
);
2295 intel_edp_psr_update(dev
);
2296 mutex_unlock(&dev
->struct_mutex
);
2298 intel_crtc_update_sarea_pos(crtc
, x
, y
);
2303 static void intel_fdi_normal_train(struct drm_crtc
*crtc
)
2305 struct drm_device
*dev
= crtc
->dev
;
2306 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2307 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
2308 int pipe
= intel_crtc
->pipe
;
2311 /* enable normal train */
2312 reg
= FDI_TX_CTL(pipe
);
2313 temp
= I915_READ(reg
);
2314 if (IS_IVYBRIDGE(dev
)) {
2315 temp
&= ~FDI_LINK_TRAIN_NONE_IVB
;
2316 temp
|= FDI_LINK_TRAIN_NONE_IVB
| FDI_TX_ENHANCE_FRAME_ENABLE
;
2318 temp
&= ~FDI_LINK_TRAIN_NONE
;
2319 temp
|= FDI_LINK_TRAIN_NONE
| FDI_TX_ENHANCE_FRAME_ENABLE
;
2321 I915_WRITE(reg
, temp
);
2323 reg
= FDI_RX_CTL(pipe
);
2324 temp
= I915_READ(reg
);
2325 if (HAS_PCH_CPT(dev
)) {
2326 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
2327 temp
|= FDI_LINK_TRAIN_NORMAL_CPT
;
2329 temp
&= ~FDI_LINK_TRAIN_NONE
;
2330 temp
|= FDI_LINK_TRAIN_NONE
;
2332 I915_WRITE(reg
, temp
| FDI_RX_ENHANCE_FRAME_ENABLE
);
2334 /* wait one idle pattern time */
2338 /* IVB wants error correction enabled */
2339 if (IS_IVYBRIDGE(dev
))
2340 I915_WRITE(reg
, I915_READ(reg
) | FDI_FS_ERRC_ENABLE
|
2341 FDI_FE_ERRC_ENABLE
);
2344 static bool pipe_has_enabled_pch(struct intel_crtc
*crtc
)
2346 return crtc
->base
.enabled
&& crtc
->active
&&
2347 crtc
->config
.has_pch_encoder
;
2350 static void ivb_modeset_global_resources(struct drm_device
*dev
)
2352 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2353 struct intel_crtc
*pipe_B_crtc
=
2354 to_intel_crtc(dev_priv
->pipe_to_crtc_mapping
[PIPE_B
]);
2355 struct intel_crtc
*pipe_C_crtc
=
2356 to_intel_crtc(dev_priv
->pipe_to_crtc_mapping
[PIPE_C
]);
2360 * When everything is off disable fdi C so that we could enable fdi B
2361 * with all lanes. Note that we don't care about enabled pipes without
2362 * an enabled pch encoder.
2364 if (!pipe_has_enabled_pch(pipe_B_crtc
) &&
2365 !pipe_has_enabled_pch(pipe_C_crtc
)) {
2366 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B
)) & FDI_RX_ENABLE
);
2367 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C
)) & FDI_RX_ENABLE
);
2369 temp
= I915_READ(SOUTH_CHICKEN1
);
2370 temp
&= ~FDI_BC_BIFURCATION_SELECT
;
2371 DRM_DEBUG_KMS("disabling fdi C rx\n");
2372 I915_WRITE(SOUTH_CHICKEN1
, temp
);
2376 /* The FDI link training functions for ILK/Ibexpeak. */
2377 static void ironlake_fdi_link_train(struct drm_crtc
*crtc
)
2379 struct drm_device
*dev
= crtc
->dev
;
2380 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2381 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
2382 int pipe
= intel_crtc
->pipe
;
2383 int plane
= intel_crtc
->plane
;
2384 u32 reg
, temp
, tries
;
2386 /* FDI needs bits from pipe & plane first */
2387 assert_pipe_enabled(dev_priv
, pipe
);
2388 assert_plane_enabled(dev_priv
, plane
);
2390 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2392 reg
= FDI_RX_IMR(pipe
);
2393 temp
= I915_READ(reg
);
2394 temp
&= ~FDI_RX_SYMBOL_LOCK
;
2395 temp
&= ~FDI_RX_BIT_LOCK
;
2396 I915_WRITE(reg
, temp
);
2400 /* enable CPU FDI TX and PCH FDI RX */
2401 reg
= FDI_TX_CTL(pipe
);
2402 temp
= I915_READ(reg
);
2403 temp
&= ~FDI_DP_PORT_WIDTH_MASK
;
2404 temp
|= FDI_DP_PORT_WIDTH(intel_crtc
->config
.fdi_lanes
);
2405 temp
&= ~FDI_LINK_TRAIN_NONE
;
2406 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
2407 I915_WRITE(reg
, temp
| FDI_TX_ENABLE
);
2409 reg
= FDI_RX_CTL(pipe
);
2410 temp
= I915_READ(reg
);
2411 temp
&= ~FDI_LINK_TRAIN_NONE
;
2412 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
2413 I915_WRITE(reg
, temp
| FDI_RX_ENABLE
);
2418 /* Ironlake workaround, enable clock pointer after FDI enable*/
2419 I915_WRITE(FDI_RX_CHICKEN(pipe
), FDI_RX_PHASE_SYNC_POINTER_OVR
);
2420 I915_WRITE(FDI_RX_CHICKEN(pipe
), FDI_RX_PHASE_SYNC_POINTER_OVR
|
2421 FDI_RX_PHASE_SYNC_POINTER_EN
);
2423 reg
= FDI_RX_IIR(pipe
);
2424 for (tries
= 0; tries
< 5; tries
++) {
2425 temp
= I915_READ(reg
);
2426 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
2428 if ((temp
& FDI_RX_BIT_LOCK
)) {
2429 DRM_DEBUG_KMS("FDI train 1 done.\n");
2430 I915_WRITE(reg
, temp
| FDI_RX_BIT_LOCK
);
2435 DRM_ERROR("FDI train 1 fail!\n");
2438 reg
= FDI_TX_CTL(pipe
);
2439 temp
= I915_READ(reg
);
2440 temp
&= ~FDI_LINK_TRAIN_NONE
;
2441 temp
|= FDI_LINK_TRAIN_PATTERN_2
;
2442 I915_WRITE(reg
, temp
);
2444 reg
= FDI_RX_CTL(pipe
);
2445 temp
= I915_READ(reg
);
2446 temp
&= ~FDI_LINK_TRAIN_NONE
;
2447 temp
|= FDI_LINK_TRAIN_PATTERN_2
;
2448 I915_WRITE(reg
, temp
);
2453 reg
= FDI_RX_IIR(pipe
);
2454 for (tries
= 0; tries
< 5; tries
++) {
2455 temp
= I915_READ(reg
);
2456 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
2458 if (temp
& FDI_RX_SYMBOL_LOCK
) {
2459 I915_WRITE(reg
, temp
| FDI_RX_SYMBOL_LOCK
);
2460 DRM_DEBUG_KMS("FDI train 2 done.\n");
2465 DRM_ERROR("FDI train 2 fail!\n");
2467 DRM_DEBUG_KMS("FDI train done\n");
2471 static const int snb_b_fdi_train_param
[] = {
2472 FDI_LINK_TRAIN_400MV_0DB_SNB_B
,
2473 FDI_LINK_TRAIN_400MV_6DB_SNB_B
,
2474 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B
,
2475 FDI_LINK_TRAIN_800MV_0DB_SNB_B
,
2478 /* The FDI link training functions for SNB/Cougarpoint. */
2479 static void gen6_fdi_link_train(struct drm_crtc
*crtc
)
2481 struct drm_device
*dev
= crtc
->dev
;
2482 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2483 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
2484 int pipe
= intel_crtc
->pipe
;
2485 u32 reg
, temp
, i
, retry
;
2487 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2489 reg
= FDI_RX_IMR(pipe
);
2490 temp
= I915_READ(reg
);
2491 temp
&= ~FDI_RX_SYMBOL_LOCK
;
2492 temp
&= ~FDI_RX_BIT_LOCK
;
2493 I915_WRITE(reg
, temp
);
2498 /* enable CPU FDI TX and PCH FDI RX */
2499 reg
= FDI_TX_CTL(pipe
);
2500 temp
= I915_READ(reg
);
2501 temp
&= ~FDI_DP_PORT_WIDTH_MASK
;
2502 temp
|= FDI_DP_PORT_WIDTH(intel_crtc
->config
.fdi_lanes
);
2503 temp
&= ~FDI_LINK_TRAIN_NONE
;
2504 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
2505 temp
&= ~FDI_LINK_TRAIN_VOL_EMP_MASK
;
2507 temp
|= FDI_LINK_TRAIN_400MV_0DB_SNB_B
;
2508 I915_WRITE(reg
, temp
| FDI_TX_ENABLE
);
2510 I915_WRITE(FDI_RX_MISC(pipe
),
2511 FDI_RX_TP1_TO_TP2_48
| FDI_RX_FDI_DELAY_90
);
2513 reg
= FDI_RX_CTL(pipe
);
2514 temp
= I915_READ(reg
);
2515 if (HAS_PCH_CPT(dev
)) {
2516 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
2517 temp
|= FDI_LINK_TRAIN_PATTERN_1_CPT
;
2519 temp
&= ~FDI_LINK_TRAIN_NONE
;
2520 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
2522 I915_WRITE(reg
, temp
| FDI_RX_ENABLE
);
2527 for (i
= 0; i
< 4; i
++) {
2528 reg
= FDI_TX_CTL(pipe
);
2529 temp
= I915_READ(reg
);
2530 temp
&= ~FDI_LINK_TRAIN_VOL_EMP_MASK
;
2531 temp
|= snb_b_fdi_train_param
[i
];
2532 I915_WRITE(reg
, temp
);
2537 for (retry
= 0; retry
< 5; retry
++) {
2538 reg
= FDI_RX_IIR(pipe
);
2539 temp
= I915_READ(reg
);
2540 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
2541 if (temp
& FDI_RX_BIT_LOCK
) {
2542 I915_WRITE(reg
, temp
| FDI_RX_BIT_LOCK
);
2543 DRM_DEBUG_KMS("FDI train 1 done.\n");
2552 DRM_ERROR("FDI train 1 fail!\n");
2555 reg
= FDI_TX_CTL(pipe
);
2556 temp
= I915_READ(reg
);
2557 temp
&= ~FDI_LINK_TRAIN_NONE
;
2558 temp
|= FDI_LINK_TRAIN_PATTERN_2
;
2560 temp
&= ~FDI_LINK_TRAIN_VOL_EMP_MASK
;
2562 temp
|= FDI_LINK_TRAIN_400MV_0DB_SNB_B
;
2564 I915_WRITE(reg
, temp
);
2566 reg
= FDI_RX_CTL(pipe
);
2567 temp
= I915_READ(reg
);
2568 if (HAS_PCH_CPT(dev
)) {
2569 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
2570 temp
|= FDI_LINK_TRAIN_PATTERN_2_CPT
;
2572 temp
&= ~FDI_LINK_TRAIN_NONE
;
2573 temp
|= FDI_LINK_TRAIN_PATTERN_2
;
2575 I915_WRITE(reg
, temp
);
2580 for (i
= 0; i
< 4; i
++) {
2581 reg
= FDI_TX_CTL(pipe
);
2582 temp
= I915_READ(reg
);
2583 temp
&= ~FDI_LINK_TRAIN_VOL_EMP_MASK
;
2584 temp
|= snb_b_fdi_train_param
[i
];
2585 I915_WRITE(reg
, temp
);
2590 for (retry
= 0; retry
< 5; retry
++) {
2591 reg
= FDI_RX_IIR(pipe
);
2592 temp
= I915_READ(reg
);
2593 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
2594 if (temp
& FDI_RX_SYMBOL_LOCK
) {
2595 I915_WRITE(reg
, temp
| FDI_RX_SYMBOL_LOCK
);
2596 DRM_DEBUG_KMS("FDI train 2 done.\n");
2605 DRM_ERROR("FDI train 2 fail!\n");
2607 DRM_DEBUG_KMS("FDI train done.\n");
2610 /* Manual link training for Ivy Bridge A0 parts */
2611 static void ivb_manual_fdi_link_train(struct drm_crtc
*crtc
)
2613 struct drm_device
*dev
= crtc
->dev
;
2614 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2615 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
2616 int pipe
= intel_crtc
->pipe
;
2617 u32 reg
, temp
, i
, j
;
2619 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2621 reg
= FDI_RX_IMR(pipe
);
2622 temp
= I915_READ(reg
);
2623 temp
&= ~FDI_RX_SYMBOL_LOCK
;
2624 temp
&= ~FDI_RX_BIT_LOCK
;
2625 I915_WRITE(reg
, temp
);
2630 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
2631 I915_READ(FDI_RX_IIR(pipe
)));
2633 /* Try each vswing and preemphasis setting twice before moving on */
2634 for (j
= 0; j
< ARRAY_SIZE(snb_b_fdi_train_param
) * 2; j
++) {
2635 /* disable first in case we need to retry */
2636 reg
= FDI_TX_CTL(pipe
);
2637 temp
= I915_READ(reg
);
2638 temp
&= ~(FDI_LINK_TRAIN_AUTO
| FDI_LINK_TRAIN_NONE_IVB
);
2639 temp
&= ~FDI_TX_ENABLE
;
2640 I915_WRITE(reg
, temp
);
2642 reg
= FDI_RX_CTL(pipe
);
2643 temp
= I915_READ(reg
);
2644 temp
&= ~FDI_LINK_TRAIN_AUTO
;
2645 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
2646 temp
&= ~FDI_RX_ENABLE
;
2647 I915_WRITE(reg
, temp
);
2649 /* enable CPU FDI TX and PCH FDI RX */
2650 reg
= FDI_TX_CTL(pipe
);
2651 temp
= I915_READ(reg
);
2652 temp
&= ~FDI_DP_PORT_WIDTH_MASK
;
2653 temp
|= FDI_DP_PORT_WIDTH(intel_crtc
->config
.fdi_lanes
);
2654 temp
|= FDI_LINK_TRAIN_PATTERN_1_IVB
;
2655 temp
&= ~FDI_LINK_TRAIN_VOL_EMP_MASK
;
2656 temp
|= snb_b_fdi_train_param
[j
/2];
2657 temp
|= FDI_COMPOSITE_SYNC
;
2658 I915_WRITE(reg
, temp
| FDI_TX_ENABLE
);
2660 I915_WRITE(FDI_RX_MISC(pipe
),
2661 FDI_RX_TP1_TO_TP2_48
| FDI_RX_FDI_DELAY_90
);
2663 reg
= FDI_RX_CTL(pipe
);
2664 temp
= I915_READ(reg
);
2665 temp
|= FDI_LINK_TRAIN_PATTERN_1_CPT
;
2666 temp
|= FDI_COMPOSITE_SYNC
;
2667 I915_WRITE(reg
, temp
| FDI_RX_ENABLE
);
2670 udelay(1); /* should be 0.5us */
2672 for (i
= 0; i
< 4; i
++) {
2673 reg
= FDI_RX_IIR(pipe
);
2674 temp
= I915_READ(reg
);
2675 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
2677 if (temp
& FDI_RX_BIT_LOCK
||
2678 (I915_READ(reg
) & FDI_RX_BIT_LOCK
)) {
2679 I915_WRITE(reg
, temp
| FDI_RX_BIT_LOCK
);
2680 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
2684 udelay(1); /* should be 0.5us */
2687 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j
/ 2);
2692 reg
= FDI_TX_CTL(pipe
);
2693 temp
= I915_READ(reg
);
2694 temp
&= ~FDI_LINK_TRAIN_NONE_IVB
;
2695 temp
|= FDI_LINK_TRAIN_PATTERN_2_IVB
;
2696 I915_WRITE(reg
, temp
);
2698 reg
= FDI_RX_CTL(pipe
);
2699 temp
= I915_READ(reg
);
2700 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
2701 temp
|= FDI_LINK_TRAIN_PATTERN_2_CPT
;
2702 I915_WRITE(reg
, temp
);
2705 udelay(2); /* should be 1.5us */
2707 for (i
= 0; i
< 4; i
++) {
2708 reg
= FDI_RX_IIR(pipe
);
2709 temp
= I915_READ(reg
);
2710 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
2712 if (temp
& FDI_RX_SYMBOL_LOCK
||
2713 (I915_READ(reg
) & FDI_RX_SYMBOL_LOCK
)) {
2714 I915_WRITE(reg
, temp
| FDI_RX_SYMBOL_LOCK
);
2715 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
2719 udelay(2); /* should be 1.5us */
2722 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j
/ 2);
2726 DRM_DEBUG_KMS("FDI train done.\n");
2729 static void ironlake_fdi_pll_enable(struct intel_crtc
*intel_crtc
)
2731 struct drm_device
*dev
= intel_crtc
->base
.dev
;
2732 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2733 int pipe
= intel_crtc
->pipe
;
2737 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
2738 reg
= FDI_RX_CTL(pipe
);
2739 temp
= I915_READ(reg
);
2740 temp
&= ~(FDI_DP_PORT_WIDTH_MASK
| (0x7 << 16));
2741 temp
|= FDI_DP_PORT_WIDTH(intel_crtc
->config
.fdi_lanes
);
2742 temp
|= (I915_READ(PIPECONF(pipe
)) & PIPECONF_BPC_MASK
) << 11;
2743 I915_WRITE(reg
, temp
| FDI_RX_PLL_ENABLE
);
2748 /* Switch from Rawclk to PCDclk */
2749 temp
= I915_READ(reg
);
2750 I915_WRITE(reg
, temp
| FDI_PCDCLK
);
2755 /* Enable CPU FDI TX PLL, always on for Ironlake */
2756 reg
= FDI_TX_CTL(pipe
);
2757 temp
= I915_READ(reg
);
2758 if ((temp
& FDI_TX_PLL_ENABLE
) == 0) {
2759 I915_WRITE(reg
, temp
| FDI_TX_PLL_ENABLE
);
2766 static void ironlake_fdi_pll_disable(struct intel_crtc
*intel_crtc
)
2768 struct drm_device
*dev
= intel_crtc
->base
.dev
;
2769 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2770 int pipe
= intel_crtc
->pipe
;
2773 /* Switch from PCDclk to Rawclk */
2774 reg
= FDI_RX_CTL(pipe
);
2775 temp
= I915_READ(reg
);
2776 I915_WRITE(reg
, temp
& ~FDI_PCDCLK
);
2778 /* Disable CPU FDI TX PLL */
2779 reg
= FDI_TX_CTL(pipe
);
2780 temp
= I915_READ(reg
);
2781 I915_WRITE(reg
, temp
& ~FDI_TX_PLL_ENABLE
);
2786 reg
= FDI_RX_CTL(pipe
);
2787 temp
= I915_READ(reg
);
2788 I915_WRITE(reg
, temp
& ~FDI_RX_PLL_ENABLE
);
2790 /* Wait for the clocks to turn off. */
2795 static void ironlake_fdi_disable(struct drm_crtc
*crtc
)
2797 struct drm_device
*dev
= crtc
->dev
;
2798 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2799 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
2800 int pipe
= intel_crtc
->pipe
;
2803 /* disable CPU FDI tx and PCH FDI rx */
2804 reg
= FDI_TX_CTL(pipe
);
2805 temp
= I915_READ(reg
);
2806 I915_WRITE(reg
, temp
& ~FDI_TX_ENABLE
);
2809 reg
= FDI_RX_CTL(pipe
);
2810 temp
= I915_READ(reg
);
2811 temp
&= ~(0x7 << 16);
2812 temp
|= (I915_READ(PIPECONF(pipe
)) & PIPECONF_BPC_MASK
) << 11;
2813 I915_WRITE(reg
, temp
& ~FDI_RX_ENABLE
);
2818 /* Ironlake workaround, disable clock pointer after downing FDI */
2819 if (HAS_PCH_IBX(dev
)) {
2820 I915_WRITE(FDI_RX_CHICKEN(pipe
), FDI_RX_PHASE_SYNC_POINTER_OVR
);
2823 /* still set train pattern 1 */
2824 reg
= FDI_TX_CTL(pipe
);
2825 temp
= I915_READ(reg
);
2826 temp
&= ~FDI_LINK_TRAIN_NONE
;
2827 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
2828 I915_WRITE(reg
, temp
);
2830 reg
= FDI_RX_CTL(pipe
);
2831 temp
= I915_READ(reg
);
2832 if (HAS_PCH_CPT(dev
)) {
2833 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
2834 temp
|= FDI_LINK_TRAIN_PATTERN_1_CPT
;
2836 temp
&= ~FDI_LINK_TRAIN_NONE
;
2837 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
2839 /* BPC in FDI rx is consistent with that in PIPECONF */
2840 temp
&= ~(0x07 << 16);
2841 temp
|= (I915_READ(PIPECONF(pipe
)) & PIPECONF_BPC_MASK
) << 11;
2842 I915_WRITE(reg
, temp
);
2848 static bool intel_crtc_has_pending_flip(struct drm_crtc
*crtc
)
2850 struct drm_device
*dev
= crtc
->dev
;
2851 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2852 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
2853 unsigned long flags
;
2856 if (i915_reset_in_progress(&dev_priv
->gpu_error
) ||
2857 intel_crtc
->reset_counter
!= atomic_read(&dev_priv
->gpu_error
.reset_counter
))
2860 spin_lock_irqsave(&dev
->event_lock
, flags
);
2861 pending
= to_intel_crtc(crtc
)->unpin_work
!= NULL
;
2862 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
2867 static void intel_crtc_wait_for_pending_flips(struct drm_crtc
*crtc
)
2869 struct drm_device
*dev
= crtc
->dev
;
2870 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2872 if (crtc
->fb
== NULL
)
2875 WARN_ON(waitqueue_active(&dev_priv
->pending_flip_queue
));
2877 wait_event(dev_priv
->pending_flip_queue
,
2878 !intel_crtc_has_pending_flip(crtc
));
2880 mutex_lock(&dev
->struct_mutex
);
2881 intel_finish_fb(crtc
->fb
);
2882 mutex_unlock(&dev
->struct_mutex
);
2885 /* Program iCLKIP clock to the desired frequency */
2886 static void lpt_program_iclkip(struct drm_crtc
*crtc
)
2888 struct drm_device
*dev
= crtc
->dev
;
2889 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2890 u32 divsel
, phaseinc
, auxdiv
, phasedir
= 0;
2893 mutex_lock(&dev_priv
->dpio_lock
);
2895 /* It is necessary to ungate the pixclk gate prior to programming
2896 * the divisors, and gate it back when it is done.
2898 I915_WRITE(PIXCLK_GATE
, PIXCLK_GATE_GATE
);
2900 /* Disable SSCCTL */
2901 intel_sbi_write(dev_priv
, SBI_SSCCTL6
,
2902 intel_sbi_read(dev_priv
, SBI_SSCCTL6
, SBI_ICLK
) |
2906 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
2907 if (crtc
->mode
.clock
== 20000) {
2912 /* The iCLK virtual clock root frequency is in MHz,
2913 * but the crtc->mode.clock in in KHz. To get the divisors,
2914 * it is necessary to divide one by another, so we
2915 * convert the virtual clock precision to KHz here for higher
2918 u32 iclk_virtual_root_freq
= 172800 * 1000;
2919 u32 iclk_pi_range
= 64;
2920 u32 desired_divisor
, msb_divisor_value
, pi_value
;
2922 desired_divisor
= (iclk_virtual_root_freq
/ crtc
->mode
.clock
);
2923 msb_divisor_value
= desired_divisor
/ iclk_pi_range
;
2924 pi_value
= desired_divisor
% iclk_pi_range
;
2927 divsel
= msb_divisor_value
- 2;
2928 phaseinc
= pi_value
;
2931 /* This should not happen with any sane values */
2932 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel
) &
2933 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK
);
2934 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir
) &
2935 ~SBI_SSCDIVINTPHASE_INCVAL_MASK
);
2937 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
2944 /* Program SSCDIVINTPHASE6 */
2945 temp
= intel_sbi_read(dev_priv
, SBI_SSCDIVINTPHASE6
, SBI_ICLK
);
2946 temp
&= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK
;
2947 temp
|= SBI_SSCDIVINTPHASE_DIVSEL(divsel
);
2948 temp
&= ~SBI_SSCDIVINTPHASE_INCVAL_MASK
;
2949 temp
|= SBI_SSCDIVINTPHASE_INCVAL(phaseinc
);
2950 temp
|= SBI_SSCDIVINTPHASE_DIR(phasedir
);
2951 temp
|= SBI_SSCDIVINTPHASE_PROPAGATE
;
2952 intel_sbi_write(dev_priv
, SBI_SSCDIVINTPHASE6
, temp
, SBI_ICLK
);
2954 /* Program SSCAUXDIV */
2955 temp
= intel_sbi_read(dev_priv
, SBI_SSCAUXDIV6
, SBI_ICLK
);
2956 temp
&= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
2957 temp
|= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv
);
2958 intel_sbi_write(dev_priv
, SBI_SSCAUXDIV6
, temp
, SBI_ICLK
);
2960 /* Enable modulator and associated divider */
2961 temp
= intel_sbi_read(dev_priv
, SBI_SSCCTL6
, SBI_ICLK
);
2962 temp
&= ~SBI_SSCCTL_DISABLE
;
2963 intel_sbi_write(dev_priv
, SBI_SSCCTL6
, temp
, SBI_ICLK
);
2965 /* Wait for initialization time */
2968 I915_WRITE(PIXCLK_GATE
, PIXCLK_GATE_UNGATE
);
2970 mutex_unlock(&dev_priv
->dpio_lock
);
2973 static void ironlake_pch_transcoder_set_timings(struct intel_crtc
*crtc
,
2974 enum pipe pch_transcoder
)
2976 struct drm_device
*dev
= crtc
->base
.dev
;
2977 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
2978 enum transcoder cpu_transcoder
= crtc
->config
.cpu_transcoder
;
2980 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder
),
2981 I915_READ(HTOTAL(cpu_transcoder
)));
2982 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder
),
2983 I915_READ(HBLANK(cpu_transcoder
)));
2984 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder
),
2985 I915_READ(HSYNC(cpu_transcoder
)));
2987 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder
),
2988 I915_READ(VTOTAL(cpu_transcoder
)));
2989 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder
),
2990 I915_READ(VBLANK(cpu_transcoder
)));
2991 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder
),
2992 I915_READ(VSYNC(cpu_transcoder
)));
2993 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder
),
2994 I915_READ(VSYNCSHIFT(cpu_transcoder
)));
2997 static void cpt_enable_fdi_bc_bifurcation(struct drm_device
*dev
)
2999 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3002 temp
= I915_READ(SOUTH_CHICKEN1
);
3003 if (temp
& FDI_BC_BIFURCATION_SELECT
)
3006 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B
)) & FDI_RX_ENABLE
);
3007 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C
)) & FDI_RX_ENABLE
);
3009 temp
|= FDI_BC_BIFURCATION_SELECT
;
3010 DRM_DEBUG_KMS("enabling fdi C rx\n");
3011 I915_WRITE(SOUTH_CHICKEN1
, temp
);
3012 POSTING_READ(SOUTH_CHICKEN1
);
3015 static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc
*intel_crtc
)
3017 struct drm_device
*dev
= intel_crtc
->base
.dev
;
3018 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3020 switch (intel_crtc
->pipe
) {
3024 if (intel_crtc
->config
.fdi_lanes
> 2)
3025 WARN_ON(I915_READ(SOUTH_CHICKEN1
) & FDI_BC_BIFURCATION_SELECT
);
3027 cpt_enable_fdi_bc_bifurcation(dev
);
3031 cpt_enable_fdi_bc_bifurcation(dev
);
3040 * Enable PCH resources required for PCH ports:
3042 * - FDI training & RX/TX
3043 * - update transcoder timings
3044 * - DP transcoding bits
3047 static void ironlake_pch_enable(struct drm_crtc
*crtc
)
3049 struct drm_device
*dev
= crtc
->dev
;
3050 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3051 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3052 int pipe
= intel_crtc
->pipe
;
3055 assert_pch_transcoder_disabled(dev_priv
, pipe
);
3057 if (IS_IVYBRIDGE(dev
))
3058 ivybridge_update_fdi_bc_bifurcation(intel_crtc
);
3060 /* Write the TU size bits before fdi link training, so that error
3061 * detection works. */
3062 I915_WRITE(FDI_RX_TUSIZE1(pipe
),
3063 I915_READ(PIPE_DATA_M1(pipe
)) & TU_SIZE_MASK
);
3065 /* For PCH output, training FDI link */
3066 dev_priv
->display
.fdi_link_train(crtc
);
3068 /* We need to program the right clock selection before writing the pixel
3069 * mutliplier into the DPLL. */
3070 if (HAS_PCH_CPT(dev
)) {
3073 temp
= I915_READ(PCH_DPLL_SEL
);
3074 temp
|= TRANS_DPLL_ENABLE(pipe
);
3075 sel
= TRANS_DPLLB_SEL(pipe
);
3076 if (intel_crtc
->config
.shared_dpll
== DPLL_ID_PCH_PLL_B
)
3080 I915_WRITE(PCH_DPLL_SEL
, temp
);
3083 /* XXX: pch pll's can be enabled any time before we enable the PCH
3084 * transcoder, and we actually should do this to not upset any PCH
3085 * transcoder that already use the clock when we share it.
3087 * Note that enable_shared_dpll tries to do the right thing, but
3088 * get_shared_dpll unconditionally resets the pll - we need that to have
3089 * the right LVDS enable sequence. */
3090 ironlake_enable_shared_dpll(intel_crtc
);
3092 /* set transcoder timing, panel must allow it */
3093 assert_panel_unlocked(dev_priv
, pipe
);
3094 ironlake_pch_transcoder_set_timings(intel_crtc
, pipe
);
3096 intel_fdi_normal_train(crtc
);
3098 /* For PCH DP, enable TRANS_DP_CTL */
3099 if (HAS_PCH_CPT(dev
) &&
3100 (intel_pipe_has_type(crtc
, INTEL_OUTPUT_DISPLAYPORT
) ||
3101 intel_pipe_has_type(crtc
, INTEL_OUTPUT_EDP
))) {
3102 u32 bpc
= (I915_READ(PIPECONF(pipe
)) & PIPECONF_BPC_MASK
) >> 5;
3103 reg
= TRANS_DP_CTL(pipe
);
3104 temp
= I915_READ(reg
);
3105 temp
&= ~(TRANS_DP_PORT_SEL_MASK
|
3106 TRANS_DP_SYNC_MASK
|
3108 temp
|= (TRANS_DP_OUTPUT_ENABLE
|
3109 TRANS_DP_ENH_FRAMING
);
3110 temp
|= bpc
<< 9; /* same format but at 11:9 */
3112 if (crtc
->mode
.flags
& DRM_MODE_FLAG_PHSYNC
)
3113 temp
|= TRANS_DP_HSYNC_ACTIVE_HIGH
;
3114 if (crtc
->mode
.flags
& DRM_MODE_FLAG_PVSYNC
)
3115 temp
|= TRANS_DP_VSYNC_ACTIVE_HIGH
;
3117 switch (intel_trans_dp_port_sel(crtc
)) {
3119 temp
|= TRANS_DP_PORT_SEL_B
;
3122 temp
|= TRANS_DP_PORT_SEL_C
;
3125 temp
|= TRANS_DP_PORT_SEL_D
;
3131 I915_WRITE(reg
, temp
);
3134 ironlake_enable_pch_transcoder(dev_priv
, pipe
);
3137 static void lpt_pch_enable(struct drm_crtc
*crtc
)
3139 struct drm_device
*dev
= crtc
->dev
;
3140 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3141 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3142 enum transcoder cpu_transcoder
= intel_crtc
->config
.cpu_transcoder
;
3144 assert_pch_transcoder_disabled(dev_priv
, TRANSCODER_A
);
3146 lpt_program_iclkip(crtc
);
3148 /* Set transcoder timing. */
3149 ironlake_pch_transcoder_set_timings(intel_crtc
, PIPE_A
);
3151 lpt_enable_pch_transcoder(dev_priv
, cpu_transcoder
);
3154 static void intel_put_shared_dpll(struct intel_crtc
*crtc
)
3156 struct intel_shared_dpll
*pll
= intel_crtc_to_shared_dpll(crtc
);
3161 if (pll
->refcount
== 0) {
3162 WARN(1, "bad %s refcount\n", pll
->name
);
3166 if (--pll
->refcount
== 0) {
3168 WARN_ON(pll
->active
);
3171 crtc
->config
.shared_dpll
= DPLL_ID_PRIVATE
;
3174 static struct intel_shared_dpll
*intel_get_shared_dpll(struct intel_crtc
*crtc
)
3176 struct drm_i915_private
*dev_priv
= crtc
->base
.dev
->dev_private
;
3177 struct intel_shared_dpll
*pll
= intel_crtc_to_shared_dpll(crtc
);
3178 enum intel_dpll_id i
;
3181 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3182 crtc
->base
.base
.id
, pll
->name
);
3183 intel_put_shared_dpll(crtc
);
3186 if (HAS_PCH_IBX(dev_priv
->dev
)) {
3187 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
3188 i
= (enum intel_dpll_id
) crtc
->pipe
;
3189 pll
= &dev_priv
->shared_dplls
[i
];
3191 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3192 crtc
->base
.base
.id
, pll
->name
);
3197 for (i
= 0; i
< dev_priv
->num_shared_dpll
; i
++) {
3198 pll
= &dev_priv
->shared_dplls
[i
];
3200 /* Only want to check enabled timings first */
3201 if (pll
->refcount
== 0)
3204 if (memcmp(&crtc
->config
.dpll_hw_state
, &pll
->hw_state
,
3205 sizeof(pll
->hw_state
)) == 0) {
3206 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
3208 pll
->name
, pll
->refcount
, pll
->active
);
3214 /* Ok no matching timings, maybe there's a free one? */
3215 for (i
= 0; i
< dev_priv
->num_shared_dpll
; i
++) {
3216 pll
= &dev_priv
->shared_dplls
[i
];
3217 if (pll
->refcount
== 0) {
3218 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3219 crtc
->base
.base
.id
, pll
->name
);
3227 crtc
->config
.shared_dpll
= i
;
3228 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll
->name
,
3229 pipe_name(crtc
->pipe
));
3231 if (pll
->active
== 0) {
3232 memcpy(&pll
->hw_state
, &crtc
->config
.dpll_hw_state
,
3233 sizeof(pll
->hw_state
));
3235 DRM_DEBUG_DRIVER("setting up %s\n", pll
->name
);
3237 assert_shared_dpll_disabled(dev_priv
, pll
);
3239 pll
->mode_set(dev_priv
, pll
);
3246 static void cpt_verify_modeset(struct drm_device
*dev
, int pipe
)
3248 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3249 int dslreg
= PIPEDSL(pipe
);
3252 temp
= I915_READ(dslreg
);
3254 if (wait_for(I915_READ(dslreg
) != temp
, 5)) {
3255 if (wait_for(I915_READ(dslreg
) != temp
, 5))
3256 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe
));
3260 static void ironlake_pfit_enable(struct intel_crtc
*crtc
)
3262 struct drm_device
*dev
= crtc
->base
.dev
;
3263 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3264 int pipe
= crtc
->pipe
;
3266 if (crtc
->config
.pch_pfit
.enabled
) {
3267 /* Force use of hard-coded filter coefficients
3268 * as some pre-programmed values are broken,
3271 if (IS_IVYBRIDGE(dev
) || IS_HASWELL(dev
))
3272 I915_WRITE(PF_CTL(pipe
), PF_ENABLE
| PF_FILTER_MED_3x3
|
3273 PF_PIPE_SEL_IVB(pipe
));
3275 I915_WRITE(PF_CTL(pipe
), PF_ENABLE
| PF_FILTER_MED_3x3
);
3276 I915_WRITE(PF_WIN_POS(pipe
), crtc
->config
.pch_pfit
.pos
);
3277 I915_WRITE(PF_WIN_SZ(pipe
), crtc
->config
.pch_pfit
.size
);
3281 static void intel_enable_planes(struct drm_crtc
*crtc
)
3283 struct drm_device
*dev
= crtc
->dev
;
3284 enum pipe pipe
= to_intel_crtc(crtc
)->pipe
;
3285 struct intel_plane
*intel_plane
;
3287 list_for_each_entry(intel_plane
, &dev
->mode_config
.plane_list
, base
.head
)
3288 if (intel_plane
->pipe
== pipe
)
3289 intel_plane_restore(&intel_plane
->base
);
3292 static void intel_disable_planes(struct drm_crtc
*crtc
)
3294 struct drm_device
*dev
= crtc
->dev
;
3295 enum pipe pipe
= to_intel_crtc(crtc
)->pipe
;
3296 struct intel_plane
*intel_plane
;
3298 list_for_each_entry(intel_plane
, &dev
->mode_config
.plane_list
, base
.head
)
3299 if (intel_plane
->pipe
== pipe
)
3300 intel_plane_disable(&intel_plane
->base
);
3303 static void ironlake_crtc_enable(struct drm_crtc
*crtc
)
3305 struct drm_device
*dev
= crtc
->dev
;
3306 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3307 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3308 struct intel_encoder
*encoder
;
3309 int pipe
= intel_crtc
->pipe
;
3310 int plane
= intel_crtc
->plane
;
3312 WARN_ON(!crtc
->enabled
);
3314 if (intel_crtc
->active
)
3317 intel_crtc
->active
= true;
3319 intel_set_cpu_fifo_underrun_reporting(dev
, pipe
, true);
3320 intel_set_pch_fifo_underrun_reporting(dev
, pipe
, true);
3322 intel_update_watermarks(dev
);
3324 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3325 if (encoder
->pre_enable
)
3326 encoder
->pre_enable(encoder
);
3328 if (intel_crtc
->config
.has_pch_encoder
) {
3329 /* Note: FDI PLL enabling _must_ be done before we enable the
3330 * cpu pipes, hence this is separate from all the other fdi/pch
3332 ironlake_fdi_pll_enable(intel_crtc
);
3334 assert_fdi_tx_disabled(dev_priv
, pipe
);
3335 assert_fdi_rx_disabled(dev_priv
, pipe
);
3338 ironlake_pfit_enable(intel_crtc
);
3341 * On ILK+ LUT must be loaded before the pipe is running but with
3344 intel_crtc_load_lut(crtc
);
3346 intel_enable_pipe(dev_priv
, pipe
,
3347 intel_crtc
->config
.has_pch_encoder
);
3348 intel_enable_plane(dev_priv
, plane
, pipe
);
3349 intel_enable_planes(crtc
);
3350 intel_crtc_update_cursor(crtc
, true);
3352 if (intel_crtc
->config
.has_pch_encoder
)
3353 ironlake_pch_enable(crtc
);
3355 mutex_lock(&dev
->struct_mutex
);
3356 intel_update_fbc(dev
);
3357 mutex_unlock(&dev
->struct_mutex
);
3359 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3360 encoder
->enable(encoder
);
3362 if (HAS_PCH_CPT(dev
))
3363 cpt_verify_modeset(dev
, intel_crtc
->pipe
);
3366 * There seems to be a race in PCH platform hw (at least on some
3367 * outputs) where an enabled pipe still completes any pageflip right
3368 * away (as if the pipe is off) instead of waiting for vblank. As soon
3369 * as the first vblank happend, everything works as expected. Hence just
3370 * wait for one vblank before returning to avoid strange things
3373 intel_wait_for_vblank(dev
, intel_crtc
->pipe
);
3376 /* IPS only exists on ULT machines and is tied to pipe A. */
3377 static bool hsw_crtc_supports_ips(struct intel_crtc
*crtc
)
3379 return HAS_IPS(crtc
->base
.dev
) && crtc
->pipe
== PIPE_A
;
3382 static void hsw_enable_ips(struct intel_crtc
*crtc
)
3384 struct drm_i915_private
*dev_priv
= crtc
->base
.dev
->dev_private
;
3386 if (!crtc
->config
.ips_enabled
)
3389 /* We can only enable IPS after we enable a plane and wait for a vblank.
3390 * We guarantee that the plane is enabled by calling intel_enable_ips
3391 * only after intel_enable_plane. And intel_enable_plane already waits
3392 * for a vblank, so all we need to do here is to enable the IPS bit. */
3393 assert_plane_enabled(dev_priv
, crtc
->plane
);
3394 I915_WRITE(IPS_CTL
, IPS_ENABLE
);
3397 static void hsw_disable_ips(struct intel_crtc
*crtc
)
3399 struct drm_device
*dev
= crtc
->base
.dev
;
3400 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3402 if (!crtc
->config
.ips_enabled
)
3405 assert_plane_enabled(dev_priv
, crtc
->plane
);
3406 I915_WRITE(IPS_CTL
, 0);
3408 /* We need to wait for a vblank before we can disable the plane. */
3409 intel_wait_for_vblank(dev
, crtc
->pipe
);
3412 static void haswell_crtc_enable(struct drm_crtc
*crtc
)
3414 struct drm_device
*dev
= crtc
->dev
;
3415 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3416 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3417 struct intel_encoder
*encoder
;
3418 int pipe
= intel_crtc
->pipe
;
3419 int plane
= intel_crtc
->plane
;
3421 WARN_ON(!crtc
->enabled
);
3423 if (intel_crtc
->active
)
3426 intel_crtc
->active
= true;
3428 intel_set_cpu_fifo_underrun_reporting(dev
, pipe
, true);
3429 if (intel_crtc
->config
.has_pch_encoder
)
3430 intel_set_pch_fifo_underrun_reporting(dev
, TRANSCODER_A
, true);
3432 intel_update_watermarks(dev
);
3434 if (intel_crtc
->config
.has_pch_encoder
)
3435 dev_priv
->display
.fdi_link_train(crtc
);
3437 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3438 if (encoder
->pre_enable
)
3439 encoder
->pre_enable(encoder
);
3441 intel_ddi_enable_pipe_clock(intel_crtc
);
3443 ironlake_pfit_enable(intel_crtc
);
3446 * On ILK+ LUT must be loaded before the pipe is running but with
3449 intel_crtc_load_lut(crtc
);
3451 intel_ddi_set_pipe_settings(crtc
);
3452 intel_ddi_enable_transcoder_func(crtc
);
3454 intel_enable_pipe(dev_priv
, pipe
,
3455 intel_crtc
->config
.has_pch_encoder
);
3456 intel_enable_plane(dev_priv
, plane
, pipe
);
3457 intel_enable_planes(crtc
);
3458 intel_crtc_update_cursor(crtc
, true);
3460 hsw_enable_ips(intel_crtc
);
3462 if (intel_crtc
->config
.has_pch_encoder
)
3463 lpt_pch_enable(crtc
);
3465 mutex_lock(&dev
->struct_mutex
);
3466 intel_update_fbc(dev
);
3467 mutex_unlock(&dev
->struct_mutex
);
3469 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3470 encoder
->enable(encoder
);
3473 * There seems to be a race in PCH platform hw (at least on some
3474 * outputs) where an enabled pipe still completes any pageflip right
3475 * away (as if the pipe is off) instead of waiting for vblank. As soon
3476 * as the first vblank happend, everything works as expected. Hence just
3477 * wait for one vblank before returning to avoid strange things
3480 intel_wait_for_vblank(dev
, intel_crtc
->pipe
);
3483 static void ironlake_pfit_disable(struct intel_crtc
*crtc
)
3485 struct drm_device
*dev
= crtc
->base
.dev
;
3486 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3487 int pipe
= crtc
->pipe
;
3489 /* To avoid upsetting the power well on haswell only disable the pfit if
3490 * it's in use. The hw state code will make sure we get this right. */
3491 if (crtc
->config
.pch_pfit
.enabled
) {
3492 I915_WRITE(PF_CTL(pipe
), 0);
3493 I915_WRITE(PF_WIN_POS(pipe
), 0);
3494 I915_WRITE(PF_WIN_SZ(pipe
), 0);
3498 static void ironlake_crtc_disable(struct drm_crtc
*crtc
)
3500 struct drm_device
*dev
= crtc
->dev
;
3501 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3502 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3503 struct intel_encoder
*encoder
;
3504 int pipe
= intel_crtc
->pipe
;
3505 int plane
= intel_crtc
->plane
;
3509 if (!intel_crtc
->active
)
3512 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3513 encoder
->disable(encoder
);
3515 intel_crtc_wait_for_pending_flips(crtc
);
3516 drm_vblank_off(dev
, pipe
);
3518 if (dev_priv
->fbc
.plane
== plane
)
3519 intel_disable_fbc(dev
);
3521 intel_crtc_update_cursor(crtc
, false);
3522 intel_disable_planes(crtc
);
3523 intel_disable_plane(dev_priv
, plane
, pipe
);
3525 if (intel_crtc
->config
.has_pch_encoder
)
3526 intel_set_pch_fifo_underrun_reporting(dev
, pipe
, false);
3528 intel_disable_pipe(dev_priv
, pipe
);
3530 ironlake_pfit_disable(intel_crtc
);
3532 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3533 if (encoder
->post_disable
)
3534 encoder
->post_disable(encoder
);
3536 if (intel_crtc
->config
.has_pch_encoder
) {
3537 ironlake_fdi_disable(crtc
);
3539 ironlake_disable_pch_transcoder(dev_priv
, pipe
);
3540 intel_set_pch_fifo_underrun_reporting(dev
, pipe
, true);
3542 if (HAS_PCH_CPT(dev
)) {
3543 /* disable TRANS_DP_CTL */
3544 reg
= TRANS_DP_CTL(pipe
);
3545 temp
= I915_READ(reg
);
3546 temp
&= ~(TRANS_DP_OUTPUT_ENABLE
|
3547 TRANS_DP_PORT_SEL_MASK
);
3548 temp
|= TRANS_DP_PORT_SEL_NONE
;
3549 I915_WRITE(reg
, temp
);
3551 /* disable DPLL_SEL */
3552 temp
= I915_READ(PCH_DPLL_SEL
);
3553 temp
&= ~(TRANS_DPLL_ENABLE(pipe
) | TRANS_DPLLB_SEL(pipe
));
3554 I915_WRITE(PCH_DPLL_SEL
, temp
);
3557 /* disable PCH DPLL */
3558 intel_disable_shared_dpll(intel_crtc
);
3560 ironlake_fdi_pll_disable(intel_crtc
);
3563 intel_crtc
->active
= false;
3564 intel_update_watermarks(dev
);
3566 mutex_lock(&dev
->struct_mutex
);
3567 intel_update_fbc(dev
);
3568 mutex_unlock(&dev
->struct_mutex
);
3571 static void haswell_crtc_disable(struct drm_crtc
*crtc
)
3573 struct drm_device
*dev
= crtc
->dev
;
3574 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3575 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3576 struct intel_encoder
*encoder
;
3577 int pipe
= intel_crtc
->pipe
;
3578 int plane
= intel_crtc
->plane
;
3579 enum transcoder cpu_transcoder
= intel_crtc
->config
.cpu_transcoder
;
3581 if (!intel_crtc
->active
)
3584 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3585 encoder
->disable(encoder
);
3587 intel_crtc_wait_for_pending_flips(crtc
);
3588 drm_vblank_off(dev
, pipe
);
3590 /* FBC must be disabled before disabling the plane on HSW. */
3591 if (dev_priv
->fbc
.plane
== plane
)
3592 intel_disable_fbc(dev
);
3594 hsw_disable_ips(intel_crtc
);
3596 intel_crtc_update_cursor(crtc
, false);
3597 intel_disable_planes(crtc
);
3598 intel_disable_plane(dev_priv
, plane
, pipe
);
3600 if (intel_crtc
->config
.has_pch_encoder
)
3601 intel_set_pch_fifo_underrun_reporting(dev
, TRANSCODER_A
, false);
3602 intel_disable_pipe(dev_priv
, pipe
);
3604 intel_ddi_disable_transcoder_func(dev_priv
, cpu_transcoder
);
3606 ironlake_pfit_disable(intel_crtc
);
3608 intel_ddi_disable_pipe_clock(intel_crtc
);
3610 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3611 if (encoder
->post_disable
)
3612 encoder
->post_disable(encoder
);
3614 if (intel_crtc
->config
.has_pch_encoder
) {
3615 lpt_disable_pch_transcoder(dev_priv
);
3616 intel_set_pch_fifo_underrun_reporting(dev
, TRANSCODER_A
, true);
3617 intel_ddi_fdi_disable(crtc
);
3620 intel_crtc
->active
= false;
3621 intel_update_watermarks(dev
);
3623 mutex_lock(&dev
->struct_mutex
);
3624 intel_update_fbc(dev
);
3625 mutex_unlock(&dev
->struct_mutex
);
3628 static void ironlake_crtc_off(struct drm_crtc
*crtc
)
3630 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3631 intel_put_shared_dpll(intel_crtc
);
3634 static void haswell_crtc_off(struct drm_crtc
*crtc
)
3636 intel_ddi_put_crtc_pll(crtc
);
3639 static void intel_crtc_dpms_overlay(struct intel_crtc
*intel_crtc
, bool enable
)
3641 if (!enable
&& intel_crtc
->overlay
) {
3642 struct drm_device
*dev
= intel_crtc
->base
.dev
;
3643 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3645 mutex_lock(&dev
->struct_mutex
);
3646 dev_priv
->mm
.interruptible
= false;
3647 (void) intel_overlay_switch_off(intel_crtc
->overlay
);
3648 dev_priv
->mm
.interruptible
= true;
3649 mutex_unlock(&dev
->struct_mutex
);
3652 /* Let userspace switch the overlay on again. In most cases userspace
3653 * has to recompute where to put it anyway.
3658 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3659 * cursor plane briefly if not already running after enabling the display
3661 * This workaround avoids occasional blank screens when self refresh is
3665 g4x_fixup_plane(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
3667 u32 cntl
= I915_READ(CURCNTR(pipe
));
3669 if ((cntl
& CURSOR_MODE
) == 0) {
3670 u32 fw_bcl_self
= I915_READ(FW_BLC_SELF
);
3672 I915_WRITE(FW_BLC_SELF
, fw_bcl_self
& ~FW_BLC_SELF_EN
);
3673 I915_WRITE(CURCNTR(pipe
), CURSOR_MODE_64_ARGB_AX
);
3674 intel_wait_for_vblank(dev_priv
->dev
, pipe
);
3675 I915_WRITE(CURCNTR(pipe
), cntl
);
3676 I915_WRITE(CURBASE(pipe
), I915_READ(CURBASE(pipe
)));
3677 I915_WRITE(FW_BLC_SELF
, fw_bcl_self
);
3681 static void i9xx_pfit_enable(struct intel_crtc
*crtc
)
3683 struct drm_device
*dev
= crtc
->base
.dev
;
3684 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3685 struct intel_crtc_config
*pipe_config
= &crtc
->config
;
3687 if (!crtc
->config
.gmch_pfit
.control
)
3691 * The panel fitter should only be adjusted whilst the pipe is disabled,
3692 * according to register description and PRM.
3694 WARN_ON(I915_READ(PFIT_CONTROL
) & PFIT_ENABLE
);
3695 assert_pipe_disabled(dev_priv
, crtc
->pipe
);
3697 I915_WRITE(PFIT_PGM_RATIOS
, pipe_config
->gmch_pfit
.pgm_ratios
);
3698 I915_WRITE(PFIT_CONTROL
, pipe_config
->gmch_pfit
.control
);
3700 /* Border color in case we don't scale up to the full screen. Black by
3701 * default, change to something else for debugging. */
3702 I915_WRITE(BCLRPAT(crtc
->pipe
), 0);
3705 static void valleyview_crtc_enable(struct drm_crtc
*crtc
)
3707 struct drm_device
*dev
= crtc
->dev
;
3708 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3709 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3710 struct intel_encoder
*encoder
;
3711 int pipe
= intel_crtc
->pipe
;
3712 int plane
= intel_crtc
->plane
;
3714 WARN_ON(!crtc
->enabled
);
3716 if (intel_crtc
->active
)
3719 intel_crtc
->active
= true;
3720 intel_update_watermarks(dev
);
3722 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3723 if (encoder
->pre_pll_enable
)
3724 encoder
->pre_pll_enable(encoder
);
3726 vlv_enable_pll(intel_crtc
);
3728 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3729 if (encoder
->pre_enable
)
3730 encoder
->pre_enable(encoder
);
3732 i9xx_pfit_enable(intel_crtc
);
3734 intel_crtc_load_lut(crtc
);
3736 intel_enable_pipe(dev_priv
, pipe
, false);
3737 intel_enable_plane(dev_priv
, plane
, pipe
);
3738 intel_enable_planes(crtc
);
3739 intel_crtc_update_cursor(crtc
, true);
3741 intel_update_fbc(dev
);
3743 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3744 encoder
->enable(encoder
);
3747 static void i9xx_crtc_enable(struct drm_crtc
*crtc
)
3749 struct drm_device
*dev
= crtc
->dev
;
3750 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3751 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3752 struct intel_encoder
*encoder
;
3753 int pipe
= intel_crtc
->pipe
;
3754 int plane
= intel_crtc
->plane
;
3756 WARN_ON(!crtc
->enabled
);
3758 if (intel_crtc
->active
)
3761 intel_crtc
->active
= true;
3762 intel_update_watermarks(dev
);
3764 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3765 if (encoder
->pre_enable
)
3766 encoder
->pre_enable(encoder
);
3768 i9xx_enable_pll(intel_crtc
);
3770 i9xx_pfit_enable(intel_crtc
);
3772 intel_crtc_load_lut(crtc
);
3774 intel_enable_pipe(dev_priv
, pipe
, false);
3775 intel_enable_plane(dev_priv
, plane
, pipe
);
3776 intel_enable_planes(crtc
);
3777 /* The fixup needs to happen before cursor is enabled */
3779 g4x_fixup_plane(dev_priv
, pipe
);
3780 intel_crtc_update_cursor(crtc
, true);
3782 /* Give the overlay scaler a chance to enable if it's on this pipe */
3783 intel_crtc_dpms_overlay(intel_crtc
, true);
3785 intel_update_fbc(dev
);
3787 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3788 encoder
->enable(encoder
);
3791 static void i9xx_pfit_disable(struct intel_crtc
*crtc
)
3793 struct drm_device
*dev
= crtc
->base
.dev
;
3794 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3796 if (!crtc
->config
.gmch_pfit
.control
)
3799 assert_pipe_disabled(dev_priv
, crtc
->pipe
);
3801 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
3802 I915_READ(PFIT_CONTROL
));
3803 I915_WRITE(PFIT_CONTROL
, 0);
3806 static void i9xx_crtc_disable(struct drm_crtc
*crtc
)
3808 struct drm_device
*dev
= crtc
->dev
;
3809 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3810 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3811 struct intel_encoder
*encoder
;
3812 int pipe
= intel_crtc
->pipe
;
3813 int plane
= intel_crtc
->plane
;
3815 if (!intel_crtc
->active
)
3818 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3819 encoder
->disable(encoder
);
3821 /* Give the overlay scaler a chance to disable if it's on this pipe */
3822 intel_crtc_wait_for_pending_flips(crtc
);
3823 drm_vblank_off(dev
, pipe
);
3825 if (dev_priv
->fbc
.plane
== plane
)
3826 intel_disable_fbc(dev
);
3828 intel_crtc_dpms_overlay(intel_crtc
, false);
3829 intel_crtc_update_cursor(crtc
, false);
3830 intel_disable_planes(crtc
);
3831 intel_disable_plane(dev_priv
, plane
, pipe
);
3833 intel_disable_pipe(dev_priv
, pipe
);
3835 i9xx_pfit_disable(intel_crtc
);
3837 for_each_encoder_on_crtc(dev
, crtc
, encoder
)
3838 if (encoder
->post_disable
)
3839 encoder
->post_disable(encoder
);
3841 if (IS_VALLEYVIEW(dev
))
3842 vlv_disable_pll(dev_priv
, pipe
);
3844 i9xx_disable_pll(dev_priv
, pipe
);
3846 intel_crtc
->active
= false;
3847 intel_update_fbc(dev
);
3848 intel_update_watermarks(dev
);
3851 static void i9xx_crtc_off(struct drm_crtc
*crtc
)
3855 static void intel_crtc_update_sarea(struct drm_crtc
*crtc
,
3858 struct drm_device
*dev
= crtc
->dev
;
3859 struct drm_i915_master_private
*master_priv
;
3860 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3861 int pipe
= intel_crtc
->pipe
;
3863 if (!dev
->primary
->master
)
3866 master_priv
= dev
->primary
->master
->driver_priv
;
3867 if (!master_priv
->sarea_priv
)
3872 master_priv
->sarea_priv
->pipeA_w
= enabled
? crtc
->mode
.hdisplay
: 0;
3873 master_priv
->sarea_priv
->pipeA_h
= enabled
? crtc
->mode
.vdisplay
: 0;
3876 master_priv
->sarea_priv
->pipeB_w
= enabled
? crtc
->mode
.hdisplay
: 0;
3877 master_priv
->sarea_priv
->pipeB_h
= enabled
? crtc
->mode
.vdisplay
: 0;
3880 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe
));
3886 * Sets the power management mode of the pipe and plane.
3888 void intel_crtc_update_dpms(struct drm_crtc
*crtc
)
3890 struct drm_device
*dev
= crtc
->dev
;
3891 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3892 struct intel_encoder
*intel_encoder
;
3893 bool enable
= false;
3895 for_each_encoder_on_crtc(dev
, crtc
, intel_encoder
)
3896 enable
|= intel_encoder
->connectors_active
;
3899 dev_priv
->display
.crtc_enable(crtc
);
3901 dev_priv
->display
.crtc_disable(crtc
);
3903 intel_crtc_update_sarea(crtc
, enable
);
3906 static void intel_crtc_disable(struct drm_crtc
*crtc
)
3908 struct drm_device
*dev
= crtc
->dev
;
3909 struct drm_connector
*connector
;
3910 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
3911 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
3913 /* crtc should still be enabled when we disable it. */
3914 WARN_ON(!crtc
->enabled
);
3916 dev_priv
->display
.crtc_disable(crtc
);
3917 intel_crtc
->eld_vld
= false;
3918 intel_crtc_update_sarea(crtc
, false);
3919 dev_priv
->display
.off(crtc
);
3921 assert_plane_disabled(dev
->dev_private
, to_intel_crtc(crtc
)->plane
);
3922 assert_pipe_disabled(dev
->dev_private
, to_intel_crtc(crtc
)->pipe
);
3925 mutex_lock(&dev
->struct_mutex
);
3926 intel_unpin_fb_obj(to_intel_framebuffer(crtc
->fb
)->obj
);
3927 mutex_unlock(&dev
->struct_mutex
);
3931 /* Update computed state. */
3932 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
3933 if (!connector
->encoder
|| !connector
->encoder
->crtc
)
3936 if (connector
->encoder
->crtc
!= crtc
)
3939 connector
->dpms
= DRM_MODE_DPMS_OFF
;
3940 to_intel_encoder(connector
->encoder
)->connectors_active
= false;
3944 void intel_encoder_destroy(struct drm_encoder
*encoder
)
3946 struct intel_encoder
*intel_encoder
= to_intel_encoder(encoder
);
3948 drm_encoder_cleanup(encoder
);
3949 kfree(intel_encoder
);
3952 /* Simple dpms helper for encoders with just one connector, no cloning and only
3953 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
3954 * state of the entire output pipe. */
3955 static void intel_encoder_dpms(struct intel_encoder
*encoder
, int mode
)
3957 if (mode
== DRM_MODE_DPMS_ON
) {
3958 encoder
->connectors_active
= true;
3960 intel_crtc_update_dpms(encoder
->base
.crtc
);
3962 encoder
->connectors_active
= false;
3964 intel_crtc_update_dpms(encoder
->base
.crtc
);
3968 /* Cross check the actual hw state with our own modeset state tracking (and it's
3969 * internal consistency). */
3970 static void intel_connector_check_state(struct intel_connector
*connector
)
3972 if (connector
->get_hw_state(connector
)) {
3973 struct intel_encoder
*encoder
= connector
->encoder
;
3974 struct drm_crtc
*crtc
;
3975 bool encoder_enabled
;
3978 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
3979 connector
->base
.base
.id
,
3980 drm_get_connector_name(&connector
->base
));
3982 WARN(connector
->base
.dpms
== DRM_MODE_DPMS_OFF
,
3983 "wrong connector dpms state\n");
3984 WARN(connector
->base
.encoder
!= &encoder
->base
,
3985 "active connector not linked to encoder\n");
3986 WARN(!encoder
->connectors_active
,
3987 "encoder->connectors_active not set\n");
3989 encoder_enabled
= encoder
->get_hw_state(encoder
, &pipe
);
3990 WARN(!encoder_enabled
, "encoder not enabled\n");
3991 if (WARN_ON(!encoder
->base
.crtc
))
3994 crtc
= encoder
->base
.crtc
;
3996 WARN(!crtc
->enabled
, "crtc not enabled\n");
3997 WARN(!to_intel_crtc(crtc
)->active
, "crtc not active\n");
3998 WARN(pipe
!= to_intel_crtc(crtc
)->pipe
,
3999 "encoder active on the wrong pipe\n");
4003 /* Even simpler default implementation, if there's really no special case to
4005 void intel_connector_dpms(struct drm_connector
*connector
, int mode
)
4007 /* All the simple cases only support two dpms states. */
4008 if (mode
!= DRM_MODE_DPMS_ON
)
4009 mode
= DRM_MODE_DPMS_OFF
;
4011 if (mode
== connector
->dpms
)
4014 connector
->dpms
= mode
;
4016 /* Only need to change hw state when actually enabled */
4017 if (connector
->encoder
)
4018 intel_encoder_dpms(to_intel_encoder(connector
->encoder
), mode
);
4020 intel_modeset_check_state(connector
->dev
);
4023 /* Simple connector->get_hw_state implementation for encoders that support only
4024 * one connector and no cloning and hence the encoder state determines the state
4025 * of the connector. */
4026 bool intel_connector_get_hw_state(struct intel_connector
*connector
)
4029 struct intel_encoder
*encoder
= connector
->encoder
;
4031 return encoder
->get_hw_state(encoder
, &pipe
);
4034 static bool ironlake_check_fdi_lanes(struct drm_device
*dev
, enum pipe pipe
,
4035 struct intel_crtc_config
*pipe_config
)
4037 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4038 struct intel_crtc
*pipe_B_crtc
=
4039 to_intel_crtc(dev_priv
->pipe_to_crtc_mapping
[PIPE_B
]);
4041 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
4042 pipe_name(pipe
), pipe_config
->fdi_lanes
);
4043 if (pipe_config
->fdi_lanes
> 4) {
4044 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
4045 pipe_name(pipe
), pipe_config
->fdi_lanes
);
4049 if (IS_HASWELL(dev
)) {
4050 if (pipe_config
->fdi_lanes
> 2) {
4051 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
4052 pipe_config
->fdi_lanes
);
4059 if (INTEL_INFO(dev
)->num_pipes
== 2)
4062 /* Ivybridge 3 pipe is really complicated */
4067 if (dev_priv
->pipe_to_crtc_mapping
[PIPE_C
]->enabled
&&
4068 pipe_config
->fdi_lanes
> 2) {
4069 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4070 pipe_name(pipe
), pipe_config
->fdi_lanes
);
4075 if (!pipe_has_enabled_pch(pipe_B_crtc
) ||
4076 pipe_B_crtc
->config
.fdi_lanes
<= 2) {
4077 if (pipe_config
->fdi_lanes
> 2) {
4078 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4079 pipe_name(pipe
), pipe_config
->fdi_lanes
);
4083 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
4093 static int ironlake_fdi_compute_config(struct intel_crtc
*intel_crtc
,
4094 struct intel_crtc_config
*pipe_config
)
4096 struct drm_device
*dev
= intel_crtc
->base
.dev
;
4097 struct drm_display_mode
*adjusted_mode
= &pipe_config
->adjusted_mode
;
4098 int lane
, link_bw
, fdi_dotclock
;
4099 bool setup_ok
, needs_recompute
= false;
4102 /* FDI is a binary signal running at ~2.7GHz, encoding
4103 * each output octet as 10 bits. The actual frequency
4104 * is stored as a divider into a 100MHz clock, and the
4105 * mode pixel clock is stored in units of 1KHz.
4106 * Hence the bw of each lane in terms of the mode signal
4109 link_bw
= intel_fdi_link_freq(dev
) * MHz(100)/KHz(1)/10;
4111 fdi_dotclock
= adjusted_mode
->clock
;
4112 fdi_dotclock
/= pipe_config
->pixel_multiplier
;
4114 lane
= ironlake_get_lanes_required(fdi_dotclock
, link_bw
,
4115 pipe_config
->pipe_bpp
);
4117 pipe_config
->fdi_lanes
= lane
;
4119 intel_link_compute_m_n(pipe_config
->pipe_bpp
, lane
, fdi_dotclock
,
4120 link_bw
, &pipe_config
->fdi_m_n
);
4122 setup_ok
= ironlake_check_fdi_lanes(intel_crtc
->base
.dev
,
4123 intel_crtc
->pipe
, pipe_config
);
4124 if (!setup_ok
&& pipe_config
->pipe_bpp
> 6*3) {
4125 pipe_config
->pipe_bpp
-= 2*3;
4126 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
4127 pipe_config
->pipe_bpp
);
4128 needs_recompute
= true;
4129 pipe_config
->bw_constrained
= true;
4134 if (needs_recompute
)
4137 return setup_ok
? 0 : -EINVAL
;
4140 static void hsw_compute_ips_config(struct intel_crtc
*crtc
,
4141 struct intel_crtc_config
*pipe_config
)
4143 pipe_config
->ips_enabled
= i915_enable_ips
&&
4144 hsw_crtc_supports_ips(crtc
) &&
4145 pipe_config
->pipe_bpp
<= 24;
4148 static int intel_crtc_compute_config(struct intel_crtc
*crtc
,
4149 struct intel_crtc_config
*pipe_config
)
4151 struct drm_device
*dev
= crtc
->base
.dev
;
4152 struct drm_display_mode
*adjusted_mode
= &pipe_config
->adjusted_mode
;
4154 if (HAS_PCH_SPLIT(dev
)) {
4155 /* FDI link clock is fixed at 2.7G */
4156 if (pipe_config
->requested_mode
.clock
* 3
4157 > IRONLAKE_FDI_FREQ
* 4)
4161 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
4162 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
4164 if ((INTEL_INFO(dev
)->gen
> 4 || IS_G4X(dev
)) &&
4165 adjusted_mode
->hsync_start
== adjusted_mode
->hdisplay
)
4168 if ((IS_G4X(dev
) || IS_VALLEYVIEW(dev
)) && pipe_config
->pipe_bpp
> 10*3) {
4169 pipe_config
->pipe_bpp
= 10*3; /* 12bpc is gen5+ */
4170 } else if (INTEL_INFO(dev
)->gen
<= 4 && pipe_config
->pipe_bpp
> 8*3) {
4171 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
4173 pipe_config
->pipe_bpp
= 8*3;
4177 hsw_compute_ips_config(crtc
, pipe_config
);
4179 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
4180 * clock survives for now. */
4181 if (HAS_PCH_IBX(dev
) || HAS_PCH_CPT(dev
))
4182 pipe_config
->shared_dpll
= crtc
->config
.shared_dpll
;
4184 if (pipe_config
->has_pch_encoder
)
4185 return ironlake_fdi_compute_config(crtc
, pipe_config
);
4190 static int valleyview_get_display_clock_speed(struct drm_device
*dev
)
4192 return 400000; /* FIXME */
4195 static int i945_get_display_clock_speed(struct drm_device
*dev
)
4200 static int i915_get_display_clock_speed(struct drm_device
*dev
)
4205 static int i9xx_misc_get_display_clock_speed(struct drm_device
*dev
)
4210 static int pnv_get_display_clock_speed(struct drm_device
*dev
)
4214 pci_read_config_word(dev
->pdev
, GCFGC
, &gcfgc
);
4216 switch (gcfgc
& GC_DISPLAY_CLOCK_MASK
) {
4217 case GC_DISPLAY_CLOCK_267_MHZ_PNV
:
4219 case GC_DISPLAY_CLOCK_333_MHZ_PNV
:
4221 case GC_DISPLAY_CLOCK_444_MHZ_PNV
:
4223 case GC_DISPLAY_CLOCK_200_MHZ_PNV
:
4226 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc
);
4227 case GC_DISPLAY_CLOCK_133_MHZ_PNV
:
4229 case GC_DISPLAY_CLOCK_167_MHZ_PNV
:
4234 static int i915gm_get_display_clock_speed(struct drm_device
*dev
)
4238 pci_read_config_word(dev
->pdev
, GCFGC
, &gcfgc
);
4240 if (gcfgc
& GC_LOW_FREQUENCY_ENABLE
)
4243 switch (gcfgc
& GC_DISPLAY_CLOCK_MASK
) {
4244 case GC_DISPLAY_CLOCK_333_MHZ
:
4247 case GC_DISPLAY_CLOCK_190_200_MHZ
:
4253 static int i865_get_display_clock_speed(struct drm_device
*dev
)
4258 static int i855_get_display_clock_speed(struct drm_device
*dev
)
4261 /* Assume that the hardware is in the high speed state. This
4262 * should be the default.
4264 switch (hpllcc
& GC_CLOCK_CONTROL_MASK
) {
4265 case GC_CLOCK_133_200
:
4266 case GC_CLOCK_100_200
:
4268 case GC_CLOCK_166_250
:
4270 case GC_CLOCK_100_133
:
4274 /* Shouldn't happen */
4278 static int i830_get_display_clock_speed(struct drm_device
*dev
)
4284 intel_reduce_m_n_ratio(uint32_t *num
, uint32_t *den
)
4286 while (*num
> DATA_LINK_M_N_MASK
||
4287 *den
> DATA_LINK_M_N_MASK
) {
4293 static void compute_m_n(unsigned int m
, unsigned int n
,
4294 uint32_t *ret_m
, uint32_t *ret_n
)
4296 *ret_n
= min_t(unsigned int, roundup_pow_of_two(n
), DATA_LINK_N_MAX
);
4297 *ret_m
= div_u64((uint64_t) m
* *ret_n
, n
);
4298 intel_reduce_m_n_ratio(ret_m
, ret_n
);
4302 intel_link_compute_m_n(int bits_per_pixel
, int nlanes
,
4303 int pixel_clock
, int link_clock
,
4304 struct intel_link_m_n
*m_n
)
4308 compute_m_n(bits_per_pixel
* pixel_clock
,
4309 link_clock
* nlanes
* 8,
4310 &m_n
->gmch_m
, &m_n
->gmch_n
);
4312 compute_m_n(pixel_clock
, link_clock
,
4313 &m_n
->link_m
, &m_n
->link_n
);
4316 static inline bool intel_panel_use_ssc(struct drm_i915_private
*dev_priv
)
4318 if (i915_panel_use_ssc
>= 0)
4319 return i915_panel_use_ssc
!= 0;
4320 return dev_priv
->vbt
.lvds_use_ssc
4321 && !(dev_priv
->quirks
& QUIRK_LVDS_SSC_DISABLE
);
4324 static int vlv_get_refclk(struct drm_crtc
*crtc
)
4326 struct drm_device
*dev
= crtc
->dev
;
4327 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4328 int refclk
= 27000; /* for DP & HDMI */
4330 return 100000; /* only one validated so far */
4332 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_ANALOG
)) {
4334 } else if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_LVDS
)) {
4335 if (intel_panel_use_ssc(dev_priv
))
4339 } else if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_EDP
)) {
4346 static int i9xx_get_refclk(struct drm_crtc
*crtc
, int num_connectors
)
4348 struct drm_device
*dev
= crtc
->dev
;
4349 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4352 if (IS_VALLEYVIEW(dev
)) {
4353 refclk
= vlv_get_refclk(crtc
);
4354 } else if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_LVDS
) &&
4355 intel_panel_use_ssc(dev_priv
) && num_connectors
< 2) {
4356 refclk
= dev_priv
->vbt
.lvds_ssc_freq
* 1000;
4357 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4359 } else if (!IS_GEN2(dev
)) {
4368 static uint32_t pnv_dpll_compute_fp(struct dpll
*dpll
)
4370 return (1 << dpll
->n
) << 16 | dpll
->m2
;
4373 static uint32_t i9xx_dpll_compute_fp(struct dpll
*dpll
)
4375 return dpll
->n
<< 16 | dpll
->m1
<< 8 | dpll
->m2
;
4378 static void i9xx_update_pll_dividers(struct intel_crtc
*crtc
,
4379 intel_clock_t
*reduced_clock
)
4381 struct drm_device
*dev
= crtc
->base
.dev
;
4382 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4383 int pipe
= crtc
->pipe
;
4386 if (IS_PINEVIEW(dev
)) {
4387 fp
= pnv_dpll_compute_fp(&crtc
->config
.dpll
);
4389 fp2
= pnv_dpll_compute_fp(reduced_clock
);
4391 fp
= i9xx_dpll_compute_fp(&crtc
->config
.dpll
);
4393 fp2
= i9xx_dpll_compute_fp(reduced_clock
);
4396 I915_WRITE(FP0(pipe
), fp
);
4397 crtc
->config
.dpll_hw_state
.fp0
= fp
;
4399 crtc
->lowfreq_avail
= false;
4400 if (intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_LVDS
) &&
4401 reduced_clock
&& i915_powersave
) {
4402 I915_WRITE(FP1(pipe
), fp2
);
4403 crtc
->config
.dpll_hw_state
.fp1
= fp2
;
4404 crtc
->lowfreq_avail
= true;
4406 I915_WRITE(FP1(pipe
), fp
);
4407 crtc
->config
.dpll_hw_state
.fp1
= fp
;
4411 static void vlv_pllb_recal_opamp(struct drm_i915_private
*dev_priv
)
4416 * PLLB opamp always calibrates to max value of 0x3f, force enable it
4417 * and set it to a reasonable value instead.
4419 reg_val
= vlv_dpio_read(dev_priv
, DPIO_IREF(1));
4420 reg_val
&= 0xffffff00;
4421 reg_val
|= 0x00000030;
4422 vlv_dpio_write(dev_priv
, DPIO_IREF(1), reg_val
);
4424 reg_val
= vlv_dpio_read(dev_priv
, DPIO_CALIBRATION
);
4425 reg_val
&= 0x8cffffff;
4426 reg_val
= 0x8c000000;
4427 vlv_dpio_write(dev_priv
, DPIO_CALIBRATION
, reg_val
);
4429 reg_val
= vlv_dpio_read(dev_priv
, DPIO_IREF(1));
4430 reg_val
&= 0xffffff00;
4431 vlv_dpio_write(dev_priv
, DPIO_IREF(1), reg_val
);
4433 reg_val
= vlv_dpio_read(dev_priv
, DPIO_CALIBRATION
);
4434 reg_val
&= 0x00ffffff;
4435 reg_val
|= 0xb0000000;
4436 vlv_dpio_write(dev_priv
, DPIO_CALIBRATION
, reg_val
);
4439 static void intel_pch_transcoder_set_m_n(struct intel_crtc
*crtc
,
4440 struct intel_link_m_n
*m_n
)
4442 struct drm_device
*dev
= crtc
->base
.dev
;
4443 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4444 int pipe
= crtc
->pipe
;
4446 I915_WRITE(PCH_TRANS_DATA_M1(pipe
), TU_SIZE(m_n
->tu
) | m_n
->gmch_m
);
4447 I915_WRITE(PCH_TRANS_DATA_N1(pipe
), m_n
->gmch_n
);
4448 I915_WRITE(PCH_TRANS_LINK_M1(pipe
), m_n
->link_m
);
4449 I915_WRITE(PCH_TRANS_LINK_N1(pipe
), m_n
->link_n
);
4452 static void intel_cpu_transcoder_set_m_n(struct intel_crtc
*crtc
,
4453 struct intel_link_m_n
*m_n
)
4455 struct drm_device
*dev
= crtc
->base
.dev
;
4456 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4457 int pipe
= crtc
->pipe
;
4458 enum transcoder transcoder
= crtc
->config
.cpu_transcoder
;
4460 if (INTEL_INFO(dev
)->gen
>= 5) {
4461 I915_WRITE(PIPE_DATA_M1(transcoder
), TU_SIZE(m_n
->tu
) | m_n
->gmch_m
);
4462 I915_WRITE(PIPE_DATA_N1(transcoder
), m_n
->gmch_n
);
4463 I915_WRITE(PIPE_LINK_M1(transcoder
), m_n
->link_m
);
4464 I915_WRITE(PIPE_LINK_N1(transcoder
), m_n
->link_n
);
4466 I915_WRITE(PIPE_DATA_M_G4X(pipe
), TU_SIZE(m_n
->tu
) | m_n
->gmch_m
);
4467 I915_WRITE(PIPE_DATA_N_G4X(pipe
), m_n
->gmch_n
);
4468 I915_WRITE(PIPE_LINK_M_G4X(pipe
), m_n
->link_m
);
4469 I915_WRITE(PIPE_LINK_N_G4X(pipe
), m_n
->link_n
);
4473 static void intel_dp_set_m_n(struct intel_crtc
*crtc
)
4475 if (crtc
->config
.has_pch_encoder
)
4476 intel_pch_transcoder_set_m_n(crtc
, &crtc
->config
.dp_m_n
);
4478 intel_cpu_transcoder_set_m_n(crtc
, &crtc
->config
.dp_m_n
);
4481 static void vlv_update_pll(struct intel_crtc
*crtc
)
4483 struct drm_device
*dev
= crtc
->base
.dev
;
4484 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4485 int pipe
= crtc
->pipe
;
4487 u32 bestn
, bestm1
, bestm2
, bestp1
, bestp2
;
4488 u32 coreclk
, reg_val
, dpll_md
;
4490 mutex_lock(&dev_priv
->dpio_lock
);
4492 bestn
= crtc
->config
.dpll
.n
;
4493 bestm1
= crtc
->config
.dpll
.m1
;
4494 bestm2
= crtc
->config
.dpll
.m2
;
4495 bestp1
= crtc
->config
.dpll
.p1
;
4496 bestp2
= crtc
->config
.dpll
.p2
;
4498 /* See eDP HDMI DPIO driver vbios notes doc */
4500 /* PLL B needs special handling */
4502 vlv_pllb_recal_opamp(dev_priv
);
4504 /* Set up Tx target for periodic Rcomp update */
4505 vlv_dpio_write(dev_priv
, DPIO_IREF_BCAST
, 0x0100000f);
4507 /* Disable target IRef on PLL */
4508 reg_val
= vlv_dpio_read(dev_priv
, DPIO_IREF_CTL(pipe
));
4509 reg_val
&= 0x00ffffff;
4510 vlv_dpio_write(dev_priv
, DPIO_IREF_CTL(pipe
), reg_val
);
4512 /* Disable fast lock */
4513 vlv_dpio_write(dev_priv
, DPIO_FASTCLK_DISABLE
, 0x610);
4515 /* Set idtafcrecal before PLL is enabled */
4516 mdiv
= ((bestm1
<< DPIO_M1DIV_SHIFT
) | (bestm2
& DPIO_M2DIV_MASK
));
4517 mdiv
|= ((bestp1
<< DPIO_P1_SHIFT
) | (bestp2
<< DPIO_P2_SHIFT
));
4518 mdiv
|= ((bestn
<< DPIO_N_SHIFT
));
4519 mdiv
|= (1 << DPIO_K_SHIFT
);
4522 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
4523 * but we don't support that).
4524 * Note: don't use the DAC post divider as it seems unstable.
4526 mdiv
|= (DPIO_POST_DIV_HDMIDP
<< DPIO_POST_DIV_SHIFT
);
4527 vlv_dpio_write(dev_priv
, DPIO_DIV(pipe
), mdiv
);
4529 mdiv
|= DPIO_ENABLE_CALIBRATION
;
4530 vlv_dpio_write(dev_priv
, DPIO_DIV(pipe
), mdiv
);
4532 /* Set HBR and RBR LPF coefficients */
4533 if (crtc
->config
.port_clock
== 162000 ||
4534 intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_ANALOG
) ||
4535 intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_HDMI
))
4536 vlv_dpio_write(dev_priv
, DPIO_LPF_COEFF(pipe
),
4539 vlv_dpio_write(dev_priv
, DPIO_LPF_COEFF(pipe
),
4542 if (intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_EDP
) ||
4543 intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_DISPLAYPORT
)) {
4544 /* Use SSC source */
4546 vlv_dpio_write(dev_priv
, DPIO_REFSFR(pipe
),
4549 vlv_dpio_write(dev_priv
, DPIO_REFSFR(pipe
),
4551 } else { /* HDMI or VGA */
4552 /* Use bend source */
4554 vlv_dpio_write(dev_priv
, DPIO_REFSFR(pipe
),
4557 vlv_dpio_write(dev_priv
, DPIO_REFSFR(pipe
),
4561 coreclk
= vlv_dpio_read(dev_priv
, DPIO_CORE_CLK(pipe
));
4562 coreclk
= (coreclk
& 0x0000ff00) | 0x01c00000;
4563 if (intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_DISPLAYPORT
) ||
4564 intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_EDP
))
4565 coreclk
|= 0x01000000;
4566 vlv_dpio_write(dev_priv
, DPIO_CORE_CLK(pipe
), coreclk
);
4568 vlv_dpio_write(dev_priv
, DPIO_PLL_CML(pipe
), 0x87871000);
4570 /* Enable DPIO clock input */
4571 dpll
= DPLL_EXT_BUFFER_ENABLE_VLV
| DPLL_REFA_CLK_ENABLE_VLV
|
4572 DPLL_VGA_MODE_DIS
| DPLL_INTEGRATED_CLOCK_VLV
;
4573 /* We should never disable this, set it here for state tracking */
4575 dpll
|= DPLL_INTEGRATED_CRI_CLK_VLV
;
4576 dpll
|= DPLL_VCO_ENABLE
;
4577 crtc
->config
.dpll_hw_state
.dpll
= dpll
;
4579 dpll_md
= (crtc
->config
.pixel_multiplier
- 1)
4580 << DPLL_MD_UDI_MULTIPLIER_SHIFT
;
4581 crtc
->config
.dpll_hw_state
.dpll_md
= dpll_md
;
4583 if (crtc
->config
.has_dp_encoder
)
4584 intel_dp_set_m_n(crtc
);
4586 mutex_unlock(&dev_priv
->dpio_lock
);
4589 static void i9xx_update_pll(struct intel_crtc
*crtc
,
4590 intel_clock_t
*reduced_clock
,
4593 struct drm_device
*dev
= crtc
->base
.dev
;
4594 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4597 struct dpll
*clock
= &crtc
->config
.dpll
;
4599 i9xx_update_pll_dividers(crtc
, reduced_clock
);
4601 is_sdvo
= intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_SDVO
) ||
4602 intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_HDMI
);
4604 dpll
= DPLL_VGA_MODE_DIS
;
4606 if (intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_LVDS
))
4607 dpll
|= DPLLB_MODE_LVDS
;
4609 dpll
|= DPLLB_MODE_DAC_SERIAL
;
4611 if (IS_I945G(dev
) || IS_I945GM(dev
) || IS_G33(dev
)) {
4612 dpll
|= (crtc
->config
.pixel_multiplier
- 1)
4613 << SDVO_MULTIPLIER_SHIFT_HIRES
;
4617 dpll
|= DPLL_SDVO_HIGH_SPEED
;
4619 if (intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_DISPLAYPORT
))
4620 dpll
|= DPLL_SDVO_HIGH_SPEED
;
4622 /* compute bitmask from p1 value */
4623 if (IS_PINEVIEW(dev
))
4624 dpll
|= (1 << (clock
->p1
- 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW
;
4626 dpll
|= (1 << (clock
->p1
- 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT
;
4627 if (IS_G4X(dev
) && reduced_clock
)
4628 dpll
|= (1 << (reduced_clock
->p1
- 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT
;
4630 switch (clock
->p2
) {
4632 dpll
|= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5
;
4635 dpll
|= DPLLB_LVDS_P2_CLOCK_DIV_7
;
4638 dpll
|= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10
;
4641 dpll
|= DPLLB_LVDS_P2_CLOCK_DIV_14
;
4644 if (INTEL_INFO(dev
)->gen
>= 4)
4645 dpll
|= (6 << PLL_LOAD_PULSE_PHASE_SHIFT
);
4647 if (crtc
->config
.sdvo_tv_clock
)
4648 dpll
|= PLL_REF_INPUT_TVCLKINBC
;
4649 else if (intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_LVDS
) &&
4650 intel_panel_use_ssc(dev_priv
) && num_connectors
< 2)
4651 dpll
|= PLLB_REF_INPUT_SPREADSPECTRUMIN
;
4653 dpll
|= PLL_REF_INPUT_DREFCLK
;
4655 dpll
|= DPLL_VCO_ENABLE
;
4656 crtc
->config
.dpll_hw_state
.dpll
= dpll
;
4658 if (INTEL_INFO(dev
)->gen
>= 4) {
4659 u32 dpll_md
= (crtc
->config
.pixel_multiplier
- 1)
4660 << DPLL_MD_UDI_MULTIPLIER_SHIFT
;
4661 crtc
->config
.dpll_hw_state
.dpll_md
= dpll_md
;
4664 if (crtc
->config
.has_dp_encoder
)
4665 intel_dp_set_m_n(crtc
);
4668 static void i8xx_update_pll(struct intel_crtc
*crtc
,
4669 intel_clock_t
*reduced_clock
,
4672 struct drm_device
*dev
= crtc
->base
.dev
;
4673 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4675 struct dpll
*clock
= &crtc
->config
.dpll
;
4677 i9xx_update_pll_dividers(crtc
, reduced_clock
);
4679 dpll
= DPLL_VGA_MODE_DIS
;
4681 if (intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_LVDS
)) {
4682 dpll
|= (1 << (clock
->p1
- 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT
;
4685 dpll
|= PLL_P1_DIVIDE_BY_TWO
;
4687 dpll
|= (clock
->p1
- 2) << DPLL_FPA01_P1_POST_DIV_SHIFT
;
4689 dpll
|= PLL_P2_DIVIDE_BY_4
;
4692 if (intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_DVO
))
4693 dpll
|= DPLL_DVO_2X_MODE
;
4695 if (intel_pipe_has_type(&crtc
->base
, INTEL_OUTPUT_LVDS
) &&
4696 intel_panel_use_ssc(dev_priv
) && num_connectors
< 2)
4697 dpll
|= PLLB_REF_INPUT_SPREADSPECTRUMIN
;
4699 dpll
|= PLL_REF_INPUT_DREFCLK
;
4701 dpll
|= DPLL_VCO_ENABLE
;
4702 crtc
->config
.dpll_hw_state
.dpll
= dpll
;
4705 static void intel_set_pipe_timings(struct intel_crtc
*intel_crtc
)
4707 struct drm_device
*dev
= intel_crtc
->base
.dev
;
4708 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4709 enum pipe pipe
= intel_crtc
->pipe
;
4710 enum transcoder cpu_transcoder
= intel_crtc
->config
.cpu_transcoder
;
4711 struct drm_display_mode
*adjusted_mode
=
4712 &intel_crtc
->config
.adjusted_mode
;
4713 struct drm_display_mode
*mode
= &intel_crtc
->config
.requested_mode
;
4714 uint32_t vsyncshift
, crtc_vtotal
, crtc_vblank_end
;
4716 /* We need to be careful not to changed the adjusted mode, for otherwise
4717 * the hw state checker will get angry at the mismatch. */
4718 crtc_vtotal
= adjusted_mode
->crtc_vtotal
;
4719 crtc_vblank_end
= adjusted_mode
->crtc_vblank_end
;
4721 if (!IS_GEN2(dev
) && adjusted_mode
->flags
& DRM_MODE_FLAG_INTERLACE
) {
4722 /* the chip adds 2 halflines automatically */
4724 crtc_vblank_end
-= 1;
4725 vsyncshift
= adjusted_mode
->crtc_hsync_start
4726 - adjusted_mode
->crtc_htotal
/ 2;
4731 if (INTEL_INFO(dev
)->gen
> 3)
4732 I915_WRITE(VSYNCSHIFT(cpu_transcoder
), vsyncshift
);
4734 I915_WRITE(HTOTAL(cpu_transcoder
),
4735 (adjusted_mode
->crtc_hdisplay
- 1) |
4736 ((adjusted_mode
->crtc_htotal
- 1) << 16));
4737 I915_WRITE(HBLANK(cpu_transcoder
),
4738 (adjusted_mode
->crtc_hblank_start
- 1) |
4739 ((adjusted_mode
->crtc_hblank_end
- 1) << 16));
4740 I915_WRITE(HSYNC(cpu_transcoder
),
4741 (adjusted_mode
->crtc_hsync_start
- 1) |
4742 ((adjusted_mode
->crtc_hsync_end
- 1) << 16));
4744 I915_WRITE(VTOTAL(cpu_transcoder
),
4745 (adjusted_mode
->crtc_vdisplay
- 1) |
4746 ((crtc_vtotal
- 1) << 16));
4747 I915_WRITE(VBLANK(cpu_transcoder
),
4748 (adjusted_mode
->crtc_vblank_start
- 1) |
4749 ((crtc_vblank_end
- 1) << 16));
4750 I915_WRITE(VSYNC(cpu_transcoder
),
4751 (adjusted_mode
->crtc_vsync_start
- 1) |
4752 ((adjusted_mode
->crtc_vsync_end
- 1) << 16));
4754 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
4755 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
4756 * documented on the DDI_FUNC_CTL register description, EDP Input Select
4758 if (IS_HASWELL(dev
) && cpu_transcoder
== TRANSCODER_EDP
&&
4759 (pipe
== PIPE_B
|| pipe
== PIPE_C
))
4760 I915_WRITE(VTOTAL(pipe
), I915_READ(VTOTAL(cpu_transcoder
)));
4762 /* pipesrc controls the size that is scaled from, which should
4763 * always be the user's requested size.
4765 I915_WRITE(PIPESRC(pipe
),
4766 ((mode
->hdisplay
- 1) << 16) | (mode
->vdisplay
- 1));
4769 static void intel_get_pipe_timings(struct intel_crtc
*crtc
,
4770 struct intel_crtc_config
*pipe_config
)
4772 struct drm_device
*dev
= crtc
->base
.dev
;
4773 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4774 enum transcoder cpu_transcoder
= pipe_config
->cpu_transcoder
;
4777 tmp
= I915_READ(HTOTAL(cpu_transcoder
));
4778 pipe_config
->adjusted_mode
.crtc_hdisplay
= (tmp
& 0xffff) + 1;
4779 pipe_config
->adjusted_mode
.crtc_htotal
= ((tmp
>> 16) & 0xffff) + 1;
4780 tmp
= I915_READ(HBLANK(cpu_transcoder
));
4781 pipe_config
->adjusted_mode
.crtc_hblank_start
= (tmp
& 0xffff) + 1;
4782 pipe_config
->adjusted_mode
.crtc_hblank_end
= ((tmp
>> 16) & 0xffff) + 1;
4783 tmp
= I915_READ(HSYNC(cpu_transcoder
));
4784 pipe_config
->adjusted_mode
.crtc_hsync_start
= (tmp
& 0xffff) + 1;
4785 pipe_config
->adjusted_mode
.crtc_hsync_end
= ((tmp
>> 16) & 0xffff) + 1;
4787 tmp
= I915_READ(VTOTAL(cpu_transcoder
));
4788 pipe_config
->adjusted_mode
.crtc_vdisplay
= (tmp
& 0xffff) + 1;
4789 pipe_config
->adjusted_mode
.crtc_vtotal
= ((tmp
>> 16) & 0xffff) + 1;
4790 tmp
= I915_READ(VBLANK(cpu_transcoder
));
4791 pipe_config
->adjusted_mode
.crtc_vblank_start
= (tmp
& 0xffff) + 1;
4792 pipe_config
->adjusted_mode
.crtc_vblank_end
= ((tmp
>> 16) & 0xffff) + 1;
4793 tmp
= I915_READ(VSYNC(cpu_transcoder
));
4794 pipe_config
->adjusted_mode
.crtc_vsync_start
= (tmp
& 0xffff) + 1;
4795 pipe_config
->adjusted_mode
.crtc_vsync_end
= ((tmp
>> 16) & 0xffff) + 1;
4797 if (I915_READ(PIPECONF(cpu_transcoder
)) & PIPECONF_INTERLACE_MASK
) {
4798 pipe_config
->adjusted_mode
.flags
|= DRM_MODE_FLAG_INTERLACE
;
4799 pipe_config
->adjusted_mode
.crtc_vtotal
+= 1;
4800 pipe_config
->adjusted_mode
.crtc_vblank_end
+= 1;
4803 tmp
= I915_READ(PIPESRC(crtc
->pipe
));
4804 pipe_config
->requested_mode
.vdisplay
= (tmp
& 0xffff) + 1;
4805 pipe_config
->requested_mode
.hdisplay
= ((tmp
>> 16) & 0xffff) + 1;
4808 static void intel_crtc_mode_from_pipe_config(struct intel_crtc
*intel_crtc
,
4809 struct intel_crtc_config
*pipe_config
)
4811 struct drm_crtc
*crtc
= &intel_crtc
->base
;
4813 crtc
->mode
.hdisplay
= pipe_config
->adjusted_mode
.crtc_hdisplay
;
4814 crtc
->mode
.htotal
= pipe_config
->adjusted_mode
.crtc_htotal
;
4815 crtc
->mode
.hsync_start
= pipe_config
->adjusted_mode
.crtc_hsync_start
;
4816 crtc
->mode
.hsync_end
= pipe_config
->adjusted_mode
.crtc_hsync_end
;
4818 crtc
->mode
.vdisplay
= pipe_config
->adjusted_mode
.crtc_vdisplay
;
4819 crtc
->mode
.vtotal
= pipe_config
->adjusted_mode
.crtc_vtotal
;
4820 crtc
->mode
.vsync_start
= pipe_config
->adjusted_mode
.crtc_vsync_start
;
4821 crtc
->mode
.vsync_end
= pipe_config
->adjusted_mode
.crtc_vsync_end
;
4823 crtc
->mode
.flags
= pipe_config
->adjusted_mode
.flags
;
4825 crtc
->mode
.clock
= pipe_config
->adjusted_mode
.clock
;
4826 crtc
->mode
.flags
|= pipe_config
->adjusted_mode
.flags
;
4829 static void i9xx_set_pipeconf(struct intel_crtc
*intel_crtc
)
4831 struct drm_device
*dev
= intel_crtc
->base
.dev
;
4832 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4837 if (dev_priv
->quirks
& QUIRK_PIPEA_FORCE
&&
4838 I915_READ(PIPECONF(intel_crtc
->pipe
)) & PIPECONF_ENABLE
)
4839 pipeconf
|= PIPECONF_ENABLE
;
4841 if (intel_crtc
->pipe
== 0 && INTEL_INFO(dev
)->gen
< 4) {
4842 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4845 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4848 if (intel_crtc
->config
.requested_mode
.clock
>
4849 dev_priv
->display
.get_display_clock_speed(dev
) * 9 / 10)
4850 pipeconf
|= PIPECONF_DOUBLE_WIDE
;
4853 /* only g4x and later have fancy bpc/dither controls */
4854 if (IS_G4X(dev
) || IS_VALLEYVIEW(dev
)) {
4855 /* Bspec claims that we can't use dithering for 30bpp pipes. */
4856 if (intel_crtc
->config
.dither
&& intel_crtc
->config
.pipe_bpp
!= 30)
4857 pipeconf
|= PIPECONF_DITHER_EN
|
4858 PIPECONF_DITHER_TYPE_SP
;
4860 switch (intel_crtc
->config
.pipe_bpp
) {
4862 pipeconf
|= PIPECONF_6BPC
;
4865 pipeconf
|= PIPECONF_8BPC
;
4868 pipeconf
|= PIPECONF_10BPC
;
4871 /* Case prevented by intel_choose_pipe_bpp_dither. */
4876 if (HAS_PIPE_CXSR(dev
)) {
4877 if (intel_crtc
->lowfreq_avail
) {
4878 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4879 pipeconf
|= PIPECONF_CXSR_DOWNCLOCK
;
4881 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4885 if (!IS_GEN2(dev
) &&
4886 intel_crtc
->config
.adjusted_mode
.flags
& DRM_MODE_FLAG_INTERLACE
)
4887 pipeconf
|= PIPECONF_INTERLACE_W_FIELD_INDICATION
;
4889 pipeconf
|= PIPECONF_PROGRESSIVE
;
4891 if (IS_VALLEYVIEW(dev
) && intel_crtc
->config
.limited_color_range
)
4892 pipeconf
|= PIPECONF_COLOR_RANGE_SELECT
;
4894 I915_WRITE(PIPECONF(intel_crtc
->pipe
), pipeconf
);
4895 POSTING_READ(PIPECONF(intel_crtc
->pipe
));
4898 static int i9xx_crtc_mode_set(struct drm_crtc
*crtc
,
4900 struct drm_framebuffer
*fb
)
4902 struct drm_device
*dev
= crtc
->dev
;
4903 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
4904 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
4905 struct drm_display_mode
*mode
= &intel_crtc
->config
.requested_mode
;
4906 int pipe
= intel_crtc
->pipe
;
4907 int plane
= intel_crtc
->plane
;
4908 int refclk
, num_connectors
= 0;
4909 intel_clock_t clock
, reduced_clock
;
4911 bool ok
, has_reduced_clock
= false;
4912 bool is_lvds
= false;
4913 struct intel_encoder
*encoder
;
4914 const intel_limit_t
*limit
;
4917 for_each_encoder_on_crtc(dev
, crtc
, encoder
) {
4918 switch (encoder
->type
) {
4919 case INTEL_OUTPUT_LVDS
:
4927 refclk
= i9xx_get_refclk(crtc
, num_connectors
);
4930 * Returns a set of divisors for the desired target clock with the given
4931 * refclk, or FALSE. The returned values represent the clock equation:
4932 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4934 limit
= intel_limit(crtc
, refclk
);
4935 ok
= dev_priv
->display
.find_dpll(limit
, crtc
,
4936 intel_crtc
->config
.port_clock
,
4937 refclk
, NULL
, &clock
);
4938 if (!ok
&& !intel_crtc
->config
.clock_set
) {
4939 DRM_ERROR("Couldn't find PLL settings for mode!\n");
4943 if (is_lvds
&& dev_priv
->lvds_downclock_avail
) {
4945 * Ensure we match the reduced clock's P to the target clock.
4946 * If the clocks don't match, we can't switch the display clock
4947 * by using the FP0/FP1. In such case we will disable the LVDS
4948 * downclock feature.
4951 dev_priv
->display
.find_dpll(limit
, crtc
,
4952 dev_priv
->lvds_downclock
,
4956 /* Compat-code for transition, will disappear. */
4957 if (!intel_crtc
->config
.clock_set
) {
4958 intel_crtc
->config
.dpll
.n
= clock
.n
;
4959 intel_crtc
->config
.dpll
.m1
= clock
.m1
;
4960 intel_crtc
->config
.dpll
.m2
= clock
.m2
;
4961 intel_crtc
->config
.dpll
.p1
= clock
.p1
;
4962 intel_crtc
->config
.dpll
.p2
= clock
.p2
;
4966 i8xx_update_pll(intel_crtc
,
4967 has_reduced_clock
? &reduced_clock
: NULL
,
4969 else if (IS_VALLEYVIEW(dev
))
4970 vlv_update_pll(intel_crtc
);
4972 i9xx_update_pll(intel_crtc
,
4973 has_reduced_clock
? &reduced_clock
: NULL
,
4976 /* Set up the display plane register */
4977 dspcntr
= DISPPLANE_GAMMA_ENABLE
;
4979 if (!IS_VALLEYVIEW(dev
)) {
4981 dspcntr
&= ~DISPPLANE_SEL_PIPE_MASK
;
4983 dspcntr
|= DISPPLANE_SEL_PIPE_B
;
4986 intel_set_pipe_timings(intel_crtc
);
4988 /* pipesrc and dspsize control the size that is scaled from,
4989 * which should always be the user's requested size.
4991 I915_WRITE(DSPSIZE(plane
),
4992 ((mode
->vdisplay
- 1) << 16) |
4993 (mode
->hdisplay
- 1));
4994 I915_WRITE(DSPPOS(plane
), 0);
4996 i9xx_set_pipeconf(intel_crtc
);
4998 I915_WRITE(DSPCNTR(plane
), dspcntr
);
4999 POSTING_READ(DSPCNTR(plane
));
5001 ret
= intel_pipe_set_base(crtc
, x
, y
, fb
);
5003 intel_update_watermarks(dev
);
5008 static void i9xx_get_pfit_config(struct intel_crtc
*crtc
,
5009 struct intel_crtc_config
*pipe_config
)
5011 struct drm_device
*dev
= crtc
->base
.dev
;
5012 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5015 tmp
= I915_READ(PFIT_CONTROL
);
5016 if (!(tmp
& PFIT_ENABLE
))
5019 /* Check whether the pfit is attached to our pipe. */
5020 if (INTEL_INFO(dev
)->gen
< 4) {
5021 if (crtc
->pipe
!= PIPE_B
)
5024 if ((tmp
& PFIT_PIPE_MASK
) != (crtc
->pipe
<< PFIT_PIPE_SHIFT
))
5028 pipe_config
->gmch_pfit
.control
= tmp
;
5029 pipe_config
->gmch_pfit
.pgm_ratios
= I915_READ(PFIT_PGM_RATIOS
);
5030 if (INTEL_INFO(dev
)->gen
< 5)
5031 pipe_config
->gmch_pfit
.lvds_border_bits
=
5032 I915_READ(LVDS
) & LVDS_BORDER_ENABLE
;
5035 static void vlv_crtc_clock_get(struct intel_crtc
*crtc
,
5036 struct intel_crtc_config
*pipe_config
)
5038 struct drm_device
*dev
= crtc
->base
.dev
;
5039 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5040 int pipe
= pipe_config
->cpu_transcoder
;
5041 intel_clock_t clock
;
5043 int refclk
= 100000;
5045 mutex_lock(&dev_priv
->dpio_lock
);
5046 mdiv
= vlv_dpio_read(dev_priv
, DPIO_DIV(pipe
));
5047 mutex_unlock(&dev_priv
->dpio_lock
);
5049 clock
.m1
= (mdiv
>> DPIO_M1DIV_SHIFT
) & 7;
5050 clock
.m2
= mdiv
& DPIO_M2DIV_MASK
;
5051 clock
.n
= (mdiv
>> DPIO_N_SHIFT
) & 0xf;
5052 clock
.p1
= (mdiv
>> DPIO_P1_SHIFT
) & 7;
5053 clock
.p2
= (mdiv
>> DPIO_P2_SHIFT
) & 0x1f;
5055 clock
.vco
= refclk
* clock
.m1
* clock
.m2
/ clock
.n
;
5056 clock
.dot
= 2 * clock
.vco
/ (clock
.p1
* clock
.p2
);
5058 pipe_config
->adjusted_mode
.clock
= clock
.dot
/ 10;
5061 static bool i9xx_get_pipe_config(struct intel_crtc
*crtc
,
5062 struct intel_crtc_config
*pipe_config
)
5064 struct drm_device
*dev
= crtc
->base
.dev
;
5065 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5068 pipe_config
->cpu_transcoder
= (enum transcoder
) crtc
->pipe
;
5069 pipe_config
->shared_dpll
= DPLL_ID_PRIVATE
;
5071 tmp
= I915_READ(PIPECONF(crtc
->pipe
));
5072 if (!(tmp
& PIPECONF_ENABLE
))
5075 if (IS_G4X(dev
) || IS_VALLEYVIEW(dev
)) {
5076 switch (tmp
& PIPECONF_BPC_MASK
) {
5078 pipe_config
->pipe_bpp
= 18;
5081 pipe_config
->pipe_bpp
= 24;
5083 case PIPECONF_10BPC
:
5084 pipe_config
->pipe_bpp
= 30;
5091 intel_get_pipe_timings(crtc
, pipe_config
);
5093 i9xx_get_pfit_config(crtc
, pipe_config
);
5095 if (INTEL_INFO(dev
)->gen
>= 4) {
5096 tmp
= I915_READ(DPLL_MD(crtc
->pipe
));
5097 pipe_config
->pixel_multiplier
=
5098 ((tmp
& DPLL_MD_UDI_MULTIPLIER_MASK
)
5099 >> DPLL_MD_UDI_MULTIPLIER_SHIFT
) + 1;
5100 pipe_config
->dpll_hw_state
.dpll_md
= tmp
;
5101 } else if (IS_I945G(dev
) || IS_I945GM(dev
) || IS_G33(dev
)) {
5102 tmp
= I915_READ(DPLL(crtc
->pipe
));
5103 pipe_config
->pixel_multiplier
=
5104 ((tmp
& SDVO_MULTIPLIER_MASK
)
5105 >> SDVO_MULTIPLIER_SHIFT_HIRES
) + 1;
5107 /* Note that on i915G/GM the pixel multiplier is in the sdvo
5108 * port and will be fixed up in the encoder->get_config
5110 pipe_config
->pixel_multiplier
= 1;
5112 pipe_config
->dpll_hw_state
.dpll
= I915_READ(DPLL(crtc
->pipe
));
5113 if (!IS_VALLEYVIEW(dev
)) {
5114 pipe_config
->dpll_hw_state
.fp0
= I915_READ(FP0(crtc
->pipe
));
5115 pipe_config
->dpll_hw_state
.fp1
= I915_READ(FP1(crtc
->pipe
));
5117 /* Mask out read-only status bits. */
5118 pipe_config
->dpll_hw_state
.dpll
&= ~(DPLL_LOCK_VLV
|
5119 DPLL_PORTC_READY_MASK
|
5120 DPLL_PORTB_READY_MASK
);
5126 static void ironlake_init_pch_refclk(struct drm_device
*dev
)
5128 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5129 struct drm_mode_config
*mode_config
= &dev
->mode_config
;
5130 struct intel_encoder
*encoder
;
5132 bool has_lvds
= false;
5133 bool has_cpu_edp
= false;
5134 bool has_panel
= false;
5135 bool has_ck505
= false;
5136 bool can_ssc
= false;
5138 /* We need to take the global config into account */
5139 list_for_each_entry(encoder
, &mode_config
->encoder_list
,
5141 switch (encoder
->type
) {
5142 case INTEL_OUTPUT_LVDS
:
5146 case INTEL_OUTPUT_EDP
:
5148 if (enc_to_dig_port(&encoder
->base
)->port
== PORT_A
)
5154 if (HAS_PCH_IBX(dev
)) {
5155 has_ck505
= dev_priv
->vbt
.display_clock_mode
;
5156 can_ssc
= has_ck505
;
5162 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
5163 has_panel
, has_lvds
, has_ck505
);
5165 /* Ironlake: try to setup display ref clock before DPLL
5166 * enabling. This is only under driver's control after
5167 * PCH B stepping, previous chipset stepping should be
5168 * ignoring this setting.
5170 val
= I915_READ(PCH_DREF_CONTROL
);
5172 /* As we must carefully and slowly disable/enable each source in turn,
5173 * compute the final state we want first and check if we need to
5174 * make any changes at all.
5177 final
&= ~DREF_NONSPREAD_SOURCE_MASK
;
5179 final
|= DREF_NONSPREAD_CK505_ENABLE
;
5181 final
|= DREF_NONSPREAD_SOURCE_ENABLE
;
5183 final
&= ~DREF_SSC_SOURCE_MASK
;
5184 final
&= ~DREF_CPU_SOURCE_OUTPUT_MASK
;
5185 final
&= ~DREF_SSC1_ENABLE
;
5188 final
|= DREF_SSC_SOURCE_ENABLE
;
5190 if (intel_panel_use_ssc(dev_priv
) && can_ssc
)
5191 final
|= DREF_SSC1_ENABLE
;
5194 if (intel_panel_use_ssc(dev_priv
) && can_ssc
)
5195 final
|= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD
;
5197 final
|= DREF_CPU_SOURCE_OUTPUT_NONSPREAD
;
5199 final
|= DREF_CPU_SOURCE_OUTPUT_DISABLE
;
5201 final
|= DREF_SSC_SOURCE_DISABLE
;
5202 final
|= DREF_CPU_SOURCE_OUTPUT_DISABLE
;
5208 /* Always enable nonspread source */
5209 val
&= ~DREF_NONSPREAD_SOURCE_MASK
;
5212 val
|= DREF_NONSPREAD_CK505_ENABLE
;
5214 val
|= DREF_NONSPREAD_SOURCE_ENABLE
;
5217 val
&= ~DREF_SSC_SOURCE_MASK
;
5218 val
|= DREF_SSC_SOURCE_ENABLE
;
5220 /* SSC must be turned on before enabling the CPU output */
5221 if (intel_panel_use_ssc(dev_priv
) && can_ssc
) {
5222 DRM_DEBUG_KMS("Using SSC on panel\n");
5223 val
|= DREF_SSC1_ENABLE
;
5225 val
&= ~DREF_SSC1_ENABLE
;
5227 /* Get SSC going before enabling the outputs */
5228 I915_WRITE(PCH_DREF_CONTROL
, val
);
5229 POSTING_READ(PCH_DREF_CONTROL
);
5232 val
&= ~DREF_CPU_SOURCE_OUTPUT_MASK
;
5234 /* Enable CPU source on CPU attached eDP */
5236 if (intel_panel_use_ssc(dev_priv
) && can_ssc
) {
5237 DRM_DEBUG_KMS("Using SSC on eDP\n");
5238 val
|= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD
;
5241 val
|= DREF_CPU_SOURCE_OUTPUT_NONSPREAD
;
5243 val
|= DREF_CPU_SOURCE_OUTPUT_DISABLE
;
5245 I915_WRITE(PCH_DREF_CONTROL
, val
);
5246 POSTING_READ(PCH_DREF_CONTROL
);
5249 DRM_DEBUG_KMS("Disabling SSC entirely\n");
5251 val
&= ~DREF_CPU_SOURCE_OUTPUT_MASK
;
5253 /* Turn off CPU output */
5254 val
|= DREF_CPU_SOURCE_OUTPUT_DISABLE
;
5256 I915_WRITE(PCH_DREF_CONTROL
, val
);
5257 POSTING_READ(PCH_DREF_CONTROL
);
5260 /* Turn off the SSC source */
5261 val
&= ~DREF_SSC_SOURCE_MASK
;
5262 val
|= DREF_SSC_SOURCE_DISABLE
;
5265 val
&= ~DREF_SSC1_ENABLE
;
5267 I915_WRITE(PCH_DREF_CONTROL
, val
);
5268 POSTING_READ(PCH_DREF_CONTROL
);
5272 BUG_ON(val
!= final
);
5275 static void lpt_reset_fdi_mphy(struct drm_i915_private
*dev_priv
)
5279 tmp
= I915_READ(SOUTH_CHICKEN2
);
5280 tmp
|= FDI_MPHY_IOSFSB_RESET_CTL
;
5281 I915_WRITE(SOUTH_CHICKEN2
, tmp
);
5283 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2
) &
5284 FDI_MPHY_IOSFSB_RESET_STATUS
, 100))
5285 DRM_ERROR("FDI mPHY reset assert timeout\n");
5287 tmp
= I915_READ(SOUTH_CHICKEN2
);
5288 tmp
&= ~FDI_MPHY_IOSFSB_RESET_CTL
;
5289 I915_WRITE(SOUTH_CHICKEN2
, tmp
);
5291 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2
) &
5292 FDI_MPHY_IOSFSB_RESET_STATUS
) == 0, 100))
5293 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
5296 /* WaMPhyProgramming:hsw */
5297 static void lpt_program_fdi_mphy(struct drm_i915_private
*dev_priv
)
5301 tmp
= intel_sbi_read(dev_priv
, 0x8008, SBI_MPHY
);
5302 tmp
&= ~(0xFF << 24);
5303 tmp
|= (0x12 << 24);
5304 intel_sbi_write(dev_priv
, 0x8008, tmp
, SBI_MPHY
);
5306 tmp
= intel_sbi_read(dev_priv
, 0x2008, SBI_MPHY
);
5308 intel_sbi_write(dev_priv
, 0x2008, tmp
, SBI_MPHY
);
5310 tmp
= intel_sbi_read(dev_priv
, 0x2108, SBI_MPHY
);
5312 intel_sbi_write(dev_priv
, 0x2108, tmp
, SBI_MPHY
);
5314 tmp
= intel_sbi_read(dev_priv
, 0x206C, SBI_MPHY
);
5315 tmp
|= (1 << 24) | (1 << 21) | (1 << 18);
5316 intel_sbi_write(dev_priv
, 0x206C, tmp
, SBI_MPHY
);
5318 tmp
= intel_sbi_read(dev_priv
, 0x216C, SBI_MPHY
);
5319 tmp
|= (1 << 24) | (1 << 21) | (1 << 18);
5320 intel_sbi_write(dev_priv
, 0x216C, tmp
, SBI_MPHY
);
5322 tmp
= intel_sbi_read(dev_priv
, 0x2080, SBI_MPHY
);
5325 intel_sbi_write(dev_priv
, 0x2080, tmp
, SBI_MPHY
);
5327 tmp
= intel_sbi_read(dev_priv
, 0x2180, SBI_MPHY
);
5330 intel_sbi_write(dev_priv
, 0x2180, tmp
, SBI_MPHY
);
5332 tmp
= intel_sbi_read(dev_priv
, 0x208C, SBI_MPHY
);
5335 intel_sbi_write(dev_priv
, 0x208C, tmp
, SBI_MPHY
);
5337 tmp
= intel_sbi_read(dev_priv
, 0x218C, SBI_MPHY
);
5340 intel_sbi_write(dev_priv
, 0x218C, tmp
, SBI_MPHY
);
5342 tmp
= intel_sbi_read(dev_priv
, 0x2098, SBI_MPHY
);
5343 tmp
&= ~(0xFF << 16);
5344 tmp
|= (0x1C << 16);
5345 intel_sbi_write(dev_priv
, 0x2098, tmp
, SBI_MPHY
);
5347 tmp
= intel_sbi_read(dev_priv
, 0x2198, SBI_MPHY
);
5348 tmp
&= ~(0xFF << 16);
5349 tmp
|= (0x1C << 16);
5350 intel_sbi_write(dev_priv
, 0x2198, tmp
, SBI_MPHY
);
5352 tmp
= intel_sbi_read(dev_priv
, 0x20C4, SBI_MPHY
);
5354 intel_sbi_write(dev_priv
, 0x20C4, tmp
, SBI_MPHY
);
5356 tmp
= intel_sbi_read(dev_priv
, 0x21C4, SBI_MPHY
);
5358 intel_sbi_write(dev_priv
, 0x21C4, tmp
, SBI_MPHY
);
5360 tmp
= intel_sbi_read(dev_priv
, 0x20EC, SBI_MPHY
);
5361 tmp
&= ~(0xF << 28);
5363 intel_sbi_write(dev_priv
, 0x20EC, tmp
, SBI_MPHY
);
5365 tmp
= intel_sbi_read(dev_priv
, 0x21EC, SBI_MPHY
);
5366 tmp
&= ~(0xF << 28);
5368 intel_sbi_write(dev_priv
, 0x21EC, tmp
, SBI_MPHY
);
5371 /* Implements 3 different sequences from BSpec chapter "Display iCLK
5372 * Programming" based on the parameters passed:
5373 * - Sequence to enable CLKOUT_DP
5374 * - Sequence to enable CLKOUT_DP without spread
5375 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
5377 static void lpt_enable_clkout_dp(struct drm_device
*dev
, bool with_spread
,
5380 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5383 if (WARN(with_fdi
&& !with_spread
, "FDI requires downspread\n"))
5385 if (WARN(dev_priv
->pch_id
== INTEL_PCH_LPT_LP_DEVICE_ID_TYPE
&&
5386 with_fdi
, "LP PCH doesn't have FDI\n"))
5389 mutex_lock(&dev_priv
->dpio_lock
);
5391 tmp
= intel_sbi_read(dev_priv
, SBI_SSCCTL
, SBI_ICLK
);
5392 tmp
&= ~SBI_SSCCTL_DISABLE
;
5393 tmp
|= SBI_SSCCTL_PATHALT
;
5394 intel_sbi_write(dev_priv
, SBI_SSCCTL
, tmp
, SBI_ICLK
);
5399 tmp
= intel_sbi_read(dev_priv
, SBI_SSCCTL
, SBI_ICLK
);
5400 tmp
&= ~SBI_SSCCTL_PATHALT
;
5401 intel_sbi_write(dev_priv
, SBI_SSCCTL
, tmp
, SBI_ICLK
);
5404 lpt_reset_fdi_mphy(dev_priv
);
5405 lpt_program_fdi_mphy(dev_priv
);
5409 reg
= (dev_priv
->pch_id
== INTEL_PCH_LPT_LP_DEVICE_ID_TYPE
) ?
5410 SBI_GEN0
: SBI_DBUFF0
;
5411 tmp
= intel_sbi_read(dev_priv
, reg
, SBI_ICLK
);
5412 tmp
|= SBI_GEN0_CFG_BUFFENABLE_DISABLE
;
5413 intel_sbi_write(dev_priv
, reg
, tmp
, SBI_ICLK
);
5415 mutex_unlock(&dev_priv
->dpio_lock
);
5418 /* Sequence to disable CLKOUT_DP */
5419 static void lpt_disable_clkout_dp(struct drm_device
*dev
)
5421 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5424 mutex_lock(&dev_priv
->dpio_lock
);
5426 reg
= (dev_priv
->pch_id
== INTEL_PCH_LPT_LP_DEVICE_ID_TYPE
) ?
5427 SBI_GEN0
: SBI_DBUFF0
;
5428 tmp
= intel_sbi_read(dev_priv
, reg
, SBI_ICLK
);
5429 tmp
&= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE
;
5430 intel_sbi_write(dev_priv
, reg
, tmp
, SBI_ICLK
);
5432 tmp
= intel_sbi_read(dev_priv
, SBI_SSCCTL
, SBI_ICLK
);
5433 if (!(tmp
& SBI_SSCCTL_DISABLE
)) {
5434 if (!(tmp
& SBI_SSCCTL_PATHALT
)) {
5435 tmp
|= SBI_SSCCTL_PATHALT
;
5436 intel_sbi_write(dev_priv
, SBI_SSCCTL
, tmp
, SBI_ICLK
);
5439 tmp
|= SBI_SSCCTL_DISABLE
;
5440 intel_sbi_write(dev_priv
, SBI_SSCCTL
, tmp
, SBI_ICLK
);
5443 mutex_unlock(&dev_priv
->dpio_lock
);
5446 static void lpt_init_pch_refclk(struct drm_device
*dev
)
5448 struct drm_mode_config
*mode_config
= &dev
->mode_config
;
5449 struct intel_encoder
*encoder
;
5450 bool has_vga
= false;
5452 list_for_each_entry(encoder
, &mode_config
->encoder_list
, base
.head
) {
5453 switch (encoder
->type
) {
5454 case INTEL_OUTPUT_ANALOG
:
5461 lpt_enable_clkout_dp(dev
, true, true);
5463 lpt_disable_clkout_dp(dev
);
5467 * Initialize reference clocks when the driver loads
5469 void intel_init_pch_refclk(struct drm_device
*dev
)
5471 if (HAS_PCH_IBX(dev
) || HAS_PCH_CPT(dev
))
5472 ironlake_init_pch_refclk(dev
);
5473 else if (HAS_PCH_LPT(dev
))
5474 lpt_init_pch_refclk(dev
);
5477 static int ironlake_get_refclk(struct drm_crtc
*crtc
)
5479 struct drm_device
*dev
= crtc
->dev
;
5480 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5481 struct intel_encoder
*encoder
;
5482 int num_connectors
= 0;
5483 bool is_lvds
= false;
5485 for_each_encoder_on_crtc(dev
, crtc
, encoder
) {
5486 switch (encoder
->type
) {
5487 case INTEL_OUTPUT_LVDS
:
5494 if (is_lvds
&& intel_panel_use_ssc(dev_priv
) && num_connectors
< 2) {
5495 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
5496 dev_priv
->vbt
.lvds_ssc_freq
);
5497 return dev_priv
->vbt
.lvds_ssc_freq
* 1000;
5503 static void ironlake_set_pipeconf(struct drm_crtc
*crtc
)
5505 struct drm_i915_private
*dev_priv
= crtc
->dev
->dev_private
;
5506 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5507 int pipe
= intel_crtc
->pipe
;
5512 switch (intel_crtc
->config
.pipe_bpp
) {
5514 val
|= PIPECONF_6BPC
;
5517 val
|= PIPECONF_8BPC
;
5520 val
|= PIPECONF_10BPC
;
5523 val
|= PIPECONF_12BPC
;
5526 /* Case prevented by intel_choose_pipe_bpp_dither. */
5530 if (intel_crtc
->config
.dither
)
5531 val
|= (PIPECONF_DITHER_EN
| PIPECONF_DITHER_TYPE_SP
);
5533 if (intel_crtc
->config
.adjusted_mode
.flags
& DRM_MODE_FLAG_INTERLACE
)
5534 val
|= PIPECONF_INTERLACED_ILK
;
5536 val
|= PIPECONF_PROGRESSIVE
;
5538 if (intel_crtc
->config
.limited_color_range
)
5539 val
|= PIPECONF_COLOR_RANGE_SELECT
;
5541 I915_WRITE(PIPECONF(pipe
), val
);
5542 POSTING_READ(PIPECONF(pipe
));
5546 * Set up the pipe CSC unit.
5548 * Currently only full range RGB to limited range RGB conversion
5549 * is supported, but eventually this should handle various
5550 * RGB<->YCbCr scenarios as well.
5552 static void intel_set_pipe_csc(struct drm_crtc
*crtc
)
5554 struct drm_device
*dev
= crtc
->dev
;
5555 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5556 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5557 int pipe
= intel_crtc
->pipe
;
5558 uint16_t coeff
= 0x7800; /* 1.0 */
5561 * TODO: Check what kind of values actually come out of the pipe
5562 * with these coeff/postoff values and adjust to get the best
5563 * accuracy. Perhaps we even need to take the bpc value into
5567 if (intel_crtc
->config
.limited_color_range
)
5568 coeff
= ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
5571 * GY/GU and RY/RU should be the other way around according
5572 * to BSpec, but reality doesn't agree. Just set them up in
5573 * a way that results in the correct picture.
5575 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe
), coeff
<< 16);
5576 I915_WRITE(PIPE_CSC_COEFF_BY(pipe
), 0);
5578 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe
), coeff
);
5579 I915_WRITE(PIPE_CSC_COEFF_BU(pipe
), 0);
5581 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe
), 0);
5582 I915_WRITE(PIPE_CSC_COEFF_BV(pipe
), coeff
<< 16);
5584 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe
), 0);
5585 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe
), 0);
5586 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe
), 0);
5588 if (INTEL_INFO(dev
)->gen
> 6) {
5589 uint16_t postoff
= 0;
5591 if (intel_crtc
->config
.limited_color_range
)
5592 postoff
= (16 * (1 << 12) / 255) & 0x1fff;
5594 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe
), postoff
);
5595 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe
), postoff
);
5596 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe
), postoff
);
5598 I915_WRITE(PIPE_CSC_MODE(pipe
), 0);
5600 uint32_t mode
= CSC_MODE_YUV_TO_RGB
;
5602 if (intel_crtc
->config
.limited_color_range
)
5603 mode
|= CSC_BLACK_SCREEN_OFFSET
;
5605 I915_WRITE(PIPE_CSC_MODE(pipe
), mode
);
5609 static void haswell_set_pipeconf(struct drm_crtc
*crtc
)
5611 struct drm_i915_private
*dev_priv
= crtc
->dev
->dev_private
;
5612 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5613 enum transcoder cpu_transcoder
= intel_crtc
->config
.cpu_transcoder
;
5618 if (intel_crtc
->config
.dither
)
5619 val
|= (PIPECONF_DITHER_EN
| PIPECONF_DITHER_TYPE_SP
);
5621 if (intel_crtc
->config
.adjusted_mode
.flags
& DRM_MODE_FLAG_INTERLACE
)
5622 val
|= PIPECONF_INTERLACED_ILK
;
5624 val
|= PIPECONF_PROGRESSIVE
;
5626 I915_WRITE(PIPECONF(cpu_transcoder
), val
);
5627 POSTING_READ(PIPECONF(cpu_transcoder
));
5629 I915_WRITE(GAMMA_MODE(intel_crtc
->pipe
), GAMMA_MODE_MODE_8BIT
);
5630 POSTING_READ(GAMMA_MODE(intel_crtc
->pipe
));
5633 static bool ironlake_compute_clocks(struct drm_crtc
*crtc
,
5634 intel_clock_t
*clock
,
5635 bool *has_reduced_clock
,
5636 intel_clock_t
*reduced_clock
)
5638 struct drm_device
*dev
= crtc
->dev
;
5639 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5640 struct intel_encoder
*intel_encoder
;
5642 const intel_limit_t
*limit
;
5643 bool ret
, is_lvds
= false;
5645 for_each_encoder_on_crtc(dev
, crtc
, intel_encoder
) {
5646 switch (intel_encoder
->type
) {
5647 case INTEL_OUTPUT_LVDS
:
5653 refclk
= ironlake_get_refclk(crtc
);
5656 * Returns a set of divisors for the desired target clock with the given
5657 * refclk, or FALSE. The returned values represent the clock equation:
5658 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
5660 limit
= intel_limit(crtc
, refclk
);
5661 ret
= dev_priv
->display
.find_dpll(limit
, crtc
,
5662 to_intel_crtc(crtc
)->config
.port_clock
,
5663 refclk
, NULL
, clock
);
5667 if (is_lvds
&& dev_priv
->lvds_downclock_avail
) {
5669 * Ensure we match the reduced clock's P to the target clock.
5670 * If the clocks don't match, we can't switch the display clock
5671 * by using the FP0/FP1. In such case we will disable the LVDS
5672 * downclock feature.
5674 *has_reduced_clock
=
5675 dev_priv
->display
.find_dpll(limit
, crtc
,
5676 dev_priv
->lvds_downclock
,
5684 int ironlake_get_lanes_required(int target_clock
, int link_bw
, int bpp
)
5687 * Account for spread spectrum to avoid
5688 * oversubscribing the link. Max center spread
5689 * is 2.5%; use 5% for safety's sake.
5691 u32 bps
= target_clock
* bpp
* 21 / 20;
5692 return bps
/ (link_bw
* 8) + 1;
5695 static bool ironlake_needs_fb_cb_tune(struct dpll
*dpll
, int factor
)
5697 return i9xx_dpll_compute_m(dpll
) < factor
* dpll
->n
;
5700 static uint32_t ironlake_compute_dpll(struct intel_crtc
*intel_crtc
,
5702 intel_clock_t
*reduced_clock
, u32
*fp2
)
5704 struct drm_crtc
*crtc
= &intel_crtc
->base
;
5705 struct drm_device
*dev
= crtc
->dev
;
5706 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5707 struct intel_encoder
*intel_encoder
;
5709 int factor
, num_connectors
= 0;
5710 bool is_lvds
= false, is_sdvo
= false;
5712 for_each_encoder_on_crtc(dev
, crtc
, intel_encoder
) {
5713 switch (intel_encoder
->type
) {
5714 case INTEL_OUTPUT_LVDS
:
5717 case INTEL_OUTPUT_SDVO
:
5718 case INTEL_OUTPUT_HDMI
:
5726 /* Enable autotuning of the PLL clock (if permissible) */
5729 if ((intel_panel_use_ssc(dev_priv
) &&
5730 dev_priv
->vbt
.lvds_ssc_freq
== 100) ||
5731 (HAS_PCH_IBX(dev
) && intel_is_dual_link_lvds(dev
)))
5733 } else if (intel_crtc
->config
.sdvo_tv_clock
)
5736 if (ironlake_needs_fb_cb_tune(&intel_crtc
->config
.dpll
, factor
))
5739 if (fp2
&& (reduced_clock
->m
< factor
* reduced_clock
->n
))
5745 dpll
|= DPLLB_MODE_LVDS
;
5747 dpll
|= DPLLB_MODE_DAC_SERIAL
;
5749 dpll
|= (intel_crtc
->config
.pixel_multiplier
- 1)
5750 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT
;
5753 dpll
|= DPLL_SDVO_HIGH_SPEED
;
5754 if (intel_crtc
->config
.has_dp_encoder
)
5755 dpll
|= DPLL_SDVO_HIGH_SPEED
;
5757 /* compute bitmask from p1 value */
5758 dpll
|= (1 << (intel_crtc
->config
.dpll
.p1
- 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT
;
5760 dpll
|= (1 << (intel_crtc
->config
.dpll
.p1
- 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT
;
5762 switch (intel_crtc
->config
.dpll
.p2
) {
5764 dpll
|= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5
;
5767 dpll
|= DPLLB_LVDS_P2_CLOCK_DIV_7
;
5770 dpll
|= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10
;
5773 dpll
|= DPLLB_LVDS_P2_CLOCK_DIV_14
;
5777 if (is_lvds
&& intel_panel_use_ssc(dev_priv
) && num_connectors
< 2)
5778 dpll
|= PLLB_REF_INPUT_SPREADSPECTRUMIN
;
5780 dpll
|= PLL_REF_INPUT_DREFCLK
;
5782 return dpll
| DPLL_VCO_ENABLE
;
5785 static int ironlake_crtc_mode_set(struct drm_crtc
*crtc
,
5787 struct drm_framebuffer
*fb
)
5789 struct drm_device
*dev
= crtc
->dev
;
5790 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5791 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5792 int pipe
= intel_crtc
->pipe
;
5793 int plane
= intel_crtc
->plane
;
5794 int num_connectors
= 0;
5795 intel_clock_t clock
, reduced_clock
;
5796 u32 dpll
= 0, fp
= 0, fp2
= 0;
5797 bool ok
, has_reduced_clock
= false;
5798 bool is_lvds
= false;
5799 struct intel_encoder
*encoder
;
5800 struct intel_shared_dpll
*pll
;
5803 for_each_encoder_on_crtc(dev
, crtc
, encoder
) {
5804 switch (encoder
->type
) {
5805 case INTEL_OUTPUT_LVDS
:
5813 WARN(!(HAS_PCH_IBX(dev
) || HAS_PCH_CPT(dev
)),
5814 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev
));
5816 ok
= ironlake_compute_clocks(crtc
, &clock
,
5817 &has_reduced_clock
, &reduced_clock
);
5818 if (!ok
&& !intel_crtc
->config
.clock_set
) {
5819 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5822 /* Compat-code for transition, will disappear. */
5823 if (!intel_crtc
->config
.clock_set
) {
5824 intel_crtc
->config
.dpll
.n
= clock
.n
;
5825 intel_crtc
->config
.dpll
.m1
= clock
.m1
;
5826 intel_crtc
->config
.dpll
.m2
= clock
.m2
;
5827 intel_crtc
->config
.dpll
.p1
= clock
.p1
;
5828 intel_crtc
->config
.dpll
.p2
= clock
.p2
;
5831 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
5832 if (intel_crtc
->config
.has_pch_encoder
) {
5833 fp
= i9xx_dpll_compute_fp(&intel_crtc
->config
.dpll
);
5834 if (has_reduced_clock
)
5835 fp2
= i9xx_dpll_compute_fp(&reduced_clock
);
5837 dpll
= ironlake_compute_dpll(intel_crtc
,
5838 &fp
, &reduced_clock
,
5839 has_reduced_clock
? &fp2
: NULL
);
5841 intel_crtc
->config
.dpll_hw_state
.dpll
= dpll
;
5842 intel_crtc
->config
.dpll_hw_state
.fp0
= fp
;
5843 if (has_reduced_clock
)
5844 intel_crtc
->config
.dpll_hw_state
.fp1
= fp2
;
5846 intel_crtc
->config
.dpll_hw_state
.fp1
= fp
;
5848 pll
= intel_get_shared_dpll(intel_crtc
);
5850 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
5855 intel_put_shared_dpll(intel_crtc
);
5857 if (intel_crtc
->config
.has_dp_encoder
)
5858 intel_dp_set_m_n(intel_crtc
);
5860 if (is_lvds
&& has_reduced_clock
&& i915_powersave
)
5861 intel_crtc
->lowfreq_avail
= true;
5863 intel_crtc
->lowfreq_avail
= false;
5865 if (intel_crtc
->config
.has_pch_encoder
) {
5866 pll
= intel_crtc_to_shared_dpll(intel_crtc
);
5870 intel_set_pipe_timings(intel_crtc
);
5872 if (intel_crtc
->config
.has_pch_encoder
) {
5873 intel_cpu_transcoder_set_m_n(intel_crtc
,
5874 &intel_crtc
->config
.fdi_m_n
);
5877 ironlake_set_pipeconf(crtc
);
5879 /* Set up the display plane register */
5880 I915_WRITE(DSPCNTR(plane
), DISPPLANE_GAMMA_ENABLE
);
5881 POSTING_READ(DSPCNTR(plane
));
5883 ret
= intel_pipe_set_base(crtc
, x
, y
, fb
);
5885 intel_update_watermarks(dev
);
5890 static void ironlake_get_fdi_m_n_config(struct intel_crtc
*crtc
,
5891 struct intel_crtc_config
*pipe_config
)
5893 struct drm_device
*dev
= crtc
->base
.dev
;
5894 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5895 enum transcoder transcoder
= pipe_config
->cpu_transcoder
;
5897 pipe_config
->fdi_m_n
.link_m
= I915_READ(PIPE_LINK_M1(transcoder
));
5898 pipe_config
->fdi_m_n
.link_n
= I915_READ(PIPE_LINK_N1(transcoder
));
5899 pipe_config
->fdi_m_n
.gmch_m
= I915_READ(PIPE_DATA_M1(transcoder
))
5901 pipe_config
->fdi_m_n
.gmch_n
= I915_READ(PIPE_DATA_N1(transcoder
));
5902 pipe_config
->fdi_m_n
.tu
= ((I915_READ(PIPE_DATA_M1(transcoder
))
5903 & TU_SIZE_MASK
) >> TU_SIZE_SHIFT
) + 1;
5906 static void ironlake_get_pfit_config(struct intel_crtc
*crtc
,
5907 struct intel_crtc_config
*pipe_config
)
5909 struct drm_device
*dev
= crtc
->base
.dev
;
5910 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5913 tmp
= I915_READ(PF_CTL(crtc
->pipe
));
5915 if (tmp
& PF_ENABLE
) {
5916 pipe_config
->pch_pfit
.enabled
= true;
5917 pipe_config
->pch_pfit
.pos
= I915_READ(PF_WIN_POS(crtc
->pipe
));
5918 pipe_config
->pch_pfit
.size
= I915_READ(PF_WIN_SZ(crtc
->pipe
));
5920 /* We currently do not free assignements of panel fitters on
5921 * ivb/hsw (since we don't use the higher upscaling modes which
5922 * differentiates them) so just WARN about this case for now. */
5924 WARN_ON((tmp
& PF_PIPE_SEL_MASK_IVB
) !=
5925 PF_PIPE_SEL_IVB(crtc
->pipe
));
5930 static bool ironlake_get_pipe_config(struct intel_crtc
*crtc
,
5931 struct intel_crtc_config
*pipe_config
)
5933 struct drm_device
*dev
= crtc
->base
.dev
;
5934 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
5937 pipe_config
->cpu_transcoder
= (enum transcoder
) crtc
->pipe
;
5938 pipe_config
->shared_dpll
= DPLL_ID_PRIVATE
;
5940 tmp
= I915_READ(PIPECONF(crtc
->pipe
));
5941 if (!(tmp
& PIPECONF_ENABLE
))
5944 switch (tmp
& PIPECONF_BPC_MASK
) {
5946 pipe_config
->pipe_bpp
= 18;
5949 pipe_config
->pipe_bpp
= 24;
5951 case PIPECONF_10BPC
:
5952 pipe_config
->pipe_bpp
= 30;
5954 case PIPECONF_12BPC
:
5955 pipe_config
->pipe_bpp
= 36;
5961 if (I915_READ(PCH_TRANSCONF(crtc
->pipe
)) & TRANS_ENABLE
) {
5962 struct intel_shared_dpll
*pll
;
5964 pipe_config
->has_pch_encoder
= true;
5966 tmp
= I915_READ(FDI_RX_CTL(crtc
->pipe
));
5967 pipe_config
->fdi_lanes
= ((FDI_DP_PORT_WIDTH_MASK
& tmp
) >>
5968 FDI_DP_PORT_WIDTH_SHIFT
) + 1;
5970 ironlake_get_fdi_m_n_config(crtc
, pipe_config
);
5972 if (HAS_PCH_IBX(dev_priv
->dev
)) {
5973 pipe_config
->shared_dpll
=
5974 (enum intel_dpll_id
) crtc
->pipe
;
5976 tmp
= I915_READ(PCH_DPLL_SEL
);
5977 if (tmp
& TRANS_DPLLB_SEL(crtc
->pipe
))
5978 pipe_config
->shared_dpll
= DPLL_ID_PCH_PLL_B
;
5980 pipe_config
->shared_dpll
= DPLL_ID_PCH_PLL_A
;
5983 pll
= &dev_priv
->shared_dplls
[pipe_config
->shared_dpll
];
5985 WARN_ON(!pll
->get_hw_state(dev_priv
, pll
,
5986 &pipe_config
->dpll_hw_state
));
5988 tmp
= pipe_config
->dpll_hw_state
.dpll
;
5989 pipe_config
->pixel_multiplier
=
5990 ((tmp
& PLL_REF_SDVO_HDMI_MULTIPLIER_MASK
)
5991 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT
) + 1;
5993 pipe_config
->pixel_multiplier
= 1;
5996 intel_get_pipe_timings(crtc
, pipe_config
);
5998 ironlake_get_pfit_config(crtc
, pipe_config
);
6003 static void assert_can_disable_lcpll(struct drm_i915_private
*dev_priv
)
6005 struct drm_device
*dev
= dev_priv
->dev
;
6006 struct intel_ddi_plls
*plls
= &dev_priv
->ddi_plls
;
6007 struct intel_crtc
*crtc
;
6008 unsigned long irqflags
;
6011 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, base
.head
)
6012 WARN(crtc
->active
, "CRTC for pipe %c enabled\n",
6013 pipe_name(crtc
->pipe
));
6015 WARN(I915_READ(HSW_PWR_WELL_DRIVER
), "Power well on\n");
6016 WARN(plls
->spll_refcount
, "SPLL enabled\n");
6017 WARN(plls
->wrpll1_refcount
, "WRPLL1 enabled\n");
6018 WARN(plls
->wrpll2_refcount
, "WRPLL2 enabled\n");
6019 WARN(I915_READ(PCH_PP_STATUS
) & PP_ON
, "Panel power on\n");
6020 WARN(I915_READ(BLC_PWM_CPU_CTL2
) & BLM_PWM_ENABLE
,
6021 "CPU PWM1 enabled\n");
6022 WARN(I915_READ(HSW_BLC_PWM2_CTL
) & BLM_PWM_ENABLE
,
6023 "CPU PWM2 enabled\n");
6024 WARN(I915_READ(BLC_PWM_PCH_CTL1
) & BLM_PCH_PWM_ENABLE
,
6025 "PCH PWM1 enabled\n");
6026 WARN(I915_READ(UTIL_PIN_CTL
) & UTIL_PIN_ENABLE
,
6027 "Utility pin enabled\n");
6028 WARN(I915_READ(PCH_GTC_CTL
) & PCH_GTC_ENABLE
, "PCH GTC enabled\n");
6030 spin_lock_irqsave(&dev_priv
->irq_lock
, irqflags
);
6031 val
= I915_READ(DEIMR
);
6032 WARN((val
& ~DE_PCH_EVENT_IVB
) != val
,
6033 "Unexpected DEIMR bits enabled: 0x%x\n", val
);
6034 val
= I915_READ(SDEIMR
);
6035 WARN((val
| SDE_HOTPLUG_MASK_CPT
) != 0xffffffff,
6036 "Unexpected SDEIMR bits enabled: 0x%x\n", val
);
6037 spin_unlock_irqrestore(&dev_priv
->irq_lock
, irqflags
);
6041 * This function implements pieces of two sequences from BSpec:
6042 * - Sequence for display software to disable LCPLL
6043 * - Sequence for display software to allow package C8+
6044 * The steps implemented here are just the steps that actually touch the LCPLL
6045 * register. Callers should take care of disabling all the display engine
6046 * functions, doing the mode unset, fixing interrupts, etc.
6048 void hsw_disable_lcpll(struct drm_i915_private
*dev_priv
,
6049 bool switch_to_fclk
, bool allow_power_down
)
6053 assert_can_disable_lcpll(dev_priv
);
6055 val
= I915_READ(LCPLL_CTL
);
6057 if (switch_to_fclk
) {
6058 val
|= LCPLL_CD_SOURCE_FCLK
;
6059 I915_WRITE(LCPLL_CTL
, val
);
6061 if (wait_for_atomic_us(I915_READ(LCPLL_CTL
) &
6062 LCPLL_CD_SOURCE_FCLK_DONE
, 1))
6063 DRM_ERROR("Switching to FCLK failed\n");
6065 val
= I915_READ(LCPLL_CTL
);
6068 val
|= LCPLL_PLL_DISABLE
;
6069 I915_WRITE(LCPLL_CTL
, val
);
6070 POSTING_READ(LCPLL_CTL
);
6072 if (wait_for((I915_READ(LCPLL_CTL
) & LCPLL_PLL_LOCK
) == 0, 1))
6073 DRM_ERROR("LCPLL still locked\n");
6075 val
= I915_READ(D_COMP
);
6076 val
|= D_COMP_COMP_DISABLE
;
6077 I915_WRITE(D_COMP
, val
);
6078 POSTING_READ(D_COMP
);
6081 if (wait_for((I915_READ(D_COMP
) & D_COMP_RCOMP_IN_PROGRESS
) == 0, 1))
6082 DRM_ERROR("D_COMP RCOMP still in progress\n");
6084 if (allow_power_down
) {
6085 val
= I915_READ(LCPLL_CTL
);
6086 val
|= LCPLL_POWER_DOWN_ALLOW
;
6087 I915_WRITE(LCPLL_CTL
, val
);
6088 POSTING_READ(LCPLL_CTL
);
6093 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
6096 void hsw_restore_lcpll(struct drm_i915_private
*dev_priv
)
6100 val
= I915_READ(LCPLL_CTL
);
6102 if ((val
& (LCPLL_PLL_LOCK
| LCPLL_PLL_DISABLE
| LCPLL_CD_SOURCE_FCLK
|
6103 LCPLL_POWER_DOWN_ALLOW
)) == LCPLL_PLL_LOCK
)
6106 /* Make sure we're not on PC8 state before disabling PC8, otherwise
6107 * we'll hang the machine! */
6108 gen6_gt_force_wake_get(dev_priv
);
6110 if (val
& LCPLL_POWER_DOWN_ALLOW
) {
6111 val
&= ~LCPLL_POWER_DOWN_ALLOW
;
6112 I915_WRITE(LCPLL_CTL
, val
);
6113 POSTING_READ(LCPLL_CTL
);
6116 val
= I915_READ(D_COMP
);
6117 val
|= D_COMP_COMP_FORCE
;
6118 val
&= ~D_COMP_COMP_DISABLE
;
6119 I915_WRITE(D_COMP
, val
);
6120 POSTING_READ(D_COMP
);
6122 val
= I915_READ(LCPLL_CTL
);
6123 val
&= ~LCPLL_PLL_DISABLE
;
6124 I915_WRITE(LCPLL_CTL
, val
);
6126 if (wait_for(I915_READ(LCPLL_CTL
) & LCPLL_PLL_LOCK
, 5))
6127 DRM_ERROR("LCPLL not locked yet\n");
6129 if (val
& LCPLL_CD_SOURCE_FCLK
) {
6130 val
= I915_READ(LCPLL_CTL
);
6131 val
&= ~LCPLL_CD_SOURCE_FCLK
;
6132 I915_WRITE(LCPLL_CTL
, val
);
6134 if (wait_for_atomic_us((I915_READ(LCPLL_CTL
) &
6135 LCPLL_CD_SOURCE_FCLK_DONE
) == 0, 1))
6136 DRM_ERROR("Switching back to LCPLL failed\n");
6139 gen6_gt_force_wake_put(dev_priv
);
6142 void hsw_enable_pc8_work(struct work_struct
*__work
)
6144 struct drm_i915_private
*dev_priv
=
6145 container_of(to_delayed_work(__work
), struct drm_i915_private
,
6147 struct drm_device
*dev
= dev_priv
->dev
;
6150 if (dev_priv
->pc8
.enabled
)
6153 DRM_DEBUG_KMS("Enabling package C8+\n");
6155 dev_priv
->pc8
.enabled
= true;
6157 if (dev_priv
->pch_id
== INTEL_PCH_LPT_LP_DEVICE_ID_TYPE
) {
6158 val
= I915_READ(SOUTH_DSPCLK_GATE_D
);
6159 val
&= ~PCH_LP_PARTITION_LEVEL_DISABLE
;
6160 I915_WRITE(SOUTH_DSPCLK_GATE_D
, val
);
6163 lpt_disable_clkout_dp(dev
);
6164 hsw_pc8_disable_interrupts(dev
);
6165 hsw_disable_lcpll(dev_priv
, true, true);
6168 static void __hsw_enable_package_c8(struct drm_i915_private
*dev_priv
)
6170 WARN_ON(!mutex_is_locked(&dev_priv
->pc8
.lock
));
6171 WARN(dev_priv
->pc8
.disable_count
< 1,
6172 "pc8.disable_count: %d\n", dev_priv
->pc8
.disable_count
);
6174 dev_priv
->pc8
.disable_count
--;
6175 if (dev_priv
->pc8
.disable_count
!= 0)
6178 schedule_delayed_work(&dev_priv
->pc8
.enable_work
,
6179 msecs_to_jiffies(i915_pc8_timeout
));
6182 static void __hsw_disable_package_c8(struct drm_i915_private
*dev_priv
)
6184 struct drm_device
*dev
= dev_priv
->dev
;
6187 WARN_ON(!mutex_is_locked(&dev_priv
->pc8
.lock
));
6188 WARN(dev_priv
->pc8
.disable_count
< 0,
6189 "pc8.disable_count: %d\n", dev_priv
->pc8
.disable_count
);
6191 dev_priv
->pc8
.disable_count
++;
6192 if (dev_priv
->pc8
.disable_count
!= 1)
6195 cancel_delayed_work_sync(&dev_priv
->pc8
.enable_work
);
6196 if (!dev_priv
->pc8
.enabled
)
6199 DRM_DEBUG_KMS("Disabling package C8+\n");
6201 hsw_restore_lcpll(dev_priv
);
6202 hsw_pc8_restore_interrupts(dev
);
6203 lpt_init_pch_refclk(dev
);
6205 if (dev_priv
->pch_id
== INTEL_PCH_LPT_LP_DEVICE_ID_TYPE
) {
6206 val
= I915_READ(SOUTH_DSPCLK_GATE_D
);
6207 val
|= PCH_LP_PARTITION_LEVEL_DISABLE
;
6208 I915_WRITE(SOUTH_DSPCLK_GATE_D
, val
);
6211 intel_prepare_ddi(dev
);
6212 i915_gem_init_swizzling(dev
);
6213 mutex_lock(&dev_priv
->rps
.hw_lock
);
6214 gen6_update_ring_freq(dev
);
6215 mutex_unlock(&dev_priv
->rps
.hw_lock
);
6216 dev_priv
->pc8
.enabled
= false;
6219 void hsw_enable_package_c8(struct drm_i915_private
*dev_priv
)
6221 mutex_lock(&dev_priv
->pc8
.lock
);
6222 __hsw_enable_package_c8(dev_priv
);
6223 mutex_unlock(&dev_priv
->pc8
.lock
);
6226 void hsw_disable_package_c8(struct drm_i915_private
*dev_priv
)
6228 mutex_lock(&dev_priv
->pc8
.lock
);
6229 __hsw_disable_package_c8(dev_priv
);
6230 mutex_unlock(&dev_priv
->pc8
.lock
);
6233 static bool hsw_can_enable_package_c8(struct drm_i915_private
*dev_priv
)
6235 struct drm_device
*dev
= dev_priv
->dev
;
6236 struct intel_crtc
*crtc
;
6239 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, base
.head
)
6240 if (crtc
->base
.enabled
)
6243 /* This case is still possible since we have the i915.disable_power_well
6244 * parameter and also the KVMr or something else might be requesting the
6246 val
= I915_READ(HSW_PWR_WELL_DRIVER
);
6248 DRM_DEBUG_KMS("Not enabling PC8: power well on\n");
6255 /* Since we're called from modeset_global_resources there's no way to
6256 * symmetrically increase and decrease the refcount, so we use
6257 * dev_priv->pc8.requirements_met to track whether we already have the refcount
6260 static void hsw_update_package_c8(struct drm_device
*dev
)
6262 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
6265 if (!i915_enable_pc8
)
6268 mutex_lock(&dev_priv
->pc8
.lock
);
6270 allow
= hsw_can_enable_package_c8(dev_priv
);
6272 if (allow
== dev_priv
->pc8
.requirements_met
)
6275 dev_priv
->pc8
.requirements_met
= allow
;
6278 __hsw_enable_package_c8(dev_priv
);
6280 __hsw_disable_package_c8(dev_priv
);
6283 mutex_unlock(&dev_priv
->pc8
.lock
);
6286 static void hsw_package_c8_gpu_idle(struct drm_i915_private
*dev_priv
)
6288 if (!dev_priv
->pc8
.gpu_idle
) {
6289 dev_priv
->pc8
.gpu_idle
= true;
6290 hsw_enable_package_c8(dev_priv
);
6294 static void hsw_package_c8_gpu_busy(struct drm_i915_private
*dev_priv
)
6296 if (dev_priv
->pc8
.gpu_idle
) {
6297 dev_priv
->pc8
.gpu_idle
= false;
6298 hsw_disable_package_c8(dev_priv
);
6302 static void haswell_modeset_global_resources(struct drm_device
*dev
)
6304 bool enable
= false;
6305 struct intel_crtc
*crtc
;
6307 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, base
.head
) {
6308 if (!crtc
->base
.enabled
)
6311 if (crtc
->pipe
!= PIPE_A
|| crtc
->config
.pch_pfit
.enabled
||
6312 crtc
->config
.cpu_transcoder
!= TRANSCODER_EDP
)
6316 intel_set_power_well(dev
, enable
);
6318 hsw_update_package_c8(dev
);
6321 static int haswell_crtc_mode_set(struct drm_crtc
*crtc
,
6323 struct drm_framebuffer
*fb
)
6325 struct drm_device
*dev
= crtc
->dev
;
6326 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
6327 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
6328 int plane
= intel_crtc
->plane
;
6331 if (!intel_ddi_pll_mode_set(crtc
))
6334 if (intel_crtc
->config
.has_dp_encoder
)
6335 intel_dp_set_m_n(intel_crtc
);
6337 intel_crtc
->lowfreq_avail
= false;
6339 intel_set_pipe_timings(intel_crtc
);
6341 if (intel_crtc
->config
.has_pch_encoder
) {
6342 intel_cpu_transcoder_set_m_n(intel_crtc
,
6343 &intel_crtc
->config
.fdi_m_n
);
6346 haswell_set_pipeconf(crtc
);
6348 intel_set_pipe_csc(crtc
);
6350 /* Set up the display plane register */
6351 I915_WRITE(DSPCNTR(plane
), DISPPLANE_GAMMA_ENABLE
| DISPPLANE_PIPE_CSC_ENABLE
);
6352 POSTING_READ(DSPCNTR(plane
));
6354 ret
= intel_pipe_set_base(crtc
, x
, y
, fb
);
6356 intel_update_watermarks(dev
);
6361 static bool haswell_get_pipe_config(struct intel_crtc
*crtc
,
6362 struct intel_crtc_config
*pipe_config
)
6364 struct drm_device
*dev
= crtc
->base
.dev
;
6365 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
6366 enum intel_display_power_domain pfit_domain
;
6369 pipe_config
->cpu_transcoder
= (enum transcoder
) crtc
->pipe
;
6370 pipe_config
->shared_dpll
= DPLL_ID_PRIVATE
;
6372 tmp
= I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP
));
6373 if (tmp
& TRANS_DDI_FUNC_ENABLE
) {
6374 enum pipe trans_edp_pipe
;
6375 switch (tmp
& TRANS_DDI_EDP_INPUT_MASK
) {
6377 WARN(1, "unknown pipe linked to edp transcoder\n");
6378 case TRANS_DDI_EDP_INPUT_A_ONOFF
:
6379 case TRANS_DDI_EDP_INPUT_A_ON
:
6380 trans_edp_pipe
= PIPE_A
;
6382 case TRANS_DDI_EDP_INPUT_B_ONOFF
:
6383 trans_edp_pipe
= PIPE_B
;
6385 case TRANS_DDI_EDP_INPUT_C_ONOFF
:
6386 trans_edp_pipe
= PIPE_C
;
6390 if (trans_edp_pipe
== crtc
->pipe
)
6391 pipe_config
->cpu_transcoder
= TRANSCODER_EDP
;
6394 if (!intel_display_power_enabled(dev
,
6395 POWER_DOMAIN_TRANSCODER(pipe_config
->cpu_transcoder
)))
6398 tmp
= I915_READ(PIPECONF(pipe_config
->cpu_transcoder
));
6399 if (!(tmp
& PIPECONF_ENABLE
))
6403 * Haswell has only FDI/PCH transcoder A. It is which is connected to
6404 * DDI E. So just check whether this pipe is wired to DDI E and whether
6405 * the PCH transcoder is on.
6407 tmp
= I915_READ(TRANS_DDI_FUNC_CTL(pipe_config
->cpu_transcoder
));
6408 if ((tmp
& TRANS_DDI_PORT_MASK
) == TRANS_DDI_SELECT_PORT(PORT_E
) &&
6409 I915_READ(LPT_TRANSCONF
) & TRANS_ENABLE
) {
6410 pipe_config
->has_pch_encoder
= true;
6412 tmp
= I915_READ(FDI_RX_CTL(PIPE_A
));
6413 pipe_config
->fdi_lanes
= ((FDI_DP_PORT_WIDTH_MASK
& tmp
) >>
6414 FDI_DP_PORT_WIDTH_SHIFT
) + 1;
6416 ironlake_get_fdi_m_n_config(crtc
, pipe_config
);
6419 intel_get_pipe_timings(crtc
, pipe_config
);
6421 pfit_domain
= POWER_DOMAIN_PIPE_PANEL_FITTER(crtc
->pipe
);
6422 if (intel_display_power_enabled(dev
, pfit_domain
))
6423 ironlake_get_pfit_config(crtc
, pipe_config
);
6425 pipe_config
->ips_enabled
= hsw_crtc_supports_ips(crtc
) &&
6426 (I915_READ(IPS_CTL
) & IPS_ENABLE
);
6428 pipe_config
->pixel_multiplier
= 1;
6433 static int intel_crtc_mode_set(struct drm_crtc
*crtc
,
6435 struct drm_framebuffer
*fb
)
6437 struct drm_device
*dev
= crtc
->dev
;
6438 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
6439 struct intel_encoder
*encoder
;
6440 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
6441 struct drm_display_mode
*mode
= &intel_crtc
->config
.requested_mode
;
6442 int pipe
= intel_crtc
->pipe
;
6445 drm_vblank_pre_modeset(dev
, pipe
);
6447 ret
= dev_priv
->display
.crtc_mode_set(crtc
, x
, y
, fb
);
6449 drm_vblank_post_modeset(dev
, pipe
);
6454 for_each_encoder_on_crtc(dev
, crtc
, encoder
) {
6455 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
6456 encoder
->base
.base
.id
,
6457 drm_get_encoder_name(&encoder
->base
),
6458 mode
->base
.id
, mode
->name
);
6459 encoder
->mode_set(encoder
);
6465 static bool intel_eld_uptodate(struct drm_connector
*connector
,
6466 int reg_eldv
, uint32_t bits_eldv
,
6467 int reg_elda
, uint32_t bits_elda
,
6470 struct drm_i915_private
*dev_priv
= connector
->dev
->dev_private
;
6471 uint8_t *eld
= connector
->eld
;
6474 i
= I915_READ(reg_eldv
);
6483 i
= I915_READ(reg_elda
);
6485 I915_WRITE(reg_elda
, i
);
6487 for (i
= 0; i
< eld
[2]; i
++)
6488 if (I915_READ(reg_edid
) != *((uint32_t *)eld
+ i
))
6494 static void g4x_write_eld(struct drm_connector
*connector
,
6495 struct drm_crtc
*crtc
)
6497 struct drm_i915_private
*dev_priv
= connector
->dev
->dev_private
;
6498 uint8_t *eld
= connector
->eld
;
6503 i
= I915_READ(G4X_AUD_VID_DID
);
6505 if (i
== INTEL_AUDIO_DEVBLC
|| i
== INTEL_AUDIO_DEVCL
)
6506 eldv
= G4X_ELDV_DEVCL_DEVBLC
;
6508 eldv
= G4X_ELDV_DEVCTG
;
6510 if (intel_eld_uptodate(connector
,
6511 G4X_AUD_CNTL_ST
, eldv
,
6512 G4X_AUD_CNTL_ST
, G4X_ELD_ADDR
,
6513 G4X_HDMIW_HDMIEDID
))
6516 i
= I915_READ(G4X_AUD_CNTL_ST
);
6517 i
&= ~(eldv
| G4X_ELD_ADDR
);
6518 len
= (i
>> 9) & 0x1f; /* ELD buffer size */
6519 I915_WRITE(G4X_AUD_CNTL_ST
, i
);
6524 len
= min_t(uint8_t, eld
[2], len
);
6525 DRM_DEBUG_DRIVER("ELD size %d\n", len
);
6526 for (i
= 0; i
< len
; i
++)
6527 I915_WRITE(G4X_HDMIW_HDMIEDID
, *((uint32_t *)eld
+ i
));
6529 i
= I915_READ(G4X_AUD_CNTL_ST
);
6531 I915_WRITE(G4X_AUD_CNTL_ST
, i
);
6534 static void haswell_write_eld(struct drm_connector
*connector
,
6535 struct drm_crtc
*crtc
)
6537 struct drm_i915_private
*dev_priv
= connector
->dev
->dev_private
;
6538 uint8_t *eld
= connector
->eld
;
6539 struct drm_device
*dev
= crtc
->dev
;
6540 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
6544 int pipe
= to_intel_crtc(crtc
)->pipe
;
6547 int hdmiw_hdmiedid
= HSW_AUD_EDID_DATA(pipe
);
6548 int aud_cntl_st
= HSW_AUD_DIP_ELD_CTRL(pipe
);
6549 int aud_config
= HSW_AUD_CFG(pipe
);
6550 int aud_cntrl_st2
= HSW_AUD_PIN_ELD_CP_VLD
;
6553 DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n");
6555 /* Audio output enable */
6556 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
6557 tmp
= I915_READ(aud_cntrl_st2
);
6558 tmp
|= (AUDIO_OUTPUT_ENABLE_A
<< (pipe
* 4));
6559 I915_WRITE(aud_cntrl_st2
, tmp
);
6561 /* Wait for 1 vertical blank */
6562 intel_wait_for_vblank(dev
, pipe
);
6564 /* Set ELD valid state */
6565 tmp
= I915_READ(aud_cntrl_st2
);
6566 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp
);
6567 tmp
|= (AUDIO_ELD_VALID_A
<< (pipe
* 4));
6568 I915_WRITE(aud_cntrl_st2
, tmp
);
6569 tmp
= I915_READ(aud_cntrl_st2
);
6570 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp
);
6572 /* Enable HDMI mode */
6573 tmp
= I915_READ(aud_config
);
6574 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp
);
6575 /* clear N_programing_enable and N_value_index */
6576 tmp
&= ~(AUD_CONFIG_N_VALUE_INDEX
| AUD_CONFIG_N_PROG_ENABLE
);
6577 I915_WRITE(aud_config
, tmp
);
6579 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe
));
6581 eldv
= AUDIO_ELD_VALID_A
<< (pipe
* 4);
6582 intel_crtc
->eld_vld
= true;
6584 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_DISPLAYPORT
)) {
6585 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
6586 eld
[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
6587 I915_WRITE(aud_config
, AUD_CONFIG_N_VALUE_INDEX
); /* 0x1 = DP */
6589 I915_WRITE(aud_config
, 0);
6591 if (intel_eld_uptodate(connector
,
6592 aud_cntrl_st2
, eldv
,
6593 aud_cntl_st
, IBX_ELD_ADDRESS
,
6597 i
= I915_READ(aud_cntrl_st2
);
6599 I915_WRITE(aud_cntrl_st2
, i
);
6604 i
= I915_READ(aud_cntl_st
);
6605 i
&= ~IBX_ELD_ADDRESS
;
6606 I915_WRITE(aud_cntl_st
, i
);
6607 i
= (i
>> 29) & DIP_PORT_SEL_MASK
; /* DIP_Port_Select, 0x1 = PortB */
6608 DRM_DEBUG_DRIVER("port num:%d\n", i
);
6610 len
= min_t(uint8_t, eld
[2], 21); /* 84 bytes of hw ELD buffer */
6611 DRM_DEBUG_DRIVER("ELD size %d\n", len
);
6612 for (i
= 0; i
< len
; i
++)
6613 I915_WRITE(hdmiw_hdmiedid
, *((uint32_t *)eld
+ i
));
6615 i
= I915_READ(aud_cntrl_st2
);
6617 I915_WRITE(aud_cntrl_st2
, i
);
6621 static void ironlake_write_eld(struct drm_connector
*connector
,
6622 struct drm_crtc
*crtc
)
6624 struct drm_i915_private
*dev_priv
= connector
->dev
->dev_private
;
6625 uint8_t *eld
= connector
->eld
;
6633 int pipe
= to_intel_crtc(crtc
)->pipe
;
6635 if (HAS_PCH_IBX(connector
->dev
)) {
6636 hdmiw_hdmiedid
= IBX_HDMIW_HDMIEDID(pipe
);
6637 aud_config
= IBX_AUD_CFG(pipe
);
6638 aud_cntl_st
= IBX_AUD_CNTL_ST(pipe
);
6639 aud_cntrl_st2
= IBX_AUD_CNTL_ST2
;
6641 hdmiw_hdmiedid
= CPT_HDMIW_HDMIEDID(pipe
);
6642 aud_config
= CPT_AUD_CFG(pipe
);
6643 aud_cntl_st
= CPT_AUD_CNTL_ST(pipe
);
6644 aud_cntrl_st2
= CPT_AUD_CNTRL_ST2
;
6647 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe
));
6649 i
= I915_READ(aud_cntl_st
);
6650 i
= (i
>> 29) & DIP_PORT_SEL_MASK
; /* DIP_Port_Select, 0x1 = PortB */
6652 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
6653 /* operate blindly on all ports */
6654 eldv
= IBX_ELD_VALIDB
;
6655 eldv
|= IBX_ELD_VALIDB
<< 4;
6656 eldv
|= IBX_ELD_VALIDB
<< 8;
6658 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i
));
6659 eldv
= IBX_ELD_VALIDB
<< ((i
- 1) * 4);
6662 if (intel_pipe_has_type(crtc
, INTEL_OUTPUT_DISPLAYPORT
)) {
6663 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
6664 eld
[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
6665 I915_WRITE(aud_config
, AUD_CONFIG_N_VALUE_INDEX
); /* 0x1 = DP */
6667 I915_WRITE(aud_config
, 0);
6669 if (intel_eld_uptodate(connector
,
6670 aud_cntrl_st2
, eldv
,
6671 aud_cntl_st
, IBX_ELD_ADDRESS
,
6675 i
= I915_READ(aud_cntrl_st2
);
6677 I915_WRITE(aud_cntrl_st2
, i
);
6682 i
= I915_READ(aud_cntl_st
);
6683 i
&= ~IBX_ELD_ADDRESS
;
6684 I915_WRITE(aud_cntl_st
, i
);
6686 len
= min_t(uint8_t, eld
[2], 21); /* 84 bytes of hw ELD buffer */
6687 DRM_DEBUG_DRIVER("ELD size %d\n", len
);
6688 for (i
= 0; i
< len
; i
++)
6689 I915_WRITE(hdmiw_hdmiedid
, *((uint32_t *)eld
+ i
));
6691 i
= I915_READ(aud_cntrl_st2
);
6693 I915_WRITE(aud_cntrl_st2
, i
);
6696 void intel_write_eld(struct drm_encoder
*encoder
,
6697 struct drm_display_mode
*mode
)
6699 struct drm_crtc
*crtc
= encoder
->crtc
;
6700 struct drm_connector
*connector
;
6701 struct drm_device
*dev
= encoder
->dev
;
6702 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
6704 connector
= drm_select_eld(encoder
, mode
);
6708 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6710 drm_get_connector_name(connector
),
6711 connector
->encoder
->base
.id
,
6712 drm_get_encoder_name(connector
->encoder
));
6714 connector
->eld
[6] = drm_av_sync_delay(connector
, mode
) / 2;
6716 if (dev_priv
->display
.write_eld
)
6717 dev_priv
->display
.write_eld(connector
, crtc
);
6720 /** Loads the palette/gamma unit for the CRTC with the prepared values */
6721 void intel_crtc_load_lut(struct drm_crtc
*crtc
)
6723 struct drm_device
*dev
= crtc
->dev
;
6724 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
6725 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
6726 enum pipe pipe
= intel_crtc
->pipe
;
6727 int palreg
= PALETTE(pipe
);
6729 bool reenable_ips
= false;
6731 /* The clocks have to be on to load the palette. */
6732 if (!crtc
->enabled
|| !intel_crtc
->active
)
6735 if (!HAS_PCH_SPLIT(dev_priv
->dev
))
6736 assert_pll_enabled(dev_priv
, pipe
);
6738 /* use legacy palette for Ironlake */
6739 if (HAS_PCH_SPLIT(dev
))
6740 palreg
= LGC_PALETTE(pipe
);
6742 /* Workaround : Do not read or write the pipe palette/gamma data while
6743 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
6745 if (intel_crtc
->config
.ips_enabled
&&
6746 ((I915_READ(GAMMA_MODE(pipe
)) & GAMMA_MODE_MODE_MASK
) ==
6747 GAMMA_MODE_MODE_SPLIT
)) {
6748 hsw_disable_ips(intel_crtc
);
6749 reenable_ips
= true;
6752 for (i
= 0; i
< 256; i
++) {
6753 I915_WRITE(palreg
+ 4 * i
,
6754 (intel_crtc
->lut_r
[i
] << 16) |
6755 (intel_crtc
->lut_g
[i
] << 8) |
6756 intel_crtc
->lut_b
[i
]);
6760 hsw_enable_ips(intel_crtc
);
6763 static void i845_update_cursor(struct drm_crtc
*crtc
, u32 base
)
6765 struct drm_device
*dev
= crtc
->dev
;
6766 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
6767 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
6768 bool visible
= base
!= 0;
6771 if (intel_crtc
->cursor_visible
== visible
)
6774 cntl
= I915_READ(_CURACNTR
);
6776 /* On these chipsets we can only modify the base whilst
6777 * the cursor is disabled.
6779 I915_WRITE(_CURABASE
, base
);
6781 cntl
&= ~(CURSOR_FORMAT_MASK
);
6782 /* XXX width must be 64, stride 256 => 0x00 << 28 */
6783 cntl
|= CURSOR_ENABLE
|
6784 CURSOR_GAMMA_ENABLE
|
6787 cntl
&= ~(CURSOR_ENABLE
| CURSOR_GAMMA_ENABLE
);
6788 I915_WRITE(_CURACNTR
, cntl
);
6790 intel_crtc
->cursor_visible
= visible
;
6793 static void i9xx_update_cursor(struct drm_crtc
*crtc
, u32 base
)
6795 struct drm_device
*dev
= crtc
->dev
;
6796 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
6797 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
6798 int pipe
= intel_crtc
->pipe
;
6799 bool visible
= base
!= 0;
6801 if (intel_crtc
->cursor_visible
!= visible
) {
6802 uint32_t cntl
= I915_READ(CURCNTR(pipe
));
6804 cntl
&= ~(CURSOR_MODE
| MCURSOR_PIPE_SELECT
);
6805 cntl
|= CURSOR_MODE_64_ARGB_AX
| MCURSOR_GAMMA_ENABLE
;
6806 cntl
|= pipe
<< 28; /* Connect to correct pipe */
6808 cntl
&= ~(CURSOR_MODE
| MCURSOR_GAMMA_ENABLE
);
6809 cntl
|= CURSOR_MODE_DISABLE
;
6811 I915_WRITE(CURCNTR(pipe
), cntl
);
6813 intel_crtc
->cursor_visible
= visible
;
6815 /* and commit changes on next vblank */
6816 POSTING_READ(CURCNTR(pipe
));
6817 I915_WRITE(CURBASE(pipe
), base
);
6818 POSTING_READ(CURBASE(pipe
));
6821 static void ivb_update_cursor(struct drm_crtc
*crtc
, u32 base
)
6823 struct drm_device
*dev
= crtc
->dev
;
6824 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
6825 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
6826 int pipe
= intel_crtc
->pipe
;
6827 bool visible
= base
!= 0;
6829 if (intel_crtc
->cursor_visible
!= visible
) {
6830 uint32_t cntl
= I915_READ(CURCNTR_IVB(pipe
));
6832 cntl
&= ~CURSOR_MODE
;
6833 cntl
|= CURSOR_MODE_64_ARGB_AX
| MCURSOR_GAMMA_ENABLE
;
6835 cntl
&= ~(CURSOR_MODE
| MCURSOR_GAMMA_ENABLE
);
6836 cntl
|= CURSOR_MODE_DISABLE
;
6838 if (IS_HASWELL(dev
)) {
6839 cntl
|= CURSOR_PIPE_CSC_ENABLE
;
6840 cntl
&= ~CURSOR_TRICKLE_FEED_DISABLE
;
6842 I915_WRITE(CURCNTR_IVB(pipe
), cntl
);
6844 intel_crtc
->cursor_visible
= visible
;
6846 /* and commit changes on next vblank */
6847 POSTING_READ(CURCNTR_IVB(pipe
));
6848 I915_WRITE(CURBASE_IVB(pipe
), base
);
6849 POSTING_READ(CURBASE_IVB(pipe
));
6852 /* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6853 static void intel_crtc_update_cursor(struct drm_crtc
*crtc
,
6856 struct drm_device
*dev
= crtc
->dev
;
6857 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
6858 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
6859 int pipe
= intel_crtc
->pipe
;
6860 int x
= intel_crtc
->cursor_x
;
6861 int y
= intel_crtc
->cursor_y
;
6867 if (on
&& crtc
->enabled
&& crtc
->fb
) {
6868 base
= intel_crtc
->cursor_addr
;
6869 if (x
> (int) crtc
->fb
->width
)
6872 if (y
> (int) crtc
->fb
->height
)
6878 if (x
+ intel_crtc
->cursor_width
< 0)
6881 pos
|= CURSOR_POS_SIGN
<< CURSOR_X_SHIFT
;
6884 pos
|= x
<< CURSOR_X_SHIFT
;
6887 if (y
+ intel_crtc
->cursor_height
< 0)
6890 pos
|= CURSOR_POS_SIGN
<< CURSOR_Y_SHIFT
;
6893 pos
|= y
<< CURSOR_Y_SHIFT
;
6895 visible
= base
!= 0;
6896 if (!visible
&& !intel_crtc
->cursor_visible
)
6899 if (IS_IVYBRIDGE(dev
) || IS_HASWELL(dev
)) {
6900 I915_WRITE(CURPOS_IVB(pipe
), pos
);
6901 ivb_update_cursor(crtc
, base
);
6903 I915_WRITE(CURPOS(pipe
), pos
);
6904 if (IS_845G(dev
) || IS_I865G(dev
))
6905 i845_update_cursor(crtc
, base
);
6907 i9xx_update_cursor(crtc
, base
);
6911 static int intel_crtc_cursor_set(struct drm_crtc
*crtc
,
6912 struct drm_file
*file
,
6914 uint32_t width
, uint32_t height
)
6916 struct drm_device
*dev
= crtc
->dev
;
6917 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
6918 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
6919 struct drm_i915_gem_object
*obj
;
6923 /* if we want to turn off the cursor ignore width and height */
6925 DRM_DEBUG_KMS("cursor off\n");
6928 mutex_lock(&dev
->struct_mutex
);
6932 /* Currently we only support 64x64 cursors */
6933 if (width
!= 64 || height
!= 64) {
6934 DRM_ERROR("we currently only support 64x64 cursors\n");
6938 obj
= to_intel_bo(drm_gem_object_lookup(dev
, file
, handle
));
6939 if (&obj
->base
== NULL
)
6942 if (obj
->base
.size
< width
* height
* 4) {
6943 DRM_ERROR("buffer is to small\n");
6948 /* we only need to pin inside GTT if cursor is non-phy */
6949 mutex_lock(&dev
->struct_mutex
);
6950 if (!dev_priv
->info
->cursor_needs_physical
) {
6953 if (obj
->tiling_mode
) {
6954 DRM_ERROR("cursor cannot be tiled\n");
6959 /* Note that the w/a also requires 2 PTE of padding following
6960 * the bo. We currently fill all unused PTE with the shadow
6961 * page and so we should always have valid PTE following the
6962 * cursor preventing the VT-d warning.
6965 if (need_vtd_wa(dev
))
6966 alignment
= 64*1024;
6968 ret
= i915_gem_object_pin_to_display_plane(obj
, alignment
, NULL
);
6970 DRM_ERROR("failed to move cursor bo into the GTT\n");
6974 ret
= i915_gem_object_put_fence(obj
);
6976 DRM_ERROR("failed to release fence for cursor");
6980 addr
= i915_gem_obj_ggtt_offset(obj
);
6982 int align
= IS_I830(dev
) ? 16 * 1024 : 256;
6983 ret
= i915_gem_attach_phys_object(dev
, obj
,
6984 (intel_crtc
->pipe
== 0) ? I915_GEM_PHYS_CURSOR_0
: I915_GEM_PHYS_CURSOR_1
,
6987 DRM_ERROR("failed to attach phys object\n");
6990 addr
= obj
->phys_obj
->handle
->busaddr
;
6994 I915_WRITE(CURSIZE
, (height
<< 12) | width
);
6997 if (intel_crtc
->cursor_bo
) {
6998 if (dev_priv
->info
->cursor_needs_physical
) {
6999 if (intel_crtc
->cursor_bo
!= obj
)
7000 i915_gem_detach_phys_object(dev
, intel_crtc
->cursor_bo
);
7002 i915_gem_object_unpin_from_display_plane(intel_crtc
->cursor_bo
);
7003 drm_gem_object_unreference(&intel_crtc
->cursor_bo
->base
);
7006 mutex_unlock(&dev
->struct_mutex
);
7008 intel_crtc
->cursor_addr
= addr
;
7009 intel_crtc
->cursor_bo
= obj
;
7010 intel_crtc
->cursor_width
= width
;
7011 intel_crtc
->cursor_height
= height
;
7013 if (intel_crtc
->active
)
7014 intel_crtc_update_cursor(crtc
, intel_crtc
->cursor_bo
!= NULL
);
7018 i915_gem_object_unpin_from_display_plane(obj
);
7020 mutex_unlock(&dev
->struct_mutex
);
7022 drm_gem_object_unreference_unlocked(&obj
->base
);
7026 static int intel_crtc_cursor_move(struct drm_crtc
*crtc
, int x
, int y
)
7028 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7030 intel_crtc
->cursor_x
= x
;
7031 intel_crtc
->cursor_y
= y
;
7033 if (intel_crtc
->active
)
7034 intel_crtc_update_cursor(crtc
, intel_crtc
->cursor_bo
!= NULL
);
7039 /** Sets the color ramps on behalf of RandR */
7040 void intel_crtc_fb_gamma_set(struct drm_crtc
*crtc
, u16 red
, u16 green
,
7041 u16 blue
, int regno
)
7043 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7045 intel_crtc
->lut_r
[regno
] = red
>> 8;
7046 intel_crtc
->lut_g
[regno
] = green
>> 8;
7047 intel_crtc
->lut_b
[regno
] = blue
>> 8;
7050 void intel_crtc_fb_gamma_get(struct drm_crtc
*crtc
, u16
*red
, u16
*green
,
7051 u16
*blue
, int regno
)
7053 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7055 *red
= intel_crtc
->lut_r
[regno
] << 8;
7056 *green
= intel_crtc
->lut_g
[regno
] << 8;
7057 *blue
= intel_crtc
->lut_b
[regno
] << 8;
7060 static void intel_crtc_gamma_set(struct drm_crtc
*crtc
, u16
*red
, u16
*green
,
7061 u16
*blue
, uint32_t start
, uint32_t size
)
7063 int end
= (start
+ size
> 256) ? 256 : start
+ size
, i
;
7064 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7066 for (i
= start
; i
< end
; i
++) {
7067 intel_crtc
->lut_r
[i
] = red
[i
] >> 8;
7068 intel_crtc
->lut_g
[i
] = green
[i
] >> 8;
7069 intel_crtc
->lut_b
[i
] = blue
[i
] >> 8;
7072 intel_crtc_load_lut(crtc
);
7075 /* VESA 640x480x72Hz mode to set on the pipe */
7076 static struct drm_display_mode load_detect_mode
= {
7077 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT
, 31500, 640, 664,
7078 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_NVSYNC
),
7081 static struct drm_framebuffer
*
7082 intel_framebuffer_create(struct drm_device
*dev
,
7083 struct drm_mode_fb_cmd2
*mode_cmd
,
7084 struct drm_i915_gem_object
*obj
)
7086 struct intel_framebuffer
*intel_fb
;
7089 intel_fb
= kzalloc(sizeof(*intel_fb
), GFP_KERNEL
);
7091 drm_gem_object_unreference_unlocked(&obj
->base
);
7092 return ERR_PTR(-ENOMEM
);
7095 ret
= intel_framebuffer_init(dev
, intel_fb
, mode_cmd
, obj
);
7097 drm_gem_object_unreference_unlocked(&obj
->base
);
7099 return ERR_PTR(ret
);
7102 return &intel_fb
->base
;
7106 intel_framebuffer_pitch_for_width(int width
, int bpp
)
7108 u32 pitch
= DIV_ROUND_UP(width
* bpp
, 8);
7109 return ALIGN(pitch
, 64);
7113 intel_framebuffer_size_for_mode(struct drm_display_mode
*mode
, int bpp
)
7115 u32 pitch
= intel_framebuffer_pitch_for_width(mode
->hdisplay
, bpp
);
7116 return ALIGN(pitch
* mode
->vdisplay
, PAGE_SIZE
);
7119 static struct drm_framebuffer
*
7120 intel_framebuffer_create_for_mode(struct drm_device
*dev
,
7121 struct drm_display_mode
*mode
,
7124 struct drm_i915_gem_object
*obj
;
7125 struct drm_mode_fb_cmd2 mode_cmd
= { 0 };
7127 obj
= i915_gem_alloc_object(dev
,
7128 intel_framebuffer_size_for_mode(mode
, bpp
));
7130 return ERR_PTR(-ENOMEM
);
7132 mode_cmd
.width
= mode
->hdisplay
;
7133 mode_cmd
.height
= mode
->vdisplay
;
7134 mode_cmd
.pitches
[0] = intel_framebuffer_pitch_for_width(mode_cmd
.width
,
7136 mode_cmd
.pixel_format
= drm_mode_legacy_fb_format(bpp
, depth
);
7138 return intel_framebuffer_create(dev
, &mode_cmd
, obj
);
7141 static struct drm_framebuffer
*
7142 mode_fits_in_fbdev(struct drm_device
*dev
,
7143 struct drm_display_mode
*mode
)
7145 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
7146 struct drm_i915_gem_object
*obj
;
7147 struct drm_framebuffer
*fb
;
7149 if (dev_priv
->fbdev
== NULL
)
7152 obj
= dev_priv
->fbdev
->ifb
.obj
;
7156 fb
= &dev_priv
->fbdev
->ifb
.base
;
7157 if (fb
->pitches
[0] < intel_framebuffer_pitch_for_width(mode
->hdisplay
,
7158 fb
->bits_per_pixel
))
7161 if (obj
->base
.size
< mode
->vdisplay
* fb
->pitches
[0])
7167 bool intel_get_load_detect_pipe(struct drm_connector
*connector
,
7168 struct drm_display_mode
*mode
,
7169 struct intel_load_detect_pipe
*old
)
7171 struct intel_crtc
*intel_crtc
;
7172 struct intel_encoder
*intel_encoder
=
7173 intel_attached_encoder(connector
);
7174 struct drm_crtc
*possible_crtc
;
7175 struct drm_encoder
*encoder
= &intel_encoder
->base
;
7176 struct drm_crtc
*crtc
= NULL
;
7177 struct drm_device
*dev
= encoder
->dev
;
7178 struct drm_framebuffer
*fb
;
7181 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7182 connector
->base
.id
, drm_get_connector_name(connector
),
7183 encoder
->base
.id
, drm_get_encoder_name(encoder
));
7186 * Algorithm gets a little messy:
7188 * - if the connector already has an assigned crtc, use it (but make
7189 * sure it's on first)
7191 * - try to find the first unused crtc that can drive this connector,
7192 * and use that if we find one
7195 /* See if we already have a CRTC for this connector */
7196 if (encoder
->crtc
) {
7197 crtc
= encoder
->crtc
;
7199 mutex_lock(&crtc
->mutex
);
7201 old
->dpms_mode
= connector
->dpms
;
7202 old
->load_detect_temp
= false;
7204 /* Make sure the crtc and connector are running */
7205 if (connector
->dpms
!= DRM_MODE_DPMS_ON
)
7206 connector
->funcs
->dpms(connector
, DRM_MODE_DPMS_ON
);
7211 /* Find an unused one (if possible) */
7212 list_for_each_entry(possible_crtc
, &dev
->mode_config
.crtc_list
, head
) {
7214 if (!(encoder
->possible_crtcs
& (1 << i
)))
7216 if (!possible_crtc
->enabled
) {
7217 crtc
= possible_crtc
;
7223 * If we didn't find an unused CRTC, don't use any.
7226 DRM_DEBUG_KMS("no pipe available for load-detect\n");
7230 mutex_lock(&crtc
->mutex
);
7231 intel_encoder
->new_crtc
= to_intel_crtc(crtc
);
7232 to_intel_connector(connector
)->new_encoder
= intel_encoder
;
7234 intel_crtc
= to_intel_crtc(crtc
);
7235 old
->dpms_mode
= connector
->dpms
;
7236 old
->load_detect_temp
= true;
7237 old
->release_fb
= NULL
;
7240 mode
= &load_detect_mode
;
7242 /* We need a framebuffer large enough to accommodate all accesses
7243 * that the plane may generate whilst we perform load detection.
7244 * We can not rely on the fbcon either being present (we get called
7245 * during its initialisation to detect all boot displays, or it may
7246 * not even exist) or that it is large enough to satisfy the
7249 fb
= mode_fits_in_fbdev(dev
, mode
);
7251 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
7252 fb
= intel_framebuffer_create_for_mode(dev
, mode
, 24, 32);
7253 old
->release_fb
= fb
;
7255 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
7257 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
7258 mutex_unlock(&crtc
->mutex
);
7262 if (intel_set_mode(crtc
, mode
, 0, 0, fb
)) {
7263 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
7264 if (old
->release_fb
)
7265 old
->release_fb
->funcs
->destroy(old
->release_fb
);
7266 mutex_unlock(&crtc
->mutex
);
7270 /* let the connector get through one full cycle before testing */
7271 intel_wait_for_vblank(dev
, intel_crtc
->pipe
);
7275 void intel_release_load_detect_pipe(struct drm_connector
*connector
,
7276 struct intel_load_detect_pipe
*old
)
7278 struct intel_encoder
*intel_encoder
=
7279 intel_attached_encoder(connector
);
7280 struct drm_encoder
*encoder
= &intel_encoder
->base
;
7281 struct drm_crtc
*crtc
= encoder
->crtc
;
7283 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7284 connector
->base
.id
, drm_get_connector_name(connector
),
7285 encoder
->base
.id
, drm_get_encoder_name(encoder
));
7287 if (old
->load_detect_temp
) {
7288 to_intel_connector(connector
)->new_encoder
= NULL
;
7289 intel_encoder
->new_crtc
= NULL
;
7290 intel_set_mode(crtc
, NULL
, 0, 0, NULL
);
7292 if (old
->release_fb
) {
7293 drm_framebuffer_unregister_private(old
->release_fb
);
7294 drm_framebuffer_unreference(old
->release_fb
);
7297 mutex_unlock(&crtc
->mutex
);
7301 /* Switch crtc and encoder back off if necessary */
7302 if (old
->dpms_mode
!= DRM_MODE_DPMS_ON
)
7303 connector
->funcs
->dpms(connector
, old
->dpms_mode
);
7305 mutex_unlock(&crtc
->mutex
);
7308 /* Returns the clock of the currently programmed mode of the given pipe. */
7309 static void i9xx_crtc_clock_get(struct intel_crtc
*crtc
,
7310 struct intel_crtc_config
*pipe_config
)
7312 struct drm_device
*dev
= crtc
->base
.dev
;
7313 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
7314 int pipe
= pipe_config
->cpu_transcoder
;
7315 u32 dpll
= I915_READ(DPLL(pipe
));
7317 intel_clock_t clock
;
7319 if ((dpll
& DISPLAY_RATE_SELECT_FPA1
) == 0)
7320 fp
= I915_READ(FP0(pipe
));
7322 fp
= I915_READ(FP1(pipe
));
7324 clock
.m1
= (fp
& FP_M1_DIV_MASK
) >> FP_M1_DIV_SHIFT
;
7325 if (IS_PINEVIEW(dev
)) {
7326 clock
.n
= ffs((fp
& FP_N_PINEVIEW_DIV_MASK
) >> FP_N_DIV_SHIFT
) - 1;
7327 clock
.m2
= (fp
& FP_M2_PINEVIEW_DIV_MASK
) >> FP_M2_DIV_SHIFT
;
7329 clock
.n
= (fp
& FP_N_DIV_MASK
) >> FP_N_DIV_SHIFT
;
7330 clock
.m2
= (fp
& FP_M2_DIV_MASK
) >> FP_M2_DIV_SHIFT
;
7333 if (!IS_GEN2(dev
)) {
7334 if (IS_PINEVIEW(dev
))
7335 clock
.p1
= ffs((dpll
& DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW
) >>
7336 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW
);
7338 clock
.p1
= ffs((dpll
& DPLL_FPA01_P1_POST_DIV_MASK
) >>
7339 DPLL_FPA01_P1_POST_DIV_SHIFT
);
7341 switch (dpll
& DPLL_MODE_MASK
) {
7342 case DPLLB_MODE_DAC_SERIAL
:
7343 clock
.p2
= dpll
& DPLL_DAC_SERIAL_P2_CLOCK_DIV_5
?
7346 case DPLLB_MODE_LVDS
:
7347 clock
.p2
= dpll
& DPLLB_LVDS_P2_CLOCK_DIV_7
?
7351 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
7352 "mode\n", (int)(dpll
& DPLL_MODE_MASK
));
7353 pipe_config
->adjusted_mode
.clock
= 0;
7357 if (IS_PINEVIEW(dev
))
7358 pineview_clock(96000, &clock
);
7360 i9xx_clock(96000, &clock
);
7362 bool is_lvds
= (pipe
== 1) && (I915_READ(LVDS
) & LVDS_PORT_EN
);
7365 clock
.p1
= ffs((dpll
& DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS
) >>
7366 DPLL_FPA01_P1_POST_DIV_SHIFT
);
7369 if ((dpll
& PLL_REF_INPUT_MASK
) ==
7370 PLLB_REF_INPUT_SPREADSPECTRUMIN
) {
7371 /* XXX: might not be 66MHz */
7372 i9xx_clock(66000, &clock
);
7374 i9xx_clock(48000, &clock
);
7376 if (dpll
& PLL_P1_DIVIDE_BY_TWO
)
7379 clock
.p1
= ((dpll
& DPLL_FPA01_P1_POST_DIV_MASK_I830
) >>
7380 DPLL_FPA01_P1_POST_DIV_SHIFT
) + 2;
7382 if (dpll
& PLL_P2_DIVIDE_BY_4
)
7387 i9xx_clock(48000, &clock
);
7391 pipe_config
->adjusted_mode
.clock
= clock
.dot
;
7394 static void ironlake_crtc_clock_get(struct intel_crtc
*crtc
,
7395 struct intel_crtc_config
*pipe_config
)
7397 struct drm_device
*dev
= crtc
->base
.dev
;
7398 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
7399 enum transcoder cpu_transcoder
= pipe_config
->cpu_transcoder
;
7400 int link_freq
, repeat
;
7404 repeat
= pipe_config
->pixel_multiplier
;
7407 * The calculation for the data clock is:
7408 * pixel_clock = ((m/n)*(link_clock * nr_lanes * repeat))/bpp
7409 * But we want to avoid losing precison if possible, so:
7410 * pixel_clock = ((m * link_clock * nr_lanes * repeat)/(n*bpp))
7412 * and the link clock is simpler:
7413 * link_clock = (m * link_clock * repeat) / n
7417 * We need to get the FDI or DP link clock here to derive
7420 * For FDI, we read it from the BIOS or use a fixed 2.7GHz.
7421 * For DP, it's either 1.62GHz or 2.7GHz.
7422 * We do our calculations in 10*MHz since we don't need much precison.
7424 if (pipe_config
->has_pch_encoder
)
7425 link_freq
= intel_fdi_link_freq(dev
) * 10000;
7427 link_freq
= pipe_config
->port_clock
;
7429 link_m
= I915_READ(PIPE_LINK_M1(cpu_transcoder
));
7430 link_n
= I915_READ(PIPE_LINK_N1(cpu_transcoder
));
7432 if (!link_m
|| !link_n
)
7435 clock
= ((u64
)link_m
* (u64
)link_freq
* (u64
)repeat
);
7436 do_div(clock
, link_n
);
7438 pipe_config
->adjusted_mode
.clock
= clock
;
7441 /** Returns the currently programmed mode of the given pipe. */
7442 struct drm_display_mode
*intel_crtc_mode_get(struct drm_device
*dev
,
7443 struct drm_crtc
*crtc
)
7445 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
7446 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7447 enum transcoder cpu_transcoder
= intel_crtc
->config
.cpu_transcoder
;
7448 struct drm_display_mode
*mode
;
7449 struct intel_crtc_config pipe_config
;
7450 int htot
= I915_READ(HTOTAL(cpu_transcoder
));
7451 int hsync
= I915_READ(HSYNC(cpu_transcoder
));
7452 int vtot
= I915_READ(VTOTAL(cpu_transcoder
));
7453 int vsync
= I915_READ(VSYNC(cpu_transcoder
));
7455 mode
= kzalloc(sizeof(*mode
), GFP_KERNEL
);
7460 * Construct a pipe_config sufficient for getting the clock info
7461 * back out of crtc_clock_get.
7463 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
7464 * to use a real value here instead.
7466 pipe_config
.cpu_transcoder
= (enum transcoder
) intel_crtc
->pipe
;
7467 pipe_config
.pixel_multiplier
= 1;
7468 i9xx_crtc_clock_get(intel_crtc
, &pipe_config
);
7470 mode
->clock
= pipe_config
.adjusted_mode
.clock
;
7471 mode
->hdisplay
= (htot
& 0xffff) + 1;
7472 mode
->htotal
= ((htot
& 0xffff0000) >> 16) + 1;
7473 mode
->hsync_start
= (hsync
& 0xffff) + 1;
7474 mode
->hsync_end
= ((hsync
& 0xffff0000) >> 16) + 1;
7475 mode
->vdisplay
= (vtot
& 0xffff) + 1;
7476 mode
->vtotal
= ((vtot
& 0xffff0000) >> 16) + 1;
7477 mode
->vsync_start
= (vsync
& 0xffff) + 1;
7478 mode
->vsync_end
= ((vsync
& 0xffff0000) >> 16) + 1;
7480 drm_mode_set_name(mode
);
7485 static void intel_increase_pllclock(struct drm_crtc
*crtc
)
7487 struct drm_device
*dev
= crtc
->dev
;
7488 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
7489 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7490 int pipe
= intel_crtc
->pipe
;
7491 int dpll_reg
= DPLL(pipe
);
7494 if (HAS_PCH_SPLIT(dev
))
7497 if (!dev_priv
->lvds_downclock_avail
)
7500 dpll
= I915_READ(dpll_reg
);
7501 if (!HAS_PIPE_CXSR(dev
) && (dpll
& DISPLAY_RATE_SELECT_FPA1
)) {
7502 DRM_DEBUG_DRIVER("upclocking LVDS\n");
7504 assert_panel_unlocked(dev_priv
, pipe
);
7506 dpll
&= ~DISPLAY_RATE_SELECT_FPA1
;
7507 I915_WRITE(dpll_reg
, dpll
);
7508 intel_wait_for_vblank(dev
, pipe
);
7510 dpll
= I915_READ(dpll_reg
);
7511 if (dpll
& DISPLAY_RATE_SELECT_FPA1
)
7512 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
7516 static void intel_decrease_pllclock(struct drm_crtc
*crtc
)
7518 struct drm_device
*dev
= crtc
->dev
;
7519 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
7520 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7522 if (HAS_PCH_SPLIT(dev
))
7525 if (!dev_priv
->lvds_downclock_avail
)
7529 * Since this is called by a timer, we should never get here in
7532 if (!HAS_PIPE_CXSR(dev
) && intel_crtc
->lowfreq_avail
) {
7533 int pipe
= intel_crtc
->pipe
;
7534 int dpll_reg
= DPLL(pipe
);
7537 DRM_DEBUG_DRIVER("downclocking LVDS\n");
7539 assert_panel_unlocked(dev_priv
, pipe
);
7541 dpll
= I915_READ(dpll_reg
);
7542 dpll
|= DISPLAY_RATE_SELECT_FPA1
;
7543 I915_WRITE(dpll_reg
, dpll
);
7544 intel_wait_for_vblank(dev
, pipe
);
7545 dpll
= I915_READ(dpll_reg
);
7546 if (!(dpll
& DISPLAY_RATE_SELECT_FPA1
))
7547 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
7552 void intel_mark_busy(struct drm_device
*dev
)
7554 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
7556 hsw_package_c8_gpu_busy(dev_priv
);
7557 i915_update_gfx_val(dev_priv
);
7560 void intel_mark_idle(struct drm_device
*dev
)
7562 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
7563 struct drm_crtc
*crtc
;
7565 hsw_package_c8_gpu_idle(dev_priv
);
7567 if (!i915_powersave
)
7570 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
7574 intel_decrease_pllclock(crtc
);
7578 void intel_mark_fb_busy(struct drm_i915_gem_object
*obj
,
7579 struct intel_ring_buffer
*ring
)
7581 struct drm_device
*dev
= obj
->base
.dev
;
7582 struct drm_crtc
*crtc
;
7584 if (!i915_powersave
)
7587 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
7591 if (to_intel_framebuffer(crtc
->fb
)->obj
!= obj
)
7594 intel_increase_pllclock(crtc
);
7595 if (ring
&& intel_fbc_enabled(dev
))
7596 ring
->fbc_dirty
= true;
7600 static void intel_crtc_destroy(struct drm_crtc
*crtc
)
7602 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7603 struct drm_device
*dev
= crtc
->dev
;
7604 struct intel_unpin_work
*work
;
7605 unsigned long flags
;
7607 spin_lock_irqsave(&dev
->event_lock
, flags
);
7608 work
= intel_crtc
->unpin_work
;
7609 intel_crtc
->unpin_work
= NULL
;
7610 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
7613 cancel_work_sync(&work
->work
);
7617 intel_crtc_cursor_set(crtc
, NULL
, 0, 0, 0);
7619 drm_crtc_cleanup(crtc
);
7624 static void intel_unpin_work_fn(struct work_struct
*__work
)
7626 struct intel_unpin_work
*work
=
7627 container_of(__work
, struct intel_unpin_work
, work
);
7628 struct drm_device
*dev
= work
->crtc
->dev
;
7630 mutex_lock(&dev
->struct_mutex
);
7631 intel_unpin_fb_obj(work
->old_fb_obj
);
7632 drm_gem_object_unreference(&work
->pending_flip_obj
->base
);
7633 drm_gem_object_unreference(&work
->old_fb_obj
->base
);
7635 intel_update_fbc(dev
);
7636 mutex_unlock(&dev
->struct_mutex
);
7638 BUG_ON(atomic_read(&to_intel_crtc(work
->crtc
)->unpin_work_count
) == 0);
7639 atomic_dec(&to_intel_crtc(work
->crtc
)->unpin_work_count
);
7644 static void do_intel_finish_page_flip(struct drm_device
*dev
,
7645 struct drm_crtc
*crtc
)
7647 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
7648 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7649 struct intel_unpin_work
*work
;
7650 unsigned long flags
;
7652 /* Ignore early vblank irqs */
7653 if (intel_crtc
== NULL
)
7656 spin_lock_irqsave(&dev
->event_lock
, flags
);
7657 work
= intel_crtc
->unpin_work
;
7659 /* Ensure we don't miss a work->pending update ... */
7662 if (work
== NULL
|| atomic_read(&work
->pending
) < INTEL_FLIP_COMPLETE
) {
7663 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
7667 /* and that the unpin work is consistent wrt ->pending. */
7670 intel_crtc
->unpin_work
= NULL
;
7673 drm_send_vblank_event(dev
, intel_crtc
->pipe
, work
->event
);
7675 drm_vblank_put(dev
, intel_crtc
->pipe
);
7677 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
7679 wake_up_all(&dev_priv
->pending_flip_queue
);
7681 queue_work(dev_priv
->wq
, &work
->work
);
7683 trace_i915_flip_complete(intel_crtc
->plane
, work
->pending_flip_obj
);
7686 void intel_finish_page_flip(struct drm_device
*dev
, int pipe
)
7688 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
7689 struct drm_crtc
*crtc
= dev_priv
->pipe_to_crtc_mapping
[pipe
];
7691 do_intel_finish_page_flip(dev
, crtc
);
7694 void intel_finish_page_flip_plane(struct drm_device
*dev
, int plane
)
7696 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
7697 struct drm_crtc
*crtc
= dev_priv
->plane_to_crtc_mapping
[plane
];
7699 do_intel_finish_page_flip(dev
, crtc
);
7702 void intel_prepare_page_flip(struct drm_device
*dev
, int plane
)
7704 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
7705 struct intel_crtc
*intel_crtc
=
7706 to_intel_crtc(dev_priv
->plane_to_crtc_mapping
[plane
]);
7707 unsigned long flags
;
7709 /* NB: An MMIO update of the plane base pointer will also
7710 * generate a page-flip completion irq, i.e. every modeset
7711 * is also accompanied by a spurious intel_prepare_page_flip().
7713 spin_lock_irqsave(&dev
->event_lock
, flags
);
7714 if (intel_crtc
->unpin_work
)
7715 atomic_inc_not_zero(&intel_crtc
->unpin_work
->pending
);
7716 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
7719 inline static void intel_mark_page_flip_active(struct intel_crtc
*intel_crtc
)
7721 /* Ensure that the work item is consistent when activating it ... */
7723 atomic_set(&intel_crtc
->unpin_work
->pending
, INTEL_FLIP_PENDING
);
7724 /* and that it is marked active as soon as the irq could fire. */
7728 static int intel_gen2_queue_flip(struct drm_device
*dev
,
7729 struct drm_crtc
*crtc
,
7730 struct drm_framebuffer
*fb
,
7731 struct drm_i915_gem_object
*obj
,
7734 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
7735 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7737 struct intel_ring_buffer
*ring
= &dev_priv
->ring
[RCS
];
7740 ret
= intel_pin_and_fence_fb_obj(dev
, obj
, ring
);
7744 ret
= intel_ring_begin(ring
, 6);
7748 /* Can't queue multiple flips, so wait for the previous
7749 * one to finish before executing the next.
7751 if (intel_crtc
->plane
)
7752 flip_mask
= MI_WAIT_FOR_PLANE_B_FLIP
;
7754 flip_mask
= MI_WAIT_FOR_PLANE_A_FLIP
;
7755 intel_ring_emit(ring
, MI_WAIT_FOR_EVENT
| flip_mask
);
7756 intel_ring_emit(ring
, MI_NOOP
);
7757 intel_ring_emit(ring
, MI_DISPLAY_FLIP
|
7758 MI_DISPLAY_FLIP_PLANE(intel_crtc
->plane
));
7759 intel_ring_emit(ring
, fb
->pitches
[0]);
7760 intel_ring_emit(ring
, i915_gem_obj_ggtt_offset(obj
) + intel_crtc
->dspaddr_offset
);
7761 intel_ring_emit(ring
, 0); /* aux display base address, unused */
7763 intel_mark_page_flip_active(intel_crtc
);
7764 intel_ring_advance(ring
);
7768 intel_unpin_fb_obj(obj
);
7773 static int intel_gen3_queue_flip(struct drm_device
*dev
,
7774 struct drm_crtc
*crtc
,
7775 struct drm_framebuffer
*fb
,
7776 struct drm_i915_gem_object
*obj
,
7779 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
7780 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7782 struct intel_ring_buffer
*ring
= &dev_priv
->ring
[RCS
];
7785 ret
= intel_pin_and_fence_fb_obj(dev
, obj
, ring
);
7789 ret
= intel_ring_begin(ring
, 6);
7793 if (intel_crtc
->plane
)
7794 flip_mask
= MI_WAIT_FOR_PLANE_B_FLIP
;
7796 flip_mask
= MI_WAIT_FOR_PLANE_A_FLIP
;
7797 intel_ring_emit(ring
, MI_WAIT_FOR_EVENT
| flip_mask
);
7798 intel_ring_emit(ring
, MI_NOOP
);
7799 intel_ring_emit(ring
, MI_DISPLAY_FLIP_I915
|
7800 MI_DISPLAY_FLIP_PLANE(intel_crtc
->plane
));
7801 intel_ring_emit(ring
, fb
->pitches
[0]);
7802 intel_ring_emit(ring
, i915_gem_obj_ggtt_offset(obj
) + intel_crtc
->dspaddr_offset
);
7803 intel_ring_emit(ring
, MI_NOOP
);
7805 intel_mark_page_flip_active(intel_crtc
);
7806 intel_ring_advance(ring
);
7810 intel_unpin_fb_obj(obj
);
7815 static int intel_gen4_queue_flip(struct drm_device
*dev
,
7816 struct drm_crtc
*crtc
,
7817 struct drm_framebuffer
*fb
,
7818 struct drm_i915_gem_object
*obj
,
7821 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
7822 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7823 uint32_t pf
, pipesrc
;
7824 struct intel_ring_buffer
*ring
= &dev_priv
->ring
[RCS
];
7827 ret
= intel_pin_and_fence_fb_obj(dev
, obj
, ring
);
7831 ret
= intel_ring_begin(ring
, 4);
7835 /* i965+ uses the linear or tiled offsets from the
7836 * Display Registers (which do not change across a page-flip)
7837 * so we need only reprogram the base address.
7839 intel_ring_emit(ring
, MI_DISPLAY_FLIP
|
7840 MI_DISPLAY_FLIP_PLANE(intel_crtc
->plane
));
7841 intel_ring_emit(ring
, fb
->pitches
[0]);
7842 intel_ring_emit(ring
,
7843 (i915_gem_obj_ggtt_offset(obj
) + intel_crtc
->dspaddr_offset
) |
7846 /* XXX Enabling the panel-fitter across page-flip is so far
7847 * untested on non-native modes, so ignore it for now.
7848 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
7851 pipesrc
= I915_READ(PIPESRC(intel_crtc
->pipe
)) & 0x0fff0fff;
7852 intel_ring_emit(ring
, pf
| pipesrc
);
7854 intel_mark_page_flip_active(intel_crtc
);
7855 intel_ring_advance(ring
);
7859 intel_unpin_fb_obj(obj
);
7864 static int intel_gen6_queue_flip(struct drm_device
*dev
,
7865 struct drm_crtc
*crtc
,
7866 struct drm_framebuffer
*fb
,
7867 struct drm_i915_gem_object
*obj
,
7870 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
7871 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7872 struct intel_ring_buffer
*ring
= &dev_priv
->ring
[RCS
];
7873 uint32_t pf
, pipesrc
;
7876 ret
= intel_pin_and_fence_fb_obj(dev
, obj
, ring
);
7880 ret
= intel_ring_begin(ring
, 4);
7884 intel_ring_emit(ring
, MI_DISPLAY_FLIP
|
7885 MI_DISPLAY_FLIP_PLANE(intel_crtc
->plane
));
7886 intel_ring_emit(ring
, fb
->pitches
[0] | obj
->tiling_mode
);
7887 intel_ring_emit(ring
, i915_gem_obj_ggtt_offset(obj
) + intel_crtc
->dspaddr_offset
);
7889 /* Contrary to the suggestions in the documentation,
7890 * "Enable Panel Fitter" does not seem to be required when page
7891 * flipping with a non-native mode, and worse causes a normal
7893 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
7896 pipesrc
= I915_READ(PIPESRC(intel_crtc
->pipe
)) & 0x0fff0fff;
7897 intel_ring_emit(ring
, pf
| pipesrc
);
7899 intel_mark_page_flip_active(intel_crtc
);
7900 intel_ring_advance(ring
);
7904 intel_unpin_fb_obj(obj
);
7909 static int intel_gen7_queue_flip(struct drm_device
*dev
,
7910 struct drm_crtc
*crtc
,
7911 struct drm_framebuffer
*fb
,
7912 struct drm_i915_gem_object
*obj
,
7915 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
7916 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
7917 struct intel_ring_buffer
*ring
;
7918 uint32_t plane_bit
= 0;
7922 if (IS_VALLEYVIEW(dev
) || ring
== NULL
|| ring
->id
!= RCS
)
7923 ring
= &dev_priv
->ring
[BCS
];
7925 ret
= intel_pin_and_fence_fb_obj(dev
, obj
, ring
);
7929 switch(intel_crtc
->plane
) {
7931 plane_bit
= MI_DISPLAY_FLIP_IVB_PLANE_A
;
7934 plane_bit
= MI_DISPLAY_FLIP_IVB_PLANE_B
;
7937 plane_bit
= MI_DISPLAY_FLIP_IVB_PLANE_C
;
7940 WARN_ONCE(1, "unknown plane in flip command\n");
7946 if (ring
->id
== RCS
)
7950 * BSpec MI_DISPLAY_FLIP for IVB:
7951 * "The full packet must be contained within the same cache line."
7953 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
7954 * cacheline, if we ever start emitting more commands before
7955 * the MI_DISPLAY_FLIP we may need to first emit everything else,
7956 * then do the cacheline alignment, and finally emit the
7959 ret
= intel_ring_cacheline_align(ring
);
7963 ret
= intel_ring_begin(ring
, len
);
7967 /* Unmask the flip-done completion message. Note that the bspec says that
7968 * we should do this for both the BCS and RCS, and that we must not unmask
7969 * more than one flip event at any time (or ensure that one flip message
7970 * can be sent by waiting for flip-done prior to queueing new flips).
7971 * Experimentation says that BCS works despite DERRMR masking all
7972 * flip-done completion events and that unmasking all planes at once
7973 * for the RCS also doesn't appear to drop events. Setting the DERRMR
7974 * to zero does lead to lockups within MI_DISPLAY_FLIP.
7976 if (ring
->id
== RCS
) {
7977 intel_ring_emit(ring
, MI_LOAD_REGISTER_IMM(1));
7978 intel_ring_emit(ring
, DERRMR
);
7979 intel_ring_emit(ring
, ~(DERRMR_PIPEA_PRI_FLIP_DONE
|
7980 DERRMR_PIPEB_PRI_FLIP_DONE
|
7981 DERRMR_PIPEC_PRI_FLIP_DONE
));
7982 intel_ring_emit(ring
, MI_STORE_REGISTER_MEM(1));
7983 intel_ring_emit(ring
, DERRMR
);
7984 intel_ring_emit(ring
, ring
->scratch
.gtt_offset
+ 256);
7987 intel_ring_emit(ring
, MI_DISPLAY_FLIP_I915
| plane_bit
);
7988 intel_ring_emit(ring
, (fb
->pitches
[0] | obj
->tiling_mode
));
7989 intel_ring_emit(ring
, i915_gem_obj_ggtt_offset(obj
) + intel_crtc
->dspaddr_offset
);
7990 intel_ring_emit(ring
, (MI_NOOP
));
7992 intel_mark_page_flip_active(intel_crtc
);
7993 intel_ring_advance(ring
);
7997 intel_unpin_fb_obj(obj
);
8002 static int intel_default_queue_flip(struct drm_device
*dev
,
8003 struct drm_crtc
*crtc
,
8004 struct drm_framebuffer
*fb
,
8005 struct drm_i915_gem_object
*obj
,
8011 static int intel_crtc_page_flip(struct drm_crtc
*crtc
,
8012 struct drm_framebuffer
*fb
,
8013 struct drm_pending_vblank_event
*event
,
8014 uint32_t page_flip_flags
)
8016 struct drm_device
*dev
= crtc
->dev
;
8017 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
8018 struct drm_framebuffer
*old_fb
= crtc
->fb
;
8019 struct drm_i915_gem_object
*obj
= to_intel_framebuffer(fb
)->obj
;
8020 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
8021 struct intel_unpin_work
*work
;
8022 unsigned long flags
;
8025 /* Can't change pixel format via MI display flips. */
8026 if (fb
->pixel_format
!= crtc
->fb
->pixel_format
)
8030 * TILEOFF/LINOFF registers can't be changed via MI display flips.
8031 * Note that pitch changes could also affect these register.
8033 if (INTEL_INFO(dev
)->gen
> 3 &&
8034 (fb
->offsets
[0] != crtc
->fb
->offsets
[0] ||
8035 fb
->pitches
[0] != crtc
->fb
->pitches
[0]))
8038 work
= kzalloc(sizeof *work
, GFP_KERNEL
);
8042 work
->event
= event
;
8044 work
->old_fb_obj
= to_intel_framebuffer(old_fb
)->obj
;
8045 INIT_WORK(&work
->work
, intel_unpin_work_fn
);
8047 ret
= drm_vblank_get(dev
, intel_crtc
->pipe
);
8051 /* We borrow the event spin lock for protecting unpin_work */
8052 spin_lock_irqsave(&dev
->event_lock
, flags
);
8053 if (intel_crtc
->unpin_work
) {
8054 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
8056 drm_vblank_put(dev
, intel_crtc
->pipe
);
8058 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
8061 intel_crtc
->unpin_work
= work
;
8062 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
8064 if (atomic_read(&intel_crtc
->unpin_work_count
) >= 2)
8065 flush_workqueue(dev_priv
->wq
);
8067 ret
= i915_mutex_lock_interruptible(dev
);
8071 /* Reference the objects for the scheduled work. */
8072 drm_gem_object_reference(&work
->old_fb_obj
->base
);
8073 drm_gem_object_reference(&obj
->base
);
8077 work
->pending_flip_obj
= obj
;
8079 work
->enable_stall_check
= true;
8081 atomic_inc(&intel_crtc
->unpin_work_count
);
8082 intel_crtc
->reset_counter
= atomic_read(&dev_priv
->gpu_error
.reset_counter
);
8084 ret
= dev_priv
->display
.queue_flip(dev
, crtc
, fb
, obj
, page_flip_flags
);
8086 goto cleanup_pending
;
8088 intel_disable_fbc(dev
);
8089 intel_mark_fb_busy(obj
, NULL
);
8090 mutex_unlock(&dev
->struct_mutex
);
8092 trace_i915_flip_request(intel_crtc
->plane
, obj
);
8097 atomic_dec(&intel_crtc
->unpin_work_count
);
8099 drm_gem_object_unreference(&work
->old_fb_obj
->base
);
8100 drm_gem_object_unreference(&obj
->base
);
8101 mutex_unlock(&dev
->struct_mutex
);
8104 spin_lock_irqsave(&dev
->event_lock
, flags
);
8105 intel_crtc
->unpin_work
= NULL
;
8106 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
8108 drm_vblank_put(dev
, intel_crtc
->pipe
);
8115 static struct drm_crtc_helper_funcs intel_helper_funcs
= {
8116 .mode_set_base_atomic
= intel_pipe_set_base_atomic
,
8117 .load_lut
= intel_crtc_load_lut
,
8120 static bool intel_encoder_crtc_ok(struct drm_encoder
*encoder
,
8121 struct drm_crtc
*crtc
)
8123 struct drm_device
*dev
;
8124 struct drm_crtc
*tmp
;
8127 WARN(!crtc
, "checking null crtc?\n");
8131 list_for_each_entry(tmp
, &dev
->mode_config
.crtc_list
, head
) {
8137 if (encoder
->possible_crtcs
& crtc_mask
)
8143 * intel_modeset_update_staged_output_state
8145 * Updates the staged output configuration state, e.g. after we've read out the
8148 static void intel_modeset_update_staged_output_state(struct drm_device
*dev
)
8150 struct intel_encoder
*encoder
;
8151 struct intel_connector
*connector
;
8153 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
,
8155 connector
->new_encoder
=
8156 to_intel_encoder(connector
->base
.encoder
);
8159 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
,
8162 to_intel_crtc(encoder
->base
.crtc
);
8167 * intel_modeset_commit_output_state
8169 * This function copies the stage display pipe configuration to the real one.
8171 static void intel_modeset_commit_output_state(struct drm_device
*dev
)
8173 struct intel_encoder
*encoder
;
8174 struct intel_connector
*connector
;
8176 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
,
8178 connector
->base
.encoder
= &connector
->new_encoder
->base
;
8181 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
,
8183 encoder
->base
.crtc
= &encoder
->new_crtc
->base
;
8188 connected_sink_compute_bpp(struct intel_connector
* connector
,
8189 struct intel_crtc_config
*pipe_config
)
8191 int bpp
= pipe_config
->pipe_bpp
;
8193 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
8194 connector
->base
.base
.id
,
8195 drm_get_connector_name(&connector
->base
));
8197 /* Don't use an invalid EDID bpc value */
8198 if (connector
->base
.display_info
.bpc
&&
8199 connector
->base
.display_info
.bpc
* 3 < bpp
) {
8200 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
8201 bpp
, connector
->base
.display_info
.bpc
*3);
8202 pipe_config
->pipe_bpp
= connector
->base
.display_info
.bpc
*3;
8205 /* Clamp bpp to 8 on screens without EDID 1.4 */
8206 if (connector
->base
.display_info
.bpc
== 0 && bpp
> 24) {
8207 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
8209 pipe_config
->pipe_bpp
= 24;
8214 compute_baseline_pipe_bpp(struct intel_crtc
*crtc
,
8215 struct drm_framebuffer
*fb
,
8216 struct intel_crtc_config
*pipe_config
)
8218 struct drm_device
*dev
= crtc
->base
.dev
;
8219 struct intel_connector
*connector
;
8222 switch (fb
->pixel_format
) {
8224 bpp
= 8*3; /* since we go through a colormap */
8226 case DRM_FORMAT_XRGB1555
:
8227 case DRM_FORMAT_ARGB1555
:
8228 /* checked in intel_framebuffer_init already */
8229 if (WARN_ON(INTEL_INFO(dev
)->gen
> 3))
8231 case DRM_FORMAT_RGB565
:
8232 bpp
= 6*3; /* min is 18bpp */
8234 case DRM_FORMAT_XBGR8888
:
8235 case DRM_FORMAT_ABGR8888
:
8236 /* checked in intel_framebuffer_init already */
8237 if (WARN_ON(INTEL_INFO(dev
)->gen
< 4))
8239 case DRM_FORMAT_XRGB8888
:
8240 case DRM_FORMAT_ARGB8888
:
8243 case DRM_FORMAT_XRGB2101010
:
8244 case DRM_FORMAT_ARGB2101010
:
8245 case DRM_FORMAT_XBGR2101010
:
8246 case DRM_FORMAT_ABGR2101010
:
8247 /* checked in intel_framebuffer_init already */
8248 if (WARN_ON(INTEL_INFO(dev
)->gen
< 4))
8252 /* TODO: gen4+ supports 16 bpc floating point, too. */
8254 DRM_DEBUG_KMS("unsupported depth\n");
8258 pipe_config
->pipe_bpp
= bpp
;
8260 /* Clamp display bpp to EDID value */
8261 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
,
8263 if (!connector
->new_encoder
||
8264 connector
->new_encoder
->new_crtc
!= crtc
)
8267 connected_sink_compute_bpp(connector
, pipe_config
);
8273 static void intel_dump_pipe_config(struct intel_crtc
*crtc
,
8274 struct intel_crtc_config
*pipe_config
,
8275 const char *context
)
8277 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc
->base
.base
.id
,
8278 context
, pipe_name(crtc
->pipe
));
8280 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config
->cpu_transcoder
));
8281 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
8282 pipe_config
->pipe_bpp
, pipe_config
->dither
);
8283 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
8284 pipe_config
->has_pch_encoder
,
8285 pipe_config
->fdi_lanes
,
8286 pipe_config
->fdi_m_n
.gmch_m
, pipe_config
->fdi_m_n
.gmch_n
,
8287 pipe_config
->fdi_m_n
.link_m
, pipe_config
->fdi_m_n
.link_n
,
8288 pipe_config
->fdi_m_n
.tu
);
8289 DRM_DEBUG_KMS("requested mode:\n");
8290 drm_mode_debug_printmodeline(&pipe_config
->requested_mode
);
8291 DRM_DEBUG_KMS("adjusted mode:\n");
8292 drm_mode_debug_printmodeline(&pipe_config
->adjusted_mode
);
8293 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
8294 pipe_config
->gmch_pfit
.control
,
8295 pipe_config
->gmch_pfit
.pgm_ratios
,
8296 pipe_config
->gmch_pfit
.lvds_border_bits
);
8297 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
8298 pipe_config
->pch_pfit
.pos
,
8299 pipe_config
->pch_pfit
.size
,
8300 pipe_config
->pch_pfit
.enabled
? "enabled" : "disabled");
8301 DRM_DEBUG_KMS("ips: %i\n", pipe_config
->ips_enabled
);
8304 static bool check_encoder_cloning(struct drm_crtc
*crtc
)
8306 int num_encoders
= 0;
8307 bool uncloneable_encoders
= false;
8308 struct intel_encoder
*encoder
;
8310 list_for_each_entry(encoder
, &crtc
->dev
->mode_config
.encoder_list
,
8312 if (&encoder
->new_crtc
->base
!= crtc
)
8316 if (!encoder
->cloneable
)
8317 uncloneable_encoders
= true;
8320 return !(num_encoders
> 1 && uncloneable_encoders
);
8323 static struct intel_crtc_config
*
8324 intel_modeset_pipe_config(struct drm_crtc
*crtc
,
8325 struct drm_framebuffer
*fb
,
8326 struct drm_display_mode
*mode
)
8328 struct drm_device
*dev
= crtc
->dev
;
8329 struct intel_encoder
*encoder
;
8330 struct intel_crtc_config
*pipe_config
;
8331 int plane_bpp
, ret
= -EINVAL
;
8334 if (!check_encoder_cloning(crtc
)) {
8335 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
8336 return ERR_PTR(-EINVAL
);
8339 pipe_config
= kzalloc(sizeof(*pipe_config
), GFP_KERNEL
);
8341 return ERR_PTR(-ENOMEM
);
8343 drm_mode_copy(&pipe_config
->adjusted_mode
, mode
);
8344 drm_mode_copy(&pipe_config
->requested_mode
, mode
);
8345 pipe_config
->cpu_transcoder
=
8346 (enum transcoder
) to_intel_crtc(crtc
)->pipe
;
8347 pipe_config
->shared_dpll
= DPLL_ID_PRIVATE
;
8350 * Sanitize sync polarity flags based on requested ones. If neither
8351 * positive or negative polarity is requested, treat this as meaning
8352 * negative polarity.
8354 if (!(pipe_config
->adjusted_mode
.flags
&
8355 (DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_NHSYNC
)))
8356 pipe_config
->adjusted_mode
.flags
|= DRM_MODE_FLAG_NHSYNC
;
8358 if (!(pipe_config
->adjusted_mode
.flags
&
8359 (DRM_MODE_FLAG_PVSYNC
| DRM_MODE_FLAG_NVSYNC
)))
8360 pipe_config
->adjusted_mode
.flags
|= DRM_MODE_FLAG_NVSYNC
;
8362 /* Compute a starting value for pipe_config->pipe_bpp taking the source
8363 * plane pixel format and any sink constraints into account. Returns the
8364 * source plane bpp so that dithering can be selected on mismatches
8365 * after encoders and crtc also have had their say. */
8366 plane_bpp
= compute_baseline_pipe_bpp(to_intel_crtc(crtc
),
8372 /* Ensure the port clock defaults are reset when retrying. */
8373 pipe_config
->port_clock
= 0;
8374 pipe_config
->pixel_multiplier
= 1;
8376 /* Fill in default crtc timings, allow encoders to overwrite them. */
8377 drm_mode_set_crtcinfo(&pipe_config
->adjusted_mode
, 0);
8379 /* Pass our mode to the connectors and the CRTC to give them a chance to
8380 * adjust it according to limitations or connector properties, and also
8381 * a chance to reject the mode entirely.
8383 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
,
8386 if (&encoder
->new_crtc
->base
!= crtc
)
8389 if (!(encoder
->compute_config(encoder
, pipe_config
))) {
8390 DRM_DEBUG_KMS("Encoder config failure\n");
8395 /* Set default port clock if not overwritten by the encoder. Needs to be
8396 * done afterwards in case the encoder adjusts the mode. */
8397 if (!pipe_config
->port_clock
)
8398 pipe_config
->port_clock
= pipe_config
->adjusted_mode
.clock
;
8400 ret
= intel_crtc_compute_config(to_intel_crtc(crtc
), pipe_config
);
8402 DRM_DEBUG_KMS("CRTC fixup failed\n");
8407 if (WARN(!retry
, "loop in pipe configuration computation\n")) {
8412 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
8417 pipe_config
->dither
= pipe_config
->pipe_bpp
!= plane_bpp
;
8418 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
8419 plane_bpp
, pipe_config
->pipe_bpp
, pipe_config
->dither
);
8424 return ERR_PTR(ret
);
8427 /* Computes which crtcs are affected and sets the relevant bits in the mask. For
8428 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
8430 intel_modeset_affected_pipes(struct drm_crtc
*crtc
, unsigned *modeset_pipes
,
8431 unsigned *prepare_pipes
, unsigned *disable_pipes
)
8433 struct intel_crtc
*intel_crtc
;
8434 struct drm_device
*dev
= crtc
->dev
;
8435 struct intel_encoder
*encoder
;
8436 struct intel_connector
*connector
;
8437 struct drm_crtc
*tmp_crtc
;
8439 *disable_pipes
= *modeset_pipes
= *prepare_pipes
= 0;
8441 /* Check which crtcs have changed outputs connected to them, these need
8442 * to be part of the prepare_pipes mask. We don't (yet) support global
8443 * modeset across multiple crtcs, so modeset_pipes will only have one
8444 * bit set at most. */
8445 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
,
8447 if (connector
->base
.encoder
== &connector
->new_encoder
->base
)
8450 if (connector
->base
.encoder
) {
8451 tmp_crtc
= connector
->base
.encoder
->crtc
;
8453 *prepare_pipes
|= 1 << to_intel_crtc(tmp_crtc
)->pipe
;
8456 if (connector
->new_encoder
)
8458 1 << connector
->new_encoder
->new_crtc
->pipe
;
8461 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
,
8463 if (encoder
->base
.crtc
== &encoder
->new_crtc
->base
)
8466 if (encoder
->base
.crtc
) {
8467 tmp_crtc
= encoder
->base
.crtc
;
8469 *prepare_pipes
|= 1 << to_intel_crtc(tmp_crtc
)->pipe
;
8472 if (encoder
->new_crtc
)
8473 *prepare_pipes
|= 1 << encoder
->new_crtc
->pipe
;
8476 /* Check for any pipes that will be fully disabled ... */
8477 list_for_each_entry(intel_crtc
, &dev
->mode_config
.crtc_list
,
8481 /* Don't try to disable disabled crtcs. */
8482 if (!intel_crtc
->base
.enabled
)
8485 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
,
8487 if (encoder
->new_crtc
== intel_crtc
)
8492 *disable_pipes
|= 1 << intel_crtc
->pipe
;
8496 /* set_mode is also used to update properties on life display pipes. */
8497 intel_crtc
= to_intel_crtc(crtc
);
8499 *prepare_pipes
|= 1 << intel_crtc
->pipe
;
8502 * For simplicity do a full modeset on any pipe where the output routing
8503 * changed. We could be more clever, but that would require us to be
8504 * more careful with calling the relevant encoder->mode_set functions.
8507 *modeset_pipes
= *prepare_pipes
;
8509 /* ... and mask these out. */
8510 *modeset_pipes
&= ~(*disable_pipes
);
8511 *prepare_pipes
&= ~(*disable_pipes
);
8514 * HACK: We don't (yet) fully support global modesets. intel_set_config
8515 * obies this rule, but the modeset restore mode of
8516 * intel_modeset_setup_hw_state does not.
8518 *modeset_pipes
&= 1 << intel_crtc
->pipe
;
8519 *prepare_pipes
&= 1 << intel_crtc
->pipe
;
8521 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
8522 *modeset_pipes
, *prepare_pipes
, *disable_pipes
);
8525 static bool intel_crtc_in_use(struct drm_crtc
*crtc
)
8527 struct drm_encoder
*encoder
;
8528 struct drm_device
*dev
= crtc
->dev
;
8530 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
)
8531 if (encoder
->crtc
== crtc
)
8538 intel_modeset_update_state(struct drm_device
*dev
, unsigned prepare_pipes
)
8540 struct intel_encoder
*intel_encoder
;
8541 struct intel_crtc
*intel_crtc
;
8542 struct drm_connector
*connector
;
8544 list_for_each_entry(intel_encoder
, &dev
->mode_config
.encoder_list
,
8546 if (!intel_encoder
->base
.crtc
)
8549 intel_crtc
= to_intel_crtc(intel_encoder
->base
.crtc
);
8551 if (prepare_pipes
& (1 << intel_crtc
->pipe
))
8552 intel_encoder
->connectors_active
= false;
8555 intel_modeset_commit_output_state(dev
);
8557 /* Update computed state. */
8558 list_for_each_entry(intel_crtc
, &dev
->mode_config
.crtc_list
,
8560 intel_crtc
->base
.enabled
= intel_crtc_in_use(&intel_crtc
->base
);
8563 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
8564 if (!connector
->encoder
|| !connector
->encoder
->crtc
)
8567 intel_crtc
= to_intel_crtc(connector
->encoder
->crtc
);
8569 if (prepare_pipes
& (1 << intel_crtc
->pipe
)) {
8570 struct drm_property
*dpms_property
=
8571 dev
->mode_config
.dpms_property
;
8573 connector
->dpms
= DRM_MODE_DPMS_ON
;
8574 drm_object_property_set_value(&connector
->base
,
8578 intel_encoder
= to_intel_encoder(connector
->encoder
);
8579 intel_encoder
->connectors_active
= true;
8585 static bool intel_fuzzy_clock_check(struct intel_crtc_config
*cur
,
8586 struct intel_crtc_config
*new)
8588 int clock1
, clock2
, diff
;
8590 clock1
= cur
->adjusted_mode
.clock
;
8591 clock2
= new->adjusted_mode
.clock
;
8593 if (clock1
== clock2
)
8596 if (!clock1
|| !clock2
)
8599 diff
= abs(clock1
- clock2
);
8601 if (((((diff
+ clock1
+ clock2
) * 100)) / (clock1
+ clock2
)) < 105)
8607 #define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
8608 list_for_each_entry((intel_crtc), \
8609 &(dev)->mode_config.crtc_list, \
8611 if (mask & (1 <<(intel_crtc)->pipe))
8614 intel_pipe_config_compare(struct drm_device
*dev
,
8615 struct intel_crtc_config
*current_config
,
8616 struct intel_crtc_config
*pipe_config
)
8618 #define PIPE_CONF_CHECK_X(name) \
8619 if (current_config->name != pipe_config->name) { \
8620 DRM_ERROR("mismatch in " #name " " \
8621 "(expected 0x%08x, found 0x%08x)\n", \
8622 current_config->name, \
8623 pipe_config->name); \
8627 #define PIPE_CONF_CHECK_I(name) \
8628 if (current_config->name != pipe_config->name) { \
8629 DRM_ERROR("mismatch in " #name " " \
8630 "(expected %i, found %i)\n", \
8631 current_config->name, \
8632 pipe_config->name); \
8636 #define PIPE_CONF_CHECK_FLAGS(name, mask) \
8637 if ((current_config->name ^ pipe_config->name) & (mask)) { \
8638 DRM_ERROR("mismatch in " #name "(" #mask ") " \
8639 "(expected %i, found %i)\n", \
8640 current_config->name & (mask), \
8641 pipe_config->name & (mask)); \
8645 #define PIPE_CONF_QUIRK(quirk) \
8646 ((current_config->quirks | pipe_config->quirks) & (quirk))
8648 PIPE_CONF_CHECK_I(cpu_transcoder
);
8650 PIPE_CONF_CHECK_I(has_pch_encoder
);
8651 PIPE_CONF_CHECK_I(fdi_lanes
);
8652 PIPE_CONF_CHECK_I(fdi_m_n
.gmch_m
);
8653 PIPE_CONF_CHECK_I(fdi_m_n
.gmch_n
);
8654 PIPE_CONF_CHECK_I(fdi_m_n
.link_m
);
8655 PIPE_CONF_CHECK_I(fdi_m_n
.link_n
);
8656 PIPE_CONF_CHECK_I(fdi_m_n
.tu
);
8658 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_hdisplay
);
8659 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_htotal
);
8660 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_hblank_start
);
8661 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_hblank_end
);
8662 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_hsync_start
);
8663 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_hsync_end
);
8665 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_vdisplay
);
8666 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_vtotal
);
8667 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_vblank_start
);
8668 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_vblank_end
);
8669 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_vsync_start
);
8670 PIPE_CONF_CHECK_I(adjusted_mode
.crtc_vsync_end
);
8672 PIPE_CONF_CHECK_I(pixel_multiplier
);
8674 PIPE_CONF_CHECK_FLAGS(adjusted_mode
.flags
,
8675 DRM_MODE_FLAG_INTERLACE
);
8677 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS
)) {
8678 PIPE_CONF_CHECK_FLAGS(adjusted_mode
.flags
,
8679 DRM_MODE_FLAG_PHSYNC
);
8680 PIPE_CONF_CHECK_FLAGS(adjusted_mode
.flags
,
8681 DRM_MODE_FLAG_NHSYNC
);
8682 PIPE_CONF_CHECK_FLAGS(adjusted_mode
.flags
,
8683 DRM_MODE_FLAG_PVSYNC
);
8684 PIPE_CONF_CHECK_FLAGS(adjusted_mode
.flags
,
8685 DRM_MODE_FLAG_NVSYNC
);
8688 PIPE_CONF_CHECK_I(requested_mode
.hdisplay
);
8689 PIPE_CONF_CHECK_I(requested_mode
.vdisplay
);
8692 * FIXME: BIOS likes to set up a cloned config with lvds+external
8693 * screen. Since we don't yet re-compute the pipe config when moving
8694 * just the lvds port away to another pipe the sw tracking won't match.
8696 * Proper atomic modesets with recomputed global state will fix this.
8697 * Until then just don't check gmch state for inherited modes.
8699 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE
)) {
8700 PIPE_CONF_CHECK_I(gmch_pfit
.control
);
8701 /* pfit ratios are autocomputed by the hw on gen4+ */
8702 if (INTEL_INFO(dev
)->gen
< 4)
8703 PIPE_CONF_CHECK_I(gmch_pfit
.pgm_ratios
);
8704 PIPE_CONF_CHECK_I(gmch_pfit
.lvds_border_bits
);
8707 PIPE_CONF_CHECK_I(pch_pfit
.enabled
);
8708 if (current_config
->pch_pfit
.enabled
) {
8709 PIPE_CONF_CHECK_I(pch_pfit
.pos
);
8710 PIPE_CONF_CHECK_I(pch_pfit
.size
);
8713 PIPE_CONF_CHECK_I(ips_enabled
);
8715 PIPE_CONF_CHECK_I(shared_dpll
);
8716 PIPE_CONF_CHECK_X(dpll_hw_state
.dpll
);
8717 PIPE_CONF_CHECK_X(dpll_hw_state
.dpll_md
);
8718 PIPE_CONF_CHECK_X(dpll_hw_state
.fp0
);
8719 PIPE_CONF_CHECK_X(dpll_hw_state
.fp1
);
8721 if (IS_G4X(dev
) || INTEL_INFO(dev
)->gen
>= 5)
8722 PIPE_CONF_CHECK_I(pipe_bpp
);
8724 #undef PIPE_CONF_CHECK_X
8725 #undef PIPE_CONF_CHECK_I
8726 #undef PIPE_CONF_CHECK_FLAGS
8727 #undef PIPE_CONF_QUIRK
8729 if (!IS_HASWELL(dev
)) {
8730 if (!intel_fuzzy_clock_check(current_config
, pipe_config
)) {
8731 DRM_ERROR("mismatch in clock (expected %d, found %d)\n",
8732 current_config
->adjusted_mode
.clock
,
8733 pipe_config
->adjusted_mode
.clock
);
8742 check_connector_state(struct drm_device
*dev
)
8744 struct intel_connector
*connector
;
8746 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
,
8748 /* This also checks the encoder/connector hw state with the
8749 * ->get_hw_state callbacks. */
8750 intel_connector_check_state(connector
);
8752 WARN(&connector
->new_encoder
->base
!= connector
->base
.encoder
,
8753 "connector's staged encoder doesn't match current encoder\n");
8758 check_encoder_state(struct drm_device
*dev
)
8760 struct intel_encoder
*encoder
;
8761 struct intel_connector
*connector
;
8763 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
,
8765 bool enabled
= false;
8766 bool active
= false;
8767 enum pipe pipe
, tracked_pipe
;
8769 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
8770 encoder
->base
.base
.id
,
8771 drm_get_encoder_name(&encoder
->base
));
8773 WARN(&encoder
->new_crtc
->base
!= encoder
->base
.crtc
,
8774 "encoder's stage crtc doesn't match current crtc\n");
8775 WARN(encoder
->connectors_active
&& !encoder
->base
.crtc
,
8776 "encoder's active_connectors set, but no crtc\n");
8778 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
,
8780 if (connector
->base
.encoder
!= &encoder
->base
)
8783 if (connector
->base
.dpms
!= DRM_MODE_DPMS_OFF
)
8786 WARN(!!encoder
->base
.crtc
!= enabled
,
8787 "encoder's enabled state mismatch "
8788 "(expected %i, found %i)\n",
8789 !!encoder
->base
.crtc
, enabled
);
8790 WARN(active
&& !encoder
->base
.crtc
,
8791 "active encoder with no crtc\n");
8793 WARN(encoder
->connectors_active
!= active
,
8794 "encoder's computed active state doesn't match tracked active state "
8795 "(expected %i, found %i)\n", active
, encoder
->connectors_active
);
8797 active
= encoder
->get_hw_state(encoder
, &pipe
);
8798 WARN(active
!= encoder
->connectors_active
,
8799 "encoder's hw state doesn't match sw tracking "
8800 "(expected %i, found %i)\n",
8801 encoder
->connectors_active
, active
);
8803 if (!encoder
->base
.crtc
)
8806 tracked_pipe
= to_intel_crtc(encoder
->base
.crtc
)->pipe
;
8807 WARN(active
&& pipe
!= tracked_pipe
,
8808 "active encoder's pipe doesn't match"
8809 "(expected %i, found %i)\n",
8810 tracked_pipe
, pipe
);
8816 check_crtc_state(struct drm_device
*dev
)
8818 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
8819 struct intel_crtc
*crtc
;
8820 struct intel_encoder
*encoder
;
8821 struct intel_crtc_config pipe_config
;
8823 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
,
8825 bool enabled
= false;
8826 bool active
= false;
8828 memset(&pipe_config
, 0, sizeof(pipe_config
));
8830 DRM_DEBUG_KMS("[CRTC:%d]\n",
8831 crtc
->base
.base
.id
);
8833 WARN(crtc
->active
&& !crtc
->base
.enabled
,
8834 "active crtc, but not enabled in sw tracking\n");
8836 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
,
8838 if (encoder
->base
.crtc
!= &crtc
->base
)
8841 if (encoder
->connectors_active
)
8845 WARN(active
!= crtc
->active
,
8846 "crtc's computed active state doesn't match tracked active state "
8847 "(expected %i, found %i)\n", active
, crtc
->active
);
8848 WARN(enabled
!= crtc
->base
.enabled
,
8849 "crtc's computed enabled state doesn't match tracked enabled state "
8850 "(expected %i, found %i)\n", enabled
, crtc
->base
.enabled
);
8852 active
= dev_priv
->display
.get_pipe_config(crtc
,
8855 /* hw state is inconsistent with the pipe A quirk */
8856 if (crtc
->pipe
== PIPE_A
&& dev_priv
->quirks
& QUIRK_PIPEA_FORCE
)
8857 active
= crtc
->active
;
8859 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
,
8862 if (encoder
->base
.crtc
!= &crtc
->base
)
8864 if (encoder
->get_config
&&
8865 encoder
->get_hw_state(encoder
, &pipe
))
8866 encoder
->get_config(encoder
, &pipe_config
);
8869 if (dev_priv
->display
.get_clock
)
8870 dev_priv
->display
.get_clock(crtc
, &pipe_config
);
8872 WARN(crtc
->active
!= active
,
8873 "crtc active state doesn't match with hw state "
8874 "(expected %i, found %i)\n", crtc
->active
, active
);
8877 !intel_pipe_config_compare(dev
, &crtc
->config
, &pipe_config
)) {
8878 WARN(1, "pipe state doesn't match!\n");
8879 intel_dump_pipe_config(crtc
, &pipe_config
,
8881 intel_dump_pipe_config(crtc
, &crtc
->config
,
8888 check_shared_dpll_state(struct drm_device
*dev
)
8890 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
8891 struct intel_crtc
*crtc
;
8892 struct intel_dpll_hw_state dpll_hw_state
;
8895 for (i
= 0; i
< dev_priv
->num_shared_dpll
; i
++) {
8896 struct intel_shared_dpll
*pll
= &dev_priv
->shared_dplls
[i
];
8897 int enabled_crtcs
= 0, active_crtcs
= 0;
8900 memset(&dpll_hw_state
, 0, sizeof(dpll_hw_state
));
8902 DRM_DEBUG_KMS("%s\n", pll
->name
);
8904 active
= pll
->get_hw_state(dev_priv
, pll
, &dpll_hw_state
);
8906 WARN(pll
->active
> pll
->refcount
,
8907 "more active pll users than references: %i vs %i\n",
8908 pll
->active
, pll
->refcount
);
8909 WARN(pll
->active
&& !pll
->on
,
8910 "pll in active use but not on in sw tracking\n");
8911 WARN(pll
->on
&& !pll
->active
,
8912 "pll in on but not on in use in sw tracking\n");
8913 WARN(pll
->on
!= active
,
8914 "pll on state mismatch (expected %i, found %i)\n",
8917 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
,
8919 if (crtc
->base
.enabled
&& intel_crtc_to_shared_dpll(crtc
) == pll
)
8921 if (crtc
->active
&& intel_crtc_to_shared_dpll(crtc
) == pll
)
8924 WARN(pll
->active
!= active_crtcs
,
8925 "pll active crtcs mismatch (expected %i, found %i)\n",
8926 pll
->active
, active_crtcs
);
8927 WARN(pll
->refcount
!= enabled_crtcs
,
8928 "pll enabled crtcs mismatch (expected %i, found %i)\n",
8929 pll
->refcount
, enabled_crtcs
);
8931 WARN(pll
->on
&& memcmp(&pll
->hw_state
, &dpll_hw_state
,
8932 sizeof(dpll_hw_state
)),
8933 "pll hw state mismatch\n");
8938 intel_modeset_check_state(struct drm_device
*dev
)
8940 check_connector_state(dev
);
8941 check_encoder_state(dev
);
8942 check_crtc_state(dev
);
8943 check_shared_dpll_state(dev
);
8946 static int __intel_set_mode(struct drm_crtc
*crtc
,
8947 struct drm_display_mode
*mode
,
8948 int x
, int y
, struct drm_framebuffer
*fb
)
8950 struct drm_device
*dev
= crtc
->dev
;
8951 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
8952 struct drm_display_mode
*saved_mode
, *saved_hwmode
;
8953 struct intel_crtc_config
*pipe_config
= NULL
;
8954 struct intel_crtc
*intel_crtc
;
8955 unsigned disable_pipes
, prepare_pipes
, modeset_pipes
;
8958 saved_mode
= kmalloc(2 * sizeof(*saved_mode
), GFP_KERNEL
);
8961 saved_hwmode
= saved_mode
+ 1;
8963 intel_modeset_affected_pipes(crtc
, &modeset_pipes
,
8964 &prepare_pipes
, &disable_pipes
);
8966 *saved_hwmode
= crtc
->hwmode
;
8967 *saved_mode
= crtc
->mode
;
8969 /* Hack: Because we don't (yet) support global modeset on multiple
8970 * crtcs, we don't keep track of the new mode for more than one crtc.
8971 * Hence simply check whether any bit is set in modeset_pipes in all the
8972 * pieces of code that are not yet converted to deal with mutliple crtcs
8973 * changing their mode at the same time. */
8974 if (modeset_pipes
) {
8975 pipe_config
= intel_modeset_pipe_config(crtc
, fb
, mode
);
8976 if (IS_ERR(pipe_config
)) {
8977 ret
= PTR_ERR(pipe_config
);
8982 intel_dump_pipe_config(to_intel_crtc(crtc
), pipe_config
,
8986 for_each_intel_crtc_masked(dev
, disable_pipes
, intel_crtc
)
8987 intel_crtc_disable(&intel_crtc
->base
);
8989 for_each_intel_crtc_masked(dev
, prepare_pipes
, intel_crtc
) {
8990 if (intel_crtc
->base
.enabled
)
8991 dev_priv
->display
.crtc_disable(&intel_crtc
->base
);
8994 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
8995 * to set it here already despite that we pass it down the callchain.
8997 if (modeset_pipes
) {
8999 /* mode_set/enable/disable functions rely on a correct pipe
9001 to_intel_crtc(crtc
)->config
= *pipe_config
;
9004 /* Only after disabling all output pipelines that will be changed can we
9005 * update the the output configuration. */
9006 intel_modeset_update_state(dev
, prepare_pipes
);
9008 if (dev_priv
->display
.modeset_global_resources
)
9009 dev_priv
->display
.modeset_global_resources(dev
);
9011 /* Set up the DPLL and any encoders state that needs to adjust or depend
9014 for_each_intel_crtc_masked(dev
, modeset_pipes
, intel_crtc
) {
9015 ret
= intel_crtc_mode_set(&intel_crtc
->base
,
9021 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
9022 for_each_intel_crtc_masked(dev
, prepare_pipes
, intel_crtc
)
9023 dev_priv
->display
.crtc_enable(&intel_crtc
->base
);
9025 if (modeset_pipes
) {
9026 /* Store real post-adjustment hardware mode. */
9027 crtc
->hwmode
= pipe_config
->adjusted_mode
;
9029 /* Calculate and store various constants which
9030 * are later needed by vblank and swap-completion
9031 * timestamping. They are derived from true hwmode.
9033 drm_calc_timestamping_constants(crtc
);
9036 /* FIXME: add subpixel order */
9038 if (ret
&& crtc
->enabled
) {
9039 crtc
->hwmode
= *saved_hwmode
;
9040 crtc
->mode
= *saved_mode
;
9049 static int intel_set_mode(struct drm_crtc
*crtc
,
9050 struct drm_display_mode
*mode
,
9051 int x
, int y
, struct drm_framebuffer
*fb
)
9055 ret
= __intel_set_mode(crtc
, mode
, x
, y
, fb
);
9058 intel_modeset_check_state(crtc
->dev
);
9063 void intel_crtc_restore_mode(struct drm_crtc
*crtc
)
9065 intel_set_mode(crtc
, &crtc
->mode
, crtc
->x
, crtc
->y
, crtc
->fb
);
9068 #undef for_each_intel_crtc_masked
9070 static void intel_set_config_free(struct intel_set_config
*config
)
9075 kfree(config
->save_connector_encoders
);
9076 kfree(config
->save_encoder_crtcs
);
9080 static int intel_set_config_save_state(struct drm_device
*dev
,
9081 struct intel_set_config
*config
)
9083 struct drm_encoder
*encoder
;
9084 struct drm_connector
*connector
;
9087 config
->save_encoder_crtcs
=
9088 kcalloc(dev
->mode_config
.num_encoder
,
9089 sizeof(struct drm_crtc
*), GFP_KERNEL
);
9090 if (!config
->save_encoder_crtcs
)
9093 config
->save_connector_encoders
=
9094 kcalloc(dev
->mode_config
.num_connector
,
9095 sizeof(struct drm_encoder
*), GFP_KERNEL
);
9096 if (!config
->save_connector_encoders
)
9099 /* Copy data. Note that driver private data is not affected.
9100 * Should anything bad happen only the expected state is
9101 * restored, not the drivers personal bookkeeping.
9104 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
9105 config
->save_encoder_crtcs
[count
++] = encoder
->crtc
;
9109 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
9110 config
->save_connector_encoders
[count
++] = connector
->encoder
;
9116 static void intel_set_config_restore_state(struct drm_device
*dev
,
9117 struct intel_set_config
*config
)
9119 struct intel_encoder
*encoder
;
9120 struct intel_connector
*connector
;
9124 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, base
.head
) {
9126 to_intel_crtc(config
->save_encoder_crtcs
[count
++]);
9130 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, base
.head
) {
9131 connector
->new_encoder
=
9132 to_intel_encoder(config
->save_connector_encoders
[count
++]);
9137 is_crtc_connector_off(struct drm_mode_set
*set
)
9141 if (set
->num_connectors
== 0)
9144 if (WARN_ON(set
->connectors
== NULL
))
9147 for (i
= 0; i
< set
->num_connectors
; i
++)
9148 if (set
->connectors
[i
]->encoder
&&
9149 set
->connectors
[i
]->encoder
->crtc
== set
->crtc
&&
9150 set
->connectors
[i
]->dpms
!= DRM_MODE_DPMS_ON
)
9157 intel_set_config_compute_mode_changes(struct drm_mode_set
*set
,
9158 struct intel_set_config
*config
)
9161 /* We should be able to check here if the fb has the same properties
9162 * and then just flip_or_move it */
9163 if (is_crtc_connector_off(set
)) {
9164 config
->mode_changed
= true;
9165 } else if (set
->crtc
->fb
!= set
->fb
) {
9166 /* If we have no fb then treat it as a full mode set */
9167 if (set
->crtc
->fb
== NULL
) {
9168 struct intel_crtc
*intel_crtc
=
9169 to_intel_crtc(set
->crtc
);
9171 if (intel_crtc
->active
&& i915_fastboot
) {
9172 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
9173 config
->fb_changed
= true;
9175 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
9176 config
->mode_changed
= true;
9178 } else if (set
->fb
== NULL
) {
9179 config
->mode_changed
= true;
9180 } else if (set
->fb
->pixel_format
!=
9181 set
->crtc
->fb
->pixel_format
) {
9182 config
->mode_changed
= true;
9184 config
->fb_changed
= true;
9188 if (set
->fb
&& (set
->x
!= set
->crtc
->x
|| set
->y
!= set
->crtc
->y
))
9189 config
->fb_changed
= true;
9191 if (set
->mode
&& !drm_mode_equal(set
->mode
, &set
->crtc
->mode
)) {
9192 DRM_DEBUG_KMS("modes are different, full mode set\n");
9193 drm_mode_debug_printmodeline(&set
->crtc
->mode
);
9194 drm_mode_debug_printmodeline(set
->mode
);
9195 config
->mode_changed
= true;
9198 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
9199 set
->crtc
->base
.id
, config
->mode_changed
, config
->fb_changed
);
9203 intel_modeset_stage_output_state(struct drm_device
*dev
,
9204 struct drm_mode_set
*set
,
9205 struct intel_set_config
*config
)
9207 struct drm_crtc
*new_crtc
;
9208 struct intel_connector
*connector
;
9209 struct intel_encoder
*encoder
;
9212 /* The upper layers ensure that we either disable a crtc or have a list
9213 * of connectors. For paranoia, double-check this. */
9214 WARN_ON(!set
->fb
&& (set
->num_connectors
!= 0));
9215 WARN_ON(set
->fb
&& (set
->num_connectors
== 0));
9217 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
,
9219 /* Otherwise traverse passed in connector list and get encoders
9221 for (ro
= 0; ro
< set
->num_connectors
; ro
++) {
9222 if (set
->connectors
[ro
] == &connector
->base
) {
9223 connector
->new_encoder
= connector
->encoder
;
9228 /* If we disable the crtc, disable all its connectors. Also, if
9229 * the connector is on the changing crtc but not on the new
9230 * connector list, disable it. */
9231 if ((!set
->fb
|| ro
== set
->num_connectors
) &&
9232 connector
->base
.encoder
&&
9233 connector
->base
.encoder
->crtc
== set
->crtc
) {
9234 connector
->new_encoder
= NULL
;
9236 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
9237 connector
->base
.base
.id
,
9238 drm_get_connector_name(&connector
->base
));
9242 if (&connector
->new_encoder
->base
!= connector
->base
.encoder
) {
9243 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
9244 config
->mode_changed
= true;
9247 /* connector->new_encoder is now updated for all connectors. */
9249 /* Update crtc of enabled connectors. */
9250 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
,
9252 if (!connector
->new_encoder
)
9255 new_crtc
= connector
->new_encoder
->base
.crtc
;
9257 for (ro
= 0; ro
< set
->num_connectors
; ro
++) {
9258 if (set
->connectors
[ro
] == &connector
->base
)
9259 new_crtc
= set
->crtc
;
9262 /* Make sure the new CRTC will work with the encoder */
9263 if (!intel_encoder_crtc_ok(&connector
->new_encoder
->base
,
9267 connector
->encoder
->new_crtc
= to_intel_crtc(new_crtc
);
9269 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
9270 connector
->base
.base
.id
,
9271 drm_get_connector_name(&connector
->base
),
9275 /* Check for any encoders that needs to be disabled. */
9276 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
,
9278 list_for_each_entry(connector
,
9279 &dev
->mode_config
.connector_list
,
9281 if (connector
->new_encoder
== encoder
) {
9282 WARN_ON(!connector
->new_encoder
->new_crtc
);
9287 encoder
->new_crtc
= NULL
;
9289 /* Only now check for crtc changes so we don't miss encoders
9290 * that will be disabled. */
9291 if (&encoder
->new_crtc
->base
!= encoder
->base
.crtc
) {
9292 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
9293 config
->mode_changed
= true;
9296 /* Now we've also updated encoder->new_crtc for all encoders. */
9301 static int intel_crtc_set_config(struct drm_mode_set
*set
)
9303 struct drm_device
*dev
;
9304 struct drm_mode_set save_set
;
9305 struct intel_set_config
*config
;
9310 BUG_ON(!set
->crtc
->helper_private
);
9312 /* Enforce sane interface api - has been abused by the fb helper. */
9313 BUG_ON(!set
->mode
&& set
->fb
);
9314 BUG_ON(set
->fb
&& set
->num_connectors
== 0);
9317 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
9318 set
->crtc
->base
.id
, set
->fb
->base
.id
,
9319 (int)set
->num_connectors
, set
->x
, set
->y
);
9321 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set
->crtc
->base
.id
);
9324 dev
= set
->crtc
->dev
;
9327 config
= kzalloc(sizeof(*config
), GFP_KERNEL
);
9331 ret
= intel_set_config_save_state(dev
, config
);
9335 save_set
.crtc
= set
->crtc
;
9336 save_set
.mode
= &set
->crtc
->mode
;
9337 save_set
.x
= set
->crtc
->x
;
9338 save_set
.y
= set
->crtc
->y
;
9339 save_set
.fb
= set
->crtc
->fb
;
9341 /* Compute whether we need a full modeset, only an fb base update or no
9342 * change at all. In the future we might also check whether only the
9343 * mode changed, e.g. for LVDS where we only change the panel fitter in
9345 intel_set_config_compute_mode_changes(set
, config
);
9347 ret
= intel_modeset_stage_output_state(dev
, set
, config
);
9351 if (config
->mode_changed
) {
9352 ret
= intel_set_mode(set
->crtc
, set
->mode
,
9353 set
->x
, set
->y
, set
->fb
);
9354 } else if (config
->fb_changed
) {
9355 intel_crtc_wait_for_pending_flips(set
->crtc
);
9357 ret
= intel_pipe_set_base(set
->crtc
,
9358 set
->x
, set
->y
, set
->fb
);
9362 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
9363 set
->crtc
->base
.id
, ret
);
9365 intel_set_config_restore_state(dev
, config
);
9367 /* Try to restore the config */
9368 if (config
->mode_changed
&&
9369 intel_set_mode(save_set
.crtc
, save_set
.mode
,
9370 save_set
.x
, save_set
.y
, save_set
.fb
))
9371 DRM_ERROR("failed to restore config after modeset failure\n");
9375 intel_set_config_free(config
);
9379 static const struct drm_crtc_funcs intel_crtc_funcs
= {
9380 .cursor_set
= intel_crtc_cursor_set
,
9381 .cursor_move
= intel_crtc_cursor_move
,
9382 .gamma_set
= intel_crtc_gamma_set
,
9383 .set_config
= intel_crtc_set_config
,
9384 .destroy
= intel_crtc_destroy
,
9385 .page_flip
= intel_crtc_page_flip
,
9388 static void intel_cpu_pll_init(struct drm_device
*dev
)
9391 intel_ddi_pll_init(dev
);
9394 static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private
*dev_priv
,
9395 struct intel_shared_dpll
*pll
,
9396 struct intel_dpll_hw_state
*hw_state
)
9400 val
= I915_READ(PCH_DPLL(pll
->id
));
9401 hw_state
->dpll
= val
;
9402 hw_state
->fp0
= I915_READ(PCH_FP0(pll
->id
));
9403 hw_state
->fp1
= I915_READ(PCH_FP1(pll
->id
));
9405 return val
& DPLL_VCO_ENABLE
;
9408 static void ibx_pch_dpll_mode_set(struct drm_i915_private
*dev_priv
,
9409 struct intel_shared_dpll
*pll
)
9411 I915_WRITE(PCH_FP0(pll
->id
), pll
->hw_state
.fp0
);
9412 I915_WRITE(PCH_FP1(pll
->id
), pll
->hw_state
.fp1
);
9415 static void ibx_pch_dpll_enable(struct drm_i915_private
*dev_priv
,
9416 struct intel_shared_dpll
*pll
)
9418 /* PCH refclock must be enabled first */
9419 assert_pch_refclk_enabled(dev_priv
);
9421 I915_WRITE(PCH_DPLL(pll
->id
), pll
->hw_state
.dpll
);
9423 /* Wait for the clocks to stabilize. */
9424 POSTING_READ(PCH_DPLL(pll
->id
));
9427 /* The pixel multiplier can only be updated once the
9428 * DPLL is enabled and the clocks are stable.
9430 * So write it again.
9432 I915_WRITE(PCH_DPLL(pll
->id
), pll
->hw_state
.dpll
);
9433 POSTING_READ(PCH_DPLL(pll
->id
));
9437 static void ibx_pch_dpll_disable(struct drm_i915_private
*dev_priv
,
9438 struct intel_shared_dpll
*pll
)
9440 struct drm_device
*dev
= dev_priv
->dev
;
9441 struct intel_crtc
*crtc
;
9443 /* Make sure no transcoder isn't still depending on us. */
9444 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, base
.head
) {
9445 if (intel_crtc_to_shared_dpll(crtc
) == pll
)
9446 assert_pch_transcoder_disabled(dev_priv
, crtc
->pipe
);
9449 I915_WRITE(PCH_DPLL(pll
->id
), 0);
9450 POSTING_READ(PCH_DPLL(pll
->id
));
9454 static char *ibx_pch_dpll_names
[] = {
9459 static void ibx_pch_dpll_init(struct drm_device
*dev
)
9461 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
9464 dev_priv
->num_shared_dpll
= 2;
9466 for (i
= 0; i
< dev_priv
->num_shared_dpll
; i
++) {
9467 dev_priv
->shared_dplls
[i
].id
= i
;
9468 dev_priv
->shared_dplls
[i
].name
= ibx_pch_dpll_names
[i
];
9469 dev_priv
->shared_dplls
[i
].mode_set
= ibx_pch_dpll_mode_set
;
9470 dev_priv
->shared_dplls
[i
].enable
= ibx_pch_dpll_enable
;
9471 dev_priv
->shared_dplls
[i
].disable
= ibx_pch_dpll_disable
;
9472 dev_priv
->shared_dplls
[i
].get_hw_state
=
9473 ibx_pch_dpll_get_hw_state
;
9477 static void intel_shared_dpll_init(struct drm_device
*dev
)
9479 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
9481 if (HAS_PCH_IBX(dev
) || HAS_PCH_CPT(dev
))
9482 ibx_pch_dpll_init(dev
);
9484 dev_priv
->num_shared_dpll
= 0;
9486 BUG_ON(dev_priv
->num_shared_dpll
> I915_NUM_PLLS
);
9487 DRM_DEBUG_KMS("%i shared PLLs initialized\n",
9488 dev_priv
->num_shared_dpll
);
9491 static void intel_crtc_init(struct drm_device
*dev
, int pipe
)
9493 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
9494 struct intel_crtc
*intel_crtc
;
9497 intel_crtc
= kzalloc(sizeof(struct intel_crtc
) + (INTELFB_CONN_LIMIT
* sizeof(struct drm_connector
*)), GFP_KERNEL
);
9498 if (intel_crtc
== NULL
)
9501 drm_crtc_init(dev
, &intel_crtc
->base
, &intel_crtc_funcs
);
9503 drm_mode_crtc_set_gamma_size(&intel_crtc
->base
, 256);
9504 for (i
= 0; i
< 256; i
++) {
9505 intel_crtc
->lut_r
[i
] = i
;
9506 intel_crtc
->lut_g
[i
] = i
;
9507 intel_crtc
->lut_b
[i
] = i
;
9510 /* Swap pipes & planes for FBC on pre-965 */
9511 intel_crtc
->pipe
= pipe
;
9512 intel_crtc
->plane
= pipe
;
9513 if (IS_MOBILE(dev
) && IS_GEN3(dev
)) {
9514 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
9515 intel_crtc
->plane
= !pipe
;
9518 BUG_ON(pipe
>= ARRAY_SIZE(dev_priv
->plane_to_crtc_mapping
) ||
9519 dev_priv
->plane_to_crtc_mapping
[intel_crtc
->plane
] != NULL
);
9520 dev_priv
->plane_to_crtc_mapping
[intel_crtc
->plane
] = &intel_crtc
->base
;
9521 dev_priv
->pipe_to_crtc_mapping
[intel_crtc
->pipe
] = &intel_crtc
->base
;
9523 drm_crtc_helper_add(&intel_crtc
->base
, &intel_helper_funcs
);
9526 int intel_get_pipe_from_crtc_id(struct drm_device
*dev
, void *data
,
9527 struct drm_file
*file
)
9529 struct drm_i915_get_pipe_from_crtc_id
*pipe_from_crtc_id
= data
;
9530 struct drm_mode_object
*drmmode_obj
;
9531 struct intel_crtc
*crtc
;
9533 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
9536 drmmode_obj
= drm_mode_object_find(dev
, pipe_from_crtc_id
->crtc_id
,
9537 DRM_MODE_OBJECT_CRTC
);
9540 DRM_ERROR("no such CRTC id\n");
9544 crtc
= to_intel_crtc(obj_to_crtc(drmmode_obj
));
9545 pipe_from_crtc_id
->pipe
= crtc
->pipe
;
9550 static int intel_encoder_clones(struct intel_encoder
*encoder
)
9552 struct drm_device
*dev
= encoder
->base
.dev
;
9553 struct intel_encoder
*source_encoder
;
9557 list_for_each_entry(source_encoder
,
9558 &dev
->mode_config
.encoder_list
, base
.head
) {
9560 if (encoder
== source_encoder
)
9561 index_mask
|= (1 << entry
);
9563 /* Intel hw has only one MUX where enocoders could be cloned. */
9564 if (encoder
->cloneable
&& source_encoder
->cloneable
)
9565 index_mask
|= (1 << entry
);
9573 static bool has_edp_a(struct drm_device
*dev
)
9575 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
9577 if (!IS_MOBILE(dev
))
9580 if ((I915_READ(DP_A
) & DP_DETECTED
) == 0)
9584 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES
) & ILK_eDP_A_DISABLE
))
9590 static void intel_setup_outputs(struct drm_device
*dev
)
9592 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
9593 struct intel_encoder
*encoder
;
9594 bool dpd_is_edp
= false;
9596 intel_lvds_init(dev
);
9599 intel_crt_init(dev
);
9604 /* Haswell uses DDI functions to detect digital outputs */
9605 found
= I915_READ(DDI_BUF_CTL_A
) & DDI_INIT_DISPLAY_DETECTED
;
9606 /* DDI A only supports eDP */
9608 intel_ddi_init(dev
, PORT_A
);
9610 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
9612 found
= I915_READ(SFUSE_STRAP
);
9614 if (found
& SFUSE_STRAP_DDIB_DETECTED
)
9615 intel_ddi_init(dev
, PORT_B
);
9616 if (found
& SFUSE_STRAP_DDIC_DETECTED
)
9617 intel_ddi_init(dev
, PORT_C
);
9618 if (found
& SFUSE_STRAP_DDID_DETECTED
)
9619 intel_ddi_init(dev
, PORT_D
);
9620 } else if (HAS_PCH_SPLIT(dev
)) {
9622 dpd_is_edp
= intel_dpd_is_edp(dev
);
9625 intel_dp_init(dev
, DP_A
, PORT_A
);
9627 if (I915_READ(PCH_HDMIB
) & SDVO_DETECTED
) {
9628 /* PCH SDVOB multiplex with HDMIB */
9629 found
= intel_sdvo_init(dev
, PCH_SDVOB
, true);
9631 intel_hdmi_init(dev
, PCH_HDMIB
, PORT_B
);
9632 if (!found
&& (I915_READ(PCH_DP_B
) & DP_DETECTED
))
9633 intel_dp_init(dev
, PCH_DP_B
, PORT_B
);
9636 if (I915_READ(PCH_HDMIC
) & SDVO_DETECTED
)
9637 intel_hdmi_init(dev
, PCH_HDMIC
, PORT_C
);
9639 if (!dpd_is_edp
&& I915_READ(PCH_HDMID
) & SDVO_DETECTED
)
9640 intel_hdmi_init(dev
, PCH_HDMID
, PORT_D
);
9642 if (I915_READ(PCH_DP_C
) & DP_DETECTED
)
9643 intel_dp_init(dev
, PCH_DP_C
, PORT_C
);
9645 if (I915_READ(PCH_DP_D
) & DP_DETECTED
)
9646 intel_dp_init(dev
, PCH_DP_D
, PORT_D
);
9647 } else if (IS_VALLEYVIEW(dev
)) {
9648 /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */
9649 if (I915_READ(VLV_DISPLAY_BASE
+ GEN4_HDMIC
) & SDVO_DETECTED
) {
9650 intel_hdmi_init(dev
, VLV_DISPLAY_BASE
+ GEN4_HDMIC
,
9652 if (I915_READ(VLV_DISPLAY_BASE
+ DP_C
) & DP_DETECTED
)
9653 intel_dp_init(dev
, VLV_DISPLAY_BASE
+ DP_C
,
9657 if (I915_READ(VLV_DISPLAY_BASE
+ GEN4_HDMIB
) & SDVO_DETECTED
) {
9658 intel_hdmi_init(dev
, VLV_DISPLAY_BASE
+ GEN4_HDMIB
,
9660 if (I915_READ(VLV_DISPLAY_BASE
+ DP_B
) & DP_DETECTED
)
9661 intel_dp_init(dev
, VLV_DISPLAY_BASE
+ DP_B
, PORT_B
);
9663 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev
)) {
9666 if (I915_READ(GEN3_SDVOB
) & SDVO_DETECTED
) {
9667 DRM_DEBUG_KMS("probing SDVOB\n");
9668 found
= intel_sdvo_init(dev
, GEN3_SDVOB
, true);
9669 if (!found
&& SUPPORTS_INTEGRATED_HDMI(dev
)) {
9670 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
9671 intel_hdmi_init(dev
, GEN4_HDMIB
, PORT_B
);
9674 if (!found
&& SUPPORTS_INTEGRATED_DP(dev
))
9675 intel_dp_init(dev
, DP_B
, PORT_B
);
9678 /* Before G4X SDVOC doesn't have its own detect register */
9680 if (I915_READ(GEN3_SDVOB
) & SDVO_DETECTED
) {
9681 DRM_DEBUG_KMS("probing SDVOC\n");
9682 found
= intel_sdvo_init(dev
, GEN3_SDVOC
, false);
9685 if (!found
&& (I915_READ(GEN3_SDVOC
) & SDVO_DETECTED
)) {
9687 if (SUPPORTS_INTEGRATED_HDMI(dev
)) {
9688 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
9689 intel_hdmi_init(dev
, GEN4_HDMIC
, PORT_C
);
9691 if (SUPPORTS_INTEGRATED_DP(dev
))
9692 intel_dp_init(dev
, DP_C
, PORT_C
);
9695 if (SUPPORTS_INTEGRATED_DP(dev
) &&
9696 (I915_READ(DP_D
) & DP_DETECTED
))
9697 intel_dp_init(dev
, DP_D
, PORT_D
);
9698 } else if (IS_GEN2(dev
))
9699 intel_dvo_init(dev
);
9701 if (SUPPORTS_TV(dev
))
9704 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, base
.head
) {
9705 encoder
->base
.possible_crtcs
= encoder
->crtc_mask
;
9706 encoder
->base
.possible_clones
=
9707 intel_encoder_clones(encoder
);
9710 intel_init_pch_refclk(dev
);
9712 drm_helper_move_panel_connectors_to_head(dev
);
9715 void intel_framebuffer_fini(struct intel_framebuffer
*fb
)
9717 drm_framebuffer_cleanup(&fb
->base
);
9718 drm_gem_object_unreference_unlocked(&fb
->obj
->base
);
9721 static void intel_user_framebuffer_destroy(struct drm_framebuffer
*fb
)
9723 struct intel_framebuffer
*intel_fb
= to_intel_framebuffer(fb
);
9725 intel_framebuffer_fini(intel_fb
);
9729 static int intel_user_framebuffer_create_handle(struct drm_framebuffer
*fb
,
9730 struct drm_file
*file
,
9731 unsigned int *handle
)
9733 struct intel_framebuffer
*intel_fb
= to_intel_framebuffer(fb
);
9734 struct drm_i915_gem_object
*obj
= intel_fb
->obj
;
9736 return drm_gem_handle_create(file
, &obj
->base
, handle
);
9739 static const struct drm_framebuffer_funcs intel_fb_funcs
= {
9740 .destroy
= intel_user_framebuffer_destroy
,
9741 .create_handle
= intel_user_framebuffer_create_handle
,
9744 int intel_framebuffer_init(struct drm_device
*dev
,
9745 struct intel_framebuffer
*intel_fb
,
9746 struct drm_mode_fb_cmd2
*mode_cmd
,
9747 struct drm_i915_gem_object
*obj
)
9752 if (obj
->tiling_mode
== I915_TILING_Y
) {
9753 DRM_DEBUG("hardware does not support tiling Y\n");
9757 if (mode_cmd
->pitches
[0] & 63) {
9758 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
9759 mode_cmd
->pitches
[0]);
9763 if (INTEL_INFO(dev
)->gen
>= 5 && !IS_VALLEYVIEW(dev
)) {
9764 pitch_limit
= 32*1024;
9765 } else if (INTEL_INFO(dev
)->gen
>= 4) {
9766 if (obj
->tiling_mode
)
9767 pitch_limit
= 16*1024;
9769 pitch_limit
= 32*1024;
9770 } else if (INTEL_INFO(dev
)->gen
>= 3) {
9771 if (obj
->tiling_mode
)
9772 pitch_limit
= 8*1024;
9774 pitch_limit
= 16*1024;
9776 /* XXX DSPC is limited to 4k tiled */
9777 pitch_limit
= 8*1024;
9779 if (mode_cmd
->pitches
[0] > pitch_limit
) {
9780 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
9781 obj
->tiling_mode
? "tiled" : "linear",
9782 mode_cmd
->pitches
[0], pitch_limit
);
9786 if (obj
->tiling_mode
!= I915_TILING_NONE
&&
9787 mode_cmd
->pitches
[0] != obj
->stride
) {
9788 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
9789 mode_cmd
->pitches
[0], obj
->stride
);
9793 /* Reject formats not supported by any plane early. */
9794 switch (mode_cmd
->pixel_format
) {
9796 case DRM_FORMAT_RGB565
:
9797 case DRM_FORMAT_XRGB8888
:
9798 case DRM_FORMAT_ARGB8888
:
9800 case DRM_FORMAT_XRGB1555
:
9801 case DRM_FORMAT_ARGB1555
:
9802 if (INTEL_INFO(dev
)->gen
> 3) {
9803 DRM_DEBUG("unsupported pixel format: %s\n",
9804 drm_get_format_name(mode_cmd
->pixel_format
));
9808 case DRM_FORMAT_XBGR8888
:
9809 case DRM_FORMAT_ABGR8888
:
9810 case DRM_FORMAT_XRGB2101010
:
9811 case DRM_FORMAT_ARGB2101010
:
9812 case DRM_FORMAT_XBGR2101010
:
9813 case DRM_FORMAT_ABGR2101010
:
9814 if (INTEL_INFO(dev
)->gen
< 4) {
9815 DRM_DEBUG("unsupported pixel format: %s\n",
9816 drm_get_format_name(mode_cmd
->pixel_format
));
9820 case DRM_FORMAT_YUYV
:
9821 case DRM_FORMAT_UYVY
:
9822 case DRM_FORMAT_YVYU
:
9823 case DRM_FORMAT_VYUY
:
9824 if (INTEL_INFO(dev
)->gen
< 5) {
9825 DRM_DEBUG("unsupported pixel format: %s\n",
9826 drm_get_format_name(mode_cmd
->pixel_format
));
9831 DRM_DEBUG("unsupported pixel format: %s\n",
9832 drm_get_format_name(mode_cmd
->pixel_format
));
9836 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
9837 if (mode_cmd
->offsets
[0] != 0)
9840 drm_helper_mode_fill_fb_struct(&intel_fb
->base
, mode_cmd
);
9841 intel_fb
->obj
= obj
;
9843 ret
= drm_framebuffer_init(dev
, &intel_fb
->base
, &intel_fb_funcs
);
9845 DRM_ERROR("framebuffer init failed %d\n", ret
);
9852 static struct drm_framebuffer
*
9853 intel_user_framebuffer_create(struct drm_device
*dev
,
9854 struct drm_file
*filp
,
9855 struct drm_mode_fb_cmd2
*mode_cmd
)
9857 struct drm_i915_gem_object
*obj
;
9859 obj
= to_intel_bo(drm_gem_object_lookup(dev
, filp
,
9860 mode_cmd
->handles
[0]));
9861 if (&obj
->base
== NULL
)
9862 return ERR_PTR(-ENOENT
);
9864 return intel_framebuffer_create(dev
, mode_cmd
, obj
);
9867 static const struct drm_mode_config_funcs intel_mode_funcs
= {
9868 .fb_create
= intel_user_framebuffer_create
,
9869 .output_poll_changed
= intel_fb_output_poll_changed
,
9872 /* Set up chip specific display functions */
9873 static void intel_init_display(struct drm_device
*dev
)
9875 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
9877 if (HAS_PCH_SPLIT(dev
) || IS_G4X(dev
))
9878 dev_priv
->display
.find_dpll
= g4x_find_best_dpll
;
9879 else if (IS_VALLEYVIEW(dev
))
9880 dev_priv
->display
.find_dpll
= vlv_find_best_dpll
;
9881 else if (IS_PINEVIEW(dev
))
9882 dev_priv
->display
.find_dpll
= pnv_find_best_dpll
;
9884 dev_priv
->display
.find_dpll
= i9xx_find_best_dpll
;
9887 dev_priv
->display
.get_pipe_config
= haswell_get_pipe_config
;
9888 dev_priv
->display
.crtc_mode_set
= haswell_crtc_mode_set
;
9889 dev_priv
->display
.crtc_enable
= haswell_crtc_enable
;
9890 dev_priv
->display
.crtc_disable
= haswell_crtc_disable
;
9891 dev_priv
->display
.off
= haswell_crtc_off
;
9892 dev_priv
->display
.update_plane
= ironlake_update_plane
;
9893 } else if (HAS_PCH_SPLIT(dev
)) {
9894 dev_priv
->display
.get_pipe_config
= ironlake_get_pipe_config
;
9895 dev_priv
->display
.get_clock
= ironlake_crtc_clock_get
;
9896 dev_priv
->display
.crtc_mode_set
= ironlake_crtc_mode_set
;
9897 dev_priv
->display
.crtc_enable
= ironlake_crtc_enable
;
9898 dev_priv
->display
.crtc_disable
= ironlake_crtc_disable
;
9899 dev_priv
->display
.off
= ironlake_crtc_off
;
9900 dev_priv
->display
.update_plane
= ironlake_update_plane
;
9901 } else if (IS_VALLEYVIEW(dev
)) {
9902 dev_priv
->display
.get_pipe_config
= i9xx_get_pipe_config
;
9903 dev_priv
->display
.get_clock
= vlv_crtc_clock_get
;
9904 dev_priv
->display
.crtc_mode_set
= i9xx_crtc_mode_set
;
9905 dev_priv
->display
.crtc_enable
= valleyview_crtc_enable
;
9906 dev_priv
->display
.crtc_disable
= i9xx_crtc_disable
;
9907 dev_priv
->display
.off
= i9xx_crtc_off
;
9908 dev_priv
->display
.update_plane
= i9xx_update_plane
;
9910 dev_priv
->display
.get_pipe_config
= i9xx_get_pipe_config
;
9911 dev_priv
->display
.get_clock
= i9xx_crtc_clock_get
;
9912 dev_priv
->display
.crtc_mode_set
= i9xx_crtc_mode_set
;
9913 dev_priv
->display
.crtc_enable
= i9xx_crtc_enable
;
9914 dev_priv
->display
.crtc_disable
= i9xx_crtc_disable
;
9915 dev_priv
->display
.off
= i9xx_crtc_off
;
9916 dev_priv
->display
.update_plane
= i9xx_update_plane
;
9919 /* Returns the core display clock speed */
9920 if (IS_VALLEYVIEW(dev
))
9921 dev_priv
->display
.get_display_clock_speed
=
9922 valleyview_get_display_clock_speed
;
9923 else if (IS_I945G(dev
) || (IS_G33(dev
) && !IS_PINEVIEW_M(dev
)))
9924 dev_priv
->display
.get_display_clock_speed
=
9925 i945_get_display_clock_speed
;
9926 else if (IS_I915G(dev
))
9927 dev_priv
->display
.get_display_clock_speed
=
9928 i915_get_display_clock_speed
;
9929 else if (IS_I945GM(dev
) || IS_845G(dev
))
9930 dev_priv
->display
.get_display_clock_speed
=
9931 i9xx_misc_get_display_clock_speed
;
9932 else if (IS_PINEVIEW(dev
))
9933 dev_priv
->display
.get_display_clock_speed
=
9934 pnv_get_display_clock_speed
;
9935 else if (IS_I915GM(dev
))
9936 dev_priv
->display
.get_display_clock_speed
=
9937 i915gm_get_display_clock_speed
;
9938 else if (IS_I865G(dev
))
9939 dev_priv
->display
.get_display_clock_speed
=
9940 i865_get_display_clock_speed
;
9941 else if (IS_I85X(dev
))
9942 dev_priv
->display
.get_display_clock_speed
=
9943 i855_get_display_clock_speed
;
9945 dev_priv
->display
.get_display_clock_speed
=
9946 i830_get_display_clock_speed
;
9948 if (HAS_PCH_SPLIT(dev
)) {
9950 dev_priv
->display
.fdi_link_train
= ironlake_fdi_link_train
;
9951 dev_priv
->display
.write_eld
= ironlake_write_eld
;
9952 } else if (IS_GEN6(dev
)) {
9953 dev_priv
->display
.fdi_link_train
= gen6_fdi_link_train
;
9954 dev_priv
->display
.write_eld
= ironlake_write_eld
;
9955 } else if (IS_IVYBRIDGE(dev
)) {
9956 /* FIXME: detect B0+ stepping and use auto training */
9957 dev_priv
->display
.fdi_link_train
= ivb_manual_fdi_link_train
;
9958 dev_priv
->display
.write_eld
= ironlake_write_eld
;
9959 dev_priv
->display
.modeset_global_resources
=
9960 ivb_modeset_global_resources
;
9961 } else if (IS_HASWELL(dev
)) {
9962 dev_priv
->display
.fdi_link_train
= hsw_fdi_link_train
;
9963 dev_priv
->display
.write_eld
= haswell_write_eld
;
9964 dev_priv
->display
.modeset_global_resources
=
9965 haswell_modeset_global_resources
;
9967 } else if (IS_G4X(dev
)) {
9968 dev_priv
->display
.write_eld
= g4x_write_eld
;
9971 /* Default just returns -ENODEV to indicate unsupported */
9972 dev_priv
->display
.queue_flip
= intel_default_queue_flip
;
9974 switch (INTEL_INFO(dev
)->gen
) {
9976 dev_priv
->display
.queue_flip
= intel_gen2_queue_flip
;
9980 dev_priv
->display
.queue_flip
= intel_gen3_queue_flip
;
9985 dev_priv
->display
.queue_flip
= intel_gen4_queue_flip
;
9989 dev_priv
->display
.queue_flip
= intel_gen6_queue_flip
;
9992 dev_priv
->display
.queue_flip
= intel_gen7_queue_flip
;
9998 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
9999 * resume, or other times. This quirk makes sure that's the case for
10000 * affected systems.
10002 static void quirk_pipea_force(struct drm_device
*dev
)
10004 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10006 dev_priv
->quirks
|= QUIRK_PIPEA_FORCE
;
10007 DRM_INFO("applying pipe a force quirk\n");
10011 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
10013 static void quirk_ssc_force_disable(struct drm_device
*dev
)
10015 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10016 dev_priv
->quirks
|= QUIRK_LVDS_SSC_DISABLE
;
10017 DRM_INFO("applying lvds SSC disable quirk\n");
10021 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
10024 static void quirk_invert_brightness(struct drm_device
*dev
)
10026 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10027 dev_priv
->quirks
|= QUIRK_INVERT_BRIGHTNESS
;
10028 DRM_INFO("applying inverted panel brightness quirk\n");
10032 * Some machines (Dell XPS13) suffer broken backlight controls if
10033 * BLM_PCH_PWM_ENABLE is set.
10035 static void quirk_no_pcm_pwm_enable(struct drm_device
*dev
)
10037 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10038 dev_priv
->quirks
|= QUIRK_NO_PCH_PWM_ENABLE
;
10039 DRM_INFO("applying no-PCH_PWM_ENABLE quirk\n");
10042 struct intel_quirk
{
10044 int subsystem_vendor
;
10045 int subsystem_device
;
10046 void (*hook
)(struct drm_device
*dev
);
10049 /* For systems that don't have a meaningful PCI subdevice/subvendor ID */
10050 struct intel_dmi_quirk
{
10051 void (*hook
)(struct drm_device
*dev
);
10052 const struct dmi_system_id (*dmi_id_list
)[];
10055 static int intel_dmi_reverse_brightness(const struct dmi_system_id
*id
)
10057 DRM_INFO("Backlight polarity reversed on %s\n", id
->ident
);
10061 static const struct intel_dmi_quirk intel_dmi_quirks
[] = {
10063 .dmi_id_list
= &(const struct dmi_system_id
[]) {
10065 .callback
= intel_dmi_reverse_brightness
,
10066 .ident
= "NCR Corporation",
10067 .matches
= {DMI_MATCH(DMI_SYS_VENDOR
, "NCR Corporation"),
10068 DMI_MATCH(DMI_PRODUCT_NAME
, ""),
10071 { } /* terminating entry */
10073 .hook
= quirk_invert_brightness
,
10077 static struct intel_quirk intel_quirks
[] = {
10078 /* HP Mini needs pipe A force quirk (LP: #322104) */
10079 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force
},
10081 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
10082 { 0x2592, 0x1179, 0x0001, quirk_pipea_force
},
10084 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
10085 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force
},
10087 /* 830 needs to leave pipe A & dpll A up */
10088 { 0x3577, PCI_ANY_ID
, PCI_ANY_ID
, quirk_pipea_force
},
10090 /* Lenovo U160 cannot use SSC on LVDS */
10091 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable
},
10093 /* Sony Vaio Y cannot use SSC on LVDS */
10094 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable
},
10096 /* Acer Aspire 5734Z must invert backlight brightness */
10097 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness
},
10099 /* Acer/eMachines G725 */
10100 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness
},
10102 /* Acer/eMachines e725 */
10103 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness
},
10105 /* Acer/Packard Bell NCL20 */
10106 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness
},
10108 /* Acer Aspire 4736Z */
10109 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness
},
10111 /* Acer Aspire 5336 */
10112 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness
},
10114 /* Dell XPS13 HD Sandy Bridge */
10115 { 0x0116, 0x1028, 0x052e, quirk_no_pcm_pwm_enable
},
10116 /* Dell XPS13 HD and XPS13 FHD Ivy Bridge */
10117 { 0x0166, 0x1028, 0x058b, quirk_no_pcm_pwm_enable
},
10120 static void intel_init_quirks(struct drm_device
*dev
)
10122 struct pci_dev
*d
= dev
->pdev
;
10125 for (i
= 0; i
< ARRAY_SIZE(intel_quirks
); i
++) {
10126 struct intel_quirk
*q
= &intel_quirks
[i
];
10128 if (d
->device
== q
->device
&&
10129 (d
->subsystem_vendor
== q
->subsystem_vendor
||
10130 q
->subsystem_vendor
== PCI_ANY_ID
) &&
10131 (d
->subsystem_device
== q
->subsystem_device
||
10132 q
->subsystem_device
== PCI_ANY_ID
))
10135 for (i
= 0; i
< ARRAY_SIZE(intel_dmi_quirks
); i
++) {
10136 if (dmi_check_system(*intel_dmi_quirks
[i
].dmi_id_list
) != 0)
10137 intel_dmi_quirks
[i
].hook(dev
);
10141 /* Disable the VGA plane that we never use */
10142 static void i915_disable_vga(struct drm_device
*dev
)
10144 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10146 u32 vga_reg
= i915_vgacntrl_reg(dev
);
10148 vga_get_uninterruptible(dev
->pdev
, VGA_RSRC_LEGACY_IO
);
10149 outb(SR01
, VGA_SR_INDEX
);
10150 sr1
= inb(VGA_SR_DATA
);
10151 outb(sr1
| 1<<5, VGA_SR_DATA
);
10152 vga_put(dev
->pdev
, VGA_RSRC_LEGACY_IO
);
10155 I915_WRITE(vga_reg
, VGA_DISP_DISABLE
);
10156 POSTING_READ(vga_reg
);
10159 void intel_modeset_init_hw(struct drm_device
*dev
)
10161 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10163 intel_init_power_well(dev
);
10165 intel_prepare_ddi(dev
);
10167 intel_init_clock_gating(dev
);
10169 /* Enable the CRI clock source so we can get at the display */
10170 if (IS_VALLEYVIEW(dev
))
10171 I915_WRITE(DPLL(PIPE_B
), I915_READ(DPLL(PIPE_B
)) |
10172 DPLL_INTEGRATED_CRI_CLK_VLV
);
10174 mutex_lock(&dev
->struct_mutex
);
10175 intel_enable_gt_powersave(dev
);
10176 mutex_unlock(&dev
->struct_mutex
);
10179 void intel_modeset_suspend_hw(struct drm_device
*dev
)
10181 intel_suspend_hw(dev
);
10184 void intel_modeset_init(struct drm_device
*dev
)
10186 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10189 drm_mode_config_init(dev
);
10191 dev
->mode_config
.min_width
= 0;
10192 dev
->mode_config
.min_height
= 0;
10194 dev
->mode_config
.preferred_depth
= 24;
10195 dev
->mode_config
.prefer_shadow
= 1;
10197 dev
->mode_config
.funcs
= &intel_mode_funcs
;
10199 intel_init_quirks(dev
);
10201 intel_init_pm(dev
);
10203 if (INTEL_INFO(dev
)->num_pipes
== 0)
10206 intel_init_display(dev
);
10208 if (IS_GEN2(dev
)) {
10209 dev
->mode_config
.max_width
= 2048;
10210 dev
->mode_config
.max_height
= 2048;
10211 } else if (IS_GEN3(dev
)) {
10212 dev
->mode_config
.max_width
= 4096;
10213 dev
->mode_config
.max_height
= 4096;
10215 dev
->mode_config
.max_width
= 8192;
10216 dev
->mode_config
.max_height
= 8192;
10218 dev
->mode_config
.fb_base
= dev_priv
->gtt
.mappable_base
;
10220 DRM_DEBUG_KMS("%d display pipe%s available.\n",
10221 INTEL_INFO(dev
)->num_pipes
,
10222 INTEL_INFO(dev
)->num_pipes
> 1 ? "s" : "");
10225 intel_crtc_init(dev
, i
);
10226 for (j
= 0; j
< dev_priv
->num_plane
; j
++) {
10227 ret
= intel_plane_init(dev
, i
, j
);
10229 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
10230 pipe_name(i
), sprite_name(i
, j
), ret
);
10234 intel_cpu_pll_init(dev
);
10235 intel_shared_dpll_init(dev
);
10237 /* Just disable it once at startup */
10238 i915_disable_vga(dev
);
10239 intel_setup_outputs(dev
);
10241 /* Just in case the BIOS is doing something questionable. */
10242 intel_disable_fbc(dev
);
10245 static void intel_enable_pipe_a(struct drm_device
*dev
)
10247 struct intel_connector
*connector
;
10248 struct drm_connector
*crt
= NULL
;
10249 struct intel_load_detect_pipe load_detect_temp
;
10251 /* We can't just switch on the pipe A, we need to set things up with a
10252 * proper mode and output configuration. As a gross hack, enable pipe A
10253 * by enabling the load detect pipe once. */
10254 list_for_each_entry(connector
,
10255 &dev
->mode_config
.connector_list
,
10257 if (connector
->encoder
->type
== INTEL_OUTPUT_ANALOG
) {
10258 crt
= &connector
->base
;
10266 if (intel_get_load_detect_pipe(crt
, NULL
, &load_detect_temp
))
10267 intel_release_load_detect_pipe(crt
, &load_detect_temp
);
10273 intel_check_plane_mapping(struct intel_crtc
*crtc
)
10275 struct drm_device
*dev
= crtc
->base
.dev
;
10276 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10279 if (INTEL_INFO(dev
)->num_pipes
== 1)
10282 reg
= DSPCNTR(!crtc
->plane
);
10283 val
= I915_READ(reg
);
10285 if ((val
& DISPLAY_PLANE_ENABLE
) &&
10286 (!!(val
& DISPPLANE_SEL_PIPE_MASK
) == crtc
->pipe
))
10292 static void intel_sanitize_crtc(struct intel_crtc
*crtc
)
10294 struct drm_device
*dev
= crtc
->base
.dev
;
10295 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10298 /* Clear any frame start delays used for debugging left by the BIOS */
10299 reg
= PIPECONF(crtc
->config
.cpu_transcoder
);
10300 I915_WRITE(reg
, I915_READ(reg
) & ~PIPECONF_FRAME_START_DELAY_MASK
);
10302 /* We need to sanitize the plane -> pipe mapping first because this will
10303 * disable the crtc (and hence change the state) if it is wrong. Note
10304 * that gen4+ has a fixed plane -> pipe mapping. */
10305 if (INTEL_INFO(dev
)->gen
< 4 && !intel_check_plane_mapping(crtc
)) {
10306 struct intel_connector
*connector
;
10309 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
10310 crtc
->base
.base
.id
);
10312 /* Pipe has the wrong plane attached and the plane is active.
10313 * Temporarily change the plane mapping and disable everything
10315 plane
= crtc
->plane
;
10316 crtc
->plane
= !plane
;
10317 dev_priv
->display
.crtc_disable(&crtc
->base
);
10318 crtc
->plane
= plane
;
10320 /* ... and break all links. */
10321 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
,
10323 if (connector
->encoder
->base
.crtc
!= &crtc
->base
)
10326 connector
->base
.dpms
= DRM_MODE_DPMS_OFF
;
10327 connector
->base
.encoder
= NULL
;
10329 /* multiple connectors may have the same encoder:
10330 * handle them and break crtc link separately */
10331 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
,
10333 if (connector
->encoder
->base
.crtc
== &crtc
->base
) {
10334 connector
->encoder
->base
.crtc
= NULL
;
10335 connector
->encoder
->connectors_active
= false;
10338 WARN_ON(crtc
->active
);
10339 crtc
->base
.enabled
= false;
10342 if (dev_priv
->quirks
& QUIRK_PIPEA_FORCE
&&
10343 crtc
->pipe
== PIPE_A
&& !crtc
->active
) {
10344 /* BIOS forgot to enable pipe A, this mostly happens after
10345 * resume. Force-enable the pipe to fix this, the update_dpms
10346 * call below we restore the pipe to the right state, but leave
10347 * the required bits on. */
10348 intel_enable_pipe_a(dev
);
10351 /* Adjust the state of the output pipe according to whether we
10352 * have active connectors/encoders. */
10353 intel_crtc_update_dpms(&crtc
->base
);
10355 if (crtc
->active
!= crtc
->base
.enabled
) {
10356 struct intel_encoder
*encoder
;
10358 /* This can happen either due to bugs in the get_hw_state
10359 * functions or because the pipe is force-enabled due to the
10361 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
10362 crtc
->base
.base
.id
,
10363 crtc
->base
.enabled
? "enabled" : "disabled",
10364 crtc
->active
? "enabled" : "disabled");
10366 crtc
->base
.enabled
= crtc
->active
;
10368 /* Because we only establish the connector -> encoder ->
10369 * crtc links if something is active, this means the
10370 * crtc is now deactivated. Break the links. connector
10371 * -> encoder links are only establish when things are
10372 * actually up, hence no need to break them. */
10373 WARN_ON(crtc
->active
);
10375 for_each_encoder_on_crtc(dev
, &crtc
->base
, encoder
) {
10376 WARN_ON(encoder
->connectors_active
);
10377 encoder
->base
.crtc
= NULL
;
10382 static void intel_sanitize_encoder(struct intel_encoder
*encoder
)
10384 struct intel_connector
*connector
;
10385 struct drm_device
*dev
= encoder
->base
.dev
;
10387 /* We need to check both for a crtc link (meaning that the
10388 * encoder is active and trying to read from a pipe) and the
10389 * pipe itself being active. */
10390 bool has_active_crtc
= encoder
->base
.crtc
&&
10391 to_intel_crtc(encoder
->base
.crtc
)->active
;
10393 if (encoder
->connectors_active
&& !has_active_crtc
) {
10394 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
10395 encoder
->base
.base
.id
,
10396 drm_get_encoder_name(&encoder
->base
));
10398 /* Connector is active, but has no active pipe. This is
10399 * fallout from our resume register restoring. Disable
10400 * the encoder manually again. */
10401 if (encoder
->base
.crtc
) {
10402 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
10403 encoder
->base
.base
.id
,
10404 drm_get_encoder_name(&encoder
->base
));
10405 encoder
->disable(encoder
);
10407 encoder
->base
.crtc
= NULL
;
10408 encoder
->connectors_active
= false;
10410 /* Inconsistent output/port/pipe state happens presumably due to
10411 * a bug in one of the get_hw_state functions. Or someplace else
10412 * in our code, like the register restore mess on resume. Clamp
10413 * things to off as a safer default. */
10414 list_for_each_entry(connector
,
10415 &dev
->mode_config
.connector_list
,
10417 if (connector
->encoder
!= encoder
)
10419 connector
->base
.dpms
= DRM_MODE_DPMS_OFF
;
10420 connector
->base
.encoder
= NULL
;
10423 /* Enabled encoders without active connectors will be fixed in
10424 * the crtc fixup. */
10427 void i915_redisable_vga(struct drm_device
*dev
)
10429 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10430 u32 vga_reg
= i915_vgacntrl_reg(dev
);
10432 /* This function can be called both from intel_modeset_setup_hw_state or
10433 * at a very early point in our resume sequence, where the power well
10434 * structures are not yet restored. Since this function is at a very
10435 * paranoid "someone might have enabled VGA while we were not looking"
10436 * level, just check if the power well is enabled instead of trying to
10437 * follow the "don't touch the power well if we don't need it" policy
10438 * the rest of the driver uses. */
10439 if (HAS_POWER_WELL(dev
) &&
10440 (I915_READ(HSW_PWR_WELL_DRIVER
) & HSW_PWR_WELL_STATE_ENABLED
) == 0)
10443 if (I915_READ(vga_reg
) != VGA_DISP_DISABLE
) {
10444 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
10445 i915_disable_vga(dev
);
10449 static void intel_modeset_readout_hw_state(struct drm_device
*dev
)
10451 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10453 struct intel_crtc
*crtc
;
10454 struct intel_encoder
*encoder
;
10455 struct intel_connector
*connector
;
10458 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
,
10460 memset(&crtc
->config
, 0, sizeof(crtc
->config
));
10462 crtc
->config
.quirks
|= PIPE_CONFIG_QUIRK_INHERITED_MODE
;
10464 crtc
->active
= dev_priv
->display
.get_pipe_config(crtc
,
10467 crtc
->base
.enabled
= crtc
->active
;
10469 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
10470 crtc
->base
.base
.id
,
10471 crtc
->active
? "enabled" : "disabled");
10474 /* FIXME: Smash this into the new shared dpll infrastructure. */
10476 intel_ddi_setup_hw_pll_state(dev
);
10478 for (i
= 0; i
< dev_priv
->num_shared_dpll
; i
++) {
10479 struct intel_shared_dpll
*pll
= &dev_priv
->shared_dplls
[i
];
10481 pll
->on
= pll
->get_hw_state(dev_priv
, pll
, &pll
->hw_state
);
10483 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
,
10485 if (crtc
->active
&& intel_crtc_to_shared_dpll(crtc
) == pll
)
10488 pll
->refcount
= pll
->active
;
10490 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
10491 pll
->name
, pll
->refcount
, pll
->on
);
10494 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
,
10498 if (encoder
->get_hw_state(encoder
, &pipe
)) {
10499 crtc
= to_intel_crtc(dev_priv
->pipe_to_crtc_mapping
[pipe
]);
10500 encoder
->base
.crtc
= &crtc
->base
;
10501 if (encoder
->get_config
)
10502 encoder
->get_config(encoder
, &crtc
->config
);
10504 encoder
->base
.crtc
= NULL
;
10507 encoder
->connectors_active
= false;
10508 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n",
10509 encoder
->base
.base
.id
,
10510 drm_get_encoder_name(&encoder
->base
),
10511 encoder
->base
.crtc
? "enabled" : "disabled",
10515 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
,
10519 if (dev_priv
->display
.get_clock
)
10520 dev_priv
->display
.get_clock(crtc
,
10524 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
,
10526 if (connector
->get_hw_state(connector
)) {
10527 connector
->base
.dpms
= DRM_MODE_DPMS_ON
;
10528 connector
->encoder
->connectors_active
= true;
10529 connector
->base
.encoder
= &connector
->encoder
->base
;
10531 connector
->base
.dpms
= DRM_MODE_DPMS_OFF
;
10532 connector
->base
.encoder
= NULL
;
10534 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
10535 connector
->base
.base
.id
,
10536 drm_get_connector_name(&connector
->base
),
10537 connector
->base
.encoder
? "enabled" : "disabled");
10541 /* Scan out the current hw modeset state, sanitizes it and maps it into the drm
10542 * and i915 state tracking structures. */
10543 void intel_modeset_setup_hw_state(struct drm_device
*dev
,
10544 bool force_restore
)
10546 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10548 struct drm_plane
*plane
;
10549 struct intel_crtc
*crtc
;
10550 struct intel_encoder
*encoder
;
10553 intel_modeset_readout_hw_state(dev
);
10556 * Now that we have the config, copy it to each CRTC struct
10557 * Note that this could go away if we move to using crtc_config
10558 * checking everywhere.
10560 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
,
10562 if (crtc
->active
&& i915_fastboot
) {
10563 intel_crtc_mode_from_pipe_config(crtc
, &crtc
->config
);
10565 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
10566 crtc
->base
.base
.id
);
10567 drm_mode_debug_printmodeline(&crtc
->base
.mode
);
10571 /* HW state is read out, now we need to sanitize this mess. */
10572 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
,
10574 intel_sanitize_encoder(encoder
);
10577 for_each_pipe(pipe
) {
10578 crtc
= to_intel_crtc(dev_priv
->pipe_to_crtc_mapping
[pipe
]);
10579 intel_sanitize_crtc(crtc
);
10580 intel_dump_pipe_config(crtc
, &crtc
->config
, "[setup_hw_state]");
10583 for (i
= 0; i
< dev_priv
->num_shared_dpll
; i
++) {
10584 struct intel_shared_dpll
*pll
= &dev_priv
->shared_dplls
[i
];
10586 if (!pll
->on
|| pll
->active
)
10589 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll
->name
);
10591 pll
->disable(dev_priv
, pll
);
10595 if (force_restore
) {
10597 * We need to use raw interfaces for restoring state to avoid
10598 * checking (bogus) intermediate states.
10600 for_each_pipe(pipe
) {
10601 struct drm_crtc
*crtc
=
10602 dev_priv
->pipe_to_crtc_mapping
[pipe
];
10604 __intel_set_mode(crtc
, &crtc
->mode
, crtc
->x
, crtc
->y
,
10607 list_for_each_entry(plane
, &dev
->mode_config
.plane_list
, head
)
10608 intel_plane_restore(plane
);
10610 i915_redisable_vga(dev
);
10612 intel_modeset_update_staged_output_state(dev
);
10615 intel_modeset_check_state(dev
);
10617 drm_mode_config_reset(dev
);
10620 void intel_modeset_gem_init(struct drm_device
*dev
)
10622 intel_modeset_init_hw(dev
);
10624 intel_setup_overlay(dev
);
10626 mutex_lock(&dev
->mode_config
.mutex
);
10627 intel_modeset_setup_hw_state(dev
, false);
10628 mutex_unlock(&dev
->mode_config
.mutex
);
10631 void intel_modeset_cleanup(struct drm_device
*dev
)
10633 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10634 struct drm_crtc
*crtc
;
10637 * Interrupts and polling as the first thing to avoid creating havoc.
10638 * Too much stuff here (turning of rps, connectors, ...) would
10639 * experience fancy races otherwise.
10641 drm_irq_uninstall(dev
);
10642 cancel_work_sync(&dev_priv
->hotplug_work
);
10644 * Due to the hpd irq storm handling the hotplug work can re-arm the
10645 * poll handlers. Hence disable polling after hpd handling is shut down.
10647 drm_kms_helper_poll_fini(dev
);
10649 mutex_lock(&dev
->struct_mutex
);
10651 intel_unregister_dsm_handler();
10653 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
10654 /* Skip inactive CRTCs */
10658 intel_increase_pllclock(crtc
);
10661 intel_disable_fbc(dev
);
10663 intel_disable_gt_powersave(dev
);
10665 ironlake_teardown_rc6(dev
);
10667 mutex_unlock(&dev
->struct_mutex
);
10669 /* flush any delayed tasks or pending work */
10670 flush_scheduled_work();
10672 /* destroy backlight, if any, before the connectors */
10673 intel_panel_destroy_backlight(dev
);
10675 drm_mode_config_cleanup(dev
);
10677 intel_cleanup_overlay(dev
);
10681 * Return which encoder is currently attached for connector.
10683 struct drm_encoder
*intel_best_encoder(struct drm_connector
*connector
)
10685 return &intel_attached_encoder(connector
)->base
;
10688 void intel_connector_attach_encoder(struct intel_connector
*connector
,
10689 struct intel_encoder
*encoder
)
10691 connector
->encoder
= encoder
;
10692 drm_mode_connector_attach_encoder(&connector
->base
,
10697 * set vga decode state - true == enable VGA decode
10699 int intel_modeset_vga_set_state(struct drm_device
*dev
, bool state
)
10701 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
10702 unsigned reg
= INTEL_INFO(dev
)->gen
>= 6 ? SNB_GMCH_CTRL
: INTEL_GMCH_CTRL
;
10705 pci_read_config_word(dev_priv
->bridge_dev
, reg
, &gmch_ctrl
);
10707 gmch_ctrl
&= ~INTEL_GMCH_VGA_DISABLE
;
10709 gmch_ctrl
|= INTEL_GMCH_VGA_DISABLE
;
10710 pci_write_config_word(dev_priv
->bridge_dev
, reg
, gmch_ctrl
);
10714 struct intel_display_error_state
{
10716 u32 power_well_driver
;
10718 int num_transcoders
;
10720 struct intel_cursor_error_state
{
10725 } cursor
[I915_MAX_PIPES
];
10727 struct intel_pipe_error_state
{
10729 } pipe
[I915_MAX_PIPES
];
10731 struct intel_plane_error_state
{
10739 } plane
[I915_MAX_PIPES
];
10741 struct intel_transcoder_error_state
{
10742 enum transcoder cpu_transcoder
;
10755 struct intel_display_error_state
*
10756 intel_display_capture_error_state(struct drm_device
*dev
)
10758 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
10759 struct intel_display_error_state
*error
;
10760 int transcoders
[] = {
10768 if (INTEL_INFO(dev
)->num_pipes
== 0)
10771 error
= kmalloc(sizeof(*error
), GFP_ATOMIC
);
10775 if (HAS_POWER_WELL(dev
))
10776 error
->power_well_driver
= I915_READ(HSW_PWR_WELL_DRIVER
);
10779 if (INTEL_INFO(dev
)->gen
<= 6 || IS_VALLEYVIEW(dev
)) {
10780 error
->cursor
[i
].control
= I915_READ(CURCNTR(i
));
10781 error
->cursor
[i
].position
= I915_READ(CURPOS(i
));
10782 error
->cursor
[i
].base
= I915_READ(CURBASE(i
));
10784 error
->cursor
[i
].control
= I915_READ(CURCNTR_IVB(i
));
10785 error
->cursor
[i
].position
= I915_READ(CURPOS_IVB(i
));
10786 error
->cursor
[i
].base
= I915_READ(CURBASE_IVB(i
));
10789 error
->plane
[i
].control
= I915_READ(DSPCNTR(i
));
10790 error
->plane
[i
].stride
= I915_READ(DSPSTRIDE(i
));
10791 if (INTEL_INFO(dev
)->gen
<= 3) {
10792 error
->plane
[i
].size
= I915_READ(DSPSIZE(i
));
10793 error
->plane
[i
].pos
= I915_READ(DSPPOS(i
));
10795 if (INTEL_INFO(dev
)->gen
<= 7 && !IS_HASWELL(dev
))
10796 error
->plane
[i
].addr
= I915_READ(DSPADDR(i
));
10797 if (INTEL_INFO(dev
)->gen
>= 4) {
10798 error
->plane
[i
].surface
= I915_READ(DSPSURF(i
));
10799 error
->plane
[i
].tile_offset
= I915_READ(DSPTILEOFF(i
));
10802 error
->pipe
[i
].source
= I915_READ(PIPESRC(i
));
10805 error
->num_transcoders
= INTEL_INFO(dev
)->num_pipes
;
10806 if (HAS_DDI(dev_priv
->dev
))
10807 error
->num_transcoders
++; /* Account for eDP. */
10809 for (i
= 0; i
< error
->num_transcoders
; i
++) {
10810 enum transcoder cpu_transcoder
= transcoders
[i
];
10812 error
->transcoder
[i
].cpu_transcoder
= cpu_transcoder
;
10814 error
->transcoder
[i
].conf
= I915_READ(PIPECONF(cpu_transcoder
));
10815 error
->transcoder
[i
].htotal
= I915_READ(HTOTAL(cpu_transcoder
));
10816 error
->transcoder
[i
].hblank
= I915_READ(HBLANK(cpu_transcoder
));
10817 error
->transcoder
[i
].hsync
= I915_READ(HSYNC(cpu_transcoder
));
10818 error
->transcoder
[i
].vtotal
= I915_READ(VTOTAL(cpu_transcoder
));
10819 error
->transcoder
[i
].vblank
= I915_READ(VBLANK(cpu_transcoder
));
10820 error
->transcoder
[i
].vsync
= I915_READ(VSYNC(cpu_transcoder
));
10823 /* In the code above we read the registers without checking if the power
10824 * well was on, so here we have to clear the FPGA_DBG_RM_NOCLAIM bit to
10825 * prevent the next I915_WRITE from detecting it and printing an error
10827 intel_uncore_clear_errors(dev
);
10832 #define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
10835 intel_display_print_error_state(struct drm_i915_error_state_buf
*m
,
10836 struct drm_device
*dev
,
10837 struct intel_display_error_state
*error
)
10844 err_printf(m
, "Num Pipes: %d\n", INTEL_INFO(dev
)->num_pipes
);
10845 if (HAS_POWER_WELL(dev
))
10846 err_printf(m
, "PWR_WELL_CTL2: %08x\n",
10847 error
->power_well_driver
);
10849 err_printf(m
, "Pipe [%d]:\n", i
);
10850 err_printf(m
, " SRC: %08x\n", error
->pipe
[i
].source
);
10852 err_printf(m
, "Plane [%d]:\n", i
);
10853 err_printf(m
, " CNTR: %08x\n", error
->plane
[i
].control
);
10854 err_printf(m
, " STRIDE: %08x\n", error
->plane
[i
].stride
);
10855 if (INTEL_INFO(dev
)->gen
<= 3) {
10856 err_printf(m
, " SIZE: %08x\n", error
->plane
[i
].size
);
10857 err_printf(m
, " POS: %08x\n", error
->plane
[i
].pos
);
10859 if (INTEL_INFO(dev
)->gen
<= 7 && !IS_HASWELL(dev
))
10860 err_printf(m
, " ADDR: %08x\n", error
->plane
[i
].addr
);
10861 if (INTEL_INFO(dev
)->gen
>= 4) {
10862 err_printf(m
, " SURF: %08x\n", error
->plane
[i
].surface
);
10863 err_printf(m
, " TILEOFF: %08x\n", error
->plane
[i
].tile_offset
);
10866 err_printf(m
, "Cursor [%d]:\n", i
);
10867 err_printf(m
, " CNTR: %08x\n", error
->cursor
[i
].control
);
10868 err_printf(m
, " POS: %08x\n", error
->cursor
[i
].position
);
10869 err_printf(m
, " BASE: %08x\n", error
->cursor
[i
].base
);
10872 for (i
= 0; i
< error
->num_transcoders
; i
++) {
10873 err_printf(m
, " CPU transcoder: %c\n",
10874 transcoder_name(error
->transcoder
[i
].cpu_transcoder
));
10875 err_printf(m
, " CONF: %08x\n", error
->transcoder
[i
].conf
);
10876 err_printf(m
, " HTOTAL: %08x\n", error
->transcoder
[i
].htotal
);
10877 err_printf(m
, " HBLANK: %08x\n", error
->transcoder
[i
].hblank
);
10878 err_printf(m
, " HSYNC: %08x\n", error
->transcoder
[i
].hsync
);
10879 err_printf(m
, " VTOTAL: %08x\n", error
->transcoder
[i
].vtotal
);
10880 err_printf(m
, " VBLANK: %08x\n", error
->transcoder
[i
].vblank
);
10881 err_printf(m
, " VSYNC: %08x\n", error
->transcoder
[i
].vsync
);