]>
Commit | Line | Data |
---|---|---|
79e53945 JB |
1 | /* |
2 | * Copyright © 2006-2007 Intel Corporation | |
3 | * | |
4 | * Permission is hereby granted, free of charge, to any person obtaining a | |
5 | * copy of this software and associated documentation files (the "Software"), | |
6 | * to deal in the Software without restriction, including without limitation | |
7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
8 | * and/or sell copies of the Software, and to permit persons to whom the | |
9 | * Software is furnished to do so, subject to the following conditions: | |
10 | * | |
11 | * The above copyright notice and this permission notice (including the next | |
12 | * paragraph) shall be included in all copies or substantial portions of the | |
13 | * Software. | |
14 | * | |
15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
18 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | |
20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | |
21 | * DEALINGS IN THE SOFTWARE. | |
22 | * | |
23 | * Authors: | |
24 | * Eric Anholt <eric@anholt.net> | |
25 | */ | |
26 | ||
618563e3 | 27 | #include <linux/dmi.h> |
c1c7af60 JB |
28 | #include <linux/module.h> |
29 | #include <linux/input.h> | |
79e53945 | 30 | #include <linux/i2c.h> |
7662c8bd | 31 | #include <linux/kernel.h> |
5a0e3ad6 | 32 | #include <linux/slab.h> |
9cce37f4 | 33 | #include <linux/vgaarb.h> |
e0dac65e | 34 | #include <drm/drm_edid.h> |
760285e7 | 35 | #include <drm/drmP.h> |
79e53945 | 36 | #include "intel_drv.h" |
760285e7 | 37 | #include <drm/i915_drm.h> |
79e53945 | 38 | #include "i915_drv.h" |
e5510fac | 39 | #include "i915_trace.h" |
760285e7 DH |
40 | #include <drm/drm_dp_helper.h> |
41 | #include <drm/drm_crtc_helper.h> | |
c0f372b3 | 42 | #include <linux/dma_remapping.h> |
79e53945 | 43 | |
0206e353 | 44 | bool intel_pipe_has_type(struct drm_crtc *crtc, int type); |
3dec0095 | 45 | static void intel_increase_pllclock(struct drm_crtc *crtc); |
6b383a7f | 46 | static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on); |
79e53945 JB |
47 | |
48 | typedef struct { | |
0206e353 AJ |
49 | /* given values */ |
50 | int n; | |
51 | int m1, m2; | |
52 | int p1, p2; | |
53 | /* derived values */ | |
54 | int dot; | |
55 | int vco; | |
56 | int m; | |
57 | int p; | |
79e53945 JB |
58 | } intel_clock_t; |
59 | ||
60 | typedef struct { | |
0206e353 | 61 | int min, max; |
79e53945 JB |
62 | } intel_range_t; |
63 | ||
64 | typedef struct { | |
0206e353 AJ |
65 | int dot_limit; |
66 | int p2_slow, p2_fast; | |
79e53945 JB |
67 | } intel_p2_t; |
68 | ||
69 | #define INTEL_P2_NUM 2 | |
d4906093 ML |
70 | typedef struct intel_limit intel_limit_t; |
71 | struct intel_limit { | |
0206e353 AJ |
72 | intel_range_t dot, vco, n, m, m1, m2, p, p1; |
73 | intel_p2_t p2; | |
74 | bool (* find_pll)(const intel_limit_t *, struct drm_crtc *, | |
cec2f356 | 75 | int, int, intel_clock_t *, intel_clock_t *); |
d4906093 | 76 | }; |
79e53945 | 77 | |
2377b741 JB |
78 | /* FDI */ |
79 | #define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */ | |
80 | ||
d2acd215 DV |
81 | int |
82 | intel_pch_rawclk(struct drm_device *dev) | |
83 | { | |
84 | struct drm_i915_private *dev_priv = dev->dev_private; | |
85 | ||
86 | WARN_ON(!HAS_PCH_SPLIT(dev)); | |
87 | ||
88 | return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK; | |
89 | } | |
90 | ||
d4906093 ML |
91 | static bool |
92 | intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | |
cec2f356 SP |
93 | int target, int refclk, intel_clock_t *match_clock, |
94 | intel_clock_t *best_clock); | |
d4906093 ML |
95 | static bool |
96 | intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | |
cec2f356 SP |
97 | int target, int refclk, intel_clock_t *match_clock, |
98 | intel_clock_t *best_clock); | |
79e53945 | 99 | |
a4fc5ed6 KP |
100 | static bool |
101 | intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc, | |
cec2f356 SP |
102 | int target, int refclk, intel_clock_t *match_clock, |
103 | intel_clock_t *best_clock); | |
5eb08b69 | 104 | static bool |
f2b115e6 | 105 | intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc, |
cec2f356 SP |
106 | int target, int refclk, intel_clock_t *match_clock, |
107 | intel_clock_t *best_clock); | |
a4fc5ed6 | 108 | |
a0c4da24 JB |
109 | static bool |
110 | intel_vlv_find_best_pll(const intel_limit_t *limit, struct drm_crtc *crtc, | |
111 | int target, int refclk, intel_clock_t *match_clock, | |
112 | intel_clock_t *best_clock); | |
113 | ||
021357ac CW |
114 | static inline u32 /* units of 100MHz */ |
115 | intel_fdi_link_freq(struct drm_device *dev) | |
116 | { | |
8b99e68c CW |
117 | if (IS_GEN5(dev)) { |
118 | struct drm_i915_private *dev_priv = dev->dev_private; | |
119 | return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2; | |
120 | } else | |
121 | return 27; | |
021357ac CW |
122 | } |
123 | ||
e4b36699 | 124 | static const intel_limit_t intel_limits_i8xx_dvo = { |
0206e353 AJ |
125 | .dot = { .min = 25000, .max = 350000 }, |
126 | .vco = { .min = 930000, .max = 1400000 }, | |
127 | .n = { .min = 3, .max = 16 }, | |
128 | .m = { .min = 96, .max = 140 }, | |
129 | .m1 = { .min = 18, .max = 26 }, | |
130 | .m2 = { .min = 6, .max = 16 }, | |
131 | .p = { .min = 4, .max = 128 }, | |
132 | .p1 = { .min = 2, .max = 33 }, | |
273e27ca EA |
133 | .p2 = { .dot_limit = 165000, |
134 | .p2_slow = 4, .p2_fast = 2 }, | |
d4906093 | 135 | .find_pll = intel_find_best_PLL, |
e4b36699 KP |
136 | }; |
137 | ||
138 | static const intel_limit_t intel_limits_i8xx_lvds = { | |
0206e353 AJ |
139 | .dot = { .min = 25000, .max = 350000 }, |
140 | .vco = { .min = 930000, .max = 1400000 }, | |
141 | .n = { .min = 3, .max = 16 }, | |
142 | .m = { .min = 96, .max = 140 }, | |
143 | .m1 = { .min = 18, .max = 26 }, | |
144 | .m2 = { .min = 6, .max = 16 }, | |
145 | .p = { .min = 4, .max = 128 }, | |
146 | .p1 = { .min = 1, .max = 6 }, | |
273e27ca EA |
147 | .p2 = { .dot_limit = 165000, |
148 | .p2_slow = 14, .p2_fast = 7 }, | |
d4906093 | 149 | .find_pll = intel_find_best_PLL, |
e4b36699 | 150 | }; |
273e27ca | 151 | |
e4b36699 | 152 | static const intel_limit_t intel_limits_i9xx_sdvo = { |
0206e353 AJ |
153 | .dot = { .min = 20000, .max = 400000 }, |
154 | .vco = { .min = 1400000, .max = 2800000 }, | |
155 | .n = { .min = 1, .max = 6 }, | |
156 | .m = { .min = 70, .max = 120 }, | |
157 | .m1 = { .min = 10, .max = 22 }, | |
158 | .m2 = { .min = 5, .max = 9 }, | |
159 | .p = { .min = 5, .max = 80 }, | |
160 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
161 | .p2 = { .dot_limit = 200000, |
162 | .p2_slow = 10, .p2_fast = 5 }, | |
d4906093 | 163 | .find_pll = intel_find_best_PLL, |
e4b36699 KP |
164 | }; |
165 | ||
166 | static const intel_limit_t intel_limits_i9xx_lvds = { | |
0206e353 AJ |
167 | .dot = { .min = 20000, .max = 400000 }, |
168 | .vco = { .min = 1400000, .max = 2800000 }, | |
169 | .n = { .min = 1, .max = 6 }, | |
170 | .m = { .min = 70, .max = 120 }, | |
171 | .m1 = { .min = 10, .max = 22 }, | |
172 | .m2 = { .min = 5, .max = 9 }, | |
173 | .p = { .min = 7, .max = 98 }, | |
174 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
175 | .p2 = { .dot_limit = 112000, |
176 | .p2_slow = 14, .p2_fast = 7 }, | |
d4906093 | 177 | .find_pll = intel_find_best_PLL, |
e4b36699 KP |
178 | }; |
179 | ||
273e27ca | 180 | |
e4b36699 | 181 | static const intel_limit_t intel_limits_g4x_sdvo = { |
273e27ca EA |
182 | .dot = { .min = 25000, .max = 270000 }, |
183 | .vco = { .min = 1750000, .max = 3500000}, | |
184 | .n = { .min = 1, .max = 4 }, | |
185 | .m = { .min = 104, .max = 138 }, | |
186 | .m1 = { .min = 17, .max = 23 }, | |
187 | .m2 = { .min = 5, .max = 11 }, | |
188 | .p = { .min = 10, .max = 30 }, | |
189 | .p1 = { .min = 1, .max = 3}, | |
190 | .p2 = { .dot_limit = 270000, | |
191 | .p2_slow = 10, | |
192 | .p2_fast = 10 | |
044c7c41 | 193 | }, |
d4906093 | 194 | .find_pll = intel_g4x_find_best_PLL, |
e4b36699 KP |
195 | }; |
196 | ||
197 | static const intel_limit_t intel_limits_g4x_hdmi = { | |
273e27ca EA |
198 | .dot = { .min = 22000, .max = 400000 }, |
199 | .vco = { .min = 1750000, .max = 3500000}, | |
200 | .n = { .min = 1, .max = 4 }, | |
201 | .m = { .min = 104, .max = 138 }, | |
202 | .m1 = { .min = 16, .max = 23 }, | |
203 | .m2 = { .min = 5, .max = 11 }, | |
204 | .p = { .min = 5, .max = 80 }, | |
205 | .p1 = { .min = 1, .max = 8}, | |
206 | .p2 = { .dot_limit = 165000, | |
207 | .p2_slow = 10, .p2_fast = 5 }, | |
d4906093 | 208 | .find_pll = intel_g4x_find_best_PLL, |
e4b36699 KP |
209 | }; |
210 | ||
211 | static const intel_limit_t intel_limits_g4x_single_channel_lvds = { | |
273e27ca EA |
212 | .dot = { .min = 20000, .max = 115000 }, |
213 | .vco = { .min = 1750000, .max = 3500000 }, | |
214 | .n = { .min = 1, .max = 3 }, | |
215 | .m = { .min = 104, .max = 138 }, | |
216 | .m1 = { .min = 17, .max = 23 }, | |
217 | .m2 = { .min = 5, .max = 11 }, | |
218 | .p = { .min = 28, .max = 112 }, | |
219 | .p1 = { .min = 2, .max = 8 }, | |
220 | .p2 = { .dot_limit = 0, | |
221 | .p2_slow = 14, .p2_fast = 14 | |
044c7c41 | 222 | }, |
d4906093 | 223 | .find_pll = intel_g4x_find_best_PLL, |
e4b36699 KP |
224 | }; |
225 | ||
226 | static const intel_limit_t intel_limits_g4x_dual_channel_lvds = { | |
273e27ca EA |
227 | .dot = { .min = 80000, .max = 224000 }, |
228 | .vco = { .min = 1750000, .max = 3500000 }, | |
229 | .n = { .min = 1, .max = 3 }, | |
230 | .m = { .min = 104, .max = 138 }, | |
231 | .m1 = { .min = 17, .max = 23 }, | |
232 | .m2 = { .min = 5, .max = 11 }, | |
233 | .p = { .min = 14, .max = 42 }, | |
234 | .p1 = { .min = 2, .max = 6 }, | |
235 | .p2 = { .dot_limit = 0, | |
236 | .p2_slow = 7, .p2_fast = 7 | |
044c7c41 | 237 | }, |
d4906093 | 238 | .find_pll = intel_g4x_find_best_PLL, |
e4b36699 KP |
239 | }; |
240 | ||
241 | static const intel_limit_t intel_limits_g4x_display_port = { | |
0206e353 AJ |
242 | .dot = { .min = 161670, .max = 227000 }, |
243 | .vco = { .min = 1750000, .max = 3500000}, | |
244 | .n = { .min = 1, .max = 2 }, | |
245 | .m = { .min = 97, .max = 108 }, | |
246 | .m1 = { .min = 0x10, .max = 0x12 }, | |
247 | .m2 = { .min = 0x05, .max = 0x06 }, | |
248 | .p = { .min = 10, .max = 20 }, | |
249 | .p1 = { .min = 1, .max = 2}, | |
250 | .p2 = { .dot_limit = 0, | |
273e27ca | 251 | .p2_slow = 10, .p2_fast = 10 }, |
0206e353 | 252 | .find_pll = intel_find_pll_g4x_dp, |
e4b36699 KP |
253 | }; |
254 | ||
f2b115e6 | 255 | static const intel_limit_t intel_limits_pineview_sdvo = { |
0206e353 AJ |
256 | .dot = { .min = 20000, .max = 400000}, |
257 | .vco = { .min = 1700000, .max = 3500000 }, | |
273e27ca | 258 | /* Pineview's Ncounter is a ring counter */ |
0206e353 AJ |
259 | .n = { .min = 3, .max = 6 }, |
260 | .m = { .min = 2, .max = 256 }, | |
273e27ca | 261 | /* Pineview only has one combined m divider, which we treat as m2. */ |
0206e353 AJ |
262 | .m1 = { .min = 0, .max = 0 }, |
263 | .m2 = { .min = 0, .max = 254 }, | |
264 | .p = { .min = 5, .max = 80 }, | |
265 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
266 | .p2 = { .dot_limit = 200000, |
267 | .p2_slow = 10, .p2_fast = 5 }, | |
6115707b | 268 | .find_pll = intel_find_best_PLL, |
e4b36699 KP |
269 | }; |
270 | ||
f2b115e6 | 271 | static const intel_limit_t intel_limits_pineview_lvds = { |
0206e353 AJ |
272 | .dot = { .min = 20000, .max = 400000 }, |
273 | .vco = { .min = 1700000, .max = 3500000 }, | |
274 | .n = { .min = 3, .max = 6 }, | |
275 | .m = { .min = 2, .max = 256 }, | |
276 | .m1 = { .min = 0, .max = 0 }, | |
277 | .m2 = { .min = 0, .max = 254 }, | |
278 | .p = { .min = 7, .max = 112 }, | |
279 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
280 | .p2 = { .dot_limit = 112000, |
281 | .p2_slow = 14, .p2_fast = 14 }, | |
6115707b | 282 | .find_pll = intel_find_best_PLL, |
e4b36699 KP |
283 | }; |
284 | ||
273e27ca EA |
285 | /* Ironlake / Sandybridge |
286 | * | |
287 | * We calculate clock using (register_value + 2) for N/M1/M2, so here | |
288 | * the range value for them is (actual_value - 2). | |
289 | */ | |
b91ad0ec | 290 | static const intel_limit_t intel_limits_ironlake_dac = { |
273e27ca EA |
291 | .dot = { .min = 25000, .max = 350000 }, |
292 | .vco = { .min = 1760000, .max = 3510000 }, | |
293 | .n = { .min = 1, .max = 5 }, | |
294 | .m = { .min = 79, .max = 127 }, | |
295 | .m1 = { .min = 12, .max = 22 }, | |
296 | .m2 = { .min = 5, .max = 9 }, | |
297 | .p = { .min = 5, .max = 80 }, | |
298 | .p1 = { .min = 1, .max = 8 }, | |
299 | .p2 = { .dot_limit = 225000, | |
300 | .p2_slow = 10, .p2_fast = 5 }, | |
4547668a | 301 | .find_pll = intel_g4x_find_best_PLL, |
e4b36699 KP |
302 | }; |
303 | ||
b91ad0ec | 304 | static const intel_limit_t intel_limits_ironlake_single_lvds = { |
273e27ca EA |
305 | .dot = { .min = 25000, .max = 350000 }, |
306 | .vco = { .min = 1760000, .max = 3510000 }, | |
307 | .n = { .min = 1, .max = 3 }, | |
308 | .m = { .min = 79, .max = 118 }, | |
309 | .m1 = { .min = 12, .max = 22 }, | |
310 | .m2 = { .min = 5, .max = 9 }, | |
311 | .p = { .min = 28, .max = 112 }, | |
312 | .p1 = { .min = 2, .max = 8 }, | |
313 | .p2 = { .dot_limit = 225000, | |
314 | .p2_slow = 14, .p2_fast = 14 }, | |
b91ad0ec ZW |
315 | .find_pll = intel_g4x_find_best_PLL, |
316 | }; | |
317 | ||
318 | static const intel_limit_t intel_limits_ironlake_dual_lvds = { | |
273e27ca EA |
319 | .dot = { .min = 25000, .max = 350000 }, |
320 | .vco = { .min = 1760000, .max = 3510000 }, | |
321 | .n = { .min = 1, .max = 3 }, | |
322 | .m = { .min = 79, .max = 127 }, | |
323 | .m1 = { .min = 12, .max = 22 }, | |
324 | .m2 = { .min = 5, .max = 9 }, | |
325 | .p = { .min = 14, .max = 56 }, | |
326 | .p1 = { .min = 2, .max = 8 }, | |
327 | .p2 = { .dot_limit = 225000, | |
328 | .p2_slow = 7, .p2_fast = 7 }, | |
b91ad0ec ZW |
329 | .find_pll = intel_g4x_find_best_PLL, |
330 | }; | |
331 | ||
273e27ca | 332 | /* LVDS 100mhz refclk limits. */ |
b91ad0ec | 333 | static const intel_limit_t intel_limits_ironlake_single_lvds_100m = { |
273e27ca EA |
334 | .dot = { .min = 25000, .max = 350000 }, |
335 | .vco = { .min = 1760000, .max = 3510000 }, | |
336 | .n = { .min = 1, .max = 2 }, | |
337 | .m = { .min = 79, .max = 126 }, | |
338 | .m1 = { .min = 12, .max = 22 }, | |
339 | .m2 = { .min = 5, .max = 9 }, | |
340 | .p = { .min = 28, .max = 112 }, | |
0206e353 | 341 | .p1 = { .min = 2, .max = 8 }, |
273e27ca EA |
342 | .p2 = { .dot_limit = 225000, |
343 | .p2_slow = 14, .p2_fast = 14 }, | |
b91ad0ec ZW |
344 | .find_pll = intel_g4x_find_best_PLL, |
345 | }; | |
346 | ||
347 | static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = { | |
273e27ca EA |
348 | .dot = { .min = 25000, .max = 350000 }, |
349 | .vco = { .min = 1760000, .max = 3510000 }, | |
350 | .n = { .min = 1, .max = 3 }, | |
351 | .m = { .min = 79, .max = 126 }, | |
352 | .m1 = { .min = 12, .max = 22 }, | |
353 | .m2 = { .min = 5, .max = 9 }, | |
354 | .p = { .min = 14, .max = 42 }, | |
0206e353 | 355 | .p1 = { .min = 2, .max = 6 }, |
273e27ca EA |
356 | .p2 = { .dot_limit = 225000, |
357 | .p2_slow = 7, .p2_fast = 7 }, | |
4547668a ZY |
358 | .find_pll = intel_g4x_find_best_PLL, |
359 | }; | |
360 | ||
361 | static const intel_limit_t intel_limits_ironlake_display_port = { | |
0206e353 AJ |
362 | .dot = { .min = 25000, .max = 350000 }, |
363 | .vco = { .min = 1760000, .max = 3510000}, | |
364 | .n = { .min = 1, .max = 2 }, | |
365 | .m = { .min = 81, .max = 90 }, | |
366 | .m1 = { .min = 12, .max = 22 }, | |
367 | .m2 = { .min = 5, .max = 9 }, | |
368 | .p = { .min = 10, .max = 20 }, | |
369 | .p1 = { .min = 1, .max = 2}, | |
370 | .p2 = { .dot_limit = 0, | |
273e27ca | 371 | .p2_slow = 10, .p2_fast = 10 }, |
0206e353 | 372 | .find_pll = intel_find_pll_ironlake_dp, |
79e53945 JB |
373 | }; |
374 | ||
a0c4da24 JB |
375 | static const intel_limit_t intel_limits_vlv_dac = { |
376 | .dot = { .min = 25000, .max = 270000 }, | |
377 | .vco = { .min = 4000000, .max = 6000000 }, | |
378 | .n = { .min = 1, .max = 7 }, | |
379 | .m = { .min = 22, .max = 450 }, /* guess */ | |
380 | .m1 = { .min = 2, .max = 3 }, | |
381 | .m2 = { .min = 11, .max = 156 }, | |
382 | .p = { .min = 10, .max = 30 }, | |
383 | .p1 = { .min = 2, .max = 3 }, | |
384 | .p2 = { .dot_limit = 270000, | |
385 | .p2_slow = 2, .p2_fast = 20 }, | |
386 | .find_pll = intel_vlv_find_best_pll, | |
387 | }; | |
388 | ||
389 | static const intel_limit_t intel_limits_vlv_hdmi = { | |
390 | .dot = { .min = 20000, .max = 165000 }, | |
17dc9257 | 391 | .vco = { .min = 4000000, .max = 5994000}, |
a0c4da24 JB |
392 | .n = { .min = 1, .max = 7 }, |
393 | .m = { .min = 60, .max = 300 }, /* guess */ | |
394 | .m1 = { .min = 2, .max = 3 }, | |
395 | .m2 = { .min = 11, .max = 156 }, | |
396 | .p = { .min = 10, .max = 30 }, | |
397 | .p1 = { .min = 2, .max = 3 }, | |
398 | .p2 = { .dot_limit = 270000, | |
399 | .p2_slow = 2, .p2_fast = 20 }, | |
400 | .find_pll = intel_vlv_find_best_pll, | |
401 | }; | |
402 | ||
403 | static const intel_limit_t intel_limits_vlv_dp = { | |
74a4dd2e VP |
404 | .dot = { .min = 25000, .max = 270000 }, |
405 | .vco = { .min = 4000000, .max = 6000000 }, | |
a0c4da24 | 406 | .n = { .min = 1, .max = 7 }, |
74a4dd2e | 407 | .m = { .min = 22, .max = 450 }, |
a0c4da24 JB |
408 | .m1 = { .min = 2, .max = 3 }, |
409 | .m2 = { .min = 11, .max = 156 }, | |
410 | .p = { .min = 10, .max = 30 }, | |
411 | .p1 = { .min = 2, .max = 3 }, | |
412 | .p2 = { .dot_limit = 270000, | |
413 | .p2_slow = 2, .p2_fast = 20 }, | |
414 | .find_pll = intel_vlv_find_best_pll, | |
415 | }; | |
416 | ||
57f350b6 JB |
417 | u32 intel_dpio_read(struct drm_i915_private *dev_priv, int reg) |
418 | { | |
09153000 | 419 | WARN_ON(!mutex_is_locked(&dev_priv->dpio_lock)); |
57f350b6 | 420 | |
57f350b6 JB |
421 | if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) { |
422 | DRM_ERROR("DPIO idle wait timed out\n"); | |
09153000 | 423 | return 0; |
57f350b6 JB |
424 | } |
425 | ||
426 | I915_WRITE(DPIO_REG, reg); | |
427 | I915_WRITE(DPIO_PKT, DPIO_RID | DPIO_OP_READ | DPIO_PORTID | | |
428 | DPIO_BYTE); | |
429 | if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) { | |
430 | DRM_ERROR("DPIO read wait timed out\n"); | |
09153000 | 431 | return 0; |
57f350b6 | 432 | } |
57f350b6 | 433 | |
09153000 | 434 | return I915_READ(DPIO_DATA); |
57f350b6 JB |
435 | } |
436 | ||
a0c4da24 JB |
437 | static void intel_dpio_write(struct drm_i915_private *dev_priv, int reg, |
438 | u32 val) | |
439 | { | |
09153000 | 440 | WARN_ON(!mutex_is_locked(&dev_priv->dpio_lock)); |
a0c4da24 | 441 | |
a0c4da24 JB |
442 | if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) { |
443 | DRM_ERROR("DPIO idle wait timed out\n"); | |
09153000 | 444 | return; |
a0c4da24 JB |
445 | } |
446 | ||
447 | I915_WRITE(DPIO_DATA, val); | |
448 | I915_WRITE(DPIO_REG, reg); | |
449 | I915_WRITE(DPIO_PKT, DPIO_RID | DPIO_OP_WRITE | DPIO_PORTID | | |
450 | DPIO_BYTE); | |
451 | if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) | |
452 | DRM_ERROR("DPIO write wait timed out\n"); | |
a0c4da24 JB |
453 | } |
454 | ||
57f350b6 JB |
455 | static void vlv_init_dpio(struct drm_device *dev) |
456 | { | |
457 | struct drm_i915_private *dev_priv = dev->dev_private; | |
458 | ||
459 | /* Reset the DPIO config */ | |
460 | I915_WRITE(DPIO_CTL, 0); | |
461 | POSTING_READ(DPIO_CTL); | |
462 | I915_WRITE(DPIO_CTL, 1); | |
463 | POSTING_READ(DPIO_CTL); | |
464 | } | |
465 | ||
1b894b59 CW |
466 | static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc, |
467 | int refclk) | |
2c07245f | 468 | { |
b91ad0ec | 469 | struct drm_device *dev = crtc->dev; |
2c07245f | 470 | const intel_limit_t *limit; |
b91ad0ec ZW |
471 | |
472 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
1974cad0 | 473 | if (intel_is_dual_link_lvds(dev)) { |
b91ad0ec | 474 | /* LVDS dual channel */ |
1b894b59 | 475 | if (refclk == 100000) |
b91ad0ec ZW |
476 | limit = &intel_limits_ironlake_dual_lvds_100m; |
477 | else | |
478 | limit = &intel_limits_ironlake_dual_lvds; | |
479 | } else { | |
1b894b59 | 480 | if (refclk == 100000) |
b91ad0ec ZW |
481 | limit = &intel_limits_ironlake_single_lvds_100m; |
482 | else | |
483 | limit = &intel_limits_ironlake_single_lvds; | |
484 | } | |
485 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) || | |
547dc041 | 486 | intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) |
4547668a | 487 | limit = &intel_limits_ironlake_display_port; |
2c07245f | 488 | else |
b91ad0ec | 489 | limit = &intel_limits_ironlake_dac; |
2c07245f ZW |
490 | |
491 | return limit; | |
492 | } | |
493 | ||
044c7c41 ML |
494 | static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc) |
495 | { | |
496 | struct drm_device *dev = crtc->dev; | |
044c7c41 ML |
497 | const intel_limit_t *limit; |
498 | ||
499 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
1974cad0 | 500 | if (intel_is_dual_link_lvds(dev)) |
044c7c41 | 501 | /* LVDS with dual channel */ |
e4b36699 | 502 | limit = &intel_limits_g4x_dual_channel_lvds; |
044c7c41 ML |
503 | else |
504 | /* LVDS with dual channel */ | |
e4b36699 | 505 | limit = &intel_limits_g4x_single_channel_lvds; |
044c7c41 ML |
506 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) || |
507 | intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) { | |
e4b36699 | 508 | limit = &intel_limits_g4x_hdmi; |
044c7c41 | 509 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) { |
e4b36699 | 510 | limit = &intel_limits_g4x_sdvo; |
0206e353 | 511 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) { |
e4b36699 | 512 | limit = &intel_limits_g4x_display_port; |
044c7c41 | 513 | } else /* The option is for other outputs */ |
e4b36699 | 514 | limit = &intel_limits_i9xx_sdvo; |
044c7c41 ML |
515 | |
516 | return limit; | |
517 | } | |
518 | ||
1b894b59 | 519 | static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk) |
79e53945 JB |
520 | { |
521 | struct drm_device *dev = crtc->dev; | |
522 | const intel_limit_t *limit; | |
523 | ||
bad720ff | 524 | if (HAS_PCH_SPLIT(dev)) |
1b894b59 | 525 | limit = intel_ironlake_limit(crtc, refclk); |
2c07245f | 526 | else if (IS_G4X(dev)) { |
044c7c41 | 527 | limit = intel_g4x_limit(crtc); |
f2b115e6 | 528 | } else if (IS_PINEVIEW(dev)) { |
2177832f | 529 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
f2b115e6 | 530 | limit = &intel_limits_pineview_lvds; |
2177832f | 531 | else |
f2b115e6 | 532 | limit = &intel_limits_pineview_sdvo; |
a0c4da24 JB |
533 | } else if (IS_VALLEYVIEW(dev)) { |
534 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) | |
535 | limit = &intel_limits_vlv_dac; | |
536 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) | |
537 | limit = &intel_limits_vlv_hdmi; | |
538 | else | |
539 | limit = &intel_limits_vlv_dp; | |
a6c45cf0 CW |
540 | } else if (!IS_GEN2(dev)) { |
541 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) | |
542 | limit = &intel_limits_i9xx_lvds; | |
543 | else | |
544 | limit = &intel_limits_i9xx_sdvo; | |
79e53945 JB |
545 | } else { |
546 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) | |
e4b36699 | 547 | limit = &intel_limits_i8xx_lvds; |
79e53945 | 548 | else |
e4b36699 | 549 | limit = &intel_limits_i8xx_dvo; |
79e53945 JB |
550 | } |
551 | return limit; | |
552 | } | |
553 | ||
f2b115e6 AJ |
554 | /* m1 is reserved as 0 in Pineview, n is a ring counter */ |
555 | static void pineview_clock(int refclk, intel_clock_t *clock) | |
79e53945 | 556 | { |
2177832f SL |
557 | clock->m = clock->m2 + 2; |
558 | clock->p = clock->p1 * clock->p2; | |
559 | clock->vco = refclk * clock->m / clock->n; | |
560 | clock->dot = clock->vco / clock->p; | |
561 | } | |
562 | ||
563 | static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock) | |
564 | { | |
f2b115e6 AJ |
565 | if (IS_PINEVIEW(dev)) { |
566 | pineview_clock(refclk, clock); | |
2177832f SL |
567 | return; |
568 | } | |
79e53945 JB |
569 | clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2); |
570 | clock->p = clock->p1 * clock->p2; | |
571 | clock->vco = refclk * clock->m / (clock->n + 2); | |
572 | clock->dot = clock->vco / clock->p; | |
573 | } | |
574 | ||
79e53945 JB |
575 | /** |
576 | * Returns whether any output on the specified pipe is of the specified type | |
577 | */ | |
4ef69c7a | 578 | bool intel_pipe_has_type(struct drm_crtc *crtc, int type) |
79e53945 | 579 | { |
4ef69c7a | 580 | struct drm_device *dev = crtc->dev; |
4ef69c7a CW |
581 | struct intel_encoder *encoder; |
582 | ||
6c2b7c12 DV |
583 | for_each_encoder_on_crtc(dev, crtc, encoder) |
584 | if (encoder->type == type) | |
4ef69c7a CW |
585 | return true; |
586 | ||
587 | return false; | |
79e53945 JB |
588 | } |
589 | ||
7c04d1d9 | 590 | #define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0) |
79e53945 JB |
591 | /** |
592 | * Returns whether the given set of divisors are valid for a given refclk with | |
593 | * the given connectors. | |
594 | */ | |
595 | ||
1b894b59 CW |
596 | static bool intel_PLL_is_valid(struct drm_device *dev, |
597 | const intel_limit_t *limit, | |
598 | const intel_clock_t *clock) | |
79e53945 | 599 | { |
79e53945 | 600 | if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1) |
0206e353 | 601 | INTELPllInvalid("p1 out of range\n"); |
79e53945 | 602 | if (clock->p < limit->p.min || limit->p.max < clock->p) |
0206e353 | 603 | INTELPllInvalid("p out of range\n"); |
79e53945 | 604 | if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2) |
0206e353 | 605 | INTELPllInvalid("m2 out of range\n"); |
79e53945 | 606 | if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1) |
0206e353 | 607 | INTELPllInvalid("m1 out of range\n"); |
f2b115e6 | 608 | if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev)) |
0206e353 | 609 | INTELPllInvalid("m1 <= m2\n"); |
79e53945 | 610 | if (clock->m < limit->m.min || limit->m.max < clock->m) |
0206e353 | 611 | INTELPllInvalid("m out of range\n"); |
79e53945 | 612 | if (clock->n < limit->n.min || limit->n.max < clock->n) |
0206e353 | 613 | INTELPllInvalid("n out of range\n"); |
79e53945 | 614 | if (clock->vco < limit->vco.min || limit->vco.max < clock->vco) |
0206e353 | 615 | INTELPllInvalid("vco out of range\n"); |
79e53945 JB |
616 | /* XXX: We may need to be checking "Dot clock" depending on the multiplier, |
617 | * connector, etc., rather than just a single range. | |
618 | */ | |
619 | if (clock->dot < limit->dot.min || limit->dot.max < clock->dot) | |
0206e353 | 620 | INTELPllInvalid("dot out of range\n"); |
79e53945 JB |
621 | |
622 | return true; | |
623 | } | |
624 | ||
d4906093 ML |
625 | static bool |
626 | intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | |
cec2f356 SP |
627 | int target, int refclk, intel_clock_t *match_clock, |
628 | intel_clock_t *best_clock) | |
d4906093 | 629 | |
79e53945 JB |
630 | { |
631 | struct drm_device *dev = crtc->dev; | |
79e53945 | 632 | intel_clock_t clock; |
79e53945 JB |
633 | int err = target; |
634 | ||
a210b028 | 635 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
79e53945 | 636 | /* |
a210b028 DV |
637 | * For LVDS just rely on its current settings for dual-channel. |
638 | * We haven't figured out how to reliably set up different | |
639 | * single/dual channel state, if we even can. | |
79e53945 | 640 | */ |
1974cad0 | 641 | if (intel_is_dual_link_lvds(dev)) |
79e53945 JB |
642 | clock.p2 = limit->p2.p2_fast; |
643 | else | |
644 | clock.p2 = limit->p2.p2_slow; | |
645 | } else { | |
646 | if (target < limit->p2.dot_limit) | |
647 | clock.p2 = limit->p2.p2_slow; | |
648 | else | |
649 | clock.p2 = limit->p2.p2_fast; | |
650 | } | |
651 | ||
0206e353 | 652 | memset(best_clock, 0, sizeof(*best_clock)); |
79e53945 | 653 | |
42158660 ZY |
654 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; |
655 | clock.m1++) { | |
656 | for (clock.m2 = limit->m2.min; | |
657 | clock.m2 <= limit->m2.max; clock.m2++) { | |
f2b115e6 AJ |
658 | /* m1 is always 0 in Pineview */ |
659 | if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev)) | |
42158660 ZY |
660 | break; |
661 | for (clock.n = limit->n.min; | |
662 | clock.n <= limit->n.max; clock.n++) { | |
663 | for (clock.p1 = limit->p1.min; | |
664 | clock.p1 <= limit->p1.max; clock.p1++) { | |
79e53945 JB |
665 | int this_err; |
666 | ||
2177832f | 667 | intel_clock(dev, refclk, &clock); |
1b894b59 CW |
668 | if (!intel_PLL_is_valid(dev, limit, |
669 | &clock)) | |
79e53945 | 670 | continue; |
cec2f356 SP |
671 | if (match_clock && |
672 | clock.p != match_clock->p) | |
673 | continue; | |
79e53945 JB |
674 | |
675 | this_err = abs(clock.dot - target); | |
676 | if (this_err < err) { | |
677 | *best_clock = clock; | |
678 | err = this_err; | |
679 | } | |
680 | } | |
681 | } | |
682 | } | |
683 | } | |
684 | ||
685 | return (err != target); | |
686 | } | |
687 | ||
d4906093 ML |
688 | static bool |
689 | intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | |
cec2f356 SP |
690 | int target, int refclk, intel_clock_t *match_clock, |
691 | intel_clock_t *best_clock) | |
d4906093 ML |
692 | { |
693 | struct drm_device *dev = crtc->dev; | |
d4906093 ML |
694 | intel_clock_t clock; |
695 | int max_n; | |
696 | bool found; | |
6ba770dc AJ |
697 | /* approximately equals target * 0.00585 */ |
698 | int err_most = (target >> 8) + (target >> 9); | |
d4906093 ML |
699 | found = false; |
700 | ||
701 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
4547668a ZY |
702 | int lvds_reg; |
703 | ||
c619eed4 | 704 | if (HAS_PCH_SPLIT(dev)) |
4547668a ZY |
705 | lvds_reg = PCH_LVDS; |
706 | else | |
707 | lvds_reg = LVDS; | |
1974cad0 | 708 | if (intel_is_dual_link_lvds(dev)) |
d4906093 ML |
709 | clock.p2 = limit->p2.p2_fast; |
710 | else | |
711 | clock.p2 = limit->p2.p2_slow; | |
712 | } else { | |
713 | if (target < limit->p2.dot_limit) | |
714 | clock.p2 = limit->p2.p2_slow; | |
715 | else | |
716 | clock.p2 = limit->p2.p2_fast; | |
717 | } | |
718 | ||
719 | memset(best_clock, 0, sizeof(*best_clock)); | |
720 | max_n = limit->n.max; | |
f77f13e2 | 721 | /* based on hardware requirement, prefer smaller n to precision */ |
d4906093 | 722 | for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { |
f77f13e2 | 723 | /* based on hardware requirement, prefere larger m1,m2 */ |
d4906093 ML |
724 | for (clock.m1 = limit->m1.max; |
725 | clock.m1 >= limit->m1.min; clock.m1--) { | |
726 | for (clock.m2 = limit->m2.max; | |
727 | clock.m2 >= limit->m2.min; clock.m2--) { | |
728 | for (clock.p1 = limit->p1.max; | |
729 | clock.p1 >= limit->p1.min; clock.p1--) { | |
730 | int this_err; | |
731 | ||
2177832f | 732 | intel_clock(dev, refclk, &clock); |
1b894b59 CW |
733 | if (!intel_PLL_is_valid(dev, limit, |
734 | &clock)) | |
d4906093 | 735 | continue; |
cec2f356 SP |
736 | if (match_clock && |
737 | clock.p != match_clock->p) | |
738 | continue; | |
1b894b59 CW |
739 | |
740 | this_err = abs(clock.dot - target); | |
d4906093 ML |
741 | if (this_err < err_most) { |
742 | *best_clock = clock; | |
743 | err_most = this_err; | |
744 | max_n = clock.n; | |
745 | found = true; | |
746 | } | |
747 | } | |
748 | } | |
749 | } | |
750 | } | |
2c07245f ZW |
751 | return found; |
752 | } | |
753 | ||
5eb08b69 | 754 | static bool |
f2b115e6 | 755 | intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc, |
cec2f356 SP |
756 | int target, int refclk, intel_clock_t *match_clock, |
757 | intel_clock_t *best_clock) | |
5eb08b69 ZW |
758 | { |
759 | struct drm_device *dev = crtc->dev; | |
760 | intel_clock_t clock; | |
4547668a | 761 | |
5eb08b69 ZW |
762 | if (target < 200000) { |
763 | clock.n = 1; | |
764 | clock.p1 = 2; | |
765 | clock.p2 = 10; | |
766 | clock.m1 = 12; | |
767 | clock.m2 = 9; | |
768 | } else { | |
769 | clock.n = 2; | |
770 | clock.p1 = 1; | |
771 | clock.p2 = 10; | |
772 | clock.m1 = 14; | |
773 | clock.m2 = 8; | |
774 | } | |
775 | intel_clock(dev, refclk, &clock); | |
776 | memcpy(best_clock, &clock, sizeof(intel_clock_t)); | |
777 | return true; | |
778 | } | |
779 | ||
a4fc5ed6 KP |
780 | /* DisplayPort has only two frequencies, 162MHz and 270MHz */ |
781 | static bool | |
782 | intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc, | |
cec2f356 SP |
783 | int target, int refclk, intel_clock_t *match_clock, |
784 | intel_clock_t *best_clock) | |
a4fc5ed6 | 785 | { |
5eddb70b CW |
786 | intel_clock_t clock; |
787 | if (target < 200000) { | |
788 | clock.p1 = 2; | |
789 | clock.p2 = 10; | |
790 | clock.n = 2; | |
791 | clock.m1 = 23; | |
792 | clock.m2 = 8; | |
793 | } else { | |
794 | clock.p1 = 1; | |
795 | clock.p2 = 10; | |
796 | clock.n = 1; | |
797 | clock.m1 = 14; | |
798 | clock.m2 = 2; | |
799 | } | |
800 | clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2); | |
801 | clock.p = (clock.p1 * clock.p2); | |
802 | clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p; | |
803 | clock.vco = 0; | |
804 | memcpy(best_clock, &clock, sizeof(intel_clock_t)); | |
805 | return true; | |
a4fc5ed6 | 806 | } |
a0c4da24 JB |
807 | static bool |
808 | intel_vlv_find_best_pll(const intel_limit_t *limit, struct drm_crtc *crtc, | |
809 | int target, int refclk, intel_clock_t *match_clock, | |
810 | intel_clock_t *best_clock) | |
811 | { | |
812 | u32 p1, p2, m1, m2, vco, bestn, bestm1, bestm2, bestp1, bestp2; | |
813 | u32 m, n, fastclk; | |
814 | u32 updrate, minupdate, fracbits, p; | |
815 | unsigned long bestppm, ppm, absppm; | |
816 | int dotclk, flag; | |
817 | ||
af447bd3 | 818 | flag = 0; |
a0c4da24 JB |
819 | dotclk = target * 1000; |
820 | bestppm = 1000000; | |
821 | ppm = absppm = 0; | |
822 | fastclk = dotclk / (2*100); | |
823 | updrate = 0; | |
824 | minupdate = 19200; | |
825 | fracbits = 1; | |
826 | n = p = p1 = p2 = m = m1 = m2 = vco = bestn = 0; | |
827 | bestm1 = bestm2 = bestp1 = bestp2 = 0; | |
828 | ||
829 | /* based on hardware requirement, prefer smaller n to precision */ | |
830 | for (n = limit->n.min; n <= ((refclk) / minupdate); n++) { | |
831 | updrate = refclk / n; | |
832 | for (p1 = limit->p1.max; p1 > limit->p1.min; p1--) { | |
833 | for (p2 = limit->p2.p2_fast+1; p2 > 0; p2--) { | |
834 | if (p2 > 10) | |
835 | p2 = p2 - 1; | |
836 | p = p1 * p2; | |
837 | /* based on hardware requirement, prefer bigger m1,m2 values */ | |
838 | for (m1 = limit->m1.min; m1 <= limit->m1.max; m1++) { | |
839 | m2 = (((2*(fastclk * p * n / m1 )) + | |
840 | refclk) / (2*refclk)); | |
841 | m = m1 * m2; | |
842 | vco = updrate * m; | |
843 | if (vco >= limit->vco.min && vco < limit->vco.max) { | |
844 | ppm = 1000000 * ((vco / p) - fastclk) / fastclk; | |
845 | absppm = (ppm > 0) ? ppm : (-ppm); | |
846 | if (absppm < 100 && ((p1 * p2) > (bestp1 * bestp2))) { | |
847 | bestppm = 0; | |
848 | flag = 1; | |
849 | } | |
850 | if (absppm < bestppm - 10) { | |
851 | bestppm = absppm; | |
852 | flag = 1; | |
853 | } | |
854 | if (flag) { | |
855 | bestn = n; | |
856 | bestm1 = m1; | |
857 | bestm2 = m2; | |
858 | bestp1 = p1; | |
859 | bestp2 = p2; | |
860 | flag = 0; | |
861 | } | |
862 | } | |
863 | } | |
864 | } | |
865 | } | |
866 | } | |
867 | best_clock->n = bestn; | |
868 | best_clock->m1 = bestm1; | |
869 | best_clock->m2 = bestm2; | |
870 | best_clock->p1 = bestp1; | |
871 | best_clock->p2 = bestp2; | |
872 | ||
873 | return true; | |
874 | } | |
a4fc5ed6 | 875 | |
a5c961d1 PZ |
876 | enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv, |
877 | enum pipe pipe) | |
878 | { | |
879 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; | |
880 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
881 | ||
882 | return intel_crtc->cpu_transcoder; | |
883 | } | |
884 | ||
a928d536 PZ |
885 | static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe) |
886 | { | |
887 | struct drm_i915_private *dev_priv = dev->dev_private; | |
888 | u32 frame, frame_reg = PIPEFRAME(pipe); | |
889 | ||
890 | frame = I915_READ(frame_reg); | |
891 | ||
892 | if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50)) | |
893 | DRM_DEBUG_KMS("vblank wait timed out\n"); | |
894 | } | |
895 | ||
9d0498a2 JB |
896 | /** |
897 | * intel_wait_for_vblank - wait for vblank on a given pipe | |
898 | * @dev: drm device | |
899 | * @pipe: pipe to wait for | |
900 | * | |
901 | * Wait for vblank to occur on a given pipe. Needed for various bits of | |
902 | * mode setting code. | |
903 | */ | |
904 | void intel_wait_for_vblank(struct drm_device *dev, int pipe) | |
79e53945 | 905 | { |
9d0498a2 | 906 | struct drm_i915_private *dev_priv = dev->dev_private; |
9db4a9c7 | 907 | int pipestat_reg = PIPESTAT(pipe); |
9d0498a2 | 908 | |
a928d536 PZ |
909 | if (INTEL_INFO(dev)->gen >= 5) { |
910 | ironlake_wait_for_vblank(dev, pipe); | |
911 | return; | |
912 | } | |
913 | ||
300387c0 CW |
914 | /* Clear existing vblank status. Note this will clear any other |
915 | * sticky status fields as well. | |
916 | * | |
917 | * This races with i915_driver_irq_handler() with the result | |
918 | * that either function could miss a vblank event. Here it is not | |
919 | * fatal, as we will either wait upon the next vblank interrupt or | |
920 | * timeout. Generally speaking intel_wait_for_vblank() is only | |
921 | * called during modeset at which time the GPU should be idle and | |
922 | * should *not* be performing page flips and thus not waiting on | |
923 | * vblanks... | |
924 | * Currently, the result of us stealing a vblank from the irq | |
925 | * handler is that a single frame will be skipped during swapbuffers. | |
926 | */ | |
927 | I915_WRITE(pipestat_reg, | |
928 | I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS); | |
929 | ||
9d0498a2 | 930 | /* Wait for vblank interrupt bit to set */ |
481b6af3 CW |
931 | if (wait_for(I915_READ(pipestat_reg) & |
932 | PIPE_VBLANK_INTERRUPT_STATUS, | |
933 | 50)) | |
9d0498a2 JB |
934 | DRM_DEBUG_KMS("vblank wait timed out\n"); |
935 | } | |
936 | ||
ab7ad7f6 KP |
937 | /* |
938 | * intel_wait_for_pipe_off - wait for pipe to turn off | |
9d0498a2 JB |
939 | * @dev: drm device |
940 | * @pipe: pipe to wait for | |
941 | * | |
942 | * After disabling a pipe, we can't wait for vblank in the usual way, | |
943 | * spinning on the vblank interrupt status bit, since we won't actually | |
944 | * see an interrupt when the pipe is disabled. | |
945 | * | |
ab7ad7f6 KP |
946 | * On Gen4 and above: |
947 | * wait for the pipe register state bit to turn off | |
948 | * | |
949 | * Otherwise: | |
950 | * wait for the display line value to settle (it usually | |
951 | * ends up stopping at the start of the next frame). | |
58e10eb9 | 952 | * |
9d0498a2 | 953 | */ |
58e10eb9 | 954 | void intel_wait_for_pipe_off(struct drm_device *dev, int pipe) |
9d0498a2 JB |
955 | { |
956 | struct drm_i915_private *dev_priv = dev->dev_private; | |
702e7a56 PZ |
957 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
958 | pipe); | |
ab7ad7f6 KP |
959 | |
960 | if (INTEL_INFO(dev)->gen >= 4) { | |
702e7a56 | 961 | int reg = PIPECONF(cpu_transcoder); |
ab7ad7f6 KP |
962 | |
963 | /* Wait for the Pipe State to go off */ | |
58e10eb9 CW |
964 | if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0, |
965 | 100)) | |
284637d9 | 966 | WARN(1, "pipe_off wait timed out\n"); |
ab7ad7f6 | 967 | } else { |
837ba00f | 968 | u32 last_line, line_mask; |
58e10eb9 | 969 | int reg = PIPEDSL(pipe); |
ab7ad7f6 KP |
970 | unsigned long timeout = jiffies + msecs_to_jiffies(100); |
971 | ||
837ba00f PZ |
972 | if (IS_GEN2(dev)) |
973 | line_mask = DSL_LINEMASK_GEN2; | |
974 | else | |
975 | line_mask = DSL_LINEMASK_GEN3; | |
976 | ||
ab7ad7f6 KP |
977 | /* Wait for the display line to settle */ |
978 | do { | |
837ba00f | 979 | last_line = I915_READ(reg) & line_mask; |
ab7ad7f6 | 980 | mdelay(5); |
837ba00f | 981 | } while (((I915_READ(reg) & line_mask) != last_line) && |
ab7ad7f6 KP |
982 | time_after(timeout, jiffies)); |
983 | if (time_after(jiffies, timeout)) | |
284637d9 | 984 | WARN(1, "pipe_off wait timed out\n"); |
ab7ad7f6 | 985 | } |
79e53945 JB |
986 | } |
987 | ||
b0ea7d37 DL |
988 | /* |
989 | * ibx_digital_port_connected - is the specified port connected? | |
990 | * @dev_priv: i915 private structure | |
991 | * @port: the port to test | |
992 | * | |
993 | * Returns true if @port is connected, false otherwise. | |
994 | */ | |
995 | bool ibx_digital_port_connected(struct drm_i915_private *dev_priv, | |
996 | struct intel_digital_port *port) | |
997 | { | |
998 | u32 bit; | |
999 | ||
c36346e3 DL |
1000 | if (HAS_PCH_IBX(dev_priv->dev)) { |
1001 | switch(port->port) { | |
1002 | case PORT_B: | |
1003 | bit = SDE_PORTB_HOTPLUG; | |
1004 | break; | |
1005 | case PORT_C: | |
1006 | bit = SDE_PORTC_HOTPLUG; | |
1007 | break; | |
1008 | case PORT_D: | |
1009 | bit = SDE_PORTD_HOTPLUG; | |
1010 | break; | |
1011 | default: | |
1012 | return true; | |
1013 | } | |
1014 | } else { | |
1015 | switch(port->port) { | |
1016 | case PORT_B: | |
1017 | bit = SDE_PORTB_HOTPLUG_CPT; | |
1018 | break; | |
1019 | case PORT_C: | |
1020 | bit = SDE_PORTC_HOTPLUG_CPT; | |
1021 | break; | |
1022 | case PORT_D: | |
1023 | bit = SDE_PORTD_HOTPLUG_CPT; | |
1024 | break; | |
1025 | default: | |
1026 | return true; | |
1027 | } | |
b0ea7d37 DL |
1028 | } |
1029 | ||
1030 | return I915_READ(SDEISR) & bit; | |
1031 | } | |
1032 | ||
b24e7179 JB |
1033 | static const char *state_string(bool enabled) |
1034 | { | |
1035 | return enabled ? "on" : "off"; | |
1036 | } | |
1037 | ||
1038 | /* Only for pre-ILK configs */ | |
1039 | static void assert_pll(struct drm_i915_private *dev_priv, | |
1040 | enum pipe pipe, bool state) | |
1041 | { | |
1042 | int reg; | |
1043 | u32 val; | |
1044 | bool cur_state; | |
1045 | ||
1046 | reg = DPLL(pipe); | |
1047 | val = I915_READ(reg); | |
1048 | cur_state = !!(val & DPLL_VCO_ENABLE); | |
1049 | WARN(cur_state != state, | |
1050 | "PLL state assertion failure (expected %s, current %s)\n", | |
1051 | state_string(state), state_string(cur_state)); | |
1052 | } | |
1053 | #define assert_pll_enabled(d, p) assert_pll(d, p, true) | |
1054 | #define assert_pll_disabled(d, p) assert_pll(d, p, false) | |
1055 | ||
040484af JB |
1056 | /* For ILK+ */ |
1057 | static void assert_pch_pll(struct drm_i915_private *dev_priv, | |
92b27b08 CW |
1058 | struct intel_pch_pll *pll, |
1059 | struct intel_crtc *crtc, | |
1060 | bool state) | |
040484af | 1061 | { |
040484af JB |
1062 | u32 val; |
1063 | bool cur_state; | |
1064 | ||
9d82aa17 ED |
1065 | if (HAS_PCH_LPT(dev_priv->dev)) { |
1066 | DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n"); | |
1067 | return; | |
1068 | } | |
1069 | ||
92b27b08 CW |
1070 | if (WARN (!pll, |
1071 | "asserting PCH PLL %s with no PLL\n", state_string(state))) | |
ee7b9f93 | 1072 | return; |
ee7b9f93 | 1073 | |
92b27b08 CW |
1074 | val = I915_READ(pll->pll_reg); |
1075 | cur_state = !!(val & DPLL_VCO_ENABLE); | |
1076 | WARN(cur_state != state, | |
1077 | "PCH PLL state for reg %x assertion failure (expected %s, current %s), val=%08x\n", | |
1078 | pll->pll_reg, state_string(state), state_string(cur_state), val); | |
1079 | ||
1080 | /* Make sure the selected PLL is correctly attached to the transcoder */ | |
1081 | if (crtc && HAS_PCH_CPT(dev_priv->dev)) { | |
d3ccbe86 JB |
1082 | u32 pch_dpll; |
1083 | ||
1084 | pch_dpll = I915_READ(PCH_DPLL_SEL); | |
92b27b08 CW |
1085 | cur_state = pll->pll_reg == _PCH_DPLL_B; |
1086 | if (!WARN(((pch_dpll >> (4 * crtc->pipe)) & 1) != cur_state, | |
1087 | "PLL[%d] not attached to this transcoder %d: %08x\n", | |
1088 | cur_state, crtc->pipe, pch_dpll)) { | |
1089 | cur_state = !!(val >> (4*crtc->pipe + 3)); | |
1090 | WARN(cur_state != state, | |
1091 | "PLL[%d] not %s on this transcoder %d: %08x\n", | |
1092 | pll->pll_reg == _PCH_DPLL_B, | |
1093 | state_string(state), | |
1094 | crtc->pipe, | |
1095 | val); | |
1096 | } | |
d3ccbe86 | 1097 | } |
040484af | 1098 | } |
92b27b08 CW |
1099 | #define assert_pch_pll_enabled(d, p, c) assert_pch_pll(d, p, c, true) |
1100 | #define assert_pch_pll_disabled(d, p, c) assert_pch_pll(d, p, c, false) | |
040484af JB |
1101 | |
1102 | static void assert_fdi_tx(struct drm_i915_private *dev_priv, | |
1103 | enum pipe pipe, bool state) | |
1104 | { | |
1105 | int reg; | |
1106 | u32 val; | |
1107 | bool cur_state; | |
ad80a810 PZ |
1108 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
1109 | pipe); | |
040484af | 1110 | |
affa9354 PZ |
1111 | if (HAS_DDI(dev_priv->dev)) { |
1112 | /* DDI does not have a specific FDI_TX register */ | |
ad80a810 | 1113 | reg = TRANS_DDI_FUNC_CTL(cpu_transcoder); |
bf507ef7 | 1114 | val = I915_READ(reg); |
ad80a810 | 1115 | cur_state = !!(val & TRANS_DDI_FUNC_ENABLE); |
bf507ef7 ED |
1116 | } else { |
1117 | reg = FDI_TX_CTL(pipe); | |
1118 | val = I915_READ(reg); | |
1119 | cur_state = !!(val & FDI_TX_ENABLE); | |
1120 | } | |
040484af JB |
1121 | WARN(cur_state != state, |
1122 | "FDI TX state assertion failure (expected %s, current %s)\n", | |
1123 | state_string(state), state_string(cur_state)); | |
1124 | } | |
1125 | #define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true) | |
1126 | #define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false) | |
1127 | ||
1128 | static void assert_fdi_rx(struct drm_i915_private *dev_priv, | |
1129 | enum pipe pipe, bool state) | |
1130 | { | |
1131 | int reg; | |
1132 | u32 val; | |
1133 | bool cur_state; | |
1134 | ||
d63fa0dc PZ |
1135 | reg = FDI_RX_CTL(pipe); |
1136 | val = I915_READ(reg); | |
1137 | cur_state = !!(val & FDI_RX_ENABLE); | |
040484af JB |
1138 | WARN(cur_state != state, |
1139 | "FDI RX state assertion failure (expected %s, current %s)\n", | |
1140 | state_string(state), state_string(cur_state)); | |
1141 | } | |
1142 | #define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true) | |
1143 | #define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false) | |
1144 | ||
1145 | static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv, | |
1146 | enum pipe pipe) | |
1147 | { | |
1148 | int reg; | |
1149 | u32 val; | |
1150 | ||
1151 | /* ILK FDI PLL is always enabled */ | |
1152 | if (dev_priv->info->gen == 5) | |
1153 | return; | |
1154 | ||
bf507ef7 | 1155 | /* On Haswell, DDI ports are responsible for the FDI PLL setup */ |
affa9354 | 1156 | if (HAS_DDI(dev_priv->dev)) |
bf507ef7 ED |
1157 | return; |
1158 | ||
040484af JB |
1159 | reg = FDI_TX_CTL(pipe); |
1160 | val = I915_READ(reg); | |
1161 | WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n"); | |
1162 | } | |
1163 | ||
1164 | static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv, | |
1165 | enum pipe pipe) | |
1166 | { | |
1167 | int reg; | |
1168 | u32 val; | |
1169 | ||
1170 | reg = FDI_RX_CTL(pipe); | |
1171 | val = I915_READ(reg); | |
1172 | WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n"); | |
1173 | } | |
1174 | ||
ea0760cf JB |
1175 | static void assert_panel_unlocked(struct drm_i915_private *dev_priv, |
1176 | enum pipe pipe) | |
1177 | { | |
1178 | int pp_reg, lvds_reg; | |
1179 | u32 val; | |
1180 | enum pipe panel_pipe = PIPE_A; | |
0de3b485 | 1181 | bool locked = true; |
ea0760cf JB |
1182 | |
1183 | if (HAS_PCH_SPLIT(dev_priv->dev)) { | |
1184 | pp_reg = PCH_PP_CONTROL; | |
1185 | lvds_reg = PCH_LVDS; | |
1186 | } else { | |
1187 | pp_reg = PP_CONTROL; | |
1188 | lvds_reg = LVDS; | |
1189 | } | |
1190 | ||
1191 | val = I915_READ(pp_reg); | |
1192 | if (!(val & PANEL_POWER_ON) || | |
1193 | ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS)) | |
1194 | locked = false; | |
1195 | ||
1196 | if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT) | |
1197 | panel_pipe = PIPE_B; | |
1198 | ||
1199 | WARN(panel_pipe == pipe && locked, | |
1200 | "panel assertion failure, pipe %c regs locked\n", | |
9db4a9c7 | 1201 | pipe_name(pipe)); |
ea0760cf JB |
1202 | } |
1203 | ||
b840d907 JB |
1204 | void assert_pipe(struct drm_i915_private *dev_priv, |
1205 | enum pipe pipe, bool state) | |
b24e7179 JB |
1206 | { |
1207 | int reg; | |
1208 | u32 val; | |
63d7bbe9 | 1209 | bool cur_state; |
702e7a56 PZ |
1210 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
1211 | pipe); | |
b24e7179 | 1212 | |
8e636784 DV |
1213 | /* if we need the pipe A quirk it must be always on */ |
1214 | if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) | |
1215 | state = true; | |
1216 | ||
69310161 PZ |
1217 | if (IS_HASWELL(dev_priv->dev) && cpu_transcoder != TRANSCODER_EDP && |
1218 | !(I915_READ(HSW_PWR_WELL_DRIVER) & HSW_PWR_WELL_ENABLE)) { | |
1219 | cur_state = false; | |
1220 | } else { | |
1221 | reg = PIPECONF(cpu_transcoder); | |
1222 | val = I915_READ(reg); | |
1223 | cur_state = !!(val & PIPECONF_ENABLE); | |
1224 | } | |
1225 | ||
63d7bbe9 JB |
1226 | WARN(cur_state != state, |
1227 | "pipe %c assertion failure (expected %s, current %s)\n", | |
9db4a9c7 | 1228 | pipe_name(pipe), state_string(state), state_string(cur_state)); |
b24e7179 JB |
1229 | } |
1230 | ||
931872fc CW |
1231 | static void assert_plane(struct drm_i915_private *dev_priv, |
1232 | enum plane plane, bool state) | |
b24e7179 JB |
1233 | { |
1234 | int reg; | |
1235 | u32 val; | |
931872fc | 1236 | bool cur_state; |
b24e7179 JB |
1237 | |
1238 | reg = DSPCNTR(plane); | |
1239 | val = I915_READ(reg); | |
931872fc CW |
1240 | cur_state = !!(val & DISPLAY_PLANE_ENABLE); |
1241 | WARN(cur_state != state, | |
1242 | "plane %c assertion failure (expected %s, current %s)\n", | |
1243 | plane_name(plane), state_string(state), state_string(cur_state)); | |
b24e7179 JB |
1244 | } |
1245 | ||
931872fc CW |
1246 | #define assert_plane_enabled(d, p) assert_plane(d, p, true) |
1247 | #define assert_plane_disabled(d, p) assert_plane(d, p, false) | |
1248 | ||
b24e7179 JB |
1249 | static void assert_planes_disabled(struct drm_i915_private *dev_priv, |
1250 | enum pipe pipe) | |
1251 | { | |
1252 | int reg, i; | |
1253 | u32 val; | |
1254 | int cur_pipe; | |
1255 | ||
19ec1358 | 1256 | /* Planes are fixed to pipes on ILK+ */ |
28c05794 AJ |
1257 | if (HAS_PCH_SPLIT(dev_priv->dev)) { |
1258 | reg = DSPCNTR(pipe); | |
1259 | val = I915_READ(reg); | |
1260 | WARN((val & DISPLAY_PLANE_ENABLE), | |
1261 | "plane %c assertion failure, should be disabled but not\n", | |
1262 | plane_name(pipe)); | |
19ec1358 | 1263 | return; |
28c05794 | 1264 | } |
19ec1358 | 1265 | |
b24e7179 JB |
1266 | /* Need to check both planes against the pipe */ |
1267 | for (i = 0; i < 2; i++) { | |
1268 | reg = DSPCNTR(i); | |
1269 | val = I915_READ(reg); | |
1270 | cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >> | |
1271 | DISPPLANE_SEL_PIPE_SHIFT; | |
1272 | WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe, | |
9db4a9c7 JB |
1273 | "plane %c assertion failure, should be off on pipe %c but is still active\n", |
1274 | plane_name(i), pipe_name(pipe)); | |
b24e7179 JB |
1275 | } |
1276 | } | |
1277 | ||
92f2584a JB |
1278 | static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv) |
1279 | { | |
1280 | u32 val; | |
1281 | bool enabled; | |
1282 | ||
9d82aa17 ED |
1283 | if (HAS_PCH_LPT(dev_priv->dev)) { |
1284 | DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n"); | |
1285 | return; | |
1286 | } | |
1287 | ||
92f2584a JB |
1288 | val = I915_READ(PCH_DREF_CONTROL); |
1289 | enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK | | |
1290 | DREF_SUPERSPREAD_SOURCE_MASK)); | |
1291 | WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n"); | |
1292 | } | |
1293 | ||
1294 | static void assert_transcoder_disabled(struct drm_i915_private *dev_priv, | |
1295 | enum pipe pipe) | |
1296 | { | |
1297 | int reg; | |
1298 | u32 val; | |
1299 | bool enabled; | |
1300 | ||
1301 | reg = TRANSCONF(pipe); | |
1302 | val = I915_READ(reg); | |
1303 | enabled = !!(val & TRANS_ENABLE); | |
9db4a9c7 JB |
1304 | WARN(enabled, |
1305 | "transcoder assertion failed, should be off on pipe %c but is still active\n", | |
1306 | pipe_name(pipe)); | |
92f2584a JB |
1307 | } |
1308 | ||
4e634389 KP |
1309 | static bool dp_pipe_enabled(struct drm_i915_private *dev_priv, |
1310 | enum pipe pipe, u32 port_sel, u32 val) | |
f0575e92 KP |
1311 | { |
1312 | if ((val & DP_PORT_EN) == 0) | |
1313 | return false; | |
1314 | ||
1315 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
1316 | u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe); | |
1317 | u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg); | |
1318 | if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel) | |
1319 | return false; | |
1320 | } else { | |
1321 | if ((val & DP_PIPE_MASK) != (pipe << 30)) | |
1322 | return false; | |
1323 | } | |
1324 | return true; | |
1325 | } | |
1326 | ||
1519b995 KP |
1327 | static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv, |
1328 | enum pipe pipe, u32 val) | |
1329 | { | |
1330 | if ((val & PORT_ENABLE) == 0) | |
1331 | return false; | |
1332 | ||
1333 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
1334 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) | |
1335 | return false; | |
1336 | } else { | |
1337 | if ((val & TRANSCODER_MASK) != TRANSCODER(pipe)) | |
1338 | return false; | |
1339 | } | |
1340 | return true; | |
1341 | } | |
1342 | ||
1343 | static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv, | |
1344 | enum pipe pipe, u32 val) | |
1345 | { | |
1346 | if ((val & LVDS_PORT_EN) == 0) | |
1347 | return false; | |
1348 | ||
1349 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
1350 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) | |
1351 | return false; | |
1352 | } else { | |
1353 | if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe)) | |
1354 | return false; | |
1355 | } | |
1356 | return true; | |
1357 | } | |
1358 | ||
1359 | static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv, | |
1360 | enum pipe pipe, u32 val) | |
1361 | { | |
1362 | if ((val & ADPA_DAC_ENABLE) == 0) | |
1363 | return false; | |
1364 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
1365 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) | |
1366 | return false; | |
1367 | } else { | |
1368 | if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe)) | |
1369 | return false; | |
1370 | } | |
1371 | return true; | |
1372 | } | |
1373 | ||
291906f1 | 1374 | static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv, |
f0575e92 | 1375 | enum pipe pipe, int reg, u32 port_sel) |
291906f1 | 1376 | { |
47a05eca | 1377 | u32 val = I915_READ(reg); |
4e634389 | 1378 | WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val), |
291906f1 | 1379 | "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n", |
9db4a9c7 | 1380 | reg, pipe_name(pipe)); |
de9a35ab | 1381 | |
75c5da27 DV |
1382 | WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0 |
1383 | && (val & DP_PIPEB_SELECT), | |
de9a35ab | 1384 | "IBX PCH dp port still using transcoder B\n"); |
291906f1 JB |
1385 | } |
1386 | ||
1387 | static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv, | |
1388 | enum pipe pipe, int reg) | |
1389 | { | |
47a05eca | 1390 | u32 val = I915_READ(reg); |
b70ad586 | 1391 | WARN(hdmi_pipe_enabled(dev_priv, pipe, val), |
23c99e77 | 1392 | "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n", |
9db4a9c7 | 1393 | reg, pipe_name(pipe)); |
de9a35ab | 1394 | |
75c5da27 DV |
1395 | WARN(HAS_PCH_IBX(dev_priv->dev) && (val & PORT_ENABLE) == 0 |
1396 | && (val & SDVO_PIPE_B_SELECT), | |
de9a35ab | 1397 | "IBX PCH hdmi port still using transcoder B\n"); |
291906f1 JB |
1398 | } |
1399 | ||
1400 | static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv, | |
1401 | enum pipe pipe) | |
1402 | { | |
1403 | int reg; | |
1404 | u32 val; | |
291906f1 | 1405 | |
f0575e92 KP |
1406 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B); |
1407 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C); | |
1408 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D); | |
291906f1 JB |
1409 | |
1410 | reg = PCH_ADPA; | |
1411 | val = I915_READ(reg); | |
b70ad586 | 1412 | WARN(adpa_pipe_enabled(dev_priv, pipe, val), |
291906f1 | 1413 | "PCH VGA enabled on transcoder %c, should be disabled\n", |
9db4a9c7 | 1414 | pipe_name(pipe)); |
291906f1 JB |
1415 | |
1416 | reg = PCH_LVDS; | |
1417 | val = I915_READ(reg); | |
b70ad586 | 1418 | WARN(lvds_pipe_enabled(dev_priv, pipe, val), |
291906f1 | 1419 | "PCH LVDS enabled on transcoder %c, should be disabled\n", |
9db4a9c7 | 1420 | pipe_name(pipe)); |
291906f1 JB |
1421 | |
1422 | assert_pch_hdmi_disabled(dev_priv, pipe, HDMIB); | |
1423 | assert_pch_hdmi_disabled(dev_priv, pipe, HDMIC); | |
1424 | assert_pch_hdmi_disabled(dev_priv, pipe, HDMID); | |
1425 | } | |
1426 | ||
63d7bbe9 JB |
1427 | /** |
1428 | * intel_enable_pll - enable a PLL | |
1429 | * @dev_priv: i915 private structure | |
1430 | * @pipe: pipe PLL to enable | |
1431 | * | |
1432 | * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to | |
1433 | * make sure the PLL reg is writable first though, since the panel write | |
1434 | * protect mechanism may be enabled. | |
1435 | * | |
1436 | * Note! This is for pre-ILK only. | |
7434a255 TR |
1437 | * |
1438 | * Unfortunately needed by dvo_ns2501 since the dvo depends on it running. | |
63d7bbe9 JB |
1439 | */ |
1440 | static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) | |
1441 | { | |
1442 | int reg; | |
1443 | u32 val; | |
1444 | ||
1445 | /* No really, not for ILK+ */ | |
a0c4da24 | 1446 | BUG_ON(!IS_VALLEYVIEW(dev_priv->dev) && dev_priv->info->gen >= 5); |
63d7bbe9 JB |
1447 | |
1448 | /* PLL is protected by panel, make sure we can write it */ | |
1449 | if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev)) | |
1450 | assert_panel_unlocked(dev_priv, pipe); | |
1451 | ||
1452 | reg = DPLL(pipe); | |
1453 | val = I915_READ(reg); | |
1454 | val |= DPLL_VCO_ENABLE; | |
1455 | ||
1456 | /* We do this three times for luck */ | |
1457 | I915_WRITE(reg, val); | |
1458 | POSTING_READ(reg); | |
1459 | udelay(150); /* wait for warmup */ | |
1460 | I915_WRITE(reg, val); | |
1461 | POSTING_READ(reg); | |
1462 | udelay(150); /* wait for warmup */ | |
1463 | I915_WRITE(reg, val); | |
1464 | POSTING_READ(reg); | |
1465 | udelay(150); /* wait for warmup */ | |
1466 | } | |
1467 | ||
1468 | /** | |
1469 | * intel_disable_pll - disable a PLL | |
1470 | * @dev_priv: i915 private structure | |
1471 | * @pipe: pipe PLL to disable | |
1472 | * | |
1473 | * Disable the PLL for @pipe, making sure the pipe is off first. | |
1474 | * | |
1475 | * Note! This is for pre-ILK only. | |
1476 | */ | |
1477 | static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) | |
1478 | { | |
1479 | int reg; | |
1480 | u32 val; | |
1481 | ||
1482 | /* Don't disable pipe A or pipe A PLLs if needed */ | |
1483 | if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE)) | |
1484 | return; | |
1485 | ||
1486 | /* Make sure the pipe isn't still relying on us */ | |
1487 | assert_pipe_disabled(dev_priv, pipe); | |
1488 | ||
1489 | reg = DPLL(pipe); | |
1490 | val = I915_READ(reg); | |
1491 | val &= ~DPLL_VCO_ENABLE; | |
1492 | I915_WRITE(reg, val); | |
1493 | POSTING_READ(reg); | |
1494 | } | |
1495 | ||
a416edef ED |
1496 | /* SBI access */ |
1497 | static void | |
988d6ee8 PZ |
1498 | intel_sbi_write(struct drm_i915_private *dev_priv, u16 reg, u32 value, |
1499 | enum intel_sbi_destination destination) | |
a416edef | 1500 | { |
988d6ee8 | 1501 | u32 tmp; |
a416edef | 1502 | |
09153000 | 1503 | WARN_ON(!mutex_is_locked(&dev_priv->dpio_lock)); |
a416edef | 1504 | |
39fb50f6 | 1505 | if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_BUSY) == 0, |
a416edef ED |
1506 | 100)) { |
1507 | DRM_ERROR("timeout waiting for SBI to become ready\n"); | |
09153000 | 1508 | return; |
a416edef ED |
1509 | } |
1510 | ||
988d6ee8 PZ |
1511 | I915_WRITE(SBI_ADDR, (reg << 16)); |
1512 | I915_WRITE(SBI_DATA, value); | |
1513 | ||
1514 | if (destination == SBI_ICLK) | |
1515 | tmp = SBI_CTL_DEST_ICLK | SBI_CTL_OP_CRWR; | |
1516 | else | |
1517 | tmp = SBI_CTL_DEST_MPHY | SBI_CTL_OP_IOWR; | |
1518 | I915_WRITE(SBI_CTL_STAT, SBI_BUSY | tmp); | |
a416edef | 1519 | |
39fb50f6 | 1520 | if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_BUSY | SBI_RESPONSE_FAIL)) == 0, |
a416edef ED |
1521 | 100)) { |
1522 | DRM_ERROR("timeout waiting for SBI to complete write transaction\n"); | |
09153000 | 1523 | return; |
a416edef | 1524 | } |
a416edef ED |
1525 | } |
1526 | ||
1527 | static u32 | |
988d6ee8 PZ |
1528 | intel_sbi_read(struct drm_i915_private *dev_priv, u16 reg, |
1529 | enum intel_sbi_destination destination) | |
a416edef | 1530 | { |
39fb50f6 | 1531 | u32 value = 0; |
09153000 | 1532 | WARN_ON(!mutex_is_locked(&dev_priv->dpio_lock)); |
a416edef | 1533 | |
39fb50f6 | 1534 | if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_BUSY) == 0, |
a416edef ED |
1535 | 100)) { |
1536 | DRM_ERROR("timeout waiting for SBI to become ready\n"); | |
09153000 | 1537 | return 0; |
a416edef ED |
1538 | } |
1539 | ||
988d6ee8 PZ |
1540 | I915_WRITE(SBI_ADDR, (reg << 16)); |
1541 | ||
1542 | if (destination == SBI_ICLK) | |
1543 | value = SBI_CTL_DEST_ICLK | SBI_CTL_OP_CRRD; | |
1544 | else | |
1545 | value = SBI_CTL_DEST_MPHY | SBI_CTL_OP_IORD; | |
1546 | I915_WRITE(SBI_CTL_STAT, value | SBI_BUSY); | |
a416edef | 1547 | |
39fb50f6 | 1548 | if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_BUSY | SBI_RESPONSE_FAIL)) == 0, |
a416edef ED |
1549 | 100)) { |
1550 | DRM_ERROR("timeout waiting for SBI to complete read transaction\n"); | |
09153000 | 1551 | return 0; |
a416edef ED |
1552 | } |
1553 | ||
09153000 | 1554 | return I915_READ(SBI_DATA); |
a416edef ED |
1555 | } |
1556 | ||
92f2584a | 1557 | /** |
b6b4e185 | 1558 | * ironlake_enable_pch_pll - enable PCH PLL |
92f2584a JB |
1559 | * @dev_priv: i915 private structure |
1560 | * @pipe: pipe PLL to enable | |
1561 | * | |
1562 | * The PCH PLL needs to be enabled before the PCH transcoder, since it | |
1563 | * drives the transcoder clock. | |
1564 | */ | |
b6b4e185 | 1565 | static void ironlake_enable_pch_pll(struct intel_crtc *intel_crtc) |
92f2584a | 1566 | { |
ee7b9f93 | 1567 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; |
48da64a8 | 1568 | struct intel_pch_pll *pll; |
92f2584a JB |
1569 | int reg; |
1570 | u32 val; | |
1571 | ||
48da64a8 | 1572 | /* PCH PLLs only available on ILK, SNB and IVB */ |
92f2584a | 1573 | BUG_ON(dev_priv->info->gen < 5); |
48da64a8 CW |
1574 | pll = intel_crtc->pch_pll; |
1575 | if (pll == NULL) | |
1576 | return; | |
1577 | ||
1578 | if (WARN_ON(pll->refcount == 0)) | |
1579 | return; | |
ee7b9f93 JB |
1580 | |
1581 | DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n", | |
1582 | pll->pll_reg, pll->active, pll->on, | |
1583 | intel_crtc->base.base.id); | |
92f2584a JB |
1584 | |
1585 | /* PCH refclock must be enabled first */ | |
1586 | assert_pch_refclk_enabled(dev_priv); | |
1587 | ||
ee7b9f93 | 1588 | if (pll->active++ && pll->on) { |
92b27b08 | 1589 | assert_pch_pll_enabled(dev_priv, pll, NULL); |
ee7b9f93 JB |
1590 | return; |
1591 | } | |
1592 | ||
1593 | DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg); | |
1594 | ||
1595 | reg = pll->pll_reg; | |
92f2584a JB |
1596 | val = I915_READ(reg); |
1597 | val |= DPLL_VCO_ENABLE; | |
1598 | I915_WRITE(reg, val); | |
1599 | POSTING_READ(reg); | |
1600 | udelay(200); | |
ee7b9f93 JB |
1601 | |
1602 | pll->on = true; | |
92f2584a JB |
1603 | } |
1604 | ||
ee7b9f93 | 1605 | static void intel_disable_pch_pll(struct intel_crtc *intel_crtc) |
92f2584a | 1606 | { |
ee7b9f93 JB |
1607 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; |
1608 | struct intel_pch_pll *pll = intel_crtc->pch_pll; | |
92f2584a | 1609 | int reg; |
ee7b9f93 | 1610 | u32 val; |
4c609cb8 | 1611 | |
92f2584a JB |
1612 | /* PCH only available on ILK+ */ |
1613 | BUG_ON(dev_priv->info->gen < 5); | |
ee7b9f93 JB |
1614 | if (pll == NULL) |
1615 | return; | |
92f2584a | 1616 | |
48da64a8 CW |
1617 | if (WARN_ON(pll->refcount == 0)) |
1618 | return; | |
7a419866 | 1619 | |
ee7b9f93 JB |
1620 | DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n", |
1621 | pll->pll_reg, pll->active, pll->on, | |
1622 | intel_crtc->base.base.id); | |
7a419866 | 1623 | |
48da64a8 | 1624 | if (WARN_ON(pll->active == 0)) { |
92b27b08 | 1625 | assert_pch_pll_disabled(dev_priv, pll, NULL); |
48da64a8 CW |
1626 | return; |
1627 | } | |
1628 | ||
ee7b9f93 | 1629 | if (--pll->active) { |
92b27b08 | 1630 | assert_pch_pll_enabled(dev_priv, pll, NULL); |
7a419866 | 1631 | return; |
ee7b9f93 JB |
1632 | } |
1633 | ||
1634 | DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg); | |
1635 | ||
1636 | /* Make sure transcoder isn't still depending on us */ | |
1637 | assert_transcoder_disabled(dev_priv, intel_crtc->pipe); | |
7a419866 | 1638 | |
ee7b9f93 | 1639 | reg = pll->pll_reg; |
92f2584a JB |
1640 | val = I915_READ(reg); |
1641 | val &= ~DPLL_VCO_ENABLE; | |
1642 | I915_WRITE(reg, val); | |
1643 | POSTING_READ(reg); | |
1644 | udelay(200); | |
ee7b9f93 JB |
1645 | |
1646 | pll->on = false; | |
92f2584a JB |
1647 | } |
1648 | ||
b8a4f404 PZ |
1649 | static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv, |
1650 | enum pipe pipe) | |
040484af | 1651 | { |
23670b32 | 1652 | struct drm_device *dev = dev_priv->dev; |
7c26e5c6 | 1653 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
23670b32 | 1654 | uint32_t reg, val, pipeconf_val; |
040484af JB |
1655 | |
1656 | /* PCH only available on ILK+ */ | |
1657 | BUG_ON(dev_priv->info->gen < 5); | |
1658 | ||
1659 | /* Make sure PCH DPLL is enabled */ | |
92b27b08 CW |
1660 | assert_pch_pll_enabled(dev_priv, |
1661 | to_intel_crtc(crtc)->pch_pll, | |
1662 | to_intel_crtc(crtc)); | |
040484af JB |
1663 | |
1664 | /* FDI must be feeding us bits for PCH ports */ | |
1665 | assert_fdi_tx_enabled(dev_priv, pipe); | |
1666 | assert_fdi_rx_enabled(dev_priv, pipe); | |
1667 | ||
23670b32 DV |
1668 | if (HAS_PCH_CPT(dev)) { |
1669 | /* Workaround: Set the timing override bit before enabling the | |
1670 | * pch transcoder. */ | |
1671 | reg = TRANS_CHICKEN2(pipe); | |
1672 | val = I915_READ(reg); | |
1673 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; | |
1674 | I915_WRITE(reg, val); | |
59c859d6 | 1675 | } |
23670b32 | 1676 | |
040484af JB |
1677 | reg = TRANSCONF(pipe); |
1678 | val = I915_READ(reg); | |
5f7f726d | 1679 | pipeconf_val = I915_READ(PIPECONF(pipe)); |
e9bcff5c JB |
1680 | |
1681 | if (HAS_PCH_IBX(dev_priv->dev)) { | |
1682 | /* | |
1683 | * make the BPC in transcoder be consistent with | |
1684 | * that in pipeconf reg. | |
1685 | */ | |
dfd07d72 DV |
1686 | val &= ~PIPECONF_BPC_MASK; |
1687 | val |= pipeconf_val & PIPECONF_BPC_MASK; | |
e9bcff5c | 1688 | } |
5f7f726d PZ |
1689 | |
1690 | val &= ~TRANS_INTERLACE_MASK; | |
1691 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK) | |
7c26e5c6 PZ |
1692 | if (HAS_PCH_IBX(dev_priv->dev) && |
1693 | intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) | |
1694 | val |= TRANS_LEGACY_INTERLACED_ILK; | |
1695 | else | |
1696 | val |= TRANS_INTERLACED; | |
5f7f726d PZ |
1697 | else |
1698 | val |= TRANS_PROGRESSIVE; | |
1699 | ||
040484af JB |
1700 | I915_WRITE(reg, val | TRANS_ENABLE); |
1701 | if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100)) | |
1702 | DRM_ERROR("failed to enable transcoder %d\n", pipe); | |
1703 | } | |
1704 | ||
8fb033d7 | 1705 | static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv, |
937bb610 | 1706 | enum transcoder cpu_transcoder) |
040484af | 1707 | { |
8fb033d7 | 1708 | u32 val, pipeconf_val; |
8fb033d7 PZ |
1709 | |
1710 | /* PCH only available on ILK+ */ | |
1711 | BUG_ON(dev_priv->info->gen < 5); | |
1712 | ||
8fb033d7 | 1713 | /* FDI must be feeding us bits for PCH ports */ |
1a240d4d | 1714 | assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder); |
937bb610 | 1715 | assert_fdi_rx_enabled(dev_priv, TRANSCODER_A); |
8fb033d7 | 1716 | |
223a6fdf PZ |
1717 | /* Workaround: set timing override bit. */ |
1718 | val = I915_READ(_TRANSA_CHICKEN2); | |
23670b32 | 1719 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; |
223a6fdf PZ |
1720 | I915_WRITE(_TRANSA_CHICKEN2, val); |
1721 | ||
25f3ef11 | 1722 | val = TRANS_ENABLE; |
937bb610 | 1723 | pipeconf_val = I915_READ(PIPECONF(cpu_transcoder)); |
8fb033d7 | 1724 | |
9a76b1c6 PZ |
1725 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) == |
1726 | PIPECONF_INTERLACED_ILK) | |
a35f2679 | 1727 | val |= TRANS_INTERLACED; |
8fb033d7 PZ |
1728 | else |
1729 | val |= TRANS_PROGRESSIVE; | |
1730 | ||
25f3ef11 | 1731 | I915_WRITE(TRANSCONF(TRANSCODER_A), val); |
937bb610 PZ |
1732 | if (wait_for(I915_READ(_TRANSACONF) & TRANS_STATE_ENABLE, 100)) |
1733 | DRM_ERROR("Failed to enable PCH transcoder\n"); | |
8fb033d7 PZ |
1734 | } |
1735 | ||
b8a4f404 PZ |
1736 | static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv, |
1737 | enum pipe pipe) | |
040484af | 1738 | { |
23670b32 DV |
1739 | struct drm_device *dev = dev_priv->dev; |
1740 | uint32_t reg, val; | |
040484af JB |
1741 | |
1742 | /* FDI relies on the transcoder */ | |
1743 | assert_fdi_tx_disabled(dev_priv, pipe); | |
1744 | assert_fdi_rx_disabled(dev_priv, pipe); | |
1745 | ||
291906f1 JB |
1746 | /* Ports must be off as well */ |
1747 | assert_pch_ports_disabled(dev_priv, pipe); | |
1748 | ||
040484af JB |
1749 | reg = TRANSCONF(pipe); |
1750 | val = I915_READ(reg); | |
1751 | val &= ~TRANS_ENABLE; | |
1752 | I915_WRITE(reg, val); | |
1753 | /* wait for PCH transcoder off, transcoder state */ | |
1754 | if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50)) | |
4c9c18c2 | 1755 | DRM_ERROR("failed to disable transcoder %d\n", pipe); |
23670b32 DV |
1756 | |
1757 | if (!HAS_PCH_IBX(dev)) { | |
1758 | /* Workaround: Clear the timing override chicken bit again. */ | |
1759 | reg = TRANS_CHICKEN2(pipe); | |
1760 | val = I915_READ(reg); | |
1761 | val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE; | |
1762 | I915_WRITE(reg, val); | |
1763 | } | |
040484af JB |
1764 | } |
1765 | ||
ab4d966c | 1766 | static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv) |
8fb033d7 | 1767 | { |
8fb033d7 PZ |
1768 | u32 val; |
1769 | ||
8a52fd9f | 1770 | val = I915_READ(_TRANSACONF); |
8fb033d7 | 1771 | val &= ~TRANS_ENABLE; |
8a52fd9f | 1772 | I915_WRITE(_TRANSACONF, val); |
8fb033d7 | 1773 | /* wait for PCH transcoder off, transcoder state */ |
8a52fd9f PZ |
1774 | if (wait_for((I915_READ(_TRANSACONF) & TRANS_STATE_ENABLE) == 0, 50)) |
1775 | DRM_ERROR("Failed to disable PCH transcoder\n"); | |
223a6fdf PZ |
1776 | |
1777 | /* Workaround: clear timing override bit. */ | |
1778 | val = I915_READ(_TRANSA_CHICKEN2); | |
23670b32 | 1779 | val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE; |
223a6fdf | 1780 | I915_WRITE(_TRANSA_CHICKEN2, val); |
040484af JB |
1781 | } |
1782 | ||
b24e7179 | 1783 | /** |
309cfea8 | 1784 | * intel_enable_pipe - enable a pipe, asserting requirements |
b24e7179 JB |
1785 | * @dev_priv: i915 private structure |
1786 | * @pipe: pipe to enable | |
040484af | 1787 | * @pch_port: on ILK+, is this pipe driving a PCH port or not |
b24e7179 JB |
1788 | * |
1789 | * Enable @pipe, making sure that various hardware specific requirements | |
1790 | * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc. | |
1791 | * | |
1792 | * @pipe should be %PIPE_A or %PIPE_B. | |
1793 | * | |
1794 | * Will wait until the pipe is actually running (i.e. first vblank) before | |
1795 | * returning. | |
1796 | */ | |
040484af JB |
1797 | static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, |
1798 | bool pch_port) | |
b24e7179 | 1799 | { |
702e7a56 PZ |
1800 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
1801 | pipe); | |
1a240d4d | 1802 | enum pipe pch_transcoder; |
b24e7179 JB |
1803 | int reg; |
1804 | u32 val; | |
1805 | ||
681e5811 | 1806 | if (HAS_PCH_LPT(dev_priv->dev)) |
cc391bbb PZ |
1807 | pch_transcoder = TRANSCODER_A; |
1808 | else | |
1809 | pch_transcoder = pipe; | |
1810 | ||
b24e7179 JB |
1811 | /* |
1812 | * A pipe without a PLL won't actually be able to drive bits from | |
1813 | * a plane. On ILK+ the pipe PLLs are integrated, so we don't | |
1814 | * need the check. | |
1815 | */ | |
1816 | if (!HAS_PCH_SPLIT(dev_priv->dev)) | |
1817 | assert_pll_enabled(dev_priv, pipe); | |
040484af JB |
1818 | else { |
1819 | if (pch_port) { | |
1820 | /* if driving the PCH, we need FDI enabled */ | |
cc391bbb | 1821 | assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder); |
1a240d4d DV |
1822 | assert_fdi_tx_pll_enabled(dev_priv, |
1823 | (enum pipe) cpu_transcoder); | |
040484af JB |
1824 | } |
1825 | /* FIXME: assert CPU port conditions for SNB+ */ | |
1826 | } | |
b24e7179 | 1827 | |
702e7a56 | 1828 | reg = PIPECONF(cpu_transcoder); |
b24e7179 | 1829 | val = I915_READ(reg); |
00d70b15 CW |
1830 | if (val & PIPECONF_ENABLE) |
1831 | return; | |
1832 | ||
1833 | I915_WRITE(reg, val | PIPECONF_ENABLE); | |
b24e7179 JB |
1834 | intel_wait_for_vblank(dev_priv->dev, pipe); |
1835 | } | |
1836 | ||
1837 | /** | |
309cfea8 | 1838 | * intel_disable_pipe - disable a pipe, asserting requirements |
b24e7179 JB |
1839 | * @dev_priv: i915 private structure |
1840 | * @pipe: pipe to disable | |
1841 | * | |
1842 | * Disable @pipe, making sure that various hardware specific requirements | |
1843 | * are met, if applicable, e.g. plane disabled, panel fitter off, etc. | |
1844 | * | |
1845 | * @pipe should be %PIPE_A or %PIPE_B. | |
1846 | * | |
1847 | * Will wait until the pipe has shut down before returning. | |
1848 | */ | |
1849 | static void intel_disable_pipe(struct drm_i915_private *dev_priv, | |
1850 | enum pipe pipe) | |
1851 | { | |
702e7a56 PZ |
1852 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
1853 | pipe); | |
b24e7179 JB |
1854 | int reg; |
1855 | u32 val; | |
1856 | ||
1857 | /* | |
1858 | * Make sure planes won't keep trying to pump pixels to us, | |
1859 | * or we might hang the display. | |
1860 | */ | |
1861 | assert_planes_disabled(dev_priv, pipe); | |
1862 | ||
1863 | /* Don't disable pipe A or pipe A PLLs if needed */ | |
1864 | if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE)) | |
1865 | return; | |
1866 | ||
702e7a56 | 1867 | reg = PIPECONF(cpu_transcoder); |
b24e7179 | 1868 | val = I915_READ(reg); |
00d70b15 CW |
1869 | if ((val & PIPECONF_ENABLE) == 0) |
1870 | return; | |
1871 | ||
1872 | I915_WRITE(reg, val & ~PIPECONF_ENABLE); | |
b24e7179 JB |
1873 | intel_wait_for_pipe_off(dev_priv->dev, pipe); |
1874 | } | |
1875 | ||
d74362c9 KP |
1876 | /* |
1877 | * Plane regs are double buffered, going from enabled->disabled needs a | |
1878 | * trigger in order to latch. The display address reg provides this. | |
1879 | */ | |
6f1d69b0 | 1880 | void intel_flush_display_plane(struct drm_i915_private *dev_priv, |
d74362c9 KP |
1881 | enum plane plane) |
1882 | { | |
14f86147 DL |
1883 | if (dev_priv->info->gen >= 4) |
1884 | I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane))); | |
1885 | else | |
1886 | I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane))); | |
d74362c9 KP |
1887 | } |
1888 | ||
b24e7179 JB |
1889 | /** |
1890 | * intel_enable_plane - enable a display plane on a given pipe | |
1891 | * @dev_priv: i915 private structure | |
1892 | * @plane: plane to enable | |
1893 | * @pipe: pipe being fed | |
1894 | * | |
1895 | * Enable @plane on @pipe, making sure that @pipe is running first. | |
1896 | */ | |
1897 | static void intel_enable_plane(struct drm_i915_private *dev_priv, | |
1898 | enum plane plane, enum pipe pipe) | |
1899 | { | |
1900 | int reg; | |
1901 | u32 val; | |
1902 | ||
1903 | /* If the pipe isn't enabled, we can't pump pixels and may hang */ | |
1904 | assert_pipe_enabled(dev_priv, pipe); | |
1905 | ||
1906 | reg = DSPCNTR(plane); | |
1907 | val = I915_READ(reg); | |
00d70b15 CW |
1908 | if (val & DISPLAY_PLANE_ENABLE) |
1909 | return; | |
1910 | ||
1911 | I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE); | |
d74362c9 | 1912 | intel_flush_display_plane(dev_priv, plane); |
b24e7179 JB |
1913 | intel_wait_for_vblank(dev_priv->dev, pipe); |
1914 | } | |
1915 | ||
b24e7179 JB |
1916 | /** |
1917 | * intel_disable_plane - disable a display plane | |
1918 | * @dev_priv: i915 private structure | |
1919 | * @plane: plane to disable | |
1920 | * @pipe: pipe consuming the data | |
1921 | * | |
1922 | * Disable @plane; should be an independent operation. | |
1923 | */ | |
1924 | static void intel_disable_plane(struct drm_i915_private *dev_priv, | |
1925 | enum plane plane, enum pipe pipe) | |
1926 | { | |
1927 | int reg; | |
1928 | u32 val; | |
1929 | ||
1930 | reg = DSPCNTR(plane); | |
1931 | val = I915_READ(reg); | |
00d70b15 CW |
1932 | if ((val & DISPLAY_PLANE_ENABLE) == 0) |
1933 | return; | |
1934 | ||
1935 | I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE); | |
b24e7179 JB |
1936 | intel_flush_display_plane(dev_priv, plane); |
1937 | intel_wait_for_vblank(dev_priv->dev, pipe); | |
1938 | } | |
1939 | ||
127bd2ac | 1940 | int |
48b956c5 | 1941 | intel_pin_and_fence_fb_obj(struct drm_device *dev, |
05394f39 | 1942 | struct drm_i915_gem_object *obj, |
919926ae | 1943 | struct intel_ring_buffer *pipelined) |
6b95a207 | 1944 | { |
ce453d81 | 1945 | struct drm_i915_private *dev_priv = dev->dev_private; |
6b95a207 KH |
1946 | u32 alignment; |
1947 | int ret; | |
1948 | ||
05394f39 | 1949 | switch (obj->tiling_mode) { |
6b95a207 | 1950 | case I915_TILING_NONE: |
534843da CW |
1951 | if (IS_BROADWATER(dev) || IS_CRESTLINE(dev)) |
1952 | alignment = 128 * 1024; | |
a6c45cf0 | 1953 | else if (INTEL_INFO(dev)->gen >= 4) |
534843da CW |
1954 | alignment = 4 * 1024; |
1955 | else | |
1956 | alignment = 64 * 1024; | |
6b95a207 KH |
1957 | break; |
1958 | case I915_TILING_X: | |
1959 | /* pin() will align the object as required by fence */ | |
1960 | alignment = 0; | |
1961 | break; | |
1962 | case I915_TILING_Y: | |
1963 | /* FIXME: Is this true? */ | |
1964 | DRM_ERROR("Y tiled not allowed for scan out buffers\n"); | |
1965 | return -EINVAL; | |
1966 | default: | |
1967 | BUG(); | |
1968 | } | |
1969 | ||
ce453d81 | 1970 | dev_priv->mm.interruptible = false; |
2da3b9b9 | 1971 | ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined); |
48b956c5 | 1972 | if (ret) |
ce453d81 | 1973 | goto err_interruptible; |
6b95a207 KH |
1974 | |
1975 | /* Install a fence for tiled scan-out. Pre-i965 always needs a | |
1976 | * fence, whereas 965+ only requires a fence if using | |
1977 | * framebuffer compression. For simplicity, we always install | |
1978 | * a fence as the cost is not that onerous. | |
1979 | */ | |
06d98131 | 1980 | ret = i915_gem_object_get_fence(obj); |
9a5a53b3 CW |
1981 | if (ret) |
1982 | goto err_unpin; | |
1690e1eb | 1983 | |
9a5a53b3 | 1984 | i915_gem_object_pin_fence(obj); |
6b95a207 | 1985 | |
ce453d81 | 1986 | dev_priv->mm.interruptible = true; |
6b95a207 | 1987 | return 0; |
48b956c5 CW |
1988 | |
1989 | err_unpin: | |
1990 | i915_gem_object_unpin(obj); | |
ce453d81 CW |
1991 | err_interruptible: |
1992 | dev_priv->mm.interruptible = true; | |
48b956c5 | 1993 | return ret; |
6b95a207 KH |
1994 | } |
1995 | ||
1690e1eb CW |
1996 | void intel_unpin_fb_obj(struct drm_i915_gem_object *obj) |
1997 | { | |
1998 | i915_gem_object_unpin_fence(obj); | |
1999 | i915_gem_object_unpin(obj); | |
2000 | } | |
2001 | ||
c2c75131 DV |
2002 | /* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel |
2003 | * is assumed to be a power-of-two. */ | |
5a35e99e DL |
2004 | unsigned long intel_gen4_compute_offset_xtiled(int *x, int *y, |
2005 | unsigned int bpp, | |
2006 | unsigned int pitch) | |
c2c75131 DV |
2007 | { |
2008 | int tile_rows, tiles; | |
2009 | ||
2010 | tile_rows = *y / 8; | |
2011 | *y %= 8; | |
2012 | tiles = *x / (512/bpp); | |
2013 | *x %= 512/bpp; | |
2014 | ||
2015 | return tile_rows * pitch * 8 + tiles * 4096; | |
2016 | } | |
2017 | ||
17638cd6 JB |
2018 | static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb, |
2019 | int x, int y) | |
81255565 JB |
2020 | { |
2021 | struct drm_device *dev = crtc->dev; | |
2022 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2023 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2024 | struct intel_framebuffer *intel_fb; | |
05394f39 | 2025 | struct drm_i915_gem_object *obj; |
81255565 | 2026 | int plane = intel_crtc->plane; |
e506a0c6 | 2027 | unsigned long linear_offset; |
81255565 | 2028 | u32 dspcntr; |
5eddb70b | 2029 | u32 reg; |
81255565 JB |
2030 | |
2031 | switch (plane) { | |
2032 | case 0: | |
2033 | case 1: | |
2034 | break; | |
2035 | default: | |
2036 | DRM_ERROR("Can't update plane %d in SAREA\n", plane); | |
2037 | return -EINVAL; | |
2038 | } | |
2039 | ||
2040 | intel_fb = to_intel_framebuffer(fb); | |
2041 | obj = intel_fb->obj; | |
81255565 | 2042 | |
5eddb70b CW |
2043 | reg = DSPCNTR(plane); |
2044 | dspcntr = I915_READ(reg); | |
81255565 JB |
2045 | /* Mask out pixel format bits in case we change it */ |
2046 | dspcntr &= ~DISPPLANE_PIXFORMAT_MASK; | |
57779d06 VS |
2047 | switch (fb->pixel_format) { |
2048 | case DRM_FORMAT_C8: | |
81255565 JB |
2049 | dspcntr |= DISPPLANE_8BPP; |
2050 | break; | |
57779d06 VS |
2051 | case DRM_FORMAT_XRGB1555: |
2052 | case DRM_FORMAT_ARGB1555: | |
2053 | dspcntr |= DISPPLANE_BGRX555; | |
81255565 | 2054 | break; |
57779d06 VS |
2055 | case DRM_FORMAT_RGB565: |
2056 | dspcntr |= DISPPLANE_BGRX565; | |
2057 | break; | |
2058 | case DRM_FORMAT_XRGB8888: | |
2059 | case DRM_FORMAT_ARGB8888: | |
2060 | dspcntr |= DISPPLANE_BGRX888; | |
2061 | break; | |
2062 | case DRM_FORMAT_XBGR8888: | |
2063 | case DRM_FORMAT_ABGR8888: | |
2064 | dspcntr |= DISPPLANE_RGBX888; | |
2065 | break; | |
2066 | case DRM_FORMAT_XRGB2101010: | |
2067 | case DRM_FORMAT_ARGB2101010: | |
2068 | dspcntr |= DISPPLANE_BGRX101010; | |
2069 | break; | |
2070 | case DRM_FORMAT_XBGR2101010: | |
2071 | case DRM_FORMAT_ABGR2101010: | |
2072 | dspcntr |= DISPPLANE_RGBX101010; | |
81255565 JB |
2073 | break; |
2074 | default: | |
57779d06 | 2075 | DRM_ERROR("Unknown pixel format 0x%08x\n", fb->pixel_format); |
81255565 JB |
2076 | return -EINVAL; |
2077 | } | |
57779d06 | 2078 | |
a6c45cf0 | 2079 | if (INTEL_INFO(dev)->gen >= 4) { |
05394f39 | 2080 | if (obj->tiling_mode != I915_TILING_NONE) |
81255565 JB |
2081 | dspcntr |= DISPPLANE_TILED; |
2082 | else | |
2083 | dspcntr &= ~DISPPLANE_TILED; | |
2084 | } | |
2085 | ||
5eddb70b | 2086 | I915_WRITE(reg, dspcntr); |
81255565 | 2087 | |
e506a0c6 | 2088 | linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8); |
81255565 | 2089 | |
c2c75131 DV |
2090 | if (INTEL_INFO(dev)->gen >= 4) { |
2091 | intel_crtc->dspaddr_offset = | |
5a35e99e DL |
2092 | intel_gen4_compute_offset_xtiled(&x, &y, |
2093 | fb->bits_per_pixel / 8, | |
2094 | fb->pitches[0]); | |
c2c75131 DV |
2095 | linear_offset -= intel_crtc->dspaddr_offset; |
2096 | } else { | |
e506a0c6 | 2097 | intel_crtc->dspaddr_offset = linear_offset; |
c2c75131 | 2098 | } |
e506a0c6 DV |
2099 | |
2100 | DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n", | |
2101 | obj->gtt_offset, linear_offset, x, y, fb->pitches[0]); | |
01f2c773 | 2102 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
a6c45cf0 | 2103 | if (INTEL_INFO(dev)->gen >= 4) { |
c2c75131 DV |
2104 | I915_MODIFY_DISPBASE(DSPSURF(plane), |
2105 | obj->gtt_offset + intel_crtc->dspaddr_offset); | |
5eddb70b | 2106 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); |
e506a0c6 | 2107 | I915_WRITE(DSPLINOFF(plane), linear_offset); |
5eddb70b | 2108 | } else |
e506a0c6 | 2109 | I915_WRITE(DSPADDR(plane), obj->gtt_offset + linear_offset); |
5eddb70b | 2110 | POSTING_READ(reg); |
81255565 | 2111 | |
17638cd6 JB |
2112 | return 0; |
2113 | } | |
2114 | ||
2115 | static int ironlake_update_plane(struct drm_crtc *crtc, | |
2116 | struct drm_framebuffer *fb, int x, int y) | |
2117 | { | |
2118 | struct drm_device *dev = crtc->dev; | |
2119 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2120 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2121 | struct intel_framebuffer *intel_fb; | |
2122 | struct drm_i915_gem_object *obj; | |
2123 | int plane = intel_crtc->plane; | |
e506a0c6 | 2124 | unsigned long linear_offset; |
17638cd6 JB |
2125 | u32 dspcntr; |
2126 | u32 reg; | |
2127 | ||
2128 | switch (plane) { | |
2129 | case 0: | |
2130 | case 1: | |
27f8227b | 2131 | case 2: |
17638cd6 JB |
2132 | break; |
2133 | default: | |
2134 | DRM_ERROR("Can't update plane %d in SAREA\n", plane); | |
2135 | return -EINVAL; | |
2136 | } | |
2137 | ||
2138 | intel_fb = to_intel_framebuffer(fb); | |
2139 | obj = intel_fb->obj; | |
2140 | ||
2141 | reg = DSPCNTR(plane); | |
2142 | dspcntr = I915_READ(reg); | |
2143 | /* Mask out pixel format bits in case we change it */ | |
2144 | dspcntr &= ~DISPPLANE_PIXFORMAT_MASK; | |
57779d06 VS |
2145 | switch (fb->pixel_format) { |
2146 | case DRM_FORMAT_C8: | |
17638cd6 JB |
2147 | dspcntr |= DISPPLANE_8BPP; |
2148 | break; | |
57779d06 VS |
2149 | case DRM_FORMAT_RGB565: |
2150 | dspcntr |= DISPPLANE_BGRX565; | |
17638cd6 | 2151 | break; |
57779d06 VS |
2152 | case DRM_FORMAT_XRGB8888: |
2153 | case DRM_FORMAT_ARGB8888: | |
2154 | dspcntr |= DISPPLANE_BGRX888; | |
2155 | break; | |
2156 | case DRM_FORMAT_XBGR8888: | |
2157 | case DRM_FORMAT_ABGR8888: | |
2158 | dspcntr |= DISPPLANE_RGBX888; | |
2159 | break; | |
2160 | case DRM_FORMAT_XRGB2101010: | |
2161 | case DRM_FORMAT_ARGB2101010: | |
2162 | dspcntr |= DISPPLANE_BGRX101010; | |
2163 | break; | |
2164 | case DRM_FORMAT_XBGR2101010: | |
2165 | case DRM_FORMAT_ABGR2101010: | |
2166 | dspcntr |= DISPPLANE_RGBX101010; | |
17638cd6 JB |
2167 | break; |
2168 | default: | |
57779d06 | 2169 | DRM_ERROR("Unknown pixel format 0x%08x\n", fb->pixel_format); |
17638cd6 JB |
2170 | return -EINVAL; |
2171 | } | |
2172 | ||
2173 | if (obj->tiling_mode != I915_TILING_NONE) | |
2174 | dspcntr |= DISPPLANE_TILED; | |
2175 | else | |
2176 | dspcntr &= ~DISPPLANE_TILED; | |
2177 | ||
2178 | /* must disable */ | |
2179 | dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE; | |
2180 | ||
2181 | I915_WRITE(reg, dspcntr); | |
2182 | ||
e506a0c6 | 2183 | linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8); |
c2c75131 | 2184 | intel_crtc->dspaddr_offset = |
5a35e99e DL |
2185 | intel_gen4_compute_offset_xtiled(&x, &y, |
2186 | fb->bits_per_pixel / 8, | |
2187 | fb->pitches[0]); | |
c2c75131 | 2188 | linear_offset -= intel_crtc->dspaddr_offset; |
17638cd6 | 2189 | |
e506a0c6 DV |
2190 | DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n", |
2191 | obj->gtt_offset, linear_offset, x, y, fb->pitches[0]); | |
01f2c773 | 2192 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
c2c75131 DV |
2193 | I915_MODIFY_DISPBASE(DSPSURF(plane), |
2194 | obj->gtt_offset + intel_crtc->dspaddr_offset); | |
bc1c91eb DL |
2195 | if (IS_HASWELL(dev)) { |
2196 | I915_WRITE(DSPOFFSET(plane), (y << 16) | x); | |
2197 | } else { | |
2198 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); | |
2199 | I915_WRITE(DSPLINOFF(plane), linear_offset); | |
2200 | } | |
17638cd6 JB |
2201 | POSTING_READ(reg); |
2202 | ||
2203 | return 0; | |
2204 | } | |
2205 | ||
2206 | /* Assume fb object is pinned & idle & fenced and just update base pointers */ | |
2207 | static int | |
2208 | intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb, | |
2209 | int x, int y, enum mode_set_atomic state) | |
2210 | { | |
2211 | struct drm_device *dev = crtc->dev; | |
2212 | struct drm_i915_private *dev_priv = dev->dev_private; | |
17638cd6 | 2213 | |
6b8e6ed0 CW |
2214 | if (dev_priv->display.disable_fbc) |
2215 | dev_priv->display.disable_fbc(dev); | |
3dec0095 | 2216 | intel_increase_pllclock(crtc); |
81255565 | 2217 | |
6b8e6ed0 | 2218 | return dev_priv->display.update_plane(crtc, fb, x, y); |
81255565 JB |
2219 | } |
2220 | ||
14667a4b CW |
2221 | static int |
2222 | intel_finish_fb(struct drm_framebuffer *old_fb) | |
2223 | { | |
2224 | struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj; | |
2225 | struct drm_i915_private *dev_priv = obj->base.dev->dev_private; | |
2226 | bool was_interruptible = dev_priv->mm.interruptible; | |
2227 | int ret; | |
2228 | ||
2c10d571 DV |
2229 | WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue)); |
2230 | ||
14667a4b | 2231 | wait_event(dev_priv->pending_flip_queue, |
1f83fee0 | 2232 | i915_reset_in_progress(&dev_priv->gpu_error) || |
14667a4b CW |
2233 | atomic_read(&obj->pending_flip) == 0); |
2234 | ||
2235 | /* Big Hammer, we also need to ensure that any pending | |
2236 | * MI_WAIT_FOR_EVENT inside a user batch buffer on the | |
2237 | * current scanout is retired before unpinning the old | |
2238 | * framebuffer. | |
2239 | * | |
2240 | * This should only fail upon a hung GPU, in which case we | |
2241 | * can safely continue. | |
2242 | */ | |
2243 | dev_priv->mm.interruptible = false; | |
2244 | ret = i915_gem_object_finish_gpu(obj); | |
2245 | dev_priv->mm.interruptible = was_interruptible; | |
2246 | ||
2247 | return ret; | |
2248 | } | |
2249 | ||
198598d0 VS |
2250 | static void intel_crtc_update_sarea_pos(struct drm_crtc *crtc, int x, int y) |
2251 | { | |
2252 | struct drm_device *dev = crtc->dev; | |
2253 | struct drm_i915_master_private *master_priv; | |
2254 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2255 | ||
2256 | if (!dev->primary->master) | |
2257 | return; | |
2258 | ||
2259 | master_priv = dev->primary->master->driver_priv; | |
2260 | if (!master_priv->sarea_priv) | |
2261 | return; | |
2262 | ||
2263 | switch (intel_crtc->pipe) { | |
2264 | case 0: | |
2265 | master_priv->sarea_priv->pipeA_x = x; | |
2266 | master_priv->sarea_priv->pipeA_y = y; | |
2267 | break; | |
2268 | case 1: | |
2269 | master_priv->sarea_priv->pipeB_x = x; | |
2270 | master_priv->sarea_priv->pipeB_y = y; | |
2271 | break; | |
2272 | default: | |
2273 | break; | |
2274 | } | |
2275 | } | |
2276 | ||
5c3b82e2 | 2277 | static int |
3c4fdcfb | 2278 | intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, |
94352cf9 | 2279 | struct drm_framebuffer *fb) |
79e53945 JB |
2280 | { |
2281 | struct drm_device *dev = crtc->dev; | |
6b8e6ed0 | 2282 | struct drm_i915_private *dev_priv = dev->dev_private; |
79e53945 | 2283 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
94352cf9 | 2284 | struct drm_framebuffer *old_fb; |
5c3b82e2 | 2285 | int ret; |
79e53945 JB |
2286 | |
2287 | /* no fb bound */ | |
94352cf9 | 2288 | if (!fb) { |
a5071c2f | 2289 | DRM_ERROR("No FB bound\n"); |
5c3b82e2 CW |
2290 | return 0; |
2291 | } | |
2292 | ||
5826eca5 ED |
2293 | if(intel_crtc->plane > dev_priv->num_pipe) { |
2294 | DRM_ERROR("no plane for crtc: plane %d, num_pipes %d\n", | |
2295 | intel_crtc->plane, | |
2296 | dev_priv->num_pipe); | |
5c3b82e2 | 2297 | return -EINVAL; |
79e53945 JB |
2298 | } |
2299 | ||
5c3b82e2 | 2300 | mutex_lock(&dev->struct_mutex); |
265db958 | 2301 | ret = intel_pin_and_fence_fb_obj(dev, |
94352cf9 | 2302 | to_intel_framebuffer(fb)->obj, |
919926ae | 2303 | NULL); |
5c3b82e2 CW |
2304 | if (ret != 0) { |
2305 | mutex_unlock(&dev->struct_mutex); | |
a5071c2f | 2306 | DRM_ERROR("pin & fence failed\n"); |
5c3b82e2 CW |
2307 | return ret; |
2308 | } | |
79e53945 | 2309 | |
94352cf9 DV |
2310 | if (crtc->fb) |
2311 | intel_finish_fb(crtc->fb); | |
265db958 | 2312 | |
94352cf9 | 2313 | ret = dev_priv->display.update_plane(crtc, fb, x, y); |
4e6cfefc | 2314 | if (ret) { |
94352cf9 | 2315 | intel_unpin_fb_obj(to_intel_framebuffer(fb)->obj); |
5c3b82e2 | 2316 | mutex_unlock(&dev->struct_mutex); |
a5071c2f | 2317 | DRM_ERROR("failed to update base address\n"); |
4e6cfefc | 2318 | return ret; |
79e53945 | 2319 | } |
3c4fdcfb | 2320 | |
94352cf9 DV |
2321 | old_fb = crtc->fb; |
2322 | crtc->fb = fb; | |
6c4c86f5 DV |
2323 | crtc->x = x; |
2324 | crtc->y = y; | |
94352cf9 | 2325 | |
b7f1de28 CW |
2326 | if (old_fb) { |
2327 | intel_wait_for_vblank(dev, intel_crtc->pipe); | |
1690e1eb | 2328 | intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj); |
b7f1de28 | 2329 | } |
652c393a | 2330 | |
6b8e6ed0 | 2331 | intel_update_fbc(dev); |
5c3b82e2 | 2332 | mutex_unlock(&dev->struct_mutex); |
79e53945 | 2333 | |
198598d0 | 2334 | intel_crtc_update_sarea_pos(crtc, x, y); |
5c3b82e2 CW |
2335 | |
2336 | return 0; | |
79e53945 JB |
2337 | } |
2338 | ||
5e84e1a4 ZW |
2339 | static void intel_fdi_normal_train(struct drm_crtc *crtc) |
2340 | { | |
2341 | struct drm_device *dev = crtc->dev; | |
2342 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2343 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2344 | int pipe = intel_crtc->pipe; | |
2345 | u32 reg, temp; | |
2346 | ||
2347 | /* enable normal train */ | |
2348 | reg = FDI_TX_CTL(pipe); | |
2349 | temp = I915_READ(reg); | |
61e499bf | 2350 | if (IS_IVYBRIDGE(dev)) { |
357555c0 JB |
2351 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
2352 | temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE; | |
61e499bf KP |
2353 | } else { |
2354 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2355 | temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE; | |
357555c0 | 2356 | } |
5e84e1a4 ZW |
2357 | I915_WRITE(reg, temp); |
2358 | ||
2359 | reg = FDI_RX_CTL(pipe); | |
2360 | temp = I915_READ(reg); | |
2361 | if (HAS_PCH_CPT(dev)) { | |
2362 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2363 | temp |= FDI_LINK_TRAIN_NORMAL_CPT; | |
2364 | } else { | |
2365 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2366 | temp |= FDI_LINK_TRAIN_NONE; | |
2367 | } | |
2368 | I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE); | |
2369 | ||
2370 | /* wait one idle pattern time */ | |
2371 | POSTING_READ(reg); | |
2372 | udelay(1000); | |
357555c0 JB |
2373 | |
2374 | /* IVB wants error correction enabled */ | |
2375 | if (IS_IVYBRIDGE(dev)) | |
2376 | I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE | | |
2377 | FDI_FE_ERRC_ENABLE); | |
5e84e1a4 ZW |
2378 | } |
2379 | ||
01a415fd DV |
2380 | static void ivb_modeset_global_resources(struct drm_device *dev) |
2381 | { | |
2382 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2383 | struct intel_crtc *pipe_B_crtc = | |
2384 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]); | |
2385 | struct intel_crtc *pipe_C_crtc = | |
2386 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]); | |
2387 | uint32_t temp; | |
2388 | ||
2389 | /* When everything is off disable fdi C so that we could enable fdi B | |
2390 | * with all lanes. XXX: This misses the case where a pipe is not using | |
2391 | * any pch resources and so doesn't need any fdi lanes. */ | |
2392 | if (!pipe_B_crtc->base.enabled && !pipe_C_crtc->base.enabled) { | |
2393 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE); | |
2394 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE); | |
2395 | ||
2396 | temp = I915_READ(SOUTH_CHICKEN1); | |
2397 | temp &= ~FDI_BC_BIFURCATION_SELECT; | |
2398 | DRM_DEBUG_KMS("disabling fdi C rx\n"); | |
2399 | I915_WRITE(SOUTH_CHICKEN1, temp); | |
2400 | } | |
2401 | } | |
2402 | ||
8db9d77b ZW |
2403 | /* The FDI link training functions for ILK/Ibexpeak. */ |
2404 | static void ironlake_fdi_link_train(struct drm_crtc *crtc) | |
2405 | { | |
2406 | struct drm_device *dev = crtc->dev; | |
2407 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2408 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2409 | int pipe = intel_crtc->pipe; | |
0fc932b8 | 2410 | int plane = intel_crtc->plane; |
5eddb70b | 2411 | u32 reg, temp, tries; |
8db9d77b | 2412 | |
0fc932b8 JB |
2413 | /* FDI needs bits from pipe & plane first */ |
2414 | assert_pipe_enabled(dev_priv, pipe); | |
2415 | assert_plane_enabled(dev_priv, plane); | |
2416 | ||
e1a44743 AJ |
2417 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
2418 | for train result */ | |
5eddb70b CW |
2419 | reg = FDI_RX_IMR(pipe); |
2420 | temp = I915_READ(reg); | |
e1a44743 AJ |
2421 | temp &= ~FDI_RX_SYMBOL_LOCK; |
2422 | temp &= ~FDI_RX_BIT_LOCK; | |
5eddb70b CW |
2423 | I915_WRITE(reg, temp); |
2424 | I915_READ(reg); | |
e1a44743 AJ |
2425 | udelay(150); |
2426 | ||
8db9d77b | 2427 | /* enable CPU FDI TX and PCH FDI RX */ |
5eddb70b CW |
2428 | reg = FDI_TX_CTL(pipe); |
2429 | temp = I915_READ(reg); | |
77ffb597 AJ |
2430 | temp &= ~(7 << 19); |
2431 | temp |= (intel_crtc->fdi_lanes - 1) << 19; | |
8db9d77b ZW |
2432 | temp &= ~FDI_LINK_TRAIN_NONE; |
2433 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
5eddb70b | 2434 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
8db9d77b | 2435 | |
5eddb70b CW |
2436 | reg = FDI_RX_CTL(pipe); |
2437 | temp = I915_READ(reg); | |
8db9d77b ZW |
2438 | temp &= ~FDI_LINK_TRAIN_NONE; |
2439 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
5eddb70b CW |
2440 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
2441 | ||
2442 | POSTING_READ(reg); | |
8db9d77b ZW |
2443 | udelay(150); |
2444 | ||
5b2adf89 | 2445 | /* Ironlake workaround, enable clock pointer after FDI enable*/ |
8f5718a6 DV |
2446 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
2447 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR | | |
2448 | FDI_RX_PHASE_SYNC_POINTER_EN); | |
5b2adf89 | 2449 | |
5eddb70b | 2450 | reg = FDI_RX_IIR(pipe); |
e1a44743 | 2451 | for (tries = 0; tries < 5; tries++) { |
5eddb70b | 2452 | temp = I915_READ(reg); |
8db9d77b ZW |
2453 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
2454 | ||
2455 | if ((temp & FDI_RX_BIT_LOCK)) { | |
2456 | DRM_DEBUG_KMS("FDI train 1 done.\n"); | |
5eddb70b | 2457 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
8db9d77b ZW |
2458 | break; |
2459 | } | |
8db9d77b | 2460 | } |
e1a44743 | 2461 | if (tries == 5) |
5eddb70b | 2462 | DRM_ERROR("FDI train 1 fail!\n"); |
8db9d77b ZW |
2463 | |
2464 | /* Train 2 */ | |
5eddb70b CW |
2465 | reg = FDI_TX_CTL(pipe); |
2466 | temp = I915_READ(reg); | |
8db9d77b ZW |
2467 | temp &= ~FDI_LINK_TRAIN_NONE; |
2468 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
5eddb70b | 2469 | I915_WRITE(reg, temp); |
8db9d77b | 2470 | |
5eddb70b CW |
2471 | reg = FDI_RX_CTL(pipe); |
2472 | temp = I915_READ(reg); | |
8db9d77b ZW |
2473 | temp &= ~FDI_LINK_TRAIN_NONE; |
2474 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
5eddb70b | 2475 | I915_WRITE(reg, temp); |
8db9d77b | 2476 | |
5eddb70b CW |
2477 | POSTING_READ(reg); |
2478 | udelay(150); | |
8db9d77b | 2479 | |
5eddb70b | 2480 | reg = FDI_RX_IIR(pipe); |
e1a44743 | 2481 | for (tries = 0; tries < 5; tries++) { |
5eddb70b | 2482 | temp = I915_READ(reg); |
8db9d77b ZW |
2483 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
2484 | ||
2485 | if (temp & FDI_RX_SYMBOL_LOCK) { | |
5eddb70b | 2486 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
8db9d77b ZW |
2487 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
2488 | break; | |
2489 | } | |
8db9d77b | 2490 | } |
e1a44743 | 2491 | if (tries == 5) |
5eddb70b | 2492 | DRM_ERROR("FDI train 2 fail!\n"); |
8db9d77b ZW |
2493 | |
2494 | DRM_DEBUG_KMS("FDI train done\n"); | |
5c5313c8 | 2495 | |
8db9d77b ZW |
2496 | } |
2497 | ||
0206e353 | 2498 | static const int snb_b_fdi_train_param[] = { |
8db9d77b ZW |
2499 | FDI_LINK_TRAIN_400MV_0DB_SNB_B, |
2500 | FDI_LINK_TRAIN_400MV_6DB_SNB_B, | |
2501 | FDI_LINK_TRAIN_600MV_3_5DB_SNB_B, | |
2502 | FDI_LINK_TRAIN_800MV_0DB_SNB_B, | |
2503 | }; | |
2504 | ||
2505 | /* The FDI link training functions for SNB/Cougarpoint. */ | |
2506 | static void gen6_fdi_link_train(struct drm_crtc *crtc) | |
2507 | { | |
2508 | struct drm_device *dev = crtc->dev; | |
2509 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2510 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2511 | int pipe = intel_crtc->pipe; | |
fa37d39e | 2512 | u32 reg, temp, i, retry; |
8db9d77b | 2513 | |
e1a44743 AJ |
2514 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
2515 | for train result */ | |
5eddb70b CW |
2516 | reg = FDI_RX_IMR(pipe); |
2517 | temp = I915_READ(reg); | |
e1a44743 AJ |
2518 | temp &= ~FDI_RX_SYMBOL_LOCK; |
2519 | temp &= ~FDI_RX_BIT_LOCK; | |
5eddb70b CW |
2520 | I915_WRITE(reg, temp); |
2521 | ||
2522 | POSTING_READ(reg); | |
e1a44743 AJ |
2523 | udelay(150); |
2524 | ||
8db9d77b | 2525 | /* enable CPU FDI TX and PCH FDI RX */ |
5eddb70b CW |
2526 | reg = FDI_TX_CTL(pipe); |
2527 | temp = I915_READ(reg); | |
77ffb597 AJ |
2528 | temp &= ~(7 << 19); |
2529 | temp |= (intel_crtc->fdi_lanes - 1) << 19; | |
8db9d77b ZW |
2530 | temp &= ~FDI_LINK_TRAIN_NONE; |
2531 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
2532 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2533 | /* SNB-B */ | |
2534 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; | |
5eddb70b | 2535 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
8db9d77b | 2536 | |
d74cf324 DV |
2537 | I915_WRITE(FDI_RX_MISC(pipe), |
2538 | FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90); | |
2539 | ||
5eddb70b CW |
2540 | reg = FDI_RX_CTL(pipe); |
2541 | temp = I915_READ(reg); | |
8db9d77b ZW |
2542 | if (HAS_PCH_CPT(dev)) { |
2543 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2544 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; | |
2545 | } else { | |
2546 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2547 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
2548 | } | |
5eddb70b CW |
2549 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
2550 | ||
2551 | POSTING_READ(reg); | |
8db9d77b ZW |
2552 | udelay(150); |
2553 | ||
0206e353 | 2554 | for (i = 0; i < 4; i++) { |
5eddb70b CW |
2555 | reg = FDI_TX_CTL(pipe); |
2556 | temp = I915_READ(reg); | |
8db9d77b ZW |
2557 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
2558 | temp |= snb_b_fdi_train_param[i]; | |
5eddb70b CW |
2559 | I915_WRITE(reg, temp); |
2560 | ||
2561 | POSTING_READ(reg); | |
8db9d77b ZW |
2562 | udelay(500); |
2563 | ||
fa37d39e SP |
2564 | for (retry = 0; retry < 5; retry++) { |
2565 | reg = FDI_RX_IIR(pipe); | |
2566 | temp = I915_READ(reg); | |
2567 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
2568 | if (temp & FDI_RX_BIT_LOCK) { | |
2569 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); | |
2570 | DRM_DEBUG_KMS("FDI train 1 done.\n"); | |
2571 | break; | |
2572 | } | |
2573 | udelay(50); | |
8db9d77b | 2574 | } |
fa37d39e SP |
2575 | if (retry < 5) |
2576 | break; | |
8db9d77b ZW |
2577 | } |
2578 | if (i == 4) | |
5eddb70b | 2579 | DRM_ERROR("FDI train 1 fail!\n"); |
8db9d77b ZW |
2580 | |
2581 | /* Train 2 */ | |
5eddb70b CW |
2582 | reg = FDI_TX_CTL(pipe); |
2583 | temp = I915_READ(reg); | |
8db9d77b ZW |
2584 | temp &= ~FDI_LINK_TRAIN_NONE; |
2585 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
2586 | if (IS_GEN6(dev)) { | |
2587 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2588 | /* SNB-B */ | |
2589 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; | |
2590 | } | |
5eddb70b | 2591 | I915_WRITE(reg, temp); |
8db9d77b | 2592 | |
5eddb70b CW |
2593 | reg = FDI_RX_CTL(pipe); |
2594 | temp = I915_READ(reg); | |
8db9d77b ZW |
2595 | if (HAS_PCH_CPT(dev)) { |
2596 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2597 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; | |
2598 | } else { | |
2599 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2600 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
2601 | } | |
5eddb70b CW |
2602 | I915_WRITE(reg, temp); |
2603 | ||
2604 | POSTING_READ(reg); | |
8db9d77b ZW |
2605 | udelay(150); |
2606 | ||
0206e353 | 2607 | for (i = 0; i < 4; i++) { |
5eddb70b CW |
2608 | reg = FDI_TX_CTL(pipe); |
2609 | temp = I915_READ(reg); | |
8db9d77b ZW |
2610 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
2611 | temp |= snb_b_fdi_train_param[i]; | |
5eddb70b CW |
2612 | I915_WRITE(reg, temp); |
2613 | ||
2614 | POSTING_READ(reg); | |
8db9d77b ZW |
2615 | udelay(500); |
2616 | ||
fa37d39e SP |
2617 | for (retry = 0; retry < 5; retry++) { |
2618 | reg = FDI_RX_IIR(pipe); | |
2619 | temp = I915_READ(reg); | |
2620 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
2621 | if (temp & FDI_RX_SYMBOL_LOCK) { | |
2622 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); | |
2623 | DRM_DEBUG_KMS("FDI train 2 done.\n"); | |
2624 | break; | |
2625 | } | |
2626 | udelay(50); | |
8db9d77b | 2627 | } |
fa37d39e SP |
2628 | if (retry < 5) |
2629 | break; | |
8db9d77b ZW |
2630 | } |
2631 | if (i == 4) | |
5eddb70b | 2632 | DRM_ERROR("FDI train 2 fail!\n"); |
8db9d77b ZW |
2633 | |
2634 | DRM_DEBUG_KMS("FDI train done.\n"); | |
2635 | } | |
2636 | ||
357555c0 JB |
2637 | /* Manual link training for Ivy Bridge A0 parts */ |
2638 | static void ivb_manual_fdi_link_train(struct drm_crtc *crtc) | |
2639 | { | |
2640 | struct drm_device *dev = crtc->dev; | |
2641 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2642 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2643 | int pipe = intel_crtc->pipe; | |
2644 | u32 reg, temp, i; | |
2645 | ||
2646 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit | |
2647 | for train result */ | |
2648 | reg = FDI_RX_IMR(pipe); | |
2649 | temp = I915_READ(reg); | |
2650 | temp &= ~FDI_RX_SYMBOL_LOCK; | |
2651 | temp &= ~FDI_RX_BIT_LOCK; | |
2652 | I915_WRITE(reg, temp); | |
2653 | ||
2654 | POSTING_READ(reg); | |
2655 | udelay(150); | |
2656 | ||
01a415fd DV |
2657 | DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n", |
2658 | I915_READ(FDI_RX_IIR(pipe))); | |
2659 | ||
357555c0 JB |
2660 | /* enable CPU FDI TX and PCH FDI RX */ |
2661 | reg = FDI_TX_CTL(pipe); | |
2662 | temp = I915_READ(reg); | |
2663 | temp &= ~(7 << 19); | |
2664 | temp |= (intel_crtc->fdi_lanes - 1) << 19; | |
2665 | temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB); | |
2666 | temp |= FDI_LINK_TRAIN_PATTERN_1_IVB; | |
2667 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2668 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; | |
c4f9c4c2 | 2669 | temp |= FDI_COMPOSITE_SYNC; |
357555c0 JB |
2670 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
2671 | ||
d74cf324 DV |
2672 | I915_WRITE(FDI_RX_MISC(pipe), |
2673 | FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90); | |
2674 | ||
357555c0 JB |
2675 | reg = FDI_RX_CTL(pipe); |
2676 | temp = I915_READ(reg); | |
2677 | temp &= ~FDI_LINK_TRAIN_AUTO; | |
2678 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2679 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; | |
c4f9c4c2 | 2680 | temp |= FDI_COMPOSITE_SYNC; |
357555c0 JB |
2681 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
2682 | ||
2683 | POSTING_READ(reg); | |
2684 | udelay(150); | |
2685 | ||
0206e353 | 2686 | for (i = 0; i < 4; i++) { |
357555c0 JB |
2687 | reg = FDI_TX_CTL(pipe); |
2688 | temp = I915_READ(reg); | |
2689 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2690 | temp |= snb_b_fdi_train_param[i]; | |
2691 | I915_WRITE(reg, temp); | |
2692 | ||
2693 | POSTING_READ(reg); | |
2694 | udelay(500); | |
2695 | ||
2696 | reg = FDI_RX_IIR(pipe); | |
2697 | temp = I915_READ(reg); | |
2698 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
2699 | ||
2700 | if (temp & FDI_RX_BIT_LOCK || | |
2701 | (I915_READ(reg) & FDI_RX_BIT_LOCK)) { | |
2702 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); | |
01a415fd | 2703 | DRM_DEBUG_KMS("FDI train 1 done, level %i.\n", i); |
357555c0 JB |
2704 | break; |
2705 | } | |
2706 | } | |
2707 | if (i == 4) | |
2708 | DRM_ERROR("FDI train 1 fail!\n"); | |
2709 | ||
2710 | /* Train 2 */ | |
2711 | reg = FDI_TX_CTL(pipe); | |
2712 | temp = I915_READ(reg); | |
2713 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; | |
2714 | temp |= FDI_LINK_TRAIN_PATTERN_2_IVB; | |
2715 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2716 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; | |
2717 | I915_WRITE(reg, temp); | |
2718 | ||
2719 | reg = FDI_RX_CTL(pipe); | |
2720 | temp = I915_READ(reg); | |
2721 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2722 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; | |
2723 | I915_WRITE(reg, temp); | |
2724 | ||
2725 | POSTING_READ(reg); | |
2726 | udelay(150); | |
2727 | ||
0206e353 | 2728 | for (i = 0; i < 4; i++) { |
357555c0 JB |
2729 | reg = FDI_TX_CTL(pipe); |
2730 | temp = I915_READ(reg); | |
2731 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2732 | temp |= snb_b_fdi_train_param[i]; | |
2733 | I915_WRITE(reg, temp); | |
2734 | ||
2735 | POSTING_READ(reg); | |
2736 | udelay(500); | |
2737 | ||
2738 | reg = FDI_RX_IIR(pipe); | |
2739 | temp = I915_READ(reg); | |
2740 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
2741 | ||
2742 | if (temp & FDI_RX_SYMBOL_LOCK) { | |
2743 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); | |
01a415fd | 2744 | DRM_DEBUG_KMS("FDI train 2 done, level %i.\n", i); |
357555c0 JB |
2745 | break; |
2746 | } | |
2747 | } | |
2748 | if (i == 4) | |
2749 | DRM_ERROR("FDI train 2 fail!\n"); | |
2750 | ||
2751 | DRM_DEBUG_KMS("FDI train done.\n"); | |
2752 | } | |
2753 | ||
88cefb6c | 2754 | static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc) |
2c07245f | 2755 | { |
88cefb6c | 2756 | struct drm_device *dev = intel_crtc->base.dev; |
2c07245f | 2757 | struct drm_i915_private *dev_priv = dev->dev_private; |
2c07245f | 2758 | int pipe = intel_crtc->pipe; |
5eddb70b | 2759 | u32 reg, temp; |
79e53945 | 2760 | |
c64e311e | 2761 | |
c98e9dcf | 2762 | /* enable PCH FDI RX PLL, wait warmup plus DMI latency */ |
5eddb70b CW |
2763 | reg = FDI_RX_CTL(pipe); |
2764 | temp = I915_READ(reg); | |
2765 | temp &= ~((0x7 << 19) | (0x7 << 16)); | |
c98e9dcf | 2766 | temp |= (intel_crtc->fdi_lanes - 1) << 19; |
dfd07d72 | 2767 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
5eddb70b CW |
2768 | I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE); |
2769 | ||
2770 | POSTING_READ(reg); | |
c98e9dcf JB |
2771 | udelay(200); |
2772 | ||
2773 | /* Switch from Rawclk to PCDclk */ | |
5eddb70b CW |
2774 | temp = I915_READ(reg); |
2775 | I915_WRITE(reg, temp | FDI_PCDCLK); | |
2776 | ||
2777 | POSTING_READ(reg); | |
c98e9dcf JB |
2778 | udelay(200); |
2779 | ||
20749730 PZ |
2780 | /* Enable CPU FDI TX PLL, always on for Ironlake */ |
2781 | reg = FDI_TX_CTL(pipe); | |
2782 | temp = I915_READ(reg); | |
2783 | if ((temp & FDI_TX_PLL_ENABLE) == 0) { | |
2784 | I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE); | |
5eddb70b | 2785 | |
20749730 PZ |
2786 | POSTING_READ(reg); |
2787 | udelay(100); | |
6be4a607 | 2788 | } |
0e23b99d JB |
2789 | } |
2790 | ||
88cefb6c DV |
2791 | static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc) |
2792 | { | |
2793 | struct drm_device *dev = intel_crtc->base.dev; | |
2794 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2795 | int pipe = intel_crtc->pipe; | |
2796 | u32 reg, temp; | |
2797 | ||
2798 | /* Switch from PCDclk to Rawclk */ | |
2799 | reg = FDI_RX_CTL(pipe); | |
2800 | temp = I915_READ(reg); | |
2801 | I915_WRITE(reg, temp & ~FDI_PCDCLK); | |
2802 | ||
2803 | /* Disable CPU FDI TX PLL */ | |
2804 | reg = FDI_TX_CTL(pipe); | |
2805 | temp = I915_READ(reg); | |
2806 | I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE); | |
2807 | ||
2808 | POSTING_READ(reg); | |
2809 | udelay(100); | |
2810 | ||
2811 | reg = FDI_RX_CTL(pipe); | |
2812 | temp = I915_READ(reg); | |
2813 | I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE); | |
2814 | ||
2815 | /* Wait for the clocks to turn off. */ | |
2816 | POSTING_READ(reg); | |
2817 | udelay(100); | |
2818 | } | |
2819 | ||
0fc932b8 JB |
2820 | static void ironlake_fdi_disable(struct drm_crtc *crtc) |
2821 | { | |
2822 | struct drm_device *dev = crtc->dev; | |
2823 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2824 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2825 | int pipe = intel_crtc->pipe; | |
2826 | u32 reg, temp; | |
2827 | ||
2828 | /* disable CPU FDI tx and PCH FDI rx */ | |
2829 | reg = FDI_TX_CTL(pipe); | |
2830 | temp = I915_READ(reg); | |
2831 | I915_WRITE(reg, temp & ~FDI_TX_ENABLE); | |
2832 | POSTING_READ(reg); | |
2833 | ||
2834 | reg = FDI_RX_CTL(pipe); | |
2835 | temp = I915_READ(reg); | |
2836 | temp &= ~(0x7 << 16); | |
dfd07d72 | 2837 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
0fc932b8 JB |
2838 | I915_WRITE(reg, temp & ~FDI_RX_ENABLE); |
2839 | ||
2840 | POSTING_READ(reg); | |
2841 | udelay(100); | |
2842 | ||
2843 | /* Ironlake workaround, disable clock pointer after downing FDI */ | |
6f06ce18 JB |
2844 | if (HAS_PCH_IBX(dev)) { |
2845 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); | |
6f06ce18 | 2846 | } |
0fc932b8 JB |
2847 | |
2848 | /* still set train pattern 1 */ | |
2849 | reg = FDI_TX_CTL(pipe); | |
2850 | temp = I915_READ(reg); | |
2851 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2852 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
2853 | I915_WRITE(reg, temp); | |
2854 | ||
2855 | reg = FDI_RX_CTL(pipe); | |
2856 | temp = I915_READ(reg); | |
2857 | if (HAS_PCH_CPT(dev)) { | |
2858 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2859 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; | |
2860 | } else { | |
2861 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2862 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
2863 | } | |
2864 | /* BPC in FDI rx is consistent with that in PIPECONF */ | |
2865 | temp &= ~(0x07 << 16); | |
dfd07d72 | 2866 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
0fc932b8 JB |
2867 | I915_WRITE(reg, temp); |
2868 | ||
2869 | POSTING_READ(reg); | |
2870 | udelay(100); | |
2871 | } | |
2872 | ||
5bb61643 CW |
2873 | static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc) |
2874 | { | |
2875 | struct drm_device *dev = crtc->dev; | |
2876 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2877 | unsigned long flags; | |
2878 | bool pending; | |
2879 | ||
1f83fee0 | 2880 | if (i915_reset_in_progress(&dev_priv->gpu_error)) |
5bb61643 CW |
2881 | return false; |
2882 | ||
2883 | spin_lock_irqsave(&dev->event_lock, flags); | |
2884 | pending = to_intel_crtc(crtc)->unpin_work != NULL; | |
2885 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
2886 | ||
2887 | return pending; | |
2888 | } | |
2889 | ||
e6c3a2a6 CW |
2890 | static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc) |
2891 | { | |
0f91128d | 2892 | struct drm_device *dev = crtc->dev; |
5bb61643 | 2893 | struct drm_i915_private *dev_priv = dev->dev_private; |
e6c3a2a6 CW |
2894 | |
2895 | if (crtc->fb == NULL) | |
2896 | return; | |
2897 | ||
2c10d571 DV |
2898 | WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue)); |
2899 | ||
5bb61643 CW |
2900 | wait_event(dev_priv->pending_flip_queue, |
2901 | !intel_crtc_has_pending_flip(crtc)); | |
2902 | ||
0f91128d CW |
2903 | mutex_lock(&dev->struct_mutex); |
2904 | intel_finish_fb(crtc->fb); | |
2905 | mutex_unlock(&dev->struct_mutex); | |
e6c3a2a6 CW |
2906 | } |
2907 | ||
fc316cbe | 2908 | static bool ironlake_crtc_driving_pch(struct drm_crtc *crtc) |
040484af JB |
2909 | { |
2910 | struct drm_device *dev = crtc->dev; | |
228d3e36 | 2911 | struct intel_encoder *intel_encoder; |
040484af JB |
2912 | |
2913 | /* | |
2914 | * If there's a non-PCH eDP on this crtc, it must be DP_A, and that | |
2915 | * must be driven by its own crtc; no sharing is possible. | |
2916 | */ | |
228d3e36 | 2917 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) { |
228d3e36 | 2918 | switch (intel_encoder->type) { |
040484af | 2919 | case INTEL_OUTPUT_EDP: |
228d3e36 | 2920 | if (!intel_encoder_is_pch_edp(&intel_encoder->base)) |
040484af JB |
2921 | return false; |
2922 | continue; | |
2923 | } | |
2924 | } | |
2925 | ||
2926 | return true; | |
2927 | } | |
2928 | ||
fc316cbe PZ |
2929 | static bool haswell_crtc_driving_pch(struct drm_crtc *crtc) |
2930 | { | |
2931 | return intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG); | |
2932 | } | |
2933 | ||
e615efe4 ED |
2934 | /* Program iCLKIP clock to the desired frequency */ |
2935 | static void lpt_program_iclkip(struct drm_crtc *crtc) | |
2936 | { | |
2937 | struct drm_device *dev = crtc->dev; | |
2938 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2939 | u32 divsel, phaseinc, auxdiv, phasedir = 0; | |
2940 | u32 temp; | |
2941 | ||
09153000 DV |
2942 | mutex_lock(&dev_priv->dpio_lock); |
2943 | ||
e615efe4 ED |
2944 | /* It is necessary to ungate the pixclk gate prior to programming |
2945 | * the divisors, and gate it back when it is done. | |
2946 | */ | |
2947 | I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE); | |
2948 | ||
2949 | /* Disable SSCCTL */ | |
2950 | intel_sbi_write(dev_priv, SBI_SSCCTL6, | |
988d6ee8 PZ |
2951 | intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) | |
2952 | SBI_SSCCTL_DISABLE, | |
2953 | SBI_ICLK); | |
e615efe4 ED |
2954 | |
2955 | /* 20MHz is a corner case which is out of range for the 7-bit divisor */ | |
2956 | if (crtc->mode.clock == 20000) { | |
2957 | auxdiv = 1; | |
2958 | divsel = 0x41; | |
2959 | phaseinc = 0x20; | |
2960 | } else { | |
2961 | /* The iCLK virtual clock root frequency is in MHz, | |
2962 | * but the crtc->mode.clock in in KHz. To get the divisors, | |
2963 | * it is necessary to divide one by another, so we | |
2964 | * convert the virtual clock precision to KHz here for higher | |
2965 | * precision. | |
2966 | */ | |
2967 | u32 iclk_virtual_root_freq = 172800 * 1000; | |
2968 | u32 iclk_pi_range = 64; | |
2969 | u32 desired_divisor, msb_divisor_value, pi_value; | |
2970 | ||
2971 | desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock); | |
2972 | msb_divisor_value = desired_divisor / iclk_pi_range; | |
2973 | pi_value = desired_divisor % iclk_pi_range; | |
2974 | ||
2975 | auxdiv = 0; | |
2976 | divsel = msb_divisor_value - 2; | |
2977 | phaseinc = pi_value; | |
2978 | } | |
2979 | ||
2980 | /* This should not happen with any sane values */ | |
2981 | WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) & | |
2982 | ~SBI_SSCDIVINTPHASE_DIVSEL_MASK); | |
2983 | WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) & | |
2984 | ~SBI_SSCDIVINTPHASE_INCVAL_MASK); | |
2985 | ||
2986 | DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n", | |
2987 | crtc->mode.clock, | |
2988 | auxdiv, | |
2989 | divsel, | |
2990 | phasedir, | |
2991 | phaseinc); | |
2992 | ||
2993 | /* Program SSCDIVINTPHASE6 */ | |
988d6ee8 | 2994 | temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK); |
e615efe4 ED |
2995 | temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK; |
2996 | temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel); | |
2997 | temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK; | |
2998 | temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc); | |
2999 | temp |= SBI_SSCDIVINTPHASE_DIR(phasedir); | |
3000 | temp |= SBI_SSCDIVINTPHASE_PROPAGATE; | |
988d6ee8 | 3001 | intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK); |
e615efe4 ED |
3002 | |
3003 | /* Program SSCAUXDIV */ | |
988d6ee8 | 3004 | temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK); |
e615efe4 ED |
3005 | temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1); |
3006 | temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv); | |
988d6ee8 | 3007 | intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK); |
e615efe4 ED |
3008 | |
3009 | /* Enable modulator and associated divider */ | |
988d6ee8 | 3010 | temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK); |
e615efe4 | 3011 | temp &= ~SBI_SSCCTL_DISABLE; |
988d6ee8 | 3012 | intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK); |
e615efe4 ED |
3013 | |
3014 | /* Wait for initialization time */ | |
3015 | udelay(24); | |
3016 | ||
3017 | I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE); | |
09153000 DV |
3018 | |
3019 | mutex_unlock(&dev_priv->dpio_lock); | |
e615efe4 ED |
3020 | } |
3021 | ||
f67a559d JB |
3022 | /* |
3023 | * Enable PCH resources required for PCH ports: | |
3024 | * - PCH PLLs | |
3025 | * - FDI training & RX/TX | |
3026 | * - update transcoder timings | |
3027 | * - DP transcoding bits | |
3028 | * - transcoder | |
3029 | */ | |
3030 | static void ironlake_pch_enable(struct drm_crtc *crtc) | |
0e23b99d JB |
3031 | { |
3032 | struct drm_device *dev = crtc->dev; | |
3033 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3034 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3035 | int pipe = intel_crtc->pipe; | |
ee7b9f93 | 3036 | u32 reg, temp; |
2c07245f | 3037 | |
e7e164db CW |
3038 | assert_transcoder_disabled(dev_priv, pipe); |
3039 | ||
cd986abb DV |
3040 | /* Write the TU size bits before fdi link training, so that error |
3041 | * detection works. */ | |
3042 | I915_WRITE(FDI_RX_TUSIZE1(pipe), | |
3043 | I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK); | |
3044 | ||
c98e9dcf | 3045 | /* For PCH output, training FDI link */ |
674cf967 | 3046 | dev_priv->display.fdi_link_train(crtc); |
2c07245f | 3047 | |
572deb37 DV |
3048 | /* XXX: pch pll's can be enabled any time before we enable the PCH |
3049 | * transcoder, and we actually should do this to not upset any PCH | |
3050 | * transcoder that already use the clock when we share it. | |
3051 | * | |
3052 | * Note that enable_pch_pll tries to do the right thing, but get_pch_pll | |
3053 | * unconditionally resets the pll - we need that to have the right LVDS | |
3054 | * enable sequence. */ | |
b6b4e185 | 3055 | ironlake_enable_pch_pll(intel_crtc); |
6f13b7b5 | 3056 | |
303b81e0 | 3057 | if (HAS_PCH_CPT(dev)) { |
ee7b9f93 | 3058 | u32 sel; |
4b645f14 | 3059 | |
c98e9dcf | 3060 | temp = I915_READ(PCH_DPLL_SEL); |
ee7b9f93 JB |
3061 | switch (pipe) { |
3062 | default: | |
3063 | case 0: | |
3064 | temp |= TRANSA_DPLL_ENABLE; | |
3065 | sel = TRANSA_DPLLB_SEL; | |
3066 | break; | |
3067 | case 1: | |
3068 | temp |= TRANSB_DPLL_ENABLE; | |
3069 | sel = TRANSB_DPLLB_SEL; | |
3070 | break; | |
3071 | case 2: | |
3072 | temp |= TRANSC_DPLL_ENABLE; | |
3073 | sel = TRANSC_DPLLB_SEL; | |
3074 | break; | |
d64311ab | 3075 | } |
ee7b9f93 JB |
3076 | if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B) |
3077 | temp |= sel; | |
3078 | else | |
3079 | temp &= ~sel; | |
c98e9dcf | 3080 | I915_WRITE(PCH_DPLL_SEL, temp); |
c98e9dcf | 3081 | } |
5eddb70b | 3082 | |
d9b6cb56 JB |
3083 | /* set transcoder timing, panel must allow it */ |
3084 | assert_panel_unlocked(dev_priv, pipe); | |
5eddb70b CW |
3085 | I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe))); |
3086 | I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe))); | |
3087 | I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe))); | |
8db9d77b | 3088 | |
5eddb70b CW |
3089 | I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe))); |
3090 | I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe))); | |
3091 | I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe))); | |
0529a0d9 | 3092 | I915_WRITE(TRANS_VSYNCSHIFT(pipe), I915_READ(VSYNCSHIFT(pipe))); |
8db9d77b | 3093 | |
303b81e0 | 3094 | intel_fdi_normal_train(crtc); |
5e84e1a4 | 3095 | |
c98e9dcf JB |
3096 | /* For PCH DP, enable TRANS_DP_CTL */ |
3097 | if (HAS_PCH_CPT(dev) && | |
417e822d KP |
3098 | (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) || |
3099 | intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) { | |
dfd07d72 | 3100 | u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5; |
5eddb70b CW |
3101 | reg = TRANS_DP_CTL(pipe); |
3102 | temp = I915_READ(reg); | |
3103 | temp &= ~(TRANS_DP_PORT_SEL_MASK | | |
220cad3c EA |
3104 | TRANS_DP_SYNC_MASK | |
3105 | TRANS_DP_BPC_MASK); | |
5eddb70b CW |
3106 | temp |= (TRANS_DP_OUTPUT_ENABLE | |
3107 | TRANS_DP_ENH_FRAMING); | |
9325c9f0 | 3108 | temp |= bpc << 9; /* same format but at 11:9 */ |
c98e9dcf JB |
3109 | |
3110 | if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC) | |
5eddb70b | 3111 | temp |= TRANS_DP_HSYNC_ACTIVE_HIGH; |
c98e9dcf | 3112 | if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC) |
5eddb70b | 3113 | temp |= TRANS_DP_VSYNC_ACTIVE_HIGH; |
c98e9dcf JB |
3114 | |
3115 | switch (intel_trans_dp_port_sel(crtc)) { | |
3116 | case PCH_DP_B: | |
5eddb70b | 3117 | temp |= TRANS_DP_PORT_SEL_B; |
c98e9dcf JB |
3118 | break; |
3119 | case PCH_DP_C: | |
5eddb70b | 3120 | temp |= TRANS_DP_PORT_SEL_C; |
c98e9dcf JB |
3121 | break; |
3122 | case PCH_DP_D: | |
5eddb70b | 3123 | temp |= TRANS_DP_PORT_SEL_D; |
c98e9dcf JB |
3124 | break; |
3125 | default: | |
e95d41e1 | 3126 | BUG(); |
32f9d658 | 3127 | } |
2c07245f | 3128 | |
5eddb70b | 3129 | I915_WRITE(reg, temp); |
6be4a607 | 3130 | } |
b52eb4dc | 3131 | |
b8a4f404 | 3132 | ironlake_enable_pch_transcoder(dev_priv, pipe); |
f67a559d JB |
3133 | } |
3134 | ||
1507e5bd PZ |
3135 | static void lpt_pch_enable(struct drm_crtc *crtc) |
3136 | { | |
3137 | struct drm_device *dev = crtc->dev; | |
3138 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3139 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
daed2dbb | 3140 | enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder; |
1507e5bd | 3141 | |
daed2dbb | 3142 | assert_transcoder_disabled(dev_priv, TRANSCODER_A); |
1507e5bd | 3143 | |
8c52b5e8 | 3144 | lpt_program_iclkip(crtc); |
1507e5bd | 3145 | |
0540e488 | 3146 | /* Set transcoder timing. */ |
daed2dbb PZ |
3147 | I915_WRITE(_TRANS_HTOTAL_A, I915_READ(HTOTAL(cpu_transcoder))); |
3148 | I915_WRITE(_TRANS_HBLANK_A, I915_READ(HBLANK(cpu_transcoder))); | |
3149 | I915_WRITE(_TRANS_HSYNC_A, I915_READ(HSYNC(cpu_transcoder))); | |
1507e5bd | 3150 | |
daed2dbb PZ |
3151 | I915_WRITE(_TRANS_VTOTAL_A, I915_READ(VTOTAL(cpu_transcoder))); |
3152 | I915_WRITE(_TRANS_VBLANK_A, I915_READ(VBLANK(cpu_transcoder))); | |
3153 | I915_WRITE(_TRANS_VSYNC_A, I915_READ(VSYNC(cpu_transcoder))); | |
3154 | I915_WRITE(_TRANS_VSYNCSHIFT_A, I915_READ(VSYNCSHIFT(cpu_transcoder))); | |
1507e5bd | 3155 | |
937bb610 | 3156 | lpt_enable_pch_transcoder(dev_priv, cpu_transcoder); |
f67a559d JB |
3157 | } |
3158 | ||
ee7b9f93 JB |
3159 | static void intel_put_pch_pll(struct intel_crtc *intel_crtc) |
3160 | { | |
3161 | struct intel_pch_pll *pll = intel_crtc->pch_pll; | |
3162 | ||
3163 | if (pll == NULL) | |
3164 | return; | |
3165 | ||
3166 | if (pll->refcount == 0) { | |
3167 | WARN(1, "bad PCH PLL refcount\n"); | |
3168 | return; | |
3169 | } | |
3170 | ||
3171 | --pll->refcount; | |
3172 | intel_crtc->pch_pll = NULL; | |
3173 | } | |
3174 | ||
3175 | static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp) | |
3176 | { | |
3177 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; | |
3178 | struct intel_pch_pll *pll; | |
3179 | int i; | |
3180 | ||
3181 | pll = intel_crtc->pch_pll; | |
3182 | if (pll) { | |
3183 | DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n", | |
3184 | intel_crtc->base.base.id, pll->pll_reg); | |
3185 | goto prepare; | |
3186 | } | |
3187 | ||
98b6bd99 DV |
3188 | if (HAS_PCH_IBX(dev_priv->dev)) { |
3189 | /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */ | |
3190 | i = intel_crtc->pipe; | |
3191 | pll = &dev_priv->pch_plls[i]; | |
3192 | ||
3193 | DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n", | |
3194 | intel_crtc->base.base.id, pll->pll_reg); | |
3195 | ||
3196 | goto found; | |
3197 | } | |
3198 | ||
ee7b9f93 JB |
3199 | for (i = 0; i < dev_priv->num_pch_pll; i++) { |
3200 | pll = &dev_priv->pch_plls[i]; | |
3201 | ||
3202 | /* Only want to check enabled timings first */ | |
3203 | if (pll->refcount == 0) | |
3204 | continue; | |
3205 | ||
3206 | if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) && | |
3207 | fp == I915_READ(pll->fp0_reg)) { | |
3208 | DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n", | |
3209 | intel_crtc->base.base.id, | |
3210 | pll->pll_reg, pll->refcount, pll->active); | |
3211 | ||
3212 | goto found; | |
3213 | } | |
3214 | } | |
3215 | ||
3216 | /* Ok no matching timings, maybe there's a free one? */ | |
3217 | for (i = 0; i < dev_priv->num_pch_pll; i++) { | |
3218 | pll = &dev_priv->pch_plls[i]; | |
3219 | if (pll->refcount == 0) { | |
3220 | DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n", | |
3221 | intel_crtc->base.base.id, pll->pll_reg); | |
3222 | goto found; | |
3223 | } | |
3224 | } | |
3225 | ||
3226 | return NULL; | |
3227 | ||
3228 | found: | |
3229 | intel_crtc->pch_pll = pll; | |
3230 | pll->refcount++; | |
3231 | DRM_DEBUG_DRIVER("using pll %d for pipe %d\n", i, intel_crtc->pipe); | |
3232 | prepare: /* separate function? */ | |
3233 | DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg); | |
ee7b9f93 | 3234 | |
e04c7350 CW |
3235 | /* Wait for the clocks to stabilize before rewriting the regs */ |
3236 | I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE); | |
ee7b9f93 JB |
3237 | POSTING_READ(pll->pll_reg); |
3238 | udelay(150); | |
e04c7350 CW |
3239 | |
3240 | I915_WRITE(pll->fp0_reg, fp); | |
3241 | I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE); | |
ee7b9f93 JB |
3242 | pll->on = false; |
3243 | return pll; | |
3244 | } | |
3245 | ||
d4270e57 JB |
3246 | void intel_cpt_verify_modeset(struct drm_device *dev, int pipe) |
3247 | { | |
3248 | struct drm_i915_private *dev_priv = dev->dev_private; | |
23670b32 | 3249 | int dslreg = PIPEDSL(pipe); |
d4270e57 JB |
3250 | u32 temp; |
3251 | ||
3252 | temp = I915_READ(dslreg); | |
3253 | udelay(500); | |
3254 | if (wait_for(I915_READ(dslreg) != temp, 5)) { | |
d4270e57 JB |
3255 | if (wait_for(I915_READ(dslreg) != temp, 5)) |
3256 | DRM_ERROR("mode set failed: pipe %d stuck\n", pipe); | |
3257 | } | |
3258 | } | |
3259 | ||
f67a559d JB |
3260 | static void ironlake_crtc_enable(struct drm_crtc *crtc) |
3261 | { | |
3262 | struct drm_device *dev = crtc->dev; | |
3263 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3264 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ef9c3aee | 3265 | struct intel_encoder *encoder; |
f67a559d JB |
3266 | int pipe = intel_crtc->pipe; |
3267 | int plane = intel_crtc->plane; | |
3268 | u32 temp; | |
3269 | bool is_pch_port; | |
3270 | ||
08a48469 DV |
3271 | WARN_ON(!crtc->enabled); |
3272 | ||
f67a559d JB |
3273 | if (intel_crtc->active) |
3274 | return; | |
3275 | ||
3276 | intel_crtc->active = true; | |
3277 | intel_update_watermarks(dev); | |
3278 | ||
3279 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
3280 | temp = I915_READ(PCH_LVDS); | |
3281 | if ((temp & LVDS_PORT_EN) == 0) | |
3282 | I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN); | |
3283 | } | |
3284 | ||
fc316cbe | 3285 | is_pch_port = ironlake_crtc_driving_pch(crtc); |
f67a559d | 3286 | |
46b6f814 | 3287 | if (is_pch_port) { |
fff367c7 DV |
3288 | /* Note: FDI PLL enabling _must_ be done before we enable the |
3289 | * cpu pipes, hence this is separate from all the other fdi/pch | |
3290 | * enabling. */ | |
88cefb6c | 3291 | ironlake_fdi_pll_enable(intel_crtc); |
46b6f814 DV |
3292 | } else { |
3293 | assert_fdi_tx_disabled(dev_priv, pipe); | |
3294 | assert_fdi_rx_disabled(dev_priv, pipe); | |
3295 | } | |
f67a559d | 3296 | |
bf49ec8c DV |
3297 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3298 | if (encoder->pre_enable) | |
3299 | encoder->pre_enable(encoder); | |
f67a559d JB |
3300 | |
3301 | /* Enable panel fitting for LVDS */ | |
3302 | if (dev_priv->pch_pf_size && | |
547dc041 JN |
3303 | (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || |
3304 | intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) { | |
f67a559d JB |
3305 | /* Force use of hard-coded filter coefficients |
3306 | * as some pre-programmed values are broken, | |
3307 | * e.g. x201. | |
3308 | */ | |
13888d78 PZ |
3309 | if (IS_IVYBRIDGE(dev)) |
3310 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 | | |
3311 | PF_PIPE_SEL_IVB(pipe)); | |
3312 | else | |
3313 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3); | |
9db4a9c7 JB |
3314 | I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos); |
3315 | I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size); | |
f67a559d JB |
3316 | } |
3317 | ||
9c54c0dd JB |
3318 | /* |
3319 | * On ILK+ LUT must be loaded before the pipe is running but with | |
3320 | * clocks enabled | |
3321 | */ | |
3322 | intel_crtc_load_lut(crtc); | |
3323 | ||
f67a559d JB |
3324 | intel_enable_pipe(dev_priv, pipe, is_pch_port); |
3325 | intel_enable_plane(dev_priv, plane, pipe); | |
3326 | ||
3327 | if (is_pch_port) | |
3328 | ironlake_pch_enable(crtc); | |
c98e9dcf | 3329 | |
d1ebd816 | 3330 | mutex_lock(&dev->struct_mutex); |
bed4a673 | 3331 | intel_update_fbc(dev); |
d1ebd816 BW |
3332 | mutex_unlock(&dev->struct_mutex); |
3333 | ||
6b383a7f | 3334 | intel_crtc_update_cursor(crtc, true); |
ef9c3aee | 3335 | |
fa5c73b1 DV |
3336 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3337 | encoder->enable(encoder); | |
61b77ddd DV |
3338 | |
3339 | if (HAS_PCH_CPT(dev)) | |
3340 | intel_cpt_verify_modeset(dev, intel_crtc->pipe); | |
6ce94100 DV |
3341 | |
3342 | /* | |
3343 | * There seems to be a race in PCH platform hw (at least on some | |
3344 | * outputs) where an enabled pipe still completes any pageflip right | |
3345 | * away (as if the pipe is off) instead of waiting for vblank. As soon | |
3346 | * as the first vblank happend, everything works as expected. Hence just | |
3347 | * wait for one vblank before returning to avoid strange things | |
3348 | * happening. | |
3349 | */ | |
3350 | intel_wait_for_vblank(dev, intel_crtc->pipe); | |
6be4a607 JB |
3351 | } |
3352 | ||
4f771f10 PZ |
3353 | static void haswell_crtc_enable(struct drm_crtc *crtc) |
3354 | { | |
3355 | struct drm_device *dev = crtc->dev; | |
3356 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3357 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3358 | struct intel_encoder *encoder; | |
3359 | int pipe = intel_crtc->pipe; | |
3360 | int plane = intel_crtc->plane; | |
4f771f10 PZ |
3361 | bool is_pch_port; |
3362 | ||
3363 | WARN_ON(!crtc->enabled); | |
3364 | ||
3365 | if (intel_crtc->active) | |
3366 | return; | |
3367 | ||
3368 | intel_crtc->active = true; | |
3369 | intel_update_watermarks(dev); | |
3370 | ||
fc316cbe | 3371 | is_pch_port = haswell_crtc_driving_pch(crtc); |
4f771f10 | 3372 | |
83616634 | 3373 | if (is_pch_port) |
04945641 | 3374 | dev_priv->display.fdi_link_train(crtc); |
4f771f10 PZ |
3375 | |
3376 | for_each_encoder_on_crtc(dev, crtc, encoder) | |
3377 | if (encoder->pre_enable) | |
3378 | encoder->pre_enable(encoder); | |
3379 | ||
1f544388 | 3380 | intel_ddi_enable_pipe_clock(intel_crtc); |
4f771f10 | 3381 | |
1f544388 | 3382 | /* Enable panel fitting for eDP */ |
547dc041 JN |
3383 | if (dev_priv->pch_pf_size && |
3384 | intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) { | |
4f771f10 PZ |
3385 | /* Force use of hard-coded filter coefficients |
3386 | * as some pre-programmed values are broken, | |
3387 | * e.g. x201. | |
3388 | */ | |
54075a7d PZ |
3389 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 | |
3390 | PF_PIPE_SEL_IVB(pipe)); | |
4f771f10 PZ |
3391 | I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos); |
3392 | I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size); | |
3393 | } | |
3394 | ||
3395 | /* | |
3396 | * On ILK+ LUT must be loaded before the pipe is running but with | |
3397 | * clocks enabled | |
3398 | */ | |
3399 | intel_crtc_load_lut(crtc); | |
3400 | ||
1f544388 PZ |
3401 | intel_ddi_set_pipe_settings(crtc); |
3402 | intel_ddi_enable_pipe_func(crtc); | |
4f771f10 PZ |
3403 | |
3404 | intel_enable_pipe(dev_priv, pipe, is_pch_port); | |
3405 | intel_enable_plane(dev_priv, plane, pipe); | |
3406 | ||
3407 | if (is_pch_port) | |
1507e5bd | 3408 | lpt_pch_enable(crtc); |
4f771f10 PZ |
3409 | |
3410 | mutex_lock(&dev->struct_mutex); | |
3411 | intel_update_fbc(dev); | |
3412 | mutex_unlock(&dev->struct_mutex); | |
3413 | ||
3414 | intel_crtc_update_cursor(crtc, true); | |
3415 | ||
3416 | for_each_encoder_on_crtc(dev, crtc, encoder) | |
3417 | encoder->enable(encoder); | |
3418 | ||
4f771f10 PZ |
3419 | /* |
3420 | * There seems to be a race in PCH platform hw (at least on some | |
3421 | * outputs) where an enabled pipe still completes any pageflip right | |
3422 | * away (as if the pipe is off) instead of waiting for vblank. As soon | |
3423 | * as the first vblank happend, everything works as expected. Hence just | |
3424 | * wait for one vblank before returning to avoid strange things | |
3425 | * happening. | |
3426 | */ | |
3427 | intel_wait_for_vblank(dev, intel_crtc->pipe); | |
3428 | } | |
3429 | ||
6be4a607 JB |
3430 | static void ironlake_crtc_disable(struct drm_crtc *crtc) |
3431 | { | |
3432 | struct drm_device *dev = crtc->dev; | |
3433 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3434 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ef9c3aee | 3435 | struct intel_encoder *encoder; |
6be4a607 JB |
3436 | int pipe = intel_crtc->pipe; |
3437 | int plane = intel_crtc->plane; | |
5eddb70b | 3438 | u32 reg, temp; |
b52eb4dc | 3439 | |
ef9c3aee | 3440 | |
f7abfe8b CW |
3441 | if (!intel_crtc->active) |
3442 | return; | |
3443 | ||
ea9d758d DV |
3444 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3445 | encoder->disable(encoder); | |
3446 | ||
e6c3a2a6 | 3447 | intel_crtc_wait_for_pending_flips(crtc); |
6be4a607 | 3448 | drm_vblank_off(dev, pipe); |
6b383a7f | 3449 | intel_crtc_update_cursor(crtc, false); |
5eddb70b | 3450 | |
b24e7179 | 3451 | intel_disable_plane(dev_priv, plane, pipe); |
913d8d11 | 3452 | |
973d04f9 CW |
3453 | if (dev_priv->cfb_plane == plane) |
3454 | intel_disable_fbc(dev); | |
2c07245f | 3455 | |
b24e7179 | 3456 | intel_disable_pipe(dev_priv, pipe); |
32f9d658 | 3457 | |
6be4a607 | 3458 | /* Disable PF */ |
9db4a9c7 JB |
3459 | I915_WRITE(PF_CTL(pipe), 0); |
3460 | I915_WRITE(PF_WIN_SZ(pipe), 0); | |
2c07245f | 3461 | |
bf49ec8c DV |
3462 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3463 | if (encoder->post_disable) | |
3464 | encoder->post_disable(encoder); | |
2c07245f | 3465 | |
0fc932b8 | 3466 | ironlake_fdi_disable(crtc); |
249c0e64 | 3467 | |
b8a4f404 | 3468 | ironlake_disable_pch_transcoder(dev_priv, pipe); |
913d8d11 | 3469 | |
6be4a607 JB |
3470 | if (HAS_PCH_CPT(dev)) { |
3471 | /* disable TRANS_DP_CTL */ | |
5eddb70b CW |
3472 | reg = TRANS_DP_CTL(pipe); |
3473 | temp = I915_READ(reg); | |
3474 | temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK); | |
cb3543c6 | 3475 | temp |= TRANS_DP_PORT_SEL_NONE; |
5eddb70b | 3476 | I915_WRITE(reg, temp); |
6be4a607 JB |
3477 | |
3478 | /* disable DPLL_SEL */ | |
3479 | temp = I915_READ(PCH_DPLL_SEL); | |
9db4a9c7 JB |
3480 | switch (pipe) { |
3481 | case 0: | |
d64311ab | 3482 | temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL); |
9db4a9c7 JB |
3483 | break; |
3484 | case 1: | |
6be4a607 | 3485 | temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL); |
9db4a9c7 JB |
3486 | break; |
3487 | case 2: | |
4b645f14 | 3488 | /* C shares PLL A or B */ |
d64311ab | 3489 | temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL); |
9db4a9c7 JB |
3490 | break; |
3491 | default: | |
3492 | BUG(); /* wtf */ | |
3493 | } | |
6be4a607 | 3494 | I915_WRITE(PCH_DPLL_SEL, temp); |
6be4a607 | 3495 | } |
e3421a18 | 3496 | |
6be4a607 | 3497 | /* disable PCH DPLL */ |
ee7b9f93 | 3498 | intel_disable_pch_pll(intel_crtc); |
8db9d77b | 3499 | |
88cefb6c | 3500 | ironlake_fdi_pll_disable(intel_crtc); |
6b383a7f | 3501 | |
f7abfe8b | 3502 | intel_crtc->active = false; |
6b383a7f | 3503 | intel_update_watermarks(dev); |
d1ebd816 BW |
3504 | |
3505 | mutex_lock(&dev->struct_mutex); | |
6b383a7f | 3506 | intel_update_fbc(dev); |
d1ebd816 | 3507 | mutex_unlock(&dev->struct_mutex); |
6be4a607 | 3508 | } |
1b3c7a47 | 3509 | |
4f771f10 | 3510 | static void haswell_crtc_disable(struct drm_crtc *crtc) |
ee7b9f93 | 3511 | { |
4f771f10 PZ |
3512 | struct drm_device *dev = crtc->dev; |
3513 | struct drm_i915_private *dev_priv = dev->dev_private; | |
ee7b9f93 | 3514 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
4f771f10 PZ |
3515 | struct intel_encoder *encoder; |
3516 | int pipe = intel_crtc->pipe; | |
3517 | int plane = intel_crtc->plane; | |
ad80a810 | 3518 | enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder; |
83616634 | 3519 | bool is_pch_port; |
ee7b9f93 | 3520 | |
4f771f10 PZ |
3521 | if (!intel_crtc->active) |
3522 | return; | |
3523 | ||
83616634 PZ |
3524 | is_pch_port = haswell_crtc_driving_pch(crtc); |
3525 | ||
4f771f10 PZ |
3526 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3527 | encoder->disable(encoder); | |
3528 | ||
3529 | intel_crtc_wait_for_pending_flips(crtc); | |
3530 | drm_vblank_off(dev, pipe); | |
3531 | intel_crtc_update_cursor(crtc, false); | |
3532 | ||
3533 | intel_disable_plane(dev_priv, plane, pipe); | |
3534 | ||
3535 | if (dev_priv->cfb_plane == plane) | |
3536 | intel_disable_fbc(dev); | |
3537 | ||
3538 | intel_disable_pipe(dev_priv, pipe); | |
3539 | ||
ad80a810 | 3540 | intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder); |
4f771f10 PZ |
3541 | |
3542 | /* Disable PF */ | |
3543 | I915_WRITE(PF_CTL(pipe), 0); | |
3544 | I915_WRITE(PF_WIN_SZ(pipe), 0); | |
3545 | ||
1f544388 | 3546 | intel_ddi_disable_pipe_clock(intel_crtc); |
4f771f10 PZ |
3547 | |
3548 | for_each_encoder_on_crtc(dev, crtc, encoder) | |
3549 | if (encoder->post_disable) | |
3550 | encoder->post_disable(encoder); | |
3551 | ||
83616634 | 3552 | if (is_pch_port) { |
ab4d966c | 3553 | lpt_disable_pch_transcoder(dev_priv); |
1ad960f2 | 3554 | intel_ddi_fdi_disable(crtc); |
83616634 | 3555 | } |
4f771f10 PZ |
3556 | |
3557 | intel_crtc->active = false; | |
3558 | intel_update_watermarks(dev); | |
3559 | ||
3560 | mutex_lock(&dev->struct_mutex); | |
3561 | intel_update_fbc(dev); | |
3562 | mutex_unlock(&dev->struct_mutex); | |
3563 | } | |
3564 | ||
ee7b9f93 JB |
3565 | static void ironlake_crtc_off(struct drm_crtc *crtc) |
3566 | { | |
3567 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3568 | intel_put_pch_pll(intel_crtc); | |
3569 | } | |
3570 | ||
6441ab5f PZ |
3571 | static void haswell_crtc_off(struct drm_crtc *crtc) |
3572 | { | |
a5c961d1 PZ |
3573 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
3574 | ||
3575 | /* Stop saying we're using TRANSCODER_EDP because some other CRTC might | |
3576 | * start using it. */ | |
1a240d4d | 3577 | intel_crtc->cpu_transcoder = (enum transcoder) intel_crtc->pipe; |
a5c961d1 | 3578 | |
6441ab5f PZ |
3579 | intel_ddi_put_crtc_pll(crtc); |
3580 | } | |
3581 | ||
02e792fb DV |
3582 | static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable) |
3583 | { | |
02e792fb | 3584 | if (!enable && intel_crtc->overlay) { |
23f09ce3 | 3585 | struct drm_device *dev = intel_crtc->base.dev; |
ce453d81 | 3586 | struct drm_i915_private *dev_priv = dev->dev_private; |
03f77ea5 | 3587 | |
23f09ce3 | 3588 | mutex_lock(&dev->struct_mutex); |
ce453d81 CW |
3589 | dev_priv->mm.interruptible = false; |
3590 | (void) intel_overlay_switch_off(intel_crtc->overlay); | |
3591 | dev_priv->mm.interruptible = true; | |
23f09ce3 | 3592 | mutex_unlock(&dev->struct_mutex); |
02e792fb | 3593 | } |
02e792fb | 3594 | |
5dcdbcb0 CW |
3595 | /* Let userspace switch the overlay on again. In most cases userspace |
3596 | * has to recompute where to put it anyway. | |
3597 | */ | |
02e792fb DV |
3598 | } |
3599 | ||
0b8765c6 | 3600 | static void i9xx_crtc_enable(struct drm_crtc *crtc) |
79e53945 JB |
3601 | { |
3602 | struct drm_device *dev = crtc->dev; | |
79e53945 JB |
3603 | struct drm_i915_private *dev_priv = dev->dev_private; |
3604 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ef9c3aee | 3605 | struct intel_encoder *encoder; |
79e53945 | 3606 | int pipe = intel_crtc->pipe; |
80824003 | 3607 | int plane = intel_crtc->plane; |
79e53945 | 3608 | |
08a48469 DV |
3609 | WARN_ON(!crtc->enabled); |
3610 | ||
f7abfe8b CW |
3611 | if (intel_crtc->active) |
3612 | return; | |
3613 | ||
3614 | intel_crtc->active = true; | |
6b383a7f CW |
3615 | intel_update_watermarks(dev); |
3616 | ||
63d7bbe9 | 3617 | intel_enable_pll(dev_priv, pipe); |
040484af | 3618 | intel_enable_pipe(dev_priv, pipe, false); |
b24e7179 | 3619 | intel_enable_plane(dev_priv, plane, pipe); |
79e53945 | 3620 | |
0b8765c6 | 3621 | intel_crtc_load_lut(crtc); |
bed4a673 | 3622 | intel_update_fbc(dev); |
79e53945 | 3623 | |
0b8765c6 JB |
3624 | /* Give the overlay scaler a chance to enable if it's on this pipe */ |
3625 | intel_crtc_dpms_overlay(intel_crtc, true); | |
6b383a7f | 3626 | intel_crtc_update_cursor(crtc, true); |
ef9c3aee | 3627 | |
fa5c73b1 DV |
3628 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3629 | encoder->enable(encoder); | |
0b8765c6 | 3630 | } |
79e53945 | 3631 | |
0b8765c6 JB |
3632 | static void i9xx_crtc_disable(struct drm_crtc *crtc) |
3633 | { | |
3634 | struct drm_device *dev = crtc->dev; | |
3635 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3636 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ef9c3aee | 3637 | struct intel_encoder *encoder; |
0b8765c6 JB |
3638 | int pipe = intel_crtc->pipe; |
3639 | int plane = intel_crtc->plane; | |
b690e96c | 3640 | |
ef9c3aee | 3641 | |
f7abfe8b CW |
3642 | if (!intel_crtc->active) |
3643 | return; | |
3644 | ||
ea9d758d DV |
3645 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3646 | encoder->disable(encoder); | |
3647 | ||
0b8765c6 | 3648 | /* Give the overlay scaler a chance to disable if it's on this pipe */ |
e6c3a2a6 CW |
3649 | intel_crtc_wait_for_pending_flips(crtc); |
3650 | drm_vblank_off(dev, pipe); | |
0b8765c6 | 3651 | intel_crtc_dpms_overlay(intel_crtc, false); |
6b383a7f | 3652 | intel_crtc_update_cursor(crtc, false); |
0b8765c6 | 3653 | |
973d04f9 CW |
3654 | if (dev_priv->cfb_plane == plane) |
3655 | intel_disable_fbc(dev); | |
79e53945 | 3656 | |
b24e7179 | 3657 | intel_disable_plane(dev_priv, plane, pipe); |
b24e7179 | 3658 | intel_disable_pipe(dev_priv, pipe); |
63d7bbe9 | 3659 | intel_disable_pll(dev_priv, pipe); |
0b8765c6 | 3660 | |
f7abfe8b | 3661 | intel_crtc->active = false; |
6b383a7f CW |
3662 | intel_update_fbc(dev); |
3663 | intel_update_watermarks(dev); | |
0b8765c6 JB |
3664 | } |
3665 | ||
ee7b9f93 JB |
3666 | static void i9xx_crtc_off(struct drm_crtc *crtc) |
3667 | { | |
3668 | } | |
3669 | ||
976f8a20 DV |
3670 | static void intel_crtc_update_sarea(struct drm_crtc *crtc, |
3671 | bool enabled) | |
2c07245f ZW |
3672 | { |
3673 | struct drm_device *dev = crtc->dev; | |
3674 | struct drm_i915_master_private *master_priv; | |
3675 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3676 | int pipe = intel_crtc->pipe; | |
79e53945 JB |
3677 | |
3678 | if (!dev->primary->master) | |
3679 | return; | |
3680 | ||
3681 | master_priv = dev->primary->master->driver_priv; | |
3682 | if (!master_priv->sarea_priv) | |
3683 | return; | |
3684 | ||
79e53945 JB |
3685 | switch (pipe) { |
3686 | case 0: | |
3687 | master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0; | |
3688 | master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0; | |
3689 | break; | |
3690 | case 1: | |
3691 | master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0; | |
3692 | master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0; | |
3693 | break; | |
3694 | default: | |
9db4a9c7 | 3695 | DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe)); |
79e53945 JB |
3696 | break; |
3697 | } | |
79e53945 JB |
3698 | } |
3699 | ||
976f8a20 DV |
3700 | /** |
3701 | * Sets the power management mode of the pipe and plane. | |
3702 | */ | |
3703 | void intel_crtc_update_dpms(struct drm_crtc *crtc) | |
3704 | { | |
3705 | struct drm_device *dev = crtc->dev; | |
3706 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3707 | struct intel_encoder *intel_encoder; | |
3708 | bool enable = false; | |
3709 | ||
3710 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) | |
3711 | enable |= intel_encoder->connectors_active; | |
3712 | ||
3713 | if (enable) | |
3714 | dev_priv->display.crtc_enable(crtc); | |
3715 | else | |
3716 | dev_priv->display.crtc_disable(crtc); | |
3717 | ||
3718 | intel_crtc_update_sarea(crtc, enable); | |
3719 | } | |
3720 | ||
3721 | static void intel_crtc_noop(struct drm_crtc *crtc) | |
3722 | { | |
3723 | } | |
3724 | ||
cdd59983 CW |
3725 | static void intel_crtc_disable(struct drm_crtc *crtc) |
3726 | { | |
cdd59983 | 3727 | struct drm_device *dev = crtc->dev; |
976f8a20 | 3728 | struct drm_connector *connector; |
ee7b9f93 | 3729 | struct drm_i915_private *dev_priv = dev->dev_private; |
7b9f35a6 | 3730 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
cdd59983 | 3731 | |
976f8a20 DV |
3732 | /* crtc should still be enabled when we disable it. */ |
3733 | WARN_ON(!crtc->enabled); | |
3734 | ||
7b9f35a6 | 3735 | intel_crtc->eld_vld = false; |
976f8a20 DV |
3736 | dev_priv->display.crtc_disable(crtc); |
3737 | intel_crtc_update_sarea(crtc, false); | |
ee7b9f93 JB |
3738 | dev_priv->display.off(crtc); |
3739 | ||
931872fc CW |
3740 | assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane); |
3741 | assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe); | |
cdd59983 CW |
3742 | |
3743 | if (crtc->fb) { | |
3744 | mutex_lock(&dev->struct_mutex); | |
1690e1eb | 3745 | intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj); |
cdd59983 | 3746 | mutex_unlock(&dev->struct_mutex); |
976f8a20 DV |
3747 | crtc->fb = NULL; |
3748 | } | |
3749 | ||
3750 | /* Update computed state. */ | |
3751 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { | |
3752 | if (!connector->encoder || !connector->encoder->crtc) | |
3753 | continue; | |
3754 | ||
3755 | if (connector->encoder->crtc != crtc) | |
3756 | continue; | |
3757 | ||
3758 | connector->dpms = DRM_MODE_DPMS_OFF; | |
3759 | to_intel_encoder(connector->encoder)->connectors_active = false; | |
cdd59983 CW |
3760 | } |
3761 | } | |
3762 | ||
a261b246 | 3763 | void intel_modeset_disable(struct drm_device *dev) |
79e53945 | 3764 | { |
a261b246 DV |
3765 | struct drm_crtc *crtc; |
3766 | ||
3767 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | |
3768 | if (crtc->enabled) | |
3769 | intel_crtc_disable(crtc); | |
3770 | } | |
79e53945 JB |
3771 | } |
3772 | ||
1f703855 | 3773 | void intel_encoder_noop(struct drm_encoder *encoder) |
79e53945 | 3774 | { |
7e7d76c3 JB |
3775 | } |
3776 | ||
ea5b213a | 3777 | void intel_encoder_destroy(struct drm_encoder *encoder) |
7e7d76c3 | 3778 | { |
4ef69c7a | 3779 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
ea5b213a | 3780 | |
ea5b213a CW |
3781 | drm_encoder_cleanup(encoder); |
3782 | kfree(intel_encoder); | |
7e7d76c3 JB |
3783 | } |
3784 | ||
5ab432ef DV |
3785 | /* Simple dpms helper for encodres with just one connector, no cloning and only |
3786 | * one kind of off state. It clamps all !ON modes to fully OFF and changes the | |
3787 | * state of the entire output pipe. */ | |
3788 | void intel_encoder_dpms(struct intel_encoder *encoder, int mode) | |
7e7d76c3 | 3789 | { |
5ab432ef DV |
3790 | if (mode == DRM_MODE_DPMS_ON) { |
3791 | encoder->connectors_active = true; | |
3792 | ||
b2cabb0e | 3793 | intel_crtc_update_dpms(encoder->base.crtc); |
5ab432ef DV |
3794 | } else { |
3795 | encoder->connectors_active = false; | |
3796 | ||
b2cabb0e | 3797 | intel_crtc_update_dpms(encoder->base.crtc); |
5ab432ef | 3798 | } |
79e53945 JB |
3799 | } |
3800 | ||
0a91ca29 DV |
3801 | /* Cross check the actual hw state with our own modeset state tracking (and it's |
3802 | * internal consistency). */ | |
b980514c | 3803 | static void intel_connector_check_state(struct intel_connector *connector) |
79e53945 | 3804 | { |
0a91ca29 DV |
3805 | if (connector->get_hw_state(connector)) { |
3806 | struct intel_encoder *encoder = connector->encoder; | |
3807 | struct drm_crtc *crtc; | |
3808 | bool encoder_enabled; | |
3809 | enum pipe pipe; | |
3810 | ||
3811 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", | |
3812 | connector->base.base.id, | |
3813 | drm_get_connector_name(&connector->base)); | |
3814 | ||
3815 | WARN(connector->base.dpms == DRM_MODE_DPMS_OFF, | |
3816 | "wrong connector dpms state\n"); | |
3817 | WARN(connector->base.encoder != &encoder->base, | |
3818 | "active connector not linked to encoder\n"); | |
3819 | WARN(!encoder->connectors_active, | |
3820 | "encoder->connectors_active not set\n"); | |
3821 | ||
3822 | encoder_enabled = encoder->get_hw_state(encoder, &pipe); | |
3823 | WARN(!encoder_enabled, "encoder not enabled\n"); | |
3824 | if (WARN_ON(!encoder->base.crtc)) | |
3825 | return; | |
3826 | ||
3827 | crtc = encoder->base.crtc; | |
3828 | ||
3829 | WARN(!crtc->enabled, "crtc not enabled\n"); | |
3830 | WARN(!to_intel_crtc(crtc)->active, "crtc not active\n"); | |
3831 | WARN(pipe != to_intel_crtc(crtc)->pipe, | |
3832 | "encoder active on the wrong pipe\n"); | |
3833 | } | |
79e53945 JB |
3834 | } |
3835 | ||
5ab432ef DV |
3836 | /* Even simpler default implementation, if there's really no special case to |
3837 | * consider. */ | |
3838 | void intel_connector_dpms(struct drm_connector *connector, int mode) | |
79e53945 | 3839 | { |
5ab432ef | 3840 | struct intel_encoder *encoder = intel_attached_encoder(connector); |
d4270e57 | 3841 | |
5ab432ef DV |
3842 | /* All the simple cases only support two dpms states. */ |
3843 | if (mode != DRM_MODE_DPMS_ON) | |
3844 | mode = DRM_MODE_DPMS_OFF; | |
d4270e57 | 3845 | |
5ab432ef DV |
3846 | if (mode == connector->dpms) |
3847 | return; | |
3848 | ||
3849 | connector->dpms = mode; | |
3850 | ||
3851 | /* Only need to change hw state when actually enabled */ | |
3852 | if (encoder->base.crtc) | |
3853 | intel_encoder_dpms(encoder, mode); | |
3854 | else | |
8af6cf88 | 3855 | WARN_ON(encoder->connectors_active != false); |
0a91ca29 | 3856 | |
b980514c | 3857 | intel_modeset_check_state(connector->dev); |
79e53945 JB |
3858 | } |
3859 | ||
f0947c37 DV |
3860 | /* Simple connector->get_hw_state implementation for encoders that support only |
3861 | * one connector and no cloning and hence the encoder state determines the state | |
3862 | * of the connector. */ | |
3863 | bool intel_connector_get_hw_state(struct intel_connector *connector) | |
ea5b213a | 3864 | { |
24929352 | 3865 | enum pipe pipe = 0; |
f0947c37 | 3866 | struct intel_encoder *encoder = connector->encoder; |
ea5b213a | 3867 | |
f0947c37 | 3868 | return encoder->get_hw_state(encoder, &pipe); |
ea5b213a CW |
3869 | } |
3870 | ||
79e53945 | 3871 | static bool intel_crtc_mode_fixup(struct drm_crtc *crtc, |
35313cde | 3872 | const struct drm_display_mode *mode, |
79e53945 JB |
3873 | struct drm_display_mode *adjusted_mode) |
3874 | { | |
2c07245f | 3875 | struct drm_device *dev = crtc->dev; |
89749350 | 3876 | |
bad720ff | 3877 | if (HAS_PCH_SPLIT(dev)) { |
2c07245f | 3878 | /* FDI link clock is fixed at 2.7G */ |
2377b741 JB |
3879 | if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4) |
3880 | return false; | |
2c07245f | 3881 | } |
89749350 | 3882 | |
f9bef081 DV |
3883 | /* All interlaced capable intel hw wants timings in frames. Note though |
3884 | * that intel_lvds_mode_fixup does some funny tricks with the crtc | |
3885 | * timings, so we need to be careful not to clobber these.*/ | |
3886 | if (!(adjusted_mode->private_flags & INTEL_MODE_CRTC_TIMINGS_SET)) | |
3887 | drm_mode_set_crtcinfo(adjusted_mode, 0); | |
89749350 | 3888 | |
44f46b42 CW |
3889 | /* WaPruneModeWithIncorrectHsyncOffset: Cantiga+ cannot handle modes |
3890 | * with a hsync front porch of 0. | |
3891 | */ | |
3892 | if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) && | |
3893 | adjusted_mode->hsync_start == adjusted_mode->hdisplay) | |
3894 | return false; | |
3895 | ||
79e53945 JB |
3896 | return true; |
3897 | } | |
3898 | ||
25eb05fc JB |
3899 | static int valleyview_get_display_clock_speed(struct drm_device *dev) |
3900 | { | |
3901 | return 400000; /* FIXME */ | |
3902 | } | |
3903 | ||
e70236a8 JB |
3904 | static int i945_get_display_clock_speed(struct drm_device *dev) |
3905 | { | |
3906 | return 400000; | |
3907 | } | |
79e53945 | 3908 | |
e70236a8 | 3909 | static int i915_get_display_clock_speed(struct drm_device *dev) |
79e53945 | 3910 | { |
e70236a8 JB |
3911 | return 333000; |
3912 | } | |
79e53945 | 3913 | |
e70236a8 JB |
3914 | static int i9xx_misc_get_display_clock_speed(struct drm_device *dev) |
3915 | { | |
3916 | return 200000; | |
3917 | } | |
79e53945 | 3918 | |
e70236a8 JB |
3919 | static int i915gm_get_display_clock_speed(struct drm_device *dev) |
3920 | { | |
3921 | u16 gcfgc = 0; | |
79e53945 | 3922 | |
e70236a8 JB |
3923 | pci_read_config_word(dev->pdev, GCFGC, &gcfgc); |
3924 | ||
3925 | if (gcfgc & GC_LOW_FREQUENCY_ENABLE) | |
3926 | return 133000; | |
3927 | else { | |
3928 | switch (gcfgc & GC_DISPLAY_CLOCK_MASK) { | |
3929 | case GC_DISPLAY_CLOCK_333_MHZ: | |
3930 | return 333000; | |
3931 | default: | |
3932 | case GC_DISPLAY_CLOCK_190_200_MHZ: | |
3933 | return 190000; | |
79e53945 | 3934 | } |
e70236a8 JB |
3935 | } |
3936 | } | |
3937 | ||
3938 | static int i865_get_display_clock_speed(struct drm_device *dev) | |
3939 | { | |
3940 | return 266000; | |
3941 | } | |
3942 | ||
3943 | static int i855_get_display_clock_speed(struct drm_device *dev) | |
3944 | { | |
3945 | u16 hpllcc = 0; | |
3946 | /* Assume that the hardware is in the high speed state. This | |
3947 | * should be the default. | |
3948 | */ | |
3949 | switch (hpllcc & GC_CLOCK_CONTROL_MASK) { | |
3950 | case GC_CLOCK_133_200: | |
3951 | case GC_CLOCK_100_200: | |
3952 | return 200000; | |
3953 | case GC_CLOCK_166_250: | |
3954 | return 250000; | |
3955 | case GC_CLOCK_100_133: | |
79e53945 | 3956 | return 133000; |
e70236a8 | 3957 | } |
79e53945 | 3958 | |
e70236a8 JB |
3959 | /* Shouldn't happen */ |
3960 | return 0; | |
3961 | } | |
79e53945 | 3962 | |
e70236a8 JB |
3963 | static int i830_get_display_clock_speed(struct drm_device *dev) |
3964 | { | |
3965 | return 133000; | |
79e53945 JB |
3966 | } |
3967 | ||
2c07245f | 3968 | static void |
e69d0bc1 | 3969 | intel_reduce_ratio(uint32_t *num, uint32_t *den) |
2c07245f ZW |
3970 | { |
3971 | while (*num > 0xffffff || *den > 0xffffff) { | |
3972 | *num >>= 1; | |
3973 | *den >>= 1; | |
3974 | } | |
3975 | } | |
3976 | ||
e69d0bc1 DV |
3977 | void |
3978 | intel_link_compute_m_n(int bits_per_pixel, int nlanes, | |
3979 | int pixel_clock, int link_clock, | |
3980 | struct intel_link_m_n *m_n) | |
2c07245f | 3981 | { |
e69d0bc1 | 3982 | m_n->tu = 64; |
22ed1113 CW |
3983 | m_n->gmch_m = bits_per_pixel * pixel_clock; |
3984 | m_n->gmch_n = link_clock * nlanes * 8; | |
e69d0bc1 | 3985 | intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n); |
22ed1113 CW |
3986 | m_n->link_m = pixel_clock; |
3987 | m_n->link_n = link_clock; | |
e69d0bc1 | 3988 | intel_reduce_ratio(&m_n->link_m, &m_n->link_n); |
2c07245f ZW |
3989 | } |
3990 | ||
a7615030 CW |
3991 | static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv) |
3992 | { | |
72bbe58c KP |
3993 | if (i915_panel_use_ssc >= 0) |
3994 | return i915_panel_use_ssc != 0; | |
3995 | return dev_priv->lvds_use_ssc | |
435793df | 3996 | && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE); |
a7615030 CW |
3997 | } |
3998 | ||
5a354204 JB |
3999 | /** |
4000 | * intel_choose_pipe_bpp_dither - figure out what color depth the pipe should send | |
4001 | * @crtc: CRTC structure | |
3b5c78a3 | 4002 | * @mode: requested mode |
5a354204 JB |
4003 | * |
4004 | * A pipe may be connected to one or more outputs. Based on the depth of the | |
4005 | * attached framebuffer, choose a good color depth to use on the pipe. | |
4006 | * | |
4007 | * If possible, match the pipe depth to the fb depth. In some cases, this | |
4008 | * isn't ideal, because the connected output supports a lesser or restricted | |
4009 | * set of depths. Resolve that here: | |
4010 | * LVDS typically supports only 6bpc, so clamp down in that case | |
4011 | * HDMI supports only 8bpc or 12bpc, so clamp to 8bpc with dither for 10bpc | |
4012 | * Displays may support a restricted set as well, check EDID and clamp as | |
4013 | * appropriate. | |
3b5c78a3 | 4014 | * DP may want to dither down to 6bpc to fit larger modes |
5a354204 JB |
4015 | * |
4016 | * RETURNS: | |
4017 | * Dithering requirement (i.e. false if display bpc and pipe bpc match, | |
4018 | * true if they don't match). | |
4019 | */ | |
4020 | static bool intel_choose_pipe_bpp_dither(struct drm_crtc *crtc, | |
94352cf9 | 4021 | struct drm_framebuffer *fb, |
3b5c78a3 AJ |
4022 | unsigned int *pipe_bpp, |
4023 | struct drm_display_mode *mode) | |
5a354204 JB |
4024 | { |
4025 | struct drm_device *dev = crtc->dev; | |
4026 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5a354204 | 4027 | struct drm_connector *connector; |
6c2b7c12 | 4028 | struct intel_encoder *intel_encoder; |
5a354204 JB |
4029 | unsigned int display_bpc = UINT_MAX, bpc; |
4030 | ||
4031 | /* Walk the encoders & connectors on this crtc, get min bpc */ | |
6c2b7c12 | 4032 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) { |
5a354204 JB |
4033 | |
4034 | if (intel_encoder->type == INTEL_OUTPUT_LVDS) { | |
4035 | unsigned int lvds_bpc; | |
4036 | ||
4037 | if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) == | |
4038 | LVDS_A3_POWER_UP) | |
4039 | lvds_bpc = 8; | |
4040 | else | |
4041 | lvds_bpc = 6; | |
4042 | ||
4043 | if (lvds_bpc < display_bpc) { | |
82820490 | 4044 | DRM_DEBUG_KMS("clamping display bpc (was %d) to LVDS (%d)\n", display_bpc, lvds_bpc); |
5a354204 JB |
4045 | display_bpc = lvds_bpc; |
4046 | } | |
4047 | continue; | |
4048 | } | |
4049 | ||
5a354204 JB |
4050 | /* Not one of the known troublemakers, check the EDID */ |
4051 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
4052 | head) { | |
6c2b7c12 | 4053 | if (connector->encoder != &intel_encoder->base) |
5a354204 JB |
4054 | continue; |
4055 | ||
62ac41a6 JB |
4056 | /* Don't use an invalid EDID bpc value */ |
4057 | if (connector->display_info.bpc && | |
4058 | connector->display_info.bpc < display_bpc) { | |
82820490 | 4059 | DRM_DEBUG_KMS("clamping display bpc (was %d) to EDID reported max of %d\n", display_bpc, connector->display_info.bpc); |
5a354204 JB |
4060 | display_bpc = connector->display_info.bpc; |
4061 | } | |
4062 | } | |
4063 | ||
2f4f649a JN |
4064 | if (intel_encoder->type == INTEL_OUTPUT_EDP) { |
4065 | /* Use VBT settings if we have an eDP panel */ | |
4066 | unsigned int edp_bpc = dev_priv->edp.bpp / 3; | |
4067 | ||
9a30a61f | 4068 | if (edp_bpc && edp_bpc < display_bpc) { |
2f4f649a JN |
4069 | DRM_DEBUG_KMS("clamping display bpc (was %d) to eDP (%d)\n", display_bpc, edp_bpc); |
4070 | display_bpc = edp_bpc; | |
4071 | } | |
4072 | continue; | |
4073 | } | |
4074 | ||
5a354204 JB |
4075 | /* |
4076 | * HDMI is either 12 or 8, so if the display lets 10bpc sneak | |
4077 | * through, clamp it down. (Note: >12bpc will be caught below.) | |
4078 | */ | |
4079 | if (intel_encoder->type == INTEL_OUTPUT_HDMI) { | |
4080 | if (display_bpc > 8 && display_bpc < 12) { | |
82820490 | 4081 | DRM_DEBUG_KMS("forcing bpc to 12 for HDMI\n"); |
5a354204 JB |
4082 | display_bpc = 12; |
4083 | } else { | |
82820490 | 4084 | DRM_DEBUG_KMS("forcing bpc to 8 for HDMI\n"); |
5a354204 JB |
4085 | display_bpc = 8; |
4086 | } | |
4087 | } | |
4088 | } | |
4089 | ||
3b5c78a3 AJ |
4090 | if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) { |
4091 | DRM_DEBUG_KMS("Dithering DP to 6bpc\n"); | |
4092 | display_bpc = 6; | |
4093 | } | |
4094 | ||
5a354204 JB |
4095 | /* |
4096 | * We could just drive the pipe at the highest bpc all the time and | |
4097 | * enable dithering as needed, but that costs bandwidth. So choose | |
4098 | * the minimum value that expresses the full color range of the fb but | |
4099 | * also stays within the max display bpc discovered above. | |
4100 | */ | |
4101 | ||
94352cf9 | 4102 | switch (fb->depth) { |
5a354204 JB |
4103 | case 8: |
4104 | bpc = 8; /* since we go through a colormap */ | |
4105 | break; | |
4106 | case 15: | |
4107 | case 16: | |
4108 | bpc = 6; /* min is 18bpp */ | |
4109 | break; | |
4110 | case 24: | |
578393cd | 4111 | bpc = 8; |
5a354204 JB |
4112 | break; |
4113 | case 30: | |
578393cd | 4114 | bpc = 10; |
5a354204 JB |
4115 | break; |
4116 | case 48: | |
578393cd | 4117 | bpc = 12; |
5a354204 JB |
4118 | break; |
4119 | default: | |
4120 | DRM_DEBUG("unsupported depth, assuming 24 bits\n"); | |
4121 | bpc = min((unsigned int)8, display_bpc); | |
4122 | break; | |
4123 | } | |
4124 | ||
578393cd KP |
4125 | display_bpc = min(display_bpc, bpc); |
4126 | ||
82820490 AJ |
4127 | DRM_DEBUG_KMS("setting pipe bpc to %d (max display bpc %d)\n", |
4128 | bpc, display_bpc); | |
5a354204 | 4129 | |
578393cd | 4130 | *pipe_bpp = display_bpc * 3; |
5a354204 JB |
4131 | |
4132 | return display_bpc != bpc; | |
4133 | } | |
4134 | ||
a0c4da24 JB |
4135 | static int vlv_get_refclk(struct drm_crtc *crtc) |
4136 | { | |
4137 | struct drm_device *dev = crtc->dev; | |
4138 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4139 | int refclk = 27000; /* for DP & HDMI */ | |
4140 | ||
4141 | return 100000; /* only one validated so far */ | |
4142 | ||
4143 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) { | |
4144 | refclk = 96000; | |
4145 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
4146 | if (intel_panel_use_ssc(dev_priv)) | |
4147 | refclk = 100000; | |
4148 | else | |
4149 | refclk = 96000; | |
4150 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) { | |
4151 | refclk = 100000; | |
4152 | } | |
4153 | ||
4154 | return refclk; | |
4155 | } | |
4156 | ||
c65d77d8 JB |
4157 | static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors) |
4158 | { | |
4159 | struct drm_device *dev = crtc->dev; | |
4160 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4161 | int refclk; | |
4162 | ||
a0c4da24 JB |
4163 | if (IS_VALLEYVIEW(dev)) { |
4164 | refclk = vlv_get_refclk(crtc); | |
4165 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && | |
c65d77d8 JB |
4166 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) { |
4167 | refclk = dev_priv->lvds_ssc_freq * 1000; | |
4168 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", | |
4169 | refclk / 1000); | |
4170 | } else if (!IS_GEN2(dev)) { | |
4171 | refclk = 96000; | |
4172 | } else { | |
4173 | refclk = 48000; | |
4174 | } | |
4175 | ||
4176 | return refclk; | |
4177 | } | |
4178 | ||
4179 | static void i9xx_adjust_sdvo_tv_clock(struct drm_display_mode *adjusted_mode, | |
4180 | intel_clock_t *clock) | |
4181 | { | |
4182 | /* SDVO TV has fixed PLL values depend on its clock range, | |
4183 | this mirrors vbios setting. */ | |
4184 | if (adjusted_mode->clock >= 100000 | |
4185 | && adjusted_mode->clock < 140500) { | |
4186 | clock->p1 = 2; | |
4187 | clock->p2 = 10; | |
4188 | clock->n = 3; | |
4189 | clock->m1 = 16; | |
4190 | clock->m2 = 8; | |
4191 | } else if (adjusted_mode->clock >= 140500 | |
4192 | && adjusted_mode->clock <= 200000) { | |
4193 | clock->p1 = 1; | |
4194 | clock->p2 = 10; | |
4195 | clock->n = 6; | |
4196 | clock->m1 = 12; | |
4197 | clock->m2 = 8; | |
4198 | } | |
4199 | } | |
4200 | ||
a7516a05 JB |
4201 | static void i9xx_update_pll_dividers(struct drm_crtc *crtc, |
4202 | intel_clock_t *clock, | |
4203 | intel_clock_t *reduced_clock) | |
4204 | { | |
4205 | struct drm_device *dev = crtc->dev; | |
4206 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4207 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
4208 | int pipe = intel_crtc->pipe; | |
4209 | u32 fp, fp2 = 0; | |
4210 | ||
4211 | if (IS_PINEVIEW(dev)) { | |
4212 | fp = (1 << clock->n) << 16 | clock->m1 << 8 | clock->m2; | |
4213 | if (reduced_clock) | |
4214 | fp2 = (1 << reduced_clock->n) << 16 | | |
4215 | reduced_clock->m1 << 8 | reduced_clock->m2; | |
4216 | } else { | |
4217 | fp = clock->n << 16 | clock->m1 << 8 | clock->m2; | |
4218 | if (reduced_clock) | |
4219 | fp2 = reduced_clock->n << 16 | reduced_clock->m1 << 8 | | |
4220 | reduced_clock->m2; | |
4221 | } | |
4222 | ||
4223 | I915_WRITE(FP0(pipe), fp); | |
4224 | ||
4225 | intel_crtc->lowfreq_avail = false; | |
4226 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && | |
4227 | reduced_clock && i915_powersave) { | |
4228 | I915_WRITE(FP1(pipe), fp2); | |
4229 | intel_crtc->lowfreq_avail = true; | |
4230 | } else { | |
4231 | I915_WRITE(FP1(pipe), fp); | |
4232 | } | |
4233 | } | |
4234 | ||
a0c4da24 JB |
4235 | static void vlv_update_pll(struct drm_crtc *crtc, |
4236 | struct drm_display_mode *mode, | |
4237 | struct drm_display_mode *adjusted_mode, | |
4238 | intel_clock_t *clock, intel_clock_t *reduced_clock, | |
2a8f64ca | 4239 | int num_connectors) |
a0c4da24 JB |
4240 | { |
4241 | struct drm_device *dev = crtc->dev; | |
4242 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4243 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
4244 | int pipe = intel_crtc->pipe; | |
4245 | u32 dpll, mdiv, pdiv; | |
4246 | u32 bestn, bestm1, bestm2, bestp1, bestp2; | |
2a8f64ca VP |
4247 | bool is_sdvo; |
4248 | u32 temp; | |
a0c4da24 | 4249 | |
09153000 DV |
4250 | mutex_lock(&dev_priv->dpio_lock); |
4251 | ||
2a8f64ca VP |
4252 | is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) || |
4253 | intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI); | |
a0c4da24 | 4254 | |
2a8f64ca VP |
4255 | dpll = DPLL_VGA_MODE_DIS; |
4256 | dpll |= DPLL_EXT_BUFFER_ENABLE_VLV; | |
4257 | dpll |= DPLL_REFA_CLK_ENABLE_VLV; | |
4258 | dpll |= DPLL_INTEGRATED_CLOCK_VLV; | |
4259 | ||
4260 | I915_WRITE(DPLL(pipe), dpll); | |
4261 | POSTING_READ(DPLL(pipe)); | |
a0c4da24 JB |
4262 | |
4263 | bestn = clock->n; | |
4264 | bestm1 = clock->m1; | |
4265 | bestm2 = clock->m2; | |
4266 | bestp1 = clock->p1; | |
4267 | bestp2 = clock->p2; | |
4268 | ||
2a8f64ca VP |
4269 | /* |
4270 | * In Valleyview PLL and program lane counter registers are exposed | |
4271 | * through DPIO interface | |
4272 | */ | |
a0c4da24 JB |
4273 | mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK)); |
4274 | mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT)); | |
4275 | mdiv |= ((bestn << DPIO_N_SHIFT)); | |
4276 | mdiv |= (1 << DPIO_POST_DIV_SHIFT); | |
4277 | mdiv |= (1 << DPIO_K_SHIFT); | |
4278 | mdiv |= DPIO_ENABLE_CALIBRATION; | |
4279 | intel_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv); | |
4280 | ||
4281 | intel_dpio_write(dev_priv, DPIO_CORE_CLK(pipe), 0x01000000); | |
4282 | ||
2a8f64ca | 4283 | pdiv = (1 << DPIO_REFSEL_OVERRIDE) | (5 << DPIO_PLL_MODESEL_SHIFT) | |
a0c4da24 | 4284 | (3 << DPIO_BIAS_CURRENT_CTL_SHIFT) | (1<<20) | |
2a8f64ca VP |
4285 | (7 << DPIO_PLL_REFCLK_SEL_SHIFT) | (8 << DPIO_DRIVER_CTL_SHIFT) | |
4286 | (5 << DPIO_CLK_BIAS_CTL_SHIFT); | |
a0c4da24 JB |
4287 | intel_dpio_write(dev_priv, DPIO_REFSFR(pipe), pdiv); |
4288 | ||
2a8f64ca | 4289 | intel_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe), 0x005f003b); |
a0c4da24 JB |
4290 | |
4291 | dpll |= DPLL_VCO_ENABLE; | |
4292 | I915_WRITE(DPLL(pipe), dpll); | |
4293 | POSTING_READ(DPLL(pipe)); | |
4294 | if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1)) | |
4295 | DRM_ERROR("DPLL %d failed to lock\n", pipe); | |
4296 | ||
2a8f64ca VP |
4297 | intel_dpio_write(dev_priv, DPIO_FASTCLK_DISABLE, 0x620); |
4298 | ||
4299 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) | |
4300 | intel_dp_set_m_n(crtc, mode, adjusted_mode); | |
4301 | ||
4302 | I915_WRITE(DPLL(pipe), dpll); | |
4303 | ||
4304 | /* Wait for the clocks to stabilize. */ | |
4305 | POSTING_READ(DPLL(pipe)); | |
4306 | udelay(150); | |
a0c4da24 | 4307 | |
2a8f64ca VP |
4308 | temp = 0; |
4309 | if (is_sdvo) { | |
4310 | temp = intel_mode_get_pixel_multiplier(adjusted_mode); | |
a0c4da24 JB |
4311 | if (temp > 1) |
4312 | temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT; | |
4313 | else | |
4314 | temp = 0; | |
a0c4da24 | 4315 | } |
2a8f64ca VP |
4316 | I915_WRITE(DPLL_MD(pipe), temp); |
4317 | POSTING_READ(DPLL_MD(pipe)); | |
a0c4da24 | 4318 | |
2a8f64ca VP |
4319 | /* Now program lane control registers */ |
4320 | if(intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) | |
4321 | || intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) | |
4322 | { | |
4323 | temp = 0x1000C4; | |
4324 | if(pipe == 1) | |
4325 | temp |= (1 << 21); | |
4326 | intel_dpio_write(dev_priv, DPIO_DATA_CHANNEL1, temp); | |
4327 | } | |
4328 | if(intel_pipe_has_type(crtc,INTEL_OUTPUT_EDP)) | |
4329 | { | |
4330 | temp = 0x1000C4; | |
4331 | if(pipe == 1) | |
4332 | temp |= (1 << 21); | |
4333 | intel_dpio_write(dev_priv, DPIO_DATA_CHANNEL2, temp); | |
4334 | } | |
09153000 DV |
4335 | |
4336 | mutex_unlock(&dev_priv->dpio_lock); | |
a0c4da24 JB |
4337 | } |
4338 | ||
eb1cbe48 DV |
4339 | static void i9xx_update_pll(struct drm_crtc *crtc, |
4340 | struct drm_display_mode *mode, | |
4341 | struct drm_display_mode *adjusted_mode, | |
4342 | intel_clock_t *clock, intel_clock_t *reduced_clock, | |
4343 | int num_connectors) | |
4344 | { | |
4345 | struct drm_device *dev = crtc->dev; | |
4346 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4347 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
dafd226c | 4348 | struct intel_encoder *encoder; |
eb1cbe48 DV |
4349 | int pipe = intel_crtc->pipe; |
4350 | u32 dpll; | |
4351 | bool is_sdvo; | |
4352 | ||
2a8f64ca VP |
4353 | i9xx_update_pll_dividers(crtc, clock, reduced_clock); |
4354 | ||
eb1cbe48 DV |
4355 | is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) || |
4356 | intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI); | |
4357 | ||
4358 | dpll = DPLL_VGA_MODE_DIS; | |
4359 | ||
4360 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) | |
4361 | dpll |= DPLLB_MODE_LVDS; | |
4362 | else | |
4363 | dpll |= DPLLB_MODE_DAC_SERIAL; | |
4364 | if (is_sdvo) { | |
4365 | int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode); | |
4366 | if (pixel_multiplier > 1) { | |
4367 | if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) | |
4368 | dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES; | |
4369 | } | |
4370 | dpll |= DPLL_DVO_HIGH_SPEED; | |
4371 | } | |
4372 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) | |
4373 | dpll |= DPLL_DVO_HIGH_SPEED; | |
4374 | ||
4375 | /* compute bitmask from p1 value */ | |
4376 | if (IS_PINEVIEW(dev)) | |
4377 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW; | |
4378 | else { | |
4379 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; | |
4380 | if (IS_G4X(dev) && reduced_clock) | |
4381 | dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; | |
4382 | } | |
4383 | switch (clock->p2) { | |
4384 | case 5: | |
4385 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; | |
4386 | break; | |
4387 | case 7: | |
4388 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; | |
4389 | break; | |
4390 | case 10: | |
4391 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; | |
4392 | break; | |
4393 | case 14: | |
4394 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; | |
4395 | break; | |
4396 | } | |
4397 | if (INTEL_INFO(dev)->gen >= 4) | |
4398 | dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT); | |
4399 | ||
4400 | if (is_sdvo && intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT)) | |
4401 | dpll |= PLL_REF_INPUT_TVCLKINBC; | |
4402 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT)) | |
4403 | /* XXX: just matching BIOS for now */ | |
4404 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ | |
4405 | dpll |= 3; | |
4406 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && | |
4407 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) | |
4408 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; | |
4409 | else | |
4410 | dpll |= PLL_REF_INPUT_DREFCLK; | |
4411 | ||
4412 | dpll |= DPLL_VCO_ENABLE; | |
4413 | I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE); | |
4414 | POSTING_READ(DPLL(pipe)); | |
4415 | udelay(150); | |
4416 | ||
dafd226c DV |
4417 | for_each_encoder_on_crtc(dev, crtc, encoder) |
4418 | if (encoder->pre_pll_enable) | |
4419 | encoder->pre_pll_enable(encoder); | |
eb1cbe48 DV |
4420 | |
4421 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) | |
4422 | intel_dp_set_m_n(crtc, mode, adjusted_mode); | |
4423 | ||
4424 | I915_WRITE(DPLL(pipe), dpll); | |
4425 | ||
4426 | /* Wait for the clocks to stabilize. */ | |
4427 | POSTING_READ(DPLL(pipe)); | |
4428 | udelay(150); | |
4429 | ||
4430 | if (INTEL_INFO(dev)->gen >= 4) { | |
4431 | u32 temp = 0; | |
4432 | if (is_sdvo) { | |
4433 | temp = intel_mode_get_pixel_multiplier(adjusted_mode); | |
4434 | if (temp > 1) | |
4435 | temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT; | |
4436 | else | |
4437 | temp = 0; | |
4438 | } | |
4439 | I915_WRITE(DPLL_MD(pipe), temp); | |
4440 | } else { | |
4441 | /* The pixel multiplier can only be updated once the | |
4442 | * DPLL is enabled and the clocks are stable. | |
4443 | * | |
4444 | * So write it again. | |
4445 | */ | |
4446 | I915_WRITE(DPLL(pipe), dpll); | |
4447 | } | |
4448 | } | |
4449 | ||
4450 | static void i8xx_update_pll(struct drm_crtc *crtc, | |
4451 | struct drm_display_mode *adjusted_mode, | |
2a8f64ca | 4452 | intel_clock_t *clock, intel_clock_t *reduced_clock, |
eb1cbe48 DV |
4453 | int num_connectors) |
4454 | { | |
4455 | struct drm_device *dev = crtc->dev; | |
4456 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4457 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
dafd226c | 4458 | struct intel_encoder *encoder; |
eb1cbe48 DV |
4459 | int pipe = intel_crtc->pipe; |
4460 | u32 dpll; | |
4461 | ||
2a8f64ca VP |
4462 | i9xx_update_pll_dividers(crtc, clock, reduced_clock); |
4463 | ||
eb1cbe48 DV |
4464 | dpll = DPLL_VGA_MODE_DIS; |
4465 | ||
4466 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
4467 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; | |
4468 | } else { | |
4469 | if (clock->p1 == 2) | |
4470 | dpll |= PLL_P1_DIVIDE_BY_TWO; | |
4471 | else | |
4472 | dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT; | |
4473 | if (clock->p2 == 4) | |
4474 | dpll |= PLL_P2_DIVIDE_BY_4; | |
4475 | } | |
4476 | ||
4477 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT)) | |
4478 | /* XXX: just matching BIOS for now */ | |
4479 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ | |
4480 | dpll |= 3; | |
4481 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && | |
4482 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) | |
4483 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; | |
4484 | else | |
4485 | dpll |= PLL_REF_INPUT_DREFCLK; | |
4486 | ||
4487 | dpll |= DPLL_VCO_ENABLE; | |
4488 | I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE); | |
4489 | POSTING_READ(DPLL(pipe)); | |
4490 | udelay(150); | |
4491 | ||
dafd226c DV |
4492 | for_each_encoder_on_crtc(dev, crtc, encoder) |
4493 | if (encoder->pre_pll_enable) | |
4494 | encoder->pre_pll_enable(encoder); | |
eb1cbe48 | 4495 | |
5b5896e4 DV |
4496 | I915_WRITE(DPLL(pipe), dpll); |
4497 | ||
4498 | /* Wait for the clocks to stabilize. */ | |
4499 | POSTING_READ(DPLL(pipe)); | |
4500 | udelay(150); | |
4501 | ||
eb1cbe48 DV |
4502 | /* The pixel multiplier can only be updated once the |
4503 | * DPLL is enabled and the clocks are stable. | |
4504 | * | |
4505 | * So write it again. | |
4506 | */ | |
4507 | I915_WRITE(DPLL(pipe), dpll); | |
4508 | } | |
4509 | ||
b0e77b9c PZ |
4510 | static void intel_set_pipe_timings(struct intel_crtc *intel_crtc, |
4511 | struct drm_display_mode *mode, | |
4512 | struct drm_display_mode *adjusted_mode) | |
4513 | { | |
4514 | struct drm_device *dev = intel_crtc->base.dev; | |
4515 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4516 | enum pipe pipe = intel_crtc->pipe; | |
fe2b8f9d | 4517 | enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder; |
b0e77b9c PZ |
4518 | uint32_t vsyncshift; |
4519 | ||
4520 | if (!IS_GEN2(dev) && adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { | |
4521 | /* the chip adds 2 halflines automatically */ | |
4522 | adjusted_mode->crtc_vtotal -= 1; | |
4523 | adjusted_mode->crtc_vblank_end -= 1; | |
4524 | vsyncshift = adjusted_mode->crtc_hsync_start | |
4525 | - adjusted_mode->crtc_htotal / 2; | |
4526 | } else { | |
4527 | vsyncshift = 0; | |
4528 | } | |
4529 | ||
4530 | if (INTEL_INFO(dev)->gen > 3) | |
fe2b8f9d | 4531 | I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift); |
b0e77b9c | 4532 | |
fe2b8f9d | 4533 | I915_WRITE(HTOTAL(cpu_transcoder), |
b0e77b9c PZ |
4534 | (adjusted_mode->crtc_hdisplay - 1) | |
4535 | ((adjusted_mode->crtc_htotal - 1) << 16)); | |
fe2b8f9d | 4536 | I915_WRITE(HBLANK(cpu_transcoder), |
b0e77b9c PZ |
4537 | (adjusted_mode->crtc_hblank_start - 1) | |
4538 | ((adjusted_mode->crtc_hblank_end - 1) << 16)); | |
fe2b8f9d | 4539 | I915_WRITE(HSYNC(cpu_transcoder), |
b0e77b9c PZ |
4540 | (adjusted_mode->crtc_hsync_start - 1) | |
4541 | ((adjusted_mode->crtc_hsync_end - 1) << 16)); | |
4542 | ||
fe2b8f9d | 4543 | I915_WRITE(VTOTAL(cpu_transcoder), |
b0e77b9c PZ |
4544 | (adjusted_mode->crtc_vdisplay - 1) | |
4545 | ((adjusted_mode->crtc_vtotal - 1) << 16)); | |
fe2b8f9d | 4546 | I915_WRITE(VBLANK(cpu_transcoder), |
b0e77b9c PZ |
4547 | (adjusted_mode->crtc_vblank_start - 1) | |
4548 | ((adjusted_mode->crtc_vblank_end - 1) << 16)); | |
fe2b8f9d | 4549 | I915_WRITE(VSYNC(cpu_transcoder), |
b0e77b9c PZ |
4550 | (adjusted_mode->crtc_vsync_start - 1) | |
4551 | ((adjusted_mode->crtc_vsync_end - 1) << 16)); | |
4552 | ||
b5e508d4 PZ |
4553 | /* Workaround: when the EDP input selection is B, the VTOTAL_B must be |
4554 | * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is | |
4555 | * documented on the DDI_FUNC_CTL register description, EDP Input Select | |
4556 | * bits. */ | |
4557 | if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP && | |
4558 | (pipe == PIPE_B || pipe == PIPE_C)) | |
4559 | I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder))); | |
4560 | ||
b0e77b9c PZ |
4561 | /* pipesrc controls the size that is scaled from, which should |
4562 | * always be the user's requested size. | |
4563 | */ | |
4564 | I915_WRITE(PIPESRC(pipe), | |
4565 | ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1)); | |
4566 | } | |
4567 | ||
f564048e EA |
4568 | static int i9xx_crtc_mode_set(struct drm_crtc *crtc, |
4569 | struct drm_display_mode *mode, | |
4570 | struct drm_display_mode *adjusted_mode, | |
4571 | int x, int y, | |
94352cf9 | 4572 | struct drm_framebuffer *fb) |
79e53945 JB |
4573 | { |
4574 | struct drm_device *dev = crtc->dev; | |
4575 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4576 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
4577 | int pipe = intel_crtc->pipe; | |
80824003 | 4578 | int plane = intel_crtc->plane; |
c751ce4f | 4579 | int refclk, num_connectors = 0; |
652c393a | 4580 | intel_clock_t clock, reduced_clock; |
b0e77b9c | 4581 | u32 dspcntr, pipeconf; |
eb1cbe48 DV |
4582 | bool ok, has_reduced_clock = false, is_sdvo = false; |
4583 | bool is_lvds = false, is_tv = false, is_dp = false; | |
5eddb70b | 4584 | struct intel_encoder *encoder; |
d4906093 | 4585 | const intel_limit_t *limit; |
5c3b82e2 | 4586 | int ret; |
79e53945 | 4587 | |
6c2b7c12 | 4588 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
5eddb70b | 4589 | switch (encoder->type) { |
79e53945 JB |
4590 | case INTEL_OUTPUT_LVDS: |
4591 | is_lvds = true; | |
4592 | break; | |
4593 | case INTEL_OUTPUT_SDVO: | |
7d57382e | 4594 | case INTEL_OUTPUT_HDMI: |
79e53945 | 4595 | is_sdvo = true; |
5eddb70b | 4596 | if (encoder->needs_tv_clock) |
e2f0ba97 | 4597 | is_tv = true; |
79e53945 | 4598 | break; |
79e53945 JB |
4599 | case INTEL_OUTPUT_TVOUT: |
4600 | is_tv = true; | |
4601 | break; | |
a4fc5ed6 KP |
4602 | case INTEL_OUTPUT_DISPLAYPORT: |
4603 | is_dp = true; | |
4604 | break; | |
79e53945 | 4605 | } |
43565a06 | 4606 | |
c751ce4f | 4607 | num_connectors++; |
79e53945 JB |
4608 | } |
4609 | ||
c65d77d8 | 4610 | refclk = i9xx_get_refclk(crtc, num_connectors); |
79e53945 | 4611 | |
d4906093 ML |
4612 | /* |
4613 | * Returns a set of divisors for the desired target clock with the given | |
4614 | * refclk, or FALSE. The returned values represent the clock equation: | |
4615 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. | |
4616 | */ | |
1b894b59 | 4617 | limit = intel_limit(crtc, refclk); |
cec2f356 SP |
4618 | ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL, |
4619 | &clock); | |
79e53945 JB |
4620 | if (!ok) { |
4621 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); | |
5c3b82e2 | 4622 | return -EINVAL; |
79e53945 JB |
4623 | } |
4624 | ||
cda4b7d3 | 4625 | /* Ensure that the cursor is valid for the new mode before changing... */ |
6b383a7f | 4626 | intel_crtc_update_cursor(crtc, true); |
cda4b7d3 | 4627 | |
ddc9003c | 4628 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
cec2f356 SP |
4629 | /* |
4630 | * Ensure we match the reduced clock's P to the target clock. | |
4631 | * If the clocks don't match, we can't switch the display clock | |
4632 | * by using the FP0/FP1. In such case we will disable the LVDS | |
4633 | * downclock feature. | |
4634 | */ | |
ddc9003c | 4635 | has_reduced_clock = limit->find_pll(limit, crtc, |
5eddb70b CW |
4636 | dev_priv->lvds_downclock, |
4637 | refclk, | |
cec2f356 | 4638 | &clock, |
5eddb70b | 4639 | &reduced_clock); |
7026d4ac ZW |
4640 | } |
4641 | ||
c65d77d8 JB |
4642 | if (is_sdvo && is_tv) |
4643 | i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock); | |
7026d4ac | 4644 | |
eb1cbe48 | 4645 | if (IS_GEN2(dev)) |
2a8f64ca VP |
4646 | i8xx_update_pll(crtc, adjusted_mode, &clock, |
4647 | has_reduced_clock ? &reduced_clock : NULL, | |
4648 | num_connectors); | |
a0c4da24 | 4649 | else if (IS_VALLEYVIEW(dev)) |
2a8f64ca VP |
4650 | vlv_update_pll(crtc, mode, adjusted_mode, &clock, |
4651 | has_reduced_clock ? &reduced_clock : NULL, | |
4652 | num_connectors); | |
79e53945 | 4653 | else |
eb1cbe48 DV |
4654 | i9xx_update_pll(crtc, mode, adjusted_mode, &clock, |
4655 | has_reduced_clock ? &reduced_clock : NULL, | |
4656 | num_connectors); | |
79e53945 JB |
4657 | |
4658 | /* setup pipeconf */ | |
5eddb70b | 4659 | pipeconf = I915_READ(PIPECONF(pipe)); |
79e53945 JB |
4660 | |
4661 | /* Set up the display plane register */ | |
4662 | dspcntr = DISPPLANE_GAMMA_ENABLE; | |
4663 | ||
929c77fb EA |
4664 | if (pipe == 0) |
4665 | dspcntr &= ~DISPPLANE_SEL_PIPE_MASK; | |
4666 | else | |
4667 | dspcntr |= DISPPLANE_SEL_PIPE_B; | |
79e53945 | 4668 | |
a6c45cf0 | 4669 | if (pipe == 0 && INTEL_INFO(dev)->gen < 4) { |
79e53945 JB |
4670 | /* Enable pixel doubling when the dot clock is > 90% of the (display) |
4671 | * core speed. | |
4672 | * | |
4673 | * XXX: No double-wide on 915GM pipe B. Is that the only reason for the | |
4674 | * pipe == 0 check? | |
4675 | */ | |
e70236a8 JB |
4676 | if (mode->clock > |
4677 | dev_priv->display.get_display_clock_speed(dev) * 9 / 10) | |
5eddb70b | 4678 | pipeconf |= PIPECONF_DOUBLE_WIDE; |
79e53945 | 4679 | else |
5eddb70b | 4680 | pipeconf &= ~PIPECONF_DOUBLE_WIDE; |
79e53945 JB |
4681 | } |
4682 | ||
3b5c78a3 | 4683 | /* default to 8bpc */ |
dfd07d72 | 4684 | pipeconf &= ~(PIPECONF_BPC_MASK | PIPECONF_DITHER_EN); |
3b5c78a3 | 4685 | if (is_dp) { |
0c96c65b | 4686 | if (adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) { |
dfd07d72 | 4687 | pipeconf |= PIPECONF_6BPC | |
3b5c78a3 AJ |
4688 | PIPECONF_DITHER_EN | |
4689 | PIPECONF_DITHER_TYPE_SP; | |
4690 | } | |
4691 | } | |
4692 | ||
19c03924 GB |
4693 | if (IS_VALLEYVIEW(dev) && intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) { |
4694 | if (adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) { | |
dfd07d72 | 4695 | pipeconf |= PIPECONF_6BPC | |
19c03924 GB |
4696 | PIPECONF_ENABLE | |
4697 | I965_PIPECONF_ACTIVE; | |
4698 | } | |
4699 | } | |
4700 | ||
28c97730 | 4701 | DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B'); |
79e53945 JB |
4702 | drm_mode_debug_printmodeline(mode); |
4703 | ||
a7516a05 JB |
4704 | if (HAS_PIPE_CXSR(dev)) { |
4705 | if (intel_crtc->lowfreq_avail) { | |
28c97730 | 4706 | DRM_DEBUG_KMS("enabling CxSR downclocking\n"); |
652c393a | 4707 | pipeconf |= PIPECONF_CXSR_DOWNCLOCK; |
a7516a05 | 4708 | } else { |
28c97730 | 4709 | DRM_DEBUG_KMS("disabling CxSR downclocking\n"); |
652c393a JB |
4710 | pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK; |
4711 | } | |
4712 | } | |
4713 | ||
617cf884 | 4714 | pipeconf &= ~PIPECONF_INTERLACE_MASK; |
dbb02575 | 4715 | if (!IS_GEN2(dev) && |
b0e77b9c | 4716 | adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) |
734b4157 | 4717 | pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION; |
b0e77b9c | 4718 | else |
617cf884 | 4719 | pipeconf |= PIPECONF_PROGRESSIVE; |
734b4157 | 4720 | |
b0e77b9c | 4721 | intel_set_pipe_timings(intel_crtc, mode, adjusted_mode); |
5eddb70b CW |
4722 | |
4723 | /* pipesrc and dspsize control the size that is scaled from, | |
4724 | * which should always be the user's requested size. | |
79e53945 | 4725 | */ |
929c77fb EA |
4726 | I915_WRITE(DSPSIZE(plane), |
4727 | ((mode->vdisplay - 1) << 16) | | |
4728 | (mode->hdisplay - 1)); | |
4729 | I915_WRITE(DSPPOS(plane), 0); | |
2c07245f | 4730 | |
f564048e EA |
4731 | I915_WRITE(PIPECONF(pipe), pipeconf); |
4732 | POSTING_READ(PIPECONF(pipe)); | |
929c77fb | 4733 | intel_enable_pipe(dev_priv, pipe, false); |
f564048e EA |
4734 | |
4735 | intel_wait_for_vblank(dev, pipe); | |
4736 | ||
f564048e EA |
4737 | I915_WRITE(DSPCNTR(plane), dspcntr); |
4738 | POSTING_READ(DSPCNTR(plane)); | |
4739 | ||
94352cf9 | 4740 | ret = intel_pipe_set_base(crtc, x, y, fb); |
f564048e EA |
4741 | |
4742 | intel_update_watermarks(dev); | |
4743 | ||
f564048e EA |
4744 | return ret; |
4745 | } | |
4746 | ||
dde86e2d | 4747 | static void ironlake_init_pch_refclk(struct drm_device *dev) |
13d83a67 JB |
4748 | { |
4749 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4750 | struct drm_mode_config *mode_config = &dev->mode_config; | |
13d83a67 | 4751 | struct intel_encoder *encoder; |
13d83a67 JB |
4752 | u32 temp; |
4753 | bool has_lvds = false; | |
199e5d79 KP |
4754 | bool has_cpu_edp = false; |
4755 | bool has_pch_edp = false; | |
4756 | bool has_panel = false; | |
99eb6a01 KP |
4757 | bool has_ck505 = false; |
4758 | bool can_ssc = false; | |
13d83a67 JB |
4759 | |
4760 | /* We need to take the global config into account */ | |
199e5d79 KP |
4761 | list_for_each_entry(encoder, &mode_config->encoder_list, |
4762 | base.head) { | |
4763 | switch (encoder->type) { | |
4764 | case INTEL_OUTPUT_LVDS: | |
4765 | has_panel = true; | |
4766 | has_lvds = true; | |
4767 | break; | |
4768 | case INTEL_OUTPUT_EDP: | |
4769 | has_panel = true; | |
4770 | if (intel_encoder_is_pch_edp(&encoder->base)) | |
4771 | has_pch_edp = true; | |
4772 | else | |
4773 | has_cpu_edp = true; | |
4774 | break; | |
13d83a67 JB |
4775 | } |
4776 | } | |
4777 | ||
99eb6a01 KP |
4778 | if (HAS_PCH_IBX(dev)) { |
4779 | has_ck505 = dev_priv->display_clock_mode; | |
4780 | can_ssc = has_ck505; | |
4781 | } else { | |
4782 | has_ck505 = false; | |
4783 | can_ssc = true; | |
4784 | } | |
4785 | ||
4786 | DRM_DEBUG_KMS("has_panel %d has_lvds %d has_pch_edp %d has_cpu_edp %d has_ck505 %d\n", | |
4787 | has_panel, has_lvds, has_pch_edp, has_cpu_edp, | |
4788 | has_ck505); | |
13d83a67 JB |
4789 | |
4790 | /* Ironlake: try to setup display ref clock before DPLL | |
4791 | * enabling. This is only under driver's control after | |
4792 | * PCH B stepping, previous chipset stepping should be | |
4793 | * ignoring this setting. | |
4794 | */ | |
4795 | temp = I915_READ(PCH_DREF_CONTROL); | |
4796 | /* Always enable nonspread source */ | |
4797 | temp &= ~DREF_NONSPREAD_SOURCE_MASK; | |
13d83a67 | 4798 | |
99eb6a01 KP |
4799 | if (has_ck505) |
4800 | temp |= DREF_NONSPREAD_CK505_ENABLE; | |
4801 | else | |
4802 | temp |= DREF_NONSPREAD_SOURCE_ENABLE; | |
13d83a67 | 4803 | |
199e5d79 KP |
4804 | if (has_panel) { |
4805 | temp &= ~DREF_SSC_SOURCE_MASK; | |
4806 | temp |= DREF_SSC_SOURCE_ENABLE; | |
13d83a67 | 4807 | |
199e5d79 | 4808 | /* SSC must be turned on before enabling the CPU output */ |
99eb6a01 | 4809 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
199e5d79 | 4810 | DRM_DEBUG_KMS("Using SSC on panel\n"); |
13d83a67 | 4811 | temp |= DREF_SSC1_ENABLE; |
e77166b5 DV |
4812 | } else |
4813 | temp &= ~DREF_SSC1_ENABLE; | |
199e5d79 KP |
4814 | |
4815 | /* Get SSC going before enabling the outputs */ | |
4816 | I915_WRITE(PCH_DREF_CONTROL, temp); | |
4817 | POSTING_READ(PCH_DREF_CONTROL); | |
4818 | udelay(200); | |
4819 | ||
13d83a67 JB |
4820 | temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
4821 | ||
4822 | /* Enable CPU source on CPU attached eDP */ | |
199e5d79 | 4823 | if (has_cpu_edp) { |
99eb6a01 | 4824 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
199e5d79 | 4825 | DRM_DEBUG_KMS("Using SSC on eDP\n"); |
13d83a67 | 4826 | temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; |
199e5d79 | 4827 | } |
13d83a67 JB |
4828 | else |
4829 | temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; | |
199e5d79 KP |
4830 | } else |
4831 | temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE; | |
4832 | ||
4833 | I915_WRITE(PCH_DREF_CONTROL, temp); | |
4834 | POSTING_READ(PCH_DREF_CONTROL); | |
4835 | udelay(200); | |
4836 | } else { | |
4837 | DRM_DEBUG_KMS("Disabling SSC entirely\n"); | |
4838 | ||
4839 | temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK; | |
4840 | ||
4841 | /* Turn off CPU output */ | |
4842 | temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE; | |
4843 | ||
4844 | I915_WRITE(PCH_DREF_CONTROL, temp); | |
4845 | POSTING_READ(PCH_DREF_CONTROL); | |
4846 | udelay(200); | |
4847 | ||
4848 | /* Turn off the SSC source */ | |
4849 | temp &= ~DREF_SSC_SOURCE_MASK; | |
4850 | temp |= DREF_SSC_SOURCE_DISABLE; | |
4851 | ||
4852 | /* Turn off SSC1 */ | |
4853 | temp &= ~ DREF_SSC1_ENABLE; | |
4854 | ||
13d83a67 JB |
4855 | I915_WRITE(PCH_DREF_CONTROL, temp); |
4856 | POSTING_READ(PCH_DREF_CONTROL); | |
4857 | udelay(200); | |
4858 | } | |
4859 | } | |
4860 | ||
dde86e2d PZ |
4861 | /* Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O. */ |
4862 | static void lpt_init_pch_refclk(struct drm_device *dev) | |
4863 | { | |
4864 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4865 | struct drm_mode_config *mode_config = &dev->mode_config; | |
4866 | struct intel_encoder *encoder; | |
4867 | bool has_vga = false; | |
4868 | bool is_sdv = false; | |
4869 | u32 tmp; | |
4870 | ||
4871 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) { | |
4872 | switch (encoder->type) { | |
4873 | case INTEL_OUTPUT_ANALOG: | |
4874 | has_vga = true; | |
4875 | break; | |
4876 | } | |
4877 | } | |
4878 | ||
4879 | if (!has_vga) | |
4880 | return; | |
4881 | ||
c00db246 DV |
4882 | mutex_lock(&dev_priv->dpio_lock); |
4883 | ||
dde86e2d PZ |
4884 | /* XXX: Rip out SDV support once Haswell ships for real. */ |
4885 | if (IS_HASWELL(dev) && (dev->pci_device & 0xFF00) == 0x0C00) | |
4886 | is_sdv = true; | |
4887 | ||
4888 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); | |
4889 | tmp &= ~SBI_SSCCTL_DISABLE; | |
4890 | tmp |= SBI_SSCCTL_PATHALT; | |
4891 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); | |
4892 | ||
4893 | udelay(24); | |
4894 | ||
4895 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); | |
4896 | tmp &= ~SBI_SSCCTL_PATHALT; | |
4897 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); | |
4898 | ||
4899 | if (!is_sdv) { | |
4900 | tmp = I915_READ(SOUTH_CHICKEN2); | |
4901 | tmp |= FDI_MPHY_IOSFSB_RESET_CTL; | |
4902 | I915_WRITE(SOUTH_CHICKEN2, tmp); | |
4903 | ||
4904 | if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) & | |
4905 | FDI_MPHY_IOSFSB_RESET_STATUS, 100)) | |
4906 | DRM_ERROR("FDI mPHY reset assert timeout\n"); | |
4907 | ||
4908 | tmp = I915_READ(SOUTH_CHICKEN2); | |
4909 | tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL; | |
4910 | I915_WRITE(SOUTH_CHICKEN2, tmp); | |
4911 | ||
4912 | if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) & | |
4913 | FDI_MPHY_IOSFSB_RESET_STATUS) == 0, | |
4914 | 100)) | |
4915 | DRM_ERROR("FDI mPHY reset de-assert timeout\n"); | |
4916 | } | |
4917 | ||
4918 | tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY); | |
4919 | tmp &= ~(0xFF << 24); | |
4920 | tmp |= (0x12 << 24); | |
4921 | intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY); | |
4922 | ||
4923 | if (!is_sdv) { | |
4924 | tmp = intel_sbi_read(dev_priv, 0x808C, SBI_MPHY); | |
4925 | tmp &= ~(0x3 << 6); | |
4926 | tmp |= (1 << 6) | (1 << 0); | |
4927 | intel_sbi_write(dev_priv, 0x808C, tmp, SBI_MPHY); | |
4928 | } | |
4929 | ||
4930 | if (is_sdv) { | |
4931 | tmp = intel_sbi_read(dev_priv, 0x800C, SBI_MPHY); | |
4932 | tmp |= 0x7FFF; | |
4933 | intel_sbi_write(dev_priv, 0x800C, tmp, SBI_MPHY); | |
4934 | } | |
4935 | ||
4936 | tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY); | |
4937 | tmp |= (1 << 11); | |
4938 | intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY); | |
4939 | ||
4940 | tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY); | |
4941 | tmp |= (1 << 11); | |
4942 | intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY); | |
4943 | ||
4944 | if (is_sdv) { | |
4945 | tmp = intel_sbi_read(dev_priv, 0x2038, SBI_MPHY); | |
4946 | tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16); | |
4947 | intel_sbi_write(dev_priv, 0x2038, tmp, SBI_MPHY); | |
4948 | ||
4949 | tmp = intel_sbi_read(dev_priv, 0x2138, SBI_MPHY); | |
4950 | tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16); | |
4951 | intel_sbi_write(dev_priv, 0x2138, tmp, SBI_MPHY); | |
4952 | ||
4953 | tmp = intel_sbi_read(dev_priv, 0x203C, SBI_MPHY); | |
4954 | tmp |= (0x3F << 8); | |
4955 | intel_sbi_write(dev_priv, 0x203C, tmp, SBI_MPHY); | |
4956 | ||
4957 | tmp = intel_sbi_read(dev_priv, 0x213C, SBI_MPHY); | |
4958 | tmp |= (0x3F << 8); | |
4959 | intel_sbi_write(dev_priv, 0x213C, tmp, SBI_MPHY); | |
4960 | } | |
4961 | ||
4962 | tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY); | |
4963 | tmp |= (1 << 24) | (1 << 21) | (1 << 18); | |
4964 | intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY); | |
4965 | ||
4966 | tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY); | |
4967 | tmp |= (1 << 24) | (1 << 21) | (1 << 18); | |
4968 | intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY); | |
4969 | ||
4970 | if (!is_sdv) { | |
4971 | tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY); | |
4972 | tmp &= ~(7 << 13); | |
4973 | tmp |= (5 << 13); | |
4974 | intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY); | |
4975 | ||
4976 | tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY); | |
4977 | tmp &= ~(7 << 13); | |
4978 | tmp |= (5 << 13); | |
4979 | intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY); | |
4980 | } | |
4981 | ||
4982 | tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY); | |
4983 | tmp &= ~0xFF; | |
4984 | tmp |= 0x1C; | |
4985 | intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY); | |
4986 | ||
4987 | tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY); | |
4988 | tmp &= ~0xFF; | |
4989 | tmp |= 0x1C; | |
4990 | intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY); | |
4991 | ||
4992 | tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY); | |
4993 | tmp &= ~(0xFF << 16); | |
4994 | tmp |= (0x1C << 16); | |
4995 | intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY); | |
4996 | ||
4997 | tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY); | |
4998 | tmp &= ~(0xFF << 16); | |
4999 | tmp |= (0x1C << 16); | |
5000 | intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY); | |
5001 | ||
5002 | if (!is_sdv) { | |
5003 | tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY); | |
5004 | tmp |= (1 << 27); | |
5005 | intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY); | |
5006 | ||
5007 | tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY); | |
5008 | tmp |= (1 << 27); | |
5009 | intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY); | |
5010 | ||
5011 | tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY); | |
5012 | tmp &= ~(0xF << 28); | |
5013 | tmp |= (4 << 28); | |
5014 | intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY); | |
5015 | ||
5016 | tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY); | |
5017 | tmp &= ~(0xF << 28); | |
5018 | tmp |= (4 << 28); | |
5019 | intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY); | |
5020 | } | |
5021 | ||
5022 | /* ULT uses SBI_GEN0, but ULT doesn't have VGA, so we don't care. */ | |
5023 | tmp = intel_sbi_read(dev_priv, SBI_DBUFF0, SBI_ICLK); | |
5024 | tmp |= SBI_DBUFF0_ENABLE; | |
5025 | intel_sbi_write(dev_priv, SBI_DBUFF0, tmp, SBI_ICLK); | |
c00db246 DV |
5026 | |
5027 | mutex_unlock(&dev_priv->dpio_lock); | |
dde86e2d PZ |
5028 | } |
5029 | ||
5030 | /* | |
5031 | * Initialize reference clocks when the driver loads | |
5032 | */ | |
5033 | void intel_init_pch_refclk(struct drm_device *dev) | |
5034 | { | |
5035 | if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) | |
5036 | ironlake_init_pch_refclk(dev); | |
5037 | else if (HAS_PCH_LPT(dev)) | |
5038 | lpt_init_pch_refclk(dev); | |
5039 | } | |
5040 | ||
d9d444cb JB |
5041 | static int ironlake_get_refclk(struct drm_crtc *crtc) |
5042 | { | |
5043 | struct drm_device *dev = crtc->dev; | |
5044 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5045 | struct intel_encoder *encoder; | |
d9d444cb JB |
5046 | struct intel_encoder *edp_encoder = NULL; |
5047 | int num_connectors = 0; | |
5048 | bool is_lvds = false; | |
5049 | ||
6c2b7c12 | 5050 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
d9d444cb JB |
5051 | switch (encoder->type) { |
5052 | case INTEL_OUTPUT_LVDS: | |
5053 | is_lvds = true; | |
5054 | break; | |
5055 | case INTEL_OUTPUT_EDP: | |
5056 | edp_encoder = encoder; | |
5057 | break; | |
5058 | } | |
5059 | num_connectors++; | |
5060 | } | |
5061 | ||
5062 | if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) { | |
5063 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", | |
5064 | dev_priv->lvds_ssc_freq); | |
5065 | return dev_priv->lvds_ssc_freq * 1000; | |
5066 | } | |
5067 | ||
5068 | return 120000; | |
5069 | } | |
5070 | ||
c8203565 | 5071 | static void ironlake_set_pipeconf(struct drm_crtc *crtc, |
f564048e | 5072 | struct drm_display_mode *adjusted_mode, |
c8203565 | 5073 | bool dither) |
79e53945 | 5074 | { |
c8203565 | 5075 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
79e53945 JB |
5076 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
5077 | int pipe = intel_crtc->pipe; | |
c8203565 PZ |
5078 | uint32_t val; |
5079 | ||
5080 | val = I915_READ(PIPECONF(pipe)); | |
5081 | ||
dfd07d72 | 5082 | val &= ~PIPECONF_BPC_MASK; |
c8203565 PZ |
5083 | switch (intel_crtc->bpp) { |
5084 | case 18: | |
dfd07d72 | 5085 | val |= PIPECONF_6BPC; |
c8203565 PZ |
5086 | break; |
5087 | case 24: | |
dfd07d72 | 5088 | val |= PIPECONF_8BPC; |
c8203565 PZ |
5089 | break; |
5090 | case 30: | |
dfd07d72 | 5091 | val |= PIPECONF_10BPC; |
c8203565 PZ |
5092 | break; |
5093 | case 36: | |
dfd07d72 | 5094 | val |= PIPECONF_12BPC; |
c8203565 PZ |
5095 | break; |
5096 | default: | |
cc769b62 PZ |
5097 | /* Case prevented by intel_choose_pipe_bpp_dither. */ |
5098 | BUG(); | |
c8203565 PZ |
5099 | } |
5100 | ||
5101 | val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK); | |
5102 | if (dither) | |
5103 | val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP); | |
5104 | ||
5105 | val &= ~PIPECONF_INTERLACE_MASK; | |
5106 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) | |
5107 | val |= PIPECONF_INTERLACED_ILK; | |
5108 | else | |
5109 | val |= PIPECONF_PROGRESSIVE; | |
5110 | ||
3685a8f3 VS |
5111 | if (adjusted_mode->private_flags & INTEL_MODE_LIMITED_COLOR_RANGE) |
5112 | val |= PIPECONF_COLOR_RANGE_SELECT; | |
5113 | else | |
5114 | val &= ~PIPECONF_COLOR_RANGE_SELECT; | |
5115 | ||
c8203565 PZ |
5116 | I915_WRITE(PIPECONF(pipe), val); |
5117 | POSTING_READ(PIPECONF(pipe)); | |
5118 | } | |
5119 | ||
ee2b0b38 PZ |
5120 | static void haswell_set_pipeconf(struct drm_crtc *crtc, |
5121 | struct drm_display_mode *adjusted_mode, | |
5122 | bool dither) | |
5123 | { | |
5124 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; | |
5125 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
702e7a56 | 5126 | enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder; |
ee2b0b38 PZ |
5127 | uint32_t val; |
5128 | ||
702e7a56 | 5129 | val = I915_READ(PIPECONF(cpu_transcoder)); |
ee2b0b38 PZ |
5130 | |
5131 | val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK); | |
5132 | if (dither) | |
5133 | val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP); | |
5134 | ||
5135 | val &= ~PIPECONF_INTERLACE_MASK_HSW; | |
5136 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) | |
5137 | val |= PIPECONF_INTERLACED_ILK; | |
5138 | else | |
5139 | val |= PIPECONF_PROGRESSIVE; | |
5140 | ||
702e7a56 PZ |
5141 | I915_WRITE(PIPECONF(cpu_transcoder), val); |
5142 | POSTING_READ(PIPECONF(cpu_transcoder)); | |
ee2b0b38 PZ |
5143 | } |
5144 | ||
6591c6e4 PZ |
5145 | static bool ironlake_compute_clocks(struct drm_crtc *crtc, |
5146 | struct drm_display_mode *adjusted_mode, | |
5147 | intel_clock_t *clock, | |
5148 | bool *has_reduced_clock, | |
5149 | intel_clock_t *reduced_clock) | |
5150 | { | |
5151 | struct drm_device *dev = crtc->dev; | |
5152 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5153 | struct intel_encoder *intel_encoder; | |
5154 | int refclk; | |
d4906093 | 5155 | const intel_limit_t *limit; |
6591c6e4 | 5156 | bool ret, is_sdvo = false, is_tv = false, is_lvds = false; |
79e53945 | 5157 | |
6591c6e4 PZ |
5158 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) { |
5159 | switch (intel_encoder->type) { | |
79e53945 JB |
5160 | case INTEL_OUTPUT_LVDS: |
5161 | is_lvds = true; | |
5162 | break; | |
5163 | case INTEL_OUTPUT_SDVO: | |
7d57382e | 5164 | case INTEL_OUTPUT_HDMI: |
79e53945 | 5165 | is_sdvo = true; |
6591c6e4 | 5166 | if (intel_encoder->needs_tv_clock) |
e2f0ba97 | 5167 | is_tv = true; |
79e53945 | 5168 | break; |
79e53945 JB |
5169 | case INTEL_OUTPUT_TVOUT: |
5170 | is_tv = true; | |
5171 | break; | |
79e53945 JB |
5172 | } |
5173 | } | |
5174 | ||
d9d444cb | 5175 | refclk = ironlake_get_refclk(crtc); |
79e53945 | 5176 | |
d4906093 ML |
5177 | /* |
5178 | * Returns a set of divisors for the desired target clock with the given | |
5179 | * refclk, or FALSE. The returned values represent the clock equation: | |
5180 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. | |
5181 | */ | |
1b894b59 | 5182 | limit = intel_limit(crtc, refclk); |
6591c6e4 PZ |
5183 | ret = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL, |
5184 | clock); | |
5185 | if (!ret) | |
5186 | return false; | |
cda4b7d3 | 5187 | |
ddc9003c | 5188 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
cec2f356 SP |
5189 | /* |
5190 | * Ensure we match the reduced clock's P to the target clock. | |
5191 | * If the clocks don't match, we can't switch the display clock | |
5192 | * by using the FP0/FP1. In such case we will disable the LVDS | |
5193 | * downclock feature. | |
5194 | */ | |
6591c6e4 PZ |
5195 | *has_reduced_clock = limit->find_pll(limit, crtc, |
5196 | dev_priv->lvds_downclock, | |
5197 | refclk, | |
5198 | clock, | |
5199 | reduced_clock); | |
652c393a | 5200 | } |
61e9653f DV |
5201 | |
5202 | if (is_sdvo && is_tv) | |
6591c6e4 PZ |
5203 | i9xx_adjust_sdvo_tv_clock(adjusted_mode, clock); |
5204 | ||
5205 | return true; | |
5206 | } | |
5207 | ||
01a415fd DV |
5208 | static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev) |
5209 | { | |
5210 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5211 | uint32_t temp; | |
5212 | ||
5213 | temp = I915_READ(SOUTH_CHICKEN1); | |
5214 | if (temp & FDI_BC_BIFURCATION_SELECT) | |
5215 | return; | |
5216 | ||
5217 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE); | |
5218 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE); | |
5219 | ||
5220 | temp |= FDI_BC_BIFURCATION_SELECT; | |
5221 | DRM_DEBUG_KMS("enabling fdi C rx\n"); | |
5222 | I915_WRITE(SOUTH_CHICKEN1, temp); | |
5223 | POSTING_READ(SOUTH_CHICKEN1); | |
5224 | } | |
5225 | ||
5226 | static bool ironlake_check_fdi_lanes(struct intel_crtc *intel_crtc) | |
5227 | { | |
5228 | struct drm_device *dev = intel_crtc->base.dev; | |
5229 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5230 | struct intel_crtc *pipe_B_crtc = | |
5231 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]); | |
5232 | ||
5233 | DRM_DEBUG_KMS("checking fdi config on pipe %i, lanes %i\n", | |
5234 | intel_crtc->pipe, intel_crtc->fdi_lanes); | |
5235 | if (intel_crtc->fdi_lanes > 4) { | |
5236 | DRM_DEBUG_KMS("invalid fdi lane config on pipe %i: %i lanes\n", | |
5237 | intel_crtc->pipe, intel_crtc->fdi_lanes); | |
5238 | /* Clamp lanes to avoid programming the hw with bogus values. */ | |
5239 | intel_crtc->fdi_lanes = 4; | |
5240 | ||
5241 | return false; | |
5242 | } | |
5243 | ||
5244 | if (dev_priv->num_pipe == 2) | |
5245 | return true; | |
5246 | ||
5247 | switch (intel_crtc->pipe) { | |
5248 | case PIPE_A: | |
5249 | return true; | |
5250 | case PIPE_B: | |
5251 | if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled && | |
5252 | intel_crtc->fdi_lanes > 2) { | |
5253 | DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %i: %i lanes\n", | |
5254 | intel_crtc->pipe, intel_crtc->fdi_lanes); | |
5255 | /* Clamp lanes to avoid programming the hw with bogus values. */ | |
5256 | intel_crtc->fdi_lanes = 2; | |
5257 | ||
5258 | return false; | |
5259 | } | |
5260 | ||
5261 | if (intel_crtc->fdi_lanes > 2) | |
5262 | WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT); | |
5263 | else | |
5264 | cpt_enable_fdi_bc_bifurcation(dev); | |
5265 | ||
5266 | return true; | |
5267 | case PIPE_C: | |
5268 | if (!pipe_B_crtc->base.enabled || pipe_B_crtc->fdi_lanes <= 2) { | |
5269 | if (intel_crtc->fdi_lanes > 2) { | |
5270 | DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %i: %i lanes\n", | |
5271 | intel_crtc->pipe, intel_crtc->fdi_lanes); | |
5272 | /* Clamp lanes to avoid programming the hw with bogus values. */ | |
5273 | intel_crtc->fdi_lanes = 2; | |
5274 | ||
5275 | return false; | |
5276 | } | |
5277 | } else { | |
5278 | DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n"); | |
5279 | return false; | |
5280 | } | |
5281 | ||
5282 | cpt_enable_fdi_bc_bifurcation(dev); | |
5283 | ||
5284 | return true; | |
5285 | default: | |
5286 | BUG(); | |
5287 | } | |
5288 | } | |
5289 | ||
d4b1931c PZ |
5290 | int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp) |
5291 | { | |
5292 | /* | |
5293 | * Account for spread spectrum to avoid | |
5294 | * oversubscribing the link. Max center spread | |
5295 | * is 2.5%; use 5% for safety's sake. | |
5296 | */ | |
5297 | u32 bps = target_clock * bpp * 21 / 20; | |
5298 | return bps / (link_bw * 8) + 1; | |
5299 | } | |
5300 | ||
f48d8f23 PZ |
5301 | static void ironlake_set_m_n(struct drm_crtc *crtc, |
5302 | struct drm_display_mode *mode, | |
5303 | struct drm_display_mode *adjusted_mode) | |
79e53945 JB |
5304 | { |
5305 | struct drm_device *dev = crtc->dev; | |
5306 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5307 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
afe2fcf5 | 5308 | enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder; |
f48d8f23 | 5309 | struct intel_encoder *intel_encoder, *edp_encoder = NULL; |
e69d0bc1 | 5310 | struct intel_link_m_n m_n = {0}; |
f48d8f23 PZ |
5311 | int target_clock, pixel_multiplier, lane, link_bw; |
5312 | bool is_dp = false, is_cpu_edp = false; | |
79e53945 | 5313 | |
f48d8f23 PZ |
5314 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) { |
5315 | switch (intel_encoder->type) { | |
a4fc5ed6 KP |
5316 | case INTEL_OUTPUT_DISPLAYPORT: |
5317 | is_dp = true; | |
5318 | break; | |
32f9d658 | 5319 | case INTEL_OUTPUT_EDP: |
e3aef172 | 5320 | is_dp = true; |
f48d8f23 | 5321 | if (!intel_encoder_is_pch_edp(&intel_encoder->base)) |
e3aef172 | 5322 | is_cpu_edp = true; |
f48d8f23 | 5323 | edp_encoder = intel_encoder; |
32f9d658 | 5324 | break; |
79e53945 | 5325 | } |
79e53945 | 5326 | } |
61e9653f | 5327 | |
2c07245f | 5328 | /* FDI link */ |
8febb297 EA |
5329 | pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode); |
5330 | lane = 0; | |
5331 | /* CPU eDP doesn't require FDI link, so just set DP M/N | |
5332 | according to current link config */ | |
e3aef172 | 5333 | if (is_cpu_edp) { |
e3aef172 | 5334 | intel_edp_link_config(edp_encoder, &lane, &link_bw); |
8febb297 | 5335 | } else { |
8febb297 EA |
5336 | /* FDI is a binary signal running at ~2.7GHz, encoding |
5337 | * each output octet as 10 bits. The actual frequency | |
5338 | * is stored as a divider into a 100MHz clock, and the | |
5339 | * mode pixel clock is stored in units of 1KHz. | |
5340 | * Hence the bw of each lane in terms of the mode signal | |
5341 | * is: | |
5342 | */ | |
5343 | link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10; | |
5344 | } | |
58a27471 | 5345 | |
94bf2ced DV |
5346 | /* [e]DP over FDI requires target mode clock instead of link clock. */ |
5347 | if (edp_encoder) | |
5348 | target_clock = intel_edp_target_clock(edp_encoder, mode); | |
5349 | else if (is_dp) | |
5350 | target_clock = mode->clock; | |
5351 | else | |
5352 | target_clock = adjusted_mode->clock; | |
5353 | ||
d4b1931c PZ |
5354 | if (!lane) |
5355 | lane = ironlake_get_lanes_required(target_clock, link_bw, | |
5356 | intel_crtc->bpp); | |
2c07245f | 5357 | |
8febb297 EA |
5358 | intel_crtc->fdi_lanes = lane; |
5359 | ||
5360 | if (pixel_multiplier > 1) | |
5361 | link_bw *= pixel_multiplier; | |
e69d0bc1 | 5362 | intel_link_compute_m_n(intel_crtc->bpp, lane, target_clock, link_bw, &m_n); |
8febb297 | 5363 | |
afe2fcf5 PZ |
5364 | I915_WRITE(PIPE_DATA_M1(cpu_transcoder), TU_SIZE(m_n.tu) | m_n.gmch_m); |
5365 | I915_WRITE(PIPE_DATA_N1(cpu_transcoder), m_n.gmch_n); | |
5366 | I915_WRITE(PIPE_LINK_M1(cpu_transcoder), m_n.link_m); | |
5367 | I915_WRITE(PIPE_LINK_N1(cpu_transcoder), m_n.link_n); | |
f48d8f23 PZ |
5368 | } |
5369 | ||
de13a2e3 PZ |
5370 | static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc, |
5371 | struct drm_display_mode *adjusted_mode, | |
5372 | intel_clock_t *clock, u32 fp) | |
79e53945 | 5373 | { |
de13a2e3 | 5374 | struct drm_crtc *crtc = &intel_crtc->base; |
79e53945 JB |
5375 | struct drm_device *dev = crtc->dev; |
5376 | struct drm_i915_private *dev_priv = dev->dev_private; | |
de13a2e3 PZ |
5377 | struct intel_encoder *intel_encoder; |
5378 | uint32_t dpll; | |
5379 | int factor, pixel_multiplier, num_connectors = 0; | |
5380 | bool is_lvds = false, is_sdvo = false, is_tv = false; | |
5381 | bool is_dp = false, is_cpu_edp = false; | |
79e53945 | 5382 | |
de13a2e3 PZ |
5383 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) { |
5384 | switch (intel_encoder->type) { | |
79e53945 JB |
5385 | case INTEL_OUTPUT_LVDS: |
5386 | is_lvds = true; | |
5387 | break; | |
5388 | case INTEL_OUTPUT_SDVO: | |
7d57382e | 5389 | case INTEL_OUTPUT_HDMI: |
79e53945 | 5390 | is_sdvo = true; |
de13a2e3 | 5391 | if (intel_encoder->needs_tv_clock) |
e2f0ba97 | 5392 | is_tv = true; |
79e53945 | 5393 | break; |
79e53945 JB |
5394 | case INTEL_OUTPUT_TVOUT: |
5395 | is_tv = true; | |
5396 | break; | |
a4fc5ed6 KP |
5397 | case INTEL_OUTPUT_DISPLAYPORT: |
5398 | is_dp = true; | |
5399 | break; | |
32f9d658 | 5400 | case INTEL_OUTPUT_EDP: |
e3aef172 | 5401 | is_dp = true; |
de13a2e3 | 5402 | if (!intel_encoder_is_pch_edp(&intel_encoder->base)) |
e3aef172 | 5403 | is_cpu_edp = true; |
32f9d658 | 5404 | break; |
79e53945 | 5405 | } |
43565a06 | 5406 | |
c751ce4f | 5407 | num_connectors++; |
79e53945 | 5408 | } |
79e53945 | 5409 | |
c1858123 | 5410 | /* Enable autotuning of the PLL clock (if permissible) */ |
8febb297 EA |
5411 | factor = 21; |
5412 | if (is_lvds) { | |
5413 | if ((intel_panel_use_ssc(dev_priv) && | |
5414 | dev_priv->lvds_ssc_freq == 100) || | |
1974cad0 | 5415 | intel_is_dual_link_lvds(dev)) |
8febb297 EA |
5416 | factor = 25; |
5417 | } else if (is_sdvo && is_tv) | |
5418 | factor = 20; | |
c1858123 | 5419 | |
de13a2e3 | 5420 | if (clock->m < factor * clock->n) |
8febb297 | 5421 | fp |= FP_CB_TUNE; |
2c07245f | 5422 | |
5eddb70b | 5423 | dpll = 0; |
2c07245f | 5424 | |
a07d6787 EA |
5425 | if (is_lvds) |
5426 | dpll |= DPLLB_MODE_LVDS; | |
5427 | else | |
5428 | dpll |= DPLLB_MODE_DAC_SERIAL; | |
5429 | if (is_sdvo) { | |
de13a2e3 | 5430 | pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode); |
a07d6787 EA |
5431 | if (pixel_multiplier > 1) { |
5432 | dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT; | |
79e53945 | 5433 | } |
a07d6787 EA |
5434 | dpll |= DPLL_DVO_HIGH_SPEED; |
5435 | } | |
e3aef172 | 5436 | if (is_dp && !is_cpu_edp) |
a07d6787 | 5437 | dpll |= DPLL_DVO_HIGH_SPEED; |
79e53945 | 5438 | |
a07d6787 | 5439 | /* compute bitmask from p1 value */ |
de13a2e3 | 5440 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
a07d6787 | 5441 | /* also FPA1 */ |
de13a2e3 | 5442 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
a07d6787 | 5443 | |
de13a2e3 | 5444 | switch (clock->p2) { |
a07d6787 EA |
5445 | case 5: |
5446 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; | |
5447 | break; | |
5448 | case 7: | |
5449 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; | |
5450 | break; | |
5451 | case 10: | |
5452 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; | |
5453 | break; | |
5454 | case 14: | |
5455 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; | |
5456 | break; | |
79e53945 JB |
5457 | } |
5458 | ||
43565a06 KH |
5459 | if (is_sdvo && is_tv) |
5460 | dpll |= PLL_REF_INPUT_TVCLKINBC; | |
5461 | else if (is_tv) | |
79e53945 | 5462 | /* XXX: just matching BIOS for now */ |
43565a06 | 5463 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ |
79e53945 | 5464 | dpll |= 3; |
a7615030 | 5465 | else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
43565a06 | 5466 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
79e53945 JB |
5467 | else |
5468 | dpll |= PLL_REF_INPUT_DREFCLK; | |
5469 | ||
de13a2e3 PZ |
5470 | return dpll; |
5471 | } | |
5472 | ||
5473 | static int ironlake_crtc_mode_set(struct drm_crtc *crtc, | |
5474 | struct drm_display_mode *mode, | |
5475 | struct drm_display_mode *adjusted_mode, | |
5476 | int x, int y, | |
5477 | struct drm_framebuffer *fb) | |
5478 | { | |
5479 | struct drm_device *dev = crtc->dev; | |
5480 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5481 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
5482 | int pipe = intel_crtc->pipe; | |
5483 | int plane = intel_crtc->plane; | |
5484 | int num_connectors = 0; | |
5485 | intel_clock_t clock, reduced_clock; | |
5486 | u32 dpll, fp = 0, fp2 = 0; | |
e2f12b07 PZ |
5487 | bool ok, has_reduced_clock = false; |
5488 | bool is_lvds = false, is_dp = false, is_cpu_edp = false; | |
de13a2e3 | 5489 | struct intel_encoder *encoder; |
de13a2e3 | 5490 | int ret; |
01a415fd | 5491 | bool dither, fdi_config_ok; |
de13a2e3 PZ |
5492 | |
5493 | for_each_encoder_on_crtc(dev, crtc, encoder) { | |
5494 | switch (encoder->type) { | |
5495 | case INTEL_OUTPUT_LVDS: | |
5496 | is_lvds = true; | |
5497 | break; | |
de13a2e3 PZ |
5498 | case INTEL_OUTPUT_DISPLAYPORT: |
5499 | is_dp = true; | |
5500 | break; | |
5501 | case INTEL_OUTPUT_EDP: | |
5502 | is_dp = true; | |
e2f12b07 | 5503 | if (!intel_encoder_is_pch_edp(&encoder->base)) |
de13a2e3 PZ |
5504 | is_cpu_edp = true; |
5505 | break; | |
5506 | } | |
5507 | ||
5508 | num_connectors++; | |
a07d6787 | 5509 | } |
79e53945 | 5510 | |
5dc5298b PZ |
5511 | WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)), |
5512 | "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev)); | |
a07d6787 | 5513 | |
de13a2e3 PZ |
5514 | ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock, |
5515 | &has_reduced_clock, &reduced_clock); | |
5516 | if (!ok) { | |
5517 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); | |
5518 | return -EINVAL; | |
79e53945 JB |
5519 | } |
5520 | ||
de13a2e3 PZ |
5521 | /* Ensure that the cursor is valid for the new mode before changing... */ |
5522 | intel_crtc_update_cursor(crtc, true); | |
5523 | ||
5524 | /* determine panel color depth */ | |
c8241969 JN |
5525 | dither = intel_choose_pipe_bpp_dither(crtc, fb, &intel_crtc->bpp, |
5526 | adjusted_mode); | |
de13a2e3 PZ |
5527 | if (is_lvds && dev_priv->lvds_dither) |
5528 | dither = true; | |
5529 | ||
5530 | fp = clock.n << 16 | clock.m1 << 8 | clock.m2; | |
5531 | if (has_reduced_clock) | |
5532 | fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 | | |
5533 | reduced_clock.m2; | |
5534 | ||
5535 | dpll = ironlake_compute_dpll(intel_crtc, adjusted_mode, &clock, fp); | |
79e53945 | 5536 | |
f7cb34d4 | 5537 | DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe); |
79e53945 JB |
5538 | drm_mode_debug_printmodeline(mode); |
5539 | ||
5dc5298b PZ |
5540 | /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */ |
5541 | if (!is_cpu_edp) { | |
ee7b9f93 | 5542 | struct intel_pch_pll *pll; |
4b645f14 | 5543 | |
ee7b9f93 JB |
5544 | pll = intel_get_pch_pll(intel_crtc, dpll, fp); |
5545 | if (pll == NULL) { | |
5546 | DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n", | |
5547 | pipe); | |
4b645f14 JB |
5548 | return -EINVAL; |
5549 | } | |
ee7b9f93 JB |
5550 | } else |
5551 | intel_put_pch_pll(intel_crtc); | |
79e53945 | 5552 | |
2f0c2ad1 | 5553 | if (is_dp && !is_cpu_edp) |
a4fc5ed6 | 5554 | intel_dp_set_m_n(crtc, mode, adjusted_mode); |
79e53945 | 5555 | |
dafd226c DV |
5556 | for_each_encoder_on_crtc(dev, crtc, encoder) |
5557 | if (encoder->pre_pll_enable) | |
5558 | encoder->pre_pll_enable(encoder); | |
79e53945 | 5559 | |
ee7b9f93 JB |
5560 | if (intel_crtc->pch_pll) { |
5561 | I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll); | |
5eddb70b | 5562 | |
32f9d658 | 5563 | /* Wait for the clocks to stabilize. */ |
ee7b9f93 | 5564 | POSTING_READ(intel_crtc->pch_pll->pll_reg); |
32f9d658 ZW |
5565 | udelay(150); |
5566 | ||
8febb297 EA |
5567 | /* The pixel multiplier can only be updated once the |
5568 | * DPLL is enabled and the clocks are stable. | |
5569 | * | |
5570 | * So write it again. | |
5571 | */ | |
ee7b9f93 | 5572 | I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll); |
79e53945 | 5573 | } |
79e53945 | 5574 | |
5eddb70b | 5575 | intel_crtc->lowfreq_avail = false; |
ee7b9f93 | 5576 | if (intel_crtc->pch_pll) { |
4b645f14 | 5577 | if (is_lvds && has_reduced_clock && i915_powersave) { |
ee7b9f93 | 5578 | I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2); |
4b645f14 | 5579 | intel_crtc->lowfreq_avail = true; |
4b645f14 | 5580 | } else { |
ee7b9f93 | 5581 | I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp); |
652c393a JB |
5582 | } |
5583 | } | |
5584 | ||
b0e77b9c | 5585 | intel_set_pipe_timings(intel_crtc, mode, adjusted_mode); |
5eddb70b | 5586 | |
01a415fd DV |
5587 | /* Note, this also computes intel_crtc->fdi_lanes which is used below in |
5588 | * ironlake_check_fdi_lanes. */ | |
f48d8f23 | 5589 | ironlake_set_m_n(crtc, mode, adjusted_mode); |
2c07245f | 5590 | |
01a415fd | 5591 | fdi_config_ok = ironlake_check_fdi_lanes(intel_crtc); |
2c07245f | 5592 | |
c8203565 | 5593 | ironlake_set_pipeconf(crtc, adjusted_mode, dither); |
79e53945 | 5594 | |
9d0498a2 | 5595 | intel_wait_for_vblank(dev, pipe); |
79e53945 | 5596 | |
a1f9e77e PZ |
5597 | /* Set up the display plane register */ |
5598 | I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE); | |
b24e7179 | 5599 | POSTING_READ(DSPCNTR(plane)); |
79e53945 | 5600 | |
94352cf9 | 5601 | ret = intel_pipe_set_base(crtc, x, y, fb); |
7662c8bd SL |
5602 | |
5603 | intel_update_watermarks(dev); | |
5604 | ||
1f8eeabf ED |
5605 | intel_update_linetime_watermarks(dev, pipe, adjusted_mode); |
5606 | ||
01a415fd | 5607 | return fdi_config_ok ? ret : -EINVAL; |
79e53945 JB |
5608 | } |
5609 | ||
09b4ddf9 PZ |
5610 | static int haswell_crtc_mode_set(struct drm_crtc *crtc, |
5611 | struct drm_display_mode *mode, | |
5612 | struct drm_display_mode *adjusted_mode, | |
5613 | int x, int y, | |
5614 | struct drm_framebuffer *fb) | |
5615 | { | |
5616 | struct drm_device *dev = crtc->dev; | |
5617 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5618 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
5619 | int pipe = intel_crtc->pipe; | |
5620 | int plane = intel_crtc->plane; | |
5621 | int num_connectors = 0; | |
ed7ef439 | 5622 | bool is_dp = false, is_cpu_edp = false; |
09b4ddf9 | 5623 | struct intel_encoder *encoder; |
09b4ddf9 PZ |
5624 | int ret; |
5625 | bool dither; | |
5626 | ||
5627 | for_each_encoder_on_crtc(dev, crtc, encoder) { | |
5628 | switch (encoder->type) { | |
09b4ddf9 PZ |
5629 | case INTEL_OUTPUT_DISPLAYPORT: |
5630 | is_dp = true; | |
5631 | break; | |
5632 | case INTEL_OUTPUT_EDP: | |
5633 | is_dp = true; | |
5634 | if (!intel_encoder_is_pch_edp(&encoder->base)) | |
5635 | is_cpu_edp = true; | |
5636 | break; | |
5637 | } | |
5638 | ||
5639 | num_connectors++; | |
5640 | } | |
5641 | ||
5dc5298b PZ |
5642 | /* We are not sure yet this won't happen. */ |
5643 | WARN(!HAS_PCH_LPT(dev), "Unexpected PCH type %d\n", | |
5644 | INTEL_PCH_TYPE(dev)); | |
5645 | ||
5646 | WARN(num_connectors != 1, "%d connectors attached to pipe %c\n", | |
5647 | num_connectors, pipe_name(pipe)); | |
5648 | ||
702e7a56 | 5649 | WARN_ON(I915_READ(PIPECONF(intel_crtc->cpu_transcoder)) & |
1ce42920 PZ |
5650 | (PIPECONF_ENABLE | I965_PIPECONF_ACTIVE)); |
5651 | ||
5652 | WARN_ON(I915_READ(DSPCNTR(plane)) & DISPLAY_PLANE_ENABLE); | |
5653 | ||
6441ab5f PZ |
5654 | if (!intel_ddi_pll_mode_set(crtc, adjusted_mode->clock)) |
5655 | return -EINVAL; | |
5656 | ||
09b4ddf9 PZ |
5657 | /* Ensure that the cursor is valid for the new mode before changing... */ |
5658 | intel_crtc_update_cursor(crtc, true); | |
5659 | ||
5660 | /* determine panel color depth */ | |
c8241969 JN |
5661 | dither = intel_choose_pipe_bpp_dither(crtc, fb, &intel_crtc->bpp, |
5662 | adjusted_mode); | |
09b4ddf9 | 5663 | |
09b4ddf9 PZ |
5664 | DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe); |
5665 | drm_mode_debug_printmodeline(mode); | |
5666 | ||
ed7ef439 | 5667 | if (is_dp && !is_cpu_edp) |
09b4ddf9 | 5668 | intel_dp_set_m_n(crtc, mode, adjusted_mode); |
09b4ddf9 PZ |
5669 | |
5670 | intel_crtc->lowfreq_avail = false; | |
09b4ddf9 PZ |
5671 | |
5672 | intel_set_pipe_timings(intel_crtc, mode, adjusted_mode); | |
5673 | ||
1eb8dfec PZ |
5674 | if (!is_dp || is_cpu_edp) |
5675 | ironlake_set_m_n(crtc, mode, adjusted_mode); | |
09b4ddf9 | 5676 | |
ee2b0b38 | 5677 | haswell_set_pipeconf(crtc, adjusted_mode, dither); |
09b4ddf9 | 5678 | |
09b4ddf9 PZ |
5679 | /* Set up the display plane register */ |
5680 | I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE); | |
5681 | POSTING_READ(DSPCNTR(plane)); | |
5682 | ||
5683 | ret = intel_pipe_set_base(crtc, x, y, fb); | |
5684 | ||
5685 | intel_update_watermarks(dev); | |
5686 | ||
5687 | intel_update_linetime_watermarks(dev, pipe, adjusted_mode); | |
5688 | ||
1f803ee5 | 5689 | return ret; |
79e53945 JB |
5690 | } |
5691 | ||
f564048e EA |
5692 | static int intel_crtc_mode_set(struct drm_crtc *crtc, |
5693 | struct drm_display_mode *mode, | |
5694 | struct drm_display_mode *adjusted_mode, | |
5695 | int x, int y, | |
94352cf9 | 5696 | struct drm_framebuffer *fb) |
f564048e EA |
5697 | { |
5698 | struct drm_device *dev = crtc->dev; | |
5699 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9256aa19 DV |
5700 | struct drm_encoder_helper_funcs *encoder_funcs; |
5701 | struct intel_encoder *encoder; | |
0b701d27 EA |
5702 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
5703 | int pipe = intel_crtc->pipe; | |
f564048e EA |
5704 | int ret; |
5705 | ||
cc464b2a PZ |
5706 | if (IS_HASWELL(dev) && intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) |
5707 | intel_crtc->cpu_transcoder = TRANSCODER_EDP; | |
5708 | else | |
5709 | intel_crtc->cpu_transcoder = pipe; | |
5710 | ||
0b701d27 | 5711 | drm_vblank_pre_modeset(dev, pipe); |
7662c8bd | 5712 | |
f564048e | 5713 | ret = dev_priv->display.crtc_mode_set(crtc, mode, adjusted_mode, |
94352cf9 | 5714 | x, y, fb); |
79e53945 | 5715 | drm_vblank_post_modeset(dev, pipe); |
5c3b82e2 | 5716 | |
9256aa19 DV |
5717 | if (ret != 0) |
5718 | return ret; | |
5719 | ||
5720 | for_each_encoder_on_crtc(dev, crtc, encoder) { | |
5721 | DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n", | |
5722 | encoder->base.base.id, | |
5723 | drm_get_encoder_name(&encoder->base), | |
5724 | mode->base.id, mode->name); | |
5725 | encoder_funcs = encoder->base.helper_private; | |
5726 | encoder_funcs->mode_set(&encoder->base, mode, adjusted_mode); | |
5727 | } | |
5728 | ||
5729 | return 0; | |
79e53945 JB |
5730 | } |
5731 | ||
3a9627f4 WF |
5732 | static bool intel_eld_uptodate(struct drm_connector *connector, |
5733 | int reg_eldv, uint32_t bits_eldv, | |
5734 | int reg_elda, uint32_t bits_elda, | |
5735 | int reg_edid) | |
5736 | { | |
5737 | struct drm_i915_private *dev_priv = connector->dev->dev_private; | |
5738 | uint8_t *eld = connector->eld; | |
5739 | uint32_t i; | |
5740 | ||
5741 | i = I915_READ(reg_eldv); | |
5742 | i &= bits_eldv; | |
5743 | ||
5744 | if (!eld[0]) | |
5745 | return !i; | |
5746 | ||
5747 | if (!i) | |
5748 | return false; | |
5749 | ||
5750 | i = I915_READ(reg_elda); | |
5751 | i &= ~bits_elda; | |
5752 | I915_WRITE(reg_elda, i); | |
5753 | ||
5754 | for (i = 0; i < eld[2]; i++) | |
5755 | if (I915_READ(reg_edid) != *((uint32_t *)eld + i)) | |
5756 | return false; | |
5757 | ||
5758 | return true; | |
5759 | } | |
5760 | ||
e0dac65e WF |
5761 | static void g4x_write_eld(struct drm_connector *connector, |
5762 | struct drm_crtc *crtc) | |
5763 | { | |
5764 | struct drm_i915_private *dev_priv = connector->dev->dev_private; | |
5765 | uint8_t *eld = connector->eld; | |
5766 | uint32_t eldv; | |
5767 | uint32_t len; | |
5768 | uint32_t i; | |
5769 | ||
5770 | i = I915_READ(G4X_AUD_VID_DID); | |
5771 | ||
5772 | if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL) | |
5773 | eldv = G4X_ELDV_DEVCL_DEVBLC; | |
5774 | else | |
5775 | eldv = G4X_ELDV_DEVCTG; | |
5776 | ||
3a9627f4 WF |
5777 | if (intel_eld_uptodate(connector, |
5778 | G4X_AUD_CNTL_ST, eldv, | |
5779 | G4X_AUD_CNTL_ST, G4X_ELD_ADDR, | |
5780 | G4X_HDMIW_HDMIEDID)) | |
5781 | return; | |
5782 | ||
e0dac65e WF |
5783 | i = I915_READ(G4X_AUD_CNTL_ST); |
5784 | i &= ~(eldv | G4X_ELD_ADDR); | |
5785 | len = (i >> 9) & 0x1f; /* ELD buffer size */ | |
5786 | I915_WRITE(G4X_AUD_CNTL_ST, i); | |
5787 | ||
5788 | if (!eld[0]) | |
5789 | return; | |
5790 | ||
5791 | len = min_t(uint8_t, eld[2], len); | |
5792 | DRM_DEBUG_DRIVER("ELD size %d\n", len); | |
5793 | for (i = 0; i < len; i++) | |
5794 | I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i)); | |
5795 | ||
5796 | i = I915_READ(G4X_AUD_CNTL_ST); | |
5797 | i |= eldv; | |
5798 | I915_WRITE(G4X_AUD_CNTL_ST, i); | |
5799 | } | |
5800 | ||
83358c85 WX |
5801 | static void haswell_write_eld(struct drm_connector *connector, |
5802 | struct drm_crtc *crtc) | |
5803 | { | |
5804 | struct drm_i915_private *dev_priv = connector->dev->dev_private; | |
5805 | uint8_t *eld = connector->eld; | |
5806 | struct drm_device *dev = crtc->dev; | |
7b9f35a6 | 5807 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
83358c85 WX |
5808 | uint32_t eldv; |
5809 | uint32_t i; | |
5810 | int len; | |
5811 | int pipe = to_intel_crtc(crtc)->pipe; | |
5812 | int tmp; | |
5813 | ||
5814 | int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe); | |
5815 | int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe); | |
5816 | int aud_config = HSW_AUD_CFG(pipe); | |
5817 | int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD; | |
5818 | ||
5819 | ||
5820 | DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n"); | |
5821 | ||
5822 | /* Audio output enable */ | |
5823 | DRM_DEBUG_DRIVER("HDMI audio: enable codec\n"); | |
5824 | tmp = I915_READ(aud_cntrl_st2); | |
5825 | tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4)); | |
5826 | I915_WRITE(aud_cntrl_st2, tmp); | |
5827 | ||
5828 | /* Wait for 1 vertical blank */ | |
5829 | intel_wait_for_vblank(dev, pipe); | |
5830 | ||
5831 | /* Set ELD valid state */ | |
5832 | tmp = I915_READ(aud_cntrl_st2); | |
5833 | DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%8x\n", tmp); | |
5834 | tmp |= (AUDIO_ELD_VALID_A << (pipe * 4)); | |
5835 | I915_WRITE(aud_cntrl_st2, tmp); | |
5836 | tmp = I915_READ(aud_cntrl_st2); | |
5837 | DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%8x\n", tmp); | |
5838 | ||
5839 | /* Enable HDMI mode */ | |
5840 | tmp = I915_READ(aud_config); | |
5841 | DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%8x\n", tmp); | |
5842 | /* clear N_programing_enable and N_value_index */ | |
5843 | tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE); | |
5844 | I915_WRITE(aud_config, tmp); | |
5845 | ||
5846 | DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe)); | |
5847 | ||
5848 | eldv = AUDIO_ELD_VALID_A << (pipe * 4); | |
7b9f35a6 | 5849 | intel_crtc->eld_vld = true; |
83358c85 WX |
5850 | |
5851 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) { | |
5852 | DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n"); | |
5853 | eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */ | |
5854 | I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */ | |
5855 | } else | |
5856 | I915_WRITE(aud_config, 0); | |
5857 | ||
5858 | if (intel_eld_uptodate(connector, | |
5859 | aud_cntrl_st2, eldv, | |
5860 | aud_cntl_st, IBX_ELD_ADDRESS, | |
5861 | hdmiw_hdmiedid)) | |
5862 | return; | |
5863 | ||
5864 | i = I915_READ(aud_cntrl_st2); | |
5865 | i &= ~eldv; | |
5866 | I915_WRITE(aud_cntrl_st2, i); | |
5867 | ||
5868 | if (!eld[0]) | |
5869 | return; | |
5870 | ||
5871 | i = I915_READ(aud_cntl_st); | |
5872 | i &= ~IBX_ELD_ADDRESS; | |
5873 | I915_WRITE(aud_cntl_st, i); | |
5874 | i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */ | |
5875 | DRM_DEBUG_DRIVER("port num:%d\n", i); | |
5876 | ||
5877 | len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */ | |
5878 | DRM_DEBUG_DRIVER("ELD size %d\n", len); | |
5879 | for (i = 0; i < len; i++) | |
5880 | I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i)); | |
5881 | ||
5882 | i = I915_READ(aud_cntrl_st2); | |
5883 | i |= eldv; | |
5884 | I915_WRITE(aud_cntrl_st2, i); | |
5885 | ||
5886 | } | |
5887 | ||
e0dac65e WF |
5888 | static void ironlake_write_eld(struct drm_connector *connector, |
5889 | struct drm_crtc *crtc) | |
5890 | { | |
5891 | struct drm_i915_private *dev_priv = connector->dev->dev_private; | |
5892 | uint8_t *eld = connector->eld; | |
5893 | uint32_t eldv; | |
5894 | uint32_t i; | |
5895 | int len; | |
5896 | int hdmiw_hdmiedid; | |
b6daa025 | 5897 | int aud_config; |
e0dac65e WF |
5898 | int aud_cntl_st; |
5899 | int aud_cntrl_st2; | |
9b138a83 | 5900 | int pipe = to_intel_crtc(crtc)->pipe; |
e0dac65e | 5901 | |
b3f33cbf | 5902 | if (HAS_PCH_IBX(connector->dev)) { |
9b138a83 WX |
5903 | hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe); |
5904 | aud_config = IBX_AUD_CFG(pipe); | |
5905 | aud_cntl_st = IBX_AUD_CNTL_ST(pipe); | |
1202b4c6 | 5906 | aud_cntrl_st2 = IBX_AUD_CNTL_ST2; |
e0dac65e | 5907 | } else { |
9b138a83 WX |
5908 | hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe); |
5909 | aud_config = CPT_AUD_CFG(pipe); | |
5910 | aud_cntl_st = CPT_AUD_CNTL_ST(pipe); | |
1202b4c6 | 5911 | aud_cntrl_st2 = CPT_AUD_CNTRL_ST2; |
e0dac65e WF |
5912 | } |
5913 | ||
9b138a83 | 5914 | DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe)); |
e0dac65e WF |
5915 | |
5916 | i = I915_READ(aud_cntl_st); | |
9b138a83 | 5917 | i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */ |
e0dac65e WF |
5918 | if (!i) { |
5919 | DRM_DEBUG_DRIVER("Audio directed to unknown port\n"); | |
5920 | /* operate blindly on all ports */ | |
1202b4c6 WF |
5921 | eldv = IBX_ELD_VALIDB; |
5922 | eldv |= IBX_ELD_VALIDB << 4; | |
5923 | eldv |= IBX_ELD_VALIDB << 8; | |
e0dac65e WF |
5924 | } else { |
5925 | DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i); | |
1202b4c6 | 5926 | eldv = IBX_ELD_VALIDB << ((i - 1) * 4); |
e0dac65e WF |
5927 | } |
5928 | ||
3a9627f4 WF |
5929 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) { |
5930 | DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n"); | |
5931 | eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */ | |
b6daa025 WF |
5932 | I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */ |
5933 | } else | |
5934 | I915_WRITE(aud_config, 0); | |
e0dac65e | 5935 | |
3a9627f4 WF |
5936 | if (intel_eld_uptodate(connector, |
5937 | aud_cntrl_st2, eldv, | |
5938 | aud_cntl_st, IBX_ELD_ADDRESS, | |
5939 | hdmiw_hdmiedid)) | |
5940 | return; | |
5941 | ||
e0dac65e WF |
5942 | i = I915_READ(aud_cntrl_st2); |
5943 | i &= ~eldv; | |
5944 | I915_WRITE(aud_cntrl_st2, i); | |
5945 | ||
5946 | if (!eld[0]) | |
5947 | return; | |
5948 | ||
e0dac65e | 5949 | i = I915_READ(aud_cntl_st); |
1202b4c6 | 5950 | i &= ~IBX_ELD_ADDRESS; |
e0dac65e WF |
5951 | I915_WRITE(aud_cntl_st, i); |
5952 | ||
5953 | len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */ | |
5954 | DRM_DEBUG_DRIVER("ELD size %d\n", len); | |
5955 | for (i = 0; i < len; i++) | |
5956 | I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i)); | |
5957 | ||
5958 | i = I915_READ(aud_cntrl_st2); | |
5959 | i |= eldv; | |
5960 | I915_WRITE(aud_cntrl_st2, i); | |
5961 | } | |
5962 | ||
5963 | void intel_write_eld(struct drm_encoder *encoder, | |
5964 | struct drm_display_mode *mode) | |
5965 | { | |
5966 | struct drm_crtc *crtc = encoder->crtc; | |
5967 | struct drm_connector *connector; | |
5968 | struct drm_device *dev = encoder->dev; | |
5969 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5970 | ||
5971 | connector = drm_select_eld(encoder, mode); | |
5972 | if (!connector) | |
5973 | return; | |
5974 | ||
5975 | DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", | |
5976 | connector->base.id, | |
5977 | drm_get_connector_name(connector), | |
5978 | connector->encoder->base.id, | |
5979 | drm_get_encoder_name(connector->encoder)); | |
5980 | ||
5981 | connector->eld[6] = drm_av_sync_delay(connector, mode) / 2; | |
5982 | ||
5983 | if (dev_priv->display.write_eld) | |
5984 | dev_priv->display.write_eld(connector, crtc); | |
5985 | } | |
5986 | ||
79e53945 JB |
5987 | /** Loads the palette/gamma unit for the CRTC with the prepared values */ |
5988 | void intel_crtc_load_lut(struct drm_crtc *crtc) | |
5989 | { | |
5990 | struct drm_device *dev = crtc->dev; | |
5991 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5992 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
9db4a9c7 | 5993 | int palreg = PALETTE(intel_crtc->pipe); |
79e53945 JB |
5994 | int i; |
5995 | ||
5996 | /* The clocks have to be on to load the palette. */ | |
aed3f09d | 5997 | if (!crtc->enabled || !intel_crtc->active) |
79e53945 JB |
5998 | return; |
5999 | ||
f2b115e6 | 6000 | /* use legacy palette for Ironlake */ |
bad720ff | 6001 | if (HAS_PCH_SPLIT(dev)) |
9db4a9c7 | 6002 | palreg = LGC_PALETTE(intel_crtc->pipe); |
2c07245f | 6003 | |
79e53945 JB |
6004 | for (i = 0; i < 256; i++) { |
6005 | I915_WRITE(palreg + 4 * i, | |
6006 | (intel_crtc->lut_r[i] << 16) | | |
6007 | (intel_crtc->lut_g[i] << 8) | | |
6008 | intel_crtc->lut_b[i]); | |
6009 | } | |
6010 | } | |
6011 | ||
560b85bb CW |
6012 | static void i845_update_cursor(struct drm_crtc *crtc, u32 base) |
6013 | { | |
6014 | struct drm_device *dev = crtc->dev; | |
6015 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6016 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6017 | bool visible = base != 0; | |
6018 | u32 cntl; | |
6019 | ||
6020 | if (intel_crtc->cursor_visible == visible) | |
6021 | return; | |
6022 | ||
9db4a9c7 | 6023 | cntl = I915_READ(_CURACNTR); |
560b85bb CW |
6024 | if (visible) { |
6025 | /* On these chipsets we can only modify the base whilst | |
6026 | * the cursor is disabled. | |
6027 | */ | |
9db4a9c7 | 6028 | I915_WRITE(_CURABASE, base); |
560b85bb CW |
6029 | |
6030 | cntl &= ~(CURSOR_FORMAT_MASK); | |
6031 | /* XXX width must be 64, stride 256 => 0x00 << 28 */ | |
6032 | cntl |= CURSOR_ENABLE | | |
6033 | CURSOR_GAMMA_ENABLE | | |
6034 | CURSOR_FORMAT_ARGB; | |
6035 | } else | |
6036 | cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE); | |
9db4a9c7 | 6037 | I915_WRITE(_CURACNTR, cntl); |
560b85bb CW |
6038 | |
6039 | intel_crtc->cursor_visible = visible; | |
6040 | } | |
6041 | ||
6042 | static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base) | |
6043 | { | |
6044 | struct drm_device *dev = crtc->dev; | |
6045 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6046 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6047 | int pipe = intel_crtc->pipe; | |
6048 | bool visible = base != 0; | |
6049 | ||
6050 | if (intel_crtc->cursor_visible != visible) { | |
548f245b | 6051 | uint32_t cntl = I915_READ(CURCNTR(pipe)); |
560b85bb CW |
6052 | if (base) { |
6053 | cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT); | |
6054 | cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE; | |
6055 | cntl |= pipe << 28; /* Connect to correct pipe */ | |
6056 | } else { | |
6057 | cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE); | |
6058 | cntl |= CURSOR_MODE_DISABLE; | |
6059 | } | |
9db4a9c7 | 6060 | I915_WRITE(CURCNTR(pipe), cntl); |
560b85bb CW |
6061 | |
6062 | intel_crtc->cursor_visible = visible; | |
6063 | } | |
6064 | /* and commit changes on next vblank */ | |
9db4a9c7 | 6065 | I915_WRITE(CURBASE(pipe), base); |
560b85bb CW |
6066 | } |
6067 | ||
65a21cd6 JB |
6068 | static void ivb_update_cursor(struct drm_crtc *crtc, u32 base) |
6069 | { | |
6070 | struct drm_device *dev = crtc->dev; | |
6071 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6072 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6073 | int pipe = intel_crtc->pipe; | |
6074 | bool visible = base != 0; | |
6075 | ||
6076 | if (intel_crtc->cursor_visible != visible) { | |
6077 | uint32_t cntl = I915_READ(CURCNTR_IVB(pipe)); | |
6078 | if (base) { | |
6079 | cntl &= ~CURSOR_MODE; | |
6080 | cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE; | |
6081 | } else { | |
6082 | cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE); | |
6083 | cntl |= CURSOR_MODE_DISABLE; | |
6084 | } | |
6085 | I915_WRITE(CURCNTR_IVB(pipe), cntl); | |
6086 | ||
6087 | intel_crtc->cursor_visible = visible; | |
6088 | } | |
6089 | /* and commit changes on next vblank */ | |
6090 | I915_WRITE(CURBASE_IVB(pipe), base); | |
6091 | } | |
6092 | ||
cda4b7d3 | 6093 | /* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */ |
6b383a7f CW |
6094 | static void intel_crtc_update_cursor(struct drm_crtc *crtc, |
6095 | bool on) | |
cda4b7d3 CW |
6096 | { |
6097 | struct drm_device *dev = crtc->dev; | |
6098 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6099 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6100 | int pipe = intel_crtc->pipe; | |
6101 | int x = intel_crtc->cursor_x; | |
6102 | int y = intel_crtc->cursor_y; | |
560b85bb | 6103 | u32 base, pos; |
cda4b7d3 CW |
6104 | bool visible; |
6105 | ||
6106 | pos = 0; | |
6107 | ||
6b383a7f | 6108 | if (on && crtc->enabled && crtc->fb) { |
cda4b7d3 CW |
6109 | base = intel_crtc->cursor_addr; |
6110 | if (x > (int) crtc->fb->width) | |
6111 | base = 0; | |
6112 | ||
6113 | if (y > (int) crtc->fb->height) | |
6114 | base = 0; | |
6115 | } else | |
6116 | base = 0; | |
6117 | ||
6118 | if (x < 0) { | |
6119 | if (x + intel_crtc->cursor_width < 0) | |
6120 | base = 0; | |
6121 | ||
6122 | pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT; | |
6123 | x = -x; | |
6124 | } | |
6125 | pos |= x << CURSOR_X_SHIFT; | |
6126 | ||
6127 | if (y < 0) { | |
6128 | if (y + intel_crtc->cursor_height < 0) | |
6129 | base = 0; | |
6130 | ||
6131 | pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT; | |
6132 | y = -y; | |
6133 | } | |
6134 | pos |= y << CURSOR_Y_SHIFT; | |
6135 | ||
6136 | visible = base != 0; | |
560b85bb | 6137 | if (!visible && !intel_crtc->cursor_visible) |
cda4b7d3 CW |
6138 | return; |
6139 | ||
0cd83aa9 | 6140 | if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) { |
65a21cd6 JB |
6141 | I915_WRITE(CURPOS_IVB(pipe), pos); |
6142 | ivb_update_cursor(crtc, base); | |
6143 | } else { | |
6144 | I915_WRITE(CURPOS(pipe), pos); | |
6145 | if (IS_845G(dev) || IS_I865G(dev)) | |
6146 | i845_update_cursor(crtc, base); | |
6147 | else | |
6148 | i9xx_update_cursor(crtc, base); | |
6149 | } | |
cda4b7d3 CW |
6150 | } |
6151 | ||
79e53945 | 6152 | static int intel_crtc_cursor_set(struct drm_crtc *crtc, |
05394f39 | 6153 | struct drm_file *file, |
79e53945 JB |
6154 | uint32_t handle, |
6155 | uint32_t width, uint32_t height) | |
6156 | { | |
6157 | struct drm_device *dev = crtc->dev; | |
6158 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6159 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
05394f39 | 6160 | struct drm_i915_gem_object *obj; |
cda4b7d3 | 6161 | uint32_t addr; |
3f8bc370 | 6162 | int ret; |
79e53945 | 6163 | |
79e53945 JB |
6164 | /* if we want to turn off the cursor ignore width and height */ |
6165 | if (!handle) { | |
28c97730 | 6166 | DRM_DEBUG_KMS("cursor off\n"); |
3f8bc370 | 6167 | addr = 0; |
05394f39 | 6168 | obj = NULL; |
5004417d | 6169 | mutex_lock(&dev->struct_mutex); |
3f8bc370 | 6170 | goto finish; |
79e53945 JB |
6171 | } |
6172 | ||
6173 | /* Currently we only support 64x64 cursors */ | |
6174 | if (width != 64 || height != 64) { | |
6175 | DRM_ERROR("we currently only support 64x64 cursors\n"); | |
6176 | return -EINVAL; | |
6177 | } | |
6178 | ||
05394f39 | 6179 | obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle)); |
c8725226 | 6180 | if (&obj->base == NULL) |
79e53945 JB |
6181 | return -ENOENT; |
6182 | ||
05394f39 | 6183 | if (obj->base.size < width * height * 4) { |
79e53945 | 6184 | DRM_ERROR("buffer is to small\n"); |
34b8686e DA |
6185 | ret = -ENOMEM; |
6186 | goto fail; | |
79e53945 JB |
6187 | } |
6188 | ||
71acb5eb | 6189 | /* we only need to pin inside GTT if cursor is non-phy */ |
7f9872e0 | 6190 | mutex_lock(&dev->struct_mutex); |
b295d1b6 | 6191 | if (!dev_priv->info->cursor_needs_physical) { |
d9e86c0e CW |
6192 | if (obj->tiling_mode) { |
6193 | DRM_ERROR("cursor cannot be tiled\n"); | |
6194 | ret = -EINVAL; | |
6195 | goto fail_locked; | |
6196 | } | |
6197 | ||
2da3b9b9 | 6198 | ret = i915_gem_object_pin_to_display_plane(obj, 0, NULL); |
e7b526bb CW |
6199 | if (ret) { |
6200 | DRM_ERROR("failed to move cursor bo into the GTT\n"); | |
2da3b9b9 | 6201 | goto fail_locked; |
e7b526bb CW |
6202 | } |
6203 | ||
d9e86c0e CW |
6204 | ret = i915_gem_object_put_fence(obj); |
6205 | if (ret) { | |
2da3b9b9 | 6206 | DRM_ERROR("failed to release fence for cursor"); |
d9e86c0e CW |
6207 | goto fail_unpin; |
6208 | } | |
6209 | ||
05394f39 | 6210 | addr = obj->gtt_offset; |
71acb5eb | 6211 | } else { |
6eeefaf3 | 6212 | int align = IS_I830(dev) ? 16 * 1024 : 256; |
05394f39 | 6213 | ret = i915_gem_attach_phys_object(dev, obj, |
6eeefaf3 CW |
6214 | (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1, |
6215 | align); | |
71acb5eb DA |
6216 | if (ret) { |
6217 | DRM_ERROR("failed to attach phys object\n"); | |
7f9872e0 | 6218 | goto fail_locked; |
71acb5eb | 6219 | } |
05394f39 | 6220 | addr = obj->phys_obj->handle->busaddr; |
3f8bc370 KH |
6221 | } |
6222 | ||
a6c45cf0 | 6223 | if (IS_GEN2(dev)) |
14b60391 JB |
6224 | I915_WRITE(CURSIZE, (height << 12) | width); |
6225 | ||
3f8bc370 | 6226 | finish: |
3f8bc370 | 6227 | if (intel_crtc->cursor_bo) { |
b295d1b6 | 6228 | if (dev_priv->info->cursor_needs_physical) { |
05394f39 | 6229 | if (intel_crtc->cursor_bo != obj) |
71acb5eb DA |
6230 | i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo); |
6231 | } else | |
6232 | i915_gem_object_unpin(intel_crtc->cursor_bo); | |
05394f39 | 6233 | drm_gem_object_unreference(&intel_crtc->cursor_bo->base); |
3f8bc370 | 6234 | } |
80824003 | 6235 | |
7f9872e0 | 6236 | mutex_unlock(&dev->struct_mutex); |
3f8bc370 KH |
6237 | |
6238 | intel_crtc->cursor_addr = addr; | |
05394f39 | 6239 | intel_crtc->cursor_bo = obj; |
cda4b7d3 CW |
6240 | intel_crtc->cursor_width = width; |
6241 | intel_crtc->cursor_height = height; | |
6242 | ||
6b383a7f | 6243 | intel_crtc_update_cursor(crtc, true); |
3f8bc370 | 6244 | |
79e53945 | 6245 | return 0; |
e7b526bb | 6246 | fail_unpin: |
05394f39 | 6247 | i915_gem_object_unpin(obj); |
7f9872e0 | 6248 | fail_locked: |
34b8686e | 6249 | mutex_unlock(&dev->struct_mutex); |
bc9025bd | 6250 | fail: |
05394f39 | 6251 | drm_gem_object_unreference_unlocked(&obj->base); |
34b8686e | 6252 | return ret; |
79e53945 JB |
6253 | } |
6254 | ||
6255 | static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y) | |
6256 | { | |
79e53945 | 6257 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
79e53945 | 6258 | |
cda4b7d3 CW |
6259 | intel_crtc->cursor_x = x; |
6260 | intel_crtc->cursor_y = y; | |
652c393a | 6261 | |
6b383a7f | 6262 | intel_crtc_update_cursor(crtc, true); |
79e53945 JB |
6263 | |
6264 | return 0; | |
6265 | } | |
6266 | ||
6267 | /** Sets the color ramps on behalf of RandR */ | |
6268 | void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green, | |
6269 | u16 blue, int regno) | |
6270 | { | |
6271 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6272 | ||
6273 | intel_crtc->lut_r[regno] = red >> 8; | |
6274 | intel_crtc->lut_g[regno] = green >> 8; | |
6275 | intel_crtc->lut_b[regno] = blue >> 8; | |
6276 | } | |
6277 | ||
b8c00ac5 DA |
6278 | void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green, |
6279 | u16 *blue, int regno) | |
6280 | { | |
6281 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6282 | ||
6283 | *red = intel_crtc->lut_r[regno] << 8; | |
6284 | *green = intel_crtc->lut_g[regno] << 8; | |
6285 | *blue = intel_crtc->lut_b[regno] << 8; | |
6286 | } | |
6287 | ||
79e53945 | 6288 | static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green, |
7203425a | 6289 | u16 *blue, uint32_t start, uint32_t size) |
79e53945 | 6290 | { |
7203425a | 6291 | int end = (start + size > 256) ? 256 : start + size, i; |
79e53945 | 6292 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
79e53945 | 6293 | |
7203425a | 6294 | for (i = start; i < end; i++) { |
79e53945 JB |
6295 | intel_crtc->lut_r[i] = red[i] >> 8; |
6296 | intel_crtc->lut_g[i] = green[i] >> 8; | |
6297 | intel_crtc->lut_b[i] = blue[i] >> 8; | |
6298 | } | |
6299 | ||
6300 | intel_crtc_load_lut(crtc); | |
6301 | } | |
6302 | ||
6303 | /** | |
6304 | * Get a pipe with a simple mode set on it for doing load-based monitor | |
6305 | * detection. | |
6306 | * | |
6307 | * It will be up to the load-detect code to adjust the pipe as appropriate for | |
c751ce4f | 6308 | * its requirements. The pipe will be connected to no other encoders. |
79e53945 | 6309 | * |
c751ce4f | 6310 | * Currently this code will only succeed if there is a pipe with no encoders |
79e53945 JB |
6311 | * configured for it. In the future, it could choose to temporarily disable |
6312 | * some outputs to free up a pipe for its use. | |
6313 | * | |
6314 | * \return crtc, or NULL if no pipes are available. | |
6315 | */ | |
6316 | ||
6317 | /* VESA 640x480x72Hz mode to set on the pipe */ | |
6318 | static struct drm_display_mode load_detect_mode = { | |
6319 | DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664, | |
6320 | 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC), | |
6321 | }; | |
6322 | ||
d2dff872 CW |
6323 | static struct drm_framebuffer * |
6324 | intel_framebuffer_create(struct drm_device *dev, | |
308e5bcb | 6325 | struct drm_mode_fb_cmd2 *mode_cmd, |
d2dff872 CW |
6326 | struct drm_i915_gem_object *obj) |
6327 | { | |
6328 | struct intel_framebuffer *intel_fb; | |
6329 | int ret; | |
6330 | ||
6331 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); | |
6332 | if (!intel_fb) { | |
6333 | drm_gem_object_unreference_unlocked(&obj->base); | |
6334 | return ERR_PTR(-ENOMEM); | |
6335 | } | |
6336 | ||
6337 | ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj); | |
6338 | if (ret) { | |
6339 | drm_gem_object_unreference_unlocked(&obj->base); | |
6340 | kfree(intel_fb); | |
6341 | return ERR_PTR(ret); | |
6342 | } | |
6343 | ||
6344 | return &intel_fb->base; | |
6345 | } | |
6346 | ||
6347 | static u32 | |
6348 | intel_framebuffer_pitch_for_width(int width, int bpp) | |
6349 | { | |
6350 | u32 pitch = DIV_ROUND_UP(width * bpp, 8); | |
6351 | return ALIGN(pitch, 64); | |
6352 | } | |
6353 | ||
6354 | static u32 | |
6355 | intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp) | |
6356 | { | |
6357 | u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp); | |
6358 | return ALIGN(pitch * mode->vdisplay, PAGE_SIZE); | |
6359 | } | |
6360 | ||
6361 | static struct drm_framebuffer * | |
6362 | intel_framebuffer_create_for_mode(struct drm_device *dev, | |
6363 | struct drm_display_mode *mode, | |
6364 | int depth, int bpp) | |
6365 | { | |
6366 | struct drm_i915_gem_object *obj; | |
0fed39bd | 6367 | struct drm_mode_fb_cmd2 mode_cmd = { 0 }; |
d2dff872 CW |
6368 | |
6369 | obj = i915_gem_alloc_object(dev, | |
6370 | intel_framebuffer_size_for_mode(mode, bpp)); | |
6371 | if (obj == NULL) | |
6372 | return ERR_PTR(-ENOMEM); | |
6373 | ||
6374 | mode_cmd.width = mode->hdisplay; | |
6375 | mode_cmd.height = mode->vdisplay; | |
308e5bcb JB |
6376 | mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width, |
6377 | bpp); | |
5ca0c34a | 6378 | mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth); |
d2dff872 CW |
6379 | |
6380 | return intel_framebuffer_create(dev, &mode_cmd, obj); | |
6381 | } | |
6382 | ||
6383 | static struct drm_framebuffer * | |
6384 | mode_fits_in_fbdev(struct drm_device *dev, | |
6385 | struct drm_display_mode *mode) | |
6386 | { | |
6387 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6388 | struct drm_i915_gem_object *obj; | |
6389 | struct drm_framebuffer *fb; | |
6390 | ||
6391 | if (dev_priv->fbdev == NULL) | |
6392 | return NULL; | |
6393 | ||
6394 | obj = dev_priv->fbdev->ifb.obj; | |
6395 | if (obj == NULL) | |
6396 | return NULL; | |
6397 | ||
6398 | fb = &dev_priv->fbdev->ifb.base; | |
01f2c773 VS |
6399 | if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay, |
6400 | fb->bits_per_pixel)) | |
d2dff872 CW |
6401 | return NULL; |
6402 | ||
01f2c773 | 6403 | if (obj->base.size < mode->vdisplay * fb->pitches[0]) |
d2dff872 CW |
6404 | return NULL; |
6405 | ||
6406 | return fb; | |
6407 | } | |
6408 | ||
d2434ab7 | 6409 | bool intel_get_load_detect_pipe(struct drm_connector *connector, |
7173188d | 6410 | struct drm_display_mode *mode, |
8261b191 | 6411 | struct intel_load_detect_pipe *old) |
79e53945 JB |
6412 | { |
6413 | struct intel_crtc *intel_crtc; | |
d2434ab7 DV |
6414 | struct intel_encoder *intel_encoder = |
6415 | intel_attached_encoder(connector); | |
79e53945 | 6416 | struct drm_crtc *possible_crtc; |
4ef69c7a | 6417 | struct drm_encoder *encoder = &intel_encoder->base; |
79e53945 JB |
6418 | struct drm_crtc *crtc = NULL; |
6419 | struct drm_device *dev = encoder->dev; | |
94352cf9 | 6420 | struct drm_framebuffer *fb; |
79e53945 JB |
6421 | int i = -1; |
6422 | ||
d2dff872 CW |
6423 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
6424 | connector->base.id, drm_get_connector_name(connector), | |
6425 | encoder->base.id, drm_get_encoder_name(encoder)); | |
6426 | ||
79e53945 JB |
6427 | /* |
6428 | * Algorithm gets a little messy: | |
7a5e4805 | 6429 | * |
79e53945 JB |
6430 | * - if the connector already has an assigned crtc, use it (but make |
6431 | * sure it's on first) | |
7a5e4805 | 6432 | * |
79e53945 JB |
6433 | * - try to find the first unused crtc that can drive this connector, |
6434 | * and use that if we find one | |
79e53945 JB |
6435 | */ |
6436 | ||
6437 | /* See if we already have a CRTC for this connector */ | |
6438 | if (encoder->crtc) { | |
6439 | crtc = encoder->crtc; | |
8261b191 | 6440 | |
24218aac | 6441 | old->dpms_mode = connector->dpms; |
8261b191 CW |
6442 | old->load_detect_temp = false; |
6443 | ||
6444 | /* Make sure the crtc and connector are running */ | |
24218aac DV |
6445 | if (connector->dpms != DRM_MODE_DPMS_ON) |
6446 | connector->funcs->dpms(connector, DRM_MODE_DPMS_ON); | |
8261b191 | 6447 | |
7173188d | 6448 | return true; |
79e53945 JB |
6449 | } |
6450 | ||
6451 | /* Find an unused one (if possible) */ | |
6452 | list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) { | |
6453 | i++; | |
6454 | if (!(encoder->possible_crtcs & (1 << i))) | |
6455 | continue; | |
6456 | if (!possible_crtc->enabled) { | |
6457 | crtc = possible_crtc; | |
6458 | break; | |
6459 | } | |
79e53945 JB |
6460 | } |
6461 | ||
6462 | /* | |
6463 | * If we didn't find an unused CRTC, don't use any. | |
6464 | */ | |
6465 | if (!crtc) { | |
7173188d CW |
6466 | DRM_DEBUG_KMS("no pipe available for load-detect\n"); |
6467 | return false; | |
79e53945 JB |
6468 | } |
6469 | ||
fc303101 DV |
6470 | intel_encoder->new_crtc = to_intel_crtc(crtc); |
6471 | to_intel_connector(connector)->new_encoder = intel_encoder; | |
79e53945 JB |
6472 | |
6473 | intel_crtc = to_intel_crtc(crtc); | |
24218aac | 6474 | old->dpms_mode = connector->dpms; |
8261b191 | 6475 | old->load_detect_temp = true; |
d2dff872 | 6476 | old->release_fb = NULL; |
79e53945 | 6477 | |
6492711d CW |
6478 | if (!mode) |
6479 | mode = &load_detect_mode; | |
79e53945 | 6480 | |
d2dff872 CW |
6481 | /* We need a framebuffer large enough to accommodate all accesses |
6482 | * that the plane may generate whilst we perform load detection. | |
6483 | * We can not rely on the fbcon either being present (we get called | |
6484 | * during its initialisation to detect all boot displays, or it may | |
6485 | * not even exist) or that it is large enough to satisfy the | |
6486 | * requested mode. | |
6487 | */ | |
94352cf9 DV |
6488 | fb = mode_fits_in_fbdev(dev, mode); |
6489 | if (fb == NULL) { | |
d2dff872 | 6490 | DRM_DEBUG_KMS("creating tmp fb for load-detection\n"); |
94352cf9 DV |
6491 | fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32); |
6492 | old->release_fb = fb; | |
d2dff872 CW |
6493 | } else |
6494 | DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n"); | |
94352cf9 | 6495 | if (IS_ERR(fb)) { |
d2dff872 | 6496 | DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n"); |
0e8b3d3e | 6497 | return false; |
79e53945 | 6498 | } |
79e53945 | 6499 | |
c0c36b94 | 6500 | if (intel_set_mode(crtc, mode, 0, 0, fb)) { |
6492711d | 6501 | DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n"); |
d2dff872 CW |
6502 | if (old->release_fb) |
6503 | old->release_fb->funcs->destroy(old->release_fb); | |
0e8b3d3e | 6504 | return false; |
79e53945 | 6505 | } |
7173188d | 6506 | |
79e53945 | 6507 | /* let the connector get through one full cycle before testing */ |
9d0498a2 | 6508 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
7173188d | 6509 | return true; |
79e53945 JB |
6510 | } |
6511 | ||
d2434ab7 | 6512 | void intel_release_load_detect_pipe(struct drm_connector *connector, |
8261b191 | 6513 | struct intel_load_detect_pipe *old) |
79e53945 | 6514 | { |
d2434ab7 DV |
6515 | struct intel_encoder *intel_encoder = |
6516 | intel_attached_encoder(connector); | |
4ef69c7a | 6517 | struct drm_encoder *encoder = &intel_encoder->base; |
79e53945 | 6518 | |
d2dff872 CW |
6519 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
6520 | connector->base.id, drm_get_connector_name(connector), | |
6521 | encoder->base.id, drm_get_encoder_name(encoder)); | |
6522 | ||
8261b191 | 6523 | if (old->load_detect_temp) { |
fc303101 DV |
6524 | struct drm_crtc *crtc = encoder->crtc; |
6525 | ||
6526 | to_intel_connector(connector)->new_encoder = NULL; | |
6527 | intel_encoder->new_crtc = NULL; | |
6528 | intel_set_mode(crtc, NULL, 0, 0, NULL); | |
d2dff872 CW |
6529 | |
6530 | if (old->release_fb) | |
6531 | old->release_fb->funcs->destroy(old->release_fb); | |
6532 | ||
0622a53c | 6533 | return; |
79e53945 JB |
6534 | } |
6535 | ||
c751ce4f | 6536 | /* Switch crtc and encoder back off if necessary */ |
24218aac DV |
6537 | if (old->dpms_mode != DRM_MODE_DPMS_ON) |
6538 | connector->funcs->dpms(connector, old->dpms_mode); | |
79e53945 JB |
6539 | } |
6540 | ||
6541 | /* Returns the clock of the currently programmed mode of the given pipe. */ | |
6542 | static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc) | |
6543 | { | |
6544 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6545 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6546 | int pipe = intel_crtc->pipe; | |
548f245b | 6547 | u32 dpll = I915_READ(DPLL(pipe)); |
79e53945 JB |
6548 | u32 fp; |
6549 | intel_clock_t clock; | |
6550 | ||
6551 | if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0) | |
39adb7a5 | 6552 | fp = I915_READ(FP0(pipe)); |
79e53945 | 6553 | else |
39adb7a5 | 6554 | fp = I915_READ(FP1(pipe)); |
79e53945 JB |
6555 | |
6556 | clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT; | |
f2b115e6 AJ |
6557 | if (IS_PINEVIEW(dev)) { |
6558 | clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1; | |
6559 | clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT; | |
2177832f SL |
6560 | } else { |
6561 | clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT; | |
6562 | clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT; | |
6563 | } | |
6564 | ||
a6c45cf0 | 6565 | if (!IS_GEN2(dev)) { |
f2b115e6 AJ |
6566 | if (IS_PINEVIEW(dev)) |
6567 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >> | |
6568 | DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW); | |
2177832f SL |
6569 | else |
6570 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >> | |
79e53945 JB |
6571 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
6572 | ||
6573 | switch (dpll & DPLL_MODE_MASK) { | |
6574 | case DPLLB_MODE_DAC_SERIAL: | |
6575 | clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ? | |
6576 | 5 : 10; | |
6577 | break; | |
6578 | case DPLLB_MODE_LVDS: | |
6579 | clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ? | |
6580 | 7 : 14; | |
6581 | break; | |
6582 | default: | |
28c97730 | 6583 | DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed " |
79e53945 JB |
6584 | "mode\n", (int)(dpll & DPLL_MODE_MASK)); |
6585 | return 0; | |
6586 | } | |
6587 | ||
6588 | /* XXX: Handle the 100Mhz refclk */ | |
2177832f | 6589 | intel_clock(dev, 96000, &clock); |
79e53945 JB |
6590 | } else { |
6591 | bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN); | |
6592 | ||
6593 | if (is_lvds) { | |
6594 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >> | |
6595 | DPLL_FPA01_P1_POST_DIV_SHIFT); | |
6596 | clock.p2 = 14; | |
6597 | ||
6598 | if ((dpll & PLL_REF_INPUT_MASK) == | |
6599 | PLLB_REF_INPUT_SPREADSPECTRUMIN) { | |
6600 | /* XXX: might not be 66MHz */ | |
2177832f | 6601 | intel_clock(dev, 66000, &clock); |
79e53945 | 6602 | } else |
2177832f | 6603 | intel_clock(dev, 48000, &clock); |
79e53945 JB |
6604 | } else { |
6605 | if (dpll & PLL_P1_DIVIDE_BY_TWO) | |
6606 | clock.p1 = 2; | |
6607 | else { | |
6608 | clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >> | |
6609 | DPLL_FPA01_P1_POST_DIV_SHIFT) + 2; | |
6610 | } | |
6611 | if (dpll & PLL_P2_DIVIDE_BY_4) | |
6612 | clock.p2 = 4; | |
6613 | else | |
6614 | clock.p2 = 2; | |
6615 | ||
2177832f | 6616 | intel_clock(dev, 48000, &clock); |
79e53945 JB |
6617 | } |
6618 | } | |
6619 | ||
6620 | /* XXX: It would be nice to validate the clocks, but we can't reuse | |
6621 | * i830PllIsValid() because it relies on the xf86_config connector | |
6622 | * configuration being accurate, which it isn't necessarily. | |
6623 | */ | |
6624 | ||
6625 | return clock.dot; | |
6626 | } | |
6627 | ||
6628 | /** Returns the currently programmed mode of the given pipe. */ | |
6629 | struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev, | |
6630 | struct drm_crtc *crtc) | |
6631 | { | |
548f245b | 6632 | struct drm_i915_private *dev_priv = dev->dev_private; |
79e53945 | 6633 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
fe2b8f9d | 6634 | enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder; |
79e53945 | 6635 | struct drm_display_mode *mode; |
fe2b8f9d PZ |
6636 | int htot = I915_READ(HTOTAL(cpu_transcoder)); |
6637 | int hsync = I915_READ(HSYNC(cpu_transcoder)); | |
6638 | int vtot = I915_READ(VTOTAL(cpu_transcoder)); | |
6639 | int vsync = I915_READ(VSYNC(cpu_transcoder)); | |
79e53945 JB |
6640 | |
6641 | mode = kzalloc(sizeof(*mode), GFP_KERNEL); | |
6642 | if (!mode) | |
6643 | return NULL; | |
6644 | ||
6645 | mode->clock = intel_crtc_clock_get(dev, crtc); | |
6646 | mode->hdisplay = (htot & 0xffff) + 1; | |
6647 | mode->htotal = ((htot & 0xffff0000) >> 16) + 1; | |
6648 | mode->hsync_start = (hsync & 0xffff) + 1; | |
6649 | mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1; | |
6650 | mode->vdisplay = (vtot & 0xffff) + 1; | |
6651 | mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1; | |
6652 | mode->vsync_start = (vsync & 0xffff) + 1; | |
6653 | mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1; | |
6654 | ||
6655 | drm_mode_set_name(mode); | |
79e53945 JB |
6656 | |
6657 | return mode; | |
6658 | } | |
6659 | ||
3dec0095 | 6660 | static void intel_increase_pllclock(struct drm_crtc *crtc) |
652c393a JB |
6661 | { |
6662 | struct drm_device *dev = crtc->dev; | |
6663 | drm_i915_private_t *dev_priv = dev->dev_private; | |
6664 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6665 | int pipe = intel_crtc->pipe; | |
dbdc6479 JB |
6666 | int dpll_reg = DPLL(pipe); |
6667 | int dpll; | |
652c393a | 6668 | |
bad720ff | 6669 | if (HAS_PCH_SPLIT(dev)) |
652c393a JB |
6670 | return; |
6671 | ||
6672 | if (!dev_priv->lvds_downclock_avail) | |
6673 | return; | |
6674 | ||
dbdc6479 | 6675 | dpll = I915_READ(dpll_reg); |
652c393a | 6676 | if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) { |
44d98a61 | 6677 | DRM_DEBUG_DRIVER("upclocking LVDS\n"); |
652c393a | 6678 | |
8ac5a6d5 | 6679 | assert_panel_unlocked(dev_priv, pipe); |
652c393a JB |
6680 | |
6681 | dpll &= ~DISPLAY_RATE_SELECT_FPA1; | |
6682 | I915_WRITE(dpll_reg, dpll); | |
9d0498a2 | 6683 | intel_wait_for_vblank(dev, pipe); |
dbdc6479 | 6684 | |
652c393a JB |
6685 | dpll = I915_READ(dpll_reg); |
6686 | if (dpll & DISPLAY_RATE_SELECT_FPA1) | |
44d98a61 | 6687 | DRM_DEBUG_DRIVER("failed to upclock LVDS!\n"); |
652c393a | 6688 | } |
652c393a JB |
6689 | } |
6690 | ||
6691 | static void intel_decrease_pllclock(struct drm_crtc *crtc) | |
6692 | { | |
6693 | struct drm_device *dev = crtc->dev; | |
6694 | drm_i915_private_t *dev_priv = dev->dev_private; | |
6695 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
652c393a | 6696 | |
bad720ff | 6697 | if (HAS_PCH_SPLIT(dev)) |
652c393a JB |
6698 | return; |
6699 | ||
6700 | if (!dev_priv->lvds_downclock_avail) | |
6701 | return; | |
6702 | ||
6703 | /* | |
6704 | * Since this is called by a timer, we should never get here in | |
6705 | * the manual case. | |
6706 | */ | |
6707 | if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) { | |
dc257cf1 DV |
6708 | int pipe = intel_crtc->pipe; |
6709 | int dpll_reg = DPLL(pipe); | |
6710 | int dpll; | |
f6e5b160 | 6711 | |
44d98a61 | 6712 | DRM_DEBUG_DRIVER("downclocking LVDS\n"); |
652c393a | 6713 | |
8ac5a6d5 | 6714 | assert_panel_unlocked(dev_priv, pipe); |
652c393a | 6715 | |
dc257cf1 | 6716 | dpll = I915_READ(dpll_reg); |
652c393a JB |
6717 | dpll |= DISPLAY_RATE_SELECT_FPA1; |
6718 | I915_WRITE(dpll_reg, dpll); | |
9d0498a2 | 6719 | intel_wait_for_vblank(dev, pipe); |
652c393a JB |
6720 | dpll = I915_READ(dpll_reg); |
6721 | if (!(dpll & DISPLAY_RATE_SELECT_FPA1)) | |
44d98a61 | 6722 | DRM_DEBUG_DRIVER("failed to downclock LVDS!\n"); |
652c393a JB |
6723 | } |
6724 | ||
6725 | } | |
6726 | ||
f047e395 CW |
6727 | void intel_mark_busy(struct drm_device *dev) |
6728 | { | |
f047e395 CW |
6729 | i915_update_gfx_val(dev->dev_private); |
6730 | } | |
6731 | ||
6732 | void intel_mark_idle(struct drm_device *dev) | |
652c393a | 6733 | { |
652c393a | 6734 | struct drm_crtc *crtc; |
652c393a JB |
6735 | |
6736 | if (!i915_powersave) | |
6737 | return; | |
6738 | ||
652c393a | 6739 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
652c393a JB |
6740 | if (!crtc->fb) |
6741 | continue; | |
6742 | ||
725a5b54 | 6743 | intel_decrease_pllclock(crtc); |
652c393a | 6744 | } |
652c393a JB |
6745 | } |
6746 | ||
725a5b54 | 6747 | void intel_mark_fb_busy(struct drm_i915_gem_object *obj) |
652c393a | 6748 | { |
f047e395 CW |
6749 | struct drm_device *dev = obj->base.dev; |
6750 | struct drm_crtc *crtc; | |
652c393a | 6751 | |
f047e395 | 6752 | if (!i915_powersave) |
acb87dfb CW |
6753 | return; |
6754 | ||
652c393a JB |
6755 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
6756 | if (!crtc->fb) | |
6757 | continue; | |
6758 | ||
f047e395 | 6759 | if (to_intel_framebuffer(crtc->fb)->obj == obj) |
725a5b54 | 6760 | intel_increase_pllclock(crtc); |
652c393a JB |
6761 | } |
6762 | } | |
6763 | ||
79e53945 JB |
6764 | static void intel_crtc_destroy(struct drm_crtc *crtc) |
6765 | { | |
6766 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
67e77c5a DV |
6767 | struct drm_device *dev = crtc->dev; |
6768 | struct intel_unpin_work *work; | |
6769 | unsigned long flags; | |
6770 | ||
6771 | spin_lock_irqsave(&dev->event_lock, flags); | |
6772 | work = intel_crtc->unpin_work; | |
6773 | intel_crtc->unpin_work = NULL; | |
6774 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
6775 | ||
6776 | if (work) { | |
6777 | cancel_work_sync(&work->work); | |
6778 | kfree(work); | |
6779 | } | |
79e53945 JB |
6780 | |
6781 | drm_crtc_cleanup(crtc); | |
67e77c5a | 6782 | |
79e53945 JB |
6783 | kfree(intel_crtc); |
6784 | } | |
6785 | ||
6b95a207 KH |
6786 | static void intel_unpin_work_fn(struct work_struct *__work) |
6787 | { | |
6788 | struct intel_unpin_work *work = | |
6789 | container_of(__work, struct intel_unpin_work, work); | |
b4a98e57 | 6790 | struct drm_device *dev = work->crtc->dev; |
6b95a207 | 6791 | |
b4a98e57 | 6792 | mutex_lock(&dev->struct_mutex); |
1690e1eb | 6793 | intel_unpin_fb_obj(work->old_fb_obj); |
05394f39 CW |
6794 | drm_gem_object_unreference(&work->pending_flip_obj->base); |
6795 | drm_gem_object_unreference(&work->old_fb_obj->base); | |
d9e86c0e | 6796 | |
b4a98e57 CW |
6797 | intel_update_fbc(dev); |
6798 | mutex_unlock(&dev->struct_mutex); | |
6799 | ||
6800 | BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0); | |
6801 | atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count); | |
6802 | ||
6b95a207 KH |
6803 | kfree(work); |
6804 | } | |
6805 | ||
1afe3e9d | 6806 | static void do_intel_finish_page_flip(struct drm_device *dev, |
49b14a5c | 6807 | struct drm_crtc *crtc) |
6b95a207 KH |
6808 | { |
6809 | drm_i915_private_t *dev_priv = dev->dev_private; | |
6b95a207 KH |
6810 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
6811 | struct intel_unpin_work *work; | |
05394f39 | 6812 | struct drm_i915_gem_object *obj; |
6b95a207 KH |
6813 | unsigned long flags; |
6814 | ||
6815 | /* Ignore early vblank irqs */ | |
6816 | if (intel_crtc == NULL) | |
6817 | return; | |
6818 | ||
6819 | spin_lock_irqsave(&dev->event_lock, flags); | |
6820 | work = intel_crtc->unpin_work; | |
e7d841ca CW |
6821 | |
6822 | /* Ensure we don't miss a work->pending update ... */ | |
6823 | smp_rmb(); | |
6824 | ||
6825 | if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) { | |
6b95a207 KH |
6826 | spin_unlock_irqrestore(&dev->event_lock, flags); |
6827 | return; | |
6828 | } | |
6829 | ||
e7d841ca CW |
6830 | /* and that the unpin work is consistent wrt ->pending. */ |
6831 | smp_rmb(); | |
6832 | ||
6b95a207 | 6833 | intel_crtc->unpin_work = NULL; |
6b95a207 | 6834 | |
45a066eb RC |
6835 | if (work->event) |
6836 | drm_send_vblank_event(dev, intel_crtc->pipe, work->event); | |
6b95a207 | 6837 | |
0af7e4df MK |
6838 | drm_vblank_put(dev, intel_crtc->pipe); |
6839 | ||
6b95a207 KH |
6840 | spin_unlock_irqrestore(&dev->event_lock, flags); |
6841 | ||
05394f39 | 6842 | obj = work->old_fb_obj; |
d9e86c0e | 6843 | |
2c10d571 | 6844 | wake_up_all(&dev_priv->pending_flip_queue); |
b4a98e57 CW |
6845 | |
6846 | queue_work(dev_priv->wq, &work->work); | |
e5510fac JB |
6847 | |
6848 | trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj); | |
6b95a207 KH |
6849 | } |
6850 | ||
1afe3e9d JB |
6851 | void intel_finish_page_flip(struct drm_device *dev, int pipe) |
6852 | { | |
6853 | drm_i915_private_t *dev_priv = dev->dev_private; | |
6854 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; | |
6855 | ||
49b14a5c | 6856 | do_intel_finish_page_flip(dev, crtc); |
1afe3e9d JB |
6857 | } |
6858 | ||
6859 | void intel_finish_page_flip_plane(struct drm_device *dev, int plane) | |
6860 | { | |
6861 | drm_i915_private_t *dev_priv = dev->dev_private; | |
6862 | struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane]; | |
6863 | ||
49b14a5c | 6864 | do_intel_finish_page_flip(dev, crtc); |
1afe3e9d JB |
6865 | } |
6866 | ||
6b95a207 KH |
6867 | void intel_prepare_page_flip(struct drm_device *dev, int plane) |
6868 | { | |
6869 | drm_i915_private_t *dev_priv = dev->dev_private; | |
6870 | struct intel_crtc *intel_crtc = | |
6871 | to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]); | |
6872 | unsigned long flags; | |
6873 | ||
e7d841ca CW |
6874 | /* NB: An MMIO update of the plane base pointer will also |
6875 | * generate a page-flip completion irq, i.e. every modeset | |
6876 | * is also accompanied by a spurious intel_prepare_page_flip(). | |
6877 | */ | |
6b95a207 | 6878 | spin_lock_irqsave(&dev->event_lock, flags); |
e7d841ca CW |
6879 | if (intel_crtc->unpin_work) |
6880 | atomic_inc_not_zero(&intel_crtc->unpin_work->pending); | |
6b95a207 KH |
6881 | spin_unlock_irqrestore(&dev->event_lock, flags); |
6882 | } | |
6883 | ||
e7d841ca CW |
6884 | inline static void intel_mark_page_flip_active(struct intel_crtc *intel_crtc) |
6885 | { | |
6886 | /* Ensure that the work item is consistent when activating it ... */ | |
6887 | smp_wmb(); | |
6888 | atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING); | |
6889 | /* and that it is marked active as soon as the irq could fire. */ | |
6890 | smp_wmb(); | |
6891 | } | |
6892 | ||
8c9f3aaf JB |
6893 | static int intel_gen2_queue_flip(struct drm_device *dev, |
6894 | struct drm_crtc *crtc, | |
6895 | struct drm_framebuffer *fb, | |
6896 | struct drm_i915_gem_object *obj) | |
6897 | { | |
6898 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6899 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
8c9f3aaf | 6900 | u32 flip_mask; |
6d90c952 | 6901 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
8c9f3aaf JB |
6902 | int ret; |
6903 | ||
6d90c952 | 6904 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
8c9f3aaf | 6905 | if (ret) |
83d4092b | 6906 | goto err; |
8c9f3aaf | 6907 | |
6d90c952 | 6908 | ret = intel_ring_begin(ring, 6); |
8c9f3aaf | 6909 | if (ret) |
83d4092b | 6910 | goto err_unpin; |
8c9f3aaf JB |
6911 | |
6912 | /* Can't queue multiple flips, so wait for the previous | |
6913 | * one to finish before executing the next. | |
6914 | */ | |
6915 | if (intel_crtc->plane) | |
6916 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; | |
6917 | else | |
6918 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; | |
6d90c952 DV |
6919 | intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask); |
6920 | intel_ring_emit(ring, MI_NOOP); | |
6921 | intel_ring_emit(ring, MI_DISPLAY_FLIP | | |
6922 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); | |
6923 | intel_ring_emit(ring, fb->pitches[0]); | |
e506a0c6 | 6924 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
6d90c952 | 6925 | intel_ring_emit(ring, 0); /* aux display base address, unused */ |
e7d841ca CW |
6926 | |
6927 | intel_mark_page_flip_active(intel_crtc); | |
6d90c952 | 6928 | intel_ring_advance(ring); |
83d4092b CW |
6929 | return 0; |
6930 | ||
6931 | err_unpin: | |
6932 | intel_unpin_fb_obj(obj); | |
6933 | err: | |
8c9f3aaf JB |
6934 | return ret; |
6935 | } | |
6936 | ||
6937 | static int intel_gen3_queue_flip(struct drm_device *dev, | |
6938 | struct drm_crtc *crtc, | |
6939 | struct drm_framebuffer *fb, | |
6940 | struct drm_i915_gem_object *obj) | |
6941 | { | |
6942 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6943 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
8c9f3aaf | 6944 | u32 flip_mask; |
6d90c952 | 6945 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
8c9f3aaf JB |
6946 | int ret; |
6947 | ||
6d90c952 | 6948 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
8c9f3aaf | 6949 | if (ret) |
83d4092b | 6950 | goto err; |
8c9f3aaf | 6951 | |
6d90c952 | 6952 | ret = intel_ring_begin(ring, 6); |
8c9f3aaf | 6953 | if (ret) |
83d4092b | 6954 | goto err_unpin; |
8c9f3aaf JB |
6955 | |
6956 | if (intel_crtc->plane) | |
6957 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; | |
6958 | else | |
6959 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; | |
6d90c952 DV |
6960 | intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask); |
6961 | intel_ring_emit(ring, MI_NOOP); | |
6962 | intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | | |
6963 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); | |
6964 | intel_ring_emit(ring, fb->pitches[0]); | |
e506a0c6 | 6965 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
6d90c952 DV |
6966 | intel_ring_emit(ring, MI_NOOP); |
6967 | ||
e7d841ca | 6968 | intel_mark_page_flip_active(intel_crtc); |
6d90c952 | 6969 | intel_ring_advance(ring); |
83d4092b CW |
6970 | return 0; |
6971 | ||
6972 | err_unpin: | |
6973 | intel_unpin_fb_obj(obj); | |
6974 | err: | |
8c9f3aaf JB |
6975 | return ret; |
6976 | } | |
6977 | ||
6978 | static int intel_gen4_queue_flip(struct drm_device *dev, | |
6979 | struct drm_crtc *crtc, | |
6980 | struct drm_framebuffer *fb, | |
6981 | struct drm_i915_gem_object *obj) | |
6982 | { | |
6983 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6984 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6985 | uint32_t pf, pipesrc; | |
6d90c952 | 6986 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
8c9f3aaf JB |
6987 | int ret; |
6988 | ||
6d90c952 | 6989 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
8c9f3aaf | 6990 | if (ret) |
83d4092b | 6991 | goto err; |
8c9f3aaf | 6992 | |
6d90c952 | 6993 | ret = intel_ring_begin(ring, 4); |
8c9f3aaf | 6994 | if (ret) |
83d4092b | 6995 | goto err_unpin; |
8c9f3aaf JB |
6996 | |
6997 | /* i965+ uses the linear or tiled offsets from the | |
6998 | * Display Registers (which do not change across a page-flip) | |
6999 | * so we need only reprogram the base address. | |
7000 | */ | |
6d90c952 DV |
7001 | intel_ring_emit(ring, MI_DISPLAY_FLIP | |
7002 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); | |
7003 | intel_ring_emit(ring, fb->pitches[0]); | |
c2c75131 DV |
7004 | intel_ring_emit(ring, |
7005 | (obj->gtt_offset + intel_crtc->dspaddr_offset) | | |
7006 | obj->tiling_mode); | |
8c9f3aaf JB |
7007 | |
7008 | /* XXX Enabling the panel-fitter across page-flip is so far | |
7009 | * untested on non-native modes, so ignore it for now. | |
7010 | * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE; | |
7011 | */ | |
7012 | pf = 0; | |
7013 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; | |
6d90c952 | 7014 | intel_ring_emit(ring, pf | pipesrc); |
e7d841ca CW |
7015 | |
7016 | intel_mark_page_flip_active(intel_crtc); | |
6d90c952 | 7017 | intel_ring_advance(ring); |
83d4092b CW |
7018 | return 0; |
7019 | ||
7020 | err_unpin: | |
7021 | intel_unpin_fb_obj(obj); | |
7022 | err: | |
8c9f3aaf JB |
7023 | return ret; |
7024 | } | |
7025 | ||
7026 | static int intel_gen6_queue_flip(struct drm_device *dev, | |
7027 | struct drm_crtc *crtc, | |
7028 | struct drm_framebuffer *fb, | |
7029 | struct drm_i915_gem_object *obj) | |
7030 | { | |
7031 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7032 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6d90c952 | 7033 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
8c9f3aaf JB |
7034 | uint32_t pf, pipesrc; |
7035 | int ret; | |
7036 | ||
6d90c952 | 7037 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
8c9f3aaf | 7038 | if (ret) |
83d4092b | 7039 | goto err; |
8c9f3aaf | 7040 | |
6d90c952 | 7041 | ret = intel_ring_begin(ring, 4); |
8c9f3aaf | 7042 | if (ret) |
83d4092b | 7043 | goto err_unpin; |
8c9f3aaf | 7044 | |
6d90c952 DV |
7045 | intel_ring_emit(ring, MI_DISPLAY_FLIP | |
7046 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); | |
7047 | intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode); | |
c2c75131 | 7048 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
8c9f3aaf | 7049 | |
dc257cf1 DV |
7050 | /* Contrary to the suggestions in the documentation, |
7051 | * "Enable Panel Fitter" does not seem to be required when page | |
7052 | * flipping with a non-native mode, and worse causes a normal | |
7053 | * modeset to fail. | |
7054 | * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE; | |
7055 | */ | |
7056 | pf = 0; | |
8c9f3aaf | 7057 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; |
6d90c952 | 7058 | intel_ring_emit(ring, pf | pipesrc); |
e7d841ca CW |
7059 | |
7060 | intel_mark_page_flip_active(intel_crtc); | |
6d90c952 | 7061 | intel_ring_advance(ring); |
83d4092b CW |
7062 | return 0; |
7063 | ||
7064 | err_unpin: | |
7065 | intel_unpin_fb_obj(obj); | |
7066 | err: | |
8c9f3aaf JB |
7067 | return ret; |
7068 | } | |
7069 | ||
7c9017e5 JB |
7070 | /* |
7071 | * On gen7 we currently use the blit ring because (in early silicon at least) | |
7072 | * the render ring doesn't give us interrpts for page flip completion, which | |
7073 | * means clients will hang after the first flip is queued. Fortunately the | |
7074 | * blit ring generates interrupts properly, so use it instead. | |
7075 | */ | |
7076 | static int intel_gen7_queue_flip(struct drm_device *dev, | |
7077 | struct drm_crtc *crtc, | |
7078 | struct drm_framebuffer *fb, | |
7079 | struct drm_i915_gem_object *obj) | |
7080 | { | |
7081 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7082 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
7083 | struct intel_ring_buffer *ring = &dev_priv->ring[BCS]; | |
cb05d8de | 7084 | uint32_t plane_bit = 0; |
7c9017e5 JB |
7085 | int ret; |
7086 | ||
7087 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); | |
7088 | if (ret) | |
83d4092b | 7089 | goto err; |
7c9017e5 | 7090 | |
cb05d8de DV |
7091 | switch(intel_crtc->plane) { |
7092 | case PLANE_A: | |
7093 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A; | |
7094 | break; | |
7095 | case PLANE_B: | |
7096 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B; | |
7097 | break; | |
7098 | case PLANE_C: | |
7099 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C; | |
7100 | break; | |
7101 | default: | |
7102 | WARN_ONCE(1, "unknown plane in flip command\n"); | |
7103 | ret = -ENODEV; | |
ab3951eb | 7104 | goto err_unpin; |
cb05d8de DV |
7105 | } |
7106 | ||
7c9017e5 JB |
7107 | ret = intel_ring_begin(ring, 4); |
7108 | if (ret) | |
83d4092b | 7109 | goto err_unpin; |
7c9017e5 | 7110 | |
cb05d8de | 7111 | intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit); |
01f2c773 | 7112 | intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode)); |
c2c75131 | 7113 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
7c9017e5 | 7114 | intel_ring_emit(ring, (MI_NOOP)); |
e7d841ca CW |
7115 | |
7116 | intel_mark_page_flip_active(intel_crtc); | |
7c9017e5 | 7117 | intel_ring_advance(ring); |
83d4092b CW |
7118 | return 0; |
7119 | ||
7120 | err_unpin: | |
7121 | intel_unpin_fb_obj(obj); | |
7122 | err: | |
7c9017e5 JB |
7123 | return ret; |
7124 | } | |
7125 | ||
8c9f3aaf JB |
7126 | static int intel_default_queue_flip(struct drm_device *dev, |
7127 | struct drm_crtc *crtc, | |
7128 | struct drm_framebuffer *fb, | |
7129 | struct drm_i915_gem_object *obj) | |
7130 | { | |
7131 | return -ENODEV; | |
7132 | } | |
7133 | ||
6b95a207 KH |
7134 | static int intel_crtc_page_flip(struct drm_crtc *crtc, |
7135 | struct drm_framebuffer *fb, | |
7136 | struct drm_pending_vblank_event *event) | |
7137 | { | |
7138 | struct drm_device *dev = crtc->dev; | |
7139 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7140 | struct intel_framebuffer *intel_fb; | |
05394f39 | 7141 | struct drm_i915_gem_object *obj; |
6b95a207 KH |
7142 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
7143 | struct intel_unpin_work *work; | |
8c9f3aaf | 7144 | unsigned long flags; |
52e68630 | 7145 | int ret; |
6b95a207 | 7146 | |
e6a595d2 VS |
7147 | /* Can't change pixel format via MI display flips. */ |
7148 | if (fb->pixel_format != crtc->fb->pixel_format) | |
7149 | return -EINVAL; | |
7150 | ||
7151 | /* | |
7152 | * TILEOFF/LINOFF registers can't be changed via MI display flips. | |
7153 | * Note that pitch changes could also affect these register. | |
7154 | */ | |
7155 | if (INTEL_INFO(dev)->gen > 3 && | |
7156 | (fb->offsets[0] != crtc->fb->offsets[0] || | |
7157 | fb->pitches[0] != crtc->fb->pitches[0])) | |
7158 | return -EINVAL; | |
7159 | ||
6b95a207 KH |
7160 | work = kzalloc(sizeof *work, GFP_KERNEL); |
7161 | if (work == NULL) | |
7162 | return -ENOMEM; | |
7163 | ||
6b95a207 | 7164 | work->event = event; |
b4a98e57 | 7165 | work->crtc = crtc; |
6b95a207 | 7166 | intel_fb = to_intel_framebuffer(crtc->fb); |
b1b87f6b | 7167 | work->old_fb_obj = intel_fb->obj; |
6b95a207 KH |
7168 | INIT_WORK(&work->work, intel_unpin_work_fn); |
7169 | ||
7317c75e JB |
7170 | ret = drm_vblank_get(dev, intel_crtc->pipe); |
7171 | if (ret) | |
7172 | goto free_work; | |
7173 | ||
6b95a207 KH |
7174 | /* We borrow the event spin lock for protecting unpin_work */ |
7175 | spin_lock_irqsave(&dev->event_lock, flags); | |
7176 | if (intel_crtc->unpin_work) { | |
7177 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
7178 | kfree(work); | |
7317c75e | 7179 | drm_vblank_put(dev, intel_crtc->pipe); |
468f0b44 CW |
7180 | |
7181 | DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); | |
6b95a207 KH |
7182 | return -EBUSY; |
7183 | } | |
7184 | intel_crtc->unpin_work = work; | |
7185 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
7186 | ||
7187 | intel_fb = to_intel_framebuffer(fb); | |
7188 | obj = intel_fb->obj; | |
7189 | ||
b4a98e57 CW |
7190 | if (atomic_read(&intel_crtc->unpin_work_count) >= 2) |
7191 | flush_workqueue(dev_priv->wq); | |
7192 | ||
79158103 CW |
7193 | ret = i915_mutex_lock_interruptible(dev); |
7194 | if (ret) | |
7195 | goto cleanup; | |
6b95a207 | 7196 | |
75dfca80 | 7197 | /* Reference the objects for the scheduled work. */ |
05394f39 CW |
7198 | drm_gem_object_reference(&work->old_fb_obj->base); |
7199 | drm_gem_object_reference(&obj->base); | |
6b95a207 KH |
7200 | |
7201 | crtc->fb = fb; | |
96b099fd | 7202 | |
e1f99ce6 | 7203 | work->pending_flip_obj = obj; |
e1f99ce6 | 7204 | |
4e5359cd SF |
7205 | work->enable_stall_check = true; |
7206 | ||
b4a98e57 | 7207 | atomic_inc(&intel_crtc->unpin_work_count); |
e1f99ce6 | 7208 | |
8c9f3aaf JB |
7209 | ret = dev_priv->display.queue_flip(dev, crtc, fb, obj); |
7210 | if (ret) | |
7211 | goto cleanup_pending; | |
6b95a207 | 7212 | |
7782de3b | 7213 | intel_disable_fbc(dev); |
f047e395 | 7214 | intel_mark_fb_busy(obj); |
6b95a207 KH |
7215 | mutex_unlock(&dev->struct_mutex); |
7216 | ||
e5510fac JB |
7217 | trace_i915_flip_request(intel_crtc->plane, obj); |
7218 | ||
6b95a207 | 7219 | return 0; |
96b099fd | 7220 | |
8c9f3aaf | 7221 | cleanup_pending: |
b4a98e57 | 7222 | atomic_dec(&intel_crtc->unpin_work_count); |
05394f39 CW |
7223 | drm_gem_object_unreference(&work->old_fb_obj->base); |
7224 | drm_gem_object_unreference(&obj->base); | |
96b099fd CW |
7225 | mutex_unlock(&dev->struct_mutex); |
7226 | ||
79158103 | 7227 | cleanup: |
96b099fd CW |
7228 | spin_lock_irqsave(&dev->event_lock, flags); |
7229 | intel_crtc->unpin_work = NULL; | |
7230 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
7231 | ||
7317c75e JB |
7232 | drm_vblank_put(dev, intel_crtc->pipe); |
7233 | free_work: | |
96b099fd CW |
7234 | kfree(work); |
7235 | ||
7236 | return ret; | |
6b95a207 KH |
7237 | } |
7238 | ||
f6e5b160 | 7239 | static struct drm_crtc_helper_funcs intel_helper_funcs = { |
f6e5b160 CW |
7240 | .mode_set_base_atomic = intel_pipe_set_base_atomic, |
7241 | .load_lut = intel_crtc_load_lut, | |
976f8a20 | 7242 | .disable = intel_crtc_noop, |
f6e5b160 CW |
7243 | }; |
7244 | ||
6ed0f796 | 7245 | bool intel_encoder_check_is_cloned(struct intel_encoder *encoder) |
47f1c6c9 | 7246 | { |
6ed0f796 DV |
7247 | struct intel_encoder *other_encoder; |
7248 | struct drm_crtc *crtc = &encoder->new_crtc->base; | |
47f1c6c9 | 7249 | |
6ed0f796 DV |
7250 | if (WARN_ON(!crtc)) |
7251 | return false; | |
7252 | ||
7253 | list_for_each_entry(other_encoder, | |
7254 | &crtc->dev->mode_config.encoder_list, | |
7255 | base.head) { | |
7256 | ||
7257 | if (&other_encoder->new_crtc->base != crtc || | |
7258 | encoder == other_encoder) | |
7259 | continue; | |
7260 | else | |
7261 | return true; | |
f47166d2 CW |
7262 | } |
7263 | ||
6ed0f796 DV |
7264 | return false; |
7265 | } | |
47f1c6c9 | 7266 | |
50f56119 DV |
7267 | static bool intel_encoder_crtc_ok(struct drm_encoder *encoder, |
7268 | struct drm_crtc *crtc) | |
7269 | { | |
7270 | struct drm_device *dev; | |
7271 | struct drm_crtc *tmp; | |
7272 | int crtc_mask = 1; | |
47f1c6c9 | 7273 | |
50f56119 | 7274 | WARN(!crtc, "checking null crtc?\n"); |
47f1c6c9 | 7275 | |
50f56119 | 7276 | dev = crtc->dev; |
47f1c6c9 | 7277 | |
50f56119 DV |
7278 | list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) { |
7279 | if (tmp == crtc) | |
7280 | break; | |
7281 | crtc_mask <<= 1; | |
7282 | } | |
47f1c6c9 | 7283 | |
50f56119 DV |
7284 | if (encoder->possible_crtcs & crtc_mask) |
7285 | return true; | |
7286 | return false; | |
47f1c6c9 | 7287 | } |
79e53945 | 7288 | |
9a935856 DV |
7289 | /** |
7290 | * intel_modeset_update_staged_output_state | |
7291 | * | |
7292 | * Updates the staged output configuration state, e.g. after we've read out the | |
7293 | * current hw state. | |
7294 | */ | |
7295 | static void intel_modeset_update_staged_output_state(struct drm_device *dev) | |
f6e5b160 | 7296 | { |
9a935856 DV |
7297 | struct intel_encoder *encoder; |
7298 | struct intel_connector *connector; | |
f6e5b160 | 7299 | |
9a935856 DV |
7300 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
7301 | base.head) { | |
7302 | connector->new_encoder = | |
7303 | to_intel_encoder(connector->base.encoder); | |
7304 | } | |
f6e5b160 | 7305 | |
9a935856 DV |
7306 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
7307 | base.head) { | |
7308 | encoder->new_crtc = | |
7309 | to_intel_crtc(encoder->base.crtc); | |
7310 | } | |
f6e5b160 CW |
7311 | } |
7312 | ||
9a935856 DV |
7313 | /** |
7314 | * intel_modeset_commit_output_state | |
7315 | * | |
7316 | * This function copies the stage display pipe configuration to the real one. | |
7317 | */ | |
7318 | static void intel_modeset_commit_output_state(struct drm_device *dev) | |
7319 | { | |
7320 | struct intel_encoder *encoder; | |
7321 | struct intel_connector *connector; | |
f6e5b160 | 7322 | |
9a935856 DV |
7323 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
7324 | base.head) { | |
7325 | connector->base.encoder = &connector->new_encoder->base; | |
7326 | } | |
f6e5b160 | 7327 | |
9a935856 DV |
7328 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
7329 | base.head) { | |
7330 | encoder->base.crtc = &encoder->new_crtc->base; | |
7331 | } | |
7332 | } | |
7333 | ||
7758a113 DV |
7334 | static struct drm_display_mode * |
7335 | intel_modeset_adjusted_mode(struct drm_crtc *crtc, | |
7336 | struct drm_display_mode *mode) | |
ee7b9f93 | 7337 | { |
7758a113 DV |
7338 | struct drm_device *dev = crtc->dev; |
7339 | struct drm_display_mode *adjusted_mode; | |
7340 | struct drm_encoder_helper_funcs *encoder_funcs; | |
7341 | struct intel_encoder *encoder; | |
ee7b9f93 | 7342 | |
7758a113 DV |
7343 | adjusted_mode = drm_mode_duplicate(dev, mode); |
7344 | if (!adjusted_mode) | |
7345 | return ERR_PTR(-ENOMEM); | |
7346 | ||
7347 | /* Pass our mode to the connectors and the CRTC to give them a chance to | |
7348 | * adjust it according to limitations or connector properties, and also | |
7349 | * a chance to reject the mode entirely. | |
47f1c6c9 | 7350 | */ |
7758a113 DV |
7351 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
7352 | base.head) { | |
47f1c6c9 | 7353 | |
7758a113 DV |
7354 | if (&encoder->new_crtc->base != crtc) |
7355 | continue; | |
7356 | encoder_funcs = encoder->base.helper_private; | |
7357 | if (!(encoder_funcs->mode_fixup(&encoder->base, mode, | |
7358 | adjusted_mode))) { | |
7359 | DRM_DEBUG_KMS("Encoder fixup failed\n"); | |
7360 | goto fail; | |
7361 | } | |
ee7b9f93 | 7362 | } |
47f1c6c9 | 7363 | |
7758a113 DV |
7364 | if (!(intel_crtc_mode_fixup(crtc, mode, adjusted_mode))) { |
7365 | DRM_DEBUG_KMS("CRTC fixup failed\n"); | |
7366 | goto fail; | |
ee7b9f93 | 7367 | } |
7758a113 | 7368 | DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id); |
47f1c6c9 | 7369 | |
7758a113 DV |
7370 | return adjusted_mode; |
7371 | fail: | |
7372 | drm_mode_destroy(dev, adjusted_mode); | |
7373 | return ERR_PTR(-EINVAL); | |
ee7b9f93 | 7374 | } |
47f1c6c9 | 7375 | |
e2e1ed41 DV |
7376 | /* Computes which crtcs are affected and sets the relevant bits in the mask. For |
7377 | * simplicity we use the crtc's pipe number (because it's easier to obtain). */ | |
7378 | static void | |
7379 | intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes, | |
7380 | unsigned *prepare_pipes, unsigned *disable_pipes) | |
79e53945 JB |
7381 | { |
7382 | struct intel_crtc *intel_crtc; | |
e2e1ed41 DV |
7383 | struct drm_device *dev = crtc->dev; |
7384 | struct intel_encoder *encoder; | |
7385 | struct intel_connector *connector; | |
7386 | struct drm_crtc *tmp_crtc; | |
79e53945 | 7387 | |
e2e1ed41 | 7388 | *disable_pipes = *modeset_pipes = *prepare_pipes = 0; |
79e53945 | 7389 | |
e2e1ed41 DV |
7390 | /* Check which crtcs have changed outputs connected to them, these need |
7391 | * to be part of the prepare_pipes mask. We don't (yet) support global | |
7392 | * modeset across multiple crtcs, so modeset_pipes will only have one | |
7393 | * bit set at most. */ | |
7394 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
7395 | base.head) { | |
7396 | if (connector->base.encoder == &connector->new_encoder->base) | |
7397 | continue; | |
79e53945 | 7398 | |
e2e1ed41 DV |
7399 | if (connector->base.encoder) { |
7400 | tmp_crtc = connector->base.encoder->crtc; | |
7401 | ||
7402 | *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe; | |
7403 | } | |
7404 | ||
7405 | if (connector->new_encoder) | |
7406 | *prepare_pipes |= | |
7407 | 1 << connector->new_encoder->new_crtc->pipe; | |
79e53945 JB |
7408 | } |
7409 | ||
e2e1ed41 DV |
7410 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
7411 | base.head) { | |
7412 | if (encoder->base.crtc == &encoder->new_crtc->base) | |
7413 | continue; | |
7414 | ||
7415 | if (encoder->base.crtc) { | |
7416 | tmp_crtc = encoder->base.crtc; | |
7417 | ||
7418 | *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe; | |
7419 | } | |
7420 | ||
7421 | if (encoder->new_crtc) | |
7422 | *prepare_pipes |= 1 << encoder->new_crtc->pipe; | |
80824003 JB |
7423 | } |
7424 | ||
e2e1ed41 DV |
7425 | /* Check for any pipes that will be fully disabled ... */ |
7426 | list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, | |
7427 | base.head) { | |
7428 | bool used = false; | |
22fd0fab | 7429 | |
e2e1ed41 DV |
7430 | /* Don't try to disable disabled crtcs. */ |
7431 | if (!intel_crtc->base.enabled) | |
7432 | continue; | |
7e7d76c3 | 7433 | |
e2e1ed41 DV |
7434 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
7435 | base.head) { | |
7436 | if (encoder->new_crtc == intel_crtc) | |
7437 | used = true; | |
7438 | } | |
7439 | ||
7440 | if (!used) | |
7441 | *disable_pipes |= 1 << intel_crtc->pipe; | |
7e7d76c3 JB |
7442 | } |
7443 | ||
e2e1ed41 DV |
7444 | |
7445 | /* set_mode is also used to update properties on life display pipes. */ | |
7446 | intel_crtc = to_intel_crtc(crtc); | |
7447 | if (crtc->enabled) | |
7448 | *prepare_pipes |= 1 << intel_crtc->pipe; | |
7449 | ||
7450 | /* We only support modeset on one single crtc, hence we need to do that | |
7451 | * only for the passed in crtc iff we change anything else than just | |
7452 | * disable crtcs. | |
7453 | * | |
7454 | * This is actually not true, to be fully compatible with the old crtc | |
7455 | * helper we automatically disable _any_ output (i.e. doesn't need to be | |
7456 | * connected to the crtc we're modesetting on) if it's disconnected. | |
7457 | * Which is a rather nutty api (since changed the output configuration | |
7458 | * without userspace's explicit request can lead to confusion), but | |
7459 | * alas. Hence we currently need to modeset on all pipes we prepare. */ | |
7460 | if (*prepare_pipes) | |
7461 | *modeset_pipes = *prepare_pipes; | |
7462 | ||
7463 | /* ... and mask these out. */ | |
7464 | *modeset_pipes &= ~(*disable_pipes); | |
7465 | *prepare_pipes &= ~(*disable_pipes); | |
47f1c6c9 | 7466 | } |
79e53945 | 7467 | |
ea9d758d | 7468 | static bool intel_crtc_in_use(struct drm_crtc *crtc) |
f6e5b160 | 7469 | { |
ea9d758d | 7470 | struct drm_encoder *encoder; |
f6e5b160 | 7471 | struct drm_device *dev = crtc->dev; |
f6e5b160 | 7472 | |
ea9d758d DV |
7473 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) |
7474 | if (encoder->crtc == crtc) | |
7475 | return true; | |
7476 | ||
7477 | return false; | |
7478 | } | |
7479 | ||
7480 | static void | |
7481 | intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes) | |
7482 | { | |
7483 | struct intel_encoder *intel_encoder; | |
7484 | struct intel_crtc *intel_crtc; | |
7485 | struct drm_connector *connector; | |
7486 | ||
7487 | list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list, | |
7488 | base.head) { | |
7489 | if (!intel_encoder->base.crtc) | |
7490 | continue; | |
7491 | ||
7492 | intel_crtc = to_intel_crtc(intel_encoder->base.crtc); | |
7493 | ||
7494 | if (prepare_pipes & (1 << intel_crtc->pipe)) | |
7495 | intel_encoder->connectors_active = false; | |
7496 | } | |
7497 | ||
7498 | intel_modeset_commit_output_state(dev); | |
7499 | ||
7500 | /* Update computed state. */ | |
7501 | list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, | |
7502 | base.head) { | |
7503 | intel_crtc->base.enabled = intel_crtc_in_use(&intel_crtc->base); | |
7504 | } | |
7505 | ||
7506 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { | |
7507 | if (!connector->encoder || !connector->encoder->crtc) | |
7508 | continue; | |
7509 | ||
7510 | intel_crtc = to_intel_crtc(connector->encoder->crtc); | |
7511 | ||
7512 | if (prepare_pipes & (1 << intel_crtc->pipe)) { | |
68d34720 DV |
7513 | struct drm_property *dpms_property = |
7514 | dev->mode_config.dpms_property; | |
7515 | ||
ea9d758d | 7516 | connector->dpms = DRM_MODE_DPMS_ON; |
662595df | 7517 | drm_object_property_set_value(&connector->base, |
68d34720 DV |
7518 | dpms_property, |
7519 | DRM_MODE_DPMS_ON); | |
ea9d758d DV |
7520 | |
7521 | intel_encoder = to_intel_encoder(connector->encoder); | |
7522 | intel_encoder->connectors_active = true; | |
7523 | } | |
7524 | } | |
7525 | ||
7526 | } | |
7527 | ||
25c5b266 DV |
7528 | #define for_each_intel_crtc_masked(dev, mask, intel_crtc) \ |
7529 | list_for_each_entry((intel_crtc), \ | |
7530 | &(dev)->mode_config.crtc_list, \ | |
7531 | base.head) \ | |
7532 | if (mask & (1 <<(intel_crtc)->pipe)) \ | |
7533 | ||
b980514c | 7534 | void |
8af6cf88 DV |
7535 | intel_modeset_check_state(struct drm_device *dev) |
7536 | { | |
7537 | struct intel_crtc *crtc; | |
7538 | struct intel_encoder *encoder; | |
7539 | struct intel_connector *connector; | |
7540 | ||
7541 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
7542 | base.head) { | |
7543 | /* This also checks the encoder/connector hw state with the | |
7544 | * ->get_hw_state callbacks. */ | |
7545 | intel_connector_check_state(connector); | |
7546 | ||
7547 | WARN(&connector->new_encoder->base != connector->base.encoder, | |
7548 | "connector's staged encoder doesn't match current encoder\n"); | |
7549 | } | |
7550 | ||
7551 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, | |
7552 | base.head) { | |
7553 | bool enabled = false; | |
7554 | bool active = false; | |
7555 | enum pipe pipe, tracked_pipe; | |
7556 | ||
7557 | DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", | |
7558 | encoder->base.base.id, | |
7559 | drm_get_encoder_name(&encoder->base)); | |
7560 | ||
7561 | WARN(&encoder->new_crtc->base != encoder->base.crtc, | |
7562 | "encoder's stage crtc doesn't match current crtc\n"); | |
7563 | WARN(encoder->connectors_active && !encoder->base.crtc, | |
7564 | "encoder's active_connectors set, but no crtc\n"); | |
7565 | ||
7566 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
7567 | base.head) { | |
7568 | if (connector->base.encoder != &encoder->base) | |
7569 | continue; | |
7570 | enabled = true; | |
7571 | if (connector->base.dpms != DRM_MODE_DPMS_OFF) | |
7572 | active = true; | |
7573 | } | |
7574 | WARN(!!encoder->base.crtc != enabled, | |
7575 | "encoder's enabled state mismatch " | |
7576 | "(expected %i, found %i)\n", | |
7577 | !!encoder->base.crtc, enabled); | |
7578 | WARN(active && !encoder->base.crtc, | |
7579 | "active encoder with no crtc\n"); | |
7580 | ||
7581 | WARN(encoder->connectors_active != active, | |
7582 | "encoder's computed active state doesn't match tracked active state " | |
7583 | "(expected %i, found %i)\n", active, encoder->connectors_active); | |
7584 | ||
7585 | active = encoder->get_hw_state(encoder, &pipe); | |
7586 | WARN(active != encoder->connectors_active, | |
7587 | "encoder's hw state doesn't match sw tracking " | |
7588 | "(expected %i, found %i)\n", | |
7589 | encoder->connectors_active, active); | |
7590 | ||
7591 | if (!encoder->base.crtc) | |
7592 | continue; | |
7593 | ||
7594 | tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe; | |
7595 | WARN(active && pipe != tracked_pipe, | |
7596 | "active encoder's pipe doesn't match" | |
7597 | "(expected %i, found %i)\n", | |
7598 | tracked_pipe, pipe); | |
7599 | ||
7600 | } | |
7601 | ||
7602 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, | |
7603 | base.head) { | |
7604 | bool enabled = false; | |
7605 | bool active = false; | |
7606 | ||
7607 | DRM_DEBUG_KMS("[CRTC:%d]\n", | |
7608 | crtc->base.base.id); | |
7609 | ||
7610 | WARN(crtc->active && !crtc->base.enabled, | |
7611 | "active crtc, but not enabled in sw tracking\n"); | |
7612 | ||
7613 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, | |
7614 | base.head) { | |
7615 | if (encoder->base.crtc != &crtc->base) | |
7616 | continue; | |
7617 | enabled = true; | |
7618 | if (encoder->connectors_active) | |
7619 | active = true; | |
7620 | } | |
7621 | WARN(active != crtc->active, | |
7622 | "crtc's computed active state doesn't match tracked active state " | |
7623 | "(expected %i, found %i)\n", active, crtc->active); | |
7624 | WARN(enabled != crtc->base.enabled, | |
7625 | "crtc's computed enabled state doesn't match tracked enabled state " | |
7626 | "(expected %i, found %i)\n", enabled, crtc->base.enabled); | |
7627 | ||
7628 | assert_pipe(dev->dev_private, crtc->pipe, crtc->active); | |
7629 | } | |
7630 | } | |
7631 | ||
c0c36b94 CW |
7632 | int intel_set_mode(struct drm_crtc *crtc, |
7633 | struct drm_display_mode *mode, | |
7634 | int x, int y, struct drm_framebuffer *fb) | |
a6778b3c DV |
7635 | { |
7636 | struct drm_device *dev = crtc->dev; | |
dbf2b54e | 7637 | drm_i915_private_t *dev_priv = dev->dev_private; |
3ac18232 | 7638 | struct drm_display_mode *adjusted_mode, *saved_mode, *saved_hwmode; |
25c5b266 DV |
7639 | struct intel_crtc *intel_crtc; |
7640 | unsigned disable_pipes, prepare_pipes, modeset_pipes; | |
c0c36b94 | 7641 | int ret = 0; |
a6778b3c | 7642 | |
3ac18232 | 7643 | saved_mode = kmalloc(2 * sizeof(*saved_mode), GFP_KERNEL); |
c0c36b94 CW |
7644 | if (!saved_mode) |
7645 | return -ENOMEM; | |
3ac18232 | 7646 | saved_hwmode = saved_mode + 1; |
a6778b3c | 7647 | |
e2e1ed41 | 7648 | intel_modeset_affected_pipes(crtc, &modeset_pipes, |
25c5b266 DV |
7649 | &prepare_pipes, &disable_pipes); |
7650 | ||
7651 | DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n", | |
7652 | modeset_pipes, prepare_pipes, disable_pipes); | |
e2e1ed41 | 7653 | |
976f8a20 DV |
7654 | for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc) |
7655 | intel_crtc_disable(&intel_crtc->base); | |
87f1faa6 | 7656 | |
3ac18232 TG |
7657 | *saved_hwmode = crtc->hwmode; |
7658 | *saved_mode = crtc->mode; | |
a6778b3c | 7659 | |
25c5b266 DV |
7660 | /* Hack: Because we don't (yet) support global modeset on multiple |
7661 | * crtcs, we don't keep track of the new mode for more than one crtc. | |
7662 | * Hence simply check whether any bit is set in modeset_pipes in all the | |
7663 | * pieces of code that are not yet converted to deal with mutliple crtcs | |
7664 | * changing their mode at the same time. */ | |
7665 | adjusted_mode = NULL; | |
7666 | if (modeset_pipes) { | |
7667 | adjusted_mode = intel_modeset_adjusted_mode(crtc, mode); | |
7668 | if (IS_ERR(adjusted_mode)) { | |
c0c36b94 | 7669 | ret = PTR_ERR(adjusted_mode); |
3ac18232 | 7670 | goto out; |
25c5b266 | 7671 | } |
25c5b266 | 7672 | } |
a6778b3c | 7673 | |
ea9d758d DV |
7674 | for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) { |
7675 | if (intel_crtc->base.enabled) | |
7676 | dev_priv->display.crtc_disable(&intel_crtc->base); | |
7677 | } | |
a6778b3c | 7678 | |
6c4c86f5 DV |
7679 | /* crtc->mode is already used by the ->mode_set callbacks, hence we need |
7680 | * to set it here already despite that we pass it down the callchain. | |
f6e5b160 | 7681 | */ |
6c4c86f5 | 7682 | if (modeset_pipes) |
25c5b266 | 7683 | crtc->mode = *mode; |
7758a113 | 7684 | |
ea9d758d DV |
7685 | /* Only after disabling all output pipelines that will be changed can we |
7686 | * update the the output configuration. */ | |
7687 | intel_modeset_update_state(dev, prepare_pipes); | |
f6e5b160 | 7688 | |
47fab737 DV |
7689 | if (dev_priv->display.modeset_global_resources) |
7690 | dev_priv->display.modeset_global_resources(dev); | |
7691 | ||
a6778b3c DV |
7692 | /* Set up the DPLL and any encoders state that needs to adjust or depend |
7693 | * on the DPLL. | |
f6e5b160 | 7694 | */ |
25c5b266 | 7695 | for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) { |
c0c36b94 CW |
7696 | ret = intel_crtc_mode_set(&intel_crtc->base, |
7697 | mode, adjusted_mode, | |
7698 | x, y, fb); | |
7699 | if (ret) | |
7700 | goto done; | |
a6778b3c DV |
7701 | } |
7702 | ||
7703 | /* Now enable the clocks, plane, pipe, and connectors that we set up. */ | |
25c5b266 DV |
7704 | for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) |
7705 | dev_priv->display.crtc_enable(&intel_crtc->base); | |
a6778b3c | 7706 | |
25c5b266 DV |
7707 | if (modeset_pipes) { |
7708 | /* Store real post-adjustment hardware mode. */ | |
7709 | crtc->hwmode = *adjusted_mode; | |
a6778b3c | 7710 | |
25c5b266 DV |
7711 | /* Calculate and store various constants which |
7712 | * are later needed by vblank and swap-completion | |
7713 | * timestamping. They are derived from true hwmode. | |
7714 | */ | |
7715 | drm_calc_timestamping_constants(crtc); | |
7716 | } | |
a6778b3c DV |
7717 | |
7718 | /* FIXME: add subpixel order */ | |
7719 | done: | |
7720 | drm_mode_destroy(dev, adjusted_mode); | |
c0c36b94 | 7721 | if (ret && crtc->enabled) { |
3ac18232 TG |
7722 | crtc->hwmode = *saved_hwmode; |
7723 | crtc->mode = *saved_mode; | |
8af6cf88 DV |
7724 | } else { |
7725 | intel_modeset_check_state(dev); | |
a6778b3c DV |
7726 | } |
7727 | ||
3ac18232 TG |
7728 | out: |
7729 | kfree(saved_mode); | |
a6778b3c | 7730 | return ret; |
f6e5b160 CW |
7731 | } |
7732 | ||
c0c36b94 CW |
7733 | void intel_crtc_restore_mode(struct drm_crtc *crtc) |
7734 | { | |
7735 | intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->fb); | |
7736 | } | |
7737 | ||
25c5b266 DV |
7738 | #undef for_each_intel_crtc_masked |
7739 | ||
d9e55608 DV |
7740 | static void intel_set_config_free(struct intel_set_config *config) |
7741 | { | |
7742 | if (!config) | |
7743 | return; | |
7744 | ||
1aa4b628 DV |
7745 | kfree(config->save_connector_encoders); |
7746 | kfree(config->save_encoder_crtcs); | |
d9e55608 DV |
7747 | kfree(config); |
7748 | } | |
7749 | ||
85f9eb71 DV |
7750 | static int intel_set_config_save_state(struct drm_device *dev, |
7751 | struct intel_set_config *config) | |
7752 | { | |
85f9eb71 DV |
7753 | struct drm_encoder *encoder; |
7754 | struct drm_connector *connector; | |
7755 | int count; | |
7756 | ||
1aa4b628 DV |
7757 | config->save_encoder_crtcs = |
7758 | kcalloc(dev->mode_config.num_encoder, | |
7759 | sizeof(struct drm_crtc *), GFP_KERNEL); | |
7760 | if (!config->save_encoder_crtcs) | |
85f9eb71 DV |
7761 | return -ENOMEM; |
7762 | ||
1aa4b628 DV |
7763 | config->save_connector_encoders = |
7764 | kcalloc(dev->mode_config.num_connector, | |
7765 | sizeof(struct drm_encoder *), GFP_KERNEL); | |
7766 | if (!config->save_connector_encoders) | |
85f9eb71 DV |
7767 | return -ENOMEM; |
7768 | ||
7769 | /* Copy data. Note that driver private data is not affected. | |
7770 | * Should anything bad happen only the expected state is | |
7771 | * restored, not the drivers personal bookkeeping. | |
7772 | */ | |
85f9eb71 DV |
7773 | count = 0; |
7774 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { | |
1aa4b628 | 7775 | config->save_encoder_crtcs[count++] = encoder->crtc; |
85f9eb71 DV |
7776 | } |
7777 | ||
7778 | count = 0; | |
7779 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { | |
1aa4b628 | 7780 | config->save_connector_encoders[count++] = connector->encoder; |
85f9eb71 DV |
7781 | } |
7782 | ||
7783 | return 0; | |
7784 | } | |
7785 | ||
7786 | static void intel_set_config_restore_state(struct drm_device *dev, | |
7787 | struct intel_set_config *config) | |
7788 | { | |
9a935856 DV |
7789 | struct intel_encoder *encoder; |
7790 | struct intel_connector *connector; | |
85f9eb71 DV |
7791 | int count; |
7792 | ||
85f9eb71 | 7793 | count = 0; |
9a935856 DV |
7794 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) { |
7795 | encoder->new_crtc = | |
7796 | to_intel_crtc(config->save_encoder_crtcs[count++]); | |
85f9eb71 DV |
7797 | } |
7798 | ||
7799 | count = 0; | |
9a935856 DV |
7800 | list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) { |
7801 | connector->new_encoder = | |
7802 | to_intel_encoder(config->save_connector_encoders[count++]); | |
85f9eb71 DV |
7803 | } |
7804 | } | |
7805 | ||
5e2b584e DV |
7806 | static void |
7807 | intel_set_config_compute_mode_changes(struct drm_mode_set *set, | |
7808 | struct intel_set_config *config) | |
7809 | { | |
7810 | ||
7811 | /* We should be able to check here if the fb has the same properties | |
7812 | * and then just flip_or_move it */ | |
7813 | if (set->crtc->fb != set->fb) { | |
7814 | /* If we have no fb then treat it as a full mode set */ | |
7815 | if (set->crtc->fb == NULL) { | |
7816 | DRM_DEBUG_KMS("crtc has no fb, full mode set\n"); | |
7817 | config->mode_changed = true; | |
7818 | } else if (set->fb == NULL) { | |
7819 | config->mode_changed = true; | |
7820 | } else if (set->fb->depth != set->crtc->fb->depth) { | |
7821 | config->mode_changed = true; | |
7822 | } else if (set->fb->bits_per_pixel != | |
7823 | set->crtc->fb->bits_per_pixel) { | |
7824 | config->mode_changed = true; | |
7825 | } else | |
7826 | config->fb_changed = true; | |
7827 | } | |
7828 | ||
835c5873 | 7829 | if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y)) |
5e2b584e DV |
7830 | config->fb_changed = true; |
7831 | ||
7832 | if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) { | |
7833 | DRM_DEBUG_KMS("modes are different, full mode set\n"); | |
7834 | drm_mode_debug_printmodeline(&set->crtc->mode); | |
7835 | drm_mode_debug_printmodeline(set->mode); | |
7836 | config->mode_changed = true; | |
7837 | } | |
7838 | } | |
7839 | ||
2e431051 | 7840 | static int |
9a935856 DV |
7841 | intel_modeset_stage_output_state(struct drm_device *dev, |
7842 | struct drm_mode_set *set, | |
7843 | struct intel_set_config *config) | |
50f56119 | 7844 | { |
85f9eb71 | 7845 | struct drm_crtc *new_crtc; |
9a935856 DV |
7846 | struct intel_connector *connector; |
7847 | struct intel_encoder *encoder; | |
2e431051 | 7848 | int count, ro; |
50f56119 | 7849 | |
9a935856 DV |
7850 | /* The upper layers ensure that we either disabl a crtc or have a list |
7851 | * of connectors. For paranoia, double-check this. */ | |
7852 | WARN_ON(!set->fb && (set->num_connectors != 0)); | |
7853 | WARN_ON(set->fb && (set->num_connectors == 0)); | |
7854 | ||
50f56119 | 7855 | count = 0; |
9a935856 DV |
7856 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
7857 | base.head) { | |
7858 | /* Otherwise traverse passed in connector list and get encoders | |
7859 | * for them. */ | |
50f56119 | 7860 | for (ro = 0; ro < set->num_connectors; ro++) { |
9a935856 DV |
7861 | if (set->connectors[ro] == &connector->base) { |
7862 | connector->new_encoder = connector->encoder; | |
50f56119 DV |
7863 | break; |
7864 | } | |
7865 | } | |
7866 | ||
9a935856 DV |
7867 | /* If we disable the crtc, disable all its connectors. Also, if |
7868 | * the connector is on the changing crtc but not on the new | |
7869 | * connector list, disable it. */ | |
7870 | if ((!set->fb || ro == set->num_connectors) && | |
7871 | connector->base.encoder && | |
7872 | connector->base.encoder->crtc == set->crtc) { | |
7873 | connector->new_encoder = NULL; | |
7874 | ||
7875 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n", | |
7876 | connector->base.base.id, | |
7877 | drm_get_connector_name(&connector->base)); | |
7878 | } | |
7879 | ||
7880 | ||
7881 | if (&connector->new_encoder->base != connector->base.encoder) { | |
50f56119 | 7882 | DRM_DEBUG_KMS("encoder changed, full mode switch\n"); |
5e2b584e | 7883 | config->mode_changed = true; |
50f56119 DV |
7884 | } |
7885 | } | |
9a935856 | 7886 | /* connector->new_encoder is now updated for all connectors. */ |
50f56119 | 7887 | |
9a935856 | 7888 | /* Update crtc of enabled connectors. */ |
50f56119 | 7889 | count = 0; |
9a935856 DV |
7890 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
7891 | base.head) { | |
7892 | if (!connector->new_encoder) | |
50f56119 DV |
7893 | continue; |
7894 | ||
9a935856 | 7895 | new_crtc = connector->new_encoder->base.crtc; |
50f56119 DV |
7896 | |
7897 | for (ro = 0; ro < set->num_connectors; ro++) { | |
9a935856 | 7898 | if (set->connectors[ro] == &connector->base) |
50f56119 DV |
7899 | new_crtc = set->crtc; |
7900 | } | |
7901 | ||
7902 | /* Make sure the new CRTC will work with the encoder */ | |
9a935856 DV |
7903 | if (!intel_encoder_crtc_ok(&connector->new_encoder->base, |
7904 | new_crtc)) { | |
5e2b584e | 7905 | return -EINVAL; |
50f56119 | 7906 | } |
9a935856 DV |
7907 | connector->encoder->new_crtc = to_intel_crtc(new_crtc); |
7908 | ||
7909 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n", | |
7910 | connector->base.base.id, | |
7911 | drm_get_connector_name(&connector->base), | |
7912 | new_crtc->base.id); | |
7913 | } | |
7914 | ||
7915 | /* Check for any encoders that needs to be disabled. */ | |
7916 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, | |
7917 | base.head) { | |
7918 | list_for_each_entry(connector, | |
7919 | &dev->mode_config.connector_list, | |
7920 | base.head) { | |
7921 | if (connector->new_encoder == encoder) { | |
7922 | WARN_ON(!connector->new_encoder->new_crtc); | |
7923 | ||
7924 | goto next_encoder; | |
7925 | } | |
7926 | } | |
7927 | encoder->new_crtc = NULL; | |
7928 | next_encoder: | |
7929 | /* Only now check for crtc changes so we don't miss encoders | |
7930 | * that will be disabled. */ | |
7931 | if (&encoder->new_crtc->base != encoder->base.crtc) { | |
50f56119 | 7932 | DRM_DEBUG_KMS("crtc changed, full mode switch\n"); |
5e2b584e | 7933 | config->mode_changed = true; |
50f56119 DV |
7934 | } |
7935 | } | |
9a935856 | 7936 | /* Now we've also updated encoder->new_crtc for all encoders. */ |
50f56119 | 7937 | |
2e431051 DV |
7938 | return 0; |
7939 | } | |
7940 | ||
7941 | static int intel_crtc_set_config(struct drm_mode_set *set) | |
7942 | { | |
7943 | struct drm_device *dev; | |
2e431051 DV |
7944 | struct drm_mode_set save_set; |
7945 | struct intel_set_config *config; | |
7946 | int ret; | |
2e431051 | 7947 | |
8d3e375e DV |
7948 | BUG_ON(!set); |
7949 | BUG_ON(!set->crtc); | |
7950 | BUG_ON(!set->crtc->helper_private); | |
2e431051 DV |
7951 | |
7952 | if (!set->mode) | |
7953 | set->fb = NULL; | |
7954 | ||
431e50f7 DV |
7955 | /* The fb helper likes to play gross jokes with ->mode_set_config. |
7956 | * Unfortunately the crtc helper doesn't do much at all for this case, | |
7957 | * so we have to cope with this madness until the fb helper is fixed up. */ | |
7958 | if (set->fb && set->num_connectors == 0) | |
7959 | return 0; | |
7960 | ||
2e431051 DV |
7961 | if (set->fb) { |
7962 | DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n", | |
7963 | set->crtc->base.id, set->fb->base.id, | |
7964 | (int)set->num_connectors, set->x, set->y); | |
7965 | } else { | |
7966 | DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id); | |
2e431051 DV |
7967 | } |
7968 | ||
7969 | dev = set->crtc->dev; | |
7970 | ||
7971 | ret = -ENOMEM; | |
7972 | config = kzalloc(sizeof(*config), GFP_KERNEL); | |
7973 | if (!config) | |
7974 | goto out_config; | |
7975 | ||
7976 | ret = intel_set_config_save_state(dev, config); | |
7977 | if (ret) | |
7978 | goto out_config; | |
7979 | ||
7980 | save_set.crtc = set->crtc; | |
7981 | save_set.mode = &set->crtc->mode; | |
7982 | save_set.x = set->crtc->x; | |
7983 | save_set.y = set->crtc->y; | |
7984 | save_set.fb = set->crtc->fb; | |
7985 | ||
7986 | /* Compute whether we need a full modeset, only an fb base update or no | |
7987 | * change at all. In the future we might also check whether only the | |
7988 | * mode changed, e.g. for LVDS where we only change the panel fitter in | |
7989 | * such cases. */ | |
7990 | intel_set_config_compute_mode_changes(set, config); | |
7991 | ||
9a935856 | 7992 | ret = intel_modeset_stage_output_state(dev, set, config); |
2e431051 DV |
7993 | if (ret) |
7994 | goto fail; | |
7995 | ||
5e2b584e | 7996 | if (config->mode_changed) { |
87f1faa6 | 7997 | if (set->mode) { |
50f56119 DV |
7998 | DRM_DEBUG_KMS("attempting to set mode from" |
7999 | " userspace\n"); | |
8000 | drm_mode_debug_printmodeline(set->mode); | |
87f1faa6 DV |
8001 | } |
8002 | ||
c0c36b94 CW |
8003 | ret = intel_set_mode(set->crtc, set->mode, |
8004 | set->x, set->y, set->fb); | |
8005 | if (ret) { | |
8006 | DRM_ERROR("failed to set mode on [CRTC:%d], err = %d\n", | |
8007 | set->crtc->base.id, ret); | |
87f1faa6 DV |
8008 | goto fail; |
8009 | } | |
5e2b584e | 8010 | } else if (config->fb_changed) { |
4f660f49 | 8011 | ret = intel_pipe_set_base(set->crtc, |
94352cf9 | 8012 | set->x, set->y, set->fb); |
50f56119 DV |
8013 | } |
8014 | ||
d9e55608 DV |
8015 | intel_set_config_free(config); |
8016 | ||
50f56119 DV |
8017 | return 0; |
8018 | ||
8019 | fail: | |
85f9eb71 | 8020 | intel_set_config_restore_state(dev, config); |
50f56119 DV |
8021 | |
8022 | /* Try to restore the config */ | |
5e2b584e | 8023 | if (config->mode_changed && |
c0c36b94 CW |
8024 | intel_set_mode(save_set.crtc, save_set.mode, |
8025 | save_set.x, save_set.y, save_set.fb)) | |
50f56119 DV |
8026 | DRM_ERROR("failed to restore config after modeset failure\n"); |
8027 | ||
d9e55608 DV |
8028 | out_config: |
8029 | intel_set_config_free(config); | |
50f56119 DV |
8030 | return ret; |
8031 | } | |
f6e5b160 CW |
8032 | |
8033 | static const struct drm_crtc_funcs intel_crtc_funcs = { | |
f6e5b160 CW |
8034 | .cursor_set = intel_crtc_cursor_set, |
8035 | .cursor_move = intel_crtc_cursor_move, | |
8036 | .gamma_set = intel_crtc_gamma_set, | |
50f56119 | 8037 | .set_config = intel_crtc_set_config, |
f6e5b160 CW |
8038 | .destroy = intel_crtc_destroy, |
8039 | .page_flip = intel_crtc_page_flip, | |
8040 | }; | |
8041 | ||
79f689aa PZ |
8042 | static void intel_cpu_pll_init(struct drm_device *dev) |
8043 | { | |
affa9354 | 8044 | if (HAS_DDI(dev)) |
79f689aa PZ |
8045 | intel_ddi_pll_init(dev); |
8046 | } | |
8047 | ||
ee7b9f93 JB |
8048 | static void intel_pch_pll_init(struct drm_device *dev) |
8049 | { | |
8050 | drm_i915_private_t *dev_priv = dev->dev_private; | |
8051 | int i; | |
8052 | ||
8053 | if (dev_priv->num_pch_pll == 0) { | |
8054 | DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n"); | |
8055 | return; | |
8056 | } | |
8057 | ||
8058 | for (i = 0; i < dev_priv->num_pch_pll; i++) { | |
8059 | dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i); | |
8060 | dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i); | |
8061 | dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i); | |
8062 | } | |
8063 | } | |
8064 | ||
b358d0a6 | 8065 | static void intel_crtc_init(struct drm_device *dev, int pipe) |
79e53945 | 8066 | { |
22fd0fab | 8067 | drm_i915_private_t *dev_priv = dev->dev_private; |
79e53945 JB |
8068 | struct intel_crtc *intel_crtc; |
8069 | int i; | |
8070 | ||
8071 | intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL); | |
8072 | if (intel_crtc == NULL) | |
8073 | return; | |
8074 | ||
8075 | drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs); | |
8076 | ||
8077 | drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256); | |
79e53945 JB |
8078 | for (i = 0; i < 256; i++) { |
8079 | intel_crtc->lut_r[i] = i; | |
8080 | intel_crtc->lut_g[i] = i; | |
8081 | intel_crtc->lut_b[i] = i; | |
8082 | } | |
8083 | ||
80824003 JB |
8084 | /* Swap pipes & planes for FBC on pre-965 */ |
8085 | intel_crtc->pipe = pipe; | |
8086 | intel_crtc->plane = pipe; | |
a5c961d1 | 8087 | intel_crtc->cpu_transcoder = pipe; |
e2e767ab | 8088 | if (IS_MOBILE(dev) && IS_GEN3(dev)) { |
28c97730 | 8089 | DRM_DEBUG_KMS("swapping pipes & planes for FBC\n"); |
e2e767ab | 8090 | intel_crtc->plane = !pipe; |
80824003 JB |
8091 | } |
8092 | ||
22fd0fab JB |
8093 | BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) || |
8094 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL); | |
8095 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base; | |
8096 | dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base; | |
8097 | ||
5a354204 | 8098 | intel_crtc->bpp = 24; /* default for pre-Ironlake */ |
7e7d76c3 | 8099 | |
79e53945 | 8100 | drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs); |
79e53945 JB |
8101 | } |
8102 | ||
08d7b3d1 | 8103 | int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data, |
05394f39 | 8104 | struct drm_file *file) |
08d7b3d1 | 8105 | { |
08d7b3d1 | 8106 | struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data; |
c05422d5 DV |
8107 | struct drm_mode_object *drmmode_obj; |
8108 | struct intel_crtc *crtc; | |
08d7b3d1 | 8109 | |
1cff8f6b DV |
8110 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
8111 | return -ENODEV; | |
08d7b3d1 | 8112 | |
c05422d5 DV |
8113 | drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id, |
8114 | DRM_MODE_OBJECT_CRTC); | |
08d7b3d1 | 8115 | |
c05422d5 | 8116 | if (!drmmode_obj) { |
08d7b3d1 CW |
8117 | DRM_ERROR("no such CRTC id\n"); |
8118 | return -EINVAL; | |
8119 | } | |
8120 | ||
c05422d5 DV |
8121 | crtc = to_intel_crtc(obj_to_crtc(drmmode_obj)); |
8122 | pipe_from_crtc_id->pipe = crtc->pipe; | |
08d7b3d1 | 8123 | |
c05422d5 | 8124 | return 0; |
08d7b3d1 CW |
8125 | } |
8126 | ||
66a9278e | 8127 | static int intel_encoder_clones(struct intel_encoder *encoder) |
79e53945 | 8128 | { |
66a9278e DV |
8129 | struct drm_device *dev = encoder->base.dev; |
8130 | struct intel_encoder *source_encoder; | |
79e53945 | 8131 | int index_mask = 0; |
79e53945 JB |
8132 | int entry = 0; |
8133 | ||
66a9278e DV |
8134 | list_for_each_entry(source_encoder, |
8135 | &dev->mode_config.encoder_list, base.head) { | |
8136 | ||
8137 | if (encoder == source_encoder) | |
79e53945 | 8138 | index_mask |= (1 << entry); |
66a9278e DV |
8139 | |
8140 | /* Intel hw has only one MUX where enocoders could be cloned. */ | |
8141 | if (encoder->cloneable && source_encoder->cloneable) | |
8142 | index_mask |= (1 << entry); | |
8143 | ||
79e53945 JB |
8144 | entry++; |
8145 | } | |
4ef69c7a | 8146 | |
79e53945 JB |
8147 | return index_mask; |
8148 | } | |
8149 | ||
4d302442 CW |
8150 | static bool has_edp_a(struct drm_device *dev) |
8151 | { | |
8152 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8153 | ||
8154 | if (!IS_MOBILE(dev)) | |
8155 | return false; | |
8156 | ||
8157 | if ((I915_READ(DP_A) & DP_DETECTED) == 0) | |
8158 | return false; | |
8159 | ||
8160 | if (IS_GEN5(dev) && | |
8161 | (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE)) | |
8162 | return false; | |
8163 | ||
8164 | return true; | |
8165 | } | |
8166 | ||
79e53945 JB |
8167 | static void intel_setup_outputs(struct drm_device *dev) |
8168 | { | |
725e30ad | 8169 | struct drm_i915_private *dev_priv = dev->dev_private; |
4ef69c7a | 8170 | struct intel_encoder *encoder; |
cb0953d7 | 8171 | bool dpd_is_edp = false; |
f3cfcba6 | 8172 | bool has_lvds; |
79e53945 | 8173 | |
f3cfcba6 | 8174 | has_lvds = intel_lvds_init(dev); |
c5d1b51d CW |
8175 | if (!has_lvds && !HAS_PCH_SPLIT(dev)) { |
8176 | /* disable the panel fitter on everything but LVDS */ | |
8177 | I915_WRITE(PFIT_CONTROL, 0); | |
8178 | } | |
79e53945 | 8179 | |
affa9354 | 8180 | if (!(HAS_DDI(dev) && (I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES))) |
79935fca | 8181 | intel_crt_init(dev); |
cb0953d7 | 8182 | |
affa9354 | 8183 | if (HAS_DDI(dev)) { |
0e72a5b5 ED |
8184 | int found; |
8185 | ||
8186 | /* Haswell uses DDI functions to detect digital outputs */ | |
8187 | found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED; | |
8188 | /* DDI A only supports eDP */ | |
8189 | if (found) | |
8190 | intel_ddi_init(dev, PORT_A); | |
8191 | ||
8192 | /* DDI B, C and D detection is indicated by the SFUSE_STRAP | |
8193 | * register */ | |
8194 | found = I915_READ(SFUSE_STRAP); | |
8195 | ||
8196 | if (found & SFUSE_STRAP_DDIB_DETECTED) | |
8197 | intel_ddi_init(dev, PORT_B); | |
8198 | if (found & SFUSE_STRAP_DDIC_DETECTED) | |
8199 | intel_ddi_init(dev, PORT_C); | |
8200 | if (found & SFUSE_STRAP_DDID_DETECTED) | |
8201 | intel_ddi_init(dev, PORT_D); | |
8202 | } else if (HAS_PCH_SPLIT(dev)) { | |
cb0953d7 | 8203 | int found; |
270b3042 DV |
8204 | dpd_is_edp = intel_dpd_is_edp(dev); |
8205 | ||
8206 | if (has_edp_a(dev)) | |
8207 | intel_dp_init(dev, DP_A, PORT_A); | |
cb0953d7 | 8208 | |
30ad48b7 | 8209 | if (I915_READ(HDMIB) & PORT_DETECTED) { |
461ed3ca | 8210 | /* PCH SDVOB multiplex with HDMIB */ |
eef4eacb | 8211 | found = intel_sdvo_init(dev, PCH_SDVOB, true); |
30ad48b7 | 8212 | if (!found) |
08d644ad | 8213 | intel_hdmi_init(dev, HDMIB, PORT_B); |
5eb08b69 | 8214 | if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED)) |
ab9d7c30 | 8215 | intel_dp_init(dev, PCH_DP_B, PORT_B); |
30ad48b7 ZW |
8216 | } |
8217 | ||
8218 | if (I915_READ(HDMIC) & PORT_DETECTED) | |
08d644ad | 8219 | intel_hdmi_init(dev, HDMIC, PORT_C); |
30ad48b7 | 8220 | |
b708a1d5 | 8221 | if (!dpd_is_edp && I915_READ(HDMID) & PORT_DETECTED) |
08d644ad | 8222 | intel_hdmi_init(dev, HDMID, PORT_D); |
30ad48b7 | 8223 | |
5eb08b69 | 8224 | if (I915_READ(PCH_DP_C) & DP_DETECTED) |
ab9d7c30 | 8225 | intel_dp_init(dev, PCH_DP_C, PORT_C); |
5eb08b69 | 8226 | |
270b3042 | 8227 | if (I915_READ(PCH_DP_D) & DP_DETECTED) |
ab9d7c30 | 8228 | intel_dp_init(dev, PCH_DP_D, PORT_D); |
4a87d65d | 8229 | } else if (IS_VALLEYVIEW(dev)) { |
19c03924 | 8230 | /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */ |
67cfc203 VS |
8231 | if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED) |
8232 | intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C); | |
19c03924 | 8233 | |
67cfc203 VS |
8234 | if (I915_READ(VLV_DISPLAY_BASE + SDVOB) & PORT_DETECTED) { |
8235 | intel_hdmi_init(dev, VLV_DISPLAY_BASE + SDVOB, PORT_B); | |
8236 | if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED) | |
8237 | intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B); | |
4a87d65d JB |
8238 | } |
8239 | ||
67cfc203 VS |
8240 | if (I915_READ(VLV_DISPLAY_BASE + SDVOC) & PORT_DETECTED) |
8241 | intel_hdmi_init(dev, VLV_DISPLAY_BASE + SDVOC, PORT_C); | |
5eb08b69 | 8242 | |
103a196f | 8243 | } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) { |
27185ae1 | 8244 | bool found = false; |
7d57382e | 8245 | |
725e30ad | 8246 | if (I915_READ(SDVOB) & SDVO_DETECTED) { |
b01f2c3a | 8247 | DRM_DEBUG_KMS("probing SDVOB\n"); |
eef4eacb | 8248 | found = intel_sdvo_init(dev, SDVOB, true); |
b01f2c3a JB |
8249 | if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) { |
8250 | DRM_DEBUG_KMS("probing HDMI on SDVOB\n"); | |
08d644ad | 8251 | intel_hdmi_init(dev, SDVOB, PORT_B); |
b01f2c3a | 8252 | } |
27185ae1 | 8253 | |
b01f2c3a JB |
8254 | if (!found && SUPPORTS_INTEGRATED_DP(dev)) { |
8255 | DRM_DEBUG_KMS("probing DP_B\n"); | |
ab9d7c30 | 8256 | intel_dp_init(dev, DP_B, PORT_B); |
b01f2c3a | 8257 | } |
725e30ad | 8258 | } |
13520b05 KH |
8259 | |
8260 | /* Before G4X SDVOC doesn't have its own detect register */ | |
13520b05 | 8261 | |
b01f2c3a JB |
8262 | if (I915_READ(SDVOB) & SDVO_DETECTED) { |
8263 | DRM_DEBUG_KMS("probing SDVOC\n"); | |
eef4eacb | 8264 | found = intel_sdvo_init(dev, SDVOC, false); |
b01f2c3a | 8265 | } |
27185ae1 ML |
8266 | |
8267 | if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) { | |
8268 | ||
b01f2c3a JB |
8269 | if (SUPPORTS_INTEGRATED_HDMI(dev)) { |
8270 | DRM_DEBUG_KMS("probing HDMI on SDVOC\n"); | |
08d644ad | 8271 | intel_hdmi_init(dev, SDVOC, PORT_C); |
b01f2c3a JB |
8272 | } |
8273 | if (SUPPORTS_INTEGRATED_DP(dev)) { | |
8274 | DRM_DEBUG_KMS("probing DP_C\n"); | |
ab9d7c30 | 8275 | intel_dp_init(dev, DP_C, PORT_C); |
b01f2c3a | 8276 | } |
725e30ad | 8277 | } |
27185ae1 | 8278 | |
b01f2c3a JB |
8279 | if (SUPPORTS_INTEGRATED_DP(dev) && |
8280 | (I915_READ(DP_D) & DP_DETECTED)) { | |
8281 | DRM_DEBUG_KMS("probing DP_D\n"); | |
ab9d7c30 | 8282 | intel_dp_init(dev, DP_D, PORT_D); |
b01f2c3a | 8283 | } |
bad720ff | 8284 | } else if (IS_GEN2(dev)) |
79e53945 JB |
8285 | intel_dvo_init(dev); |
8286 | ||
103a196f | 8287 | if (SUPPORTS_TV(dev)) |
79e53945 JB |
8288 | intel_tv_init(dev); |
8289 | ||
4ef69c7a CW |
8290 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) { |
8291 | encoder->base.possible_crtcs = encoder->crtc_mask; | |
8292 | encoder->base.possible_clones = | |
66a9278e | 8293 | intel_encoder_clones(encoder); |
79e53945 | 8294 | } |
47356eb6 | 8295 | |
dde86e2d | 8296 | intel_init_pch_refclk(dev); |
270b3042 DV |
8297 | |
8298 | drm_helper_move_panel_connectors_to_head(dev); | |
79e53945 JB |
8299 | } |
8300 | ||
8301 | static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb) | |
8302 | { | |
8303 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); | |
79e53945 JB |
8304 | |
8305 | drm_framebuffer_cleanup(fb); | |
05394f39 | 8306 | drm_gem_object_unreference_unlocked(&intel_fb->obj->base); |
79e53945 JB |
8307 | |
8308 | kfree(intel_fb); | |
8309 | } | |
8310 | ||
8311 | static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb, | |
05394f39 | 8312 | struct drm_file *file, |
79e53945 JB |
8313 | unsigned int *handle) |
8314 | { | |
8315 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); | |
05394f39 | 8316 | struct drm_i915_gem_object *obj = intel_fb->obj; |
79e53945 | 8317 | |
05394f39 | 8318 | return drm_gem_handle_create(file, &obj->base, handle); |
79e53945 JB |
8319 | } |
8320 | ||
8321 | static const struct drm_framebuffer_funcs intel_fb_funcs = { | |
8322 | .destroy = intel_user_framebuffer_destroy, | |
8323 | .create_handle = intel_user_framebuffer_create_handle, | |
8324 | }; | |
8325 | ||
38651674 DA |
8326 | int intel_framebuffer_init(struct drm_device *dev, |
8327 | struct intel_framebuffer *intel_fb, | |
308e5bcb | 8328 | struct drm_mode_fb_cmd2 *mode_cmd, |
05394f39 | 8329 | struct drm_i915_gem_object *obj) |
79e53945 | 8330 | { |
79e53945 JB |
8331 | int ret; |
8332 | ||
05394f39 | 8333 | if (obj->tiling_mode == I915_TILING_Y) |
57cd6508 CW |
8334 | return -EINVAL; |
8335 | ||
308e5bcb | 8336 | if (mode_cmd->pitches[0] & 63) |
57cd6508 CW |
8337 | return -EINVAL; |
8338 | ||
5d7bd705 VS |
8339 | /* FIXME <= Gen4 stride limits are bit unclear */ |
8340 | if (mode_cmd->pitches[0] > 32768) | |
8341 | return -EINVAL; | |
8342 | ||
8343 | if (obj->tiling_mode != I915_TILING_NONE && | |
8344 | mode_cmd->pitches[0] != obj->stride) | |
8345 | return -EINVAL; | |
8346 | ||
57779d06 | 8347 | /* Reject formats not supported by any plane early. */ |
308e5bcb | 8348 | switch (mode_cmd->pixel_format) { |
57779d06 | 8349 | case DRM_FORMAT_C8: |
04b3924d VS |
8350 | case DRM_FORMAT_RGB565: |
8351 | case DRM_FORMAT_XRGB8888: | |
8352 | case DRM_FORMAT_ARGB8888: | |
57779d06 VS |
8353 | break; |
8354 | case DRM_FORMAT_XRGB1555: | |
8355 | case DRM_FORMAT_ARGB1555: | |
8356 | if (INTEL_INFO(dev)->gen > 3) | |
8357 | return -EINVAL; | |
8358 | break; | |
8359 | case DRM_FORMAT_XBGR8888: | |
8360 | case DRM_FORMAT_ABGR8888: | |
04b3924d VS |
8361 | case DRM_FORMAT_XRGB2101010: |
8362 | case DRM_FORMAT_ARGB2101010: | |
57779d06 VS |
8363 | case DRM_FORMAT_XBGR2101010: |
8364 | case DRM_FORMAT_ABGR2101010: | |
8365 | if (INTEL_INFO(dev)->gen < 4) | |
8366 | return -EINVAL; | |
b5626747 | 8367 | break; |
04b3924d VS |
8368 | case DRM_FORMAT_YUYV: |
8369 | case DRM_FORMAT_UYVY: | |
8370 | case DRM_FORMAT_YVYU: | |
8371 | case DRM_FORMAT_VYUY: | |
57779d06 VS |
8372 | if (INTEL_INFO(dev)->gen < 6) |
8373 | return -EINVAL; | |
57cd6508 CW |
8374 | break; |
8375 | default: | |
57779d06 | 8376 | DRM_DEBUG_KMS("unsupported pixel format 0x%08x\n", mode_cmd->pixel_format); |
57cd6508 CW |
8377 | return -EINVAL; |
8378 | } | |
8379 | ||
90f9a336 VS |
8380 | /* FIXME need to adjust LINOFF/TILEOFF accordingly. */ |
8381 | if (mode_cmd->offsets[0] != 0) | |
8382 | return -EINVAL; | |
8383 | ||
79e53945 JB |
8384 | ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs); |
8385 | if (ret) { | |
8386 | DRM_ERROR("framebuffer init failed %d\n", ret); | |
8387 | return ret; | |
8388 | } | |
8389 | ||
8390 | drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd); | |
79e53945 | 8391 | intel_fb->obj = obj; |
79e53945 JB |
8392 | return 0; |
8393 | } | |
8394 | ||
79e53945 JB |
8395 | static struct drm_framebuffer * |
8396 | intel_user_framebuffer_create(struct drm_device *dev, | |
8397 | struct drm_file *filp, | |
308e5bcb | 8398 | struct drm_mode_fb_cmd2 *mode_cmd) |
79e53945 | 8399 | { |
05394f39 | 8400 | struct drm_i915_gem_object *obj; |
79e53945 | 8401 | |
308e5bcb JB |
8402 | obj = to_intel_bo(drm_gem_object_lookup(dev, filp, |
8403 | mode_cmd->handles[0])); | |
c8725226 | 8404 | if (&obj->base == NULL) |
cce13ff7 | 8405 | return ERR_PTR(-ENOENT); |
79e53945 | 8406 | |
d2dff872 | 8407 | return intel_framebuffer_create(dev, mode_cmd, obj); |
79e53945 JB |
8408 | } |
8409 | ||
79e53945 | 8410 | static const struct drm_mode_config_funcs intel_mode_funcs = { |
79e53945 | 8411 | .fb_create = intel_user_framebuffer_create, |
eb1f8e4f | 8412 | .output_poll_changed = intel_fb_output_poll_changed, |
79e53945 JB |
8413 | }; |
8414 | ||
e70236a8 JB |
8415 | /* Set up chip specific display functions */ |
8416 | static void intel_init_display(struct drm_device *dev) | |
8417 | { | |
8418 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8419 | ||
8420 | /* We always want a DPMS function */ | |
affa9354 | 8421 | if (HAS_DDI(dev)) { |
09b4ddf9 | 8422 | dev_priv->display.crtc_mode_set = haswell_crtc_mode_set; |
4f771f10 PZ |
8423 | dev_priv->display.crtc_enable = haswell_crtc_enable; |
8424 | dev_priv->display.crtc_disable = haswell_crtc_disable; | |
6441ab5f | 8425 | dev_priv->display.off = haswell_crtc_off; |
09b4ddf9 PZ |
8426 | dev_priv->display.update_plane = ironlake_update_plane; |
8427 | } else if (HAS_PCH_SPLIT(dev)) { | |
f564048e | 8428 | dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set; |
76e5a89c DV |
8429 | dev_priv->display.crtc_enable = ironlake_crtc_enable; |
8430 | dev_priv->display.crtc_disable = ironlake_crtc_disable; | |
ee7b9f93 | 8431 | dev_priv->display.off = ironlake_crtc_off; |
17638cd6 | 8432 | dev_priv->display.update_plane = ironlake_update_plane; |
f564048e | 8433 | } else { |
f564048e | 8434 | dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set; |
76e5a89c DV |
8435 | dev_priv->display.crtc_enable = i9xx_crtc_enable; |
8436 | dev_priv->display.crtc_disable = i9xx_crtc_disable; | |
ee7b9f93 | 8437 | dev_priv->display.off = i9xx_crtc_off; |
17638cd6 | 8438 | dev_priv->display.update_plane = i9xx_update_plane; |
f564048e | 8439 | } |
e70236a8 | 8440 | |
e70236a8 | 8441 | /* Returns the core display clock speed */ |
25eb05fc JB |
8442 | if (IS_VALLEYVIEW(dev)) |
8443 | dev_priv->display.get_display_clock_speed = | |
8444 | valleyview_get_display_clock_speed; | |
8445 | else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev))) | |
e70236a8 JB |
8446 | dev_priv->display.get_display_clock_speed = |
8447 | i945_get_display_clock_speed; | |
8448 | else if (IS_I915G(dev)) | |
8449 | dev_priv->display.get_display_clock_speed = | |
8450 | i915_get_display_clock_speed; | |
f2b115e6 | 8451 | else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev)) |
e70236a8 JB |
8452 | dev_priv->display.get_display_clock_speed = |
8453 | i9xx_misc_get_display_clock_speed; | |
8454 | else if (IS_I915GM(dev)) | |
8455 | dev_priv->display.get_display_clock_speed = | |
8456 | i915gm_get_display_clock_speed; | |
8457 | else if (IS_I865G(dev)) | |
8458 | dev_priv->display.get_display_clock_speed = | |
8459 | i865_get_display_clock_speed; | |
f0f8a9ce | 8460 | else if (IS_I85X(dev)) |
e70236a8 JB |
8461 | dev_priv->display.get_display_clock_speed = |
8462 | i855_get_display_clock_speed; | |
8463 | else /* 852, 830 */ | |
8464 | dev_priv->display.get_display_clock_speed = | |
8465 | i830_get_display_clock_speed; | |
8466 | ||
7f8a8569 | 8467 | if (HAS_PCH_SPLIT(dev)) { |
f00a3ddf | 8468 | if (IS_GEN5(dev)) { |
674cf967 | 8469 | dev_priv->display.fdi_link_train = ironlake_fdi_link_train; |
e0dac65e | 8470 | dev_priv->display.write_eld = ironlake_write_eld; |
1398261a | 8471 | } else if (IS_GEN6(dev)) { |
674cf967 | 8472 | dev_priv->display.fdi_link_train = gen6_fdi_link_train; |
e0dac65e | 8473 | dev_priv->display.write_eld = ironlake_write_eld; |
357555c0 JB |
8474 | } else if (IS_IVYBRIDGE(dev)) { |
8475 | /* FIXME: detect B0+ stepping and use auto training */ | |
8476 | dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train; | |
e0dac65e | 8477 | dev_priv->display.write_eld = ironlake_write_eld; |
01a415fd DV |
8478 | dev_priv->display.modeset_global_resources = |
8479 | ivb_modeset_global_resources; | |
c82e4d26 ED |
8480 | } else if (IS_HASWELL(dev)) { |
8481 | dev_priv->display.fdi_link_train = hsw_fdi_link_train; | |
83358c85 | 8482 | dev_priv->display.write_eld = haswell_write_eld; |
a0e63c22 | 8483 | } |
6067aaea | 8484 | } else if (IS_G4X(dev)) { |
e0dac65e | 8485 | dev_priv->display.write_eld = g4x_write_eld; |
e70236a8 | 8486 | } |
8c9f3aaf JB |
8487 | |
8488 | /* Default just returns -ENODEV to indicate unsupported */ | |
8489 | dev_priv->display.queue_flip = intel_default_queue_flip; | |
8490 | ||
8491 | switch (INTEL_INFO(dev)->gen) { | |
8492 | case 2: | |
8493 | dev_priv->display.queue_flip = intel_gen2_queue_flip; | |
8494 | break; | |
8495 | ||
8496 | case 3: | |
8497 | dev_priv->display.queue_flip = intel_gen3_queue_flip; | |
8498 | break; | |
8499 | ||
8500 | case 4: | |
8501 | case 5: | |
8502 | dev_priv->display.queue_flip = intel_gen4_queue_flip; | |
8503 | break; | |
8504 | ||
8505 | case 6: | |
8506 | dev_priv->display.queue_flip = intel_gen6_queue_flip; | |
8507 | break; | |
7c9017e5 JB |
8508 | case 7: |
8509 | dev_priv->display.queue_flip = intel_gen7_queue_flip; | |
8510 | break; | |
8c9f3aaf | 8511 | } |
e70236a8 JB |
8512 | } |
8513 | ||
b690e96c JB |
8514 | /* |
8515 | * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend, | |
8516 | * resume, or other times. This quirk makes sure that's the case for | |
8517 | * affected systems. | |
8518 | */ | |
0206e353 | 8519 | static void quirk_pipea_force(struct drm_device *dev) |
b690e96c JB |
8520 | { |
8521 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8522 | ||
8523 | dev_priv->quirks |= QUIRK_PIPEA_FORCE; | |
bc0daf48 | 8524 | DRM_INFO("applying pipe a force quirk\n"); |
b690e96c JB |
8525 | } |
8526 | ||
435793df KP |
8527 | /* |
8528 | * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason | |
8529 | */ | |
8530 | static void quirk_ssc_force_disable(struct drm_device *dev) | |
8531 | { | |
8532 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8533 | dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE; | |
bc0daf48 | 8534 | DRM_INFO("applying lvds SSC disable quirk\n"); |
435793df KP |
8535 | } |
8536 | ||
4dca20ef | 8537 | /* |
5a15ab5b CE |
8538 | * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight |
8539 | * brightness value | |
4dca20ef CE |
8540 | */ |
8541 | static void quirk_invert_brightness(struct drm_device *dev) | |
8542 | { | |
8543 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8544 | dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS; | |
bc0daf48 | 8545 | DRM_INFO("applying inverted panel brightness quirk\n"); |
435793df KP |
8546 | } |
8547 | ||
b690e96c JB |
8548 | struct intel_quirk { |
8549 | int device; | |
8550 | int subsystem_vendor; | |
8551 | int subsystem_device; | |
8552 | void (*hook)(struct drm_device *dev); | |
8553 | }; | |
8554 | ||
5f85f176 EE |
8555 | /* For systems that don't have a meaningful PCI subdevice/subvendor ID */ |
8556 | struct intel_dmi_quirk { | |
8557 | void (*hook)(struct drm_device *dev); | |
8558 | const struct dmi_system_id (*dmi_id_list)[]; | |
8559 | }; | |
8560 | ||
8561 | static int intel_dmi_reverse_brightness(const struct dmi_system_id *id) | |
8562 | { | |
8563 | DRM_INFO("Backlight polarity reversed on %s\n", id->ident); | |
8564 | return 1; | |
8565 | } | |
8566 | ||
8567 | static const struct intel_dmi_quirk intel_dmi_quirks[] = { | |
8568 | { | |
8569 | .dmi_id_list = &(const struct dmi_system_id[]) { | |
8570 | { | |
8571 | .callback = intel_dmi_reverse_brightness, | |
8572 | .ident = "NCR Corporation", | |
8573 | .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"), | |
8574 | DMI_MATCH(DMI_PRODUCT_NAME, ""), | |
8575 | }, | |
8576 | }, | |
8577 | { } /* terminating entry */ | |
8578 | }, | |
8579 | .hook = quirk_invert_brightness, | |
8580 | }, | |
8581 | }; | |
8582 | ||
c43b5634 | 8583 | static struct intel_quirk intel_quirks[] = { |
b690e96c | 8584 | /* HP Mini needs pipe A force quirk (LP: #322104) */ |
0206e353 | 8585 | { 0x27ae, 0x103c, 0x361a, quirk_pipea_force }, |
b690e96c | 8586 | |
b690e96c JB |
8587 | /* Toshiba Protege R-205, S-209 needs pipe A force quirk */ |
8588 | { 0x2592, 0x1179, 0x0001, quirk_pipea_force }, | |
8589 | ||
b690e96c JB |
8590 | /* ThinkPad T60 needs pipe A force quirk (bug #16494) */ |
8591 | { 0x2782, 0x17aa, 0x201a, quirk_pipea_force }, | |
8592 | ||
ccd0d36e | 8593 | /* 830/845 need to leave pipe A & dpll A up */ |
b690e96c | 8594 | { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, |
dcdaed6e | 8595 | { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, |
435793df KP |
8596 | |
8597 | /* Lenovo U160 cannot use SSC on LVDS */ | |
8598 | { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable }, | |
070d329a MAS |
8599 | |
8600 | /* Sony Vaio Y cannot use SSC on LVDS */ | |
8601 | { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable }, | |
5a15ab5b CE |
8602 | |
8603 | /* Acer Aspire 5734Z must invert backlight brightness */ | |
8604 | { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness }, | |
1ffff603 JN |
8605 | |
8606 | /* Acer/eMachines G725 */ | |
8607 | { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness }, | |
01e3a8fe JN |
8608 | |
8609 | /* Acer/eMachines e725 */ | |
8610 | { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness }, | |
5559ecad JN |
8611 | |
8612 | /* Acer/Packard Bell NCL20 */ | |
8613 | { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness }, | |
b690e96c JB |
8614 | }; |
8615 | ||
8616 | static void intel_init_quirks(struct drm_device *dev) | |
8617 | { | |
8618 | struct pci_dev *d = dev->pdev; | |
8619 | int i; | |
8620 | ||
8621 | for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) { | |
8622 | struct intel_quirk *q = &intel_quirks[i]; | |
8623 | ||
8624 | if (d->device == q->device && | |
8625 | (d->subsystem_vendor == q->subsystem_vendor || | |
8626 | q->subsystem_vendor == PCI_ANY_ID) && | |
8627 | (d->subsystem_device == q->subsystem_device || | |
8628 | q->subsystem_device == PCI_ANY_ID)) | |
8629 | q->hook(dev); | |
8630 | } | |
5f85f176 EE |
8631 | for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) { |
8632 | if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0) | |
8633 | intel_dmi_quirks[i].hook(dev); | |
8634 | } | |
b690e96c JB |
8635 | } |
8636 | ||
9cce37f4 JB |
8637 | /* Disable the VGA plane that we never use */ |
8638 | static void i915_disable_vga(struct drm_device *dev) | |
8639 | { | |
8640 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8641 | u8 sr1; | |
8642 | u32 vga_reg; | |
8643 | ||
8644 | if (HAS_PCH_SPLIT(dev)) | |
8645 | vga_reg = CPU_VGACNTRL; | |
8646 | else | |
8647 | vga_reg = VGACNTRL; | |
8648 | ||
8649 | vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO); | |
3fdcf431 | 8650 | outb(SR01, VGA_SR_INDEX); |
9cce37f4 JB |
8651 | sr1 = inb(VGA_SR_DATA); |
8652 | outb(sr1 | 1<<5, VGA_SR_DATA); | |
8653 | vga_put(dev->pdev, VGA_RSRC_LEGACY_IO); | |
8654 | udelay(300); | |
8655 | ||
8656 | I915_WRITE(vga_reg, VGA_DISP_DISABLE); | |
8657 | POSTING_READ(vga_reg); | |
8658 | } | |
8659 | ||
f817586c DV |
8660 | void intel_modeset_init_hw(struct drm_device *dev) |
8661 | { | |
fa42e23c | 8662 | intel_init_power_well(dev); |
0232e927 | 8663 | |
a8f78b58 ED |
8664 | intel_prepare_ddi(dev); |
8665 | ||
f817586c DV |
8666 | intel_init_clock_gating(dev); |
8667 | ||
79f5b2c7 | 8668 | mutex_lock(&dev->struct_mutex); |
8090c6b9 | 8669 | intel_enable_gt_powersave(dev); |
79f5b2c7 | 8670 | mutex_unlock(&dev->struct_mutex); |
f817586c DV |
8671 | } |
8672 | ||
79e53945 JB |
8673 | void intel_modeset_init(struct drm_device *dev) |
8674 | { | |
652c393a | 8675 | struct drm_i915_private *dev_priv = dev->dev_private; |
b840d907 | 8676 | int i, ret; |
79e53945 JB |
8677 | |
8678 | drm_mode_config_init(dev); | |
8679 | ||
8680 | dev->mode_config.min_width = 0; | |
8681 | dev->mode_config.min_height = 0; | |
8682 | ||
019d96cb DA |
8683 | dev->mode_config.preferred_depth = 24; |
8684 | dev->mode_config.prefer_shadow = 1; | |
8685 | ||
e6ecefaa | 8686 | dev->mode_config.funcs = &intel_mode_funcs; |
79e53945 | 8687 | |
b690e96c JB |
8688 | intel_init_quirks(dev); |
8689 | ||
1fa61106 ED |
8690 | intel_init_pm(dev); |
8691 | ||
e70236a8 JB |
8692 | intel_init_display(dev); |
8693 | ||
a6c45cf0 CW |
8694 | if (IS_GEN2(dev)) { |
8695 | dev->mode_config.max_width = 2048; | |
8696 | dev->mode_config.max_height = 2048; | |
8697 | } else if (IS_GEN3(dev)) { | |
5e4d6fa7 KP |
8698 | dev->mode_config.max_width = 4096; |
8699 | dev->mode_config.max_height = 4096; | |
79e53945 | 8700 | } else { |
a6c45cf0 CW |
8701 | dev->mode_config.max_width = 8192; |
8702 | dev->mode_config.max_height = 8192; | |
79e53945 | 8703 | } |
5d4545ae | 8704 | dev->mode_config.fb_base = dev_priv->gtt.mappable_base; |
79e53945 | 8705 | |
28c97730 | 8706 | DRM_DEBUG_KMS("%d display pipe%s available.\n", |
a3524f1b | 8707 | dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : ""); |
79e53945 | 8708 | |
a3524f1b | 8709 | for (i = 0; i < dev_priv->num_pipe; i++) { |
79e53945 | 8710 | intel_crtc_init(dev, i); |
00c2064b JB |
8711 | ret = intel_plane_init(dev, i); |
8712 | if (ret) | |
8713 | DRM_DEBUG_KMS("plane %d init failed: %d\n", i, ret); | |
79e53945 JB |
8714 | } |
8715 | ||
79f689aa | 8716 | intel_cpu_pll_init(dev); |
ee7b9f93 JB |
8717 | intel_pch_pll_init(dev); |
8718 | ||
9cce37f4 JB |
8719 | /* Just disable it once at startup */ |
8720 | i915_disable_vga(dev); | |
79e53945 | 8721 | intel_setup_outputs(dev); |
11be49eb CW |
8722 | |
8723 | /* Just in case the BIOS is doing something questionable. */ | |
8724 | intel_disable_fbc(dev); | |
2c7111db CW |
8725 | } |
8726 | ||
24929352 DV |
8727 | static void |
8728 | intel_connector_break_all_links(struct intel_connector *connector) | |
8729 | { | |
8730 | connector->base.dpms = DRM_MODE_DPMS_OFF; | |
8731 | connector->base.encoder = NULL; | |
8732 | connector->encoder->connectors_active = false; | |
8733 | connector->encoder->base.crtc = NULL; | |
8734 | } | |
8735 | ||
7fad798e DV |
8736 | static void intel_enable_pipe_a(struct drm_device *dev) |
8737 | { | |
8738 | struct intel_connector *connector; | |
8739 | struct drm_connector *crt = NULL; | |
8740 | struct intel_load_detect_pipe load_detect_temp; | |
8741 | ||
8742 | /* We can't just switch on the pipe A, we need to set things up with a | |
8743 | * proper mode and output configuration. As a gross hack, enable pipe A | |
8744 | * by enabling the load detect pipe once. */ | |
8745 | list_for_each_entry(connector, | |
8746 | &dev->mode_config.connector_list, | |
8747 | base.head) { | |
8748 | if (connector->encoder->type == INTEL_OUTPUT_ANALOG) { | |
8749 | crt = &connector->base; | |
8750 | break; | |
8751 | } | |
8752 | } | |
8753 | ||
8754 | if (!crt) | |
8755 | return; | |
8756 | ||
8757 | if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp)) | |
8758 | intel_release_load_detect_pipe(crt, &load_detect_temp); | |
8759 | ||
652c393a | 8760 | |
7fad798e DV |
8761 | } |
8762 | ||
fa555837 DV |
8763 | static bool |
8764 | intel_check_plane_mapping(struct intel_crtc *crtc) | |
8765 | { | |
8766 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; | |
8767 | u32 reg, val; | |
8768 | ||
8769 | if (dev_priv->num_pipe == 1) | |
8770 | return true; | |
8771 | ||
8772 | reg = DSPCNTR(!crtc->plane); | |
8773 | val = I915_READ(reg); | |
8774 | ||
8775 | if ((val & DISPLAY_PLANE_ENABLE) && | |
8776 | (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe)) | |
8777 | return false; | |
8778 | ||
8779 | return true; | |
8780 | } | |
8781 | ||
24929352 DV |
8782 | static void intel_sanitize_crtc(struct intel_crtc *crtc) |
8783 | { | |
8784 | struct drm_device *dev = crtc->base.dev; | |
8785 | struct drm_i915_private *dev_priv = dev->dev_private; | |
fa555837 | 8786 | u32 reg; |
24929352 | 8787 | |
24929352 | 8788 | /* Clear any frame start delays used for debugging left by the BIOS */ |
702e7a56 | 8789 | reg = PIPECONF(crtc->cpu_transcoder); |
24929352 DV |
8790 | I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK); |
8791 | ||
8792 | /* We need to sanitize the plane -> pipe mapping first because this will | |
fa555837 DV |
8793 | * disable the crtc (and hence change the state) if it is wrong. Note |
8794 | * that gen4+ has a fixed plane -> pipe mapping. */ | |
8795 | if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) { | |
24929352 DV |
8796 | struct intel_connector *connector; |
8797 | bool plane; | |
8798 | ||
24929352 DV |
8799 | DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n", |
8800 | crtc->base.base.id); | |
8801 | ||
8802 | /* Pipe has the wrong plane attached and the plane is active. | |
8803 | * Temporarily change the plane mapping and disable everything | |
8804 | * ... */ | |
8805 | plane = crtc->plane; | |
8806 | crtc->plane = !plane; | |
8807 | dev_priv->display.crtc_disable(&crtc->base); | |
8808 | crtc->plane = plane; | |
8809 | ||
8810 | /* ... and break all links. */ | |
8811 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
8812 | base.head) { | |
8813 | if (connector->encoder->base.crtc != &crtc->base) | |
8814 | continue; | |
8815 | ||
8816 | intel_connector_break_all_links(connector); | |
8817 | } | |
8818 | ||
8819 | WARN_ON(crtc->active); | |
8820 | crtc->base.enabled = false; | |
8821 | } | |
24929352 | 8822 | |
7fad798e DV |
8823 | if (dev_priv->quirks & QUIRK_PIPEA_FORCE && |
8824 | crtc->pipe == PIPE_A && !crtc->active) { | |
8825 | /* BIOS forgot to enable pipe A, this mostly happens after | |
8826 | * resume. Force-enable the pipe to fix this, the update_dpms | |
8827 | * call below we restore the pipe to the right state, but leave | |
8828 | * the required bits on. */ | |
8829 | intel_enable_pipe_a(dev); | |
8830 | } | |
8831 | ||
24929352 DV |
8832 | /* Adjust the state of the output pipe according to whether we |
8833 | * have active connectors/encoders. */ | |
8834 | intel_crtc_update_dpms(&crtc->base); | |
8835 | ||
8836 | if (crtc->active != crtc->base.enabled) { | |
8837 | struct intel_encoder *encoder; | |
8838 | ||
8839 | /* This can happen either due to bugs in the get_hw_state | |
8840 | * functions or because the pipe is force-enabled due to the | |
8841 | * pipe A quirk. */ | |
8842 | DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n", | |
8843 | crtc->base.base.id, | |
8844 | crtc->base.enabled ? "enabled" : "disabled", | |
8845 | crtc->active ? "enabled" : "disabled"); | |
8846 | ||
8847 | crtc->base.enabled = crtc->active; | |
8848 | ||
8849 | /* Because we only establish the connector -> encoder -> | |
8850 | * crtc links if something is active, this means the | |
8851 | * crtc is now deactivated. Break the links. connector | |
8852 | * -> encoder links are only establish when things are | |
8853 | * actually up, hence no need to break them. */ | |
8854 | WARN_ON(crtc->active); | |
8855 | ||
8856 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) { | |
8857 | WARN_ON(encoder->connectors_active); | |
8858 | encoder->base.crtc = NULL; | |
8859 | } | |
8860 | } | |
8861 | } | |
8862 | ||
8863 | static void intel_sanitize_encoder(struct intel_encoder *encoder) | |
8864 | { | |
8865 | struct intel_connector *connector; | |
8866 | struct drm_device *dev = encoder->base.dev; | |
8867 | ||
8868 | /* We need to check both for a crtc link (meaning that the | |
8869 | * encoder is active and trying to read from a pipe) and the | |
8870 | * pipe itself being active. */ | |
8871 | bool has_active_crtc = encoder->base.crtc && | |
8872 | to_intel_crtc(encoder->base.crtc)->active; | |
8873 | ||
8874 | if (encoder->connectors_active && !has_active_crtc) { | |
8875 | DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n", | |
8876 | encoder->base.base.id, | |
8877 | drm_get_encoder_name(&encoder->base)); | |
8878 | ||
8879 | /* Connector is active, but has no active pipe. This is | |
8880 | * fallout from our resume register restoring. Disable | |
8881 | * the encoder manually again. */ | |
8882 | if (encoder->base.crtc) { | |
8883 | DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n", | |
8884 | encoder->base.base.id, | |
8885 | drm_get_encoder_name(&encoder->base)); | |
8886 | encoder->disable(encoder); | |
8887 | } | |
8888 | ||
8889 | /* Inconsistent output/port/pipe state happens presumably due to | |
8890 | * a bug in one of the get_hw_state functions. Or someplace else | |
8891 | * in our code, like the register restore mess on resume. Clamp | |
8892 | * things to off as a safer default. */ | |
8893 | list_for_each_entry(connector, | |
8894 | &dev->mode_config.connector_list, | |
8895 | base.head) { | |
8896 | if (connector->encoder != encoder) | |
8897 | continue; | |
8898 | ||
8899 | intel_connector_break_all_links(connector); | |
8900 | } | |
8901 | } | |
8902 | /* Enabled encoders without active connectors will be fixed in | |
8903 | * the crtc fixup. */ | |
8904 | } | |
8905 | ||
44cec740 | 8906 | void i915_redisable_vga(struct drm_device *dev) |
0fde901f KM |
8907 | { |
8908 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8909 | u32 vga_reg; | |
8910 | ||
8911 | if (HAS_PCH_SPLIT(dev)) | |
8912 | vga_reg = CPU_VGACNTRL; | |
8913 | else | |
8914 | vga_reg = VGACNTRL; | |
8915 | ||
8916 | if (I915_READ(vga_reg) != VGA_DISP_DISABLE) { | |
8917 | DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n"); | |
8918 | I915_WRITE(vga_reg, VGA_DISP_DISABLE); | |
8919 | POSTING_READ(vga_reg); | |
8920 | } | |
8921 | } | |
8922 | ||
24929352 DV |
8923 | /* Scan out the current hw modeset state, sanitizes it and maps it into the drm |
8924 | * and i915 state tracking structures. */ | |
45e2b5f6 DV |
8925 | void intel_modeset_setup_hw_state(struct drm_device *dev, |
8926 | bool force_restore) | |
24929352 DV |
8927 | { |
8928 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8929 | enum pipe pipe; | |
8930 | u32 tmp; | |
8931 | struct intel_crtc *crtc; | |
8932 | struct intel_encoder *encoder; | |
8933 | struct intel_connector *connector; | |
8934 | ||
affa9354 | 8935 | if (HAS_DDI(dev)) { |
e28d54cb PZ |
8936 | tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP)); |
8937 | ||
8938 | if (tmp & TRANS_DDI_FUNC_ENABLE) { | |
8939 | switch (tmp & TRANS_DDI_EDP_INPUT_MASK) { | |
8940 | case TRANS_DDI_EDP_INPUT_A_ON: | |
8941 | case TRANS_DDI_EDP_INPUT_A_ONOFF: | |
8942 | pipe = PIPE_A; | |
8943 | break; | |
8944 | case TRANS_DDI_EDP_INPUT_B_ONOFF: | |
8945 | pipe = PIPE_B; | |
8946 | break; | |
8947 | case TRANS_DDI_EDP_INPUT_C_ONOFF: | |
8948 | pipe = PIPE_C; | |
8949 | break; | |
8950 | } | |
8951 | ||
8952 | crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); | |
8953 | crtc->cpu_transcoder = TRANSCODER_EDP; | |
8954 | ||
8955 | DRM_DEBUG_KMS("Pipe %c using transcoder EDP\n", | |
8956 | pipe_name(pipe)); | |
8957 | } | |
8958 | } | |
8959 | ||
24929352 DV |
8960 | for_each_pipe(pipe) { |
8961 | crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); | |
8962 | ||
702e7a56 | 8963 | tmp = I915_READ(PIPECONF(crtc->cpu_transcoder)); |
24929352 DV |
8964 | if (tmp & PIPECONF_ENABLE) |
8965 | crtc->active = true; | |
8966 | else | |
8967 | crtc->active = false; | |
8968 | ||
8969 | crtc->base.enabled = crtc->active; | |
8970 | ||
8971 | DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n", | |
8972 | crtc->base.base.id, | |
8973 | crtc->active ? "enabled" : "disabled"); | |
8974 | } | |
8975 | ||
affa9354 | 8976 | if (HAS_DDI(dev)) |
6441ab5f PZ |
8977 | intel_ddi_setup_hw_pll_state(dev); |
8978 | ||
24929352 DV |
8979 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
8980 | base.head) { | |
8981 | pipe = 0; | |
8982 | ||
8983 | if (encoder->get_hw_state(encoder, &pipe)) { | |
8984 | encoder->base.crtc = | |
8985 | dev_priv->pipe_to_crtc_mapping[pipe]; | |
8986 | } else { | |
8987 | encoder->base.crtc = NULL; | |
8988 | } | |
8989 | ||
8990 | encoder->connectors_active = false; | |
8991 | DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n", | |
8992 | encoder->base.base.id, | |
8993 | drm_get_encoder_name(&encoder->base), | |
8994 | encoder->base.crtc ? "enabled" : "disabled", | |
8995 | pipe); | |
8996 | } | |
8997 | ||
8998 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
8999 | base.head) { | |
9000 | if (connector->get_hw_state(connector)) { | |
9001 | connector->base.dpms = DRM_MODE_DPMS_ON; | |
9002 | connector->encoder->connectors_active = true; | |
9003 | connector->base.encoder = &connector->encoder->base; | |
9004 | } else { | |
9005 | connector->base.dpms = DRM_MODE_DPMS_OFF; | |
9006 | connector->base.encoder = NULL; | |
9007 | } | |
9008 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n", | |
9009 | connector->base.base.id, | |
9010 | drm_get_connector_name(&connector->base), | |
9011 | connector->base.encoder ? "enabled" : "disabled"); | |
9012 | } | |
9013 | ||
9014 | /* HW state is read out, now we need to sanitize this mess. */ | |
9015 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, | |
9016 | base.head) { | |
9017 | intel_sanitize_encoder(encoder); | |
9018 | } | |
9019 | ||
9020 | for_each_pipe(pipe) { | |
9021 | crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); | |
9022 | intel_sanitize_crtc(crtc); | |
9023 | } | |
9a935856 | 9024 | |
45e2b5f6 DV |
9025 | if (force_restore) { |
9026 | for_each_pipe(pipe) { | |
c0c36b94 | 9027 | intel_crtc_restore_mode(dev_priv->pipe_to_crtc_mapping[pipe]); |
45e2b5f6 | 9028 | } |
0fde901f KM |
9029 | |
9030 | i915_redisable_vga(dev); | |
45e2b5f6 DV |
9031 | } else { |
9032 | intel_modeset_update_staged_output_state(dev); | |
9033 | } | |
8af6cf88 DV |
9034 | |
9035 | intel_modeset_check_state(dev); | |
2e938892 DV |
9036 | |
9037 | drm_mode_config_reset(dev); | |
2c7111db CW |
9038 | } |
9039 | ||
9040 | void intel_modeset_gem_init(struct drm_device *dev) | |
9041 | { | |
1833b134 | 9042 | intel_modeset_init_hw(dev); |
02e792fb DV |
9043 | |
9044 | intel_setup_overlay(dev); | |
24929352 | 9045 | |
45e2b5f6 | 9046 | intel_modeset_setup_hw_state(dev, false); |
79e53945 JB |
9047 | } |
9048 | ||
9049 | void intel_modeset_cleanup(struct drm_device *dev) | |
9050 | { | |
652c393a JB |
9051 | struct drm_i915_private *dev_priv = dev->dev_private; |
9052 | struct drm_crtc *crtc; | |
9053 | struct intel_crtc *intel_crtc; | |
9054 | ||
f87ea761 | 9055 | drm_kms_helper_poll_fini(dev); |
652c393a JB |
9056 | mutex_lock(&dev->struct_mutex); |
9057 | ||
723bfd70 JB |
9058 | intel_unregister_dsm_handler(); |
9059 | ||
9060 | ||
652c393a JB |
9061 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
9062 | /* Skip inactive CRTCs */ | |
9063 | if (!crtc->fb) | |
9064 | continue; | |
9065 | ||
9066 | intel_crtc = to_intel_crtc(crtc); | |
3dec0095 | 9067 | intel_increase_pllclock(crtc); |
652c393a JB |
9068 | } |
9069 | ||
973d04f9 | 9070 | intel_disable_fbc(dev); |
e70236a8 | 9071 | |
8090c6b9 | 9072 | intel_disable_gt_powersave(dev); |
0cdab21f | 9073 | |
930ebb46 DV |
9074 | ironlake_teardown_rc6(dev); |
9075 | ||
57f350b6 JB |
9076 | if (IS_VALLEYVIEW(dev)) |
9077 | vlv_init_dpio(dev); | |
9078 | ||
69341a5e KH |
9079 | mutex_unlock(&dev->struct_mutex); |
9080 | ||
6c0d9350 DV |
9081 | /* Disable the irq before mode object teardown, for the irq might |
9082 | * enqueue unpin/hotplug work. */ | |
9083 | drm_irq_uninstall(dev); | |
9084 | cancel_work_sync(&dev_priv->hotplug_work); | |
c6a828d3 | 9085 | cancel_work_sync(&dev_priv->rps.work); |
6c0d9350 | 9086 | |
1630fe75 CW |
9087 | /* flush any delayed tasks or pending work */ |
9088 | flush_scheduled_work(); | |
9089 | ||
79e53945 | 9090 | drm_mode_config_cleanup(dev); |
4d7bb011 DV |
9091 | |
9092 | intel_cleanup_overlay(dev); | |
79e53945 JB |
9093 | } |
9094 | ||
f1c79df3 ZW |
9095 | /* |
9096 | * Return which encoder is currently attached for connector. | |
9097 | */ | |
df0e9248 | 9098 | struct drm_encoder *intel_best_encoder(struct drm_connector *connector) |
79e53945 | 9099 | { |
df0e9248 CW |
9100 | return &intel_attached_encoder(connector)->base; |
9101 | } | |
f1c79df3 | 9102 | |
df0e9248 CW |
9103 | void intel_connector_attach_encoder(struct intel_connector *connector, |
9104 | struct intel_encoder *encoder) | |
9105 | { | |
9106 | connector->encoder = encoder; | |
9107 | drm_mode_connector_attach_encoder(&connector->base, | |
9108 | &encoder->base); | |
79e53945 | 9109 | } |
28d52043 DA |
9110 | |
9111 | /* | |
9112 | * set vga decode state - true == enable VGA decode | |
9113 | */ | |
9114 | int intel_modeset_vga_set_state(struct drm_device *dev, bool state) | |
9115 | { | |
9116 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9117 | u16 gmch_ctrl; | |
9118 | ||
9119 | pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl); | |
9120 | if (state) | |
9121 | gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE; | |
9122 | else | |
9123 | gmch_ctrl |= INTEL_GMCH_VGA_DISABLE; | |
9124 | pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl); | |
9125 | return 0; | |
9126 | } | |
c4a1d9e4 CW |
9127 | |
9128 | #ifdef CONFIG_DEBUG_FS | |
9129 | #include <linux/seq_file.h> | |
9130 | ||
9131 | struct intel_display_error_state { | |
9132 | struct intel_cursor_error_state { | |
9133 | u32 control; | |
9134 | u32 position; | |
9135 | u32 base; | |
9136 | u32 size; | |
52331309 | 9137 | } cursor[I915_MAX_PIPES]; |
c4a1d9e4 CW |
9138 | |
9139 | struct intel_pipe_error_state { | |
9140 | u32 conf; | |
9141 | u32 source; | |
9142 | ||
9143 | u32 htotal; | |
9144 | u32 hblank; | |
9145 | u32 hsync; | |
9146 | u32 vtotal; | |
9147 | u32 vblank; | |
9148 | u32 vsync; | |
52331309 | 9149 | } pipe[I915_MAX_PIPES]; |
c4a1d9e4 CW |
9150 | |
9151 | struct intel_plane_error_state { | |
9152 | u32 control; | |
9153 | u32 stride; | |
9154 | u32 size; | |
9155 | u32 pos; | |
9156 | u32 addr; | |
9157 | u32 surface; | |
9158 | u32 tile_offset; | |
52331309 | 9159 | } plane[I915_MAX_PIPES]; |
c4a1d9e4 CW |
9160 | }; |
9161 | ||
9162 | struct intel_display_error_state * | |
9163 | intel_display_capture_error_state(struct drm_device *dev) | |
9164 | { | |
0206e353 | 9165 | drm_i915_private_t *dev_priv = dev->dev_private; |
c4a1d9e4 | 9166 | struct intel_display_error_state *error; |
702e7a56 | 9167 | enum transcoder cpu_transcoder; |
c4a1d9e4 CW |
9168 | int i; |
9169 | ||
9170 | error = kmalloc(sizeof(*error), GFP_ATOMIC); | |
9171 | if (error == NULL) | |
9172 | return NULL; | |
9173 | ||
52331309 | 9174 | for_each_pipe(i) { |
702e7a56 PZ |
9175 | cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, i); |
9176 | ||
c4a1d9e4 CW |
9177 | error->cursor[i].control = I915_READ(CURCNTR(i)); |
9178 | error->cursor[i].position = I915_READ(CURPOS(i)); | |
9179 | error->cursor[i].base = I915_READ(CURBASE(i)); | |
9180 | ||
9181 | error->plane[i].control = I915_READ(DSPCNTR(i)); | |
9182 | error->plane[i].stride = I915_READ(DSPSTRIDE(i)); | |
9183 | error->plane[i].size = I915_READ(DSPSIZE(i)); | |
0206e353 | 9184 | error->plane[i].pos = I915_READ(DSPPOS(i)); |
c4a1d9e4 CW |
9185 | error->plane[i].addr = I915_READ(DSPADDR(i)); |
9186 | if (INTEL_INFO(dev)->gen >= 4) { | |
9187 | error->plane[i].surface = I915_READ(DSPSURF(i)); | |
9188 | error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i)); | |
9189 | } | |
9190 | ||
702e7a56 | 9191 | error->pipe[i].conf = I915_READ(PIPECONF(cpu_transcoder)); |
c4a1d9e4 | 9192 | error->pipe[i].source = I915_READ(PIPESRC(i)); |
fe2b8f9d PZ |
9193 | error->pipe[i].htotal = I915_READ(HTOTAL(cpu_transcoder)); |
9194 | error->pipe[i].hblank = I915_READ(HBLANK(cpu_transcoder)); | |
9195 | error->pipe[i].hsync = I915_READ(HSYNC(cpu_transcoder)); | |
9196 | error->pipe[i].vtotal = I915_READ(VTOTAL(cpu_transcoder)); | |
9197 | error->pipe[i].vblank = I915_READ(VBLANK(cpu_transcoder)); | |
9198 | error->pipe[i].vsync = I915_READ(VSYNC(cpu_transcoder)); | |
c4a1d9e4 CW |
9199 | } |
9200 | ||
9201 | return error; | |
9202 | } | |
9203 | ||
9204 | void | |
9205 | intel_display_print_error_state(struct seq_file *m, | |
9206 | struct drm_device *dev, | |
9207 | struct intel_display_error_state *error) | |
9208 | { | |
52331309 | 9209 | drm_i915_private_t *dev_priv = dev->dev_private; |
c4a1d9e4 CW |
9210 | int i; |
9211 | ||
52331309 DL |
9212 | seq_printf(m, "Num Pipes: %d\n", dev_priv->num_pipe); |
9213 | for_each_pipe(i) { | |
c4a1d9e4 CW |
9214 | seq_printf(m, "Pipe [%d]:\n", i); |
9215 | seq_printf(m, " CONF: %08x\n", error->pipe[i].conf); | |
9216 | seq_printf(m, " SRC: %08x\n", error->pipe[i].source); | |
9217 | seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal); | |
9218 | seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank); | |
9219 | seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync); | |
9220 | seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal); | |
9221 | seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank); | |
9222 | seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync); | |
9223 | ||
9224 | seq_printf(m, "Plane [%d]:\n", i); | |
9225 | seq_printf(m, " CNTR: %08x\n", error->plane[i].control); | |
9226 | seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride); | |
9227 | seq_printf(m, " SIZE: %08x\n", error->plane[i].size); | |
9228 | seq_printf(m, " POS: %08x\n", error->plane[i].pos); | |
9229 | seq_printf(m, " ADDR: %08x\n", error->plane[i].addr); | |
9230 | if (INTEL_INFO(dev)->gen >= 4) { | |
9231 | seq_printf(m, " SURF: %08x\n", error->plane[i].surface); | |
9232 | seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset); | |
9233 | } | |
9234 | ||
9235 | seq_printf(m, "Cursor [%d]:\n", i); | |
9236 | seq_printf(m, " CNTR: %08x\n", error->cursor[i].control); | |
9237 | seq_printf(m, " POS: %08x\n", error->cursor[i].position); | |
9238 | seq_printf(m, " BASE: %08x\n", error->cursor[i].base); | |
9239 | } | |
9240 | } | |
9241 | #endif |