]>
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 | 47 | |
79e53945 | 48 | typedef struct { |
0206e353 | 49 | int min, max; |
79e53945 JB |
50 | } intel_range_t; |
51 | ||
52 | typedef struct { | |
0206e353 AJ |
53 | int dot_limit; |
54 | int p2_slow, p2_fast; | |
79e53945 JB |
55 | } intel_p2_t; |
56 | ||
57 | #define INTEL_P2_NUM 2 | |
d4906093 ML |
58 | typedef struct intel_limit intel_limit_t; |
59 | struct intel_limit { | |
0206e353 AJ |
60 | intel_range_t dot, vco, n, m, m1, m2, p, p1; |
61 | intel_p2_t p2; | |
d4906093 | 62 | }; |
79e53945 | 63 | |
2377b741 JB |
64 | /* FDI */ |
65 | #define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */ | |
66 | ||
d2acd215 DV |
67 | int |
68 | intel_pch_rawclk(struct drm_device *dev) | |
69 | { | |
70 | struct drm_i915_private *dev_priv = dev->dev_private; | |
71 | ||
72 | WARN_ON(!HAS_PCH_SPLIT(dev)); | |
73 | ||
74 | return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK; | |
75 | } | |
76 | ||
021357ac CW |
77 | static inline u32 /* units of 100MHz */ |
78 | intel_fdi_link_freq(struct drm_device *dev) | |
79 | { | |
8b99e68c CW |
80 | if (IS_GEN5(dev)) { |
81 | struct drm_i915_private *dev_priv = dev->dev_private; | |
82 | return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2; | |
83 | } else | |
84 | return 27; | |
021357ac CW |
85 | } |
86 | ||
e4b36699 | 87 | static const intel_limit_t intel_limits_i8xx_dvo = { |
0206e353 AJ |
88 | .dot = { .min = 25000, .max = 350000 }, |
89 | .vco = { .min = 930000, .max = 1400000 }, | |
90 | .n = { .min = 3, .max = 16 }, | |
91 | .m = { .min = 96, .max = 140 }, | |
92 | .m1 = { .min = 18, .max = 26 }, | |
93 | .m2 = { .min = 6, .max = 16 }, | |
94 | .p = { .min = 4, .max = 128 }, | |
95 | .p1 = { .min = 2, .max = 33 }, | |
273e27ca EA |
96 | .p2 = { .dot_limit = 165000, |
97 | .p2_slow = 4, .p2_fast = 2 }, | |
e4b36699 KP |
98 | }; |
99 | ||
100 | static const intel_limit_t intel_limits_i8xx_lvds = { | |
0206e353 AJ |
101 | .dot = { .min = 25000, .max = 350000 }, |
102 | .vco = { .min = 930000, .max = 1400000 }, | |
103 | .n = { .min = 3, .max = 16 }, | |
104 | .m = { .min = 96, .max = 140 }, | |
105 | .m1 = { .min = 18, .max = 26 }, | |
106 | .m2 = { .min = 6, .max = 16 }, | |
107 | .p = { .min = 4, .max = 128 }, | |
108 | .p1 = { .min = 1, .max = 6 }, | |
273e27ca EA |
109 | .p2 = { .dot_limit = 165000, |
110 | .p2_slow = 14, .p2_fast = 7 }, | |
e4b36699 | 111 | }; |
273e27ca | 112 | |
e4b36699 | 113 | static const intel_limit_t intel_limits_i9xx_sdvo = { |
0206e353 AJ |
114 | .dot = { .min = 20000, .max = 400000 }, |
115 | .vco = { .min = 1400000, .max = 2800000 }, | |
116 | .n = { .min = 1, .max = 6 }, | |
117 | .m = { .min = 70, .max = 120 }, | |
4f7dfb67 PJ |
118 | .m1 = { .min = 8, .max = 18 }, |
119 | .m2 = { .min = 3, .max = 7 }, | |
0206e353 AJ |
120 | .p = { .min = 5, .max = 80 }, |
121 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
122 | .p2 = { .dot_limit = 200000, |
123 | .p2_slow = 10, .p2_fast = 5 }, | |
e4b36699 KP |
124 | }; |
125 | ||
126 | static const intel_limit_t intel_limits_i9xx_lvds = { | |
0206e353 AJ |
127 | .dot = { .min = 20000, .max = 400000 }, |
128 | .vco = { .min = 1400000, .max = 2800000 }, | |
129 | .n = { .min = 1, .max = 6 }, | |
130 | .m = { .min = 70, .max = 120 }, | |
53a7d2d1 PJ |
131 | .m1 = { .min = 8, .max = 18 }, |
132 | .m2 = { .min = 3, .max = 7 }, | |
0206e353 AJ |
133 | .p = { .min = 7, .max = 98 }, |
134 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
135 | .p2 = { .dot_limit = 112000, |
136 | .p2_slow = 14, .p2_fast = 7 }, | |
e4b36699 KP |
137 | }; |
138 | ||
273e27ca | 139 | |
e4b36699 | 140 | static const intel_limit_t intel_limits_g4x_sdvo = { |
273e27ca EA |
141 | .dot = { .min = 25000, .max = 270000 }, |
142 | .vco = { .min = 1750000, .max = 3500000}, | |
143 | .n = { .min = 1, .max = 4 }, | |
144 | .m = { .min = 104, .max = 138 }, | |
145 | .m1 = { .min = 17, .max = 23 }, | |
146 | .m2 = { .min = 5, .max = 11 }, | |
147 | .p = { .min = 10, .max = 30 }, | |
148 | .p1 = { .min = 1, .max = 3}, | |
149 | .p2 = { .dot_limit = 270000, | |
150 | .p2_slow = 10, | |
151 | .p2_fast = 10 | |
044c7c41 | 152 | }, |
e4b36699 KP |
153 | }; |
154 | ||
155 | static const intel_limit_t intel_limits_g4x_hdmi = { | |
273e27ca EA |
156 | .dot = { .min = 22000, .max = 400000 }, |
157 | .vco = { .min = 1750000, .max = 3500000}, | |
158 | .n = { .min = 1, .max = 4 }, | |
159 | .m = { .min = 104, .max = 138 }, | |
160 | .m1 = { .min = 16, .max = 23 }, | |
161 | .m2 = { .min = 5, .max = 11 }, | |
162 | .p = { .min = 5, .max = 80 }, | |
163 | .p1 = { .min = 1, .max = 8}, | |
164 | .p2 = { .dot_limit = 165000, | |
165 | .p2_slow = 10, .p2_fast = 5 }, | |
e4b36699 KP |
166 | }; |
167 | ||
168 | static const intel_limit_t intel_limits_g4x_single_channel_lvds = { | |
273e27ca EA |
169 | .dot = { .min = 20000, .max = 115000 }, |
170 | .vco = { .min = 1750000, .max = 3500000 }, | |
171 | .n = { .min = 1, .max = 3 }, | |
172 | .m = { .min = 104, .max = 138 }, | |
173 | .m1 = { .min = 17, .max = 23 }, | |
174 | .m2 = { .min = 5, .max = 11 }, | |
175 | .p = { .min = 28, .max = 112 }, | |
176 | .p1 = { .min = 2, .max = 8 }, | |
177 | .p2 = { .dot_limit = 0, | |
178 | .p2_slow = 14, .p2_fast = 14 | |
044c7c41 | 179 | }, |
e4b36699 KP |
180 | }; |
181 | ||
182 | static const intel_limit_t intel_limits_g4x_dual_channel_lvds = { | |
273e27ca EA |
183 | .dot = { .min = 80000, .max = 224000 }, |
184 | .vco = { .min = 1750000, .max = 3500000 }, | |
185 | .n = { .min = 1, .max = 3 }, | |
186 | .m = { .min = 104, .max = 138 }, | |
187 | .m1 = { .min = 17, .max = 23 }, | |
188 | .m2 = { .min = 5, .max = 11 }, | |
189 | .p = { .min = 14, .max = 42 }, | |
190 | .p1 = { .min = 2, .max = 6 }, | |
191 | .p2 = { .dot_limit = 0, | |
192 | .p2_slow = 7, .p2_fast = 7 | |
044c7c41 | 193 | }, |
e4b36699 KP |
194 | }; |
195 | ||
f2b115e6 | 196 | static const intel_limit_t intel_limits_pineview_sdvo = { |
0206e353 AJ |
197 | .dot = { .min = 20000, .max = 400000}, |
198 | .vco = { .min = 1700000, .max = 3500000 }, | |
273e27ca | 199 | /* Pineview's Ncounter is a ring counter */ |
0206e353 AJ |
200 | .n = { .min = 3, .max = 6 }, |
201 | .m = { .min = 2, .max = 256 }, | |
273e27ca | 202 | /* Pineview only has one combined m divider, which we treat as m2. */ |
0206e353 AJ |
203 | .m1 = { .min = 0, .max = 0 }, |
204 | .m2 = { .min = 0, .max = 254 }, | |
205 | .p = { .min = 5, .max = 80 }, | |
206 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
207 | .p2 = { .dot_limit = 200000, |
208 | .p2_slow = 10, .p2_fast = 5 }, | |
e4b36699 KP |
209 | }; |
210 | ||
f2b115e6 | 211 | static const intel_limit_t intel_limits_pineview_lvds = { |
0206e353 AJ |
212 | .dot = { .min = 20000, .max = 400000 }, |
213 | .vco = { .min = 1700000, .max = 3500000 }, | |
214 | .n = { .min = 3, .max = 6 }, | |
215 | .m = { .min = 2, .max = 256 }, | |
216 | .m1 = { .min = 0, .max = 0 }, | |
217 | .m2 = { .min = 0, .max = 254 }, | |
218 | .p = { .min = 7, .max = 112 }, | |
219 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
220 | .p2 = { .dot_limit = 112000, |
221 | .p2_slow = 14, .p2_fast = 14 }, | |
e4b36699 KP |
222 | }; |
223 | ||
273e27ca EA |
224 | /* Ironlake / Sandybridge |
225 | * | |
226 | * We calculate clock using (register_value + 2) for N/M1/M2, so here | |
227 | * the range value for them is (actual_value - 2). | |
228 | */ | |
b91ad0ec | 229 | static const intel_limit_t intel_limits_ironlake_dac = { |
273e27ca EA |
230 | .dot = { .min = 25000, .max = 350000 }, |
231 | .vco = { .min = 1760000, .max = 3510000 }, | |
232 | .n = { .min = 1, .max = 5 }, | |
233 | .m = { .min = 79, .max = 127 }, | |
234 | .m1 = { .min = 12, .max = 22 }, | |
235 | .m2 = { .min = 5, .max = 9 }, | |
236 | .p = { .min = 5, .max = 80 }, | |
237 | .p1 = { .min = 1, .max = 8 }, | |
238 | .p2 = { .dot_limit = 225000, | |
239 | .p2_slow = 10, .p2_fast = 5 }, | |
e4b36699 KP |
240 | }; |
241 | ||
b91ad0ec | 242 | static const intel_limit_t intel_limits_ironlake_single_lvds = { |
273e27ca EA |
243 | .dot = { .min = 25000, .max = 350000 }, |
244 | .vco = { .min = 1760000, .max = 3510000 }, | |
245 | .n = { .min = 1, .max = 3 }, | |
246 | .m = { .min = 79, .max = 118 }, | |
247 | .m1 = { .min = 12, .max = 22 }, | |
248 | .m2 = { .min = 5, .max = 9 }, | |
249 | .p = { .min = 28, .max = 112 }, | |
250 | .p1 = { .min = 2, .max = 8 }, | |
251 | .p2 = { .dot_limit = 225000, | |
252 | .p2_slow = 14, .p2_fast = 14 }, | |
b91ad0ec ZW |
253 | }; |
254 | ||
255 | static const intel_limit_t intel_limits_ironlake_dual_lvds = { | |
273e27ca EA |
256 | .dot = { .min = 25000, .max = 350000 }, |
257 | .vco = { .min = 1760000, .max = 3510000 }, | |
258 | .n = { .min = 1, .max = 3 }, | |
259 | .m = { .min = 79, .max = 127 }, | |
260 | .m1 = { .min = 12, .max = 22 }, | |
261 | .m2 = { .min = 5, .max = 9 }, | |
262 | .p = { .min = 14, .max = 56 }, | |
263 | .p1 = { .min = 2, .max = 8 }, | |
264 | .p2 = { .dot_limit = 225000, | |
265 | .p2_slow = 7, .p2_fast = 7 }, | |
b91ad0ec ZW |
266 | }; |
267 | ||
273e27ca | 268 | /* LVDS 100mhz refclk limits. */ |
b91ad0ec | 269 | static const intel_limit_t intel_limits_ironlake_single_lvds_100m = { |
273e27ca EA |
270 | .dot = { .min = 25000, .max = 350000 }, |
271 | .vco = { .min = 1760000, .max = 3510000 }, | |
272 | .n = { .min = 1, .max = 2 }, | |
273 | .m = { .min = 79, .max = 126 }, | |
274 | .m1 = { .min = 12, .max = 22 }, | |
275 | .m2 = { .min = 5, .max = 9 }, | |
276 | .p = { .min = 28, .max = 112 }, | |
0206e353 | 277 | .p1 = { .min = 2, .max = 8 }, |
273e27ca EA |
278 | .p2 = { .dot_limit = 225000, |
279 | .p2_slow = 14, .p2_fast = 14 }, | |
b91ad0ec ZW |
280 | }; |
281 | ||
282 | static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = { | |
273e27ca EA |
283 | .dot = { .min = 25000, .max = 350000 }, |
284 | .vco = { .min = 1760000, .max = 3510000 }, | |
285 | .n = { .min = 1, .max = 3 }, | |
286 | .m = { .min = 79, .max = 126 }, | |
287 | .m1 = { .min = 12, .max = 22 }, | |
288 | .m2 = { .min = 5, .max = 9 }, | |
289 | .p = { .min = 14, .max = 42 }, | |
0206e353 | 290 | .p1 = { .min = 2, .max = 6 }, |
273e27ca EA |
291 | .p2 = { .dot_limit = 225000, |
292 | .p2_slow = 7, .p2_fast = 7 }, | |
4547668a ZY |
293 | }; |
294 | ||
a0c4da24 JB |
295 | static const intel_limit_t intel_limits_vlv_dac = { |
296 | .dot = { .min = 25000, .max = 270000 }, | |
297 | .vco = { .min = 4000000, .max = 6000000 }, | |
298 | .n = { .min = 1, .max = 7 }, | |
299 | .m = { .min = 22, .max = 450 }, /* guess */ | |
300 | .m1 = { .min = 2, .max = 3 }, | |
301 | .m2 = { .min = 11, .max = 156 }, | |
302 | .p = { .min = 10, .max = 30 }, | |
75e53986 | 303 | .p1 = { .min = 1, .max = 3 }, |
a0c4da24 JB |
304 | .p2 = { .dot_limit = 270000, |
305 | .p2_slow = 2, .p2_fast = 20 }, | |
a0c4da24 JB |
306 | }; |
307 | ||
308 | static const intel_limit_t intel_limits_vlv_hdmi = { | |
75e53986 DV |
309 | .dot = { .min = 25000, .max = 270000 }, |
310 | .vco = { .min = 4000000, .max = 6000000 }, | |
a0c4da24 JB |
311 | .n = { .min = 1, .max = 7 }, |
312 | .m = { .min = 60, .max = 300 }, /* guess */ | |
313 | .m1 = { .min = 2, .max = 3 }, | |
314 | .m2 = { .min = 11, .max = 156 }, | |
315 | .p = { .min = 10, .max = 30 }, | |
316 | .p1 = { .min = 2, .max = 3 }, | |
317 | .p2 = { .dot_limit = 270000, | |
318 | .p2_slow = 2, .p2_fast = 20 }, | |
a0c4da24 JB |
319 | }; |
320 | ||
321 | static const intel_limit_t intel_limits_vlv_dp = { | |
74a4dd2e VP |
322 | .dot = { .min = 25000, .max = 270000 }, |
323 | .vco = { .min = 4000000, .max = 6000000 }, | |
a0c4da24 | 324 | .n = { .min = 1, .max = 7 }, |
74a4dd2e | 325 | .m = { .min = 22, .max = 450 }, |
a0c4da24 JB |
326 | .m1 = { .min = 2, .max = 3 }, |
327 | .m2 = { .min = 11, .max = 156 }, | |
328 | .p = { .min = 10, .max = 30 }, | |
75e53986 | 329 | .p1 = { .min = 1, .max = 3 }, |
a0c4da24 JB |
330 | .p2 = { .dot_limit = 270000, |
331 | .p2_slow = 2, .p2_fast = 20 }, | |
a0c4da24 JB |
332 | }; |
333 | ||
1b894b59 CW |
334 | static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc, |
335 | int refclk) | |
2c07245f | 336 | { |
b91ad0ec | 337 | struct drm_device *dev = crtc->dev; |
2c07245f | 338 | const intel_limit_t *limit; |
b91ad0ec ZW |
339 | |
340 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
1974cad0 | 341 | if (intel_is_dual_link_lvds(dev)) { |
1b894b59 | 342 | if (refclk == 100000) |
b91ad0ec ZW |
343 | limit = &intel_limits_ironlake_dual_lvds_100m; |
344 | else | |
345 | limit = &intel_limits_ironlake_dual_lvds; | |
346 | } else { | |
1b894b59 | 347 | if (refclk == 100000) |
b91ad0ec ZW |
348 | limit = &intel_limits_ironlake_single_lvds_100m; |
349 | else | |
350 | limit = &intel_limits_ironlake_single_lvds; | |
351 | } | |
c6bb3538 | 352 | } else |
b91ad0ec | 353 | limit = &intel_limits_ironlake_dac; |
2c07245f ZW |
354 | |
355 | return limit; | |
356 | } | |
357 | ||
044c7c41 ML |
358 | static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc) |
359 | { | |
360 | struct drm_device *dev = crtc->dev; | |
044c7c41 ML |
361 | const intel_limit_t *limit; |
362 | ||
363 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
1974cad0 | 364 | if (intel_is_dual_link_lvds(dev)) |
e4b36699 | 365 | limit = &intel_limits_g4x_dual_channel_lvds; |
044c7c41 | 366 | else |
e4b36699 | 367 | limit = &intel_limits_g4x_single_channel_lvds; |
044c7c41 ML |
368 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) || |
369 | intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) { | |
e4b36699 | 370 | limit = &intel_limits_g4x_hdmi; |
044c7c41 | 371 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) { |
e4b36699 | 372 | limit = &intel_limits_g4x_sdvo; |
044c7c41 | 373 | } else /* The option is for other outputs */ |
e4b36699 | 374 | limit = &intel_limits_i9xx_sdvo; |
044c7c41 ML |
375 | |
376 | return limit; | |
377 | } | |
378 | ||
1b894b59 | 379 | static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk) |
79e53945 JB |
380 | { |
381 | struct drm_device *dev = crtc->dev; | |
382 | const intel_limit_t *limit; | |
383 | ||
bad720ff | 384 | if (HAS_PCH_SPLIT(dev)) |
1b894b59 | 385 | limit = intel_ironlake_limit(crtc, refclk); |
2c07245f | 386 | else if (IS_G4X(dev)) { |
044c7c41 | 387 | limit = intel_g4x_limit(crtc); |
f2b115e6 | 388 | } else if (IS_PINEVIEW(dev)) { |
2177832f | 389 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) |
f2b115e6 | 390 | limit = &intel_limits_pineview_lvds; |
2177832f | 391 | else |
f2b115e6 | 392 | limit = &intel_limits_pineview_sdvo; |
a0c4da24 JB |
393 | } else if (IS_VALLEYVIEW(dev)) { |
394 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) | |
395 | limit = &intel_limits_vlv_dac; | |
396 | else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) | |
397 | limit = &intel_limits_vlv_hdmi; | |
398 | else | |
399 | limit = &intel_limits_vlv_dp; | |
a6c45cf0 CW |
400 | } else if (!IS_GEN2(dev)) { |
401 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) | |
402 | limit = &intel_limits_i9xx_lvds; | |
403 | else | |
404 | limit = &intel_limits_i9xx_sdvo; | |
79e53945 JB |
405 | } else { |
406 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) | |
e4b36699 | 407 | limit = &intel_limits_i8xx_lvds; |
79e53945 | 408 | else |
e4b36699 | 409 | limit = &intel_limits_i8xx_dvo; |
79e53945 JB |
410 | } |
411 | return limit; | |
412 | } | |
413 | ||
f2b115e6 AJ |
414 | /* m1 is reserved as 0 in Pineview, n is a ring counter */ |
415 | static void pineview_clock(int refclk, intel_clock_t *clock) | |
79e53945 | 416 | { |
2177832f SL |
417 | clock->m = clock->m2 + 2; |
418 | clock->p = clock->p1 * clock->p2; | |
419 | clock->vco = refclk * clock->m / clock->n; | |
420 | clock->dot = clock->vco / clock->p; | |
421 | } | |
422 | ||
7429e9d4 DV |
423 | static uint32_t i9xx_dpll_compute_m(struct dpll *dpll) |
424 | { | |
425 | return 5 * (dpll->m1 + 2) + (dpll->m2 + 2); | |
426 | } | |
427 | ||
ac58c3f0 | 428 | static void i9xx_clock(int refclk, intel_clock_t *clock) |
2177832f | 429 | { |
7429e9d4 | 430 | clock->m = i9xx_dpll_compute_m(clock); |
79e53945 JB |
431 | clock->p = clock->p1 * clock->p2; |
432 | clock->vco = refclk * clock->m / (clock->n + 2); | |
433 | clock->dot = clock->vco / clock->p; | |
434 | } | |
435 | ||
79e53945 JB |
436 | /** |
437 | * Returns whether any output on the specified pipe is of the specified type | |
438 | */ | |
4ef69c7a | 439 | bool intel_pipe_has_type(struct drm_crtc *crtc, int type) |
79e53945 | 440 | { |
4ef69c7a | 441 | struct drm_device *dev = crtc->dev; |
4ef69c7a CW |
442 | struct intel_encoder *encoder; |
443 | ||
6c2b7c12 DV |
444 | for_each_encoder_on_crtc(dev, crtc, encoder) |
445 | if (encoder->type == type) | |
4ef69c7a CW |
446 | return true; |
447 | ||
448 | return false; | |
79e53945 JB |
449 | } |
450 | ||
7c04d1d9 | 451 | #define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0) |
79e53945 JB |
452 | /** |
453 | * Returns whether the given set of divisors are valid for a given refclk with | |
454 | * the given connectors. | |
455 | */ | |
456 | ||
1b894b59 CW |
457 | static bool intel_PLL_is_valid(struct drm_device *dev, |
458 | const intel_limit_t *limit, | |
459 | const intel_clock_t *clock) | |
79e53945 | 460 | { |
79e53945 | 461 | if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1) |
0206e353 | 462 | INTELPllInvalid("p1 out of range\n"); |
79e53945 | 463 | if (clock->p < limit->p.min || limit->p.max < clock->p) |
0206e353 | 464 | INTELPllInvalid("p out of range\n"); |
79e53945 | 465 | if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2) |
0206e353 | 466 | INTELPllInvalid("m2 out of range\n"); |
79e53945 | 467 | if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1) |
0206e353 | 468 | INTELPllInvalid("m1 out of range\n"); |
f2b115e6 | 469 | if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev)) |
0206e353 | 470 | INTELPllInvalid("m1 <= m2\n"); |
79e53945 | 471 | if (clock->m < limit->m.min || limit->m.max < clock->m) |
0206e353 | 472 | INTELPllInvalid("m out of range\n"); |
79e53945 | 473 | if (clock->n < limit->n.min || limit->n.max < clock->n) |
0206e353 | 474 | INTELPllInvalid("n out of range\n"); |
79e53945 | 475 | if (clock->vco < limit->vco.min || limit->vco.max < clock->vco) |
0206e353 | 476 | INTELPllInvalid("vco out of range\n"); |
79e53945 JB |
477 | /* XXX: We may need to be checking "Dot clock" depending on the multiplier, |
478 | * connector, etc., rather than just a single range. | |
479 | */ | |
480 | if (clock->dot < limit->dot.min || limit->dot.max < clock->dot) | |
0206e353 | 481 | INTELPllInvalid("dot out of range\n"); |
79e53945 JB |
482 | |
483 | return true; | |
484 | } | |
485 | ||
d4906093 | 486 | static bool |
ee9300bb | 487 | i9xx_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc, |
cec2f356 SP |
488 | int target, int refclk, intel_clock_t *match_clock, |
489 | intel_clock_t *best_clock) | |
ac58c3f0 DV |
490 | { |
491 | struct drm_device *dev = crtc->dev; | |
492 | intel_clock_t clock; | |
493 | int err = target; | |
494 | ||
495 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
496 | /* | |
497 | * For LVDS just rely on its current settings for dual-channel. | |
498 | * We haven't figured out how to reliably set up different | |
499 | * single/dual channel state, if we even can. | |
500 | */ | |
501 | if (intel_is_dual_link_lvds(dev)) | |
502 | clock.p2 = limit->p2.p2_fast; | |
503 | else | |
504 | clock.p2 = limit->p2.p2_slow; | |
505 | } else { | |
506 | if (target < limit->p2.dot_limit) | |
507 | clock.p2 = limit->p2.p2_slow; | |
508 | else | |
509 | clock.p2 = limit->p2.p2_fast; | |
510 | } | |
511 | ||
512 | memset(best_clock, 0, sizeof(*best_clock)); | |
513 | ||
514 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; | |
515 | clock.m1++) { | |
516 | for (clock.m2 = limit->m2.min; | |
517 | clock.m2 <= limit->m2.max; clock.m2++) { | |
c0efc387 | 518 | if (clock.m2 >= clock.m1) |
ac58c3f0 DV |
519 | break; |
520 | for (clock.n = limit->n.min; | |
521 | clock.n <= limit->n.max; clock.n++) { | |
522 | for (clock.p1 = limit->p1.min; | |
523 | clock.p1 <= limit->p1.max; clock.p1++) { | |
524 | int this_err; | |
d4906093 | 525 | |
ac58c3f0 DV |
526 | i9xx_clock(refclk, &clock); |
527 | if (!intel_PLL_is_valid(dev, limit, | |
528 | &clock)) | |
529 | continue; | |
530 | if (match_clock && | |
531 | clock.p != match_clock->p) | |
532 | continue; | |
533 | ||
534 | this_err = abs(clock.dot - target); | |
535 | if (this_err < err) { | |
536 | *best_clock = clock; | |
537 | err = this_err; | |
538 | } | |
539 | } | |
540 | } | |
541 | } | |
542 | } | |
543 | ||
544 | return (err != target); | |
545 | } | |
546 | ||
547 | static bool | |
ee9300bb DV |
548 | pnv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc, |
549 | int target, int refclk, intel_clock_t *match_clock, | |
550 | intel_clock_t *best_clock) | |
79e53945 JB |
551 | { |
552 | struct drm_device *dev = crtc->dev; | |
79e53945 | 553 | intel_clock_t clock; |
79e53945 JB |
554 | int err = target; |
555 | ||
a210b028 | 556 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
79e53945 | 557 | /* |
a210b028 DV |
558 | * For LVDS just rely on its current settings for dual-channel. |
559 | * We haven't figured out how to reliably set up different | |
560 | * single/dual channel state, if we even can. | |
79e53945 | 561 | */ |
1974cad0 | 562 | if (intel_is_dual_link_lvds(dev)) |
79e53945 JB |
563 | clock.p2 = limit->p2.p2_fast; |
564 | else | |
565 | clock.p2 = limit->p2.p2_slow; | |
566 | } else { | |
567 | if (target < limit->p2.dot_limit) | |
568 | clock.p2 = limit->p2.p2_slow; | |
569 | else | |
570 | clock.p2 = limit->p2.p2_fast; | |
571 | } | |
572 | ||
0206e353 | 573 | memset(best_clock, 0, sizeof(*best_clock)); |
79e53945 | 574 | |
42158660 ZY |
575 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; |
576 | clock.m1++) { | |
577 | for (clock.m2 = limit->m2.min; | |
578 | clock.m2 <= limit->m2.max; clock.m2++) { | |
42158660 ZY |
579 | for (clock.n = limit->n.min; |
580 | clock.n <= limit->n.max; clock.n++) { | |
581 | for (clock.p1 = limit->p1.min; | |
582 | clock.p1 <= limit->p1.max; clock.p1++) { | |
79e53945 JB |
583 | int this_err; |
584 | ||
ac58c3f0 | 585 | pineview_clock(refclk, &clock); |
1b894b59 CW |
586 | if (!intel_PLL_is_valid(dev, limit, |
587 | &clock)) | |
79e53945 | 588 | continue; |
cec2f356 SP |
589 | if (match_clock && |
590 | clock.p != match_clock->p) | |
591 | continue; | |
79e53945 JB |
592 | |
593 | this_err = abs(clock.dot - target); | |
594 | if (this_err < err) { | |
595 | *best_clock = clock; | |
596 | err = this_err; | |
597 | } | |
598 | } | |
599 | } | |
600 | } | |
601 | } | |
602 | ||
603 | return (err != target); | |
604 | } | |
605 | ||
d4906093 | 606 | static bool |
ee9300bb DV |
607 | g4x_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc, |
608 | int target, int refclk, intel_clock_t *match_clock, | |
609 | intel_clock_t *best_clock) | |
d4906093 ML |
610 | { |
611 | struct drm_device *dev = crtc->dev; | |
d4906093 ML |
612 | intel_clock_t clock; |
613 | int max_n; | |
614 | bool found; | |
6ba770dc AJ |
615 | /* approximately equals target * 0.00585 */ |
616 | int err_most = (target >> 8) + (target >> 9); | |
d4906093 ML |
617 | found = false; |
618 | ||
619 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
1974cad0 | 620 | if (intel_is_dual_link_lvds(dev)) |
d4906093 ML |
621 | clock.p2 = limit->p2.p2_fast; |
622 | else | |
623 | clock.p2 = limit->p2.p2_slow; | |
624 | } else { | |
625 | if (target < limit->p2.dot_limit) | |
626 | clock.p2 = limit->p2.p2_slow; | |
627 | else | |
628 | clock.p2 = limit->p2.p2_fast; | |
629 | } | |
630 | ||
631 | memset(best_clock, 0, sizeof(*best_clock)); | |
632 | max_n = limit->n.max; | |
f77f13e2 | 633 | /* based on hardware requirement, prefer smaller n to precision */ |
d4906093 | 634 | for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { |
f77f13e2 | 635 | /* based on hardware requirement, prefere larger m1,m2 */ |
d4906093 ML |
636 | for (clock.m1 = limit->m1.max; |
637 | clock.m1 >= limit->m1.min; clock.m1--) { | |
638 | for (clock.m2 = limit->m2.max; | |
639 | clock.m2 >= limit->m2.min; clock.m2--) { | |
640 | for (clock.p1 = limit->p1.max; | |
641 | clock.p1 >= limit->p1.min; clock.p1--) { | |
642 | int this_err; | |
643 | ||
ac58c3f0 | 644 | i9xx_clock(refclk, &clock); |
1b894b59 CW |
645 | if (!intel_PLL_is_valid(dev, limit, |
646 | &clock)) | |
d4906093 | 647 | continue; |
1b894b59 CW |
648 | |
649 | this_err = abs(clock.dot - target); | |
d4906093 ML |
650 | if (this_err < err_most) { |
651 | *best_clock = clock; | |
652 | err_most = this_err; | |
653 | max_n = clock.n; | |
654 | found = true; | |
655 | } | |
656 | } | |
657 | } | |
658 | } | |
659 | } | |
2c07245f ZW |
660 | return found; |
661 | } | |
662 | ||
a0c4da24 | 663 | static bool |
ee9300bb DV |
664 | vlv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc, |
665 | int target, int refclk, intel_clock_t *match_clock, | |
666 | intel_clock_t *best_clock) | |
a0c4da24 JB |
667 | { |
668 | u32 p1, p2, m1, m2, vco, bestn, bestm1, bestm2, bestp1, bestp2; | |
669 | u32 m, n, fastclk; | |
670 | u32 updrate, minupdate, fracbits, p; | |
671 | unsigned long bestppm, ppm, absppm; | |
672 | int dotclk, flag; | |
673 | ||
af447bd3 | 674 | flag = 0; |
a0c4da24 JB |
675 | dotclk = target * 1000; |
676 | bestppm = 1000000; | |
677 | ppm = absppm = 0; | |
678 | fastclk = dotclk / (2*100); | |
679 | updrate = 0; | |
680 | minupdate = 19200; | |
681 | fracbits = 1; | |
682 | n = p = p1 = p2 = m = m1 = m2 = vco = bestn = 0; | |
683 | bestm1 = bestm2 = bestp1 = bestp2 = 0; | |
684 | ||
685 | /* based on hardware requirement, prefer smaller n to precision */ | |
686 | for (n = limit->n.min; n <= ((refclk) / minupdate); n++) { | |
687 | updrate = refclk / n; | |
688 | for (p1 = limit->p1.max; p1 > limit->p1.min; p1--) { | |
689 | for (p2 = limit->p2.p2_fast+1; p2 > 0; p2--) { | |
690 | if (p2 > 10) | |
691 | p2 = p2 - 1; | |
692 | p = p1 * p2; | |
693 | /* based on hardware requirement, prefer bigger m1,m2 values */ | |
694 | for (m1 = limit->m1.min; m1 <= limit->m1.max; m1++) { | |
695 | m2 = (((2*(fastclk * p * n / m1 )) + | |
696 | refclk) / (2*refclk)); | |
697 | m = m1 * m2; | |
698 | vco = updrate * m; | |
699 | if (vco >= limit->vco.min && vco < limit->vco.max) { | |
700 | ppm = 1000000 * ((vco / p) - fastclk) / fastclk; | |
701 | absppm = (ppm > 0) ? ppm : (-ppm); | |
702 | if (absppm < 100 && ((p1 * p2) > (bestp1 * bestp2))) { | |
703 | bestppm = 0; | |
704 | flag = 1; | |
705 | } | |
706 | if (absppm < bestppm - 10) { | |
707 | bestppm = absppm; | |
708 | flag = 1; | |
709 | } | |
710 | if (flag) { | |
711 | bestn = n; | |
712 | bestm1 = m1; | |
713 | bestm2 = m2; | |
714 | bestp1 = p1; | |
715 | bestp2 = p2; | |
716 | flag = 0; | |
717 | } | |
718 | } | |
719 | } | |
720 | } | |
721 | } | |
722 | } | |
723 | best_clock->n = bestn; | |
724 | best_clock->m1 = bestm1; | |
725 | best_clock->m2 = bestm2; | |
726 | best_clock->p1 = bestp1; | |
727 | best_clock->p2 = bestp2; | |
728 | ||
729 | return true; | |
730 | } | |
a4fc5ed6 | 731 | |
a5c961d1 PZ |
732 | enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv, |
733 | enum pipe pipe) | |
734 | { | |
735 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; | |
736 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
737 | ||
3b117c8f | 738 | return intel_crtc->config.cpu_transcoder; |
a5c961d1 PZ |
739 | } |
740 | ||
a928d536 PZ |
741 | static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe) |
742 | { | |
743 | struct drm_i915_private *dev_priv = dev->dev_private; | |
744 | u32 frame, frame_reg = PIPEFRAME(pipe); | |
745 | ||
746 | frame = I915_READ(frame_reg); | |
747 | ||
748 | if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50)) | |
749 | DRM_DEBUG_KMS("vblank wait timed out\n"); | |
750 | } | |
751 | ||
9d0498a2 JB |
752 | /** |
753 | * intel_wait_for_vblank - wait for vblank on a given pipe | |
754 | * @dev: drm device | |
755 | * @pipe: pipe to wait for | |
756 | * | |
757 | * Wait for vblank to occur on a given pipe. Needed for various bits of | |
758 | * mode setting code. | |
759 | */ | |
760 | void intel_wait_for_vblank(struct drm_device *dev, int pipe) | |
79e53945 | 761 | { |
9d0498a2 | 762 | struct drm_i915_private *dev_priv = dev->dev_private; |
9db4a9c7 | 763 | int pipestat_reg = PIPESTAT(pipe); |
9d0498a2 | 764 | |
a928d536 PZ |
765 | if (INTEL_INFO(dev)->gen >= 5) { |
766 | ironlake_wait_for_vblank(dev, pipe); | |
767 | return; | |
768 | } | |
769 | ||
300387c0 CW |
770 | /* Clear existing vblank status. Note this will clear any other |
771 | * sticky status fields as well. | |
772 | * | |
773 | * This races with i915_driver_irq_handler() with the result | |
774 | * that either function could miss a vblank event. Here it is not | |
775 | * fatal, as we will either wait upon the next vblank interrupt or | |
776 | * timeout. Generally speaking intel_wait_for_vblank() is only | |
777 | * called during modeset at which time the GPU should be idle and | |
778 | * should *not* be performing page flips and thus not waiting on | |
779 | * vblanks... | |
780 | * Currently, the result of us stealing a vblank from the irq | |
781 | * handler is that a single frame will be skipped during swapbuffers. | |
782 | */ | |
783 | I915_WRITE(pipestat_reg, | |
784 | I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS); | |
785 | ||
9d0498a2 | 786 | /* Wait for vblank interrupt bit to set */ |
481b6af3 CW |
787 | if (wait_for(I915_READ(pipestat_reg) & |
788 | PIPE_VBLANK_INTERRUPT_STATUS, | |
789 | 50)) | |
9d0498a2 JB |
790 | DRM_DEBUG_KMS("vblank wait timed out\n"); |
791 | } | |
792 | ||
ab7ad7f6 KP |
793 | /* |
794 | * intel_wait_for_pipe_off - wait for pipe to turn off | |
9d0498a2 JB |
795 | * @dev: drm device |
796 | * @pipe: pipe to wait for | |
797 | * | |
798 | * After disabling a pipe, we can't wait for vblank in the usual way, | |
799 | * spinning on the vblank interrupt status bit, since we won't actually | |
800 | * see an interrupt when the pipe is disabled. | |
801 | * | |
ab7ad7f6 KP |
802 | * On Gen4 and above: |
803 | * wait for the pipe register state bit to turn off | |
804 | * | |
805 | * Otherwise: | |
806 | * wait for the display line value to settle (it usually | |
807 | * ends up stopping at the start of the next frame). | |
58e10eb9 | 808 | * |
9d0498a2 | 809 | */ |
58e10eb9 | 810 | void intel_wait_for_pipe_off(struct drm_device *dev, int pipe) |
9d0498a2 JB |
811 | { |
812 | struct drm_i915_private *dev_priv = dev->dev_private; | |
702e7a56 PZ |
813 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
814 | pipe); | |
ab7ad7f6 KP |
815 | |
816 | if (INTEL_INFO(dev)->gen >= 4) { | |
702e7a56 | 817 | int reg = PIPECONF(cpu_transcoder); |
ab7ad7f6 KP |
818 | |
819 | /* Wait for the Pipe State to go off */ | |
58e10eb9 CW |
820 | if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0, |
821 | 100)) | |
284637d9 | 822 | WARN(1, "pipe_off wait timed out\n"); |
ab7ad7f6 | 823 | } else { |
837ba00f | 824 | u32 last_line, line_mask; |
58e10eb9 | 825 | int reg = PIPEDSL(pipe); |
ab7ad7f6 KP |
826 | unsigned long timeout = jiffies + msecs_to_jiffies(100); |
827 | ||
837ba00f PZ |
828 | if (IS_GEN2(dev)) |
829 | line_mask = DSL_LINEMASK_GEN2; | |
830 | else | |
831 | line_mask = DSL_LINEMASK_GEN3; | |
832 | ||
ab7ad7f6 KP |
833 | /* Wait for the display line to settle */ |
834 | do { | |
837ba00f | 835 | last_line = I915_READ(reg) & line_mask; |
ab7ad7f6 | 836 | mdelay(5); |
837ba00f | 837 | } while (((I915_READ(reg) & line_mask) != last_line) && |
ab7ad7f6 KP |
838 | time_after(timeout, jiffies)); |
839 | if (time_after(jiffies, timeout)) | |
284637d9 | 840 | WARN(1, "pipe_off wait timed out\n"); |
ab7ad7f6 | 841 | } |
79e53945 JB |
842 | } |
843 | ||
b0ea7d37 DL |
844 | /* |
845 | * ibx_digital_port_connected - is the specified port connected? | |
846 | * @dev_priv: i915 private structure | |
847 | * @port: the port to test | |
848 | * | |
849 | * Returns true if @port is connected, false otherwise. | |
850 | */ | |
851 | bool ibx_digital_port_connected(struct drm_i915_private *dev_priv, | |
852 | struct intel_digital_port *port) | |
853 | { | |
854 | u32 bit; | |
855 | ||
c36346e3 DL |
856 | if (HAS_PCH_IBX(dev_priv->dev)) { |
857 | switch(port->port) { | |
858 | case PORT_B: | |
859 | bit = SDE_PORTB_HOTPLUG; | |
860 | break; | |
861 | case PORT_C: | |
862 | bit = SDE_PORTC_HOTPLUG; | |
863 | break; | |
864 | case PORT_D: | |
865 | bit = SDE_PORTD_HOTPLUG; | |
866 | break; | |
867 | default: | |
868 | return true; | |
869 | } | |
870 | } else { | |
871 | switch(port->port) { | |
872 | case PORT_B: | |
873 | bit = SDE_PORTB_HOTPLUG_CPT; | |
874 | break; | |
875 | case PORT_C: | |
876 | bit = SDE_PORTC_HOTPLUG_CPT; | |
877 | break; | |
878 | case PORT_D: | |
879 | bit = SDE_PORTD_HOTPLUG_CPT; | |
880 | break; | |
881 | default: | |
882 | return true; | |
883 | } | |
b0ea7d37 DL |
884 | } |
885 | ||
886 | return I915_READ(SDEISR) & bit; | |
887 | } | |
888 | ||
b24e7179 JB |
889 | static const char *state_string(bool enabled) |
890 | { | |
891 | return enabled ? "on" : "off"; | |
892 | } | |
893 | ||
894 | /* Only for pre-ILK configs */ | |
895 | static void assert_pll(struct drm_i915_private *dev_priv, | |
896 | enum pipe pipe, bool state) | |
897 | { | |
898 | int reg; | |
899 | u32 val; | |
900 | bool cur_state; | |
901 | ||
902 | reg = DPLL(pipe); | |
903 | val = I915_READ(reg); | |
904 | cur_state = !!(val & DPLL_VCO_ENABLE); | |
905 | WARN(cur_state != state, | |
906 | "PLL state assertion failure (expected %s, current %s)\n", | |
907 | state_string(state), state_string(cur_state)); | |
908 | } | |
909 | #define assert_pll_enabled(d, p) assert_pll(d, p, true) | |
910 | #define assert_pll_disabled(d, p) assert_pll(d, p, false) | |
911 | ||
040484af JB |
912 | /* For ILK+ */ |
913 | static void assert_pch_pll(struct drm_i915_private *dev_priv, | |
92b27b08 CW |
914 | struct intel_pch_pll *pll, |
915 | struct intel_crtc *crtc, | |
916 | bool state) | |
040484af | 917 | { |
040484af JB |
918 | u32 val; |
919 | bool cur_state; | |
920 | ||
9d82aa17 ED |
921 | if (HAS_PCH_LPT(dev_priv->dev)) { |
922 | DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n"); | |
923 | return; | |
924 | } | |
925 | ||
92b27b08 CW |
926 | if (WARN (!pll, |
927 | "asserting PCH PLL %s with no PLL\n", state_string(state))) | |
ee7b9f93 | 928 | return; |
ee7b9f93 | 929 | |
92b27b08 CW |
930 | val = I915_READ(pll->pll_reg); |
931 | cur_state = !!(val & DPLL_VCO_ENABLE); | |
932 | WARN(cur_state != state, | |
933 | "PCH PLL state for reg %x assertion failure (expected %s, current %s), val=%08x\n", | |
934 | pll->pll_reg, state_string(state), state_string(cur_state), val); | |
935 | ||
936 | /* Make sure the selected PLL is correctly attached to the transcoder */ | |
937 | if (crtc && HAS_PCH_CPT(dev_priv->dev)) { | |
d3ccbe86 JB |
938 | u32 pch_dpll; |
939 | ||
940 | pch_dpll = I915_READ(PCH_DPLL_SEL); | |
92b27b08 CW |
941 | cur_state = pll->pll_reg == _PCH_DPLL_B; |
942 | if (!WARN(((pch_dpll >> (4 * crtc->pipe)) & 1) != cur_state, | |
4bb6f1f3 VS |
943 | "PLL[%d] not attached to this transcoder %c: %08x\n", |
944 | cur_state, pipe_name(crtc->pipe), pch_dpll)) { | |
92b27b08 CW |
945 | cur_state = !!(val >> (4*crtc->pipe + 3)); |
946 | WARN(cur_state != state, | |
4bb6f1f3 | 947 | "PLL[%d] not %s on this transcoder %c: %08x\n", |
92b27b08 CW |
948 | pll->pll_reg == _PCH_DPLL_B, |
949 | state_string(state), | |
4bb6f1f3 | 950 | pipe_name(crtc->pipe), |
92b27b08 CW |
951 | val); |
952 | } | |
d3ccbe86 | 953 | } |
040484af | 954 | } |
92b27b08 CW |
955 | #define assert_pch_pll_enabled(d, p, c) assert_pch_pll(d, p, c, true) |
956 | #define assert_pch_pll_disabled(d, p, c) assert_pch_pll(d, p, c, false) | |
040484af JB |
957 | |
958 | static void assert_fdi_tx(struct drm_i915_private *dev_priv, | |
959 | enum pipe pipe, bool state) | |
960 | { | |
961 | int reg; | |
962 | u32 val; | |
963 | bool cur_state; | |
ad80a810 PZ |
964 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
965 | pipe); | |
040484af | 966 | |
affa9354 PZ |
967 | if (HAS_DDI(dev_priv->dev)) { |
968 | /* DDI does not have a specific FDI_TX register */ | |
ad80a810 | 969 | reg = TRANS_DDI_FUNC_CTL(cpu_transcoder); |
bf507ef7 | 970 | val = I915_READ(reg); |
ad80a810 | 971 | cur_state = !!(val & TRANS_DDI_FUNC_ENABLE); |
bf507ef7 ED |
972 | } else { |
973 | reg = FDI_TX_CTL(pipe); | |
974 | val = I915_READ(reg); | |
975 | cur_state = !!(val & FDI_TX_ENABLE); | |
976 | } | |
040484af JB |
977 | WARN(cur_state != state, |
978 | "FDI TX state assertion failure (expected %s, current %s)\n", | |
979 | state_string(state), state_string(cur_state)); | |
980 | } | |
981 | #define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true) | |
982 | #define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false) | |
983 | ||
984 | static void assert_fdi_rx(struct drm_i915_private *dev_priv, | |
985 | enum pipe pipe, bool state) | |
986 | { | |
987 | int reg; | |
988 | u32 val; | |
989 | bool cur_state; | |
990 | ||
d63fa0dc PZ |
991 | reg = FDI_RX_CTL(pipe); |
992 | val = I915_READ(reg); | |
993 | cur_state = !!(val & FDI_RX_ENABLE); | |
040484af JB |
994 | WARN(cur_state != state, |
995 | "FDI RX state assertion failure (expected %s, current %s)\n", | |
996 | state_string(state), state_string(cur_state)); | |
997 | } | |
998 | #define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true) | |
999 | #define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false) | |
1000 | ||
1001 | static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv, | |
1002 | enum pipe pipe) | |
1003 | { | |
1004 | int reg; | |
1005 | u32 val; | |
1006 | ||
1007 | /* ILK FDI PLL is always enabled */ | |
1008 | if (dev_priv->info->gen == 5) | |
1009 | return; | |
1010 | ||
bf507ef7 | 1011 | /* On Haswell, DDI ports are responsible for the FDI PLL setup */ |
affa9354 | 1012 | if (HAS_DDI(dev_priv->dev)) |
bf507ef7 ED |
1013 | return; |
1014 | ||
040484af JB |
1015 | reg = FDI_TX_CTL(pipe); |
1016 | val = I915_READ(reg); | |
1017 | WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n"); | |
1018 | } | |
1019 | ||
1020 | static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv, | |
1021 | enum pipe pipe) | |
1022 | { | |
1023 | int reg; | |
1024 | u32 val; | |
1025 | ||
1026 | reg = FDI_RX_CTL(pipe); | |
1027 | val = I915_READ(reg); | |
1028 | WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n"); | |
1029 | } | |
1030 | ||
ea0760cf JB |
1031 | static void assert_panel_unlocked(struct drm_i915_private *dev_priv, |
1032 | enum pipe pipe) | |
1033 | { | |
1034 | int pp_reg, lvds_reg; | |
1035 | u32 val; | |
1036 | enum pipe panel_pipe = PIPE_A; | |
0de3b485 | 1037 | bool locked = true; |
ea0760cf JB |
1038 | |
1039 | if (HAS_PCH_SPLIT(dev_priv->dev)) { | |
1040 | pp_reg = PCH_PP_CONTROL; | |
1041 | lvds_reg = PCH_LVDS; | |
1042 | } else { | |
1043 | pp_reg = PP_CONTROL; | |
1044 | lvds_reg = LVDS; | |
1045 | } | |
1046 | ||
1047 | val = I915_READ(pp_reg); | |
1048 | if (!(val & PANEL_POWER_ON) || | |
1049 | ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS)) | |
1050 | locked = false; | |
1051 | ||
1052 | if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT) | |
1053 | panel_pipe = PIPE_B; | |
1054 | ||
1055 | WARN(panel_pipe == pipe && locked, | |
1056 | "panel assertion failure, pipe %c regs locked\n", | |
9db4a9c7 | 1057 | pipe_name(pipe)); |
ea0760cf JB |
1058 | } |
1059 | ||
b840d907 JB |
1060 | void assert_pipe(struct drm_i915_private *dev_priv, |
1061 | enum pipe pipe, bool state) | |
b24e7179 JB |
1062 | { |
1063 | int reg; | |
1064 | u32 val; | |
63d7bbe9 | 1065 | bool cur_state; |
702e7a56 PZ |
1066 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
1067 | pipe); | |
b24e7179 | 1068 | |
8e636784 DV |
1069 | /* if we need the pipe A quirk it must be always on */ |
1070 | if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) | |
1071 | state = true; | |
1072 | ||
b97186f0 PZ |
1073 | if (!intel_display_power_enabled(dev_priv->dev, |
1074 | POWER_DOMAIN_TRANSCODER(cpu_transcoder))) { | |
69310161 PZ |
1075 | cur_state = false; |
1076 | } else { | |
1077 | reg = PIPECONF(cpu_transcoder); | |
1078 | val = I915_READ(reg); | |
1079 | cur_state = !!(val & PIPECONF_ENABLE); | |
1080 | } | |
1081 | ||
63d7bbe9 JB |
1082 | WARN(cur_state != state, |
1083 | "pipe %c assertion failure (expected %s, current %s)\n", | |
9db4a9c7 | 1084 | pipe_name(pipe), state_string(state), state_string(cur_state)); |
b24e7179 JB |
1085 | } |
1086 | ||
931872fc CW |
1087 | static void assert_plane(struct drm_i915_private *dev_priv, |
1088 | enum plane plane, bool state) | |
b24e7179 JB |
1089 | { |
1090 | int reg; | |
1091 | u32 val; | |
931872fc | 1092 | bool cur_state; |
b24e7179 JB |
1093 | |
1094 | reg = DSPCNTR(plane); | |
1095 | val = I915_READ(reg); | |
931872fc CW |
1096 | cur_state = !!(val & DISPLAY_PLANE_ENABLE); |
1097 | WARN(cur_state != state, | |
1098 | "plane %c assertion failure (expected %s, current %s)\n", | |
1099 | plane_name(plane), state_string(state), state_string(cur_state)); | |
b24e7179 JB |
1100 | } |
1101 | ||
931872fc CW |
1102 | #define assert_plane_enabled(d, p) assert_plane(d, p, true) |
1103 | #define assert_plane_disabled(d, p) assert_plane(d, p, false) | |
1104 | ||
b24e7179 JB |
1105 | static void assert_planes_disabled(struct drm_i915_private *dev_priv, |
1106 | enum pipe pipe) | |
1107 | { | |
653e1026 | 1108 | struct drm_device *dev = dev_priv->dev; |
b24e7179 JB |
1109 | int reg, i; |
1110 | u32 val; | |
1111 | int cur_pipe; | |
1112 | ||
653e1026 VS |
1113 | /* Primary planes are fixed to pipes on gen4+ */ |
1114 | if (INTEL_INFO(dev)->gen >= 4) { | |
28c05794 AJ |
1115 | reg = DSPCNTR(pipe); |
1116 | val = I915_READ(reg); | |
1117 | WARN((val & DISPLAY_PLANE_ENABLE), | |
1118 | "plane %c assertion failure, should be disabled but not\n", | |
1119 | plane_name(pipe)); | |
19ec1358 | 1120 | return; |
28c05794 | 1121 | } |
19ec1358 | 1122 | |
b24e7179 | 1123 | /* Need to check both planes against the pipe */ |
653e1026 | 1124 | for (i = 0; i < INTEL_INFO(dev)->num_pipes; i++) { |
b24e7179 JB |
1125 | reg = DSPCNTR(i); |
1126 | val = I915_READ(reg); | |
1127 | cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >> | |
1128 | DISPPLANE_SEL_PIPE_SHIFT; | |
1129 | WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe, | |
9db4a9c7 JB |
1130 | "plane %c assertion failure, should be off on pipe %c but is still active\n", |
1131 | plane_name(i), pipe_name(pipe)); | |
b24e7179 JB |
1132 | } |
1133 | } | |
1134 | ||
19332d7a JB |
1135 | static void assert_sprites_disabled(struct drm_i915_private *dev_priv, |
1136 | enum pipe pipe) | |
1137 | { | |
20674eef | 1138 | struct drm_device *dev = dev_priv->dev; |
19332d7a JB |
1139 | int reg, i; |
1140 | u32 val; | |
1141 | ||
20674eef VS |
1142 | if (IS_VALLEYVIEW(dev)) { |
1143 | for (i = 0; i < dev_priv->num_plane; i++) { | |
1144 | reg = SPCNTR(pipe, i); | |
1145 | val = I915_READ(reg); | |
1146 | WARN((val & SP_ENABLE), | |
1147 | "sprite %c assertion failure, should be off on pipe %c but is still active\n", | |
1148 | sprite_name(pipe, i), pipe_name(pipe)); | |
1149 | } | |
1150 | } else if (INTEL_INFO(dev)->gen >= 7) { | |
1151 | reg = SPRCTL(pipe); | |
1152 | val = I915_READ(reg); | |
1153 | WARN((val & SPRITE_ENABLE), | |
1154 | "sprite %c assertion failure, should be off on pipe %c but is still active\n", | |
1155 | plane_name(pipe), pipe_name(pipe)); | |
1156 | } else if (INTEL_INFO(dev)->gen >= 5) { | |
1157 | reg = DVSCNTR(pipe); | |
19332d7a | 1158 | val = I915_READ(reg); |
20674eef | 1159 | WARN((val & DVS_ENABLE), |
06da8da2 | 1160 | "sprite %c assertion failure, should be off on pipe %c but is still active\n", |
20674eef | 1161 | plane_name(pipe), pipe_name(pipe)); |
19332d7a JB |
1162 | } |
1163 | } | |
1164 | ||
92f2584a JB |
1165 | static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv) |
1166 | { | |
1167 | u32 val; | |
1168 | bool enabled; | |
1169 | ||
9d82aa17 ED |
1170 | if (HAS_PCH_LPT(dev_priv->dev)) { |
1171 | DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n"); | |
1172 | return; | |
1173 | } | |
1174 | ||
92f2584a JB |
1175 | val = I915_READ(PCH_DREF_CONTROL); |
1176 | enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK | | |
1177 | DREF_SUPERSPREAD_SOURCE_MASK)); | |
1178 | WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n"); | |
1179 | } | |
1180 | ||
ab9412ba DV |
1181 | static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv, |
1182 | enum pipe pipe) | |
92f2584a JB |
1183 | { |
1184 | int reg; | |
1185 | u32 val; | |
1186 | bool enabled; | |
1187 | ||
ab9412ba | 1188 | reg = PCH_TRANSCONF(pipe); |
92f2584a JB |
1189 | val = I915_READ(reg); |
1190 | enabled = !!(val & TRANS_ENABLE); | |
9db4a9c7 JB |
1191 | WARN(enabled, |
1192 | "transcoder assertion failed, should be off on pipe %c but is still active\n", | |
1193 | pipe_name(pipe)); | |
92f2584a JB |
1194 | } |
1195 | ||
4e634389 KP |
1196 | static bool dp_pipe_enabled(struct drm_i915_private *dev_priv, |
1197 | enum pipe pipe, u32 port_sel, u32 val) | |
f0575e92 KP |
1198 | { |
1199 | if ((val & DP_PORT_EN) == 0) | |
1200 | return false; | |
1201 | ||
1202 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
1203 | u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe); | |
1204 | u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg); | |
1205 | if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel) | |
1206 | return false; | |
1207 | } else { | |
1208 | if ((val & DP_PIPE_MASK) != (pipe << 30)) | |
1209 | return false; | |
1210 | } | |
1211 | return true; | |
1212 | } | |
1213 | ||
1519b995 KP |
1214 | static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv, |
1215 | enum pipe pipe, u32 val) | |
1216 | { | |
dc0fa718 | 1217 | if ((val & SDVO_ENABLE) == 0) |
1519b995 KP |
1218 | return false; |
1219 | ||
1220 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
dc0fa718 | 1221 | if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe)) |
1519b995 KP |
1222 | return false; |
1223 | } else { | |
dc0fa718 | 1224 | if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe)) |
1519b995 KP |
1225 | return false; |
1226 | } | |
1227 | return true; | |
1228 | } | |
1229 | ||
1230 | static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv, | |
1231 | enum pipe pipe, u32 val) | |
1232 | { | |
1233 | if ((val & LVDS_PORT_EN) == 0) | |
1234 | return false; | |
1235 | ||
1236 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
1237 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) | |
1238 | return false; | |
1239 | } else { | |
1240 | if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe)) | |
1241 | return false; | |
1242 | } | |
1243 | return true; | |
1244 | } | |
1245 | ||
1246 | static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv, | |
1247 | enum pipe pipe, u32 val) | |
1248 | { | |
1249 | if ((val & ADPA_DAC_ENABLE) == 0) | |
1250 | return false; | |
1251 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
1252 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) | |
1253 | return false; | |
1254 | } else { | |
1255 | if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe)) | |
1256 | return false; | |
1257 | } | |
1258 | return true; | |
1259 | } | |
1260 | ||
291906f1 | 1261 | static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv, |
f0575e92 | 1262 | enum pipe pipe, int reg, u32 port_sel) |
291906f1 | 1263 | { |
47a05eca | 1264 | u32 val = I915_READ(reg); |
4e634389 | 1265 | WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val), |
291906f1 | 1266 | "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n", |
9db4a9c7 | 1267 | reg, pipe_name(pipe)); |
de9a35ab | 1268 | |
75c5da27 DV |
1269 | WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0 |
1270 | && (val & DP_PIPEB_SELECT), | |
de9a35ab | 1271 | "IBX PCH dp port still using transcoder B\n"); |
291906f1 JB |
1272 | } |
1273 | ||
1274 | static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv, | |
1275 | enum pipe pipe, int reg) | |
1276 | { | |
47a05eca | 1277 | u32 val = I915_READ(reg); |
b70ad586 | 1278 | WARN(hdmi_pipe_enabled(dev_priv, pipe, val), |
23c99e77 | 1279 | "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n", |
9db4a9c7 | 1280 | reg, pipe_name(pipe)); |
de9a35ab | 1281 | |
dc0fa718 | 1282 | WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0 |
75c5da27 | 1283 | && (val & SDVO_PIPE_B_SELECT), |
de9a35ab | 1284 | "IBX PCH hdmi port still using transcoder B\n"); |
291906f1 JB |
1285 | } |
1286 | ||
1287 | static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv, | |
1288 | enum pipe pipe) | |
1289 | { | |
1290 | int reg; | |
1291 | u32 val; | |
291906f1 | 1292 | |
f0575e92 KP |
1293 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B); |
1294 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C); | |
1295 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D); | |
291906f1 JB |
1296 | |
1297 | reg = PCH_ADPA; | |
1298 | val = I915_READ(reg); | |
b70ad586 | 1299 | WARN(adpa_pipe_enabled(dev_priv, pipe, val), |
291906f1 | 1300 | "PCH VGA enabled on transcoder %c, should be disabled\n", |
9db4a9c7 | 1301 | pipe_name(pipe)); |
291906f1 JB |
1302 | |
1303 | reg = PCH_LVDS; | |
1304 | val = I915_READ(reg); | |
b70ad586 | 1305 | WARN(lvds_pipe_enabled(dev_priv, pipe, val), |
291906f1 | 1306 | "PCH LVDS enabled on transcoder %c, should be disabled\n", |
9db4a9c7 | 1307 | pipe_name(pipe)); |
291906f1 | 1308 | |
e2debe91 PZ |
1309 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB); |
1310 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC); | |
1311 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID); | |
291906f1 JB |
1312 | } |
1313 | ||
63d7bbe9 JB |
1314 | /** |
1315 | * intel_enable_pll - enable a PLL | |
1316 | * @dev_priv: i915 private structure | |
1317 | * @pipe: pipe PLL to enable | |
1318 | * | |
1319 | * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to | |
1320 | * make sure the PLL reg is writable first though, since the panel write | |
1321 | * protect mechanism may be enabled. | |
1322 | * | |
1323 | * Note! This is for pre-ILK only. | |
7434a255 TR |
1324 | * |
1325 | * Unfortunately needed by dvo_ns2501 since the dvo depends on it running. | |
63d7bbe9 JB |
1326 | */ |
1327 | static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) | |
1328 | { | |
1329 | int reg; | |
1330 | u32 val; | |
1331 | ||
58c6eaa2 DV |
1332 | assert_pipe_disabled(dev_priv, pipe); |
1333 | ||
63d7bbe9 | 1334 | /* No really, not for ILK+ */ |
a0c4da24 | 1335 | BUG_ON(!IS_VALLEYVIEW(dev_priv->dev) && dev_priv->info->gen >= 5); |
63d7bbe9 JB |
1336 | |
1337 | /* PLL is protected by panel, make sure we can write it */ | |
1338 | if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev)) | |
1339 | assert_panel_unlocked(dev_priv, pipe); | |
1340 | ||
1341 | reg = DPLL(pipe); | |
1342 | val = I915_READ(reg); | |
1343 | val |= DPLL_VCO_ENABLE; | |
1344 | ||
1345 | /* We do this three times for luck */ | |
1346 | I915_WRITE(reg, val); | |
1347 | POSTING_READ(reg); | |
1348 | udelay(150); /* wait for warmup */ | |
1349 | I915_WRITE(reg, val); | |
1350 | POSTING_READ(reg); | |
1351 | udelay(150); /* wait for warmup */ | |
1352 | I915_WRITE(reg, val); | |
1353 | POSTING_READ(reg); | |
1354 | udelay(150); /* wait for warmup */ | |
1355 | } | |
1356 | ||
1357 | /** | |
1358 | * intel_disable_pll - disable a PLL | |
1359 | * @dev_priv: i915 private structure | |
1360 | * @pipe: pipe PLL to disable | |
1361 | * | |
1362 | * Disable the PLL for @pipe, making sure the pipe is off first. | |
1363 | * | |
1364 | * Note! This is for pre-ILK only. | |
1365 | */ | |
1366 | static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) | |
1367 | { | |
1368 | int reg; | |
1369 | u32 val; | |
1370 | ||
1371 | /* Don't disable pipe A or pipe A PLLs if needed */ | |
1372 | if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE)) | |
1373 | return; | |
1374 | ||
1375 | /* Make sure the pipe isn't still relying on us */ | |
1376 | assert_pipe_disabled(dev_priv, pipe); | |
1377 | ||
1378 | reg = DPLL(pipe); | |
1379 | val = I915_READ(reg); | |
1380 | val &= ~DPLL_VCO_ENABLE; | |
1381 | I915_WRITE(reg, val); | |
1382 | POSTING_READ(reg); | |
1383 | } | |
1384 | ||
89b667f8 JB |
1385 | void vlv_wait_port_ready(struct drm_i915_private *dev_priv, int port) |
1386 | { | |
1387 | u32 port_mask; | |
1388 | ||
1389 | if (!port) | |
1390 | port_mask = DPLL_PORTB_READY_MASK; | |
1391 | else | |
1392 | port_mask = DPLL_PORTC_READY_MASK; | |
1393 | ||
1394 | if (wait_for((I915_READ(DPLL(0)) & port_mask) == 0, 1000)) | |
1395 | WARN(1, "timed out waiting for port %c ready: 0x%08x\n", | |
1396 | 'B' + port, I915_READ(DPLL(0))); | |
1397 | } | |
1398 | ||
92f2584a | 1399 | /** |
b6b4e185 | 1400 | * ironlake_enable_pch_pll - enable PCH PLL |
92f2584a JB |
1401 | * @dev_priv: i915 private structure |
1402 | * @pipe: pipe PLL to enable | |
1403 | * | |
1404 | * The PCH PLL needs to be enabled before the PCH transcoder, since it | |
1405 | * drives the transcoder clock. | |
1406 | */ | |
b6b4e185 | 1407 | static void ironlake_enable_pch_pll(struct intel_crtc *intel_crtc) |
92f2584a | 1408 | { |
ee7b9f93 | 1409 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; |
48da64a8 | 1410 | struct intel_pch_pll *pll; |
92f2584a JB |
1411 | int reg; |
1412 | u32 val; | |
1413 | ||
48da64a8 | 1414 | /* PCH PLLs only available on ILK, SNB and IVB */ |
92f2584a | 1415 | BUG_ON(dev_priv->info->gen < 5); |
48da64a8 CW |
1416 | pll = intel_crtc->pch_pll; |
1417 | if (pll == NULL) | |
1418 | return; | |
1419 | ||
1420 | if (WARN_ON(pll->refcount == 0)) | |
1421 | return; | |
ee7b9f93 JB |
1422 | |
1423 | DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n", | |
1424 | pll->pll_reg, pll->active, pll->on, | |
1425 | intel_crtc->base.base.id); | |
92f2584a JB |
1426 | |
1427 | /* PCH refclock must be enabled first */ | |
1428 | assert_pch_refclk_enabled(dev_priv); | |
1429 | ||
ee7b9f93 | 1430 | if (pll->active++ && pll->on) { |
92b27b08 | 1431 | assert_pch_pll_enabled(dev_priv, pll, NULL); |
ee7b9f93 JB |
1432 | return; |
1433 | } | |
1434 | ||
1435 | DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg); | |
1436 | ||
1437 | reg = pll->pll_reg; | |
92f2584a JB |
1438 | val = I915_READ(reg); |
1439 | val |= DPLL_VCO_ENABLE; | |
1440 | I915_WRITE(reg, val); | |
1441 | POSTING_READ(reg); | |
1442 | udelay(200); | |
ee7b9f93 JB |
1443 | |
1444 | pll->on = true; | |
92f2584a JB |
1445 | } |
1446 | ||
ee7b9f93 | 1447 | static void intel_disable_pch_pll(struct intel_crtc *intel_crtc) |
92f2584a | 1448 | { |
ee7b9f93 JB |
1449 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; |
1450 | struct intel_pch_pll *pll = intel_crtc->pch_pll; | |
92f2584a | 1451 | int reg; |
ee7b9f93 | 1452 | u32 val; |
4c609cb8 | 1453 | |
92f2584a JB |
1454 | /* PCH only available on ILK+ */ |
1455 | BUG_ON(dev_priv->info->gen < 5); | |
ee7b9f93 JB |
1456 | if (pll == NULL) |
1457 | return; | |
92f2584a | 1458 | |
48da64a8 CW |
1459 | if (WARN_ON(pll->refcount == 0)) |
1460 | return; | |
7a419866 | 1461 | |
ee7b9f93 JB |
1462 | DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n", |
1463 | pll->pll_reg, pll->active, pll->on, | |
1464 | intel_crtc->base.base.id); | |
7a419866 | 1465 | |
48da64a8 | 1466 | if (WARN_ON(pll->active == 0)) { |
92b27b08 | 1467 | assert_pch_pll_disabled(dev_priv, pll, NULL); |
48da64a8 CW |
1468 | return; |
1469 | } | |
1470 | ||
ee7b9f93 | 1471 | if (--pll->active) { |
92b27b08 | 1472 | assert_pch_pll_enabled(dev_priv, pll, NULL); |
7a419866 | 1473 | return; |
ee7b9f93 JB |
1474 | } |
1475 | ||
1476 | DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg); | |
1477 | ||
1478 | /* Make sure transcoder isn't still depending on us */ | |
ab9412ba | 1479 | assert_pch_transcoder_disabled(dev_priv, intel_crtc->pipe); |
7a419866 | 1480 | |
ee7b9f93 | 1481 | reg = pll->pll_reg; |
92f2584a JB |
1482 | val = I915_READ(reg); |
1483 | val &= ~DPLL_VCO_ENABLE; | |
1484 | I915_WRITE(reg, val); | |
1485 | POSTING_READ(reg); | |
1486 | udelay(200); | |
ee7b9f93 JB |
1487 | |
1488 | pll->on = false; | |
92f2584a JB |
1489 | } |
1490 | ||
b8a4f404 PZ |
1491 | static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv, |
1492 | enum pipe pipe) | |
040484af | 1493 | { |
23670b32 | 1494 | struct drm_device *dev = dev_priv->dev; |
7c26e5c6 | 1495 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
23670b32 | 1496 | uint32_t reg, val, pipeconf_val; |
040484af JB |
1497 | |
1498 | /* PCH only available on ILK+ */ | |
1499 | BUG_ON(dev_priv->info->gen < 5); | |
1500 | ||
1501 | /* Make sure PCH DPLL is enabled */ | |
92b27b08 CW |
1502 | assert_pch_pll_enabled(dev_priv, |
1503 | to_intel_crtc(crtc)->pch_pll, | |
1504 | to_intel_crtc(crtc)); | |
040484af JB |
1505 | |
1506 | /* FDI must be feeding us bits for PCH ports */ | |
1507 | assert_fdi_tx_enabled(dev_priv, pipe); | |
1508 | assert_fdi_rx_enabled(dev_priv, pipe); | |
1509 | ||
23670b32 DV |
1510 | if (HAS_PCH_CPT(dev)) { |
1511 | /* Workaround: Set the timing override bit before enabling the | |
1512 | * pch transcoder. */ | |
1513 | reg = TRANS_CHICKEN2(pipe); | |
1514 | val = I915_READ(reg); | |
1515 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; | |
1516 | I915_WRITE(reg, val); | |
59c859d6 | 1517 | } |
23670b32 | 1518 | |
ab9412ba | 1519 | reg = PCH_TRANSCONF(pipe); |
040484af | 1520 | val = I915_READ(reg); |
5f7f726d | 1521 | pipeconf_val = I915_READ(PIPECONF(pipe)); |
e9bcff5c JB |
1522 | |
1523 | if (HAS_PCH_IBX(dev_priv->dev)) { | |
1524 | /* | |
1525 | * make the BPC in transcoder be consistent with | |
1526 | * that in pipeconf reg. | |
1527 | */ | |
dfd07d72 DV |
1528 | val &= ~PIPECONF_BPC_MASK; |
1529 | val |= pipeconf_val & PIPECONF_BPC_MASK; | |
e9bcff5c | 1530 | } |
5f7f726d PZ |
1531 | |
1532 | val &= ~TRANS_INTERLACE_MASK; | |
1533 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK) | |
7c26e5c6 PZ |
1534 | if (HAS_PCH_IBX(dev_priv->dev) && |
1535 | intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) | |
1536 | val |= TRANS_LEGACY_INTERLACED_ILK; | |
1537 | else | |
1538 | val |= TRANS_INTERLACED; | |
5f7f726d PZ |
1539 | else |
1540 | val |= TRANS_PROGRESSIVE; | |
1541 | ||
040484af JB |
1542 | I915_WRITE(reg, val | TRANS_ENABLE); |
1543 | if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100)) | |
4bb6f1f3 | 1544 | DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe)); |
040484af JB |
1545 | } |
1546 | ||
8fb033d7 | 1547 | static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv, |
937bb610 | 1548 | enum transcoder cpu_transcoder) |
040484af | 1549 | { |
8fb033d7 | 1550 | u32 val, pipeconf_val; |
8fb033d7 PZ |
1551 | |
1552 | /* PCH only available on ILK+ */ | |
1553 | BUG_ON(dev_priv->info->gen < 5); | |
1554 | ||
8fb033d7 | 1555 | /* FDI must be feeding us bits for PCH ports */ |
1a240d4d | 1556 | assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder); |
937bb610 | 1557 | assert_fdi_rx_enabled(dev_priv, TRANSCODER_A); |
8fb033d7 | 1558 | |
223a6fdf PZ |
1559 | /* Workaround: set timing override bit. */ |
1560 | val = I915_READ(_TRANSA_CHICKEN2); | |
23670b32 | 1561 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; |
223a6fdf PZ |
1562 | I915_WRITE(_TRANSA_CHICKEN2, val); |
1563 | ||
25f3ef11 | 1564 | val = TRANS_ENABLE; |
937bb610 | 1565 | pipeconf_val = I915_READ(PIPECONF(cpu_transcoder)); |
8fb033d7 | 1566 | |
9a76b1c6 PZ |
1567 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) == |
1568 | PIPECONF_INTERLACED_ILK) | |
a35f2679 | 1569 | val |= TRANS_INTERLACED; |
8fb033d7 PZ |
1570 | else |
1571 | val |= TRANS_PROGRESSIVE; | |
1572 | ||
ab9412ba DV |
1573 | I915_WRITE(LPT_TRANSCONF, val); |
1574 | if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100)) | |
937bb610 | 1575 | DRM_ERROR("Failed to enable PCH transcoder\n"); |
8fb033d7 PZ |
1576 | } |
1577 | ||
b8a4f404 PZ |
1578 | static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv, |
1579 | enum pipe pipe) | |
040484af | 1580 | { |
23670b32 DV |
1581 | struct drm_device *dev = dev_priv->dev; |
1582 | uint32_t reg, val; | |
040484af JB |
1583 | |
1584 | /* FDI relies on the transcoder */ | |
1585 | assert_fdi_tx_disabled(dev_priv, pipe); | |
1586 | assert_fdi_rx_disabled(dev_priv, pipe); | |
1587 | ||
291906f1 JB |
1588 | /* Ports must be off as well */ |
1589 | assert_pch_ports_disabled(dev_priv, pipe); | |
1590 | ||
ab9412ba | 1591 | reg = PCH_TRANSCONF(pipe); |
040484af JB |
1592 | val = I915_READ(reg); |
1593 | val &= ~TRANS_ENABLE; | |
1594 | I915_WRITE(reg, val); | |
1595 | /* wait for PCH transcoder off, transcoder state */ | |
1596 | if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50)) | |
4bb6f1f3 | 1597 | DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe)); |
23670b32 DV |
1598 | |
1599 | if (!HAS_PCH_IBX(dev)) { | |
1600 | /* Workaround: Clear the timing override chicken bit again. */ | |
1601 | reg = TRANS_CHICKEN2(pipe); | |
1602 | val = I915_READ(reg); | |
1603 | val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE; | |
1604 | I915_WRITE(reg, val); | |
1605 | } | |
040484af JB |
1606 | } |
1607 | ||
ab4d966c | 1608 | static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv) |
8fb033d7 | 1609 | { |
8fb033d7 PZ |
1610 | u32 val; |
1611 | ||
ab9412ba | 1612 | val = I915_READ(LPT_TRANSCONF); |
8fb033d7 | 1613 | val &= ~TRANS_ENABLE; |
ab9412ba | 1614 | I915_WRITE(LPT_TRANSCONF, val); |
8fb033d7 | 1615 | /* wait for PCH transcoder off, transcoder state */ |
ab9412ba | 1616 | if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50)) |
8a52fd9f | 1617 | DRM_ERROR("Failed to disable PCH transcoder\n"); |
223a6fdf PZ |
1618 | |
1619 | /* Workaround: clear timing override bit. */ | |
1620 | val = I915_READ(_TRANSA_CHICKEN2); | |
23670b32 | 1621 | val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE; |
223a6fdf | 1622 | I915_WRITE(_TRANSA_CHICKEN2, val); |
040484af JB |
1623 | } |
1624 | ||
b24e7179 | 1625 | /** |
309cfea8 | 1626 | * intel_enable_pipe - enable a pipe, asserting requirements |
b24e7179 JB |
1627 | * @dev_priv: i915 private structure |
1628 | * @pipe: pipe to enable | |
040484af | 1629 | * @pch_port: on ILK+, is this pipe driving a PCH port or not |
b24e7179 JB |
1630 | * |
1631 | * Enable @pipe, making sure that various hardware specific requirements | |
1632 | * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc. | |
1633 | * | |
1634 | * @pipe should be %PIPE_A or %PIPE_B. | |
1635 | * | |
1636 | * Will wait until the pipe is actually running (i.e. first vblank) before | |
1637 | * returning. | |
1638 | */ | |
040484af JB |
1639 | static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, |
1640 | bool pch_port) | |
b24e7179 | 1641 | { |
702e7a56 PZ |
1642 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
1643 | pipe); | |
1a240d4d | 1644 | enum pipe pch_transcoder; |
b24e7179 JB |
1645 | int reg; |
1646 | u32 val; | |
1647 | ||
58c6eaa2 DV |
1648 | assert_planes_disabled(dev_priv, pipe); |
1649 | assert_sprites_disabled(dev_priv, pipe); | |
1650 | ||
681e5811 | 1651 | if (HAS_PCH_LPT(dev_priv->dev)) |
cc391bbb PZ |
1652 | pch_transcoder = TRANSCODER_A; |
1653 | else | |
1654 | pch_transcoder = pipe; | |
1655 | ||
b24e7179 JB |
1656 | /* |
1657 | * A pipe without a PLL won't actually be able to drive bits from | |
1658 | * a plane. On ILK+ the pipe PLLs are integrated, so we don't | |
1659 | * need the check. | |
1660 | */ | |
1661 | if (!HAS_PCH_SPLIT(dev_priv->dev)) | |
1662 | assert_pll_enabled(dev_priv, pipe); | |
040484af JB |
1663 | else { |
1664 | if (pch_port) { | |
1665 | /* if driving the PCH, we need FDI enabled */ | |
cc391bbb | 1666 | assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder); |
1a240d4d DV |
1667 | assert_fdi_tx_pll_enabled(dev_priv, |
1668 | (enum pipe) cpu_transcoder); | |
040484af JB |
1669 | } |
1670 | /* FIXME: assert CPU port conditions for SNB+ */ | |
1671 | } | |
b24e7179 | 1672 | |
702e7a56 | 1673 | reg = PIPECONF(cpu_transcoder); |
b24e7179 | 1674 | val = I915_READ(reg); |
00d70b15 CW |
1675 | if (val & PIPECONF_ENABLE) |
1676 | return; | |
1677 | ||
1678 | I915_WRITE(reg, val | PIPECONF_ENABLE); | |
b24e7179 JB |
1679 | intel_wait_for_vblank(dev_priv->dev, pipe); |
1680 | } | |
1681 | ||
1682 | /** | |
309cfea8 | 1683 | * intel_disable_pipe - disable a pipe, asserting requirements |
b24e7179 JB |
1684 | * @dev_priv: i915 private structure |
1685 | * @pipe: pipe to disable | |
1686 | * | |
1687 | * Disable @pipe, making sure that various hardware specific requirements | |
1688 | * are met, if applicable, e.g. plane disabled, panel fitter off, etc. | |
1689 | * | |
1690 | * @pipe should be %PIPE_A or %PIPE_B. | |
1691 | * | |
1692 | * Will wait until the pipe has shut down before returning. | |
1693 | */ | |
1694 | static void intel_disable_pipe(struct drm_i915_private *dev_priv, | |
1695 | enum pipe pipe) | |
1696 | { | |
702e7a56 PZ |
1697 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
1698 | pipe); | |
b24e7179 JB |
1699 | int reg; |
1700 | u32 val; | |
1701 | ||
1702 | /* | |
1703 | * Make sure planes won't keep trying to pump pixels to us, | |
1704 | * or we might hang the display. | |
1705 | */ | |
1706 | assert_planes_disabled(dev_priv, pipe); | |
19332d7a | 1707 | assert_sprites_disabled(dev_priv, pipe); |
b24e7179 JB |
1708 | |
1709 | /* Don't disable pipe A or pipe A PLLs if needed */ | |
1710 | if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE)) | |
1711 | return; | |
1712 | ||
702e7a56 | 1713 | reg = PIPECONF(cpu_transcoder); |
b24e7179 | 1714 | val = I915_READ(reg); |
00d70b15 CW |
1715 | if ((val & PIPECONF_ENABLE) == 0) |
1716 | return; | |
1717 | ||
1718 | I915_WRITE(reg, val & ~PIPECONF_ENABLE); | |
b24e7179 JB |
1719 | intel_wait_for_pipe_off(dev_priv->dev, pipe); |
1720 | } | |
1721 | ||
d74362c9 KP |
1722 | /* |
1723 | * Plane regs are double buffered, going from enabled->disabled needs a | |
1724 | * trigger in order to latch. The display address reg provides this. | |
1725 | */ | |
6f1d69b0 | 1726 | void intel_flush_display_plane(struct drm_i915_private *dev_priv, |
d74362c9 KP |
1727 | enum plane plane) |
1728 | { | |
14f86147 DL |
1729 | if (dev_priv->info->gen >= 4) |
1730 | I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane))); | |
1731 | else | |
1732 | I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane))); | |
d74362c9 KP |
1733 | } |
1734 | ||
b24e7179 JB |
1735 | /** |
1736 | * intel_enable_plane - enable a display plane on a given pipe | |
1737 | * @dev_priv: i915 private structure | |
1738 | * @plane: plane to enable | |
1739 | * @pipe: pipe being fed | |
1740 | * | |
1741 | * Enable @plane on @pipe, making sure that @pipe is running first. | |
1742 | */ | |
1743 | static void intel_enable_plane(struct drm_i915_private *dev_priv, | |
1744 | enum plane plane, enum pipe pipe) | |
1745 | { | |
1746 | int reg; | |
1747 | u32 val; | |
1748 | ||
1749 | /* If the pipe isn't enabled, we can't pump pixels and may hang */ | |
1750 | assert_pipe_enabled(dev_priv, pipe); | |
1751 | ||
1752 | reg = DSPCNTR(plane); | |
1753 | val = I915_READ(reg); | |
00d70b15 CW |
1754 | if (val & DISPLAY_PLANE_ENABLE) |
1755 | return; | |
1756 | ||
1757 | I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE); | |
d74362c9 | 1758 | intel_flush_display_plane(dev_priv, plane); |
b24e7179 JB |
1759 | intel_wait_for_vblank(dev_priv->dev, pipe); |
1760 | } | |
1761 | ||
b24e7179 JB |
1762 | /** |
1763 | * intel_disable_plane - disable a display plane | |
1764 | * @dev_priv: i915 private structure | |
1765 | * @plane: plane to disable | |
1766 | * @pipe: pipe consuming the data | |
1767 | * | |
1768 | * Disable @plane; should be an independent operation. | |
1769 | */ | |
1770 | static void intel_disable_plane(struct drm_i915_private *dev_priv, | |
1771 | enum plane plane, enum pipe pipe) | |
1772 | { | |
1773 | int reg; | |
1774 | u32 val; | |
1775 | ||
1776 | reg = DSPCNTR(plane); | |
1777 | val = I915_READ(reg); | |
00d70b15 CW |
1778 | if ((val & DISPLAY_PLANE_ENABLE) == 0) |
1779 | return; | |
1780 | ||
1781 | I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE); | |
b24e7179 JB |
1782 | intel_flush_display_plane(dev_priv, plane); |
1783 | intel_wait_for_vblank(dev_priv->dev, pipe); | |
1784 | } | |
1785 | ||
693db184 CW |
1786 | static bool need_vtd_wa(struct drm_device *dev) |
1787 | { | |
1788 | #ifdef CONFIG_INTEL_IOMMU | |
1789 | if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped) | |
1790 | return true; | |
1791 | #endif | |
1792 | return false; | |
1793 | } | |
1794 | ||
127bd2ac | 1795 | int |
48b956c5 | 1796 | intel_pin_and_fence_fb_obj(struct drm_device *dev, |
05394f39 | 1797 | struct drm_i915_gem_object *obj, |
919926ae | 1798 | struct intel_ring_buffer *pipelined) |
6b95a207 | 1799 | { |
ce453d81 | 1800 | struct drm_i915_private *dev_priv = dev->dev_private; |
6b95a207 KH |
1801 | u32 alignment; |
1802 | int ret; | |
1803 | ||
05394f39 | 1804 | switch (obj->tiling_mode) { |
6b95a207 | 1805 | case I915_TILING_NONE: |
534843da CW |
1806 | if (IS_BROADWATER(dev) || IS_CRESTLINE(dev)) |
1807 | alignment = 128 * 1024; | |
a6c45cf0 | 1808 | else if (INTEL_INFO(dev)->gen >= 4) |
534843da CW |
1809 | alignment = 4 * 1024; |
1810 | else | |
1811 | alignment = 64 * 1024; | |
6b95a207 KH |
1812 | break; |
1813 | case I915_TILING_X: | |
1814 | /* pin() will align the object as required by fence */ | |
1815 | alignment = 0; | |
1816 | break; | |
1817 | case I915_TILING_Y: | |
8bb6e959 DV |
1818 | /* Despite that we check this in framebuffer_init userspace can |
1819 | * screw us over and change the tiling after the fact. Only | |
1820 | * pinned buffers can't change their tiling. */ | |
1821 | DRM_DEBUG_DRIVER("Y tiled not allowed for scan out buffers\n"); | |
6b95a207 KH |
1822 | return -EINVAL; |
1823 | default: | |
1824 | BUG(); | |
1825 | } | |
1826 | ||
693db184 CW |
1827 | /* Note that the w/a also requires 64 PTE of padding following the |
1828 | * bo. We currently fill all unused PTE with the shadow page and so | |
1829 | * we should always have valid PTE following the scanout preventing | |
1830 | * the VT-d warning. | |
1831 | */ | |
1832 | if (need_vtd_wa(dev) && alignment < 256 * 1024) | |
1833 | alignment = 256 * 1024; | |
1834 | ||
ce453d81 | 1835 | dev_priv->mm.interruptible = false; |
2da3b9b9 | 1836 | ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined); |
48b956c5 | 1837 | if (ret) |
ce453d81 | 1838 | goto err_interruptible; |
6b95a207 KH |
1839 | |
1840 | /* Install a fence for tiled scan-out. Pre-i965 always needs a | |
1841 | * fence, whereas 965+ only requires a fence if using | |
1842 | * framebuffer compression. For simplicity, we always install | |
1843 | * a fence as the cost is not that onerous. | |
1844 | */ | |
06d98131 | 1845 | ret = i915_gem_object_get_fence(obj); |
9a5a53b3 CW |
1846 | if (ret) |
1847 | goto err_unpin; | |
1690e1eb | 1848 | |
9a5a53b3 | 1849 | i915_gem_object_pin_fence(obj); |
6b95a207 | 1850 | |
ce453d81 | 1851 | dev_priv->mm.interruptible = true; |
6b95a207 | 1852 | return 0; |
48b956c5 CW |
1853 | |
1854 | err_unpin: | |
1855 | i915_gem_object_unpin(obj); | |
ce453d81 CW |
1856 | err_interruptible: |
1857 | dev_priv->mm.interruptible = true; | |
48b956c5 | 1858 | return ret; |
6b95a207 KH |
1859 | } |
1860 | ||
1690e1eb CW |
1861 | void intel_unpin_fb_obj(struct drm_i915_gem_object *obj) |
1862 | { | |
1863 | i915_gem_object_unpin_fence(obj); | |
1864 | i915_gem_object_unpin(obj); | |
1865 | } | |
1866 | ||
c2c75131 DV |
1867 | /* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel |
1868 | * is assumed to be a power-of-two. */ | |
bc752862 CW |
1869 | unsigned long intel_gen4_compute_page_offset(int *x, int *y, |
1870 | unsigned int tiling_mode, | |
1871 | unsigned int cpp, | |
1872 | unsigned int pitch) | |
c2c75131 | 1873 | { |
bc752862 CW |
1874 | if (tiling_mode != I915_TILING_NONE) { |
1875 | unsigned int tile_rows, tiles; | |
c2c75131 | 1876 | |
bc752862 CW |
1877 | tile_rows = *y / 8; |
1878 | *y %= 8; | |
c2c75131 | 1879 | |
bc752862 CW |
1880 | tiles = *x / (512/cpp); |
1881 | *x %= 512/cpp; | |
1882 | ||
1883 | return tile_rows * pitch * 8 + tiles * 4096; | |
1884 | } else { | |
1885 | unsigned int offset; | |
1886 | ||
1887 | offset = *y * pitch + *x * cpp; | |
1888 | *y = 0; | |
1889 | *x = (offset & 4095) / cpp; | |
1890 | return offset & -4096; | |
1891 | } | |
c2c75131 DV |
1892 | } |
1893 | ||
17638cd6 JB |
1894 | static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb, |
1895 | int x, int y) | |
81255565 JB |
1896 | { |
1897 | struct drm_device *dev = crtc->dev; | |
1898 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1899 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
1900 | struct intel_framebuffer *intel_fb; | |
05394f39 | 1901 | struct drm_i915_gem_object *obj; |
81255565 | 1902 | int plane = intel_crtc->plane; |
e506a0c6 | 1903 | unsigned long linear_offset; |
81255565 | 1904 | u32 dspcntr; |
5eddb70b | 1905 | u32 reg; |
81255565 JB |
1906 | |
1907 | switch (plane) { | |
1908 | case 0: | |
1909 | case 1: | |
1910 | break; | |
1911 | default: | |
84f44ce7 | 1912 | DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane)); |
81255565 JB |
1913 | return -EINVAL; |
1914 | } | |
1915 | ||
1916 | intel_fb = to_intel_framebuffer(fb); | |
1917 | obj = intel_fb->obj; | |
81255565 | 1918 | |
5eddb70b CW |
1919 | reg = DSPCNTR(plane); |
1920 | dspcntr = I915_READ(reg); | |
81255565 JB |
1921 | /* Mask out pixel format bits in case we change it */ |
1922 | dspcntr &= ~DISPPLANE_PIXFORMAT_MASK; | |
57779d06 VS |
1923 | switch (fb->pixel_format) { |
1924 | case DRM_FORMAT_C8: | |
81255565 JB |
1925 | dspcntr |= DISPPLANE_8BPP; |
1926 | break; | |
57779d06 VS |
1927 | case DRM_FORMAT_XRGB1555: |
1928 | case DRM_FORMAT_ARGB1555: | |
1929 | dspcntr |= DISPPLANE_BGRX555; | |
81255565 | 1930 | break; |
57779d06 VS |
1931 | case DRM_FORMAT_RGB565: |
1932 | dspcntr |= DISPPLANE_BGRX565; | |
1933 | break; | |
1934 | case DRM_FORMAT_XRGB8888: | |
1935 | case DRM_FORMAT_ARGB8888: | |
1936 | dspcntr |= DISPPLANE_BGRX888; | |
1937 | break; | |
1938 | case DRM_FORMAT_XBGR8888: | |
1939 | case DRM_FORMAT_ABGR8888: | |
1940 | dspcntr |= DISPPLANE_RGBX888; | |
1941 | break; | |
1942 | case DRM_FORMAT_XRGB2101010: | |
1943 | case DRM_FORMAT_ARGB2101010: | |
1944 | dspcntr |= DISPPLANE_BGRX101010; | |
1945 | break; | |
1946 | case DRM_FORMAT_XBGR2101010: | |
1947 | case DRM_FORMAT_ABGR2101010: | |
1948 | dspcntr |= DISPPLANE_RGBX101010; | |
81255565 JB |
1949 | break; |
1950 | default: | |
baba133a | 1951 | BUG(); |
81255565 | 1952 | } |
57779d06 | 1953 | |
a6c45cf0 | 1954 | if (INTEL_INFO(dev)->gen >= 4) { |
05394f39 | 1955 | if (obj->tiling_mode != I915_TILING_NONE) |
81255565 JB |
1956 | dspcntr |= DISPPLANE_TILED; |
1957 | else | |
1958 | dspcntr &= ~DISPPLANE_TILED; | |
1959 | } | |
1960 | ||
de1aa629 VS |
1961 | if (IS_G4X(dev)) |
1962 | dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE; | |
1963 | ||
5eddb70b | 1964 | I915_WRITE(reg, dspcntr); |
81255565 | 1965 | |
e506a0c6 | 1966 | linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8); |
81255565 | 1967 | |
c2c75131 DV |
1968 | if (INTEL_INFO(dev)->gen >= 4) { |
1969 | intel_crtc->dspaddr_offset = | |
bc752862 CW |
1970 | intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode, |
1971 | fb->bits_per_pixel / 8, | |
1972 | fb->pitches[0]); | |
c2c75131 DV |
1973 | linear_offset -= intel_crtc->dspaddr_offset; |
1974 | } else { | |
e506a0c6 | 1975 | intel_crtc->dspaddr_offset = linear_offset; |
c2c75131 | 1976 | } |
e506a0c6 DV |
1977 | |
1978 | DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n", | |
1979 | obj->gtt_offset, linear_offset, x, y, fb->pitches[0]); | |
01f2c773 | 1980 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
a6c45cf0 | 1981 | if (INTEL_INFO(dev)->gen >= 4) { |
c2c75131 DV |
1982 | I915_MODIFY_DISPBASE(DSPSURF(plane), |
1983 | obj->gtt_offset + intel_crtc->dspaddr_offset); | |
5eddb70b | 1984 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); |
e506a0c6 | 1985 | I915_WRITE(DSPLINOFF(plane), linear_offset); |
5eddb70b | 1986 | } else |
e506a0c6 | 1987 | I915_WRITE(DSPADDR(plane), obj->gtt_offset + linear_offset); |
5eddb70b | 1988 | POSTING_READ(reg); |
81255565 | 1989 | |
17638cd6 JB |
1990 | return 0; |
1991 | } | |
1992 | ||
1993 | static int ironlake_update_plane(struct drm_crtc *crtc, | |
1994 | struct drm_framebuffer *fb, int x, int y) | |
1995 | { | |
1996 | struct drm_device *dev = crtc->dev; | |
1997 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1998 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
1999 | struct intel_framebuffer *intel_fb; | |
2000 | struct drm_i915_gem_object *obj; | |
2001 | int plane = intel_crtc->plane; | |
e506a0c6 | 2002 | unsigned long linear_offset; |
17638cd6 JB |
2003 | u32 dspcntr; |
2004 | u32 reg; | |
2005 | ||
2006 | switch (plane) { | |
2007 | case 0: | |
2008 | case 1: | |
27f8227b | 2009 | case 2: |
17638cd6 JB |
2010 | break; |
2011 | default: | |
84f44ce7 | 2012 | DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane)); |
17638cd6 JB |
2013 | return -EINVAL; |
2014 | } | |
2015 | ||
2016 | intel_fb = to_intel_framebuffer(fb); | |
2017 | obj = intel_fb->obj; | |
2018 | ||
2019 | reg = DSPCNTR(plane); | |
2020 | dspcntr = I915_READ(reg); | |
2021 | /* Mask out pixel format bits in case we change it */ | |
2022 | dspcntr &= ~DISPPLANE_PIXFORMAT_MASK; | |
57779d06 VS |
2023 | switch (fb->pixel_format) { |
2024 | case DRM_FORMAT_C8: | |
17638cd6 JB |
2025 | dspcntr |= DISPPLANE_8BPP; |
2026 | break; | |
57779d06 VS |
2027 | case DRM_FORMAT_RGB565: |
2028 | dspcntr |= DISPPLANE_BGRX565; | |
17638cd6 | 2029 | break; |
57779d06 VS |
2030 | case DRM_FORMAT_XRGB8888: |
2031 | case DRM_FORMAT_ARGB8888: | |
2032 | dspcntr |= DISPPLANE_BGRX888; | |
2033 | break; | |
2034 | case DRM_FORMAT_XBGR8888: | |
2035 | case DRM_FORMAT_ABGR8888: | |
2036 | dspcntr |= DISPPLANE_RGBX888; | |
2037 | break; | |
2038 | case DRM_FORMAT_XRGB2101010: | |
2039 | case DRM_FORMAT_ARGB2101010: | |
2040 | dspcntr |= DISPPLANE_BGRX101010; | |
2041 | break; | |
2042 | case DRM_FORMAT_XBGR2101010: | |
2043 | case DRM_FORMAT_ABGR2101010: | |
2044 | dspcntr |= DISPPLANE_RGBX101010; | |
17638cd6 JB |
2045 | break; |
2046 | default: | |
baba133a | 2047 | BUG(); |
17638cd6 JB |
2048 | } |
2049 | ||
2050 | if (obj->tiling_mode != I915_TILING_NONE) | |
2051 | dspcntr |= DISPPLANE_TILED; | |
2052 | else | |
2053 | dspcntr &= ~DISPPLANE_TILED; | |
2054 | ||
2055 | /* must disable */ | |
2056 | dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE; | |
2057 | ||
2058 | I915_WRITE(reg, dspcntr); | |
2059 | ||
e506a0c6 | 2060 | linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8); |
c2c75131 | 2061 | intel_crtc->dspaddr_offset = |
bc752862 CW |
2062 | intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode, |
2063 | fb->bits_per_pixel / 8, | |
2064 | fb->pitches[0]); | |
c2c75131 | 2065 | linear_offset -= intel_crtc->dspaddr_offset; |
17638cd6 | 2066 | |
e506a0c6 DV |
2067 | DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n", |
2068 | obj->gtt_offset, linear_offset, x, y, fb->pitches[0]); | |
01f2c773 | 2069 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
c2c75131 DV |
2070 | I915_MODIFY_DISPBASE(DSPSURF(plane), |
2071 | obj->gtt_offset + intel_crtc->dspaddr_offset); | |
bc1c91eb DL |
2072 | if (IS_HASWELL(dev)) { |
2073 | I915_WRITE(DSPOFFSET(plane), (y << 16) | x); | |
2074 | } else { | |
2075 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); | |
2076 | I915_WRITE(DSPLINOFF(plane), linear_offset); | |
2077 | } | |
17638cd6 JB |
2078 | POSTING_READ(reg); |
2079 | ||
2080 | return 0; | |
2081 | } | |
2082 | ||
2083 | /* Assume fb object is pinned & idle & fenced and just update base pointers */ | |
2084 | static int | |
2085 | intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb, | |
2086 | int x, int y, enum mode_set_atomic state) | |
2087 | { | |
2088 | struct drm_device *dev = crtc->dev; | |
2089 | struct drm_i915_private *dev_priv = dev->dev_private; | |
17638cd6 | 2090 | |
6b8e6ed0 CW |
2091 | if (dev_priv->display.disable_fbc) |
2092 | dev_priv->display.disable_fbc(dev); | |
3dec0095 | 2093 | intel_increase_pllclock(crtc); |
81255565 | 2094 | |
6b8e6ed0 | 2095 | return dev_priv->display.update_plane(crtc, fb, x, y); |
81255565 JB |
2096 | } |
2097 | ||
96a02917 VS |
2098 | void intel_display_handle_reset(struct drm_device *dev) |
2099 | { | |
2100 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2101 | struct drm_crtc *crtc; | |
2102 | ||
2103 | /* | |
2104 | * Flips in the rings have been nuked by the reset, | |
2105 | * so complete all pending flips so that user space | |
2106 | * will get its events and not get stuck. | |
2107 | * | |
2108 | * Also update the base address of all primary | |
2109 | * planes to the the last fb to make sure we're | |
2110 | * showing the correct fb after a reset. | |
2111 | * | |
2112 | * Need to make two loops over the crtcs so that we | |
2113 | * don't try to grab a crtc mutex before the | |
2114 | * pending_flip_queue really got woken up. | |
2115 | */ | |
2116 | ||
2117 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | |
2118 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2119 | enum plane plane = intel_crtc->plane; | |
2120 | ||
2121 | intel_prepare_page_flip(dev, plane); | |
2122 | intel_finish_page_flip_plane(dev, plane); | |
2123 | } | |
2124 | ||
2125 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | |
2126 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2127 | ||
2128 | mutex_lock(&crtc->mutex); | |
2129 | if (intel_crtc->active) | |
2130 | dev_priv->display.update_plane(crtc, crtc->fb, | |
2131 | crtc->x, crtc->y); | |
2132 | mutex_unlock(&crtc->mutex); | |
2133 | } | |
2134 | } | |
2135 | ||
14667a4b CW |
2136 | static int |
2137 | intel_finish_fb(struct drm_framebuffer *old_fb) | |
2138 | { | |
2139 | struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj; | |
2140 | struct drm_i915_private *dev_priv = obj->base.dev->dev_private; | |
2141 | bool was_interruptible = dev_priv->mm.interruptible; | |
2142 | int ret; | |
2143 | ||
14667a4b CW |
2144 | /* Big Hammer, we also need to ensure that any pending |
2145 | * MI_WAIT_FOR_EVENT inside a user batch buffer on the | |
2146 | * current scanout is retired before unpinning the old | |
2147 | * framebuffer. | |
2148 | * | |
2149 | * This should only fail upon a hung GPU, in which case we | |
2150 | * can safely continue. | |
2151 | */ | |
2152 | dev_priv->mm.interruptible = false; | |
2153 | ret = i915_gem_object_finish_gpu(obj); | |
2154 | dev_priv->mm.interruptible = was_interruptible; | |
2155 | ||
2156 | return ret; | |
2157 | } | |
2158 | ||
198598d0 VS |
2159 | static void intel_crtc_update_sarea_pos(struct drm_crtc *crtc, int x, int y) |
2160 | { | |
2161 | struct drm_device *dev = crtc->dev; | |
2162 | struct drm_i915_master_private *master_priv; | |
2163 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2164 | ||
2165 | if (!dev->primary->master) | |
2166 | return; | |
2167 | ||
2168 | master_priv = dev->primary->master->driver_priv; | |
2169 | if (!master_priv->sarea_priv) | |
2170 | return; | |
2171 | ||
2172 | switch (intel_crtc->pipe) { | |
2173 | case 0: | |
2174 | master_priv->sarea_priv->pipeA_x = x; | |
2175 | master_priv->sarea_priv->pipeA_y = y; | |
2176 | break; | |
2177 | case 1: | |
2178 | master_priv->sarea_priv->pipeB_x = x; | |
2179 | master_priv->sarea_priv->pipeB_y = y; | |
2180 | break; | |
2181 | default: | |
2182 | break; | |
2183 | } | |
2184 | } | |
2185 | ||
5c3b82e2 | 2186 | static int |
3c4fdcfb | 2187 | intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, |
94352cf9 | 2188 | struct drm_framebuffer *fb) |
79e53945 JB |
2189 | { |
2190 | struct drm_device *dev = crtc->dev; | |
6b8e6ed0 | 2191 | struct drm_i915_private *dev_priv = dev->dev_private; |
79e53945 | 2192 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
94352cf9 | 2193 | struct drm_framebuffer *old_fb; |
5c3b82e2 | 2194 | int ret; |
79e53945 JB |
2195 | |
2196 | /* no fb bound */ | |
94352cf9 | 2197 | if (!fb) { |
a5071c2f | 2198 | DRM_ERROR("No FB bound\n"); |
5c3b82e2 CW |
2199 | return 0; |
2200 | } | |
2201 | ||
7eb552ae | 2202 | if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) { |
84f44ce7 VS |
2203 | DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n", |
2204 | plane_name(intel_crtc->plane), | |
2205 | INTEL_INFO(dev)->num_pipes); | |
5c3b82e2 | 2206 | return -EINVAL; |
79e53945 JB |
2207 | } |
2208 | ||
5c3b82e2 | 2209 | mutex_lock(&dev->struct_mutex); |
265db958 | 2210 | ret = intel_pin_and_fence_fb_obj(dev, |
94352cf9 | 2211 | to_intel_framebuffer(fb)->obj, |
919926ae | 2212 | NULL); |
5c3b82e2 CW |
2213 | if (ret != 0) { |
2214 | mutex_unlock(&dev->struct_mutex); | |
a5071c2f | 2215 | DRM_ERROR("pin & fence failed\n"); |
5c3b82e2 CW |
2216 | return ret; |
2217 | } | |
79e53945 | 2218 | |
94352cf9 | 2219 | ret = dev_priv->display.update_plane(crtc, fb, x, y); |
4e6cfefc | 2220 | if (ret) { |
94352cf9 | 2221 | intel_unpin_fb_obj(to_intel_framebuffer(fb)->obj); |
5c3b82e2 | 2222 | mutex_unlock(&dev->struct_mutex); |
a5071c2f | 2223 | DRM_ERROR("failed to update base address\n"); |
4e6cfefc | 2224 | return ret; |
79e53945 | 2225 | } |
3c4fdcfb | 2226 | |
94352cf9 DV |
2227 | old_fb = crtc->fb; |
2228 | crtc->fb = fb; | |
6c4c86f5 DV |
2229 | crtc->x = x; |
2230 | crtc->y = y; | |
94352cf9 | 2231 | |
b7f1de28 | 2232 | if (old_fb) { |
d7697eea DV |
2233 | if (intel_crtc->active && old_fb != fb) |
2234 | intel_wait_for_vblank(dev, intel_crtc->pipe); | |
1690e1eb | 2235 | intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj); |
b7f1de28 | 2236 | } |
652c393a | 2237 | |
6b8e6ed0 | 2238 | intel_update_fbc(dev); |
5c3b82e2 | 2239 | mutex_unlock(&dev->struct_mutex); |
79e53945 | 2240 | |
198598d0 | 2241 | intel_crtc_update_sarea_pos(crtc, x, y); |
5c3b82e2 CW |
2242 | |
2243 | return 0; | |
79e53945 JB |
2244 | } |
2245 | ||
5e84e1a4 ZW |
2246 | static void intel_fdi_normal_train(struct drm_crtc *crtc) |
2247 | { | |
2248 | struct drm_device *dev = crtc->dev; | |
2249 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2250 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2251 | int pipe = intel_crtc->pipe; | |
2252 | u32 reg, temp; | |
2253 | ||
2254 | /* enable normal train */ | |
2255 | reg = FDI_TX_CTL(pipe); | |
2256 | temp = I915_READ(reg); | |
61e499bf | 2257 | if (IS_IVYBRIDGE(dev)) { |
357555c0 JB |
2258 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
2259 | temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE; | |
61e499bf KP |
2260 | } else { |
2261 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2262 | temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE; | |
357555c0 | 2263 | } |
5e84e1a4 ZW |
2264 | I915_WRITE(reg, temp); |
2265 | ||
2266 | reg = FDI_RX_CTL(pipe); | |
2267 | temp = I915_READ(reg); | |
2268 | if (HAS_PCH_CPT(dev)) { | |
2269 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2270 | temp |= FDI_LINK_TRAIN_NORMAL_CPT; | |
2271 | } else { | |
2272 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2273 | temp |= FDI_LINK_TRAIN_NONE; | |
2274 | } | |
2275 | I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE); | |
2276 | ||
2277 | /* wait one idle pattern time */ | |
2278 | POSTING_READ(reg); | |
2279 | udelay(1000); | |
357555c0 JB |
2280 | |
2281 | /* IVB wants error correction enabled */ | |
2282 | if (IS_IVYBRIDGE(dev)) | |
2283 | I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE | | |
2284 | FDI_FE_ERRC_ENABLE); | |
5e84e1a4 ZW |
2285 | } |
2286 | ||
1e833f40 DV |
2287 | static bool pipe_has_enabled_pch(struct intel_crtc *intel_crtc) |
2288 | { | |
2289 | return intel_crtc->base.enabled && intel_crtc->config.has_pch_encoder; | |
2290 | } | |
2291 | ||
01a415fd DV |
2292 | static void ivb_modeset_global_resources(struct drm_device *dev) |
2293 | { | |
2294 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2295 | struct intel_crtc *pipe_B_crtc = | |
2296 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]); | |
2297 | struct intel_crtc *pipe_C_crtc = | |
2298 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]); | |
2299 | uint32_t temp; | |
2300 | ||
1e833f40 DV |
2301 | /* |
2302 | * When everything is off disable fdi C so that we could enable fdi B | |
2303 | * with all lanes. Note that we don't care about enabled pipes without | |
2304 | * an enabled pch encoder. | |
2305 | */ | |
2306 | if (!pipe_has_enabled_pch(pipe_B_crtc) && | |
2307 | !pipe_has_enabled_pch(pipe_C_crtc)) { | |
01a415fd DV |
2308 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE); |
2309 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE); | |
2310 | ||
2311 | temp = I915_READ(SOUTH_CHICKEN1); | |
2312 | temp &= ~FDI_BC_BIFURCATION_SELECT; | |
2313 | DRM_DEBUG_KMS("disabling fdi C rx\n"); | |
2314 | I915_WRITE(SOUTH_CHICKEN1, temp); | |
2315 | } | |
2316 | } | |
2317 | ||
8db9d77b ZW |
2318 | /* The FDI link training functions for ILK/Ibexpeak. */ |
2319 | static void ironlake_fdi_link_train(struct drm_crtc *crtc) | |
2320 | { | |
2321 | struct drm_device *dev = crtc->dev; | |
2322 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2323 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2324 | int pipe = intel_crtc->pipe; | |
0fc932b8 | 2325 | int plane = intel_crtc->plane; |
5eddb70b | 2326 | u32 reg, temp, tries; |
8db9d77b | 2327 | |
0fc932b8 JB |
2328 | /* FDI needs bits from pipe & plane first */ |
2329 | assert_pipe_enabled(dev_priv, pipe); | |
2330 | assert_plane_enabled(dev_priv, plane); | |
2331 | ||
e1a44743 AJ |
2332 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
2333 | for train result */ | |
5eddb70b CW |
2334 | reg = FDI_RX_IMR(pipe); |
2335 | temp = I915_READ(reg); | |
e1a44743 AJ |
2336 | temp &= ~FDI_RX_SYMBOL_LOCK; |
2337 | temp &= ~FDI_RX_BIT_LOCK; | |
5eddb70b CW |
2338 | I915_WRITE(reg, temp); |
2339 | I915_READ(reg); | |
e1a44743 AJ |
2340 | udelay(150); |
2341 | ||
8db9d77b | 2342 | /* enable CPU FDI TX and PCH FDI RX */ |
5eddb70b CW |
2343 | reg = FDI_TX_CTL(pipe); |
2344 | temp = I915_READ(reg); | |
627eb5a3 DV |
2345 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
2346 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes); | |
8db9d77b ZW |
2347 | temp &= ~FDI_LINK_TRAIN_NONE; |
2348 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
5eddb70b | 2349 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
8db9d77b | 2350 | |
5eddb70b CW |
2351 | reg = FDI_RX_CTL(pipe); |
2352 | temp = I915_READ(reg); | |
8db9d77b ZW |
2353 | temp &= ~FDI_LINK_TRAIN_NONE; |
2354 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
5eddb70b CW |
2355 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
2356 | ||
2357 | POSTING_READ(reg); | |
8db9d77b ZW |
2358 | udelay(150); |
2359 | ||
5b2adf89 | 2360 | /* Ironlake workaround, enable clock pointer after FDI enable*/ |
8f5718a6 DV |
2361 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
2362 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR | | |
2363 | FDI_RX_PHASE_SYNC_POINTER_EN); | |
5b2adf89 | 2364 | |
5eddb70b | 2365 | reg = FDI_RX_IIR(pipe); |
e1a44743 | 2366 | for (tries = 0; tries < 5; tries++) { |
5eddb70b | 2367 | temp = I915_READ(reg); |
8db9d77b ZW |
2368 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
2369 | ||
2370 | if ((temp & FDI_RX_BIT_LOCK)) { | |
2371 | DRM_DEBUG_KMS("FDI train 1 done.\n"); | |
5eddb70b | 2372 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
8db9d77b ZW |
2373 | break; |
2374 | } | |
8db9d77b | 2375 | } |
e1a44743 | 2376 | if (tries == 5) |
5eddb70b | 2377 | DRM_ERROR("FDI train 1 fail!\n"); |
8db9d77b ZW |
2378 | |
2379 | /* Train 2 */ | |
5eddb70b CW |
2380 | reg = FDI_TX_CTL(pipe); |
2381 | temp = I915_READ(reg); | |
8db9d77b ZW |
2382 | temp &= ~FDI_LINK_TRAIN_NONE; |
2383 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
5eddb70b | 2384 | I915_WRITE(reg, temp); |
8db9d77b | 2385 | |
5eddb70b CW |
2386 | reg = FDI_RX_CTL(pipe); |
2387 | temp = I915_READ(reg); | |
8db9d77b ZW |
2388 | temp &= ~FDI_LINK_TRAIN_NONE; |
2389 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
5eddb70b | 2390 | I915_WRITE(reg, temp); |
8db9d77b | 2391 | |
5eddb70b CW |
2392 | POSTING_READ(reg); |
2393 | udelay(150); | |
8db9d77b | 2394 | |
5eddb70b | 2395 | reg = FDI_RX_IIR(pipe); |
e1a44743 | 2396 | for (tries = 0; tries < 5; tries++) { |
5eddb70b | 2397 | temp = I915_READ(reg); |
8db9d77b ZW |
2398 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
2399 | ||
2400 | if (temp & FDI_RX_SYMBOL_LOCK) { | |
5eddb70b | 2401 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
8db9d77b ZW |
2402 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
2403 | break; | |
2404 | } | |
8db9d77b | 2405 | } |
e1a44743 | 2406 | if (tries == 5) |
5eddb70b | 2407 | DRM_ERROR("FDI train 2 fail!\n"); |
8db9d77b ZW |
2408 | |
2409 | DRM_DEBUG_KMS("FDI train done\n"); | |
5c5313c8 | 2410 | |
8db9d77b ZW |
2411 | } |
2412 | ||
0206e353 | 2413 | static const int snb_b_fdi_train_param[] = { |
8db9d77b ZW |
2414 | FDI_LINK_TRAIN_400MV_0DB_SNB_B, |
2415 | FDI_LINK_TRAIN_400MV_6DB_SNB_B, | |
2416 | FDI_LINK_TRAIN_600MV_3_5DB_SNB_B, | |
2417 | FDI_LINK_TRAIN_800MV_0DB_SNB_B, | |
2418 | }; | |
2419 | ||
2420 | /* The FDI link training functions for SNB/Cougarpoint. */ | |
2421 | static void gen6_fdi_link_train(struct drm_crtc *crtc) | |
2422 | { | |
2423 | struct drm_device *dev = crtc->dev; | |
2424 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2425 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2426 | int pipe = intel_crtc->pipe; | |
fa37d39e | 2427 | u32 reg, temp, i, retry; |
8db9d77b | 2428 | |
e1a44743 AJ |
2429 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
2430 | for train result */ | |
5eddb70b CW |
2431 | reg = FDI_RX_IMR(pipe); |
2432 | temp = I915_READ(reg); | |
e1a44743 AJ |
2433 | temp &= ~FDI_RX_SYMBOL_LOCK; |
2434 | temp &= ~FDI_RX_BIT_LOCK; | |
5eddb70b CW |
2435 | I915_WRITE(reg, temp); |
2436 | ||
2437 | POSTING_READ(reg); | |
e1a44743 AJ |
2438 | udelay(150); |
2439 | ||
8db9d77b | 2440 | /* enable CPU FDI TX and PCH FDI RX */ |
5eddb70b CW |
2441 | reg = FDI_TX_CTL(pipe); |
2442 | temp = I915_READ(reg); | |
627eb5a3 DV |
2443 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
2444 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes); | |
8db9d77b ZW |
2445 | temp &= ~FDI_LINK_TRAIN_NONE; |
2446 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
2447 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2448 | /* SNB-B */ | |
2449 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; | |
5eddb70b | 2450 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
8db9d77b | 2451 | |
d74cf324 DV |
2452 | I915_WRITE(FDI_RX_MISC(pipe), |
2453 | FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90); | |
2454 | ||
5eddb70b CW |
2455 | reg = FDI_RX_CTL(pipe); |
2456 | temp = I915_READ(reg); | |
8db9d77b ZW |
2457 | if (HAS_PCH_CPT(dev)) { |
2458 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2459 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; | |
2460 | } else { | |
2461 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2462 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
2463 | } | |
5eddb70b CW |
2464 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
2465 | ||
2466 | POSTING_READ(reg); | |
8db9d77b ZW |
2467 | udelay(150); |
2468 | ||
0206e353 | 2469 | for (i = 0; i < 4; i++) { |
5eddb70b CW |
2470 | reg = FDI_TX_CTL(pipe); |
2471 | temp = I915_READ(reg); | |
8db9d77b ZW |
2472 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
2473 | temp |= snb_b_fdi_train_param[i]; | |
5eddb70b CW |
2474 | I915_WRITE(reg, temp); |
2475 | ||
2476 | POSTING_READ(reg); | |
8db9d77b ZW |
2477 | udelay(500); |
2478 | ||
fa37d39e SP |
2479 | for (retry = 0; retry < 5; retry++) { |
2480 | reg = FDI_RX_IIR(pipe); | |
2481 | temp = I915_READ(reg); | |
2482 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
2483 | if (temp & FDI_RX_BIT_LOCK) { | |
2484 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); | |
2485 | DRM_DEBUG_KMS("FDI train 1 done.\n"); | |
2486 | break; | |
2487 | } | |
2488 | udelay(50); | |
8db9d77b | 2489 | } |
fa37d39e SP |
2490 | if (retry < 5) |
2491 | break; | |
8db9d77b ZW |
2492 | } |
2493 | if (i == 4) | |
5eddb70b | 2494 | DRM_ERROR("FDI train 1 fail!\n"); |
8db9d77b ZW |
2495 | |
2496 | /* Train 2 */ | |
5eddb70b CW |
2497 | reg = FDI_TX_CTL(pipe); |
2498 | temp = I915_READ(reg); | |
8db9d77b ZW |
2499 | temp &= ~FDI_LINK_TRAIN_NONE; |
2500 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
2501 | if (IS_GEN6(dev)) { | |
2502 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2503 | /* SNB-B */ | |
2504 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; | |
2505 | } | |
5eddb70b | 2506 | I915_WRITE(reg, temp); |
8db9d77b | 2507 | |
5eddb70b CW |
2508 | reg = FDI_RX_CTL(pipe); |
2509 | temp = I915_READ(reg); | |
8db9d77b ZW |
2510 | if (HAS_PCH_CPT(dev)) { |
2511 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2512 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; | |
2513 | } else { | |
2514 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2515 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
2516 | } | |
5eddb70b CW |
2517 | I915_WRITE(reg, temp); |
2518 | ||
2519 | POSTING_READ(reg); | |
8db9d77b ZW |
2520 | udelay(150); |
2521 | ||
0206e353 | 2522 | for (i = 0; i < 4; i++) { |
5eddb70b CW |
2523 | reg = FDI_TX_CTL(pipe); |
2524 | temp = I915_READ(reg); | |
8db9d77b ZW |
2525 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
2526 | temp |= snb_b_fdi_train_param[i]; | |
5eddb70b CW |
2527 | I915_WRITE(reg, temp); |
2528 | ||
2529 | POSTING_READ(reg); | |
8db9d77b ZW |
2530 | udelay(500); |
2531 | ||
fa37d39e SP |
2532 | for (retry = 0; retry < 5; retry++) { |
2533 | reg = FDI_RX_IIR(pipe); | |
2534 | temp = I915_READ(reg); | |
2535 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
2536 | if (temp & FDI_RX_SYMBOL_LOCK) { | |
2537 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); | |
2538 | DRM_DEBUG_KMS("FDI train 2 done.\n"); | |
2539 | break; | |
2540 | } | |
2541 | udelay(50); | |
8db9d77b | 2542 | } |
fa37d39e SP |
2543 | if (retry < 5) |
2544 | break; | |
8db9d77b ZW |
2545 | } |
2546 | if (i == 4) | |
5eddb70b | 2547 | DRM_ERROR("FDI train 2 fail!\n"); |
8db9d77b ZW |
2548 | |
2549 | DRM_DEBUG_KMS("FDI train done.\n"); | |
2550 | } | |
2551 | ||
357555c0 JB |
2552 | /* Manual link training for Ivy Bridge A0 parts */ |
2553 | static void ivb_manual_fdi_link_train(struct drm_crtc *crtc) | |
2554 | { | |
2555 | struct drm_device *dev = crtc->dev; | |
2556 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2557 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2558 | int pipe = intel_crtc->pipe; | |
2559 | u32 reg, temp, i; | |
2560 | ||
2561 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit | |
2562 | for train result */ | |
2563 | reg = FDI_RX_IMR(pipe); | |
2564 | temp = I915_READ(reg); | |
2565 | temp &= ~FDI_RX_SYMBOL_LOCK; | |
2566 | temp &= ~FDI_RX_BIT_LOCK; | |
2567 | I915_WRITE(reg, temp); | |
2568 | ||
2569 | POSTING_READ(reg); | |
2570 | udelay(150); | |
2571 | ||
01a415fd DV |
2572 | DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n", |
2573 | I915_READ(FDI_RX_IIR(pipe))); | |
2574 | ||
357555c0 JB |
2575 | /* enable CPU FDI TX and PCH FDI RX */ |
2576 | reg = FDI_TX_CTL(pipe); | |
2577 | temp = I915_READ(reg); | |
627eb5a3 DV |
2578 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
2579 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes); | |
357555c0 JB |
2580 | temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB); |
2581 | temp |= FDI_LINK_TRAIN_PATTERN_1_IVB; | |
2582 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2583 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; | |
c4f9c4c2 | 2584 | temp |= FDI_COMPOSITE_SYNC; |
357555c0 JB |
2585 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
2586 | ||
d74cf324 DV |
2587 | I915_WRITE(FDI_RX_MISC(pipe), |
2588 | FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90); | |
2589 | ||
357555c0 JB |
2590 | reg = FDI_RX_CTL(pipe); |
2591 | temp = I915_READ(reg); | |
2592 | temp &= ~FDI_LINK_TRAIN_AUTO; | |
2593 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2594 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; | |
c4f9c4c2 | 2595 | temp |= FDI_COMPOSITE_SYNC; |
357555c0 JB |
2596 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
2597 | ||
2598 | POSTING_READ(reg); | |
2599 | udelay(150); | |
2600 | ||
0206e353 | 2601 | for (i = 0; i < 4; i++) { |
357555c0 JB |
2602 | reg = FDI_TX_CTL(pipe); |
2603 | temp = I915_READ(reg); | |
2604 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2605 | temp |= snb_b_fdi_train_param[i]; | |
2606 | I915_WRITE(reg, temp); | |
2607 | ||
2608 | POSTING_READ(reg); | |
2609 | udelay(500); | |
2610 | ||
2611 | reg = FDI_RX_IIR(pipe); | |
2612 | temp = I915_READ(reg); | |
2613 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
2614 | ||
2615 | if (temp & FDI_RX_BIT_LOCK || | |
2616 | (I915_READ(reg) & FDI_RX_BIT_LOCK)) { | |
2617 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); | |
01a415fd | 2618 | DRM_DEBUG_KMS("FDI train 1 done, level %i.\n", i); |
357555c0 JB |
2619 | break; |
2620 | } | |
2621 | } | |
2622 | if (i == 4) | |
2623 | DRM_ERROR("FDI train 1 fail!\n"); | |
2624 | ||
2625 | /* Train 2 */ | |
2626 | reg = FDI_TX_CTL(pipe); | |
2627 | temp = I915_READ(reg); | |
2628 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; | |
2629 | temp |= FDI_LINK_TRAIN_PATTERN_2_IVB; | |
2630 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2631 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; | |
2632 | I915_WRITE(reg, temp); | |
2633 | ||
2634 | reg = FDI_RX_CTL(pipe); | |
2635 | temp = I915_READ(reg); | |
2636 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2637 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; | |
2638 | I915_WRITE(reg, temp); | |
2639 | ||
2640 | POSTING_READ(reg); | |
2641 | udelay(150); | |
2642 | ||
0206e353 | 2643 | for (i = 0; i < 4; i++) { |
357555c0 JB |
2644 | reg = FDI_TX_CTL(pipe); |
2645 | temp = I915_READ(reg); | |
2646 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
2647 | temp |= snb_b_fdi_train_param[i]; | |
2648 | I915_WRITE(reg, temp); | |
2649 | ||
2650 | POSTING_READ(reg); | |
2651 | udelay(500); | |
2652 | ||
2653 | reg = FDI_RX_IIR(pipe); | |
2654 | temp = I915_READ(reg); | |
2655 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
2656 | ||
2657 | if (temp & FDI_RX_SYMBOL_LOCK) { | |
2658 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); | |
01a415fd | 2659 | DRM_DEBUG_KMS("FDI train 2 done, level %i.\n", i); |
357555c0 JB |
2660 | break; |
2661 | } | |
2662 | } | |
2663 | if (i == 4) | |
2664 | DRM_ERROR("FDI train 2 fail!\n"); | |
2665 | ||
2666 | DRM_DEBUG_KMS("FDI train done.\n"); | |
2667 | } | |
2668 | ||
88cefb6c | 2669 | static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc) |
2c07245f | 2670 | { |
88cefb6c | 2671 | struct drm_device *dev = intel_crtc->base.dev; |
2c07245f | 2672 | struct drm_i915_private *dev_priv = dev->dev_private; |
2c07245f | 2673 | int pipe = intel_crtc->pipe; |
5eddb70b | 2674 | u32 reg, temp; |
79e53945 | 2675 | |
c64e311e | 2676 | |
c98e9dcf | 2677 | /* enable PCH FDI RX PLL, wait warmup plus DMI latency */ |
5eddb70b CW |
2678 | reg = FDI_RX_CTL(pipe); |
2679 | temp = I915_READ(reg); | |
627eb5a3 DV |
2680 | temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16)); |
2681 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes); | |
dfd07d72 | 2682 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
5eddb70b CW |
2683 | I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE); |
2684 | ||
2685 | POSTING_READ(reg); | |
c98e9dcf JB |
2686 | udelay(200); |
2687 | ||
2688 | /* Switch from Rawclk to PCDclk */ | |
5eddb70b CW |
2689 | temp = I915_READ(reg); |
2690 | I915_WRITE(reg, temp | FDI_PCDCLK); | |
2691 | ||
2692 | POSTING_READ(reg); | |
c98e9dcf JB |
2693 | udelay(200); |
2694 | ||
20749730 PZ |
2695 | /* Enable CPU FDI TX PLL, always on for Ironlake */ |
2696 | reg = FDI_TX_CTL(pipe); | |
2697 | temp = I915_READ(reg); | |
2698 | if ((temp & FDI_TX_PLL_ENABLE) == 0) { | |
2699 | I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE); | |
5eddb70b | 2700 | |
20749730 PZ |
2701 | POSTING_READ(reg); |
2702 | udelay(100); | |
6be4a607 | 2703 | } |
0e23b99d JB |
2704 | } |
2705 | ||
88cefb6c DV |
2706 | static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc) |
2707 | { | |
2708 | struct drm_device *dev = intel_crtc->base.dev; | |
2709 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2710 | int pipe = intel_crtc->pipe; | |
2711 | u32 reg, temp; | |
2712 | ||
2713 | /* Switch from PCDclk to Rawclk */ | |
2714 | reg = FDI_RX_CTL(pipe); | |
2715 | temp = I915_READ(reg); | |
2716 | I915_WRITE(reg, temp & ~FDI_PCDCLK); | |
2717 | ||
2718 | /* Disable CPU FDI TX PLL */ | |
2719 | reg = FDI_TX_CTL(pipe); | |
2720 | temp = I915_READ(reg); | |
2721 | I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE); | |
2722 | ||
2723 | POSTING_READ(reg); | |
2724 | udelay(100); | |
2725 | ||
2726 | reg = FDI_RX_CTL(pipe); | |
2727 | temp = I915_READ(reg); | |
2728 | I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE); | |
2729 | ||
2730 | /* Wait for the clocks to turn off. */ | |
2731 | POSTING_READ(reg); | |
2732 | udelay(100); | |
2733 | } | |
2734 | ||
0fc932b8 JB |
2735 | static void ironlake_fdi_disable(struct drm_crtc *crtc) |
2736 | { | |
2737 | struct drm_device *dev = crtc->dev; | |
2738 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2739 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2740 | int pipe = intel_crtc->pipe; | |
2741 | u32 reg, temp; | |
2742 | ||
2743 | /* disable CPU FDI tx and PCH FDI rx */ | |
2744 | reg = FDI_TX_CTL(pipe); | |
2745 | temp = I915_READ(reg); | |
2746 | I915_WRITE(reg, temp & ~FDI_TX_ENABLE); | |
2747 | POSTING_READ(reg); | |
2748 | ||
2749 | reg = FDI_RX_CTL(pipe); | |
2750 | temp = I915_READ(reg); | |
2751 | temp &= ~(0x7 << 16); | |
dfd07d72 | 2752 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
0fc932b8 JB |
2753 | I915_WRITE(reg, temp & ~FDI_RX_ENABLE); |
2754 | ||
2755 | POSTING_READ(reg); | |
2756 | udelay(100); | |
2757 | ||
2758 | /* Ironlake workaround, disable clock pointer after downing FDI */ | |
6f06ce18 JB |
2759 | if (HAS_PCH_IBX(dev)) { |
2760 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); | |
6f06ce18 | 2761 | } |
0fc932b8 JB |
2762 | |
2763 | /* still set train pattern 1 */ | |
2764 | reg = FDI_TX_CTL(pipe); | |
2765 | temp = I915_READ(reg); | |
2766 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2767 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
2768 | I915_WRITE(reg, temp); | |
2769 | ||
2770 | reg = FDI_RX_CTL(pipe); | |
2771 | temp = I915_READ(reg); | |
2772 | if (HAS_PCH_CPT(dev)) { | |
2773 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
2774 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; | |
2775 | } else { | |
2776 | temp &= ~FDI_LINK_TRAIN_NONE; | |
2777 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
2778 | } | |
2779 | /* BPC in FDI rx is consistent with that in PIPECONF */ | |
2780 | temp &= ~(0x07 << 16); | |
dfd07d72 | 2781 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
0fc932b8 JB |
2782 | I915_WRITE(reg, temp); |
2783 | ||
2784 | POSTING_READ(reg); | |
2785 | udelay(100); | |
2786 | } | |
2787 | ||
5bb61643 CW |
2788 | static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc) |
2789 | { | |
2790 | struct drm_device *dev = crtc->dev; | |
2791 | struct drm_i915_private *dev_priv = dev->dev_private; | |
10d83730 | 2792 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
5bb61643 CW |
2793 | unsigned long flags; |
2794 | bool pending; | |
2795 | ||
10d83730 VS |
2796 | if (i915_reset_in_progress(&dev_priv->gpu_error) || |
2797 | intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) | |
5bb61643 CW |
2798 | return false; |
2799 | ||
2800 | spin_lock_irqsave(&dev->event_lock, flags); | |
2801 | pending = to_intel_crtc(crtc)->unpin_work != NULL; | |
2802 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
2803 | ||
2804 | return pending; | |
2805 | } | |
2806 | ||
e6c3a2a6 CW |
2807 | static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc) |
2808 | { | |
0f91128d | 2809 | struct drm_device *dev = crtc->dev; |
5bb61643 | 2810 | struct drm_i915_private *dev_priv = dev->dev_private; |
e6c3a2a6 CW |
2811 | |
2812 | if (crtc->fb == NULL) | |
2813 | return; | |
2814 | ||
2c10d571 DV |
2815 | WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue)); |
2816 | ||
5bb61643 CW |
2817 | wait_event(dev_priv->pending_flip_queue, |
2818 | !intel_crtc_has_pending_flip(crtc)); | |
2819 | ||
0f91128d CW |
2820 | mutex_lock(&dev->struct_mutex); |
2821 | intel_finish_fb(crtc->fb); | |
2822 | mutex_unlock(&dev->struct_mutex); | |
e6c3a2a6 CW |
2823 | } |
2824 | ||
e615efe4 ED |
2825 | /* Program iCLKIP clock to the desired frequency */ |
2826 | static void lpt_program_iclkip(struct drm_crtc *crtc) | |
2827 | { | |
2828 | struct drm_device *dev = crtc->dev; | |
2829 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2830 | u32 divsel, phaseinc, auxdiv, phasedir = 0; | |
2831 | u32 temp; | |
2832 | ||
09153000 DV |
2833 | mutex_lock(&dev_priv->dpio_lock); |
2834 | ||
e615efe4 ED |
2835 | /* It is necessary to ungate the pixclk gate prior to programming |
2836 | * the divisors, and gate it back when it is done. | |
2837 | */ | |
2838 | I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE); | |
2839 | ||
2840 | /* Disable SSCCTL */ | |
2841 | intel_sbi_write(dev_priv, SBI_SSCCTL6, | |
988d6ee8 PZ |
2842 | intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) | |
2843 | SBI_SSCCTL_DISABLE, | |
2844 | SBI_ICLK); | |
e615efe4 ED |
2845 | |
2846 | /* 20MHz is a corner case which is out of range for the 7-bit divisor */ | |
2847 | if (crtc->mode.clock == 20000) { | |
2848 | auxdiv = 1; | |
2849 | divsel = 0x41; | |
2850 | phaseinc = 0x20; | |
2851 | } else { | |
2852 | /* The iCLK virtual clock root frequency is in MHz, | |
2853 | * but the crtc->mode.clock in in KHz. To get the divisors, | |
2854 | * it is necessary to divide one by another, so we | |
2855 | * convert the virtual clock precision to KHz here for higher | |
2856 | * precision. | |
2857 | */ | |
2858 | u32 iclk_virtual_root_freq = 172800 * 1000; | |
2859 | u32 iclk_pi_range = 64; | |
2860 | u32 desired_divisor, msb_divisor_value, pi_value; | |
2861 | ||
2862 | desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock); | |
2863 | msb_divisor_value = desired_divisor / iclk_pi_range; | |
2864 | pi_value = desired_divisor % iclk_pi_range; | |
2865 | ||
2866 | auxdiv = 0; | |
2867 | divsel = msb_divisor_value - 2; | |
2868 | phaseinc = pi_value; | |
2869 | } | |
2870 | ||
2871 | /* This should not happen with any sane values */ | |
2872 | WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) & | |
2873 | ~SBI_SSCDIVINTPHASE_DIVSEL_MASK); | |
2874 | WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) & | |
2875 | ~SBI_SSCDIVINTPHASE_INCVAL_MASK); | |
2876 | ||
2877 | DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n", | |
2878 | crtc->mode.clock, | |
2879 | auxdiv, | |
2880 | divsel, | |
2881 | phasedir, | |
2882 | phaseinc); | |
2883 | ||
2884 | /* Program SSCDIVINTPHASE6 */ | |
988d6ee8 | 2885 | temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK); |
e615efe4 ED |
2886 | temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK; |
2887 | temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel); | |
2888 | temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK; | |
2889 | temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc); | |
2890 | temp |= SBI_SSCDIVINTPHASE_DIR(phasedir); | |
2891 | temp |= SBI_SSCDIVINTPHASE_PROPAGATE; | |
988d6ee8 | 2892 | intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK); |
e615efe4 ED |
2893 | |
2894 | /* Program SSCAUXDIV */ | |
988d6ee8 | 2895 | temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK); |
e615efe4 ED |
2896 | temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1); |
2897 | temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv); | |
988d6ee8 | 2898 | intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK); |
e615efe4 ED |
2899 | |
2900 | /* Enable modulator and associated divider */ | |
988d6ee8 | 2901 | temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK); |
e615efe4 | 2902 | temp &= ~SBI_SSCCTL_DISABLE; |
988d6ee8 | 2903 | intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK); |
e615efe4 ED |
2904 | |
2905 | /* Wait for initialization time */ | |
2906 | udelay(24); | |
2907 | ||
2908 | I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE); | |
09153000 DV |
2909 | |
2910 | mutex_unlock(&dev_priv->dpio_lock); | |
e615efe4 ED |
2911 | } |
2912 | ||
275f01b2 DV |
2913 | static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc, |
2914 | enum pipe pch_transcoder) | |
2915 | { | |
2916 | struct drm_device *dev = crtc->base.dev; | |
2917 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2918 | enum transcoder cpu_transcoder = crtc->config.cpu_transcoder; | |
2919 | ||
2920 | I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder), | |
2921 | I915_READ(HTOTAL(cpu_transcoder))); | |
2922 | I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder), | |
2923 | I915_READ(HBLANK(cpu_transcoder))); | |
2924 | I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder), | |
2925 | I915_READ(HSYNC(cpu_transcoder))); | |
2926 | ||
2927 | I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder), | |
2928 | I915_READ(VTOTAL(cpu_transcoder))); | |
2929 | I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder), | |
2930 | I915_READ(VBLANK(cpu_transcoder))); | |
2931 | I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder), | |
2932 | I915_READ(VSYNC(cpu_transcoder))); | |
2933 | I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder), | |
2934 | I915_READ(VSYNCSHIFT(cpu_transcoder))); | |
2935 | } | |
2936 | ||
f67a559d JB |
2937 | /* |
2938 | * Enable PCH resources required for PCH ports: | |
2939 | * - PCH PLLs | |
2940 | * - FDI training & RX/TX | |
2941 | * - update transcoder timings | |
2942 | * - DP transcoding bits | |
2943 | * - transcoder | |
2944 | */ | |
2945 | static void ironlake_pch_enable(struct drm_crtc *crtc) | |
0e23b99d JB |
2946 | { |
2947 | struct drm_device *dev = crtc->dev; | |
2948 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2949 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
2950 | int pipe = intel_crtc->pipe; | |
ee7b9f93 | 2951 | u32 reg, temp; |
2c07245f | 2952 | |
ab9412ba | 2953 | assert_pch_transcoder_disabled(dev_priv, pipe); |
e7e164db | 2954 | |
cd986abb DV |
2955 | /* Write the TU size bits before fdi link training, so that error |
2956 | * detection works. */ | |
2957 | I915_WRITE(FDI_RX_TUSIZE1(pipe), | |
2958 | I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK); | |
2959 | ||
c98e9dcf | 2960 | /* For PCH output, training FDI link */ |
674cf967 | 2961 | dev_priv->display.fdi_link_train(crtc); |
2c07245f | 2962 | |
572deb37 DV |
2963 | /* XXX: pch pll's can be enabled any time before we enable the PCH |
2964 | * transcoder, and we actually should do this to not upset any PCH | |
2965 | * transcoder that already use the clock when we share it. | |
2966 | * | |
2967 | * Note that enable_pch_pll tries to do the right thing, but get_pch_pll | |
2968 | * unconditionally resets the pll - we need that to have the right LVDS | |
2969 | * enable sequence. */ | |
b6b4e185 | 2970 | ironlake_enable_pch_pll(intel_crtc); |
6f13b7b5 | 2971 | |
303b81e0 | 2972 | if (HAS_PCH_CPT(dev)) { |
ee7b9f93 | 2973 | u32 sel; |
4b645f14 | 2974 | |
c98e9dcf | 2975 | temp = I915_READ(PCH_DPLL_SEL); |
ee7b9f93 JB |
2976 | switch (pipe) { |
2977 | default: | |
2978 | case 0: | |
2979 | temp |= TRANSA_DPLL_ENABLE; | |
2980 | sel = TRANSA_DPLLB_SEL; | |
2981 | break; | |
2982 | case 1: | |
2983 | temp |= TRANSB_DPLL_ENABLE; | |
2984 | sel = TRANSB_DPLLB_SEL; | |
2985 | break; | |
2986 | case 2: | |
2987 | temp |= TRANSC_DPLL_ENABLE; | |
2988 | sel = TRANSC_DPLLB_SEL; | |
2989 | break; | |
d64311ab | 2990 | } |
ee7b9f93 JB |
2991 | if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B) |
2992 | temp |= sel; | |
2993 | else | |
2994 | temp &= ~sel; | |
c98e9dcf | 2995 | I915_WRITE(PCH_DPLL_SEL, temp); |
c98e9dcf | 2996 | } |
5eddb70b | 2997 | |
d9b6cb56 JB |
2998 | /* set transcoder timing, panel must allow it */ |
2999 | assert_panel_unlocked(dev_priv, pipe); | |
275f01b2 | 3000 | ironlake_pch_transcoder_set_timings(intel_crtc, pipe); |
8db9d77b | 3001 | |
303b81e0 | 3002 | intel_fdi_normal_train(crtc); |
5e84e1a4 | 3003 | |
c98e9dcf JB |
3004 | /* For PCH DP, enable TRANS_DP_CTL */ |
3005 | if (HAS_PCH_CPT(dev) && | |
417e822d KP |
3006 | (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) || |
3007 | intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) { | |
dfd07d72 | 3008 | u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5; |
5eddb70b CW |
3009 | reg = TRANS_DP_CTL(pipe); |
3010 | temp = I915_READ(reg); | |
3011 | temp &= ~(TRANS_DP_PORT_SEL_MASK | | |
220cad3c EA |
3012 | TRANS_DP_SYNC_MASK | |
3013 | TRANS_DP_BPC_MASK); | |
5eddb70b CW |
3014 | temp |= (TRANS_DP_OUTPUT_ENABLE | |
3015 | TRANS_DP_ENH_FRAMING); | |
9325c9f0 | 3016 | temp |= bpc << 9; /* same format but at 11:9 */ |
c98e9dcf JB |
3017 | |
3018 | if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC) | |
5eddb70b | 3019 | temp |= TRANS_DP_HSYNC_ACTIVE_HIGH; |
c98e9dcf | 3020 | if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC) |
5eddb70b | 3021 | temp |= TRANS_DP_VSYNC_ACTIVE_HIGH; |
c98e9dcf JB |
3022 | |
3023 | switch (intel_trans_dp_port_sel(crtc)) { | |
3024 | case PCH_DP_B: | |
5eddb70b | 3025 | temp |= TRANS_DP_PORT_SEL_B; |
c98e9dcf JB |
3026 | break; |
3027 | case PCH_DP_C: | |
5eddb70b | 3028 | temp |= TRANS_DP_PORT_SEL_C; |
c98e9dcf JB |
3029 | break; |
3030 | case PCH_DP_D: | |
5eddb70b | 3031 | temp |= TRANS_DP_PORT_SEL_D; |
c98e9dcf JB |
3032 | break; |
3033 | default: | |
e95d41e1 | 3034 | BUG(); |
32f9d658 | 3035 | } |
2c07245f | 3036 | |
5eddb70b | 3037 | I915_WRITE(reg, temp); |
6be4a607 | 3038 | } |
b52eb4dc | 3039 | |
b8a4f404 | 3040 | ironlake_enable_pch_transcoder(dev_priv, pipe); |
f67a559d JB |
3041 | } |
3042 | ||
1507e5bd PZ |
3043 | static void lpt_pch_enable(struct drm_crtc *crtc) |
3044 | { | |
3045 | struct drm_device *dev = crtc->dev; | |
3046 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3047 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3b117c8f | 3048 | enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder; |
1507e5bd | 3049 | |
ab9412ba | 3050 | assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A); |
1507e5bd | 3051 | |
8c52b5e8 | 3052 | lpt_program_iclkip(crtc); |
1507e5bd | 3053 | |
0540e488 | 3054 | /* Set transcoder timing. */ |
275f01b2 | 3055 | ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A); |
1507e5bd | 3056 | |
937bb610 | 3057 | lpt_enable_pch_transcoder(dev_priv, cpu_transcoder); |
f67a559d JB |
3058 | } |
3059 | ||
ee7b9f93 JB |
3060 | static void intel_put_pch_pll(struct intel_crtc *intel_crtc) |
3061 | { | |
3062 | struct intel_pch_pll *pll = intel_crtc->pch_pll; | |
3063 | ||
3064 | if (pll == NULL) | |
3065 | return; | |
3066 | ||
3067 | if (pll->refcount == 0) { | |
3068 | WARN(1, "bad PCH PLL refcount\n"); | |
3069 | return; | |
3070 | } | |
3071 | ||
3072 | --pll->refcount; | |
3073 | intel_crtc->pch_pll = NULL; | |
3074 | } | |
3075 | ||
3076 | static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp) | |
3077 | { | |
3078 | struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private; | |
3079 | struct intel_pch_pll *pll; | |
3080 | int i; | |
3081 | ||
3082 | pll = intel_crtc->pch_pll; | |
3083 | if (pll) { | |
3084 | DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n", | |
3085 | intel_crtc->base.base.id, pll->pll_reg); | |
3086 | goto prepare; | |
3087 | } | |
3088 | ||
98b6bd99 DV |
3089 | if (HAS_PCH_IBX(dev_priv->dev)) { |
3090 | /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */ | |
3091 | i = intel_crtc->pipe; | |
3092 | pll = &dev_priv->pch_plls[i]; | |
3093 | ||
3094 | DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n", | |
3095 | intel_crtc->base.base.id, pll->pll_reg); | |
3096 | ||
3097 | goto found; | |
3098 | } | |
3099 | ||
ee7b9f93 JB |
3100 | for (i = 0; i < dev_priv->num_pch_pll; i++) { |
3101 | pll = &dev_priv->pch_plls[i]; | |
3102 | ||
3103 | /* Only want to check enabled timings first */ | |
3104 | if (pll->refcount == 0) | |
3105 | continue; | |
3106 | ||
3107 | if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) && | |
3108 | fp == I915_READ(pll->fp0_reg)) { | |
3109 | DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n", | |
3110 | intel_crtc->base.base.id, | |
3111 | pll->pll_reg, pll->refcount, pll->active); | |
3112 | ||
3113 | goto found; | |
3114 | } | |
3115 | } | |
3116 | ||
3117 | /* Ok no matching timings, maybe there's a free one? */ | |
3118 | for (i = 0; i < dev_priv->num_pch_pll; i++) { | |
3119 | pll = &dev_priv->pch_plls[i]; | |
3120 | if (pll->refcount == 0) { | |
3121 | DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n", | |
3122 | intel_crtc->base.base.id, pll->pll_reg); | |
3123 | goto found; | |
3124 | } | |
3125 | } | |
3126 | ||
3127 | return NULL; | |
3128 | ||
3129 | found: | |
3130 | intel_crtc->pch_pll = pll; | |
3131 | pll->refcount++; | |
84f44ce7 | 3132 | DRM_DEBUG_DRIVER("using pll %d for pipe %c\n", i, pipe_name(intel_crtc->pipe)); |
ee7b9f93 JB |
3133 | prepare: /* separate function? */ |
3134 | DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg); | |
ee7b9f93 | 3135 | |
e04c7350 CW |
3136 | /* Wait for the clocks to stabilize before rewriting the regs */ |
3137 | I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE); | |
ee7b9f93 JB |
3138 | POSTING_READ(pll->pll_reg); |
3139 | udelay(150); | |
e04c7350 CW |
3140 | |
3141 | I915_WRITE(pll->fp0_reg, fp); | |
3142 | I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE); | |
ee7b9f93 JB |
3143 | pll->on = false; |
3144 | return pll; | |
3145 | } | |
3146 | ||
a1520318 | 3147 | static void cpt_verify_modeset(struct drm_device *dev, int pipe) |
d4270e57 JB |
3148 | { |
3149 | struct drm_i915_private *dev_priv = dev->dev_private; | |
23670b32 | 3150 | int dslreg = PIPEDSL(pipe); |
d4270e57 JB |
3151 | u32 temp; |
3152 | ||
3153 | temp = I915_READ(dslreg); | |
3154 | udelay(500); | |
3155 | if (wait_for(I915_READ(dslreg) != temp, 5)) { | |
d4270e57 | 3156 | if (wait_for(I915_READ(dslreg) != temp, 5)) |
84f44ce7 | 3157 | DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe)); |
d4270e57 JB |
3158 | } |
3159 | } | |
3160 | ||
b074cec8 JB |
3161 | static void ironlake_pfit_enable(struct intel_crtc *crtc) |
3162 | { | |
3163 | struct drm_device *dev = crtc->base.dev; | |
3164 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3165 | int pipe = crtc->pipe; | |
3166 | ||
0ef37f3f | 3167 | if (crtc->config.pch_pfit.size) { |
b074cec8 JB |
3168 | /* Force use of hard-coded filter coefficients |
3169 | * as some pre-programmed values are broken, | |
3170 | * e.g. x201. | |
3171 | */ | |
3172 | if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) | |
3173 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 | | |
3174 | PF_PIPE_SEL_IVB(pipe)); | |
3175 | else | |
3176 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3); | |
3177 | I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos); | |
3178 | I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size); | |
3179 | } | |
3180 | } | |
3181 | ||
bb53d4ae VS |
3182 | static void intel_enable_planes(struct drm_crtc *crtc) |
3183 | { | |
3184 | struct drm_device *dev = crtc->dev; | |
3185 | enum pipe pipe = to_intel_crtc(crtc)->pipe; | |
3186 | struct intel_plane *intel_plane; | |
3187 | ||
3188 | list_for_each_entry(intel_plane, &dev->mode_config.plane_list, base.head) | |
3189 | if (intel_plane->pipe == pipe) | |
3190 | intel_plane_restore(&intel_plane->base); | |
3191 | } | |
3192 | ||
3193 | static void intel_disable_planes(struct drm_crtc *crtc) | |
3194 | { | |
3195 | struct drm_device *dev = crtc->dev; | |
3196 | enum pipe pipe = to_intel_crtc(crtc)->pipe; | |
3197 | struct intel_plane *intel_plane; | |
3198 | ||
3199 | list_for_each_entry(intel_plane, &dev->mode_config.plane_list, base.head) | |
3200 | if (intel_plane->pipe == pipe) | |
3201 | intel_plane_disable(&intel_plane->base); | |
3202 | } | |
3203 | ||
f67a559d JB |
3204 | static void ironlake_crtc_enable(struct drm_crtc *crtc) |
3205 | { | |
3206 | struct drm_device *dev = crtc->dev; | |
3207 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3208 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ef9c3aee | 3209 | struct intel_encoder *encoder; |
f67a559d JB |
3210 | int pipe = intel_crtc->pipe; |
3211 | int plane = intel_crtc->plane; | |
3212 | u32 temp; | |
f67a559d | 3213 | |
08a48469 DV |
3214 | WARN_ON(!crtc->enabled); |
3215 | ||
f67a559d JB |
3216 | if (intel_crtc->active) |
3217 | return; | |
3218 | ||
3219 | intel_crtc->active = true; | |
8664281b PZ |
3220 | |
3221 | intel_set_cpu_fifo_underrun_reporting(dev, pipe, true); | |
3222 | intel_set_pch_fifo_underrun_reporting(dev, pipe, true); | |
3223 | ||
f67a559d JB |
3224 | intel_update_watermarks(dev); |
3225 | ||
3226 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
3227 | temp = I915_READ(PCH_LVDS); | |
3228 | if ((temp & LVDS_PORT_EN) == 0) | |
3229 | I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN); | |
3230 | } | |
3231 | ||
f67a559d | 3232 | |
5bfe2ac0 | 3233 | if (intel_crtc->config.has_pch_encoder) { |
fff367c7 DV |
3234 | /* Note: FDI PLL enabling _must_ be done before we enable the |
3235 | * cpu pipes, hence this is separate from all the other fdi/pch | |
3236 | * enabling. */ | |
88cefb6c | 3237 | ironlake_fdi_pll_enable(intel_crtc); |
46b6f814 DV |
3238 | } else { |
3239 | assert_fdi_tx_disabled(dev_priv, pipe); | |
3240 | assert_fdi_rx_disabled(dev_priv, pipe); | |
3241 | } | |
f67a559d | 3242 | |
bf49ec8c DV |
3243 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3244 | if (encoder->pre_enable) | |
3245 | encoder->pre_enable(encoder); | |
f67a559d JB |
3246 | |
3247 | /* Enable panel fitting for LVDS */ | |
b074cec8 | 3248 | ironlake_pfit_enable(intel_crtc); |
f67a559d | 3249 | |
9c54c0dd JB |
3250 | /* |
3251 | * On ILK+ LUT must be loaded before the pipe is running but with | |
3252 | * clocks enabled | |
3253 | */ | |
3254 | intel_crtc_load_lut(crtc); | |
3255 | ||
5bfe2ac0 DV |
3256 | intel_enable_pipe(dev_priv, pipe, |
3257 | intel_crtc->config.has_pch_encoder); | |
f67a559d | 3258 | intel_enable_plane(dev_priv, plane, pipe); |
bb53d4ae | 3259 | intel_enable_planes(crtc); |
5c38d48c | 3260 | intel_crtc_update_cursor(crtc, true); |
f67a559d | 3261 | |
5bfe2ac0 | 3262 | if (intel_crtc->config.has_pch_encoder) |
f67a559d | 3263 | ironlake_pch_enable(crtc); |
c98e9dcf | 3264 | |
d1ebd816 | 3265 | mutex_lock(&dev->struct_mutex); |
bed4a673 | 3266 | intel_update_fbc(dev); |
d1ebd816 BW |
3267 | mutex_unlock(&dev->struct_mutex); |
3268 | ||
fa5c73b1 DV |
3269 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3270 | encoder->enable(encoder); | |
61b77ddd DV |
3271 | |
3272 | if (HAS_PCH_CPT(dev)) | |
a1520318 | 3273 | cpt_verify_modeset(dev, intel_crtc->pipe); |
6ce94100 DV |
3274 | |
3275 | /* | |
3276 | * There seems to be a race in PCH platform hw (at least on some | |
3277 | * outputs) where an enabled pipe still completes any pageflip right | |
3278 | * away (as if the pipe is off) instead of waiting for vblank. As soon | |
3279 | * as the first vblank happend, everything works as expected. Hence just | |
3280 | * wait for one vblank before returning to avoid strange things | |
3281 | * happening. | |
3282 | */ | |
3283 | intel_wait_for_vblank(dev, intel_crtc->pipe); | |
6be4a607 JB |
3284 | } |
3285 | ||
42db64ef PZ |
3286 | /* IPS only exists on ULT machines and is tied to pipe A. */ |
3287 | static bool hsw_crtc_supports_ips(struct intel_crtc *crtc) | |
3288 | { | |
3289 | return IS_ULT(crtc->base.dev) && crtc->pipe == PIPE_A; | |
3290 | } | |
3291 | ||
3292 | static void hsw_enable_ips(struct intel_crtc *crtc) | |
3293 | { | |
3294 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; | |
3295 | ||
3296 | if (!crtc->config.ips_enabled) | |
3297 | return; | |
3298 | ||
3299 | /* We can only enable IPS after we enable a plane and wait for a vblank. | |
3300 | * We guarantee that the plane is enabled by calling intel_enable_ips | |
3301 | * only after intel_enable_plane. And intel_enable_plane already waits | |
3302 | * for a vblank, so all we need to do here is to enable the IPS bit. */ | |
3303 | assert_plane_enabled(dev_priv, crtc->plane); | |
3304 | I915_WRITE(IPS_CTL, IPS_ENABLE); | |
3305 | } | |
3306 | ||
3307 | static void hsw_disable_ips(struct intel_crtc *crtc) | |
3308 | { | |
3309 | struct drm_device *dev = crtc->base.dev; | |
3310 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3311 | ||
3312 | if (!crtc->config.ips_enabled) | |
3313 | return; | |
3314 | ||
3315 | assert_plane_enabled(dev_priv, crtc->plane); | |
3316 | I915_WRITE(IPS_CTL, 0); | |
3317 | ||
3318 | /* We need to wait for a vblank before we can disable the plane. */ | |
3319 | intel_wait_for_vblank(dev, crtc->pipe); | |
3320 | } | |
3321 | ||
4f771f10 PZ |
3322 | static void haswell_crtc_enable(struct drm_crtc *crtc) |
3323 | { | |
3324 | struct drm_device *dev = crtc->dev; | |
3325 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3326 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3327 | struct intel_encoder *encoder; | |
3328 | int pipe = intel_crtc->pipe; | |
3329 | int plane = intel_crtc->plane; | |
4f771f10 PZ |
3330 | |
3331 | WARN_ON(!crtc->enabled); | |
3332 | ||
3333 | if (intel_crtc->active) | |
3334 | return; | |
3335 | ||
3336 | intel_crtc->active = true; | |
8664281b PZ |
3337 | |
3338 | intel_set_cpu_fifo_underrun_reporting(dev, pipe, true); | |
3339 | if (intel_crtc->config.has_pch_encoder) | |
3340 | intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true); | |
3341 | ||
4f771f10 PZ |
3342 | intel_update_watermarks(dev); |
3343 | ||
5bfe2ac0 | 3344 | if (intel_crtc->config.has_pch_encoder) |
04945641 | 3345 | dev_priv->display.fdi_link_train(crtc); |
4f771f10 PZ |
3346 | |
3347 | for_each_encoder_on_crtc(dev, crtc, encoder) | |
3348 | if (encoder->pre_enable) | |
3349 | encoder->pre_enable(encoder); | |
3350 | ||
1f544388 | 3351 | intel_ddi_enable_pipe_clock(intel_crtc); |
4f771f10 | 3352 | |
1f544388 | 3353 | /* Enable panel fitting for eDP */ |
b074cec8 | 3354 | ironlake_pfit_enable(intel_crtc); |
4f771f10 PZ |
3355 | |
3356 | /* | |
3357 | * On ILK+ LUT must be loaded before the pipe is running but with | |
3358 | * clocks enabled | |
3359 | */ | |
3360 | intel_crtc_load_lut(crtc); | |
3361 | ||
1f544388 | 3362 | intel_ddi_set_pipe_settings(crtc); |
8228c251 | 3363 | intel_ddi_enable_transcoder_func(crtc); |
4f771f10 | 3364 | |
5bfe2ac0 DV |
3365 | intel_enable_pipe(dev_priv, pipe, |
3366 | intel_crtc->config.has_pch_encoder); | |
4f771f10 | 3367 | intel_enable_plane(dev_priv, plane, pipe); |
bb53d4ae | 3368 | intel_enable_planes(crtc); |
5c38d48c | 3369 | intel_crtc_update_cursor(crtc, true); |
4f771f10 | 3370 | |
42db64ef PZ |
3371 | hsw_enable_ips(intel_crtc); |
3372 | ||
5bfe2ac0 | 3373 | if (intel_crtc->config.has_pch_encoder) |
1507e5bd | 3374 | lpt_pch_enable(crtc); |
4f771f10 PZ |
3375 | |
3376 | mutex_lock(&dev->struct_mutex); | |
3377 | intel_update_fbc(dev); | |
3378 | mutex_unlock(&dev->struct_mutex); | |
3379 | ||
4f771f10 PZ |
3380 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3381 | encoder->enable(encoder); | |
3382 | ||
4f771f10 PZ |
3383 | /* |
3384 | * There seems to be a race in PCH platform hw (at least on some | |
3385 | * outputs) where an enabled pipe still completes any pageflip right | |
3386 | * away (as if the pipe is off) instead of waiting for vblank. As soon | |
3387 | * as the first vblank happend, everything works as expected. Hence just | |
3388 | * wait for one vblank before returning to avoid strange things | |
3389 | * happening. | |
3390 | */ | |
3391 | intel_wait_for_vblank(dev, intel_crtc->pipe); | |
3392 | } | |
3393 | ||
3f8dce3a DV |
3394 | static void ironlake_pfit_disable(struct intel_crtc *crtc) |
3395 | { | |
3396 | struct drm_device *dev = crtc->base.dev; | |
3397 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3398 | int pipe = crtc->pipe; | |
3399 | ||
3400 | /* To avoid upsetting the power well on haswell only disable the pfit if | |
3401 | * it's in use. The hw state code will make sure we get this right. */ | |
3402 | if (crtc->config.pch_pfit.size) { | |
3403 | I915_WRITE(PF_CTL(pipe), 0); | |
3404 | I915_WRITE(PF_WIN_POS(pipe), 0); | |
3405 | I915_WRITE(PF_WIN_SZ(pipe), 0); | |
3406 | } | |
3407 | } | |
3408 | ||
6be4a607 JB |
3409 | static void ironlake_crtc_disable(struct drm_crtc *crtc) |
3410 | { | |
3411 | struct drm_device *dev = crtc->dev; | |
3412 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3413 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ef9c3aee | 3414 | struct intel_encoder *encoder; |
6be4a607 JB |
3415 | int pipe = intel_crtc->pipe; |
3416 | int plane = intel_crtc->plane; | |
5eddb70b | 3417 | u32 reg, temp; |
b52eb4dc | 3418 | |
ef9c3aee | 3419 | |
f7abfe8b CW |
3420 | if (!intel_crtc->active) |
3421 | return; | |
3422 | ||
ea9d758d DV |
3423 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3424 | encoder->disable(encoder); | |
3425 | ||
e6c3a2a6 | 3426 | intel_crtc_wait_for_pending_flips(crtc); |
6be4a607 | 3427 | drm_vblank_off(dev, pipe); |
913d8d11 | 3428 | |
973d04f9 CW |
3429 | if (dev_priv->cfb_plane == plane) |
3430 | intel_disable_fbc(dev); | |
2c07245f | 3431 | |
0d5b8c61 | 3432 | intel_crtc_update_cursor(crtc, false); |
bb53d4ae | 3433 | intel_disable_planes(crtc); |
0d5b8c61 VS |
3434 | intel_disable_plane(dev_priv, plane, pipe); |
3435 | ||
8664281b | 3436 | intel_set_pch_fifo_underrun_reporting(dev, pipe, false); |
b24e7179 | 3437 | intel_disable_pipe(dev_priv, pipe); |
32f9d658 | 3438 | |
3f8dce3a | 3439 | ironlake_pfit_disable(intel_crtc); |
2c07245f | 3440 | |
bf49ec8c DV |
3441 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3442 | if (encoder->post_disable) | |
3443 | encoder->post_disable(encoder); | |
2c07245f | 3444 | |
0fc932b8 | 3445 | ironlake_fdi_disable(crtc); |
249c0e64 | 3446 | |
b8a4f404 | 3447 | ironlake_disable_pch_transcoder(dev_priv, pipe); |
8664281b | 3448 | intel_set_pch_fifo_underrun_reporting(dev, pipe, true); |
913d8d11 | 3449 | |
6be4a607 JB |
3450 | if (HAS_PCH_CPT(dev)) { |
3451 | /* disable TRANS_DP_CTL */ | |
5eddb70b CW |
3452 | reg = TRANS_DP_CTL(pipe); |
3453 | temp = I915_READ(reg); | |
3454 | temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK); | |
cb3543c6 | 3455 | temp |= TRANS_DP_PORT_SEL_NONE; |
5eddb70b | 3456 | I915_WRITE(reg, temp); |
6be4a607 JB |
3457 | |
3458 | /* disable DPLL_SEL */ | |
3459 | temp = I915_READ(PCH_DPLL_SEL); | |
9db4a9c7 JB |
3460 | switch (pipe) { |
3461 | case 0: | |
d64311ab | 3462 | temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL); |
9db4a9c7 JB |
3463 | break; |
3464 | case 1: | |
6be4a607 | 3465 | temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL); |
9db4a9c7 JB |
3466 | break; |
3467 | case 2: | |
4b645f14 | 3468 | /* C shares PLL A or B */ |
d64311ab | 3469 | temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL); |
9db4a9c7 JB |
3470 | break; |
3471 | default: | |
3472 | BUG(); /* wtf */ | |
3473 | } | |
6be4a607 | 3474 | I915_WRITE(PCH_DPLL_SEL, temp); |
6be4a607 | 3475 | } |
e3421a18 | 3476 | |
6be4a607 | 3477 | /* disable PCH DPLL */ |
ee7b9f93 | 3478 | intel_disable_pch_pll(intel_crtc); |
8db9d77b | 3479 | |
88cefb6c | 3480 | ironlake_fdi_pll_disable(intel_crtc); |
6b383a7f | 3481 | |
f7abfe8b | 3482 | intel_crtc->active = false; |
6b383a7f | 3483 | intel_update_watermarks(dev); |
d1ebd816 BW |
3484 | |
3485 | mutex_lock(&dev->struct_mutex); | |
6b383a7f | 3486 | intel_update_fbc(dev); |
d1ebd816 | 3487 | mutex_unlock(&dev->struct_mutex); |
6be4a607 | 3488 | } |
1b3c7a47 | 3489 | |
4f771f10 | 3490 | static void haswell_crtc_disable(struct drm_crtc *crtc) |
ee7b9f93 | 3491 | { |
4f771f10 PZ |
3492 | struct drm_device *dev = crtc->dev; |
3493 | struct drm_i915_private *dev_priv = dev->dev_private; | |
ee7b9f93 | 3494 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
4f771f10 PZ |
3495 | struct intel_encoder *encoder; |
3496 | int pipe = intel_crtc->pipe; | |
3497 | int plane = intel_crtc->plane; | |
3b117c8f | 3498 | enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder; |
ee7b9f93 | 3499 | |
4f771f10 PZ |
3500 | if (!intel_crtc->active) |
3501 | return; | |
3502 | ||
3503 | for_each_encoder_on_crtc(dev, crtc, encoder) | |
3504 | encoder->disable(encoder); | |
3505 | ||
3506 | intel_crtc_wait_for_pending_flips(crtc); | |
3507 | drm_vblank_off(dev, pipe); | |
4f771f10 | 3508 | |
891348b2 | 3509 | /* FBC must be disabled before disabling the plane on HSW. */ |
4f771f10 PZ |
3510 | if (dev_priv->cfb_plane == plane) |
3511 | intel_disable_fbc(dev); | |
3512 | ||
42db64ef PZ |
3513 | hsw_disable_ips(intel_crtc); |
3514 | ||
0d5b8c61 | 3515 | intel_crtc_update_cursor(crtc, false); |
bb53d4ae | 3516 | intel_disable_planes(crtc); |
891348b2 RV |
3517 | intel_disable_plane(dev_priv, plane, pipe); |
3518 | ||
8664281b PZ |
3519 | if (intel_crtc->config.has_pch_encoder) |
3520 | intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false); | |
4f771f10 PZ |
3521 | intel_disable_pipe(dev_priv, pipe); |
3522 | ||
ad80a810 | 3523 | intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder); |
4f771f10 | 3524 | |
3f8dce3a | 3525 | ironlake_pfit_disable(intel_crtc); |
4f771f10 | 3526 | |
1f544388 | 3527 | intel_ddi_disable_pipe_clock(intel_crtc); |
4f771f10 PZ |
3528 | |
3529 | for_each_encoder_on_crtc(dev, crtc, encoder) | |
3530 | if (encoder->post_disable) | |
3531 | encoder->post_disable(encoder); | |
3532 | ||
88adfff1 | 3533 | if (intel_crtc->config.has_pch_encoder) { |
ab4d966c | 3534 | lpt_disable_pch_transcoder(dev_priv); |
8664281b | 3535 | intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true); |
1ad960f2 | 3536 | intel_ddi_fdi_disable(crtc); |
83616634 | 3537 | } |
4f771f10 PZ |
3538 | |
3539 | intel_crtc->active = false; | |
3540 | intel_update_watermarks(dev); | |
3541 | ||
3542 | mutex_lock(&dev->struct_mutex); | |
3543 | intel_update_fbc(dev); | |
3544 | mutex_unlock(&dev->struct_mutex); | |
3545 | } | |
3546 | ||
ee7b9f93 JB |
3547 | static void ironlake_crtc_off(struct drm_crtc *crtc) |
3548 | { | |
3549 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3550 | intel_put_pch_pll(intel_crtc); | |
3551 | } | |
3552 | ||
6441ab5f PZ |
3553 | static void haswell_crtc_off(struct drm_crtc *crtc) |
3554 | { | |
3555 | intel_ddi_put_crtc_pll(crtc); | |
3556 | } | |
3557 | ||
02e792fb DV |
3558 | static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable) |
3559 | { | |
02e792fb | 3560 | if (!enable && intel_crtc->overlay) { |
23f09ce3 | 3561 | struct drm_device *dev = intel_crtc->base.dev; |
ce453d81 | 3562 | struct drm_i915_private *dev_priv = dev->dev_private; |
03f77ea5 | 3563 | |
23f09ce3 | 3564 | mutex_lock(&dev->struct_mutex); |
ce453d81 CW |
3565 | dev_priv->mm.interruptible = false; |
3566 | (void) intel_overlay_switch_off(intel_crtc->overlay); | |
3567 | dev_priv->mm.interruptible = true; | |
23f09ce3 | 3568 | mutex_unlock(&dev->struct_mutex); |
02e792fb | 3569 | } |
02e792fb | 3570 | |
5dcdbcb0 CW |
3571 | /* Let userspace switch the overlay on again. In most cases userspace |
3572 | * has to recompute where to put it anyway. | |
3573 | */ | |
02e792fb DV |
3574 | } |
3575 | ||
61bc95c1 EE |
3576 | /** |
3577 | * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware | |
3578 | * cursor plane briefly if not already running after enabling the display | |
3579 | * plane. | |
3580 | * This workaround avoids occasional blank screens when self refresh is | |
3581 | * enabled. | |
3582 | */ | |
3583 | static void | |
3584 | g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe) | |
3585 | { | |
3586 | u32 cntl = I915_READ(CURCNTR(pipe)); | |
3587 | ||
3588 | if ((cntl & CURSOR_MODE) == 0) { | |
3589 | u32 fw_bcl_self = I915_READ(FW_BLC_SELF); | |
3590 | ||
3591 | I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN); | |
3592 | I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX); | |
3593 | intel_wait_for_vblank(dev_priv->dev, pipe); | |
3594 | I915_WRITE(CURCNTR(pipe), cntl); | |
3595 | I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe))); | |
3596 | I915_WRITE(FW_BLC_SELF, fw_bcl_self); | |
3597 | } | |
3598 | } | |
3599 | ||
2dd24552 JB |
3600 | static void i9xx_pfit_enable(struct intel_crtc *crtc) |
3601 | { | |
3602 | struct drm_device *dev = crtc->base.dev; | |
3603 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3604 | struct intel_crtc_config *pipe_config = &crtc->config; | |
3605 | ||
328d8e82 | 3606 | if (!crtc->config.gmch_pfit.control) |
2dd24552 JB |
3607 | return; |
3608 | ||
2dd24552 | 3609 | /* |
c0b03411 DV |
3610 | * The panel fitter should only be adjusted whilst the pipe is disabled, |
3611 | * according to register description and PRM. | |
2dd24552 | 3612 | */ |
c0b03411 DV |
3613 | WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE); |
3614 | assert_pipe_disabled(dev_priv, crtc->pipe); | |
2dd24552 | 3615 | |
b074cec8 JB |
3616 | I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios); |
3617 | I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control); | |
5a80c45c DV |
3618 | |
3619 | /* Border color in case we don't scale up to the full screen. Black by | |
3620 | * default, change to something else for debugging. */ | |
3621 | I915_WRITE(BCLRPAT(crtc->pipe), 0); | |
2dd24552 JB |
3622 | } |
3623 | ||
89b667f8 JB |
3624 | static void valleyview_crtc_enable(struct drm_crtc *crtc) |
3625 | { | |
3626 | struct drm_device *dev = crtc->dev; | |
3627 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3628 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3629 | struct intel_encoder *encoder; | |
3630 | int pipe = intel_crtc->pipe; | |
3631 | int plane = intel_crtc->plane; | |
3632 | ||
3633 | WARN_ON(!crtc->enabled); | |
3634 | ||
3635 | if (intel_crtc->active) | |
3636 | return; | |
3637 | ||
3638 | intel_crtc->active = true; | |
3639 | intel_update_watermarks(dev); | |
3640 | ||
3641 | mutex_lock(&dev_priv->dpio_lock); | |
3642 | ||
3643 | for_each_encoder_on_crtc(dev, crtc, encoder) | |
3644 | if (encoder->pre_pll_enable) | |
3645 | encoder->pre_pll_enable(encoder); | |
3646 | ||
3647 | intel_enable_pll(dev_priv, pipe); | |
3648 | ||
3649 | for_each_encoder_on_crtc(dev, crtc, encoder) | |
3650 | if (encoder->pre_enable) | |
3651 | encoder->pre_enable(encoder); | |
3652 | ||
3653 | /* VLV wants encoder enabling _before_ the pipe is up. */ | |
3654 | for_each_encoder_on_crtc(dev, crtc, encoder) | |
3655 | encoder->enable(encoder); | |
3656 | ||
2dd24552 JB |
3657 | /* Enable panel fitting for eDP */ |
3658 | i9xx_pfit_enable(intel_crtc); | |
3659 | ||
63cbb074 VS |
3660 | intel_crtc_load_lut(crtc); |
3661 | ||
89b667f8 JB |
3662 | intel_enable_pipe(dev_priv, pipe, false); |
3663 | intel_enable_plane(dev_priv, plane, pipe); | |
bb53d4ae | 3664 | intel_enable_planes(crtc); |
5c38d48c | 3665 | intel_crtc_update_cursor(crtc, true); |
89b667f8 | 3666 | |
f440eb13 VS |
3667 | intel_update_fbc(dev); |
3668 | ||
89b667f8 JB |
3669 | mutex_unlock(&dev_priv->dpio_lock); |
3670 | } | |
3671 | ||
0b8765c6 | 3672 | static void i9xx_crtc_enable(struct drm_crtc *crtc) |
79e53945 JB |
3673 | { |
3674 | struct drm_device *dev = crtc->dev; | |
79e53945 JB |
3675 | struct drm_i915_private *dev_priv = dev->dev_private; |
3676 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ef9c3aee | 3677 | struct intel_encoder *encoder; |
79e53945 | 3678 | int pipe = intel_crtc->pipe; |
80824003 | 3679 | int plane = intel_crtc->plane; |
79e53945 | 3680 | |
08a48469 DV |
3681 | WARN_ON(!crtc->enabled); |
3682 | ||
f7abfe8b CW |
3683 | if (intel_crtc->active) |
3684 | return; | |
3685 | ||
3686 | intel_crtc->active = true; | |
6b383a7f CW |
3687 | intel_update_watermarks(dev); |
3688 | ||
63d7bbe9 | 3689 | intel_enable_pll(dev_priv, pipe); |
9d6d9f19 MK |
3690 | |
3691 | for_each_encoder_on_crtc(dev, crtc, encoder) | |
3692 | if (encoder->pre_enable) | |
3693 | encoder->pre_enable(encoder); | |
3694 | ||
2dd24552 JB |
3695 | /* Enable panel fitting for LVDS */ |
3696 | i9xx_pfit_enable(intel_crtc); | |
3697 | ||
63cbb074 VS |
3698 | intel_crtc_load_lut(crtc); |
3699 | ||
040484af | 3700 | intel_enable_pipe(dev_priv, pipe, false); |
b24e7179 | 3701 | intel_enable_plane(dev_priv, plane, pipe); |
bb53d4ae | 3702 | intel_enable_planes(crtc); |
22e407d7 | 3703 | /* The fixup needs to happen before cursor is enabled */ |
61bc95c1 EE |
3704 | if (IS_G4X(dev)) |
3705 | g4x_fixup_plane(dev_priv, pipe); | |
22e407d7 | 3706 | intel_crtc_update_cursor(crtc, true); |
79e53945 | 3707 | |
0b8765c6 JB |
3708 | /* Give the overlay scaler a chance to enable if it's on this pipe */ |
3709 | intel_crtc_dpms_overlay(intel_crtc, true); | |
ef9c3aee | 3710 | |
f440eb13 VS |
3711 | intel_update_fbc(dev); |
3712 | ||
fa5c73b1 DV |
3713 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3714 | encoder->enable(encoder); | |
0b8765c6 | 3715 | } |
79e53945 | 3716 | |
87476d63 DV |
3717 | static void i9xx_pfit_disable(struct intel_crtc *crtc) |
3718 | { | |
3719 | struct drm_device *dev = crtc->base.dev; | |
3720 | struct drm_i915_private *dev_priv = dev->dev_private; | |
87476d63 | 3721 | |
328d8e82 DV |
3722 | if (!crtc->config.gmch_pfit.control) |
3723 | return; | |
87476d63 | 3724 | |
328d8e82 | 3725 | assert_pipe_disabled(dev_priv, crtc->pipe); |
87476d63 | 3726 | |
328d8e82 DV |
3727 | DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n", |
3728 | I915_READ(PFIT_CONTROL)); | |
3729 | I915_WRITE(PFIT_CONTROL, 0); | |
87476d63 DV |
3730 | } |
3731 | ||
0b8765c6 JB |
3732 | static void i9xx_crtc_disable(struct drm_crtc *crtc) |
3733 | { | |
3734 | struct drm_device *dev = crtc->dev; | |
3735 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3736 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ef9c3aee | 3737 | struct intel_encoder *encoder; |
0b8765c6 JB |
3738 | int pipe = intel_crtc->pipe; |
3739 | int plane = intel_crtc->plane; | |
ef9c3aee | 3740 | |
f7abfe8b CW |
3741 | if (!intel_crtc->active) |
3742 | return; | |
3743 | ||
ea9d758d DV |
3744 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3745 | encoder->disable(encoder); | |
3746 | ||
0b8765c6 | 3747 | /* Give the overlay scaler a chance to disable if it's on this pipe */ |
e6c3a2a6 CW |
3748 | intel_crtc_wait_for_pending_flips(crtc); |
3749 | drm_vblank_off(dev, pipe); | |
0b8765c6 | 3750 | |
973d04f9 CW |
3751 | if (dev_priv->cfb_plane == plane) |
3752 | intel_disable_fbc(dev); | |
79e53945 | 3753 | |
0d5b8c61 VS |
3754 | intel_crtc_dpms_overlay(intel_crtc, false); |
3755 | intel_crtc_update_cursor(crtc, false); | |
bb53d4ae | 3756 | intel_disable_planes(crtc); |
b24e7179 | 3757 | intel_disable_plane(dev_priv, plane, pipe); |
0d5b8c61 | 3758 | |
b24e7179 | 3759 | intel_disable_pipe(dev_priv, pipe); |
24a1f16d | 3760 | |
87476d63 | 3761 | i9xx_pfit_disable(intel_crtc); |
24a1f16d | 3762 | |
89b667f8 JB |
3763 | for_each_encoder_on_crtc(dev, crtc, encoder) |
3764 | if (encoder->post_disable) | |
3765 | encoder->post_disable(encoder); | |
3766 | ||
63d7bbe9 | 3767 | intel_disable_pll(dev_priv, pipe); |
0b8765c6 | 3768 | |
f7abfe8b | 3769 | intel_crtc->active = false; |
6b383a7f CW |
3770 | intel_update_fbc(dev); |
3771 | intel_update_watermarks(dev); | |
0b8765c6 JB |
3772 | } |
3773 | ||
ee7b9f93 JB |
3774 | static void i9xx_crtc_off(struct drm_crtc *crtc) |
3775 | { | |
3776 | } | |
3777 | ||
976f8a20 DV |
3778 | static void intel_crtc_update_sarea(struct drm_crtc *crtc, |
3779 | bool enabled) | |
2c07245f ZW |
3780 | { |
3781 | struct drm_device *dev = crtc->dev; | |
3782 | struct drm_i915_master_private *master_priv; | |
3783 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3784 | int pipe = intel_crtc->pipe; | |
79e53945 JB |
3785 | |
3786 | if (!dev->primary->master) | |
3787 | return; | |
3788 | ||
3789 | master_priv = dev->primary->master->driver_priv; | |
3790 | if (!master_priv->sarea_priv) | |
3791 | return; | |
3792 | ||
79e53945 JB |
3793 | switch (pipe) { |
3794 | case 0: | |
3795 | master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0; | |
3796 | master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0; | |
3797 | break; | |
3798 | case 1: | |
3799 | master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0; | |
3800 | master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0; | |
3801 | break; | |
3802 | default: | |
9db4a9c7 | 3803 | DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe)); |
79e53945 JB |
3804 | break; |
3805 | } | |
79e53945 JB |
3806 | } |
3807 | ||
976f8a20 DV |
3808 | /** |
3809 | * Sets the power management mode of the pipe and plane. | |
3810 | */ | |
3811 | void intel_crtc_update_dpms(struct drm_crtc *crtc) | |
3812 | { | |
3813 | struct drm_device *dev = crtc->dev; | |
3814 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3815 | struct intel_encoder *intel_encoder; | |
3816 | bool enable = false; | |
3817 | ||
3818 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) | |
3819 | enable |= intel_encoder->connectors_active; | |
3820 | ||
3821 | if (enable) | |
3822 | dev_priv->display.crtc_enable(crtc); | |
3823 | else | |
3824 | dev_priv->display.crtc_disable(crtc); | |
3825 | ||
3826 | intel_crtc_update_sarea(crtc, enable); | |
3827 | } | |
3828 | ||
cdd59983 CW |
3829 | static void intel_crtc_disable(struct drm_crtc *crtc) |
3830 | { | |
cdd59983 | 3831 | struct drm_device *dev = crtc->dev; |
976f8a20 | 3832 | struct drm_connector *connector; |
ee7b9f93 | 3833 | struct drm_i915_private *dev_priv = dev->dev_private; |
7b9f35a6 | 3834 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
cdd59983 | 3835 | |
976f8a20 DV |
3836 | /* crtc should still be enabled when we disable it. */ |
3837 | WARN_ON(!crtc->enabled); | |
3838 | ||
3839 | dev_priv->display.crtc_disable(crtc); | |
c77bf565 | 3840 | intel_crtc->eld_vld = false; |
976f8a20 | 3841 | intel_crtc_update_sarea(crtc, false); |
ee7b9f93 JB |
3842 | dev_priv->display.off(crtc); |
3843 | ||
931872fc CW |
3844 | assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane); |
3845 | assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe); | |
cdd59983 CW |
3846 | |
3847 | if (crtc->fb) { | |
3848 | mutex_lock(&dev->struct_mutex); | |
1690e1eb | 3849 | intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj); |
cdd59983 | 3850 | mutex_unlock(&dev->struct_mutex); |
976f8a20 DV |
3851 | crtc->fb = NULL; |
3852 | } | |
3853 | ||
3854 | /* Update computed state. */ | |
3855 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { | |
3856 | if (!connector->encoder || !connector->encoder->crtc) | |
3857 | continue; | |
3858 | ||
3859 | if (connector->encoder->crtc != crtc) | |
3860 | continue; | |
3861 | ||
3862 | connector->dpms = DRM_MODE_DPMS_OFF; | |
3863 | to_intel_encoder(connector->encoder)->connectors_active = false; | |
cdd59983 CW |
3864 | } |
3865 | } | |
3866 | ||
a261b246 | 3867 | void intel_modeset_disable(struct drm_device *dev) |
79e53945 | 3868 | { |
a261b246 DV |
3869 | struct drm_crtc *crtc; |
3870 | ||
3871 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | |
3872 | if (crtc->enabled) | |
3873 | intel_crtc_disable(crtc); | |
3874 | } | |
79e53945 JB |
3875 | } |
3876 | ||
ea5b213a | 3877 | void intel_encoder_destroy(struct drm_encoder *encoder) |
7e7d76c3 | 3878 | { |
4ef69c7a | 3879 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
ea5b213a | 3880 | |
ea5b213a CW |
3881 | drm_encoder_cleanup(encoder); |
3882 | kfree(intel_encoder); | |
7e7d76c3 JB |
3883 | } |
3884 | ||
5ab432ef DV |
3885 | /* Simple dpms helper for encodres with just one connector, no cloning and only |
3886 | * one kind of off state. It clamps all !ON modes to fully OFF and changes the | |
3887 | * state of the entire output pipe. */ | |
3888 | void intel_encoder_dpms(struct intel_encoder *encoder, int mode) | |
7e7d76c3 | 3889 | { |
5ab432ef DV |
3890 | if (mode == DRM_MODE_DPMS_ON) { |
3891 | encoder->connectors_active = true; | |
3892 | ||
b2cabb0e | 3893 | intel_crtc_update_dpms(encoder->base.crtc); |
5ab432ef DV |
3894 | } else { |
3895 | encoder->connectors_active = false; | |
3896 | ||
b2cabb0e | 3897 | intel_crtc_update_dpms(encoder->base.crtc); |
5ab432ef | 3898 | } |
79e53945 JB |
3899 | } |
3900 | ||
0a91ca29 DV |
3901 | /* Cross check the actual hw state with our own modeset state tracking (and it's |
3902 | * internal consistency). */ | |
b980514c | 3903 | static void intel_connector_check_state(struct intel_connector *connector) |
79e53945 | 3904 | { |
0a91ca29 DV |
3905 | if (connector->get_hw_state(connector)) { |
3906 | struct intel_encoder *encoder = connector->encoder; | |
3907 | struct drm_crtc *crtc; | |
3908 | bool encoder_enabled; | |
3909 | enum pipe pipe; | |
3910 | ||
3911 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", | |
3912 | connector->base.base.id, | |
3913 | drm_get_connector_name(&connector->base)); | |
3914 | ||
3915 | WARN(connector->base.dpms == DRM_MODE_DPMS_OFF, | |
3916 | "wrong connector dpms state\n"); | |
3917 | WARN(connector->base.encoder != &encoder->base, | |
3918 | "active connector not linked to encoder\n"); | |
3919 | WARN(!encoder->connectors_active, | |
3920 | "encoder->connectors_active not set\n"); | |
3921 | ||
3922 | encoder_enabled = encoder->get_hw_state(encoder, &pipe); | |
3923 | WARN(!encoder_enabled, "encoder not enabled\n"); | |
3924 | if (WARN_ON(!encoder->base.crtc)) | |
3925 | return; | |
3926 | ||
3927 | crtc = encoder->base.crtc; | |
3928 | ||
3929 | WARN(!crtc->enabled, "crtc not enabled\n"); | |
3930 | WARN(!to_intel_crtc(crtc)->active, "crtc not active\n"); | |
3931 | WARN(pipe != to_intel_crtc(crtc)->pipe, | |
3932 | "encoder active on the wrong pipe\n"); | |
3933 | } | |
79e53945 JB |
3934 | } |
3935 | ||
5ab432ef DV |
3936 | /* Even simpler default implementation, if there's really no special case to |
3937 | * consider. */ | |
3938 | void intel_connector_dpms(struct drm_connector *connector, int mode) | |
79e53945 | 3939 | { |
5ab432ef | 3940 | struct intel_encoder *encoder = intel_attached_encoder(connector); |
d4270e57 | 3941 | |
5ab432ef DV |
3942 | /* All the simple cases only support two dpms states. */ |
3943 | if (mode != DRM_MODE_DPMS_ON) | |
3944 | mode = DRM_MODE_DPMS_OFF; | |
d4270e57 | 3945 | |
5ab432ef DV |
3946 | if (mode == connector->dpms) |
3947 | return; | |
3948 | ||
3949 | connector->dpms = mode; | |
3950 | ||
3951 | /* Only need to change hw state when actually enabled */ | |
3952 | if (encoder->base.crtc) | |
3953 | intel_encoder_dpms(encoder, mode); | |
3954 | else | |
8af6cf88 | 3955 | WARN_ON(encoder->connectors_active != false); |
0a91ca29 | 3956 | |
b980514c | 3957 | intel_modeset_check_state(connector->dev); |
79e53945 JB |
3958 | } |
3959 | ||
f0947c37 DV |
3960 | /* Simple connector->get_hw_state implementation for encoders that support only |
3961 | * one connector and no cloning and hence the encoder state determines the state | |
3962 | * of the connector. */ | |
3963 | bool intel_connector_get_hw_state(struct intel_connector *connector) | |
ea5b213a | 3964 | { |
24929352 | 3965 | enum pipe pipe = 0; |
f0947c37 | 3966 | struct intel_encoder *encoder = connector->encoder; |
ea5b213a | 3967 | |
f0947c37 | 3968 | return encoder->get_hw_state(encoder, &pipe); |
ea5b213a CW |
3969 | } |
3970 | ||
1857e1da DV |
3971 | static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe, |
3972 | struct intel_crtc_config *pipe_config) | |
3973 | { | |
3974 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3975 | struct intel_crtc *pipe_B_crtc = | |
3976 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]); | |
3977 | ||
3978 | DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n", | |
3979 | pipe_name(pipe), pipe_config->fdi_lanes); | |
3980 | if (pipe_config->fdi_lanes > 4) { | |
3981 | DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n", | |
3982 | pipe_name(pipe), pipe_config->fdi_lanes); | |
3983 | return false; | |
3984 | } | |
3985 | ||
3986 | if (IS_HASWELL(dev)) { | |
3987 | if (pipe_config->fdi_lanes > 2) { | |
3988 | DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n", | |
3989 | pipe_config->fdi_lanes); | |
3990 | return false; | |
3991 | } else { | |
3992 | return true; | |
3993 | } | |
3994 | } | |
3995 | ||
3996 | if (INTEL_INFO(dev)->num_pipes == 2) | |
3997 | return true; | |
3998 | ||
3999 | /* Ivybridge 3 pipe is really complicated */ | |
4000 | switch (pipe) { | |
4001 | case PIPE_A: | |
4002 | return true; | |
4003 | case PIPE_B: | |
4004 | if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled && | |
4005 | pipe_config->fdi_lanes > 2) { | |
4006 | DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n", | |
4007 | pipe_name(pipe), pipe_config->fdi_lanes); | |
4008 | return false; | |
4009 | } | |
4010 | return true; | |
4011 | case PIPE_C: | |
1e833f40 | 4012 | if (!pipe_has_enabled_pch(pipe_B_crtc) || |
1857e1da DV |
4013 | pipe_B_crtc->config.fdi_lanes <= 2) { |
4014 | if (pipe_config->fdi_lanes > 2) { | |
4015 | DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n", | |
4016 | pipe_name(pipe), pipe_config->fdi_lanes); | |
4017 | return false; | |
4018 | } | |
4019 | } else { | |
4020 | DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n"); | |
4021 | return false; | |
4022 | } | |
4023 | return true; | |
4024 | default: | |
4025 | BUG(); | |
4026 | } | |
4027 | } | |
4028 | ||
e29c22c0 DV |
4029 | #define RETRY 1 |
4030 | static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc, | |
4031 | struct intel_crtc_config *pipe_config) | |
877d48d5 | 4032 | { |
1857e1da | 4033 | struct drm_device *dev = intel_crtc->base.dev; |
877d48d5 | 4034 | struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode; |
ff9a6750 | 4035 | int lane, link_bw, fdi_dotclock; |
e29c22c0 | 4036 | bool setup_ok, needs_recompute = false; |
877d48d5 | 4037 | |
e29c22c0 | 4038 | retry: |
877d48d5 DV |
4039 | /* FDI is a binary signal running at ~2.7GHz, encoding |
4040 | * each output octet as 10 bits. The actual frequency | |
4041 | * is stored as a divider into a 100MHz clock, and the | |
4042 | * mode pixel clock is stored in units of 1KHz. | |
4043 | * Hence the bw of each lane in terms of the mode signal | |
4044 | * is: | |
4045 | */ | |
4046 | link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10; | |
4047 | ||
ff9a6750 | 4048 | fdi_dotclock = adjusted_mode->clock; |
ef1b460d | 4049 | fdi_dotclock /= pipe_config->pixel_multiplier; |
2bd89a07 DV |
4050 | |
4051 | lane = ironlake_get_lanes_required(fdi_dotclock, link_bw, | |
877d48d5 DV |
4052 | pipe_config->pipe_bpp); |
4053 | ||
4054 | pipe_config->fdi_lanes = lane; | |
4055 | ||
2bd89a07 | 4056 | intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock, |
877d48d5 | 4057 | link_bw, &pipe_config->fdi_m_n); |
1857e1da | 4058 | |
e29c22c0 DV |
4059 | setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev, |
4060 | intel_crtc->pipe, pipe_config); | |
4061 | if (!setup_ok && pipe_config->pipe_bpp > 6*3) { | |
4062 | pipe_config->pipe_bpp -= 2*3; | |
4063 | DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n", | |
4064 | pipe_config->pipe_bpp); | |
4065 | needs_recompute = true; | |
4066 | pipe_config->bw_constrained = true; | |
4067 | ||
4068 | goto retry; | |
4069 | } | |
4070 | ||
4071 | if (needs_recompute) | |
4072 | return RETRY; | |
4073 | ||
4074 | return setup_ok ? 0 : -EINVAL; | |
877d48d5 DV |
4075 | } |
4076 | ||
42db64ef PZ |
4077 | static void hsw_compute_ips_config(struct intel_crtc *crtc, |
4078 | struct intel_crtc_config *pipe_config) | |
4079 | { | |
3c4ca58c PZ |
4080 | pipe_config->ips_enabled = i915_enable_ips && |
4081 | hsw_crtc_supports_ips(crtc) && | |
42db64ef PZ |
4082 | pipe_config->pipe_bpp == 24; |
4083 | } | |
4084 | ||
e29c22c0 DV |
4085 | static int intel_crtc_compute_config(struct drm_crtc *crtc, |
4086 | struct intel_crtc_config *pipe_config) | |
79e53945 | 4087 | { |
2c07245f | 4088 | struct drm_device *dev = crtc->dev; |
b8cecdf5 | 4089 | struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode; |
42db64ef | 4090 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
89749350 | 4091 | |
bad720ff | 4092 | if (HAS_PCH_SPLIT(dev)) { |
2c07245f | 4093 | /* FDI link clock is fixed at 2.7G */ |
b8cecdf5 DV |
4094 | if (pipe_config->requested_mode.clock * 3 |
4095 | > IRONLAKE_FDI_FREQ * 4) | |
e29c22c0 | 4096 | return -EINVAL; |
2c07245f | 4097 | } |
89749350 | 4098 | |
f9bef081 DV |
4099 | /* All interlaced capable intel hw wants timings in frames. Note though |
4100 | * that intel_lvds_mode_fixup does some funny tricks with the crtc | |
4101 | * timings, so we need to be careful not to clobber these.*/ | |
7ae89233 | 4102 | if (!pipe_config->timings_set) |
f9bef081 | 4103 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
89749350 | 4104 | |
8693a824 DL |
4105 | /* Cantiga+ cannot handle modes with a hsync front porch of 0. |
4106 | * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw. | |
44f46b42 CW |
4107 | */ |
4108 | if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) && | |
4109 | adjusted_mode->hsync_start == adjusted_mode->hdisplay) | |
e29c22c0 | 4110 | return -EINVAL; |
44f46b42 | 4111 | |
bd080ee5 | 4112 | if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) { |
5d2d38dd | 4113 | pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */ |
bd080ee5 | 4114 | } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) { |
5d2d38dd DV |
4115 | /* only a 8bpc pipe, with 6bpc dither through the panel fitter |
4116 | * for lvds. */ | |
4117 | pipe_config->pipe_bpp = 8*3; | |
4118 | } | |
4119 | ||
42db64ef PZ |
4120 | if (IS_HASWELL(dev)) |
4121 | hsw_compute_ips_config(intel_crtc, pipe_config); | |
4122 | ||
877d48d5 | 4123 | if (pipe_config->has_pch_encoder) |
42db64ef | 4124 | return ironlake_fdi_compute_config(intel_crtc, pipe_config); |
877d48d5 | 4125 | |
e29c22c0 | 4126 | return 0; |
79e53945 JB |
4127 | } |
4128 | ||
25eb05fc JB |
4129 | static int valleyview_get_display_clock_speed(struct drm_device *dev) |
4130 | { | |
4131 | return 400000; /* FIXME */ | |
4132 | } | |
4133 | ||
e70236a8 JB |
4134 | static int i945_get_display_clock_speed(struct drm_device *dev) |
4135 | { | |
4136 | return 400000; | |
4137 | } | |
79e53945 | 4138 | |
e70236a8 | 4139 | static int i915_get_display_clock_speed(struct drm_device *dev) |
79e53945 | 4140 | { |
e70236a8 JB |
4141 | return 333000; |
4142 | } | |
79e53945 | 4143 | |
e70236a8 JB |
4144 | static int i9xx_misc_get_display_clock_speed(struct drm_device *dev) |
4145 | { | |
4146 | return 200000; | |
4147 | } | |
79e53945 | 4148 | |
e70236a8 JB |
4149 | static int i915gm_get_display_clock_speed(struct drm_device *dev) |
4150 | { | |
4151 | u16 gcfgc = 0; | |
79e53945 | 4152 | |
e70236a8 JB |
4153 | pci_read_config_word(dev->pdev, GCFGC, &gcfgc); |
4154 | ||
4155 | if (gcfgc & GC_LOW_FREQUENCY_ENABLE) | |
4156 | return 133000; | |
4157 | else { | |
4158 | switch (gcfgc & GC_DISPLAY_CLOCK_MASK) { | |
4159 | case GC_DISPLAY_CLOCK_333_MHZ: | |
4160 | return 333000; | |
4161 | default: | |
4162 | case GC_DISPLAY_CLOCK_190_200_MHZ: | |
4163 | return 190000; | |
79e53945 | 4164 | } |
e70236a8 JB |
4165 | } |
4166 | } | |
4167 | ||
4168 | static int i865_get_display_clock_speed(struct drm_device *dev) | |
4169 | { | |
4170 | return 266000; | |
4171 | } | |
4172 | ||
4173 | static int i855_get_display_clock_speed(struct drm_device *dev) | |
4174 | { | |
4175 | u16 hpllcc = 0; | |
4176 | /* Assume that the hardware is in the high speed state. This | |
4177 | * should be the default. | |
4178 | */ | |
4179 | switch (hpllcc & GC_CLOCK_CONTROL_MASK) { | |
4180 | case GC_CLOCK_133_200: | |
4181 | case GC_CLOCK_100_200: | |
4182 | return 200000; | |
4183 | case GC_CLOCK_166_250: | |
4184 | return 250000; | |
4185 | case GC_CLOCK_100_133: | |
79e53945 | 4186 | return 133000; |
e70236a8 | 4187 | } |
79e53945 | 4188 | |
e70236a8 JB |
4189 | /* Shouldn't happen */ |
4190 | return 0; | |
4191 | } | |
79e53945 | 4192 | |
e70236a8 JB |
4193 | static int i830_get_display_clock_speed(struct drm_device *dev) |
4194 | { | |
4195 | return 133000; | |
79e53945 JB |
4196 | } |
4197 | ||
2c07245f | 4198 | static void |
a65851af | 4199 | intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den) |
2c07245f | 4200 | { |
a65851af VS |
4201 | while (*num > DATA_LINK_M_N_MASK || |
4202 | *den > DATA_LINK_M_N_MASK) { | |
2c07245f ZW |
4203 | *num >>= 1; |
4204 | *den >>= 1; | |
4205 | } | |
4206 | } | |
4207 | ||
a65851af VS |
4208 | static void compute_m_n(unsigned int m, unsigned int n, |
4209 | uint32_t *ret_m, uint32_t *ret_n) | |
4210 | { | |
4211 | *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX); | |
4212 | *ret_m = div_u64((uint64_t) m * *ret_n, n); | |
4213 | intel_reduce_m_n_ratio(ret_m, ret_n); | |
4214 | } | |
4215 | ||
e69d0bc1 DV |
4216 | void |
4217 | intel_link_compute_m_n(int bits_per_pixel, int nlanes, | |
4218 | int pixel_clock, int link_clock, | |
4219 | struct intel_link_m_n *m_n) | |
2c07245f | 4220 | { |
e69d0bc1 | 4221 | m_n->tu = 64; |
a65851af VS |
4222 | |
4223 | compute_m_n(bits_per_pixel * pixel_clock, | |
4224 | link_clock * nlanes * 8, | |
4225 | &m_n->gmch_m, &m_n->gmch_n); | |
4226 | ||
4227 | compute_m_n(pixel_clock, link_clock, | |
4228 | &m_n->link_m, &m_n->link_n); | |
2c07245f ZW |
4229 | } |
4230 | ||
a7615030 CW |
4231 | static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv) |
4232 | { | |
72bbe58c KP |
4233 | if (i915_panel_use_ssc >= 0) |
4234 | return i915_panel_use_ssc != 0; | |
41aa3448 | 4235 | return dev_priv->vbt.lvds_use_ssc |
435793df | 4236 | && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE); |
a7615030 CW |
4237 | } |
4238 | ||
a0c4da24 JB |
4239 | static int vlv_get_refclk(struct drm_crtc *crtc) |
4240 | { | |
4241 | struct drm_device *dev = crtc->dev; | |
4242 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4243 | int refclk = 27000; /* for DP & HDMI */ | |
4244 | ||
4245 | return 100000; /* only one validated so far */ | |
4246 | ||
4247 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) { | |
4248 | refclk = 96000; | |
4249 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | |
4250 | if (intel_panel_use_ssc(dev_priv)) | |
4251 | refclk = 100000; | |
4252 | else | |
4253 | refclk = 96000; | |
4254 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) { | |
4255 | refclk = 100000; | |
4256 | } | |
4257 | ||
4258 | return refclk; | |
4259 | } | |
4260 | ||
c65d77d8 JB |
4261 | static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors) |
4262 | { | |
4263 | struct drm_device *dev = crtc->dev; | |
4264 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4265 | int refclk; | |
4266 | ||
a0c4da24 JB |
4267 | if (IS_VALLEYVIEW(dev)) { |
4268 | refclk = vlv_get_refclk(crtc); | |
4269 | } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) && | |
c65d77d8 | 4270 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) { |
41aa3448 | 4271 | refclk = dev_priv->vbt.lvds_ssc_freq * 1000; |
c65d77d8 JB |
4272 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", |
4273 | refclk / 1000); | |
4274 | } else if (!IS_GEN2(dev)) { | |
4275 | refclk = 96000; | |
4276 | } else { | |
4277 | refclk = 48000; | |
4278 | } | |
4279 | ||
4280 | return refclk; | |
4281 | } | |
4282 | ||
7429e9d4 DV |
4283 | static uint32_t pnv_dpll_compute_fp(struct dpll *dpll) |
4284 | { | |
4285 | return (1 << dpll->n) << 16 | dpll->m1 << 8 | dpll->m2; | |
4286 | } | |
4287 | ||
4288 | static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll) | |
4289 | { | |
4290 | return dpll->n << 16 | dpll->m1 << 8 | dpll->m2; | |
4291 | } | |
4292 | ||
f47709a9 | 4293 | static void i9xx_update_pll_dividers(struct intel_crtc *crtc, |
a7516a05 JB |
4294 | intel_clock_t *reduced_clock) |
4295 | { | |
f47709a9 | 4296 | struct drm_device *dev = crtc->base.dev; |
a7516a05 | 4297 | struct drm_i915_private *dev_priv = dev->dev_private; |
f47709a9 | 4298 | int pipe = crtc->pipe; |
a7516a05 JB |
4299 | u32 fp, fp2 = 0; |
4300 | ||
4301 | if (IS_PINEVIEW(dev)) { | |
7429e9d4 | 4302 | fp = pnv_dpll_compute_fp(&crtc->config.dpll); |
a7516a05 | 4303 | if (reduced_clock) |
7429e9d4 | 4304 | fp2 = pnv_dpll_compute_fp(reduced_clock); |
a7516a05 | 4305 | } else { |
7429e9d4 | 4306 | fp = i9xx_dpll_compute_fp(&crtc->config.dpll); |
a7516a05 | 4307 | if (reduced_clock) |
7429e9d4 | 4308 | fp2 = i9xx_dpll_compute_fp(reduced_clock); |
a7516a05 JB |
4309 | } |
4310 | ||
4311 | I915_WRITE(FP0(pipe), fp); | |
4312 | ||
f47709a9 DV |
4313 | crtc->lowfreq_avail = false; |
4314 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) && | |
a7516a05 JB |
4315 | reduced_clock && i915_powersave) { |
4316 | I915_WRITE(FP1(pipe), fp2); | |
f47709a9 | 4317 | crtc->lowfreq_avail = true; |
a7516a05 JB |
4318 | } else { |
4319 | I915_WRITE(FP1(pipe), fp); | |
4320 | } | |
4321 | } | |
4322 | ||
89b667f8 JB |
4323 | static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv) |
4324 | { | |
4325 | u32 reg_val; | |
4326 | ||
4327 | /* | |
4328 | * PLLB opamp always calibrates to max value of 0x3f, force enable it | |
4329 | * and set it to a reasonable value instead. | |
4330 | */ | |
ae99258f | 4331 | reg_val = vlv_dpio_read(dev_priv, DPIO_IREF(1)); |
89b667f8 JB |
4332 | reg_val &= 0xffffff00; |
4333 | reg_val |= 0x00000030; | |
ae99258f | 4334 | vlv_dpio_write(dev_priv, DPIO_IREF(1), reg_val); |
89b667f8 | 4335 | |
ae99258f | 4336 | reg_val = vlv_dpio_read(dev_priv, DPIO_CALIBRATION); |
89b667f8 JB |
4337 | reg_val &= 0x8cffffff; |
4338 | reg_val = 0x8c000000; | |
ae99258f | 4339 | vlv_dpio_write(dev_priv, DPIO_CALIBRATION, reg_val); |
89b667f8 | 4340 | |
ae99258f | 4341 | reg_val = vlv_dpio_read(dev_priv, DPIO_IREF(1)); |
89b667f8 | 4342 | reg_val &= 0xffffff00; |
ae99258f | 4343 | vlv_dpio_write(dev_priv, DPIO_IREF(1), reg_val); |
89b667f8 | 4344 | |
ae99258f | 4345 | reg_val = vlv_dpio_read(dev_priv, DPIO_CALIBRATION); |
89b667f8 JB |
4346 | reg_val &= 0x00ffffff; |
4347 | reg_val |= 0xb0000000; | |
ae99258f | 4348 | vlv_dpio_write(dev_priv, DPIO_CALIBRATION, reg_val); |
89b667f8 JB |
4349 | } |
4350 | ||
b551842d DV |
4351 | static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc, |
4352 | struct intel_link_m_n *m_n) | |
4353 | { | |
4354 | struct drm_device *dev = crtc->base.dev; | |
4355 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4356 | int pipe = crtc->pipe; | |
4357 | ||
e3b95f1e DV |
4358 | I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m); |
4359 | I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n); | |
4360 | I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m); | |
4361 | I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n); | |
b551842d DV |
4362 | } |
4363 | ||
4364 | static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc, | |
4365 | struct intel_link_m_n *m_n) | |
4366 | { | |
4367 | struct drm_device *dev = crtc->base.dev; | |
4368 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4369 | int pipe = crtc->pipe; | |
4370 | enum transcoder transcoder = crtc->config.cpu_transcoder; | |
4371 | ||
4372 | if (INTEL_INFO(dev)->gen >= 5) { | |
4373 | I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m); | |
4374 | I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n); | |
4375 | I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m); | |
4376 | I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n); | |
4377 | } else { | |
e3b95f1e DV |
4378 | I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m); |
4379 | I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n); | |
4380 | I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m); | |
4381 | I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n); | |
b551842d DV |
4382 | } |
4383 | } | |
4384 | ||
03afc4a2 DV |
4385 | static void intel_dp_set_m_n(struct intel_crtc *crtc) |
4386 | { | |
4387 | if (crtc->config.has_pch_encoder) | |
4388 | intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n); | |
4389 | else | |
4390 | intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n); | |
4391 | } | |
4392 | ||
f47709a9 | 4393 | static void vlv_update_pll(struct intel_crtc *crtc) |
a0c4da24 | 4394 | { |
f47709a9 | 4395 | struct drm_device *dev = crtc->base.dev; |
a0c4da24 | 4396 | struct drm_i915_private *dev_priv = dev->dev_private; |
89b667f8 | 4397 | struct intel_encoder *encoder; |
f47709a9 | 4398 | int pipe = crtc->pipe; |
89b667f8 | 4399 | u32 dpll, mdiv; |
a0c4da24 | 4400 | u32 bestn, bestm1, bestm2, bestp1, bestp2; |
89b667f8 | 4401 | bool is_hdmi; |
198a037f | 4402 | u32 coreclk, reg_val, dpll_md; |
a0c4da24 | 4403 | |
09153000 DV |
4404 | mutex_lock(&dev_priv->dpio_lock); |
4405 | ||
89b667f8 | 4406 | is_hdmi = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI); |
a0c4da24 | 4407 | |
f47709a9 DV |
4408 | bestn = crtc->config.dpll.n; |
4409 | bestm1 = crtc->config.dpll.m1; | |
4410 | bestm2 = crtc->config.dpll.m2; | |
4411 | bestp1 = crtc->config.dpll.p1; | |
4412 | bestp2 = crtc->config.dpll.p2; | |
a0c4da24 | 4413 | |
89b667f8 JB |
4414 | /* See eDP HDMI DPIO driver vbios notes doc */ |
4415 | ||
4416 | /* PLL B needs special handling */ | |
4417 | if (pipe) | |
4418 | vlv_pllb_recal_opamp(dev_priv); | |
4419 | ||
4420 | /* Set up Tx target for periodic Rcomp update */ | |
ae99258f | 4421 | vlv_dpio_write(dev_priv, DPIO_IREF_BCAST, 0x0100000f); |
89b667f8 JB |
4422 | |
4423 | /* Disable target IRef on PLL */ | |
ae99258f | 4424 | reg_val = vlv_dpio_read(dev_priv, DPIO_IREF_CTL(pipe)); |
89b667f8 | 4425 | reg_val &= 0x00ffffff; |
ae99258f | 4426 | vlv_dpio_write(dev_priv, DPIO_IREF_CTL(pipe), reg_val); |
89b667f8 JB |
4427 | |
4428 | /* Disable fast lock */ | |
ae99258f | 4429 | vlv_dpio_write(dev_priv, DPIO_FASTCLK_DISABLE, 0x610); |
89b667f8 JB |
4430 | |
4431 | /* Set idtafcrecal before PLL is enabled */ | |
a0c4da24 JB |
4432 | mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK)); |
4433 | mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT)); | |
4434 | mdiv |= ((bestn << DPIO_N_SHIFT)); | |
a0c4da24 | 4435 | mdiv |= (1 << DPIO_K_SHIFT); |
7df5080b JB |
4436 | |
4437 | /* | |
4438 | * Post divider depends on pixel clock rate, DAC vs digital (and LVDS, | |
4439 | * but we don't support that). | |
4440 | * Note: don't use the DAC post divider as it seems unstable. | |
4441 | */ | |
4442 | mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT); | |
ae99258f | 4443 | vlv_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv); |
a0c4da24 | 4444 | |
89b667f8 | 4445 | mdiv |= DPIO_ENABLE_CALIBRATION; |
ae99258f | 4446 | vlv_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv); |
a0c4da24 | 4447 | |
89b667f8 | 4448 | /* Set HBR and RBR LPF coefficients */ |
ff9a6750 | 4449 | if (crtc->config.port_clock == 162000 || |
89b667f8 | 4450 | intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI)) |
ae99258f | 4451 | vlv_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe), |
89b667f8 JB |
4452 | 0x005f0021); |
4453 | else | |
ae99258f | 4454 | vlv_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe), |
89b667f8 JB |
4455 | 0x00d0000f); |
4456 | ||
4457 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) || | |
4458 | intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) { | |
4459 | /* Use SSC source */ | |
4460 | if (!pipe) | |
ae99258f | 4461 | vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe), |
89b667f8 JB |
4462 | 0x0df40000); |
4463 | else | |
ae99258f | 4464 | vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe), |
89b667f8 JB |
4465 | 0x0df70000); |
4466 | } else { /* HDMI or VGA */ | |
4467 | /* Use bend source */ | |
4468 | if (!pipe) | |
ae99258f | 4469 | vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe), |
89b667f8 JB |
4470 | 0x0df70000); |
4471 | else | |
ae99258f | 4472 | vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe), |
89b667f8 JB |
4473 | 0x0df40000); |
4474 | } | |
a0c4da24 | 4475 | |
ae99258f | 4476 | coreclk = vlv_dpio_read(dev_priv, DPIO_CORE_CLK(pipe)); |
89b667f8 JB |
4477 | coreclk = (coreclk & 0x0000ff00) | 0x01c00000; |
4478 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) || | |
4479 | intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP)) | |
4480 | coreclk |= 0x01000000; | |
ae99258f | 4481 | vlv_dpio_write(dev_priv, DPIO_CORE_CLK(pipe), coreclk); |
a0c4da24 | 4482 | |
ae99258f | 4483 | vlv_dpio_write(dev_priv, DPIO_PLL_CML(pipe), 0x87871000); |
a0c4da24 | 4484 | |
89b667f8 JB |
4485 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) |
4486 | if (encoder->pre_pll_enable) | |
4487 | encoder->pre_pll_enable(encoder); | |
2a8f64ca | 4488 | |
89b667f8 JB |
4489 | /* Enable DPIO clock input */ |
4490 | dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV | | |
4491 | DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV; | |
4492 | if (pipe) | |
4493 | dpll |= DPLL_INTEGRATED_CRI_CLK_VLV; | |
2a8f64ca | 4494 | |
89b667f8 | 4495 | dpll |= DPLL_VCO_ENABLE; |
2a8f64ca | 4496 | I915_WRITE(DPLL(pipe), dpll); |
2a8f64ca VP |
4497 | POSTING_READ(DPLL(pipe)); |
4498 | udelay(150); | |
a0c4da24 | 4499 | |
89b667f8 JB |
4500 | if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1)) |
4501 | DRM_ERROR("DPLL %d failed to lock\n", pipe); | |
4502 | ||
ef1b460d DV |
4503 | dpll_md = (crtc->config.pixel_multiplier - 1) |
4504 | << DPLL_MD_UDI_MULTIPLIER_SHIFT; | |
198a037f DV |
4505 | I915_WRITE(DPLL_MD(pipe), dpll_md); |
4506 | POSTING_READ(DPLL_MD(pipe)); | |
f47709a9 | 4507 | |
89b667f8 JB |
4508 | if (crtc->config.has_dp_encoder) |
4509 | intel_dp_set_m_n(crtc); | |
09153000 DV |
4510 | |
4511 | mutex_unlock(&dev_priv->dpio_lock); | |
a0c4da24 JB |
4512 | } |
4513 | ||
f47709a9 DV |
4514 | static void i9xx_update_pll(struct intel_crtc *crtc, |
4515 | intel_clock_t *reduced_clock, | |
eb1cbe48 DV |
4516 | int num_connectors) |
4517 | { | |
f47709a9 | 4518 | struct drm_device *dev = crtc->base.dev; |
eb1cbe48 | 4519 | struct drm_i915_private *dev_priv = dev->dev_private; |
dafd226c | 4520 | struct intel_encoder *encoder; |
f47709a9 | 4521 | int pipe = crtc->pipe; |
eb1cbe48 DV |
4522 | u32 dpll; |
4523 | bool is_sdvo; | |
f47709a9 | 4524 | struct dpll *clock = &crtc->config.dpll; |
eb1cbe48 | 4525 | |
f47709a9 | 4526 | i9xx_update_pll_dividers(crtc, reduced_clock); |
2a8f64ca | 4527 | |
f47709a9 DV |
4528 | is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) || |
4529 | intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI); | |
eb1cbe48 DV |
4530 | |
4531 | dpll = DPLL_VGA_MODE_DIS; | |
4532 | ||
f47709a9 | 4533 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) |
eb1cbe48 DV |
4534 | dpll |= DPLLB_MODE_LVDS; |
4535 | else | |
4536 | dpll |= DPLLB_MODE_DAC_SERIAL; | |
6cc5f341 | 4537 | |
ef1b460d | 4538 | if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) { |
198a037f DV |
4539 | dpll |= (crtc->config.pixel_multiplier - 1) |
4540 | << SDVO_MULTIPLIER_SHIFT_HIRES; | |
eb1cbe48 | 4541 | } |
198a037f DV |
4542 | |
4543 | if (is_sdvo) | |
4544 | dpll |= DPLL_DVO_HIGH_SPEED; | |
4545 | ||
f47709a9 | 4546 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) |
eb1cbe48 DV |
4547 | dpll |= DPLL_DVO_HIGH_SPEED; |
4548 | ||
4549 | /* compute bitmask from p1 value */ | |
4550 | if (IS_PINEVIEW(dev)) | |
4551 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW; | |
4552 | else { | |
4553 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; | |
4554 | if (IS_G4X(dev) && reduced_clock) | |
4555 | dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; | |
4556 | } | |
4557 | switch (clock->p2) { | |
4558 | case 5: | |
4559 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; | |
4560 | break; | |
4561 | case 7: | |
4562 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; | |
4563 | break; | |
4564 | case 10: | |
4565 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; | |
4566 | break; | |
4567 | case 14: | |
4568 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; | |
4569 | break; | |
4570 | } | |
4571 | if (INTEL_INFO(dev)->gen >= 4) | |
4572 | dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT); | |
4573 | ||
09ede541 | 4574 | if (crtc->config.sdvo_tv_clock) |
eb1cbe48 | 4575 | dpll |= PLL_REF_INPUT_TVCLKINBC; |
f47709a9 | 4576 | else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) && |
eb1cbe48 DV |
4577 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
4578 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; | |
4579 | else | |
4580 | dpll |= PLL_REF_INPUT_DREFCLK; | |
4581 | ||
4582 | dpll |= DPLL_VCO_ENABLE; | |
4583 | I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE); | |
4584 | POSTING_READ(DPLL(pipe)); | |
4585 | udelay(150); | |
4586 | ||
f47709a9 | 4587 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) |
dafd226c DV |
4588 | if (encoder->pre_pll_enable) |
4589 | encoder->pre_pll_enable(encoder); | |
eb1cbe48 | 4590 | |
f47709a9 DV |
4591 | if (crtc->config.has_dp_encoder) |
4592 | intel_dp_set_m_n(crtc); | |
eb1cbe48 DV |
4593 | |
4594 | I915_WRITE(DPLL(pipe), dpll); | |
4595 | ||
4596 | /* Wait for the clocks to stabilize. */ | |
4597 | POSTING_READ(DPLL(pipe)); | |
4598 | udelay(150); | |
4599 | ||
4600 | if (INTEL_INFO(dev)->gen >= 4) { | |
ef1b460d DV |
4601 | u32 dpll_md = (crtc->config.pixel_multiplier - 1) |
4602 | << DPLL_MD_UDI_MULTIPLIER_SHIFT; | |
198a037f | 4603 | I915_WRITE(DPLL_MD(pipe), dpll_md); |
eb1cbe48 DV |
4604 | } else { |
4605 | /* The pixel multiplier can only be updated once the | |
4606 | * DPLL is enabled and the clocks are stable. | |
4607 | * | |
4608 | * So write it again. | |
4609 | */ | |
4610 | I915_WRITE(DPLL(pipe), dpll); | |
4611 | } | |
4612 | } | |
4613 | ||
f47709a9 | 4614 | static void i8xx_update_pll(struct intel_crtc *crtc, |
f47709a9 | 4615 | intel_clock_t *reduced_clock, |
eb1cbe48 DV |
4616 | int num_connectors) |
4617 | { | |
f47709a9 | 4618 | struct drm_device *dev = crtc->base.dev; |
eb1cbe48 | 4619 | struct drm_i915_private *dev_priv = dev->dev_private; |
dafd226c | 4620 | struct intel_encoder *encoder; |
f47709a9 | 4621 | int pipe = crtc->pipe; |
eb1cbe48 | 4622 | u32 dpll; |
f47709a9 | 4623 | struct dpll *clock = &crtc->config.dpll; |
eb1cbe48 | 4624 | |
f47709a9 | 4625 | i9xx_update_pll_dividers(crtc, reduced_clock); |
2a8f64ca | 4626 | |
eb1cbe48 DV |
4627 | dpll = DPLL_VGA_MODE_DIS; |
4628 | ||
f47709a9 | 4629 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) { |
eb1cbe48 DV |
4630 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
4631 | } else { | |
4632 | if (clock->p1 == 2) | |
4633 | dpll |= PLL_P1_DIVIDE_BY_TWO; | |
4634 | else | |
4635 | dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT; | |
4636 | if (clock->p2 == 4) | |
4637 | dpll |= PLL_P2_DIVIDE_BY_4; | |
4638 | } | |
4639 | ||
f47709a9 | 4640 | if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) && |
eb1cbe48 DV |
4641 | intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
4642 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; | |
4643 | else | |
4644 | dpll |= PLL_REF_INPUT_DREFCLK; | |
4645 | ||
4646 | dpll |= DPLL_VCO_ENABLE; | |
4647 | I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE); | |
4648 | POSTING_READ(DPLL(pipe)); | |
4649 | udelay(150); | |
4650 | ||
f47709a9 | 4651 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) |
dafd226c DV |
4652 | if (encoder->pre_pll_enable) |
4653 | encoder->pre_pll_enable(encoder); | |
eb1cbe48 | 4654 | |
5b5896e4 DV |
4655 | I915_WRITE(DPLL(pipe), dpll); |
4656 | ||
4657 | /* Wait for the clocks to stabilize. */ | |
4658 | POSTING_READ(DPLL(pipe)); | |
4659 | udelay(150); | |
4660 | ||
eb1cbe48 DV |
4661 | /* The pixel multiplier can only be updated once the |
4662 | * DPLL is enabled and the clocks are stable. | |
4663 | * | |
4664 | * So write it again. | |
4665 | */ | |
4666 | I915_WRITE(DPLL(pipe), dpll); | |
4667 | } | |
4668 | ||
8a654f3b | 4669 | static void intel_set_pipe_timings(struct intel_crtc *intel_crtc) |
b0e77b9c PZ |
4670 | { |
4671 | struct drm_device *dev = intel_crtc->base.dev; | |
4672 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4673 | enum pipe pipe = intel_crtc->pipe; | |
3b117c8f | 4674 | enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder; |
8a654f3b DV |
4675 | struct drm_display_mode *adjusted_mode = |
4676 | &intel_crtc->config.adjusted_mode; | |
4677 | struct drm_display_mode *mode = &intel_crtc->config.requested_mode; | |
4d8a62ea DV |
4678 | uint32_t vsyncshift, crtc_vtotal, crtc_vblank_end; |
4679 | ||
4680 | /* We need to be careful not to changed the adjusted mode, for otherwise | |
4681 | * the hw state checker will get angry at the mismatch. */ | |
4682 | crtc_vtotal = adjusted_mode->crtc_vtotal; | |
4683 | crtc_vblank_end = adjusted_mode->crtc_vblank_end; | |
b0e77b9c PZ |
4684 | |
4685 | if (!IS_GEN2(dev) && adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { | |
4686 | /* the chip adds 2 halflines automatically */ | |
4d8a62ea DV |
4687 | crtc_vtotal -= 1; |
4688 | crtc_vblank_end -= 1; | |
b0e77b9c PZ |
4689 | vsyncshift = adjusted_mode->crtc_hsync_start |
4690 | - adjusted_mode->crtc_htotal / 2; | |
4691 | } else { | |
4692 | vsyncshift = 0; | |
4693 | } | |
4694 | ||
4695 | if (INTEL_INFO(dev)->gen > 3) | |
fe2b8f9d | 4696 | I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift); |
b0e77b9c | 4697 | |
fe2b8f9d | 4698 | I915_WRITE(HTOTAL(cpu_transcoder), |
b0e77b9c PZ |
4699 | (adjusted_mode->crtc_hdisplay - 1) | |
4700 | ((adjusted_mode->crtc_htotal - 1) << 16)); | |
fe2b8f9d | 4701 | I915_WRITE(HBLANK(cpu_transcoder), |
b0e77b9c PZ |
4702 | (adjusted_mode->crtc_hblank_start - 1) | |
4703 | ((adjusted_mode->crtc_hblank_end - 1) << 16)); | |
fe2b8f9d | 4704 | I915_WRITE(HSYNC(cpu_transcoder), |
b0e77b9c PZ |
4705 | (adjusted_mode->crtc_hsync_start - 1) | |
4706 | ((adjusted_mode->crtc_hsync_end - 1) << 16)); | |
4707 | ||
fe2b8f9d | 4708 | I915_WRITE(VTOTAL(cpu_transcoder), |
b0e77b9c | 4709 | (adjusted_mode->crtc_vdisplay - 1) | |
4d8a62ea | 4710 | ((crtc_vtotal - 1) << 16)); |
fe2b8f9d | 4711 | I915_WRITE(VBLANK(cpu_transcoder), |
b0e77b9c | 4712 | (adjusted_mode->crtc_vblank_start - 1) | |
4d8a62ea | 4713 | ((crtc_vblank_end - 1) << 16)); |
fe2b8f9d | 4714 | I915_WRITE(VSYNC(cpu_transcoder), |
b0e77b9c PZ |
4715 | (adjusted_mode->crtc_vsync_start - 1) | |
4716 | ((adjusted_mode->crtc_vsync_end - 1) << 16)); | |
4717 | ||
b5e508d4 PZ |
4718 | /* Workaround: when the EDP input selection is B, the VTOTAL_B must be |
4719 | * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is | |
4720 | * documented on the DDI_FUNC_CTL register description, EDP Input Select | |
4721 | * bits. */ | |
4722 | if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP && | |
4723 | (pipe == PIPE_B || pipe == PIPE_C)) | |
4724 | I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder))); | |
4725 | ||
b0e77b9c PZ |
4726 | /* pipesrc controls the size that is scaled from, which should |
4727 | * always be the user's requested size. | |
4728 | */ | |
4729 | I915_WRITE(PIPESRC(pipe), | |
4730 | ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1)); | |
4731 | } | |
4732 | ||
1bd1bd80 DV |
4733 | static void intel_get_pipe_timings(struct intel_crtc *crtc, |
4734 | struct intel_crtc_config *pipe_config) | |
4735 | { | |
4736 | struct drm_device *dev = crtc->base.dev; | |
4737 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4738 | enum transcoder cpu_transcoder = pipe_config->cpu_transcoder; | |
4739 | uint32_t tmp; | |
4740 | ||
4741 | tmp = I915_READ(HTOTAL(cpu_transcoder)); | |
4742 | pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1; | |
4743 | pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1; | |
4744 | tmp = I915_READ(HBLANK(cpu_transcoder)); | |
4745 | pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1; | |
4746 | pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1; | |
4747 | tmp = I915_READ(HSYNC(cpu_transcoder)); | |
4748 | pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1; | |
4749 | pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1; | |
4750 | ||
4751 | tmp = I915_READ(VTOTAL(cpu_transcoder)); | |
4752 | pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1; | |
4753 | pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1; | |
4754 | tmp = I915_READ(VBLANK(cpu_transcoder)); | |
4755 | pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1; | |
4756 | pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1; | |
4757 | tmp = I915_READ(VSYNC(cpu_transcoder)); | |
4758 | pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1; | |
4759 | pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1; | |
4760 | ||
4761 | if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) { | |
4762 | pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE; | |
4763 | pipe_config->adjusted_mode.crtc_vtotal += 1; | |
4764 | pipe_config->adjusted_mode.crtc_vblank_end += 1; | |
4765 | } | |
4766 | ||
4767 | tmp = I915_READ(PIPESRC(crtc->pipe)); | |
4768 | pipe_config->requested_mode.vdisplay = (tmp & 0xffff) + 1; | |
4769 | pipe_config->requested_mode.hdisplay = ((tmp >> 16) & 0xffff) + 1; | |
4770 | } | |
4771 | ||
84b046f3 DV |
4772 | static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc) |
4773 | { | |
4774 | struct drm_device *dev = intel_crtc->base.dev; | |
4775 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4776 | uint32_t pipeconf; | |
4777 | ||
4778 | pipeconf = I915_READ(PIPECONF(intel_crtc->pipe)); | |
4779 | ||
4780 | if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) { | |
4781 | /* Enable pixel doubling when the dot clock is > 90% of the (display) | |
4782 | * core speed. | |
4783 | * | |
4784 | * XXX: No double-wide on 915GM pipe B. Is that the only reason for the | |
4785 | * pipe == 0 check? | |
4786 | */ | |
4787 | if (intel_crtc->config.requested_mode.clock > | |
4788 | dev_priv->display.get_display_clock_speed(dev) * 9 / 10) | |
4789 | pipeconf |= PIPECONF_DOUBLE_WIDE; | |
4790 | else | |
4791 | pipeconf &= ~PIPECONF_DOUBLE_WIDE; | |
4792 | } | |
4793 | ||
ff9ce46e DV |
4794 | /* only g4x and later have fancy bpc/dither controls */ |
4795 | if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) { | |
4796 | pipeconf &= ~(PIPECONF_BPC_MASK | | |
4797 | PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK); | |
4798 | ||
4799 | /* Bspec claims that we can't use dithering for 30bpp pipes. */ | |
4800 | if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30) | |
4801 | pipeconf |= PIPECONF_DITHER_EN | | |
84b046f3 | 4802 | PIPECONF_DITHER_TYPE_SP; |
84b046f3 | 4803 | |
ff9ce46e DV |
4804 | switch (intel_crtc->config.pipe_bpp) { |
4805 | case 18: | |
4806 | pipeconf |= PIPECONF_6BPC; | |
4807 | break; | |
4808 | case 24: | |
4809 | pipeconf |= PIPECONF_8BPC; | |
4810 | break; | |
4811 | case 30: | |
4812 | pipeconf |= PIPECONF_10BPC; | |
4813 | break; | |
4814 | default: | |
4815 | /* Case prevented by intel_choose_pipe_bpp_dither. */ | |
4816 | BUG(); | |
84b046f3 DV |
4817 | } |
4818 | } | |
4819 | ||
4820 | if (HAS_PIPE_CXSR(dev)) { | |
4821 | if (intel_crtc->lowfreq_avail) { | |
4822 | DRM_DEBUG_KMS("enabling CxSR downclocking\n"); | |
4823 | pipeconf |= PIPECONF_CXSR_DOWNCLOCK; | |
4824 | } else { | |
4825 | DRM_DEBUG_KMS("disabling CxSR downclocking\n"); | |
4826 | pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK; | |
4827 | } | |
4828 | } | |
4829 | ||
4830 | pipeconf &= ~PIPECONF_INTERLACE_MASK; | |
4831 | if (!IS_GEN2(dev) && | |
4832 | intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) | |
4833 | pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION; | |
4834 | else | |
4835 | pipeconf |= PIPECONF_PROGRESSIVE; | |
4836 | ||
9c8e09b7 VS |
4837 | if (IS_VALLEYVIEW(dev)) { |
4838 | if (intel_crtc->config.limited_color_range) | |
4839 | pipeconf |= PIPECONF_COLOR_RANGE_SELECT; | |
4840 | else | |
4841 | pipeconf &= ~PIPECONF_COLOR_RANGE_SELECT; | |
4842 | } | |
4843 | ||
84b046f3 DV |
4844 | I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf); |
4845 | POSTING_READ(PIPECONF(intel_crtc->pipe)); | |
4846 | } | |
4847 | ||
f564048e | 4848 | static int i9xx_crtc_mode_set(struct drm_crtc *crtc, |
f564048e | 4849 | int x, int y, |
94352cf9 | 4850 | struct drm_framebuffer *fb) |
79e53945 JB |
4851 | { |
4852 | struct drm_device *dev = crtc->dev; | |
4853 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4854 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
b8cecdf5 | 4855 | struct drm_display_mode *mode = &intel_crtc->config.requested_mode; |
79e53945 | 4856 | int pipe = intel_crtc->pipe; |
80824003 | 4857 | int plane = intel_crtc->plane; |
c751ce4f | 4858 | int refclk, num_connectors = 0; |
652c393a | 4859 | intel_clock_t clock, reduced_clock; |
84b046f3 | 4860 | u32 dspcntr; |
a16af721 DV |
4861 | bool ok, has_reduced_clock = false; |
4862 | bool is_lvds = false; | |
5eddb70b | 4863 | struct intel_encoder *encoder; |
d4906093 | 4864 | const intel_limit_t *limit; |
5c3b82e2 | 4865 | int ret; |
79e53945 | 4866 | |
6c2b7c12 | 4867 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
5eddb70b | 4868 | switch (encoder->type) { |
79e53945 JB |
4869 | case INTEL_OUTPUT_LVDS: |
4870 | is_lvds = true; | |
4871 | break; | |
79e53945 | 4872 | } |
43565a06 | 4873 | |
c751ce4f | 4874 | num_connectors++; |
79e53945 JB |
4875 | } |
4876 | ||
c65d77d8 | 4877 | refclk = i9xx_get_refclk(crtc, num_connectors); |
79e53945 | 4878 | |
d4906093 ML |
4879 | /* |
4880 | * Returns a set of divisors for the desired target clock with the given | |
4881 | * refclk, or FALSE. The returned values represent the clock equation: | |
4882 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. | |
4883 | */ | |
1b894b59 | 4884 | limit = intel_limit(crtc, refclk); |
ff9a6750 DV |
4885 | ok = dev_priv->display.find_dpll(limit, crtc, |
4886 | intel_crtc->config.port_clock, | |
ee9300bb DV |
4887 | refclk, NULL, &clock); |
4888 | if (!ok && !intel_crtc->config.clock_set) { | |
79e53945 | 4889 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
5c3b82e2 | 4890 | return -EINVAL; |
79e53945 JB |
4891 | } |
4892 | ||
cda4b7d3 | 4893 | /* Ensure that the cursor is valid for the new mode before changing... */ |
6b383a7f | 4894 | intel_crtc_update_cursor(crtc, true); |
cda4b7d3 | 4895 | |
ddc9003c | 4896 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
cec2f356 SP |
4897 | /* |
4898 | * Ensure we match the reduced clock's P to the target clock. | |
4899 | * If the clocks don't match, we can't switch the display clock | |
4900 | * by using the FP0/FP1. In such case we will disable the LVDS | |
4901 | * downclock feature. | |
4902 | */ | |
ee9300bb DV |
4903 | has_reduced_clock = |
4904 | dev_priv->display.find_dpll(limit, crtc, | |
5eddb70b | 4905 | dev_priv->lvds_downclock, |
ee9300bb | 4906 | refclk, &clock, |
5eddb70b | 4907 | &reduced_clock); |
7026d4ac | 4908 | } |
f47709a9 DV |
4909 | /* Compat-code for transition, will disappear. */ |
4910 | if (!intel_crtc->config.clock_set) { | |
4911 | intel_crtc->config.dpll.n = clock.n; | |
4912 | intel_crtc->config.dpll.m1 = clock.m1; | |
4913 | intel_crtc->config.dpll.m2 = clock.m2; | |
4914 | intel_crtc->config.dpll.p1 = clock.p1; | |
4915 | intel_crtc->config.dpll.p2 = clock.p2; | |
4916 | } | |
7026d4ac | 4917 | |
eb1cbe48 | 4918 | if (IS_GEN2(dev)) |
8a654f3b | 4919 | i8xx_update_pll(intel_crtc, |
2a8f64ca VP |
4920 | has_reduced_clock ? &reduced_clock : NULL, |
4921 | num_connectors); | |
a0c4da24 | 4922 | else if (IS_VALLEYVIEW(dev)) |
f47709a9 | 4923 | vlv_update_pll(intel_crtc); |
79e53945 | 4924 | else |
f47709a9 | 4925 | i9xx_update_pll(intel_crtc, |
eb1cbe48 | 4926 | has_reduced_clock ? &reduced_clock : NULL, |
89b667f8 | 4927 | num_connectors); |
79e53945 | 4928 | |
79e53945 JB |
4929 | /* Set up the display plane register */ |
4930 | dspcntr = DISPPLANE_GAMMA_ENABLE; | |
4931 | ||
da6ecc5d JB |
4932 | if (!IS_VALLEYVIEW(dev)) { |
4933 | if (pipe == 0) | |
4934 | dspcntr &= ~DISPPLANE_SEL_PIPE_MASK; | |
4935 | else | |
4936 | dspcntr |= DISPPLANE_SEL_PIPE_B; | |
4937 | } | |
79e53945 | 4938 | |
8a654f3b | 4939 | intel_set_pipe_timings(intel_crtc); |
5eddb70b CW |
4940 | |
4941 | /* pipesrc and dspsize control the size that is scaled from, | |
4942 | * which should always be the user's requested size. | |
79e53945 | 4943 | */ |
929c77fb EA |
4944 | I915_WRITE(DSPSIZE(plane), |
4945 | ((mode->vdisplay - 1) << 16) | | |
4946 | (mode->hdisplay - 1)); | |
4947 | I915_WRITE(DSPPOS(plane), 0); | |
2c07245f | 4948 | |
84b046f3 DV |
4949 | i9xx_set_pipeconf(intel_crtc); |
4950 | ||
f564048e EA |
4951 | I915_WRITE(DSPCNTR(plane), dspcntr); |
4952 | POSTING_READ(DSPCNTR(plane)); | |
4953 | ||
94352cf9 | 4954 | ret = intel_pipe_set_base(crtc, x, y, fb); |
f564048e EA |
4955 | |
4956 | intel_update_watermarks(dev); | |
4957 | ||
f564048e EA |
4958 | return ret; |
4959 | } | |
4960 | ||
2fa2fe9a DV |
4961 | static void i9xx_get_pfit_config(struct intel_crtc *crtc, |
4962 | struct intel_crtc_config *pipe_config) | |
4963 | { | |
4964 | struct drm_device *dev = crtc->base.dev; | |
4965 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4966 | uint32_t tmp; | |
4967 | ||
4968 | tmp = I915_READ(PFIT_CONTROL); | |
4969 | ||
4970 | if (INTEL_INFO(dev)->gen < 4) { | |
4971 | if (crtc->pipe != PIPE_B) | |
4972 | return; | |
4973 | ||
4974 | /* gen2/3 store dither state in pfit control, needs to match */ | |
4975 | pipe_config->gmch_pfit.control = tmp & PANEL_8TO6_DITHER_ENABLE; | |
4976 | } else { | |
4977 | if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT)) | |
4978 | return; | |
4979 | } | |
4980 | ||
4981 | if (!(tmp & PFIT_ENABLE)) | |
4982 | return; | |
4983 | ||
4984 | pipe_config->gmch_pfit.control = I915_READ(PFIT_CONTROL); | |
4985 | pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS); | |
4986 | if (INTEL_INFO(dev)->gen < 5) | |
4987 | pipe_config->gmch_pfit.lvds_border_bits = | |
4988 | I915_READ(LVDS) & LVDS_BORDER_ENABLE; | |
4989 | } | |
4990 | ||
0e8ffe1b DV |
4991 | static bool i9xx_get_pipe_config(struct intel_crtc *crtc, |
4992 | struct intel_crtc_config *pipe_config) | |
4993 | { | |
4994 | struct drm_device *dev = crtc->base.dev; | |
4995 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4996 | uint32_t tmp; | |
4997 | ||
eccb140b DV |
4998 | pipe_config->cpu_transcoder = crtc->pipe; |
4999 | ||
0e8ffe1b DV |
5000 | tmp = I915_READ(PIPECONF(crtc->pipe)); |
5001 | if (!(tmp & PIPECONF_ENABLE)) | |
5002 | return false; | |
5003 | ||
1bd1bd80 DV |
5004 | intel_get_pipe_timings(crtc, pipe_config); |
5005 | ||
2fa2fe9a DV |
5006 | i9xx_get_pfit_config(crtc, pipe_config); |
5007 | ||
6c49f241 DV |
5008 | if (INTEL_INFO(dev)->gen >= 4) { |
5009 | tmp = I915_READ(DPLL_MD(crtc->pipe)); | |
5010 | pipe_config->pixel_multiplier = | |
5011 | ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK) | |
5012 | >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1; | |
5013 | } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) { | |
5014 | tmp = I915_READ(DPLL(crtc->pipe)); | |
5015 | pipe_config->pixel_multiplier = | |
5016 | ((tmp & SDVO_MULTIPLIER_MASK) | |
5017 | >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1; | |
5018 | } else { | |
5019 | /* Note that on i915G/GM the pixel multiplier is in the sdvo | |
5020 | * port and will be fixed up in the encoder->get_config | |
5021 | * function. */ | |
5022 | pipe_config->pixel_multiplier = 1; | |
5023 | } | |
5024 | ||
0e8ffe1b DV |
5025 | return true; |
5026 | } | |
5027 | ||
dde86e2d | 5028 | static void ironlake_init_pch_refclk(struct drm_device *dev) |
13d83a67 JB |
5029 | { |
5030 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5031 | struct drm_mode_config *mode_config = &dev->mode_config; | |
13d83a67 | 5032 | struct intel_encoder *encoder; |
74cfd7ac | 5033 | u32 val, final; |
13d83a67 | 5034 | bool has_lvds = false; |
199e5d79 | 5035 | bool has_cpu_edp = false; |
199e5d79 | 5036 | bool has_panel = false; |
99eb6a01 KP |
5037 | bool has_ck505 = false; |
5038 | bool can_ssc = false; | |
13d83a67 JB |
5039 | |
5040 | /* We need to take the global config into account */ | |
199e5d79 KP |
5041 | list_for_each_entry(encoder, &mode_config->encoder_list, |
5042 | base.head) { | |
5043 | switch (encoder->type) { | |
5044 | case INTEL_OUTPUT_LVDS: | |
5045 | has_panel = true; | |
5046 | has_lvds = true; | |
5047 | break; | |
5048 | case INTEL_OUTPUT_EDP: | |
5049 | has_panel = true; | |
2de6905f | 5050 | if (enc_to_dig_port(&encoder->base)->port == PORT_A) |
199e5d79 KP |
5051 | has_cpu_edp = true; |
5052 | break; | |
13d83a67 JB |
5053 | } |
5054 | } | |
5055 | ||
99eb6a01 | 5056 | if (HAS_PCH_IBX(dev)) { |
41aa3448 | 5057 | has_ck505 = dev_priv->vbt.display_clock_mode; |
99eb6a01 KP |
5058 | can_ssc = has_ck505; |
5059 | } else { | |
5060 | has_ck505 = false; | |
5061 | can_ssc = true; | |
5062 | } | |
5063 | ||
2de6905f ID |
5064 | DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n", |
5065 | has_panel, has_lvds, has_ck505); | |
13d83a67 JB |
5066 | |
5067 | /* Ironlake: try to setup display ref clock before DPLL | |
5068 | * enabling. This is only under driver's control after | |
5069 | * PCH B stepping, previous chipset stepping should be | |
5070 | * ignoring this setting. | |
5071 | */ | |
74cfd7ac CW |
5072 | val = I915_READ(PCH_DREF_CONTROL); |
5073 | ||
5074 | /* As we must carefully and slowly disable/enable each source in turn, | |
5075 | * compute the final state we want first and check if we need to | |
5076 | * make any changes at all. | |
5077 | */ | |
5078 | final = val; | |
5079 | final &= ~DREF_NONSPREAD_SOURCE_MASK; | |
5080 | if (has_ck505) | |
5081 | final |= DREF_NONSPREAD_CK505_ENABLE; | |
5082 | else | |
5083 | final |= DREF_NONSPREAD_SOURCE_ENABLE; | |
5084 | ||
5085 | final &= ~DREF_SSC_SOURCE_MASK; | |
5086 | final &= ~DREF_CPU_SOURCE_OUTPUT_MASK; | |
5087 | final &= ~DREF_SSC1_ENABLE; | |
5088 | ||
5089 | if (has_panel) { | |
5090 | final |= DREF_SSC_SOURCE_ENABLE; | |
5091 | ||
5092 | if (intel_panel_use_ssc(dev_priv) && can_ssc) | |
5093 | final |= DREF_SSC1_ENABLE; | |
5094 | ||
5095 | if (has_cpu_edp) { | |
5096 | if (intel_panel_use_ssc(dev_priv) && can_ssc) | |
5097 | final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; | |
5098 | else | |
5099 | final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; | |
5100 | } else | |
5101 | final |= DREF_CPU_SOURCE_OUTPUT_DISABLE; | |
5102 | } else { | |
5103 | final |= DREF_SSC_SOURCE_DISABLE; | |
5104 | final |= DREF_CPU_SOURCE_OUTPUT_DISABLE; | |
5105 | } | |
5106 | ||
5107 | if (final == val) | |
5108 | return; | |
5109 | ||
13d83a67 | 5110 | /* Always enable nonspread source */ |
74cfd7ac | 5111 | val &= ~DREF_NONSPREAD_SOURCE_MASK; |
13d83a67 | 5112 | |
99eb6a01 | 5113 | if (has_ck505) |
74cfd7ac | 5114 | val |= DREF_NONSPREAD_CK505_ENABLE; |
99eb6a01 | 5115 | else |
74cfd7ac | 5116 | val |= DREF_NONSPREAD_SOURCE_ENABLE; |
13d83a67 | 5117 | |
199e5d79 | 5118 | if (has_panel) { |
74cfd7ac CW |
5119 | val &= ~DREF_SSC_SOURCE_MASK; |
5120 | val |= DREF_SSC_SOURCE_ENABLE; | |
13d83a67 | 5121 | |
199e5d79 | 5122 | /* SSC must be turned on before enabling the CPU output */ |
99eb6a01 | 5123 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
199e5d79 | 5124 | DRM_DEBUG_KMS("Using SSC on panel\n"); |
74cfd7ac | 5125 | val |= DREF_SSC1_ENABLE; |
e77166b5 | 5126 | } else |
74cfd7ac | 5127 | val &= ~DREF_SSC1_ENABLE; |
199e5d79 KP |
5128 | |
5129 | /* Get SSC going before enabling the outputs */ | |
74cfd7ac | 5130 | I915_WRITE(PCH_DREF_CONTROL, val); |
199e5d79 KP |
5131 | POSTING_READ(PCH_DREF_CONTROL); |
5132 | udelay(200); | |
5133 | ||
74cfd7ac | 5134 | val &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
13d83a67 JB |
5135 | |
5136 | /* Enable CPU source on CPU attached eDP */ | |
199e5d79 | 5137 | if (has_cpu_edp) { |
99eb6a01 | 5138 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
199e5d79 | 5139 | DRM_DEBUG_KMS("Using SSC on eDP\n"); |
74cfd7ac | 5140 | val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; |
199e5d79 | 5141 | } |
13d83a67 | 5142 | else |
74cfd7ac | 5143 | val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; |
199e5d79 | 5144 | } else |
74cfd7ac | 5145 | val |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
199e5d79 | 5146 | |
74cfd7ac | 5147 | I915_WRITE(PCH_DREF_CONTROL, val); |
199e5d79 KP |
5148 | POSTING_READ(PCH_DREF_CONTROL); |
5149 | udelay(200); | |
5150 | } else { | |
5151 | DRM_DEBUG_KMS("Disabling SSC entirely\n"); | |
5152 | ||
74cfd7ac | 5153 | val &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
199e5d79 KP |
5154 | |
5155 | /* Turn off CPU output */ | |
74cfd7ac | 5156 | val |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
199e5d79 | 5157 | |
74cfd7ac | 5158 | I915_WRITE(PCH_DREF_CONTROL, val); |
199e5d79 KP |
5159 | POSTING_READ(PCH_DREF_CONTROL); |
5160 | udelay(200); | |
5161 | ||
5162 | /* Turn off the SSC source */ | |
74cfd7ac CW |
5163 | val &= ~DREF_SSC_SOURCE_MASK; |
5164 | val |= DREF_SSC_SOURCE_DISABLE; | |
199e5d79 KP |
5165 | |
5166 | /* Turn off SSC1 */ | |
74cfd7ac | 5167 | val &= ~DREF_SSC1_ENABLE; |
199e5d79 | 5168 | |
74cfd7ac | 5169 | I915_WRITE(PCH_DREF_CONTROL, val); |
13d83a67 JB |
5170 | POSTING_READ(PCH_DREF_CONTROL); |
5171 | udelay(200); | |
5172 | } | |
74cfd7ac CW |
5173 | |
5174 | BUG_ON(val != final); | |
13d83a67 JB |
5175 | } |
5176 | ||
dde86e2d PZ |
5177 | /* Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O. */ |
5178 | static void lpt_init_pch_refclk(struct drm_device *dev) | |
5179 | { | |
5180 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5181 | struct drm_mode_config *mode_config = &dev->mode_config; | |
5182 | struct intel_encoder *encoder; | |
5183 | bool has_vga = false; | |
5184 | bool is_sdv = false; | |
5185 | u32 tmp; | |
5186 | ||
5187 | list_for_each_entry(encoder, &mode_config->encoder_list, base.head) { | |
5188 | switch (encoder->type) { | |
5189 | case INTEL_OUTPUT_ANALOG: | |
5190 | has_vga = true; | |
5191 | break; | |
5192 | } | |
5193 | } | |
5194 | ||
5195 | if (!has_vga) | |
5196 | return; | |
5197 | ||
c00db246 DV |
5198 | mutex_lock(&dev_priv->dpio_lock); |
5199 | ||
dde86e2d PZ |
5200 | /* XXX: Rip out SDV support once Haswell ships for real. */ |
5201 | if (IS_HASWELL(dev) && (dev->pci_device & 0xFF00) == 0x0C00) | |
5202 | is_sdv = true; | |
5203 | ||
5204 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); | |
5205 | tmp &= ~SBI_SSCCTL_DISABLE; | |
5206 | tmp |= SBI_SSCCTL_PATHALT; | |
5207 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); | |
5208 | ||
5209 | udelay(24); | |
5210 | ||
5211 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); | |
5212 | tmp &= ~SBI_SSCCTL_PATHALT; | |
5213 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); | |
5214 | ||
5215 | if (!is_sdv) { | |
5216 | tmp = I915_READ(SOUTH_CHICKEN2); | |
5217 | tmp |= FDI_MPHY_IOSFSB_RESET_CTL; | |
5218 | I915_WRITE(SOUTH_CHICKEN2, tmp); | |
5219 | ||
5220 | if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) & | |
5221 | FDI_MPHY_IOSFSB_RESET_STATUS, 100)) | |
5222 | DRM_ERROR("FDI mPHY reset assert timeout\n"); | |
5223 | ||
5224 | tmp = I915_READ(SOUTH_CHICKEN2); | |
5225 | tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL; | |
5226 | I915_WRITE(SOUTH_CHICKEN2, tmp); | |
5227 | ||
5228 | if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) & | |
5229 | FDI_MPHY_IOSFSB_RESET_STATUS) == 0, | |
5230 | 100)) | |
5231 | DRM_ERROR("FDI mPHY reset de-assert timeout\n"); | |
5232 | } | |
5233 | ||
5234 | tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY); | |
5235 | tmp &= ~(0xFF << 24); | |
5236 | tmp |= (0x12 << 24); | |
5237 | intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY); | |
5238 | ||
dde86e2d PZ |
5239 | if (is_sdv) { |
5240 | tmp = intel_sbi_read(dev_priv, 0x800C, SBI_MPHY); | |
5241 | tmp |= 0x7FFF; | |
5242 | intel_sbi_write(dev_priv, 0x800C, tmp, SBI_MPHY); | |
5243 | } | |
5244 | ||
5245 | tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY); | |
5246 | tmp |= (1 << 11); | |
5247 | intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY); | |
5248 | ||
5249 | tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY); | |
5250 | tmp |= (1 << 11); | |
5251 | intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY); | |
5252 | ||
5253 | if (is_sdv) { | |
5254 | tmp = intel_sbi_read(dev_priv, 0x2038, SBI_MPHY); | |
5255 | tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16); | |
5256 | intel_sbi_write(dev_priv, 0x2038, tmp, SBI_MPHY); | |
5257 | ||
5258 | tmp = intel_sbi_read(dev_priv, 0x2138, SBI_MPHY); | |
5259 | tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16); | |
5260 | intel_sbi_write(dev_priv, 0x2138, tmp, SBI_MPHY); | |
5261 | ||
5262 | tmp = intel_sbi_read(dev_priv, 0x203C, SBI_MPHY); | |
5263 | tmp |= (0x3F << 8); | |
5264 | intel_sbi_write(dev_priv, 0x203C, tmp, SBI_MPHY); | |
5265 | ||
5266 | tmp = intel_sbi_read(dev_priv, 0x213C, SBI_MPHY); | |
5267 | tmp |= (0x3F << 8); | |
5268 | intel_sbi_write(dev_priv, 0x213C, tmp, SBI_MPHY); | |
5269 | } | |
5270 | ||
5271 | tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY); | |
5272 | tmp |= (1 << 24) | (1 << 21) | (1 << 18); | |
5273 | intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY); | |
5274 | ||
5275 | tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY); | |
5276 | tmp |= (1 << 24) | (1 << 21) | (1 << 18); | |
5277 | intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY); | |
5278 | ||
5279 | if (!is_sdv) { | |
5280 | tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY); | |
5281 | tmp &= ~(7 << 13); | |
5282 | tmp |= (5 << 13); | |
5283 | intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY); | |
5284 | ||
5285 | tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY); | |
5286 | tmp &= ~(7 << 13); | |
5287 | tmp |= (5 << 13); | |
5288 | intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY); | |
5289 | } | |
5290 | ||
5291 | tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY); | |
5292 | tmp &= ~0xFF; | |
5293 | tmp |= 0x1C; | |
5294 | intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY); | |
5295 | ||
5296 | tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY); | |
5297 | tmp &= ~0xFF; | |
5298 | tmp |= 0x1C; | |
5299 | intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY); | |
5300 | ||
5301 | tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY); | |
5302 | tmp &= ~(0xFF << 16); | |
5303 | tmp |= (0x1C << 16); | |
5304 | intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY); | |
5305 | ||
5306 | tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY); | |
5307 | tmp &= ~(0xFF << 16); | |
5308 | tmp |= (0x1C << 16); | |
5309 | intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY); | |
5310 | ||
5311 | if (!is_sdv) { | |
5312 | tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY); | |
5313 | tmp |= (1 << 27); | |
5314 | intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY); | |
5315 | ||
5316 | tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY); | |
5317 | tmp |= (1 << 27); | |
5318 | intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY); | |
5319 | ||
5320 | tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY); | |
5321 | tmp &= ~(0xF << 28); | |
5322 | tmp |= (4 << 28); | |
5323 | intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY); | |
5324 | ||
5325 | tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY); | |
5326 | tmp &= ~(0xF << 28); | |
5327 | tmp |= (4 << 28); | |
5328 | intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY); | |
5329 | } | |
5330 | ||
5331 | /* ULT uses SBI_GEN0, but ULT doesn't have VGA, so we don't care. */ | |
5332 | tmp = intel_sbi_read(dev_priv, SBI_DBUFF0, SBI_ICLK); | |
5333 | tmp |= SBI_DBUFF0_ENABLE; | |
5334 | intel_sbi_write(dev_priv, SBI_DBUFF0, tmp, SBI_ICLK); | |
c00db246 DV |
5335 | |
5336 | mutex_unlock(&dev_priv->dpio_lock); | |
dde86e2d PZ |
5337 | } |
5338 | ||
5339 | /* | |
5340 | * Initialize reference clocks when the driver loads | |
5341 | */ | |
5342 | void intel_init_pch_refclk(struct drm_device *dev) | |
5343 | { | |
5344 | if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) | |
5345 | ironlake_init_pch_refclk(dev); | |
5346 | else if (HAS_PCH_LPT(dev)) | |
5347 | lpt_init_pch_refclk(dev); | |
5348 | } | |
5349 | ||
d9d444cb JB |
5350 | static int ironlake_get_refclk(struct drm_crtc *crtc) |
5351 | { | |
5352 | struct drm_device *dev = crtc->dev; | |
5353 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5354 | struct intel_encoder *encoder; | |
d9d444cb JB |
5355 | int num_connectors = 0; |
5356 | bool is_lvds = false; | |
5357 | ||
6c2b7c12 | 5358 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
d9d444cb JB |
5359 | switch (encoder->type) { |
5360 | case INTEL_OUTPUT_LVDS: | |
5361 | is_lvds = true; | |
5362 | break; | |
d9d444cb JB |
5363 | } |
5364 | num_connectors++; | |
5365 | } | |
5366 | ||
5367 | if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) { | |
5368 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", | |
41aa3448 RV |
5369 | dev_priv->vbt.lvds_ssc_freq); |
5370 | return dev_priv->vbt.lvds_ssc_freq * 1000; | |
d9d444cb JB |
5371 | } |
5372 | ||
5373 | return 120000; | |
5374 | } | |
5375 | ||
6ff93609 | 5376 | static void ironlake_set_pipeconf(struct drm_crtc *crtc) |
79e53945 | 5377 | { |
c8203565 | 5378 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
79e53945 JB |
5379 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
5380 | int pipe = intel_crtc->pipe; | |
c8203565 PZ |
5381 | uint32_t val; |
5382 | ||
5383 | val = I915_READ(PIPECONF(pipe)); | |
5384 | ||
dfd07d72 | 5385 | val &= ~PIPECONF_BPC_MASK; |
965e0c48 | 5386 | switch (intel_crtc->config.pipe_bpp) { |
c8203565 | 5387 | case 18: |
dfd07d72 | 5388 | val |= PIPECONF_6BPC; |
c8203565 PZ |
5389 | break; |
5390 | case 24: | |
dfd07d72 | 5391 | val |= PIPECONF_8BPC; |
c8203565 PZ |
5392 | break; |
5393 | case 30: | |
dfd07d72 | 5394 | val |= PIPECONF_10BPC; |
c8203565 PZ |
5395 | break; |
5396 | case 36: | |
dfd07d72 | 5397 | val |= PIPECONF_12BPC; |
c8203565 PZ |
5398 | break; |
5399 | default: | |
cc769b62 PZ |
5400 | /* Case prevented by intel_choose_pipe_bpp_dither. */ |
5401 | BUG(); | |
c8203565 PZ |
5402 | } |
5403 | ||
5404 | val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK); | |
d8b32247 | 5405 | if (intel_crtc->config.dither) |
c8203565 PZ |
5406 | val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP); |
5407 | ||
5408 | val &= ~PIPECONF_INTERLACE_MASK; | |
6ff93609 | 5409 | if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) |
c8203565 PZ |
5410 | val |= PIPECONF_INTERLACED_ILK; |
5411 | else | |
5412 | val |= PIPECONF_PROGRESSIVE; | |
5413 | ||
50f3b016 | 5414 | if (intel_crtc->config.limited_color_range) |
3685a8f3 VS |
5415 | val |= PIPECONF_COLOR_RANGE_SELECT; |
5416 | else | |
5417 | val &= ~PIPECONF_COLOR_RANGE_SELECT; | |
5418 | ||
c8203565 PZ |
5419 | I915_WRITE(PIPECONF(pipe), val); |
5420 | POSTING_READ(PIPECONF(pipe)); | |
5421 | } | |
5422 | ||
86d3efce VS |
5423 | /* |
5424 | * Set up the pipe CSC unit. | |
5425 | * | |
5426 | * Currently only full range RGB to limited range RGB conversion | |
5427 | * is supported, but eventually this should handle various | |
5428 | * RGB<->YCbCr scenarios as well. | |
5429 | */ | |
50f3b016 | 5430 | static void intel_set_pipe_csc(struct drm_crtc *crtc) |
86d3efce VS |
5431 | { |
5432 | struct drm_device *dev = crtc->dev; | |
5433 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5434 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
5435 | int pipe = intel_crtc->pipe; | |
5436 | uint16_t coeff = 0x7800; /* 1.0 */ | |
5437 | ||
5438 | /* | |
5439 | * TODO: Check what kind of values actually come out of the pipe | |
5440 | * with these coeff/postoff values and adjust to get the best | |
5441 | * accuracy. Perhaps we even need to take the bpc value into | |
5442 | * consideration. | |
5443 | */ | |
5444 | ||
50f3b016 | 5445 | if (intel_crtc->config.limited_color_range) |
86d3efce VS |
5446 | coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */ |
5447 | ||
5448 | /* | |
5449 | * GY/GU and RY/RU should be the other way around according | |
5450 | * to BSpec, but reality doesn't agree. Just set them up in | |
5451 | * a way that results in the correct picture. | |
5452 | */ | |
5453 | I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16); | |
5454 | I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0); | |
5455 | ||
5456 | I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff); | |
5457 | I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0); | |
5458 | ||
5459 | I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0); | |
5460 | I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16); | |
5461 | ||
5462 | I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0); | |
5463 | I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0); | |
5464 | I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0); | |
5465 | ||
5466 | if (INTEL_INFO(dev)->gen > 6) { | |
5467 | uint16_t postoff = 0; | |
5468 | ||
50f3b016 | 5469 | if (intel_crtc->config.limited_color_range) |
86d3efce VS |
5470 | postoff = (16 * (1 << 13) / 255) & 0x1fff; |
5471 | ||
5472 | I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff); | |
5473 | I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff); | |
5474 | I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff); | |
5475 | ||
5476 | I915_WRITE(PIPE_CSC_MODE(pipe), 0); | |
5477 | } else { | |
5478 | uint32_t mode = CSC_MODE_YUV_TO_RGB; | |
5479 | ||
50f3b016 | 5480 | if (intel_crtc->config.limited_color_range) |
86d3efce VS |
5481 | mode |= CSC_BLACK_SCREEN_OFFSET; |
5482 | ||
5483 | I915_WRITE(PIPE_CSC_MODE(pipe), mode); | |
5484 | } | |
5485 | } | |
5486 | ||
6ff93609 | 5487 | static void haswell_set_pipeconf(struct drm_crtc *crtc) |
ee2b0b38 PZ |
5488 | { |
5489 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; | |
5490 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3b117c8f | 5491 | enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder; |
ee2b0b38 PZ |
5492 | uint32_t val; |
5493 | ||
702e7a56 | 5494 | val = I915_READ(PIPECONF(cpu_transcoder)); |
ee2b0b38 PZ |
5495 | |
5496 | val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK); | |
d8b32247 | 5497 | if (intel_crtc->config.dither) |
ee2b0b38 PZ |
5498 | val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP); |
5499 | ||
5500 | val &= ~PIPECONF_INTERLACE_MASK_HSW; | |
6ff93609 | 5501 | if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) |
ee2b0b38 PZ |
5502 | val |= PIPECONF_INTERLACED_ILK; |
5503 | else | |
5504 | val |= PIPECONF_PROGRESSIVE; | |
5505 | ||
702e7a56 PZ |
5506 | I915_WRITE(PIPECONF(cpu_transcoder), val); |
5507 | POSTING_READ(PIPECONF(cpu_transcoder)); | |
ee2b0b38 PZ |
5508 | } |
5509 | ||
6591c6e4 | 5510 | static bool ironlake_compute_clocks(struct drm_crtc *crtc, |
6591c6e4 PZ |
5511 | intel_clock_t *clock, |
5512 | bool *has_reduced_clock, | |
5513 | intel_clock_t *reduced_clock) | |
5514 | { | |
5515 | struct drm_device *dev = crtc->dev; | |
5516 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5517 | struct intel_encoder *intel_encoder; | |
5518 | int refclk; | |
d4906093 | 5519 | const intel_limit_t *limit; |
a16af721 | 5520 | bool ret, is_lvds = false; |
79e53945 | 5521 | |
6591c6e4 PZ |
5522 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) { |
5523 | switch (intel_encoder->type) { | |
79e53945 JB |
5524 | case INTEL_OUTPUT_LVDS: |
5525 | is_lvds = true; | |
5526 | break; | |
79e53945 JB |
5527 | } |
5528 | } | |
5529 | ||
d9d444cb | 5530 | refclk = ironlake_get_refclk(crtc); |
79e53945 | 5531 | |
d4906093 ML |
5532 | /* |
5533 | * Returns a set of divisors for the desired target clock with the given | |
5534 | * refclk, or FALSE. The returned values represent the clock equation: | |
5535 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. | |
5536 | */ | |
1b894b59 | 5537 | limit = intel_limit(crtc, refclk); |
ff9a6750 DV |
5538 | ret = dev_priv->display.find_dpll(limit, crtc, |
5539 | to_intel_crtc(crtc)->config.port_clock, | |
ee9300bb | 5540 | refclk, NULL, clock); |
6591c6e4 PZ |
5541 | if (!ret) |
5542 | return false; | |
cda4b7d3 | 5543 | |
ddc9003c | 5544 | if (is_lvds && dev_priv->lvds_downclock_avail) { |
cec2f356 SP |
5545 | /* |
5546 | * Ensure we match the reduced clock's P to the target clock. | |
5547 | * If the clocks don't match, we can't switch the display clock | |
5548 | * by using the FP0/FP1. In such case we will disable the LVDS | |
5549 | * downclock feature. | |
5550 | */ | |
ee9300bb DV |
5551 | *has_reduced_clock = |
5552 | dev_priv->display.find_dpll(limit, crtc, | |
5553 | dev_priv->lvds_downclock, | |
5554 | refclk, clock, | |
5555 | reduced_clock); | |
652c393a | 5556 | } |
61e9653f | 5557 | |
6591c6e4 PZ |
5558 | return true; |
5559 | } | |
5560 | ||
01a415fd DV |
5561 | static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev) |
5562 | { | |
5563 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5564 | uint32_t temp; | |
5565 | ||
5566 | temp = I915_READ(SOUTH_CHICKEN1); | |
5567 | if (temp & FDI_BC_BIFURCATION_SELECT) | |
5568 | return; | |
5569 | ||
5570 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE); | |
5571 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE); | |
5572 | ||
5573 | temp |= FDI_BC_BIFURCATION_SELECT; | |
5574 | DRM_DEBUG_KMS("enabling fdi C rx\n"); | |
5575 | I915_WRITE(SOUTH_CHICKEN1, temp); | |
5576 | POSTING_READ(SOUTH_CHICKEN1); | |
5577 | } | |
5578 | ||
ebfd86fd DV |
5579 | static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc) |
5580 | { | |
5581 | struct drm_device *dev = intel_crtc->base.dev; | |
5582 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5583 | ||
5584 | switch (intel_crtc->pipe) { | |
5585 | case PIPE_A: | |
5586 | break; | |
5587 | case PIPE_B: | |
5588 | if (intel_crtc->config.fdi_lanes > 2) | |
5589 | WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT); | |
5590 | else | |
5591 | cpt_enable_fdi_bc_bifurcation(dev); | |
5592 | ||
5593 | break; | |
5594 | case PIPE_C: | |
01a415fd DV |
5595 | cpt_enable_fdi_bc_bifurcation(dev); |
5596 | ||
ebfd86fd | 5597 | break; |
01a415fd DV |
5598 | default: |
5599 | BUG(); | |
5600 | } | |
5601 | } | |
5602 | ||
d4b1931c PZ |
5603 | int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp) |
5604 | { | |
5605 | /* | |
5606 | * Account for spread spectrum to avoid | |
5607 | * oversubscribing the link. Max center spread | |
5608 | * is 2.5%; use 5% for safety's sake. | |
5609 | */ | |
5610 | u32 bps = target_clock * bpp * 21 / 20; | |
5611 | return bps / (link_bw * 8) + 1; | |
5612 | } | |
5613 | ||
7429e9d4 DV |
5614 | static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor) |
5615 | { | |
5616 | return i9xx_dpll_compute_m(dpll) < factor * dpll->n; | |
5617 | } | |
5618 | ||
de13a2e3 | 5619 | static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc, |
7429e9d4 | 5620 | u32 *fp, |
9a7c7890 | 5621 | intel_clock_t *reduced_clock, u32 *fp2) |
79e53945 | 5622 | { |
de13a2e3 | 5623 | struct drm_crtc *crtc = &intel_crtc->base; |
79e53945 JB |
5624 | struct drm_device *dev = crtc->dev; |
5625 | struct drm_i915_private *dev_priv = dev->dev_private; | |
de13a2e3 PZ |
5626 | struct intel_encoder *intel_encoder; |
5627 | uint32_t dpll; | |
6cc5f341 | 5628 | int factor, num_connectors = 0; |
09ede541 | 5629 | bool is_lvds = false, is_sdvo = false; |
79e53945 | 5630 | |
de13a2e3 PZ |
5631 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) { |
5632 | switch (intel_encoder->type) { | |
79e53945 JB |
5633 | case INTEL_OUTPUT_LVDS: |
5634 | is_lvds = true; | |
5635 | break; | |
5636 | case INTEL_OUTPUT_SDVO: | |
7d57382e | 5637 | case INTEL_OUTPUT_HDMI: |
79e53945 JB |
5638 | is_sdvo = true; |
5639 | break; | |
79e53945 | 5640 | } |
43565a06 | 5641 | |
c751ce4f | 5642 | num_connectors++; |
79e53945 | 5643 | } |
79e53945 | 5644 | |
c1858123 | 5645 | /* Enable autotuning of the PLL clock (if permissible) */ |
8febb297 EA |
5646 | factor = 21; |
5647 | if (is_lvds) { | |
5648 | if ((intel_panel_use_ssc(dev_priv) && | |
41aa3448 | 5649 | dev_priv->vbt.lvds_ssc_freq == 100) || |
f0b44056 | 5650 | (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev))) |
8febb297 | 5651 | factor = 25; |
09ede541 | 5652 | } else if (intel_crtc->config.sdvo_tv_clock) |
8febb297 | 5653 | factor = 20; |
c1858123 | 5654 | |
7429e9d4 | 5655 | if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor)) |
7d0ac5b7 | 5656 | *fp |= FP_CB_TUNE; |
2c07245f | 5657 | |
9a7c7890 DV |
5658 | if (fp2 && (reduced_clock->m < factor * reduced_clock->n)) |
5659 | *fp2 |= FP_CB_TUNE; | |
5660 | ||
5eddb70b | 5661 | dpll = 0; |
2c07245f | 5662 | |
a07d6787 EA |
5663 | if (is_lvds) |
5664 | dpll |= DPLLB_MODE_LVDS; | |
5665 | else | |
5666 | dpll |= DPLLB_MODE_DAC_SERIAL; | |
198a037f | 5667 | |
ef1b460d DV |
5668 | dpll |= (intel_crtc->config.pixel_multiplier - 1) |
5669 | << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT; | |
198a037f DV |
5670 | |
5671 | if (is_sdvo) | |
5672 | dpll |= DPLL_DVO_HIGH_SPEED; | |
9566e9af | 5673 | if (intel_crtc->config.has_dp_encoder) |
a07d6787 | 5674 | dpll |= DPLL_DVO_HIGH_SPEED; |
79e53945 | 5675 | |
a07d6787 | 5676 | /* compute bitmask from p1 value */ |
7429e9d4 | 5677 | dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
a07d6787 | 5678 | /* also FPA1 */ |
7429e9d4 | 5679 | dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
a07d6787 | 5680 | |
7429e9d4 | 5681 | switch (intel_crtc->config.dpll.p2) { |
a07d6787 EA |
5682 | case 5: |
5683 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; | |
5684 | break; | |
5685 | case 7: | |
5686 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; | |
5687 | break; | |
5688 | case 10: | |
5689 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; | |
5690 | break; | |
5691 | case 14: | |
5692 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; | |
5693 | break; | |
79e53945 JB |
5694 | } |
5695 | ||
b4c09f3b | 5696 | if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) |
43565a06 | 5697 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
79e53945 JB |
5698 | else |
5699 | dpll |= PLL_REF_INPUT_DREFCLK; | |
5700 | ||
de13a2e3 PZ |
5701 | return dpll; |
5702 | } | |
5703 | ||
5704 | static int ironlake_crtc_mode_set(struct drm_crtc *crtc, | |
de13a2e3 PZ |
5705 | int x, int y, |
5706 | struct drm_framebuffer *fb) | |
5707 | { | |
5708 | struct drm_device *dev = crtc->dev; | |
5709 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5710 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
5711 | int pipe = intel_crtc->pipe; | |
5712 | int plane = intel_crtc->plane; | |
5713 | int num_connectors = 0; | |
5714 | intel_clock_t clock, reduced_clock; | |
cbbab5bd | 5715 | u32 dpll = 0, fp = 0, fp2 = 0; |
e2f12b07 | 5716 | bool ok, has_reduced_clock = false; |
8b47047b | 5717 | bool is_lvds = false; |
de13a2e3 | 5718 | struct intel_encoder *encoder; |
de13a2e3 | 5719 | int ret; |
de13a2e3 PZ |
5720 | |
5721 | for_each_encoder_on_crtc(dev, crtc, encoder) { | |
5722 | switch (encoder->type) { | |
5723 | case INTEL_OUTPUT_LVDS: | |
5724 | is_lvds = true; | |
5725 | break; | |
de13a2e3 PZ |
5726 | } |
5727 | ||
5728 | num_connectors++; | |
a07d6787 | 5729 | } |
79e53945 | 5730 | |
5dc5298b PZ |
5731 | WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)), |
5732 | "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev)); | |
a07d6787 | 5733 | |
ff9a6750 | 5734 | ok = ironlake_compute_clocks(crtc, &clock, |
de13a2e3 | 5735 | &has_reduced_clock, &reduced_clock); |
ee9300bb | 5736 | if (!ok && !intel_crtc->config.clock_set) { |
de13a2e3 PZ |
5737 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
5738 | return -EINVAL; | |
79e53945 | 5739 | } |
f47709a9 DV |
5740 | /* Compat-code for transition, will disappear. */ |
5741 | if (!intel_crtc->config.clock_set) { | |
5742 | intel_crtc->config.dpll.n = clock.n; | |
5743 | intel_crtc->config.dpll.m1 = clock.m1; | |
5744 | intel_crtc->config.dpll.m2 = clock.m2; | |
5745 | intel_crtc->config.dpll.p1 = clock.p1; | |
5746 | intel_crtc->config.dpll.p2 = clock.p2; | |
5747 | } | |
79e53945 | 5748 | |
de13a2e3 PZ |
5749 | /* Ensure that the cursor is valid for the new mode before changing... */ |
5750 | intel_crtc_update_cursor(crtc, true); | |
5751 | ||
5dc5298b | 5752 | /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */ |
8b47047b | 5753 | if (intel_crtc->config.has_pch_encoder) { |
ee7b9f93 | 5754 | struct intel_pch_pll *pll; |
4b645f14 | 5755 | |
7429e9d4 | 5756 | fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll); |
cbbab5bd | 5757 | if (has_reduced_clock) |
7429e9d4 | 5758 | fp2 = i9xx_dpll_compute_fp(&reduced_clock); |
cbbab5bd | 5759 | |
7429e9d4 | 5760 | dpll = ironlake_compute_dpll(intel_crtc, |
cbbab5bd DV |
5761 | &fp, &reduced_clock, |
5762 | has_reduced_clock ? &fp2 : NULL); | |
5763 | ||
ee7b9f93 JB |
5764 | pll = intel_get_pch_pll(intel_crtc, dpll, fp); |
5765 | if (pll == NULL) { | |
84f44ce7 VS |
5766 | DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n", |
5767 | pipe_name(pipe)); | |
4b645f14 JB |
5768 | return -EINVAL; |
5769 | } | |
ee7b9f93 JB |
5770 | } else |
5771 | intel_put_pch_pll(intel_crtc); | |
79e53945 | 5772 | |
03afc4a2 DV |
5773 | if (intel_crtc->config.has_dp_encoder) |
5774 | intel_dp_set_m_n(intel_crtc); | |
79e53945 | 5775 | |
dafd226c DV |
5776 | for_each_encoder_on_crtc(dev, crtc, encoder) |
5777 | if (encoder->pre_pll_enable) | |
5778 | encoder->pre_pll_enable(encoder); | |
79e53945 | 5779 | |
ee7b9f93 JB |
5780 | if (intel_crtc->pch_pll) { |
5781 | I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll); | |
5eddb70b | 5782 | |
32f9d658 | 5783 | /* Wait for the clocks to stabilize. */ |
ee7b9f93 | 5784 | POSTING_READ(intel_crtc->pch_pll->pll_reg); |
32f9d658 ZW |
5785 | udelay(150); |
5786 | ||
8febb297 EA |
5787 | /* The pixel multiplier can only be updated once the |
5788 | * DPLL is enabled and the clocks are stable. | |
5789 | * | |
5790 | * So write it again. | |
5791 | */ | |
ee7b9f93 | 5792 | I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll); |
79e53945 | 5793 | } |
79e53945 | 5794 | |
5eddb70b | 5795 | intel_crtc->lowfreq_avail = false; |
ee7b9f93 | 5796 | if (intel_crtc->pch_pll) { |
4b645f14 | 5797 | if (is_lvds && has_reduced_clock && i915_powersave) { |
ee7b9f93 | 5798 | I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2); |
4b645f14 | 5799 | intel_crtc->lowfreq_avail = true; |
4b645f14 | 5800 | } else { |
ee7b9f93 | 5801 | I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp); |
652c393a JB |
5802 | } |
5803 | } | |
5804 | ||
8a654f3b | 5805 | intel_set_pipe_timings(intel_crtc); |
5eddb70b | 5806 | |
ca3a0ff8 | 5807 | if (intel_crtc->config.has_pch_encoder) { |
ca3a0ff8 DV |
5808 | intel_cpu_transcoder_set_m_n(intel_crtc, |
5809 | &intel_crtc->config.fdi_m_n); | |
5810 | } | |
2c07245f | 5811 | |
ebfd86fd DV |
5812 | if (IS_IVYBRIDGE(dev)) |
5813 | ivybridge_update_fdi_bc_bifurcation(intel_crtc); | |
2c07245f | 5814 | |
6ff93609 | 5815 | ironlake_set_pipeconf(crtc); |
79e53945 | 5816 | |
a1f9e77e PZ |
5817 | /* Set up the display plane register */ |
5818 | I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE); | |
b24e7179 | 5819 | POSTING_READ(DSPCNTR(plane)); |
79e53945 | 5820 | |
94352cf9 | 5821 | ret = intel_pipe_set_base(crtc, x, y, fb); |
7662c8bd SL |
5822 | |
5823 | intel_update_watermarks(dev); | |
5824 | ||
1857e1da | 5825 | return ret; |
79e53945 JB |
5826 | } |
5827 | ||
72419203 DV |
5828 | static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc, |
5829 | struct intel_crtc_config *pipe_config) | |
5830 | { | |
5831 | struct drm_device *dev = crtc->base.dev; | |
5832 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5833 | enum transcoder transcoder = pipe_config->cpu_transcoder; | |
5834 | ||
5835 | pipe_config->fdi_m_n.link_m = I915_READ(PIPE_LINK_M1(transcoder)); | |
5836 | pipe_config->fdi_m_n.link_n = I915_READ(PIPE_LINK_N1(transcoder)); | |
5837 | pipe_config->fdi_m_n.gmch_m = I915_READ(PIPE_DATA_M1(transcoder)) | |
5838 | & ~TU_SIZE_MASK; | |
5839 | pipe_config->fdi_m_n.gmch_n = I915_READ(PIPE_DATA_N1(transcoder)); | |
5840 | pipe_config->fdi_m_n.tu = ((I915_READ(PIPE_DATA_M1(transcoder)) | |
5841 | & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1; | |
5842 | } | |
5843 | ||
2fa2fe9a DV |
5844 | static void ironlake_get_pfit_config(struct intel_crtc *crtc, |
5845 | struct intel_crtc_config *pipe_config) | |
5846 | { | |
5847 | struct drm_device *dev = crtc->base.dev; | |
5848 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5849 | uint32_t tmp; | |
5850 | ||
5851 | tmp = I915_READ(PF_CTL(crtc->pipe)); | |
5852 | ||
5853 | if (tmp & PF_ENABLE) { | |
5854 | pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe)); | |
5855 | pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe)); | |
cb8b2a30 DV |
5856 | |
5857 | /* We currently do not free assignements of panel fitters on | |
5858 | * ivb/hsw (since we don't use the higher upscaling modes which | |
5859 | * differentiates them) so just WARN about this case for now. */ | |
5860 | if (IS_GEN7(dev)) { | |
5861 | WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) != | |
5862 | PF_PIPE_SEL_IVB(crtc->pipe)); | |
5863 | } | |
2fa2fe9a DV |
5864 | } |
5865 | } | |
5866 | ||
0e8ffe1b DV |
5867 | static bool ironlake_get_pipe_config(struct intel_crtc *crtc, |
5868 | struct intel_crtc_config *pipe_config) | |
5869 | { | |
5870 | struct drm_device *dev = crtc->base.dev; | |
5871 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5872 | uint32_t tmp; | |
5873 | ||
eccb140b DV |
5874 | pipe_config->cpu_transcoder = crtc->pipe; |
5875 | ||
0e8ffe1b DV |
5876 | tmp = I915_READ(PIPECONF(crtc->pipe)); |
5877 | if (!(tmp & PIPECONF_ENABLE)) | |
5878 | return false; | |
5879 | ||
ab9412ba | 5880 | if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) { |
88adfff1 DV |
5881 | pipe_config->has_pch_encoder = true; |
5882 | ||
627eb5a3 DV |
5883 | tmp = I915_READ(FDI_RX_CTL(crtc->pipe)); |
5884 | pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >> | |
5885 | FDI_DP_PORT_WIDTH_SHIFT) + 1; | |
72419203 DV |
5886 | |
5887 | ironlake_get_fdi_m_n_config(crtc, pipe_config); | |
6c49f241 DV |
5888 | |
5889 | /* XXX: Can't properly read out the pch dpll pixel multiplier | |
5890 | * since we don't have state tracking for pch clocks yet. */ | |
5891 | pipe_config->pixel_multiplier = 1; | |
5892 | } else { | |
5893 | pipe_config->pixel_multiplier = 1; | |
627eb5a3 DV |
5894 | } |
5895 | ||
1bd1bd80 DV |
5896 | intel_get_pipe_timings(crtc, pipe_config); |
5897 | ||
2fa2fe9a DV |
5898 | ironlake_get_pfit_config(crtc, pipe_config); |
5899 | ||
0e8ffe1b DV |
5900 | return true; |
5901 | } | |
5902 | ||
d6dd9eb1 DV |
5903 | static void haswell_modeset_global_resources(struct drm_device *dev) |
5904 | { | |
d6dd9eb1 DV |
5905 | bool enable = false; |
5906 | struct intel_crtc *crtc; | |
d6dd9eb1 DV |
5907 | |
5908 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) { | |
e7a639c4 DV |
5909 | if (!crtc->base.enabled) |
5910 | continue; | |
d6dd9eb1 | 5911 | |
e7a639c4 DV |
5912 | if (crtc->pipe != PIPE_A || crtc->config.pch_pfit.size || |
5913 | crtc->config.cpu_transcoder != TRANSCODER_EDP) | |
d6dd9eb1 DV |
5914 | enable = true; |
5915 | } | |
5916 | ||
d6dd9eb1 DV |
5917 | intel_set_power_well(dev, enable); |
5918 | } | |
5919 | ||
09b4ddf9 | 5920 | static int haswell_crtc_mode_set(struct drm_crtc *crtc, |
09b4ddf9 PZ |
5921 | int x, int y, |
5922 | struct drm_framebuffer *fb) | |
5923 | { | |
5924 | struct drm_device *dev = crtc->dev; | |
5925 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5926 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
09b4ddf9 | 5927 | int plane = intel_crtc->plane; |
09b4ddf9 | 5928 | int ret; |
09b4ddf9 | 5929 | |
ff9a6750 | 5930 | if (!intel_ddi_pll_mode_set(crtc)) |
6441ab5f PZ |
5931 | return -EINVAL; |
5932 | ||
09b4ddf9 PZ |
5933 | /* Ensure that the cursor is valid for the new mode before changing... */ |
5934 | intel_crtc_update_cursor(crtc, true); | |
5935 | ||
03afc4a2 DV |
5936 | if (intel_crtc->config.has_dp_encoder) |
5937 | intel_dp_set_m_n(intel_crtc); | |
09b4ddf9 PZ |
5938 | |
5939 | intel_crtc->lowfreq_avail = false; | |
09b4ddf9 | 5940 | |
8a654f3b | 5941 | intel_set_pipe_timings(intel_crtc); |
09b4ddf9 | 5942 | |
ca3a0ff8 | 5943 | if (intel_crtc->config.has_pch_encoder) { |
ca3a0ff8 DV |
5944 | intel_cpu_transcoder_set_m_n(intel_crtc, |
5945 | &intel_crtc->config.fdi_m_n); | |
5946 | } | |
09b4ddf9 | 5947 | |
6ff93609 | 5948 | haswell_set_pipeconf(crtc); |
09b4ddf9 | 5949 | |
50f3b016 | 5950 | intel_set_pipe_csc(crtc); |
86d3efce | 5951 | |
09b4ddf9 | 5952 | /* Set up the display plane register */ |
86d3efce | 5953 | I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE); |
09b4ddf9 PZ |
5954 | POSTING_READ(DSPCNTR(plane)); |
5955 | ||
5956 | ret = intel_pipe_set_base(crtc, x, y, fb); | |
5957 | ||
5958 | intel_update_watermarks(dev); | |
5959 | ||
1f803ee5 | 5960 | return ret; |
79e53945 JB |
5961 | } |
5962 | ||
0e8ffe1b DV |
5963 | static bool haswell_get_pipe_config(struct intel_crtc *crtc, |
5964 | struct intel_crtc_config *pipe_config) | |
5965 | { | |
5966 | struct drm_device *dev = crtc->base.dev; | |
5967 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2fa2fe9a | 5968 | enum intel_display_power_domain pfit_domain; |
0e8ffe1b DV |
5969 | uint32_t tmp; |
5970 | ||
eccb140b DV |
5971 | pipe_config->cpu_transcoder = crtc->pipe; |
5972 | tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP)); | |
5973 | if (tmp & TRANS_DDI_FUNC_ENABLE) { | |
5974 | enum pipe trans_edp_pipe; | |
5975 | switch (tmp & TRANS_DDI_EDP_INPUT_MASK) { | |
5976 | default: | |
5977 | WARN(1, "unknown pipe linked to edp transcoder\n"); | |
5978 | case TRANS_DDI_EDP_INPUT_A_ONOFF: | |
5979 | case TRANS_DDI_EDP_INPUT_A_ON: | |
5980 | trans_edp_pipe = PIPE_A; | |
5981 | break; | |
5982 | case TRANS_DDI_EDP_INPUT_B_ONOFF: | |
5983 | trans_edp_pipe = PIPE_B; | |
5984 | break; | |
5985 | case TRANS_DDI_EDP_INPUT_C_ONOFF: | |
5986 | trans_edp_pipe = PIPE_C; | |
5987 | break; | |
5988 | } | |
5989 | ||
5990 | if (trans_edp_pipe == crtc->pipe) | |
5991 | pipe_config->cpu_transcoder = TRANSCODER_EDP; | |
5992 | } | |
5993 | ||
b97186f0 | 5994 | if (!intel_display_power_enabled(dev, |
eccb140b | 5995 | POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder))) |
2bfce950 PZ |
5996 | return false; |
5997 | ||
eccb140b | 5998 | tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder)); |
0e8ffe1b DV |
5999 | if (!(tmp & PIPECONF_ENABLE)) |
6000 | return false; | |
6001 | ||
88adfff1 | 6002 | /* |
f196e6be | 6003 | * Haswell has only FDI/PCH transcoder A. It is which is connected to |
88adfff1 DV |
6004 | * DDI E. So just check whether this pipe is wired to DDI E and whether |
6005 | * the PCH transcoder is on. | |
6006 | */ | |
eccb140b | 6007 | tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder)); |
88adfff1 | 6008 | if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) && |
ab9412ba | 6009 | I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) { |
88adfff1 DV |
6010 | pipe_config->has_pch_encoder = true; |
6011 | ||
627eb5a3 DV |
6012 | tmp = I915_READ(FDI_RX_CTL(PIPE_A)); |
6013 | pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >> | |
6014 | FDI_DP_PORT_WIDTH_SHIFT) + 1; | |
72419203 DV |
6015 | |
6016 | ironlake_get_fdi_m_n_config(crtc, pipe_config); | |
627eb5a3 DV |
6017 | } |
6018 | ||
1bd1bd80 DV |
6019 | intel_get_pipe_timings(crtc, pipe_config); |
6020 | ||
2fa2fe9a DV |
6021 | pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe); |
6022 | if (intel_display_power_enabled(dev, pfit_domain)) | |
6023 | ironlake_get_pfit_config(crtc, pipe_config); | |
6024 | ||
42db64ef PZ |
6025 | pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) && |
6026 | (I915_READ(IPS_CTL) & IPS_ENABLE); | |
6027 | ||
6c49f241 DV |
6028 | pipe_config->pixel_multiplier = 1; |
6029 | ||
0e8ffe1b DV |
6030 | return true; |
6031 | } | |
6032 | ||
f564048e | 6033 | static int intel_crtc_mode_set(struct drm_crtc *crtc, |
f564048e | 6034 | int x, int y, |
94352cf9 | 6035 | struct drm_framebuffer *fb) |
f564048e EA |
6036 | { |
6037 | struct drm_device *dev = crtc->dev; | |
6038 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9256aa19 DV |
6039 | struct drm_encoder_helper_funcs *encoder_funcs; |
6040 | struct intel_encoder *encoder; | |
0b701d27 | 6041 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
b8cecdf5 DV |
6042 | struct drm_display_mode *adjusted_mode = |
6043 | &intel_crtc->config.adjusted_mode; | |
6044 | struct drm_display_mode *mode = &intel_crtc->config.requested_mode; | |
0b701d27 | 6045 | int pipe = intel_crtc->pipe; |
f564048e EA |
6046 | int ret; |
6047 | ||
0b701d27 | 6048 | drm_vblank_pre_modeset(dev, pipe); |
7662c8bd | 6049 | |
b8cecdf5 DV |
6050 | ret = dev_priv->display.crtc_mode_set(crtc, x, y, fb); |
6051 | ||
79e53945 | 6052 | drm_vblank_post_modeset(dev, pipe); |
5c3b82e2 | 6053 | |
9256aa19 DV |
6054 | if (ret != 0) |
6055 | return ret; | |
6056 | ||
6057 | for_each_encoder_on_crtc(dev, crtc, encoder) { | |
6058 | DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n", | |
6059 | encoder->base.base.id, | |
6060 | drm_get_encoder_name(&encoder->base), | |
6061 | mode->base.id, mode->name); | |
6cc5f341 DV |
6062 | if (encoder->mode_set) { |
6063 | encoder->mode_set(encoder); | |
6064 | } else { | |
6065 | encoder_funcs = encoder->base.helper_private; | |
6066 | encoder_funcs->mode_set(&encoder->base, mode, adjusted_mode); | |
6067 | } | |
9256aa19 DV |
6068 | } |
6069 | ||
6070 | return 0; | |
79e53945 JB |
6071 | } |
6072 | ||
3a9627f4 WF |
6073 | static bool intel_eld_uptodate(struct drm_connector *connector, |
6074 | int reg_eldv, uint32_t bits_eldv, | |
6075 | int reg_elda, uint32_t bits_elda, | |
6076 | int reg_edid) | |
6077 | { | |
6078 | struct drm_i915_private *dev_priv = connector->dev->dev_private; | |
6079 | uint8_t *eld = connector->eld; | |
6080 | uint32_t i; | |
6081 | ||
6082 | i = I915_READ(reg_eldv); | |
6083 | i &= bits_eldv; | |
6084 | ||
6085 | if (!eld[0]) | |
6086 | return !i; | |
6087 | ||
6088 | if (!i) | |
6089 | return false; | |
6090 | ||
6091 | i = I915_READ(reg_elda); | |
6092 | i &= ~bits_elda; | |
6093 | I915_WRITE(reg_elda, i); | |
6094 | ||
6095 | for (i = 0; i < eld[2]; i++) | |
6096 | if (I915_READ(reg_edid) != *((uint32_t *)eld + i)) | |
6097 | return false; | |
6098 | ||
6099 | return true; | |
6100 | } | |
6101 | ||
e0dac65e WF |
6102 | static void g4x_write_eld(struct drm_connector *connector, |
6103 | struct drm_crtc *crtc) | |
6104 | { | |
6105 | struct drm_i915_private *dev_priv = connector->dev->dev_private; | |
6106 | uint8_t *eld = connector->eld; | |
6107 | uint32_t eldv; | |
6108 | uint32_t len; | |
6109 | uint32_t i; | |
6110 | ||
6111 | i = I915_READ(G4X_AUD_VID_DID); | |
6112 | ||
6113 | if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL) | |
6114 | eldv = G4X_ELDV_DEVCL_DEVBLC; | |
6115 | else | |
6116 | eldv = G4X_ELDV_DEVCTG; | |
6117 | ||
3a9627f4 WF |
6118 | if (intel_eld_uptodate(connector, |
6119 | G4X_AUD_CNTL_ST, eldv, | |
6120 | G4X_AUD_CNTL_ST, G4X_ELD_ADDR, | |
6121 | G4X_HDMIW_HDMIEDID)) | |
6122 | return; | |
6123 | ||
e0dac65e WF |
6124 | i = I915_READ(G4X_AUD_CNTL_ST); |
6125 | i &= ~(eldv | G4X_ELD_ADDR); | |
6126 | len = (i >> 9) & 0x1f; /* ELD buffer size */ | |
6127 | I915_WRITE(G4X_AUD_CNTL_ST, i); | |
6128 | ||
6129 | if (!eld[0]) | |
6130 | return; | |
6131 | ||
6132 | len = min_t(uint8_t, eld[2], len); | |
6133 | DRM_DEBUG_DRIVER("ELD size %d\n", len); | |
6134 | for (i = 0; i < len; i++) | |
6135 | I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i)); | |
6136 | ||
6137 | i = I915_READ(G4X_AUD_CNTL_ST); | |
6138 | i |= eldv; | |
6139 | I915_WRITE(G4X_AUD_CNTL_ST, i); | |
6140 | } | |
6141 | ||
83358c85 WX |
6142 | static void haswell_write_eld(struct drm_connector *connector, |
6143 | struct drm_crtc *crtc) | |
6144 | { | |
6145 | struct drm_i915_private *dev_priv = connector->dev->dev_private; | |
6146 | uint8_t *eld = connector->eld; | |
6147 | struct drm_device *dev = crtc->dev; | |
7b9f35a6 | 6148 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
83358c85 WX |
6149 | uint32_t eldv; |
6150 | uint32_t i; | |
6151 | int len; | |
6152 | int pipe = to_intel_crtc(crtc)->pipe; | |
6153 | int tmp; | |
6154 | ||
6155 | int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe); | |
6156 | int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe); | |
6157 | int aud_config = HSW_AUD_CFG(pipe); | |
6158 | int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD; | |
6159 | ||
6160 | ||
6161 | DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n"); | |
6162 | ||
6163 | /* Audio output enable */ | |
6164 | DRM_DEBUG_DRIVER("HDMI audio: enable codec\n"); | |
6165 | tmp = I915_READ(aud_cntrl_st2); | |
6166 | tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4)); | |
6167 | I915_WRITE(aud_cntrl_st2, tmp); | |
6168 | ||
6169 | /* Wait for 1 vertical blank */ | |
6170 | intel_wait_for_vblank(dev, pipe); | |
6171 | ||
6172 | /* Set ELD valid state */ | |
6173 | tmp = I915_READ(aud_cntrl_st2); | |
6174 | DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%8x\n", tmp); | |
6175 | tmp |= (AUDIO_ELD_VALID_A << (pipe * 4)); | |
6176 | I915_WRITE(aud_cntrl_st2, tmp); | |
6177 | tmp = I915_READ(aud_cntrl_st2); | |
6178 | DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%8x\n", tmp); | |
6179 | ||
6180 | /* Enable HDMI mode */ | |
6181 | tmp = I915_READ(aud_config); | |
6182 | DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%8x\n", tmp); | |
6183 | /* clear N_programing_enable and N_value_index */ | |
6184 | tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE); | |
6185 | I915_WRITE(aud_config, tmp); | |
6186 | ||
6187 | DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe)); | |
6188 | ||
6189 | eldv = AUDIO_ELD_VALID_A << (pipe * 4); | |
7b9f35a6 | 6190 | intel_crtc->eld_vld = true; |
83358c85 WX |
6191 | |
6192 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) { | |
6193 | DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n"); | |
6194 | eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */ | |
6195 | I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */ | |
6196 | } else | |
6197 | I915_WRITE(aud_config, 0); | |
6198 | ||
6199 | if (intel_eld_uptodate(connector, | |
6200 | aud_cntrl_st2, eldv, | |
6201 | aud_cntl_st, IBX_ELD_ADDRESS, | |
6202 | hdmiw_hdmiedid)) | |
6203 | return; | |
6204 | ||
6205 | i = I915_READ(aud_cntrl_st2); | |
6206 | i &= ~eldv; | |
6207 | I915_WRITE(aud_cntrl_st2, i); | |
6208 | ||
6209 | if (!eld[0]) | |
6210 | return; | |
6211 | ||
6212 | i = I915_READ(aud_cntl_st); | |
6213 | i &= ~IBX_ELD_ADDRESS; | |
6214 | I915_WRITE(aud_cntl_st, i); | |
6215 | i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */ | |
6216 | DRM_DEBUG_DRIVER("port num:%d\n", i); | |
6217 | ||
6218 | len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */ | |
6219 | DRM_DEBUG_DRIVER("ELD size %d\n", len); | |
6220 | for (i = 0; i < len; i++) | |
6221 | I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i)); | |
6222 | ||
6223 | i = I915_READ(aud_cntrl_st2); | |
6224 | i |= eldv; | |
6225 | I915_WRITE(aud_cntrl_st2, i); | |
6226 | ||
6227 | } | |
6228 | ||
e0dac65e WF |
6229 | static void ironlake_write_eld(struct drm_connector *connector, |
6230 | struct drm_crtc *crtc) | |
6231 | { | |
6232 | struct drm_i915_private *dev_priv = connector->dev->dev_private; | |
6233 | uint8_t *eld = connector->eld; | |
6234 | uint32_t eldv; | |
6235 | uint32_t i; | |
6236 | int len; | |
6237 | int hdmiw_hdmiedid; | |
b6daa025 | 6238 | int aud_config; |
e0dac65e WF |
6239 | int aud_cntl_st; |
6240 | int aud_cntrl_st2; | |
9b138a83 | 6241 | int pipe = to_intel_crtc(crtc)->pipe; |
e0dac65e | 6242 | |
b3f33cbf | 6243 | if (HAS_PCH_IBX(connector->dev)) { |
9b138a83 WX |
6244 | hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe); |
6245 | aud_config = IBX_AUD_CFG(pipe); | |
6246 | aud_cntl_st = IBX_AUD_CNTL_ST(pipe); | |
1202b4c6 | 6247 | aud_cntrl_st2 = IBX_AUD_CNTL_ST2; |
e0dac65e | 6248 | } else { |
9b138a83 WX |
6249 | hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe); |
6250 | aud_config = CPT_AUD_CFG(pipe); | |
6251 | aud_cntl_st = CPT_AUD_CNTL_ST(pipe); | |
1202b4c6 | 6252 | aud_cntrl_st2 = CPT_AUD_CNTRL_ST2; |
e0dac65e WF |
6253 | } |
6254 | ||
9b138a83 | 6255 | DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe)); |
e0dac65e WF |
6256 | |
6257 | i = I915_READ(aud_cntl_st); | |
9b138a83 | 6258 | i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */ |
e0dac65e WF |
6259 | if (!i) { |
6260 | DRM_DEBUG_DRIVER("Audio directed to unknown port\n"); | |
6261 | /* operate blindly on all ports */ | |
1202b4c6 WF |
6262 | eldv = IBX_ELD_VALIDB; |
6263 | eldv |= IBX_ELD_VALIDB << 4; | |
6264 | eldv |= IBX_ELD_VALIDB << 8; | |
e0dac65e | 6265 | } else { |
2582a850 | 6266 | DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i)); |
1202b4c6 | 6267 | eldv = IBX_ELD_VALIDB << ((i - 1) * 4); |
e0dac65e WF |
6268 | } |
6269 | ||
3a9627f4 WF |
6270 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) { |
6271 | DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n"); | |
6272 | eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */ | |
b6daa025 WF |
6273 | I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */ |
6274 | } else | |
6275 | I915_WRITE(aud_config, 0); | |
e0dac65e | 6276 | |
3a9627f4 WF |
6277 | if (intel_eld_uptodate(connector, |
6278 | aud_cntrl_st2, eldv, | |
6279 | aud_cntl_st, IBX_ELD_ADDRESS, | |
6280 | hdmiw_hdmiedid)) | |
6281 | return; | |
6282 | ||
e0dac65e WF |
6283 | i = I915_READ(aud_cntrl_st2); |
6284 | i &= ~eldv; | |
6285 | I915_WRITE(aud_cntrl_st2, i); | |
6286 | ||
6287 | if (!eld[0]) | |
6288 | return; | |
6289 | ||
e0dac65e | 6290 | i = I915_READ(aud_cntl_st); |
1202b4c6 | 6291 | i &= ~IBX_ELD_ADDRESS; |
e0dac65e WF |
6292 | I915_WRITE(aud_cntl_st, i); |
6293 | ||
6294 | len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */ | |
6295 | DRM_DEBUG_DRIVER("ELD size %d\n", len); | |
6296 | for (i = 0; i < len; i++) | |
6297 | I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i)); | |
6298 | ||
6299 | i = I915_READ(aud_cntrl_st2); | |
6300 | i |= eldv; | |
6301 | I915_WRITE(aud_cntrl_st2, i); | |
6302 | } | |
6303 | ||
6304 | void intel_write_eld(struct drm_encoder *encoder, | |
6305 | struct drm_display_mode *mode) | |
6306 | { | |
6307 | struct drm_crtc *crtc = encoder->crtc; | |
6308 | struct drm_connector *connector; | |
6309 | struct drm_device *dev = encoder->dev; | |
6310 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6311 | ||
6312 | connector = drm_select_eld(encoder, mode); | |
6313 | if (!connector) | |
6314 | return; | |
6315 | ||
6316 | DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", | |
6317 | connector->base.id, | |
6318 | drm_get_connector_name(connector), | |
6319 | connector->encoder->base.id, | |
6320 | drm_get_encoder_name(connector->encoder)); | |
6321 | ||
6322 | connector->eld[6] = drm_av_sync_delay(connector, mode) / 2; | |
6323 | ||
6324 | if (dev_priv->display.write_eld) | |
6325 | dev_priv->display.write_eld(connector, crtc); | |
6326 | } | |
6327 | ||
79e53945 JB |
6328 | /** Loads the palette/gamma unit for the CRTC with the prepared values */ |
6329 | void intel_crtc_load_lut(struct drm_crtc *crtc) | |
6330 | { | |
6331 | struct drm_device *dev = crtc->dev; | |
6332 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6333 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
42db64ef PZ |
6334 | enum pipe pipe = intel_crtc->pipe; |
6335 | int palreg = PALETTE(pipe); | |
79e53945 | 6336 | int i; |
42db64ef | 6337 | bool reenable_ips = false; |
79e53945 JB |
6338 | |
6339 | /* The clocks have to be on to load the palette. */ | |
aed3f09d | 6340 | if (!crtc->enabled || !intel_crtc->active) |
79e53945 JB |
6341 | return; |
6342 | ||
14420bd0 VS |
6343 | if (!HAS_PCH_SPLIT(dev_priv->dev)) |
6344 | assert_pll_enabled(dev_priv, pipe); | |
6345 | ||
f2b115e6 | 6346 | /* use legacy palette for Ironlake */ |
bad720ff | 6347 | if (HAS_PCH_SPLIT(dev)) |
42db64ef PZ |
6348 | palreg = LGC_PALETTE(pipe); |
6349 | ||
6350 | /* Workaround : Do not read or write the pipe palette/gamma data while | |
6351 | * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled. | |
6352 | */ | |
6353 | if (intel_crtc->config.ips_enabled && | |
6354 | ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) == | |
6355 | GAMMA_MODE_MODE_SPLIT)) { | |
6356 | hsw_disable_ips(intel_crtc); | |
6357 | reenable_ips = true; | |
6358 | } | |
2c07245f | 6359 | |
79e53945 JB |
6360 | for (i = 0; i < 256; i++) { |
6361 | I915_WRITE(palreg + 4 * i, | |
6362 | (intel_crtc->lut_r[i] << 16) | | |
6363 | (intel_crtc->lut_g[i] << 8) | | |
6364 | intel_crtc->lut_b[i]); | |
6365 | } | |
42db64ef PZ |
6366 | |
6367 | if (reenable_ips) | |
6368 | hsw_enable_ips(intel_crtc); | |
79e53945 JB |
6369 | } |
6370 | ||
560b85bb CW |
6371 | static void i845_update_cursor(struct drm_crtc *crtc, u32 base) |
6372 | { | |
6373 | struct drm_device *dev = crtc->dev; | |
6374 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6375 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6376 | bool visible = base != 0; | |
6377 | u32 cntl; | |
6378 | ||
6379 | if (intel_crtc->cursor_visible == visible) | |
6380 | return; | |
6381 | ||
9db4a9c7 | 6382 | cntl = I915_READ(_CURACNTR); |
560b85bb CW |
6383 | if (visible) { |
6384 | /* On these chipsets we can only modify the base whilst | |
6385 | * the cursor is disabled. | |
6386 | */ | |
9db4a9c7 | 6387 | I915_WRITE(_CURABASE, base); |
560b85bb CW |
6388 | |
6389 | cntl &= ~(CURSOR_FORMAT_MASK); | |
6390 | /* XXX width must be 64, stride 256 => 0x00 << 28 */ | |
6391 | cntl |= CURSOR_ENABLE | | |
6392 | CURSOR_GAMMA_ENABLE | | |
6393 | CURSOR_FORMAT_ARGB; | |
6394 | } else | |
6395 | cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE); | |
9db4a9c7 | 6396 | I915_WRITE(_CURACNTR, cntl); |
560b85bb CW |
6397 | |
6398 | intel_crtc->cursor_visible = visible; | |
6399 | } | |
6400 | ||
6401 | static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base) | |
6402 | { | |
6403 | struct drm_device *dev = crtc->dev; | |
6404 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6405 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6406 | int pipe = intel_crtc->pipe; | |
6407 | bool visible = base != 0; | |
6408 | ||
6409 | if (intel_crtc->cursor_visible != visible) { | |
548f245b | 6410 | uint32_t cntl = I915_READ(CURCNTR(pipe)); |
560b85bb CW |
6411 | if (base) { |
6412 | cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT); | |
6413 | cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE; | |
6414 | cntl |= pipe << 28; /* Connect to correct pipe */ | |
6415 | } else { | |
6416 | cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE); | |
6417 | cntl |= CURSOR_MODE_DISABLE; | |
6418 | } | |
9db4a9c7 | 6419 | I915_WRITE(CURCNTR(pipe), cntl); |
560b85bb CW |
6420 | |
6421 | intel_crtc->cursor_visible = visible; | |
6422 | } | |
6423 | /* and commit changes on next vblank */ | |
9db4a9c7 | 6424 | I915_WRITE(CURBASE(pipe), base); |
560b85bb CW |
6425 | } |
6426 | ||
65a21cd6 JB |
6427 | static void ivb_update_cursor(struct drm_crtc *crtc, u32 base) |
6428 | { | |
6429 | struct drm_device *dev = crtc->dev; | |
6430 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6431 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6432 | int pipe = intel_crtc->pipe; | |
6433 | bool visible = base != 0; | |
6434 | ||
6435 | if (intel_crtc->cursor_visible != visible) { | |
6436 | uint32_t cntl = I915_READ(CURCNTR_IVB(pipe)); | |
6437 | if (base) { | |
6438 | cntl &= ~CURSOR_MODE; | |
6439 | cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE; | |
6440 | } else { | |
6441 | cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE); | |
6442 | cntl |= CURSOR_MODE_DISABLE; | |
6443 | } | |
86d3efce VS |
6444 | if (IS_HASWELL(dev)) |
6445 | cntl |= CURSOR_PIPE_CSC_ENABLE; | |
65a21cd6 JB |
6446 | I915_WRITE(CURCNTR_IVB(pipe), cntl); |
6447 | ||
6448 | intel_crtc->cursor_visible = visible; | |
6449 | } | |
6450 | /* and commit changes on next vblank */ | |
6451 | I915_WRITE(CURBASE_IVB(pipe), base); | |
6452 | } | |
6453 | ||
cda4b7d3 | 6454 | /* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */ |
6b383a7f CW |
6455 | static void intel_crtc_update_cursor(struct drm_crtc *crtc, |
6456 | bool on) | |
cda4b7d3 CW |
6457 | { |
6458 | struct drm_device *dev = crtc->dev; | |
6459 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6460 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6461 | int pipe = intel_crtc->pipe; | |
6462 | int x = intel_crtc->cursor_x; | |
6463 | int y = intel_crtc->cursor_y; | |
560b85bb | 6464 | u32 base, pos; |
cda4b7d3 CW |
6465 | bool visible; |
6466 | ||
6467 | pos = 0; | |
6468 | ||
6b383a7f | 6469 | if (on && crtc->enabled && crtc->fb) { |
cda4b7d3 CW |
6470 | base = intel_crtc->cursor_addr; |
6471 | if (x > (int) crtc->fb->width) | |
6472 | base = 0; | |
6473 | ||
6474 | if (y > (int) crtc->fb->height) | |
6475 | base = 0; | |
6476 | } else | |
6477 | base = 0; | |
6478 | ||
6479 | if (x < 0) { | |
6480 | if (x + intel_crtc->cursor_width < 0) | |
6481 | base = 0; | |
6482 | ||
6483 | pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT; | |
6484 | x = -x; | |
6485 | } | |
6486 | pos |= x << CURSOR_X_SHIFT; | |
6487 | ||
6488 | if (y < 0) { | |
6489 | if (y + intel_crtc->cursor_height < 0) | |
6490 | base = 0; | |
6491 | ||
6492 | pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT; | |
6493 | y = -y; | |
6494 | } | |
6495 | pos |= y << CURSOR_Y_SHIFT; | |
6496 | ||
6497 | visible = base != 0; | |
560b85bb | 6498 | if (!visible && !intel_crtc->cursor_visible) |
cda4b7d3 CW |
6499 | return; |
6500 | ||
0cd83aa9 | 6501 | if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) { |
65a21cd6 JB |
6502 | I915_WRITE(CURPOS_IVB(pipe), pos); |
6503 | ivb_update_cursor(crtc, base); | |
6504 | } else { | |
6505 | I915_WRITE(CURPOS(pipe), pos); | |
6506 | if (IS_845G(dev) || IS_I865G(dev)) | |
6507 | i845_update_cursor(crtc, base); | |
6508 | else | |
6509 | i9xx_update_cursor(crtc, base); | |
6510 | } | |
cda4b7d3 CW |
6511 | } |
6512 | ||
79e53945 | 6513 | static int intel_crtc_cursor_set(struct drm_crtc *crtc, |
05394f39 | 6514 | struct drm_file *file, |
79e53945 JB |
6515 | uint32_t handle, |
6516 | uint32_t width, uint32_t height) | |
6517 | { | |
6518 | struct drm_device *dev = crtc->dev; | |
6519 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6520 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
05394f39 | 6521 | struct drm_i915_gem_object *obj; |
cda4b7d3 | 6522 | uint32_t addr; |
3f8bc370 | 6523 | int ret; |
79e53945 | 6524 | |
79e53945 JB |
6525 | /* if we want to turn off the cursor ignore width and height */ |
6526 | if (!handle) { | |
28c97730 | 6527 | DRM_DEBUG_KMS("cursor off\n"); |
3f8bc370 | 6528 | addr = 0; |
05394f39 | 6529 | obj = NULL; |
5004417d | 6530 | mutex_lock(&dev->struct_mutex); |
3f8bc370 | 6531 | goto finish; |
79e53945 JB |
6532 | } |
6533 | ||
6534 | /* Currently we only support 64x64 cursors */ | |
6535 | if (width != 64 || height != 64) { | |
6536 | DRM_ERROR("we currently only support 64x64 cursors\n"); | |
6537 | return -EINVAL; | |
6538 | } | |
6539 | ||
05394f39 | 6540 | obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle)); |
c8725226 | 6541 | if (&obj->base == NULL) |
79e53945 JB |
6542 | return -ENOENT; |
6543 | ||
05394f39 | 6544 | if (obj->base.size < width * height * 4) { |
79e53945 | 6545 | DRM_ERROR("buffer is to small\n"); |
34b8686e DA |
6546 | ret = -ENOMEM; |
6547 | goto fail; | |
79e53945 JB |
6548 | } |
6549 | ||
71acb5eb | 6550 | /* we only need to pin inside GTT if cursor is non-phy */ |
7f9872e0 | 6551 | mutex_lock(&dev->struct_mutex); |
b295d1b6 | 6552 | if (!dev_priv->info->cursor_needs_physical) { |
693db184 CW |
6553 | unsigned alignment; |
6554 | ||
d9e86c0e CW |
6555 | if (obj->tiling_mode) { |
6556 | DRM_ERROR("cursor cannot be tiled\n"); | |
6557 | ret = -EINVAL; | |
6558 | goto fail_locked; | |
6559 | } | |
6560 | ||
693db184 CW |
6561 | /* Note that the w/a also requires 2 PTE of padding following |
6562 | * the bo. We currently fill all unused PTE with the shadow | |
6563 | * page and so we should always have valid PTE following the | |
6564 | * cursor preventing the VT-d warning. | |
6565 | */ | |
6566 | alignment = 0; | |
6567 | if (need_vtd_wa(dev)) | |
6568 | alignment = 64*1024; | |
6569 | ||
6570 | ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL); | |
e7b526bb CW |
6571 | if (ret) { |
6572 | DRM_ERROR("failed to move cursor bo into the GTT\n"); | |
2da3b9b9 | 6573 | goto fail_locked; |
e7b526bb CW |
6574 | } |
6575 | ||
d9e86c0e CW |
6576 | ret = i915_gem_object_put_fence(obj); |
6577 | if (ret) { | |
2da3b9b9 | 6578 | DRM_ERROR("failed to release fence for cursor"); |
d9e86c0e CW |
6579 | goto fail_unpin; |
6580 | } | |
6581 | ||
05394f39 | 6582 | addr = obj->gtt_offset; |
71acb5eb | 6583 | } else { |
6eeefaf3 | 6584 | int align = IS_I830(dev) ? 16 * 1024 : 256; |
05394f39 | 6585 | ret = i915_gem_attach_phys_object(dev, obj, |
6eeefaf3 CW |
6586 | (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1, |
6587 | align); | |
71acb5eb DA |
6588 | if (ret) { |
6589 | DRM_ERROR("failed to attach phys object\n"); | |
7f9872e0 | 6590 | goto fail_locked; |
71acb5eb | 6591 | } |
05394f39 | 6592 | addr = obj->phys_obj->handle->busaddr; |
3f8bc370 KH |
6593 | } |
6594 | ||
a6c45cf0 | 6595 | if (IS_GEN2(dev)) |
14b60391 JB |
6596 | I915_WRITE(CURSIZE, (height << 12) | width); |
6597 | ||
3f8bc370 | 6598 | finish: |
3f8bc370 | 6599 | if (intel_crtc->cursor_bo) { |
b295d1b6 | 6600 | if (dev_priv->info->cursor_needs_physical) { |
05394f39 | 6601 | if (intel_crtc->cursor_bo != obj) |
71acb5eb DA |
6602 | i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo); |
6603 | } else | |
6604 | i915_gem_object_unpin(intel_crtc->cursor_bo); | |
05394f39 | 6605 | drm_gem_object_unreference(&intel_crtc->cursor_bo->base); |
3f8bc370 | 6606 | } |
80824003 | 6607 | |
7f9872e0 | 6608 | mutex_unlock(&dev->struct_mutex); |
3f8bc370 KH |
6609 | |
6610 | intel_crtc->cursor_addr = addr; | |
05394f39 | 6611 | intel_crtc->cursor_bo = obj; |
cda4b7d3 CW |
6612 | intel_crtc->cursor_width = width; |
6613 | intel_crtc->cursor_height = height; | |
6614 | ||
40ccc72b | 6615 | intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL); |
3f8bc370 | 6616 | |
79e53945 | 6617 | return 0; |
e7b526bb | 6618 | fail_unpin: |
05394f39 | 6619 | i915_gem_object_unpin(obj); |
7f9872e0 | 6620 | fail_locked: |
34b8686e | 6621 | mutex_unlock(&dev->struct_mutex); |
bc9025bd | 6622 | fail: |
05394f39 | 6623 | drm_gem_object_unreference_unlocked(&obj->base); |
34b8686e | 6624 | return ret; |
79e53945 JB |
6625 | } |
6626 | ||
6627 | static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y) | |
6628 | { | |
79e53945 | 6629 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
79e53945 | 6630 | |
cda4b7d3 CW |
6631 | intel_crtc->cursor_x = x; |
6632 | intel_crtc->cursor_y = y; | |
652c393a | 6633 | |
40ccc72b | 6634 | intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL); |
79e53945 JB |
6635 | |
6636 | return 0; | |
6637 | } | |
6638 | ||
6639 | /** Sets the color ramps on behalf of RandR */ | |
6640 | void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green, | |
6641 | u16 blue, int regno) | |
6642 | { | |
6643 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6644 | ||
6645 | intel_crtc->lut_r[regno] = red >> 8; | |
6646 | intel_crtc->lut_g[regno] = green >> 8; | |
6647 | intel_crtc->lut_b[regno] = blue >> 8; | |
6648 | } | |
6649 | ||
b8c00ac5 DA |
6650 | void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green, |
6651 | u16 *blue, int regno) | |
6652 | { | |
6653 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6654 | ||
6655 | *red = intel_crtc->lut_r[regno] << 8; | |
6656 | *green = intel_crtc->lut_g[regno] << 8; | |
6657 | *blue = intel_crtc->lut_b[regno] << 8; | |
6658 | } | |
6659 | ||
79e53945 | 6660 | static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green, |
7203425a | 6661 | u16 *blue, uint32_t start, uint32_t size) |
79e53945 | 6662 | { |
7203425a | 6663 | int end = (start + size > 256) ? 256 : start + size, i; |
79e53945 | 6664 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
79e53945 | 6665 | |
7203425a | 6666 | for (i = start; i < end; i++) { |
79e53945 JB |
6667 | intel_crtc->lut_r[i] = red[i] >> 8; |
6668 | intel_crtc->lut_g[i] = green[i] >> 8; | |
6669 | intel_crtc->lut_b[i] = blue[i] >> 8; | |
6670 | } | |
6671 | ||
6672 | intel_crtc_load_lut(crtc); | |
6673 | } | |
6674 | ||
79e53945 JB |
6675 | /* VESA 640x480x72Hz mode to set on the pipe */ |
6676 | static struct drm_display_mode load_detect_mode = { | |
6677 | DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664, | |
6678 | 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC), | |
6679 | }; | |
6680 | ||
d2dff872 CW |
6681 | static struct drm_framebuffer * |
6682 | intel_framebuffer_create(struct drm_device *dev, | |
308e5bcb | 6683 | struct drm_mode_fb_cmd2 *mode_cmd, |
d2dff872 CW |
6684 | struct drm_i915_gem_object *obj) |
6685 | { | |
6686 | struct intel_framebuffer *intel_fb; | |
6687 | int ret; | |
6688 | ||
6689 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); | |
6690 | if (!intel_fb) { | |
6691 | drm_gem_object_unreference_unlocked(&obj->base); | |
6692 | return ERR_PTR(-ENOMEM); | |
6693 | } | |
6694 | ||
6695 | ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj); | |
6696 | if (ret) { | |
6697 | drm_gem_object_unreference_unlocked(&obj->base); | |
6698 | kfree(intel_fb); | |
6699 | return ERR_PTR(ret); | |
6700 | } | |
6701 | ||
6702 | return &intel_fb->base; | |
6703 | } | |
6704 | ||
6705 | static u32 | |
6706 | intel_framebuffer_pitch_for_width(int width, int bpp) | |
6707 | { | |
6708 | u32 pitch = DIV_ROUND_UP(width * bpp, 8); | |
6709 | return ALIGN(pitch, 64); | |
6710 | } | |
6711 | ||
6712 | static u32 | |
6713 | intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp) | |
6714 | { | |
6715 | u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp); | |
6716 | return ALIGN(pitch * mode->vdisplay, PAGE_SIZE); | |
6717 | } | |
6718 | ||
6719 | static struct drm_framebuffer * | |
6720 | intel_framebuffer_create_for_mode(struct drm_device *dev, | |
6721 | struct drm_display_mode *mode, | |
6722 | int depth, int bpp) | |
6723 | { | |
6724 | struct drm_i915_gem_object *obj; | |
0fed39bd | 6725 | struct drm_mode_fb_cmd2 mode_cmd = { 0 }; |
d2dff872 CW |
6726 | |
6727 | obj = i915_gem_alloc_object(dev, | |
6728 | intel_framebuffer_size_for_mode(mode, bpp)); | |
6729 | if (obj == NULL) | |
6730 | return ERR_PTR(-ENOMEM); | |
6731 | ||
6732 | mode_cmd.width = mode->hdisplay; | |
6733 | mode_cmd.height = mode->vdisplay; | |
308e5bcb JB |
6734 | mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width, |
6735 | bpp); | |
5ca0c34a | 6736 | mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth); |
d2dff872 CW |
6737 | |
6738 | return intel_framebuffer_create(dev, &mode_cmd, obj); | |
6739 | } | |
6740 | ||
6741 | static struct drm_framebuffer * | |
6742 | mode_fits_in_fbdev(struct drm_device *dev, | |
6743 | struct drm_display_mode *mode) | |
6744 | { | |
6745 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6746 | struct drm_i915_gem_object *obj; | |
6747 | struct drm_framebuffer *fb; | |
6748 | ||
6749 | if (dev_priv->fbdev == NULL) | |
6750 | return NULL; | |
6751 | ||
6752 | obj = dev_priv->fbdev->ifb.obj; | |
6753 | if (obj == NULL) | |
6754 | return NULL; | |
6755 | ||
6756 | fb = &dev_priv->fbdev->ifb.base; | |
01f2c773 VS |
6757 | if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay, |
6758 | fb->bits_per_pixel)) | |
d2dff872 CW |
6759 | return NULL; |
6760 | ||
01f2c773 | 6761 | if (obj->base.size < mode->vdisplay * fb->pitches[0]) |
d2dff872 CW |
6762 | return NULL; |
6763 | ||
6764 | return fb; | |
6765 | } | |
6766 | ||
d2434ab7 | 6767 | bool intel_get_load_detect_pipe(struct drm_connector *connector, |
7173188d | 6768 | struct drm_display_mode *mode, |
8261b191 | 6769 | struct intel_load_detect_pipe *old) |
79e53945 JB |
6770 | { |
6771 | struct intel_crtc *intel_crtc; | |
d2434ab7 DV |
6772 | struct intel_encoder *intel_encoder = |
6773 | intel_attached_encoder(connector); | |
79e53945 | 6774 | struct drm_crtc *possible_crtc; |
4ef69c7a | 6775 | struct drm_encoder *encoder = &intel_encoder->base; |
79e53945 JB |
6776 | struct drm_crtc *crtc = NULL; |
6777 | struct drm_device *dev = encoder->dev; | |
94352cf9 | 6778 | struct drm_framebuffer *fb; |
79e53945 JB |
6779 | int i = -1; |
6780 | ||
d2dff872 CW |
6781 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
6782 | connector->base.id, drm_get_connector_name(connector), | |
6783 | encoder->base.id, drm_get_encoder_name(encoder)); | |
6784 | ||
79e53945 JB |
6785 | /* |
6786 | * Algorithm gets a little messy: | |
7a5e4805 | 6787 | * |
79e53945 JB |
6788 | * - if the connector already has an assigned crtc, use it (but make |
6789 | * sure it's on first) | |
7a5e4805 | 6790 | * |
79e53945 JB |
6791 | * - try to find the first unused crtc that can drive this connector, |
6792 | * and use that if we find one | |
79e53945 JB |
6793 | */ |
6794 | ||
6795 | /* See if we already have a CRTC for this connector */ | |
6796 | if (encoder->crtc) { | |
6797 | crtc = encoder->crtc; | |
8261b191 | 6798 | |
7b24056b DV |
6799 | mutex_lock(&crtc->mutex); |
6800 | ||
24218aac | 6801 | old->dpms_mode = connector->dpms; |
8261b191 CW |
6802 | old->load_detect_temp = false; |
6803 | ||
6804 | /* Make sure the crtc and connector are running */ | |
24218aac DV |
6805 | if (connector->dpms != DRM_MODE_DPMS_ON) |
6806 | connector->funcs->dpms(connector, DRM_MODE_DPMS_ON); | |
8261b191 | 6807 | |
7173188d | 6808 | return true; |
79e53945 JB |
6809 | } |
6810 | ||
6811 | /* Find an unused one (if possible) */ | |
6812 | list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) { | |
6813 | i++; | |
6814 | if (!(encoder->possible_crtcs & (1 << i))) | |
6815 | continue; | |
6816 | if (!possible_crtc->enabled) { | |
6817 | crtc = possible_crtc; | |
6818 | break; | |
6819 | } | |
79e53945 JB |
6820 | } |
6821 | ||
6822 | /* | |
6823 | * If we didn't find an unused CRTC, don't use any. | |
6824 | */ | |
6825 | if (!crtc) { | |
7173188d CW |
6826 | DRM_DEBUG_KMS("no pipe available for load-detect\n"); |
6827 | return false; | |
79e53945 JB |
6828 | } |
6829 | ||
7b24056b | 6830 | mutex_lock(&crtc->mutex); |
fc303101 DV |
6831 | intel_encoder->new_crtc = to_intel_crtc(crtc); |
6832 | to_intel_connector(connector)->new_encoder = intel_encoder; | |
79e53945 JB |
6833 | |
6834 | intel_crtc = to_intel_crtc(crtc); | |
24218aac | 6835 | old->dpms_mode = connector->dpms; |
8261b191 | 6836 | old->load_detect_temp = true; |
d2dff872 | 6837 | old->release_fb = NULL; |
79e53945 | 6838 | |
6492711d CW |
6839 | if (!mode) |
6840 | mode = &load_detect_mode; | |
79e53945 | 6841 | |
d2dff872 CW |
6842 | /* We need a framebuffer large enough to accommodate all accesses |
6843 | * that the plane may generate whilst we perform load detection. | |
6844 | * We can not rely on the fbcon either being present (we get called | |
6845 | * during its initialisation to detect all boot displays, or it may | |
6846 | * not even exist) or that it is large enough to satisfy the | |
6847 | * requested mode. | |
6848 | */ | |
94352cf9 DV |
6849 | fb = mode_fits_in_fbdev(dev, mode); |
6850 | if (fb == NULL) { | |
d2dff872 | 6851 | DRM_DEBUG_KMS("creating tmp fb for load-detection\n"); |
94352cf9 DV |
6852 | fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32); |
6853 | old->release_fb = fb; | |
d2dff872 CW |
6854 | } else |
6855 | DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n"); | |
94352cf9 | 6856 | if (IS_ERR(fb)) { |
d2dff872 | 6857 | DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n"); |
7b24056b | 6858 | mutex_unlock(&crtc->mutex); |
0e8b3d3e | 6859 | return false; |
79e53945 | 6860 | } |
79e53945 | 6861 | |
c0c36b94 | 6862 | if (intel_set_mode(crtc, mode, 0, 0, fb)) { |
6492711d | 6863 | DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n"); |
d2dff872 CW |
6864 | if (old->release_fb) |
6865 | old->release_fb->funcs->destroy(old->release_fb); | |
7b24056b | 6866 | mutex_unlock(&crtc->mutex); |
0e8b3d3e | 6867 | return false; |
79e53945 | 6868 | } |
7173188d | 6869 | |
79e53945 | 6870 | /* let the connector get through one full cycle before testing */ |
9d0498a2 | 6871 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
7173188d | 6872 | return true; |
79e53945 JB |
6873 | } |
6874 | ||
d2434ab7 | 6875 | void intel_release_load_detect_pipe(struct drm_connector *connector, |
8261b191 | 6876 | struct intel_load_detect_pipe *old) |
79e53945 | 6877 | { |
d2434ab7 DV |
6878 | struct intel_encoder *intel_encoder = |
6879 | intel_attached_encoder(connector); | |
4ef69c7a | 6880 | struct drm_encoder *encoder = &intel_encoder->base; |
7b24056b | 6881 | struct drm_crtc *crtc = encoder->crtc; |
79e53945 | 6882 | |
d2dff872 CW |
6883 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
6884 | connector->base.id, drm_get_connector_name(connector), | |
6885 | encoder->base.id, drm_get_encoder_name(encoder)); | |
6886 | ||
8261b191 | 6887 | if (old->load_detect_temp) { |
fc303101 DV |
6888 | to_intel_connector(connector)->new_encoder = NULL; |
6889 | intel_encoder->new_crtc = NULL; | |
6890 | intel_set_mode(crtc, NULL, 0, 0, NULL); | |
d2dff872 | 6891 | |
36206361 DV |
6892 | if (old->release_fb) { |
6893 | drm_framebuffer_unregister_private(old->release_fb); | |
6894 | drm_framebuffer_unreference(old->release_fb); | |
6895 | } | |
d2dff872 | 6896 | |
67c96400 | 6897 | mutex_unlock(&crtc->mutex); |
0622a53c | 6898 | return; |
79e53945 JB |
6899 | } |
6900 | ||
c751ce4f | 6901 | /* Switch crtc and encoder back off if necessary */ |
24218aac DV |
6902 | if (old->dpms_mode != DRM_MODE_DPMS_ON) |
6903 | connector->funcs->dpms(connector, old->dpms_mode); | |
7b24056b DV |
6904 | |
6905 | mutex_unlock(&crtc->mutex); | |
79e53945 JB |
6906 | } |
6907 | ||
6908 | /* Returns the clock of the currently programmed mode of the given pipe. */ | |
6909 | static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc) | |
6910 | { | |
6911 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6912 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6913 | int pipe = intel_crtc->pipe; | |
548f245b | 6914 | u32 dpll = I915_READ(DPLL(pipe)); |
79e53945 JB |
6915 | u32 fp; |
6916 | intel_clock_t clock; | |
6917 | ||
6918 | if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0) | |
39adb7a5 | 6919 | fp = I915_READ(FP0(pipe)); |
79e53945 | 6920 | else |
39adb7a5 | 6921 | fp = I915_READ(FP1(pipe)); |
79e53945 JB |
6922 | |
6923 | clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT; | |
f2b115e6 AJ |
6924 | if (IS_PINEVIEW(dev)) { |
6925 | clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1; | |
6926 | clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT; | |
2177832f SL |
6927 | } else { |
6928 | clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT; | |
6929 | clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT; | |
6930 | } | |
6931 | ||
a6c45cf0 | 6932 | if (!IS_GEN2(dev)) { |
f2b115e6 AJ |
6933 | if (IS_PINEVIEW(dev)) |
6934 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >> | |
6935 | DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW); | |
2177832f SL |
6936 | else |
6937 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >> | |
79e53945 JB |
6938 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
6939 | ||
6940 | switch (dpll & DPLL_MODE_MASK) { | |
6941 | case DPLLB_MODE_DAC_SERIAL: | |
6942 | clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ? | |
6943 | 5 : 10; | |
6944 | break; | |
6945 | case DPLLB_MODE_LVDS: | |
6946 | clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ? | |
6947 | 7 : 14; | |
6948 | break; | |
6949 | default: | |
28c97730 | 6950 | DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed " |
79e53945 JB |
6951 | "mode\n", (int)(dpll & DPLL_MODE_MASK)); |
6952 | return 0; | |
6953 | } | |
6954 | ||
ac58c3f0 DV |
6955 | if (IS_PINEVIEW(dev)) |
6956 | pineview_clock(96000, &clock); | |
6957 | else | |
6958 | i9xx_clock(96000, &clock); | |
79e53945 JB |
6959 | } else { |
6960 | bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN); | |
6961 | ||
6962 | if (is_lvds) { | |
6963 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >> | |
6964 | DPLL_FPA01_P1_POST_DIV_SHIFT); | |
6965 | clock.p2 = 14; | |
6966 | ||
6967 | if ((dpll & PLL_REF_INPUT_MASK) == | |
6968 | PLLB_REF_INPUT_SPREADSPECTRUMIN) { | |
6969 | /* XXX: might not be 66MHz */ | |
ac58c3f0 | 6970 | i9xx_clock(66000, &clock); |
79e53945 | 6971 | } else |
ac58c3f0 | 6972 | i9xx_clock(48000, &clock); |
79e53945 JB |
6973 | } else { |
6974 | if (dpll & PLL_P1_DIVIDE_BY_TWO) | |
6975 | clock.p1 = 2; | |
6976 | else { | |
6977 | clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >> | |
6978 | DPLL_FPA01_P1_POST_DIV_SHIFT) + 2; | |
6979 | } | |
6980 | if (dpll & PLL_P2_DIVIDE_BY_4) | |
6981 | clock.p2 = 4; | |
6982 | else | |
6983 | clock.p2 = 2; | |
6984 | ||
ac58c3f0 | 6985 | i9xx_clock(48000, &clock); |
79e53945 JB |
6986 | } |
6987 | } | |
6988 | ||
6989 | /* XXX: It would be nice to validate the clocks, but we can't reuse | |
6990 | * i830PllIsValid() because it relies on the xf86_config connector | |
6991 | * configuration being accurate, which it isn't necessarily. | |
6992 | */ | |
6993 | ||
6994 | return clock.dot; | |
6995 | } | |
6996 | ||
6997 | /** Returns the currently programmed mode of the given pipe. */ | |
6998 | struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev, | |
6999 | struct drm_crtc *crtc) | |
7000 | { | |
548f245b | 7001 | struct drm_i915_private *dev_priv = dev->dev_private; |
79e53945 | 7002 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
3b117c8f | 7003 | enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder; |
79e53945 | 7004 | struct drm_display_mode *mode; |
fe2b8f9d PZ |
7005 | int htot = I915_READ(HTOTAL(cpu_transcoder)); |
7006 | int hsync = I915_READ(HSYNC(cpu_transcoder)); | |
7007 | int vtot = I915_READ(VTOTAL(cpu_transcoder)); | |
7008 | int vsync = I915_READ(VSYNC(cpu_transcoder)); | |
79e53945 JB |
7009 | |
7010 | mode = kzalloc(sizeof(*mode), GFP_KERNEL); | |
7011 | if (!mode) | |
7012 | return NULL; | |
7013 | ||
7014 | mode->clock = intel_crtc_clock_get(dev, crtc); | |
7015 | mode->hdisplay = (htot & 0xffff) + 1; | |
7016 | mode->htotal = ((htot & 0xffff0000) >> 16) + 1; | |
7017 | mode->hsync_start = (hsync & 0xffff) + 1; | |
7018 | mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1; | |
7019 | mode->vdisplay = (vtot & 0xffff) + 1; | |
7020 | mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1; | |
7021 | mode->vsync_start = (vsync & 0xffff) + 1; | |
7022 | mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1; | |
7023 | ||
7024 | drm_mode_set_name(mode); | |
79e53945 JB |
7025 | |
7026 | return mode; | |
7027 | } | |
7028 | ||
3dec0095 | 7029 | static void intel_increase_pllclock(struct drm_crtc *crtc) |
652c393a JB |
7030 | { |
7031 | struct drm_device *dev = crtc->dev; | |
7032 | drm_i915_private_t *dev_priv = dev->dev_private; | |
7033 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
7034 | int pipe = intel_crtc->pipe; | |
dbdc6479 JB |
7035 | int dpll_reg = DPLL(pipe); |
7036 | int dpll; | |
652c393a | 7037 | |
bad720ff | 7038 | if (HAS_PCH_SPLIT(dev)) |
652c393a JB |
7039 | return; |
7040 | ||
7041 | if (!dev_priv->lvds_downclock_avail) | |
7042 | return; | |
7043 | ||
dbdc6479 | 7044 | dpll = I915_READ(dpll_reg); |
652c393a | 7045 | if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) { |
44d98a61 | 7046 | DRM_DEBUG_DRIVER("upclocking LVDS\n"); |
652c393a | 7047 | |
8ac5a6d5 | 7048 | assert_panel_unlocked(dev_priv, pipe); |
652c393a JB |
7049 | |
7050 | dpll &= ~DISPLAY_RATE_SELECT_FPA1; | |
7051 | I915_WRITE(dpll_reg, dpll); | |
9d0498a2 | 7052 | intel_wait_for_vblank(dev, pipe); |
dbdc6479 | 7053 | |
652c393a JB |
7054 | dpll = I915_READ(dpll_reg); |
7055 | if (dpll & DISPLAY_RATE_SELECT_FPA1) | |
44d98a61 | 7056 | DRM_DEBUG_DRIVER("failed to upclock LVDS!\n"); |
652c393a | 7057 | } |
652c393a JB |
7058 | } |
7059 | ||
7060 | static void intel_decrease_pllclock(struct drm_crtc *crtc) | |
7061 | { | |
7062 | struct drm_device *dev = crtc->dev; | |
7063 | drm_i915_private_t *dev_priv = dev->dev_private; | |
7064 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
652c393a | 7065 | |
bad720ff | 7066 | if (HAS_PCH_SPLIT(dev)) |
652c393a JB |
7067 | return; |
7068 | ||
7069 | if (!dev_priv->lvds_downclock_avail) | |
7070 | return; | |
7071 | ||
7072 | /* | |
7073 | * Since this is called by a timer, we should never get here in | |
7074 | * the manual case. | |
7075 | */ | |
7076 | if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) { | |
dc257cf1 DV |
7077 | int pipe = intel_crtc->pipe; |
7078 | int dpll_reg = DPLL(pipe); | |
7079 | int dpll; | |
f6e5b160 | 7080 | |
44d98a61 | 7081 | DRM_DEBUG_DRIVER("downclocking LVDS\n"); |
652c393a | 7082 | |
8ac5a6d5 | 7083 | assert_panel_unlocked(dev_priv, pipe); |
652c393a | 7084 | |
dc257cf1 | 7085 | dpll = I915_READ(dpll_reg); |
652c393a JB |
7086 | dpll |= DISPLAY_RATE_SELECT_FPA1; |
7087 | I915_WRITE(dpll_reg, dpll); | |
9d0498a2 | 7088 | intel_wait_for_vblank(dev, pipe); |
652c393a JB |
7089 | dpll = I915_READ(dpll_reg); |
7090 | if (!(dpll & DISPLAY_RATE_SELECT_FPA1)) | |
44d98a61 | 7091 | DRM_DEBUG_DRIVER("failed to downclock LVDS!\n"); |
652c393a JB |
7092 | } |
7093 | ||
7094 | } | |
7095 | ||
f047e395 CW |
7096 | void intel_mark_busy(struct drm_device *dev) |
7097 | { | |
f047e395 CW |
7098 | i915_update_gfx_val(dev->dev_private); |
7099 | } | |
7100 | ||
7101 | void intel_mark_idle(struct drm_device *dev) | |
652c393a | 7102 | { |
652c393a | 7103 | struct drm_crtc *crtc; |
652c393a JB |
7104 | |
7105 | if (!i915_powersave) | |
7106 | return; | |
7107 | ||
652c393a | 7108 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
652c393a JB |
7109 | if (!crtc->fb) |
7110 | continue; | |
7111 | ||
725a5b54 | 7112 | intel_decrease_pllclock(crtc); |
652c393a | 7113 | } |
652c393a JB |
7114 | } |
7115 | ||
c65355bb CW |
7116 | void intel_mark_fb_busy(struct drm_i915_gem_object *obj, |
7117 | struct intel_ring_buffer *ring) | |
652c393a | 7118 | { |
f047e395 CW |
7119 | struct drm_device *dev = obj->base.dev; |
7120 | struct drm_crtc *crtc; | |
652c393a | 7121 | |
f047e395 | 7122 | if (!i915_powersave) |
acb87dfb CW |
7123 | return; |
7124 | ||
652c393a JB |
7125 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
7126 | if (!crtc->fb) | |
7127 | continue; | |
7128 | ||
c65355bb CW |
7129 | if (to_intel_framebuffer(crtc->fb)->obj != obj) |
7130 | continue; | |
7131 | ||
7132 | intel_increase_pllclock(crtc); | |
7133 | if (ring && intel_fbc_enabled(dev)) | |
7134 | ring->fbc_dirty = true; | |
652c393a JB |
7135 | } |
7136 | } | |
7137 | ||
79e53945 JB |
7138 | static void intel_crtc_destroy(struct drm_crtc *crtc) |
7139 | { | |
7140 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
67e77c5a DV |
7141 | struct drm_device *dev = crtc->dev; |
7142 | struct intel_unpin_work *work; | |
7143 | unsigned long flags; | |
7144 | ||
7145 | spin_lock_irqsave(&dev->event_lock, flags); | |
7146 | work = intel_crtc->unpin_work; | |
7147 | intel_crtc->unpin_work = NULL; | |
7148 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
7149 | ||
7150 | if (work) { | |
7151 | cancel_work_sync(&work->work); | |
7152 | kfree(work); | |
7153 | } | |
79e53945 | 7154 | |
40ccc72b MK |
7155 | intel_crtc_cursor_set(crtc, NULL, 0, 0, 0); |
7156 | ||
79e53945 | 7157 | drm_crtc_cleanup(crtc); |
67e77c5a | 7158 | |
79e53945 JB |
7159 | kfree(intel_crtc); |
7160 | } | |
7161 | ||
6b95a207 KH |
7162 | static void intel_unpin_work_fn(struct work_struct *__work) |
7163 | { | |
7164 | struct intel_unpin_work *work = | |
7165 | container_of(__work, struct intel_unpin_work, work); | |
b4a98e57 | 7166 | struct drm_device *dev = work->crtc->dev; |
6b95a207 | 7167 | |
b4a98e57 | 7168 | mutex_lock(&dev->struct_mutex); |
1690e1eb | 7169 | intel_unpin_fb_obj(work->old_fb_obj); |
05394f39 CW |
7170 | drm_gem_object_unreference(&work->pending_flip_obj->base); |
7171 | drm_gem_object_unreference(&work->old_fb_obj->base); | |
d9e86c0e | 7172 | |
b4a98e57 CW |
7173 | intel_update_fbc(dev); |
7174 | mutex_unlock(&dev->struct_mutex); | |
7175 | ||
7176 | BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0); | |
7177 | atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count); | |
7178 | ||
6b95a207 KH |
7179 | kfree(work); |
7180 | } | |
7181 | ||
1afe3e9d | 7182 | static void do_intel_finish_page_flip(struct drm_device *dev, |
49b14a5c | 7183 | struct drm_crtc *crtc) |
6b95a207 KH |
7184 | { |
7185 | drm_i915_private_t *dev_priv = dev->dev_private; | |
6b95a207 KH |
7186 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
7187 | struct intel_unpin_work *work; | |
6b95a207 KH |
7188 | unsigned long flags; |
7189 | ||
7190 | /* Ignore early vblank irqs */ | |
7191 | if (intel_crtc == NULL) | |
7192 | return; | |
7193 | ||
7194 | spin_lock_irqsave(&dev->event_lock, flags); | |
7195 | work = intel_crtc->unpin_work; | |
e7d841ca CW |
7196 | |
7197 | /* Ensure we don't miss a work->pending update ... */ | |
7198 | smp_rmb(); | |
7199 | ||
7200 | if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) { | |
6b95a207 KH |
7201 | spin_unlock_irqrestore(&dev->event_lock, flags); |
7202 | return; | |
7203 | } | |
7204 | ||
e7d841ca CW |
7205 | /* and that the unpin work is consistent wrt ->pending. */ |
7206 | smp_rmb(); | |
7207 | ||
6b95a207 | 7208 | intel_crtc->unpin_work = NULL; |
6b95a207 | 7209 | |
45a066eb RC |
7210 | if (work->event) |
7211 | drm_send_vblank_event(dev, intel_crtc->pipe, work->event); | |
6b95a207 | 7212 | |
0af7e4df MK |
7213 | drm_vblank_put(dev, intel_crtc->pipe); |
7214 | ||
6b95a207 KH |
7215 | spin_unlock_irqrestore(&dev->event_lock, flags); |
7216 | ||
2c10d571 | 7217 | wake_up_all(&dev_priv->pending_flip_queue); |
b4a98e57 CW |
7218 | |
7219 | queue_work(dev_priv->wq, &work->work); | |
e5510fac JB |
7220 | |
7221 | trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj); | |
6b95a207 KH |
7222 | } |
7223 | ||
1afe3e9d JB |
7224 | void intel_finish_page_flip(struct drm_device *dev, int pipe) |
7225 | { | |
7226 | drm_i915_private_t *dev_priv = dev->dev_private; | |
7227 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; | |
7228 | ||
49b14a5c | 7229 | do_intel_finish_page_flip(dev, crtc); |
1afe3e9d JB |
7230 | } |
7231 | ||
7232 | void intel_finish_page_flip_plane(struct drm_device *dev, int plane) | |
7233 | { | |
7234 | drm_i915_private_t *dev_priv = dev->dev_private; | |
7235 | struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane]; | |
7236 | ||
49b14a5c | 7237 | do_intel_finish_page_flip(dev, crtc); |
1afe3e9d JB |
7238 | } |
7239 | ||
6b95a207 KH |
7240 | void intel_prepare_page_flip(struct drm_device *dev, int plane) |
7241 | { | |
7242 | drm_i915_private_t *dev_priv = dev->dev_private; | |
7243 | struct intel_crtc *intel_crtc = | |
7244 | to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]); | |
7245 | unsigned long flags; | |
7246 | ||
e7d841ca CW |
7247 | /* NB: An MMIO update of the plane base pointer will also |
7248 | * generate a page-flip completion irq, i.e. every modeset | |
7249 | * is also accompanied by a spurious intel_prepare_page_flip(). | |
7250 | */ | |
6b95a207 | 7251 | spin_lock_irqsave(&dev->event_lock, flags); |
e7d841ca CW |
7252 | if (intel_crtc->unpin_work) |
7253 | atomic_inc_not_zero(&intel_crtc->unpin_work->pending); | |
6b95a207 KH |
7254 | spin_unlock_irqrestore(&dev->event_lock, flags); |
7255 | } | |
7256 | ||
e7d841ca CW |
7257 | inline static void intel_mark_page_flip_active(struct intel_crtc *intel_crtc) |
7258 | { | |
7259 | /* Ensure that the work item is consistent when activating it ... */ | |
7260 | smp_wmb(); | |
7261 | atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING); | |
7262 | /* and that it is marked active as soon as the irq could fire. */ | |
7263 | smp_wmb(); | |
7264 | } | |
7265 | ||
8c9f3aaf JB |
7266 | static int intel_gen2_queue_flip(struct drm_device *dev, |
7267 | struct drm_crtc *crtc, | |
7268 | struct drm_framebuffer *fb, | |
7269 | struct drm_i915_gem_object *obj) | |
7270 | { | |
7271 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7272 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
8c9f3aaf | 7273 | u32 flip_mask; |
6d90c952 | 7274 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
8c9f3aaf JB |
7275 | int ret; |
7276 | ||
6d90c952 | 7277 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
8c9f3aaf | 7278 | if (ret) |
83d4092b | 7279 | goto err; |
8c9f3aaf | 7280 | |
6d90c952 | 7281 | ret = intel_ring_begin(ring, 6); |
8c9f3aaf | 7282 | if (ret) |
83d4092b | 7283 | goto err_unpin; |
8c9f3aaf JB |
7284 | |
7285 | /* Can't queue multiple flips, so wait for the previous | |
7286 | * one to finish before executing the next. | |
7287 | */ | |
7288 | if (intel_crtc->plane) | |
7289 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; | |
7290 | else | |
7291 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; | |
6d90c952 DV |
7292 | intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask); |
7293 | intel_ring_emit(ring, MI_NOOP); | |
7294 | intel_ring_emit(ring, MI_DISPLAY_FLIP | | |
7295 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); | |
7296 | intel_ring_emit(ring, fb->pitches[0]); | |
e506a0c6 | 7297 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
6d90c952 | 7298 | intel_ring_emit(ring, 0); /* aux display base address, unused */ |
e7d841ca CW |
7299 | |
7300 | intel_mark_page_flip_active(intel_crtc); | |
6d90c952 | 7301 | intel_ring_advance(ring); |
83d4092b CW |
7302 | return 0; |
7303 | ||
7304 | err_unpin: | |
7305 | intel_unpin_fb_obj(obj); | |
7306 | err: | |
8c9f3aaf JB |
7307 | return ret; |
7308 | } | |
7309 | ||
7310 | static int intel_gen3_queue_flip(struct drm_device *dev, | |
7311 | struct drm_crtc *crtc, | |
7312 | struct drm_framebuffer *fb, | |
7313 | struct drm_i915_gem_object *obj) | |
7314 | { | |
7315 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7316 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
8c9f3aaf | 7317 | u32 flip_mask; |
6d90c952 | 7318 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
8c9f3aaf JB |
7319 | int ret; |
7320 | ||
6d90c952 | 7321 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
8c9f3aaf | 7322 | if (ret) |
83d4092b | 7323 | goto err; |
8c9f3aaf | 7324 | |
6d90c952 | 7325 | ret = intel_ring_begin(ring, 6); |
8c9f3aaf | 7326 | if (ret) |
83d4092b | 7327 | goto err_unpin; |
8c9f3aaf JB |
7328 | |
7329 | if (intel_crtc->plane) | |
7330 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; | |
7331 | else | |
7332 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; | |
6d90c952 DV |
7333 | intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask); |
7334 | intel_ring_emit(ring, MI_NOOP); | |
7335 | intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | | |
7336 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); | |
7337 | intel_ring_emit(ring, fb->pitches[0]); | |
e506a0c6 | 7338 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
6d90c952 DV |
7339 | intel_ring_emit(ring, MI_NOOP); |
7340 | ||
e7d841ca | 7341 | intel_mark_page_flip_active(intel_crtc); |
6d90c952 | 7342 | intel_ring_advance(ring); |
83d4092b CW |
7343 | return 0; |
7344 | ||
7345 | err_unpin: | |
7346 | intel_unpin_fb_obj(obj); | |
7347 | err: | |
8c9f3aaf JB |
7348 | return ret; |
7349 | } | |
7350 | ||
7351 | static int intel_gen4_queue_flip(struct drm_device *dev, | |
7352 | struct drm_crtc *crtc, | |
7353 | struct drm_framebuffer *fb, | |
7354 | struct drm_i915_gem_object *obj) | |
7355 | { | |
7356 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7357 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
7358 | uint32_t pf, pipesrc; | |
6d90c952 | 7359 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
8c9f3aaf JB |
7360 | int ret; |
7361 | ||
6d90c952 | 7362 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
8c9f3aaf | 7363 | if (ret) |
83d4092b | 7364 | goto err; |
8c9f3aaf | 7365 | |
6d90c952 | 7366 | ret = intel_ring_begin(ring, 4); |
8c9f3aaf | 7367 | if (ret) |
83d4092b | 7368 | goto err_unpin; |
8c9f3aaf JB |
7369 | |
7370 | /* i965+ uses the linear or tiled offsets from the | |
7371 | * Display Registers (which do not change across a page-flip) | |
7372 | * so we need only reprogram the base address. | |
7373 | */ | |
6d90c952 DV |
7374 | intel_ring_emit(ring, MI_DISPLAY_FLIP | |
7375 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); | |
7376 | intel_ring_emit(ring, fb->pitches[0]); | |
c2c75131 DV |
7377 | intel_ring_emit(ring, |
7378 | (obj->gtt_offset + intel_crtc->dspaddr_offset) | | |
7379 | obj->tiling_mode); | |
8c9f3aaf JB |
7380 | |
7381 | /* XXX Enabling the panel-fitter across page-flip is so far | |
7382 | * untested on non-native modes, so ignore it for now. | |
7383 | * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE; | |
7384 | */ | |
7385 | pf = 0; | |
7386 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; | |
6d90c952 | 7387 | intel_ring_emit(ring, pf | pipesrc); |
e7d841ca CW |
7388 | |
7389 | intel_mark_page_flip_active(intel_crtc); | |
6d90c952 | 7390 | intel_ring_advance(ring); |
83d4092b CW |
7391 | return 0; |
7392 | ||
7393 | err_unpin: | |
7394 | intel_unpin_fb_obj(obj); | |
7395 | err: | |
8c9f3aaf JB |
7396 | return ret; |
7397 | } | |
7398 | ||
7399 | static int intel_gen6_queue_flip(struct drm_device *dev, | |
7400 | struct drm_crtc *crtc, | |
7401 | struct drm_framebuffer *fb, | |
7402 | struct drm_i915_gem_object *obj) | |
7403 | { | |
7404 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7405 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6d90c952 | 7406 | struct intel_ring_buffer *ring = &dev_priv->ring[RCS]; |
8c9f3aaf JB |
7407 | uint32_t pf, pipesrc; |
7408 | int ret; | |
7409 | ||
6d90c952 | 7410 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); |
8c9f3aaf | 7411 | if (ret) |
83d4092b | 7412 | goto err; |
8c9f3aaf | 7413 | |
6d90c952 | 7414 | ret = intel_ring_begin(ring, 4); |
8c9f3aaf | 7415 | if (ret) |
83d4092b | 7416 | goto err_unpin; |
8c9f3aaf | 7417 | |
6d90c952 DV |
7418 | intel_ring_emit(ring, MI_DISPLAY_FLIP | |
7419 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); | |
7420 | intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode); | |
c2c75131 | 7421 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
8c9f3aaf | 7422 | |
dc257cf1 DV |
7423 | /* Contrary to the suggestions in the documentation, |
7424 | * "Enable Panel Fitter" does not seem to be required when page | |
7425 | * flipping with a non-native mode, and worse causes a normal | |
7426 | * modeset to fail. | |
7427 | * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE; | |
7428 | */ | |
7429 | pf = 0; | |
8c9f3aaf | 7430 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; |
6d90c952 | 7431 | intel_ring_emit(ring, pf | pipesrc); |
e7d841ca CW |
7432 | |
7433 | intel_mark_page_flip_active(intel_crtc); | |
6d90c952 | 7434 | intel_ring_advance(ring); |
83d4092b CW |
7435 | return 0; |
7436 | ||
7437 | err_unpin: | |
7438 | intel_unpin_fb_obj(obj); | |
7439 | err: | |
8c9f3aaf JB |
7440 | return ret; |
7441 | } | |
7442 | ||
7c9017e5 JB |
7443 | /* |
7444 | * On gen7 we currently use the blit ring because (in early silicon at least) | |
7445 | * the render ring doesn't give us interrpts for page flip completion, which | |
7446 | * means clients will hang after the first flip is queued. Fortunately the | |
7447 | * blit ring generates interrupts properly, so use it instead. | |
7448 | */ | |
7449 | static int intel_gen7_queue_flip(struct drm_device *dev, | |
7450 | struct drm_crtc *crtc, | |
7451 | struct drm_framebuffer *fb, | |
7452 | struct drm_i915_gem_object *obj) | |
7453 | { | |
7454 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7455 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
7456 | struct intel_ring_buffer *ring = &dev_priv->ring[BCS]; | |
cb05d8de | 7457 | uint32_t plane_bit = 0; |
7c9017e5 JB |
7458 | int ret; |
7459 | ||
7460 | ret = intel_pin_and_fence_fb_obj(dev, obj, ring); | |
7461 | if (ret) | |
83d4092b | 7462 | goto err; |
7c9017e5 | 7463 | |
cb05d8de DV |
7464 | switch(intel_crtc->plane) { |
7465 | case PLANE_A: | |
7466 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A; | |
7467 | break; | |
7468 | case PLANE_B: | |
7469 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B; | |
7470 | break; | |
7471 | case PLANE_C: | |
7472 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C; | |
7473 | break; | |
7474 | default: | |
7475 | WARN_ONCE(1, "unknown plane in flip command\n"); | |
7476 | ret = -ENODEV; | |
ab3951eb | 7477 | goto err_unpin; |
cb05d8de DV |
7478 | } |
7479 | ||
7c9017e5 JB |
7480 | ret = intel_ring_begin(ring, 4); |
7481 | if (ret) | |
83d4092b | 7482 | goto err_unpin; |
7c9017e5 | 7483 | |
cb05d8de | 7484 | intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit); |
01f2c773 | 7485 | intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode)); |
c2c75131 | 7486 | intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset); |
7c9017e5 | 7487 | intel_ring_emit(ring, (MI_NOOP)); |
e7d841ca CW |
7488 | |
7489 | intel_mark_page_flip_active(intel_crtc); | |
7c9017e5 | 7490 | intel_ring_advance(ring); |
83d4092b CW |
7491 | return 0; |
7492 | ||
7493 | err_unpin: | |
7494 | intel_unpin_fb_obj(obj); | |
7495 | err: | |
7c9017e5 JB |
7496 | return ret; |
7497 | } | |
7498 | ||
8c9f3aaf JB |
7499 | static int intel_default_queue_flip(struct drm_device *dev, |
7500 | struct drm_crtc *crtc, | |
7501 | struct drm_framebuffer *fb, | |
7502 | struct drm_i915_gem_object *obj) | |
7503 | { | |
7504 | return -ENODEV; | |
7505 | } | |
7506 | ||
6b95a207 KH |
7507 | static int intel_crtc_page_flip(struct drm_crtc *crtc, |
7508 | struct drm_framebuffer *fb, | |
7509 | struct drm_pending_vblank_event *event) | |
7510 | { | |
7511 | struct drm_device *dev = crtc->dev; | |
7512 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4a35f83b VS |
7513 | struct drm_framebuffer *old_fb = crtc->fb; |
7514 | struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj; | |
6b95a207 KH |
7515 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
7516 | struct intel_unpin_work *work; | |
8c9f3aaf | 7517 | unsigned long flags; |
52e68630 | 7518 | int ret; |
6b95a207 | 7519 | |
e6a595d2 VS |
7520 | /* Can't change pixel format via MI display flips. */ |
7521 | if (fb->pixel_format != crtc->fb->pixel_format) | |
7522 | return -EINVAL; | |
7523 | ||
7524 | /* | |
7525 | * TILEOFF/LINOFF registers can't be changed via MI display flips. | |
7526 | * Note that pitch changes could also affect these register. | |
7527 | */ | |
7528 | if (INTEL_INFO(dev)->gen > 3 && | |
7529 | (fb->offsets[0] != crtc->fb->offsets[0] || | |
7530 | fb->pitches[0] != crtc->fb->pitches[0])) | |
7531 | return -EINVAL; | |
7532 | ||
6b95a207 KH |
7533 | work = kzalloc(sizeof *work, GFP_KERNEL); |
7534 | if (work == NULL) | |
7535 | return -ENOMEM; | |
7536 | ||
6b95a207 | 7537 | work->event = event; |
b4a98e57 | 7538 | work->crtc = crtc; |
4a35f83b | 7539 | work->old_fb_obj = to_intel_framebuffer(old_fb)->obj; |
6b95a207 KH |
7540 | INIT_WORK(&work->work, intel_unpin_work_fn); |
7541 | ||
7317c75e JB |
7542 | ret = drm_vblank_get(dev, intel_crtc->pipe); |
7543 | if (ret) | |
7544 | goto free_work; | |
7545 | ||
6b95a207 KH |
7546 | /* We borrow the event spin lock for protecting unpin_work */ |
7547 | spin_lock_irqsave(&dev->event_lock, flags); | |
7548 | if (intel_crtc->unpin_work) { | |
7549 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
7550 | kfree(work); | |
7317c75e | 7551 | drm_vblank_put(dev, intel_crtc->pipe); |
468f0b44 CW |
7552 | |
7553 | DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); | |
6b95a207 KH |
7554 | return -EBUSY; |
7555 | } | |
7556 | intel_crtc->unpin_work = work; | |
7557 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
7558 | ||
b4a98e57 CW |
7559 | if (atomic_read(&intel_crtc->unpin_work_count) >= 2) |
7560 | flush_workqueue(dev_priv->wq); | |
7561 | ||
79158103 CW |
7562 | ret = i915_mutex_lock_interruptible(dev); |
7563 | if (ret) | |
7564 | goto cleanup; | |
6b95a207 | 7565 | |
75dfca80 | 7566 | /* Reference the objects for the scheduled work. */ |
05394f39 CW |
7567 | drm_gem_object_reference(&work->old_fb_obj->base); |
7568 | drm_gem_object_reference(&obj->base); | |
6b95a207 KH |
7569 | |
7570 | crtc->fb = fb; | |
96b099fd | 7571 | |
e1f99ce6 | 7572 | work->pending_flip_obj = obj; |
e1f99ce6 | 7573 | |
4e5359cd SF |
7574 | work->enable_stall_check = true; |
7575 | ||
b4a98e57 | 7576 | atomic_inc(&intel_crtc->unpin_work_count); |
10d83730 | 7577 | intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter); |
e1f99ce6 | 7578 | |
8c9f3aaf JB |
7579 | ret = dev_priv->display.queue_flip(dev, crtc, fb, obj); |
7580 | if (ret) | |
7581 | goto cleanup_pending; | |
6b95a207 | 7582 | |
7782de3b | 7583 | intel_disable_fbc(dev); |
c65355bb | 7584 | intel_mark_fb_busy(obj, NULL); |
6b95a207 KH |
7585 | mutex_unlock(&dev->struct_mutex); |
7586 | ||
e5510fac JB |
7587 | trace_i915_flip_request(intel_crtc->plane, obj); |
7588 | ||
6b95a207 | 7589 | return 0; |
96b099fd | 7590 | |
8c9f3aaf | 7591 | cleanup_pending: |
b4a98e57 | 7592 | atomic_dec(&intel_crtc->unpin_work_count); |
4a35f83b | 7593 | crtc->fb = old_fb; |
05394f39 CW |
7594 | drm_gem_object_unreference(&work->old_fb_obj->base); |
7595 | drm_gem_object_unreference(&obj->base); | |
96b099fd CW |
7596 | mutex_unlock(&dev->struct_mutex); |
7597 | ||
79158103 | 7598 | cleanup: |
96b099fd CW |
7599 | spin_lock_irqsave(&dev->event_lock, flags); |
7600 | intel_crtc->unpin_work = NULL; | |
7601 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
7602 | ||
7317c75e JB |
7603 | drm_vblank_put(dev, intel_crtc->pipe); |
7604 | free_work: | |
96b099fd CW |
7605 | kfree(work); |
7606 | ||
7607 | return ret; | |
6b95a207 KH |
7608 | } |
7609 | ||
f6e5b160 | 7610 | static struct drm_crtc_helper_funcs intel_helper_funcs = { |
f6e5b160 CW |
7611 | .mode_set_base_atomic = intel_pipe_set_base_atomic, |
7612 | .load_lut = intel_crtc_load_lut, | |
f6e5b160 CW |
7613 | }; |
7614 | ||
50f56119 DV |
7615 | static bool intel_encoder_crtc_ok(struct drm_encoder *encoder, |
7616 | struct drm_crtc *crtc) | |
7617 | { | |
7618 | struct drm_device *dev; | |
7619 | struct drm_crtc *tmp; | |
7620 | int crtc_mask = 1; | |
47f1c6c9 | 7621 | |
50f56119 | 7622 | WARN(!crtc, "checking null crtc?\n"); |
47f1c6c9 | 7623 | |
50f56119 | 7624 | dev = crtc->dev; |
47f1c6c9 | 7625 | |
50f56119 DV |
7626 | list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) { |
7627 | if (tmp == crtc) | |
7628 | break; | |
7629 | crtc_mask <<= 1; | |
7630 | } | |
47f1c6c9 | 7631 | |
50f56119 DV |
7632 | if (encoder->possible_crtcs & crtc_mask) |
7633 | return true; | |
7634 | return false; | |
47f1c6c9 | 7635 | } |
79e53945 | 7636 | |
9a935856 DV |
7637 | /** |
7638 | * intel_modeset_update_staged_output_state | |
7639 | * | |
7640 | * Updates the staged output configuration state, e.g. after we've read out the | |
7641 | * current hw state. | |
7642 | */ | |
7643 | static void intel_modeset_update_staged_output_state(struct drm_device *dev) | |
f6e5b160 | 7644 | { |
9a935856 DV |
7645 | struct intel_encoder *encoder; |
7646 | struct intel_connector *connector; | |
f6e5b160 | 7647 | |
9a935856 DV |
7648 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
7649 | base.head) { | |
7650 | connector->new_encoder = | |
7651 | to_intel_encoder(connector->base.encoder); | |
7652 | } | |
f6e5b160 | 7653 | |
9a935856 DV |
7654 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
7655 | base.head) { | |
7656 | encoder->new_crtc = | |
7657 | to_intel_crtc(encoder->base.crtc); | |
7658 | } | |
f6e5b160 CW |
7659 | } |
7660 | ||
9a935856 DV |
7661 | /** |
7662 | * intel_modeset_commit_output_state | |
7663 | * | |
7664 | * This function copies the stage display pipe configuration to the real one. | |
7665 | */ | |
7666 | static void intel_modeset_commit_output_state(struct drm_device *dev) | |
7667 | { | |
7668 | struct intel_encoder *encoder; | |
7669 | struct intel_connector *connector; | |
f6e5b160 | 7670 | |
9a935856 DV |
7671 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
7672 | base.head) { | |
7673 | connector->base.encoder = &connector->new_encoder->base; | |
7674 | } | |
f6e5b160 | 7675 | |
9a935856 DV |
7676 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
7677 | base.head) { | |
7678 | encoder->base.crtc = &encoder->new_crtc->base; | |
7679 | } | |
7680 | } | |
7681 | ||
050f7aeb DV |
7682 | static void |
7683 | connected_sink_compute_bpp(struct intel_connector * connector, | |
7684 | struct intel_crtc_config *pipe_config) | |
7685 | { | |
7686 | int bpp = pipe_config->pipe_bpp; | |
7687 | ||
7688 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n", | |
7689 | connector->base.base.id, | |
7690 | drm_get_connector_name(&connector->base)); | |
7691 | ||
7692 | /* Don't use an invalid EDID bpc value */ | |
7693 | if (connector->base.display_info.bpc && | |
7694 | connector->base.display_info.bpc * 3 < bpp) { | |
7695 | DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n", | |
7696 | bpp, connector->base.display_info.bpc*3); | |
7697 | pipe_config->pipe_bpp = connector->base.display_info.bpc*3; | |
7698 | } | |
7699 | ||
7700 | /* Clamp bpp to 8 on screens without EDID 1.4 */ | |
7701 | if (connector->base.display_info.bpc == 0 && bpp > 24) { | |
7702 | DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n", | |
7703 | bpp); | |
7704 | pipe_config->pipe_bpp = 24; | |
7705 | } | |
7706 | } | |
7707 | ||
4e53c2e0 | 7708 | static int |
050f7aeb DV |
7709 | compute_baseline_pipe_bpp(struct intel_crtc *crtc, |
7710 | struct drm_framebuffer *fb, | |
7711 | struct intel_crtc_config *pipe_config) | |
4e53c2e0 | 7712 | { |
050f7aeb DV |
7713 | struct drm_device *dev = crtc->base.dev; |
7714 | struct intel_connector *connector; | |
4e53c2e0 DV |
7715 | int bpp; |
7716 | ||
d42264b1 DV |
7717 | switch (fb->pixel_format) { |
7718 | case DRM_FORMAT_C8: | |
4e53c2e0 DV |
7719 | bpp = 8*3; /* since we go through a colormap */ |
7720 | break; | |
d42264b1 DV |
7721 | case DRM_FORMAT_XRGB1555: |
7722 | case DRM_FORMAT_ARGB1555: | |
7723 | /* checked in intel_framebuffer_init already */ | |
7724 | if (WARN_ON(INTEL_INFO(dev)->gen > 3)) | |
7725 | return -EINVAL; | |
7726 | case DRM_FORMAT_RGB565: | |
4e53c2e0 DV |
7727 | bpp = 6*3; /* min is 18bpp */ |
7728 | break; | |
d42264b1 DV |
7729 | case DRM_FORMAT_XBGR8888: |
7730 | case DRM_FORMAT_ABGR8888: | |
7731 | /* checked in intel_framebuffer_init already */ | |
7732 | if (WARN_ON(INTEL_INFO(dev)->gen < 4)) | |
7733 | return -EINVAL; | |
7734 | case DRM_FORMAT_XRGB8888: | |
7735 | case DRM_FORMAT_ARGB8888: | |
4e53c2e0 DV |
7736 | bpp = 8*3; |
7737 | break; | |
d42264b1 DV |
7738 | case DRM_FORMAT_XRGB2101010: |
7739 | case DRM_FORMAT_ARGB2101010: | |
7740 | case DRM_FORMAT_XBGR2101010: | |
7741 | case DRM_FORMAT_ABGR2101010: | |
7742 | /* checked in intel_framebuffer_init already */ | |
7743 | if (WARN_ON(INTEL_INFO(dev)->gen < 4)) | |
baba133a | 7744 | return -EINVAL; |
4e53c2e0 DV |
7745 | bpp = 10*3; |
7746 | break; | |
baba133a | 7747 | /* TODO: gen4+ supports 16 bpc floating point, too. */ |
4e53c2e0 DV |
7748 | default: |
7749 | DRM_DEBUG_KMS("unsupported depth\n"); | |
7750 | return -EINVAL; | |
7751 | } | |
7752 | ||
4e53c2e0 DV |
7753 | pipe_config->pipe_bpp = bpp; |
7754 | ||
7755 | /* Clamp display bpp to EDID value */ | |
7756 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
050f7aeb | 7757 | base.head) { |
1b829e05 DV |
7758 | if (!connector->new_encoder || |
7759 | connector->new_encoder->new_crtc != crtc) | |
4e53c2e0 DV |
7760 | continue; |
7761 | ||
050f7aeb | 7762 | connected_sink_compute_bpp(connector, pipe_config); |
4e53c2e0 DV |
7763 | } |
7764 | ||
7765 | return bpp; | |
7766 | } | |
7767 | ||
c0b03411 DV |
7768 | static void intel_dump_pipe_config(struct intel_crtc *crtc, |
7769 | struct intel_crtc_config *pipe_config, | |
7770 | const char *context) | |
7771 | { | |
7772 | DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id, | |
7773 | context, pipe_name(crtc->pipe)); | |
7774 | ||
7775 | DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder)); | |
7776 | DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n", | |
7777 | pipe_config->pipe_bpp, pipe_config->dither); | |
7778 | DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n", | |
7779 | pipe_config->has_pch_encoder, | |
7780 | pipe_config->fdi_lanes, | |
7781 | pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n, | |
7782 | pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n, | |
7783 | pipe_config->fdi_m_n.tu); | |
7784 | DRM_DEBUG_KMS("requested mode:\n"); | |
7785 | drm_mode_debug_printmodeline(&pipe_config->requested_mode); | |
7786 | DRM_DEBUG_KMS("adjusted mode:\n"); | |
7787 | drm_mode_debug_printmodeline(&pipe_config->adjusted_mode); | |
7788 | DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n", | |
7789 | pipe_config->gmch_pfit.control, | |
7790 | pipe_config->gmch_pfit.pgm_ratios, | |
7791 | pipe_config->gmch_pfit.lvds_border_bits); | |
7792 | DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x\n", | |
7793 | pipe_config->pch_pfit.pos, | |
7794 | pipe_config->pch_pfit.size); | |
42db64ef | 7795 | DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled); |
c0b03411 DV |
7796 | } |
7797 | ||
accfc0c5 DV |
7798 | static bool check_encoder_cloning(struct drm_crtc *crtc) |
7799 | { | |
7800 | int num_encoders = 0; | |
7801 | bool uncloneable_encoders = false; | |
7802 | struct intel_encoder *encoder; | |
7803 | ||
7804 | list_for_each_entry(encoder, &crtc->dev->mode_config.encoder_list, | |
7805 | base.head) { | |
7806 | if (&encoder->new_crtc->base != crtc) | |
7807 | continue; | |
7808 | ||
7809 | num_encoders++; | |
7810 | if (!encoder->cloneable) | |
7811 | uncloneable_encoders = true; | |
7812 | } | |
7813 | ||
7814 | return !(num_encoders > 1 && uncloneable_encoders); | |
7815 | } | |
7816 | ||
b8cecdf5 DV |
7817 | static struct intel_crtc_config * |
7818 | intel_modeset_pipe_config(struct drm_crtc *crtc, | |
4e53c2e0 | 7819 | struct drm_framebuffer *fb, |
b8cecdf5 | 7820 | struct drm_display_mode *mode) |
ee7b9f93 | 7821 | { |
7758a113 | 7822 | struct drm_device *dev = crtc->dev; |
7758a113 DV |
7823 | struct drm_encoder_helper_funcs *encoder_funcs; |
7824 | struct intel_encoder *encoder; | |
b8cecdf5 | 7825 | struct intel_crtc_config *pipe_config; |
e29c22c0 DV |
7826 | int plane_bpp, ret = -EINVAL; |
7827 | bool retry = true; | |
ee7b9f93 | 7828 | |
accfc0c5 DV |
7829 | if (!check_encoder_cloning(crtc)) { |
7830 | DRM_DEBUG_KMS("rejecting invalid cloning configuration\n"); | |
7831 | return ERR_PTR(-EINVAL); | |
7832 | } | |
7833 | ||
b8cecdf5 DV |
7834 | pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL); |
7835 | if (!pipe_config) | |
7758a113 DV |
7836 | return ERR_PTR(-ENOMEM); |
7837 | ||
b8cecdf5 DV |
7838 | drm_mode_copy(&pipe_config->adjusted_mode, mode); |
7839 | drm_mode_copy(&pipe_config->requested_mode, mode); | |
eccb140b | 7840 | pipe_config->cpu_transcoder = to_intel_crtc(crtc)->pipe; |
b8cecdf5 | 7841 | |
050f7aeb DV |
7842 | /* Compute a starting value for pipe_config->pipe_bpp taking the source |
7843 | * plane pixel format and any sink constraints into account. Returns the | |
7844 | * source plane bpp so that dithering can be selected on mismatches | |
7845 | * after encoders and crtc also have had their say. */ | |
7846 | plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc), | |
7847 | fb, pipe_config); | |
4e53c2e0 DV |
7848 | if (plane_bpp < 0) |
7849 | goto fail; | |
7850 | ||
e29c22c0 | 7851 | encoder_retry: |
ef1b460d | 7852 | /* Ensure the port clock defaults are reset when retrying. */ |
ff9a6750 | 7853 | pipe_config->port_clock = 0; |
ef1b460d | 7854 | pipe_config->pixel_multiplier = 1; |
ff9a6750 | 7855 | |
7758a113 DV |
7856 | /* Pass our mode to the connectors and the CRTC to give them a chance to |
7857 | * adjust it according to limitations or connector properties, and also | |
7858 | * a chance to reject the mode entirely. | |
47f1c6c9 | 7859 | */ |
7758a113 DV |
7860 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
7861 | base.head) { | |
47f1c6c9 | 7862 | |
7758a113 DV |
7863 | if (&encoder->new_crtc->base != crtc) |
7864 | continue; | |
7ae89233 DV |
7865 | |
7866 | if (encoder->compute_config) { | |
7867 | if (!(encoder->compute_config(encoder, pipe_config))) { | |
7868 | DRM_DEBUG_KMS("Encoder config failure\n"); | |
7869 | goto fail; | |
7870 | } | |
7871 | ||
7872 | continue; | |
7873 | } | |
7874 | ||
7758a113 | 7875 | encoder_funcs = encoder->base.helper_private; |
b8cecdf5 DV |
7876 | if (!(encoder_funcs->mode_fixup(&encoder->base, |
7877 | &pipe_config->requested_mode, | |
7878 | &pipe_config->adjusted_mode))) { | |
7758a113 DV |
7879 | DRM_DEBUG_KMS("Encoder fixup failed\n"); |
7880 | goto fail; | |
7881 | } | |
ee7b9f93 | 7882 | } |
47f1c6c9 | 7883 | |
ff9a6750 DV |
7884 | /* Set default port clock if not overwritten by the encoder. Needs to be |
7885 | * done afterwards in case the encoder adjusts the mode. */ | |
7886 | if (!pipe_config->port_clock) | |
7887 | pipe_config->port_clock = pipe_config->adjusted_mode.clock; | |
7888 | ||
e29c22c0 DV |
7889 | ret = intel_crtc_compute_config(crtc, pipe_config); |
7890 | if (ret < 0) { | |
7758a113 DV |
7891 | DRM_DEBUG_KMS("CRTC fixup failed\n"); |
7892 | goto fail; | |
ee7b9f93 | 7893 | } |
e29c22c0 DV |
7894 | |
7895 | if (ret == RETRY) { | |
7896 | if (WARN(!retry, "loop in pipe configuration computation\n")) { | |
7897 | ret = -EINVAL; | |
7898 | goto fail; | |
7899 | } | |
7900 | ||
7901 | DRM_DEBUG_KMS("CRTC bw constrained, retrying\n"); | |
7902 | retry = false; | |
7903 | goto encoder_retry; | |
7904 | } | |
7905 | ||
4e53c2e0 DV |
7906 | pipe_config->dither = pipe_config->pipe_bpp != plane_bpp; |
7907 | DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n", | |
7908 | plane_bpp, pipe_config->pipe_bpp, pipe_config->dither); | |
7909 | ||
b8cecdf5 | 7910 | return pipe_config; |
7758a113 | 7911 | fail: |
b8cecdf5 | 7912 | kfree(pipe_config); |
e29c22c0 | 7913 | return ERR_PTR(ret); |
ee7b9f93 | 7914 | } |
47f1c6c9 | 7915 | |
e2e1ed41 DV |
7916 | /* Computes which crtcs are affected and sets the relevant bits in the mask. For |
7917 | * simplicity we use the crtc's pipe number (because it's easier to obtain). */ | |
7918 | static void | |
7919 | intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes, | |
7920 | unsigned *prepare_pipes, unsigned *disable_pipes) | |
79e53945 JB |
7921 | { |
7922 | struct intel_crtc *intel_crtc; | |
e2e1ed41 DV |
7923 | struct drm_device *dev = crtc->dev; |
7924 | struct intel_encoder *encoder; | |
7925 | struct intel_connector *connector; | |
7926 | struct drm_crtc *tmp_crtc; | |
79e53945 | 7927 | |
e2e1ed41 | 7928 | *disable_pipes = *modeset_pipes = *prepare_pipes = 0; |
79e53945 | 7929 | |
e2e1ed41 DV |
7930 | /* Check which crtcs have changed outputs connected to them, these need |
7931 | * to be part of the prepare_pipes mask. We don't (yet) support global | |
7932 | * modeset across multiple crtcs, so modeset_pipes will only have one | |
7933 | * bit set at most. */ | |
7934 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
7935 | base.head) { | |
7936 | if (connector->base.encoder == &connector->new_encoder->base) | |
7937 | continue; | |
79e53945 | 7938 | |
e2e1ed41 DV |
7939 | if (connector->base.encoder) { |
7940 | tmp_crtc = connector->base.encoder->crtc; | |
7941 | ||
7942 | *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe; | |
7943 | } | |
7944 | ||
7945 | if (connector->new_encoder) | |
7946 | *prepare_pipes |= | |
7947 | 1 << connector->new_encoder->new_crtc->pipe; | |
79e53945 JB |
7948 | } |
7949 | ||
e2e1ed41 DV |
7950 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
7951 | base.head) { | |
7952 | if (encoder->base.crtc == &encoder->new_crtc->base) | |
7953 | continue; | |
7954 | ||
7955 | if (encoder->base.crtc) { | |
7956 | tmp_crtc = encoder->base.crtc; | |
7957 | ||
7958 | *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe; | |
7959 | } | |
7960 | ||
7961 | if (encoder->new_crtc) | |
7962 | *prepare_pipes |= 1 << encoder->new_crtc->pipe; | |
80824003 JB |
7963 | } |
7964 | ||
e2e1ed41 DV |
7965 | /* Check for any pipes that will be fully disabled ... */ |
7966 | list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, | |
7967 | base.head) { | |
7968 | bool used = false; | |
22fd0fab | 7969 | |
e2e1ed41 DV |
7970 | /* Don't try to disable disabled crtcs. */ |
7971 | if (!intel_crtc->base.enabled) | |
7972 | continue; | |
7e7d76c3 | 7973 | |
e2e1ed41 DV |
7974 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
7975 | base.head) { | |
7976 | if (encoder->new_crtc == intel_crtc) | |
7977 | used = true; | |
7978 | } | |
7979 | ||
7980 | if (!used) | |
7981 | *disable_pipes |= 1 << intel_crtc->pipe; | |
7e7d76c3 JB |
7982 | } |
7983 | ||
e2e1ed41 DV |
7984 | |
7985 | /* set_mode is also used to update properties on life display pipes. */ | |
7986 | intel_crtc = to_intel_crtc(crtc); | |
7987 | if (crtc->enabled) | |
7988 | *prepare_pipes |= 1 << intel_crtc->pipe; | |
7989 | ||
b6c5164d DV |
7990 | /* |
7991 | * For simplicity do a full modeset on any pipe where the output routing | |
7992 | * changed. We could be more clever, but that would require us to be | |
7993 | * more careful with calling the relevant encoder->mode_set functions. | |
7994 | */ | |
e2e1ed41 DV |
7995 | if (*prepare_pipes) |
7996 | *modeset_pipes = *prepare_pipes; | |
7997 | ||
7998 | /* ... and mask these out. */ | |
7999 | *modeset_pipes &= ~(*disable_pipes); | |
8000 | *prepare_pipes &= ~(*disable_pipes); | |
b6c5164d DV |
8001 | |
8002 | /* | |
8003 | * HACK: We don't (yet) fully support global modesets. intel_set_config | |
8004 | * obies this rule, but the modeset restore mode of | |
8005 | * intel_modeset_setup_hw_state does not. | |
8006 | */ | |
8007 | *modeset_pipes &= 1 << intel_crtc->pipe; | |
8008 | *prepare_pipes &= 1 << intel_crtc->pipe; | |
e3641d3f DV |
8009 | |
8010 | DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n", | |
8011 | *modeset_pipes, *prepare_pipes, *disable_pipes); | |
47f1c6c9 | 8012 | } |
79e53945 | 8013 | |
ea9d758d | 8014 | static bool intel_crtc_in_use(struct drm_crtc *crtc) |
f6e5b160 | 8015 | { |
ea9d758d | 8016 | struct drm_encoder *encoder; |
f6e5b160 | 8017 | struct drm_device *dev = crtc->dev; |
f6e5b160 | 8018 | |
ea9d758d DV |
8019 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) |
8020 | if (encoder->crtc == crtc) | |
8021 | return true; | |
8022 | ||
8023 | return false; | |
8024 | } | |
8025 | ||
8026 | static void | |
8027 | intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes) | |
8028 | { | |
8029 | struct intel_encoder *intel_encoder; | |
8030 | struct intel_crtc *intel_crtc; | |
8031 | struct drm_connector *connector; | |
8032 | ||
8033 | list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list, | |
8034 | base.head) { | |
8035 | if (!intel_encoder->base.crtc) | |
8036 | continue; | |
8037 | ||
8038 | intel_crtc = to_intel_crtc(intel_encoder->base.crtc); | |
8039 | ||
8040 | if (prepare_pipes & (1 << intel_crtc->pipe)) | |
8041 | intel_encoder->connectors_active = false; | |
8042 | } | |
8043 | ||
8044 | intel_modeset_commit_output_state(dev); | |
8045 | ||
8046 | /* Update computed state. */ | |
8047 | list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, | |
8048 | base.head) { | |
8049 | intel_crtc->base.enabled = intel_crtc_in_use(&intel_crtc->base); | |
8050 | } | |
8051 | ||
8052 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { | |
8053 | if (!connector->encoder || !connector->encoder->crtc) | |
8054 | continue; | |
8055 | ||
8056 | intel_crtc = to_intel_crtc(connector->encoder->crtc); | |
8057 | ||
8058 | if (prepare_pipes & (1 << intel_crtc->pipe)) { | |
68d34720 DV |
8059 | struct drm_property *dpms_property = |
8060 | dev->mode_config.dpms_property; | |
8061 | ||
ea9d758d | 8062 | connector->dpms = DRM_MODE_DPMS_ON; |
662595df | 8063 | drm_object_property_set_value(&connector->base, |
68d34720 DV |
8064 | dpms_property, |
8065 | DRM_MODE_DPMS_ON); | |
ea9d758d DV |
8066 | |
8067 | intel_encoder = to_intel_encoder(connector->encoder); | |
8068 | intel_encoder->connectors_active = true; | |
8069 | } | |
8070 | } | |
8071 | ||
8072 | } | |
8073 | ||
25c5b266 DV |
8074 | #define for_each_intel_crtc_masked(dev, mask, intel_crtc) \ |
8075 | list_for_each_entry((intel_crtc), \ | |
8076 | &(dev)->mode_config.crtc_list, \ | |
8077 | base.head) \ | |
0973f18f | 8078 | if (mask & (1 <<(intel_crtc)->pipe)) |
25c5b266 | 8079 | |
0e8ffe1b | 8080 | static bool |
2fa2fe9a DV |
8081 | intel_pipe_config_compare(struct drm_device *dev, |
8082 | struct intel_crtc_config *current_config, | |
0e8ffe1b DV |
8083 | struct intel_crtc_config *pipe_config) |
8084 | { | |
08a24034 DV |
8085 | #define PIPE_CONF_CHECK_I(name) \ |
8086 | if (current_config->name != pipe_config->name) { \ | |
8087 | DRM_ERROR("mismatch in " #name " " \ | |
8088 | "(expected %i, found %i)\n", \ | |
8089 | current_config->name, \ | |
8090 | pipe_config->name); \ | |
8091 | return false; \ | |
88adfff1 DV |
8092 | } |
8093 | ||
1bd1bd80 DV |
8094 | #define PIPE_CONF_CHECK_FLAGS(name, mask) \ |
8095 | if ((current_config->name ^ pipe_config->name) & (mask)) { \ | |
8096 | DRM_ERROR("mismatch in " #name " " \ | |
8097 | "(expected %i, found %i)\n", \ | |
8098 | current_config->name & (mask), \ | |
8099 | pipe_config->name & (mask)); \ | |
8100 | return false; \ | |
8101 | } | |
8102 | ||
bb760063 DV |
8103 | #define PIPE_CONF_QUIRK(quirk) \ |
8104 | ((current_config->quirks | pipe_config->quirks) & (quirk)) | |
8105 | ||
eccb140b DV |
8106 | PIPE_CONF_CHECK_I(cpu_transcoder); |
8107 | ||
08a24034 DV |
8108 | PIPE_CONF_CHECK_I(has_pch_encoder); |
8109 | PIPE_CONF_CHECK_I(fdi_lanes); | |
72419203 DV |
8110 | PIPE_CONF_CHECK_I(fdi_m_n.gmch_m); |
8111 | PIPE_CONF_CHECK_I(fdi_m_n.gmch_n); | |
8112 | PIPE_CONF_CHECK_I(fdi_m_n.link_m); | |
8113 | PIPE_CONF_CHECK_I(fdi_m_n.link_n); | |
8114 | PIPE_CONF_CHECK_I(fdi_m_n.tu); | |
08a24034 | 8115 | |
1bd1bd80 DV |
8116 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay); |
8117 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal); | |
8118 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start); | |
8119 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end); | |
8120 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start); | |
8121 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end); | |
8122 | ||
8123 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay); | |
8124 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal); | |
8125 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start); | |
8126 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end); | |
8127 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start); | |
8128 | PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end); | |
8129 | ||
6c49f241 DV |
8130 | if (!HAS_PCH_SPLIT(dev)) |
8131 | PIPE_CONF_CHECK_I(pixel_multiplier); | |
8132 | ||
1bd1bd80 DV |
8133 | PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags, |
8134 | DRM_MODE_FLAG_INTERLACE); | |
8135 | ||
bb760063 DV |
8136 | if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) { |
8137 | PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags, | |
8138 | DRM_MODE_FLAG_PHSYNC); | |
8139 | PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags, | |
8140 | DRM_MODE_FLAG_NHSYNC); | |
8141 | PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags, | |
8142 | DRM_MODE_FLAG_PVSYNC); | |
8143 | PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags, | |
8144 | DRM_MODE_FLAG_NVSYNC); | |
8145 | } | |
045ac3b5 | 8146 | |
1bd1bd80 DV |
8147 | PIPE_CONF_CHECK_I(requested_mode.hdisplay); |
8148 | PIPE_CONF_CHECK_I(requested_mode.vdisplay); | |
8149 | ||
2fa2fe9a DV |
8150 | PIPE_CONF_CHECK_I(gmch_pfit.control); |
8151 | /* pfit ratios are autocomputed by the hw on gen4+ */ | |
8152 | if (INTEL_INFO(dev)->gen < 4) | |
8153 | PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios); | |
8154 | PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits); | |
8155 | PIPE_CONF_CHECK_I(pch_pfit.pos); | |
8156 | PIPE_CONF_CHECK_I(pch_pfit.size); | |
8157 | ||
42db64ef PZ |
8158 | PIPE_CONF_CHECK_I(ips_enabled); |
8159 | ||
08a24034 | 8160 | #undef PIPE_CONF_CHECK_I |
1bd1bd80 | 8161 | #undef PIPE_CONF_CHECK_FLAGS |
bb760063 | 8162 | #undef PIPE_CONF_QUIRK |
627eb5a3 | 8163 | |
0e8ffe1b DV |
8164 | return true; |
8165 | } | |
8166 | ||
b980514c | 8167 | void |
8af6cf88 DV |
8168 | intel_modeset_check_state(struct drm_device *dev) |
8169 | { | |
0e8ffe1b | 8170 | drm_i915_private_t *dev_priv = dev->dev_private; |
8af6cf88 DV |
8171 | struct intel_crtc *crtc; |
8172 | struct intel_encoder *encoder; | |
8173 | struct intel_connector *connector; | |
0e8ffe1b | 8174 | struct intel_crtc_config pipe_config; |
8af6cf88 DV |
8175 | |
8176 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
8177 | base.head) { | |
8178 | /* This also checks the encoder/connector hw state with the | |
8179 | * ->get_hw_state callbacks. */ | |
8180 | intel_connector_check_state(connector); | |
8181 | ||
8182 | WARN(&connector->new_encoder->base != connector->base.encoder, | |
8183 | "connector's staged encoder doesn't match current encoder\n"); | |
8184 | } | |
8185 | ||
8186 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, | |
8187 | base.head) { | |
8188 | bool enabled = false; | |
8189 | bool active = false; | |
8190 | enum pipe pipe, tracked_pipe; | |
8191 | ||
8192 | DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", | |
8193 | encoder->base.base.id, | |
8194 | drm_get_encoder_name(&encoder->base)); | |
8195 | ||
8196 | WARN(&encoder->new_crtc->base != encoder->base.crtc, | |
8197 | "encoder's stage crtc doesn't match current crtc\n"); | |
8198 | WARN(encoder->connectors_active && !encoder->base.crtc, | |
8199 | "encoder's active_connectors set, but no crtc\n"); | |
8200 | ||
8201 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
8202 | base.head) { | |
8203 | if (connector->base.encoder != &encoder->base) | |
8204 | continue; | |
8205 | enabled = true; | |
8206 | if (connector->base.dpms != DRM_MODE_DPMS_OFF) | |
8207 | active = true; | |
8208 | } | |
8209 | WARN(!!encoder->base.crtc != enabled, | |
8210 | "encoder's enabled state mismatch " | |
8211 | "(expected %i, found %i)\n", | |
8212 | !!encoder->base.crtc, enabled); | |
8213 | WARN(active && !encoder->base.crtc, | |
8214 | "active encoder with no crtc\n"); | |
8215 | ||
8216 | WARN(encoder->connectors_active != active, | |
8217 | "encoder's computed active state doesn't match tracked active state " | |
8218 | "(expected %i, found %i)\n", active, encoder->connectors_active); | |
8219 | ||
8220 | active = encoder->get_hw_state(encoder, &pipe); | |
8221 | WARN(active != encoder->connectors_active, | |
8222 | "encoder's hw state doesn't match sw tracking " | |
8223 | "(expected %i, found %i)\n", | |
8224 | encoder->connectors_active, active); | |
8225 | ||
8226 | if (!encoder->base.crtc) | |
8227 | continue; | |
8228 | ||
8229 | tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe; | |
8230 | WARN(active && pipe != tracked_pipe, | |
8231 | "active encoder's pipe doesn't match" | |
8232 | "(expected %i, found %i)\n", | |
8233 | tracked_pipe, pipe); | |
8234 | ||
8235 | } | |
8236 | ||
8237 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, | |
8238 | base.head) { | |
8239 | bool enabled = false; | |
8240 | bool active = false; | |
8241 | ||
045ac3b5 JB |
8242 | memset(&pipe_config, 0, sizeof(pipe_config)); |
8243 | ||
8af6cf88 DV |
8244 | DRM_DEBUG_KMS("[CRTC:%d]\n", |
8245 | crtc->base.base.id); | |
8246 | ||
8247 | WARN(crtc->active && !crtc->base.enabled, | |
8248 | "active crtc, but not enabled in sw tracking\n"); | |
8249 | ||
8250 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, | |
8251 | base.head) { | |
8252 | if (encoder->base.crtc != &crtc->base) | |
8253 | continue; | |
8254 | enabled = true; | |
8255 | if (encoder->connectors_active) | |
8256 | active = true; | |
8257 | } | |
6c49f241 | 8258 | |
8af6cf88 DV |
8259 | WARN(active != crtc->active, |
8260 | "crtc's computed active state doesn't match tracked active state " | |
8261 | "(expected %i, found %i)\n", active, crtc->active); | |
8262 | WARN(enabled != crtc->base.enabled, | |
8263 | "crtc's computed enabled state doesn't match tracked enabled state " | |
8264 | "(expected %i, found %i)\n", enabled, crtc->base.enabled); | |
8265 | ||
0e8ffe1b DV |
8266 | active = dev_priv->display.get_pipe_config(crtc, |
8267 | &pipe_config); | |
6c49f241 DV |
8268 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
8269 | base.head) { | |
8270 | if (encoder->base.crtc != &crtc->base) | |
8271 | continue; | |
8272 | if (encoder->get_config) | |
8273 | encoder->get_config(encoder, &pipe_config); | |
8274 | } | |
8275 | ||
0e8ffe1b DV |
8276 | WARN(crtc->active != active, |
8277 | "crtc active state doesn't match with hw state " | |
8278 | "(expected %i, found %i)\n", crtc->active, active); | |
8279 | ||
c0b03411 DV |
8280 | if (active && |
8281 | !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) { | |
8282 | WARN(1, "pipe state doesn't match!\n"); | |
8283 | intel_dump_pipe_config(crtc, &pipe_config, | |
8284 | "[hw state]"); | |
8285 | intel_dump_pipe_config(crtc, &crtc->config, | |
8286 | "[sw state]"); | |
8287 | } | |
8af6cf88 DV |
8288 | } |
8289 | } | |
8290 | ||
f30da187 DV |
8291 | static int __intel_set_mode(struct drm_crtc *crtc, |
8292 | struct drm_display_mode *mode, | |
8293 | int x, int y, struct drm_framebuffer *fb) | |
a6778b3c DV |
8294 | { |
8295 | struct drm_device *dev = crtc->dev; | |
dbf2b54e | 8296 | drm_i915_private_t *dev_priv = dev->dev_private; |
b8cecdf5 DV |
8297 | struct drm_display_mode *saved_mode, *saved_hwmode; |
8298 | struct intel_crtc_config *pipe_config = NULL; | |
25c5b266 DV |
8299 | struct intel_crtc *intel_crtc; |
8300 | unsigned disable_pipes, prepare_pipes, modeset_pipes; | |
c0c36b94 | 8301 | int ret = 0; |
a6778b3c | 8302 | |
3ac18232 | 8303 | saved_mode = kmalloc(2 * sizeof(*saved_mode), GFP_KERNEL); |
c0c36b94 CW |
8304 | if (!saved_mode) |
8305 | return -ENOMEM; | |
3ac18232 | 8306 | saved_hwmode = saved_mode + 1; |
a6778b3c | 8307 | |
e2e1ed41 | 8308 | intel_modeset_affected_pipes(crtc, &modeset_pipes, |
25c5b266 DV |
8309 | &prepare_pipes, &disable_pipes); |
8310 | ||
3ac18232 TG |
8311 | *saved_hwmode = crtc->hwmode; |
8312 | *saved_mode = crtc->mode; | |
a6778b3c | 8313 | |
25c5b266 DV |
8314 | /* Hack: Because we don't (yet) support global modeset on multiple |
8315 | * crtcs, we don't keep track of the new mode for more than one crtc. | |
8316 | * Hence simply check whether any bit is set in modeset_pipes in all the | |
8317 | * pieces of code that are not yet converted to deal with mutliple crtcs | |
8318 | * changing their mode at the same time. */ | |
25c5b266 | 8319 | if (modeset_pipes) { |
4e53c2e0 | 8320 | pipe_config = intel_modeset_pipe_config(crtc, fb, mode); |
b8cecdf5 DV |
8321 | if (IS_ERR(pipe_config)) { |
8322 | ret = PTR_ERR(pipe_config); | |
8323 | pipe_config = NULL; | |
8324 | ||
3ac18232 | 8325 | goto out; |
25c5b266 | 8326 | } |
c0b03411 DV |
8327 | intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config, |
8328 | "[modeset]"); | |
25c5b266 | 8329 | } |
a6778b3c | 8330 | |
460da916 DV |
8331 | for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc) |
8332 | intel_crtc_disable(&intel_crtc->base); | |
8333 | ||
ea9d758d DV |
8334 | for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) { |
8335 | if (intel_crtc->base.enabled) | |
8336 | dev_priv->display.crtc_disable(&intel_crtc->base); | |
8337 | } | |
a6778b3c | 8338 | |
6c4c86f5 DV |
8339 | /* crtc->mode is already used by the ->mode_set callbacks, hence we need |
8340 | * to set it here already despite that we pass it down the callchain. | |
f6e5b160 | 8341 | */ |
b8cecdf5 | 8342 | if (modeset_pipes) { |
25c5b266 | 8343 | crtc->mode = *mode; |
b8cecdf5 DV |
8344 | /* mode_set/enable/disable functions rely on a correct pipe |
8345 | * config. */ | |
8346 | to_intel_crtc(crtc)->config = *pipe_config; | |
8347 | } | |
7758a113 | 8348 | |
ea9d758d DV |
8349 | /* Only after disabling all output pipelines that will be changed can we |
8350 | * update the the output configuration. */ | |
8351 | intel_modeset_update_state(dev, prepare_pipes); | |
f6e5b160 | 8352 | |
47fab737 DV |
8353 | if (dev_priv->display.modeset_global_resources) |
8354 | dev_priv->display.modeset_global_resources(dev); | |
8355 | ||
a6778b3c DV |
8356 | /* Set up the DPLL and any encoders state that needs to adjust or depend |
8357 | * on the DPLL. | |
f6e5b160 | 8358 | */ |
25c5b266 | 8359 | for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) { |
c0c36b94 | 8360 | ret = intel_crtc_mode_set(&intel_crtc->base, |
c0c36b94 CW |
8361 | x, y, fb); |
8362 | if (ret) | |
8363 | goto done; | |
a6778b3c DV |
8364 | } |
8365 | ||
8366 | /* Now enable the clocks, plane, pipe, and connectors that we set up. */ | |
25c5b266 DV |
8367 | for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) |
8368 | dev_priv->display.crtc_enable(&intel_crtc->base); | |
a6778b3c | 8369 | |
25c5b266 DV |
8370 | if (modeset_pipes) { |
8371 | /* Store real post-adjustment hardware mode. */ | |
b8cecdf5 | 8372 | crtc->hwmode = pipe_config->adjusted_mode; |
a6778b3c | 8373 | |
25c5b266 DV |
8374 | /* Calculate and store various constants which |
8375 | * are later needed by vblank and swap-completion | |
8376 | * timestamping. They are derived from true hwmode. | |
8377 | */ | |
8378 | drm_calc_timestamping_constants(crtc); | |
8379 | } | |
a6778b3c DV |
8380 | |
8381 | /* FIXME: add subpixel order */ | |
8382 | done: | |
c0c36b94 | 8383 | if (ret && crtc->enabled) { |
3ac18232 TG |
8384 | crtc->hwmode = *saved_hwmode; |
8385 | crtc->mode = *saved_mode; | |
a6778b3c DV |
8386 | } |
8387 | ||
3ac18232 | 8388 | out: |
b8cecdf5 | 8389 | kfree(pipe_config); |
3ac18232 | 8390 | kfree(saved_mode); |
a6778b3c | 8391 | return ret; |
f6e5b160 CW |
8392 | } |
8393 | ||
f30da187 DV |
8394 | int intel_set_mode(struct drm_crtc *crtc, |
8395 | struct drm_display_mode *mode, | |
8396 | int x, int y, struct drm_framebuffer *fb) | |
8397 | { | |
8398 | int ret; | |
8399 | ||
8400 | ret = __intel_set_mode(crtc, mode, x, y, fb); | |
8401 | ||
8402 | if (ret == 0) | |
8403 | intel_modeset_check_state(crtc->dev); | |
8404 | ||
8405 | return ret; | |
8406 | } | |
8407 | ||
c0c36b94 CW |
8408 | void intel_crtc_restore_mode(struct drm_crtc *crtc) |
8409 | { | |
8410 | intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->fb); | |
8411 | } | |
8412 | ||
25c5b266 DV |
8413 | #undef for_each_intel_crtc_masked |
8414 | ||
d9e55608 DV |
8415 | static void intel_set_config_free(struct intel_set_config *config) |
8416 | { | |
8417 | if (!config) | |
8418 | return; | |
8419 | ||
1aa4b628 DV |
8420 | kfree(config->save_connector_encoders); |
8421 | kfree(config->save_encoder_crtcs); | |
d9e55608 DV |
8422 | kfree(config); |
8423 | } | |
8424 | ||
85f9eb71 DV |
8425 | static int intel_set_config_save_state(struct drm_device *dev, |
8426 | struct intel_set_config *config) | |
8427 | { | |
85f9eb71 DV |
8428 | struct drm_encoder *encoder; |
8429 | struct drm_connector *connector; | |
8430 | int count; | |
8431 | ||
1aa4b628 DV |
8432 | config->save_encoder_crtcs = |
8433 | kcalloc(dev->mode_config.num_encoder, | |
8434 | sizeof(struct drm_crtc *), GFP_KERNEL); | |
8435 | if (!config->save_encoder_crtcs) | |
85f9eb71 DV |
8436 | return -ENOMEM; |
8437 | ||
1aa4b628 DV |
8438 | config->save_connector_encoders = |
8439 | kcalloc(dev->mode_config.num_connector, | |
8440 | sizeof(struct drm_encoder *), GFP_KERNEL); | |
8441 | if (!config->save_connector_encoders) | |
85f9eb71 DV |
8442 | return -ENOMEM; |
8443 | ||
8444 | /* Copy data. Note that driver private data is not affected. | |
8445 | * Should anything bad happen only the expected state is | |
8446 | * restored, not the drivers personal bookkeeping. | |
8447 | */ | |
85f9eb71 DV |
8448 | count = 0; |
8449 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { | |
1aa4b628 | 8450 | config->save_encoder_crtcs[count++] = encoder->crtc; |
85f9eb71 DV |
8451 | } |
8452 | ||
8453 | count = 0; | |
8454 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { | |
1aa4b628 | 8455 | config->save_connector_encoders[count++] = connector->encoder; |
85f9eb71 DV |
8456 | } |
8457 | ||
8458 | return 0; | |
8459 | } | |
8460 | ||
8461 | static void intel_set_config_restore_state(struct drm_device *dev, | |
8462 | struct intel_set_config *config) | |
8463 | { | |
9a935856 DV |
8464 | struct intel_encoder *encoder; |
8465 | struct intel_connector *connector; | |
85f9eb71 DV |
8466 | int count; |
8467 | ||
85f9eb71 | 8468 | count = 0; |
9a935856 DV |
8469 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) { |
8470 | encoder->new_crtc = | |
8471 | to_intel_crtc(config->save_encoder_crtcs[count++]); | |
85f9eb71 DV |
8472 | } |
8473 | ||
8474 | count = 0; | |
9a935856 DV |
8475 | list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) { |
8476 | connector->new_encoder = | |
8477 | to_intel_encoder(config->save_connector_encoders[count++]); | |
85f9eb71 DV |
8478 | } |
8479 | } | |
8480 | ||
5e2b584e DV |
8481 | static void |
8482 | intel_set_config_compute_mode_changes(struct drm_mode_set *set, | |
8483 | struct intel_set_config *config) | |
8484 | { | |
8485 | ||
8486 | /* We should be able to check here if the fb has the same properties | |
8487 | * and then just flip_or_move it */ | |
8488 | if (set->crtc->fb != set->fb) { | |
8489 | /* If we have no fb then treat it as a full mode set */ | |
8490 | if (set->crtc->fb == NULL) { | |
8491 | DRM_DEBUG_KMS("crtc has no fb, full mode set\n"); | |
8492 | config->mode_changed = true; | |
8493 | } else if (set->fb == NULL) { | |
8494 | config->mode_changed = true; | |
72f4901e DV |
8495 | } else if (set->fb->pixel_format != |
8496 | set->crtc->fb->pixel_format) { | |
5e2b584e DV |
8497 | config->mode_changed = true; |
8498 | } else | |
8499 | config->fb_changed = true; | |
8500 | } | |
8501 | ||
835c5873 | 8502 | if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y)) |
5e2b584e DV |
8503 | config->fb_changed = true; |
8504 | ||
8505 | if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) { | |
8506 | DRM_DEBUG_KMS("modes are different, full mode set\n"); | |
8507 | drm_mode_debug_printmodeline(&set->crtc->mode); | |
8508 | drm_mode_debug_printmodeline(set->mode); | |
8509 | config->mode_changed = true; | |
8510 | } | |
8511 | } | |
8512 | ||
2e431051 | 8513 | static int |
9a935856 DV |
8514 | intel_modeset_stage_output_state(struct drm_device *dev, |
8515 | struct drm_mode_set *set, | |
8516 | struct intel_set_config *config) | |
50f56119 | 8517 | { |
85f9eb71 | 8518 | struct drm_crtc *new_crtc; |
9a935856 DV |
8519 | struct intel_connector *connector; |
8520 | struct intel_encoder *encoder; | |
2e431051 | 8521 | int count, ro; |
50f56119 | 8522 | |
9abdda74 | 8523 | /* The upper layers ensure that we either disable a crtc or have a list |
9a935856 DV |
8524 | * of connectors. For paranoia, double-check this. */ |
8525 | WARN_ON(!set->fb && (set->num_connectors != 0)); | |
8526 | WARN_ON(set->fb && (set->num_connectors == 0)); | |
8527 | ||
50f56119 | 8528 | count = 0; |
9a935856 DV |
8529 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
8530 | base.head) { | |
8531 | /* Otherwise traverse passed in connector list and get encoders | |
8532 | * for them. */ | |
50f56119 | 8533 | for (ro = 0; ro < set->num_connectors; ro++) { |
9a935856 DV |
8534 | if (set->connectors[ro] == &connector->base) { |
8535 | connector->new_encoder = connector->encoder; | |
50f56119 DV |
8536 | break; |
8537 | } | |
8538 | } | |
8539 | ||
9a935856 DV |
8540 | /* If we disable the crtc, disable all its connectors. Also, if |
8541 | * the connector is on the changing crtc but not on the new | |
8542 | * connector list, disable it. */ | |
8543 | if ((!set->fb || ro == set->num_connectors) && | |
8544 | connector->base.encoder && | |
8545 | connector->base.encoder->crtc == set->crtc) { | |
8546 | connector->new_encoder = NULL; | |
8547 | ||
8548 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n", | |
8549 | connector->base.base.id, | |
8550 | drm_get_connector_name(&connector->base)); | |
8551 | } | |
8552 | ||
8553 | ||
8554 | if (&connector->new_encoder->base != connector->base.encoder) { | |
50f56119 | 8555 | DRM_DEBUG_KMS("encoder changed, full mode switch\n"); |
5e2b584e | 8556 | config->mode_changed = true; |
50f56119 DV |
8557 | } |
8558 | } | |
9a935856 | 8559 | /* connector->new_encoder is now updated for all connectors. */ |
50f56119 | 8560 | |
9a935856 | 8561 | /* Update crtc of enabled connectors. */ |
50f56119 | 8562 | count = 0; |
9a935856 DV |
8563 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
8564 | base.head) { | |
8565 | if (!connector->new_encoder) | |
50f56119 DV |
8566 | continue; |
8567 | ||
9a935856 | 8568 | new_crtc = connector->new_encoder->base.crtc; |
50f56119 DV |
8569 | |
8570 | for (ro = 0; ro < set->num_connectors; ro++) { | |
9a935856 | 8571 | if (set->connectors[ro] == &connector->base) |
50f56119 DV |
8572 | new_crtc = set->crtc; |
8573 | } | |
8574 | ||
8575 | /* Make sure the new CRTC will work with the encoder */ | |
9a935856 DV |
8576 | if (!intel_encoder_crtc_ok(&connector->new_encoder->base, |
8577 | new_crtc)) { | |
5e2b584e | 8578 | return -EINVAL; |
50f56119 | 8579 | } |
9a935856 DV |
8580 | connector->encoder->new_crtc = to_intel_crtc(new_crtc); |
8581 | ||
8582 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n", | |
8583 | connector->base.base.id, | |
8584 | drm_get_connector_name(&connector->base), | |
8585 | new_crtc->base.id); | |
8586 | } | |
8587 | ||
8588 | /* Check for any encoders that needs to be disabled. */ | |
8589 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, | |
8590 | base.head) { | |
8591 | list_for_each_entry(connector, | |
8592 | &dev->mode_config.connector_list, | |
8593 | base.head) { | |
8594 | if (connector->new_encoder == encoder) { | |
8595 | WARN_ON(!connector->new_encoder->new_crtc); | |
8596 | ||
8597 | goto next_encoder; | |
8598 | } | |
8599 | } | |
8600 | encoder->new_crtc = NULL; | |
8601 | next_encoder: | |
8602 | /* Only now check for crtc changes so we don't miss encoders | |
8603 | * that will be disabled. */ | |
8604 | if (&encoder->new_crtc->base != encoder->base.crtc) { | |
50f56119 | 8605 | DRM_DEBUG_KMS("crtc changed, full mode switch\n"); |
5e2b584e | 8606 | config->mode_changed = true; |
50f56119 DV |
8607 | } |
8608 | } | |
9a935856 | 8609 | /* Now we've also updated encoder->new_crtc for all encoders. */ |
50f56119 | 8610 | |
2e431051 DV |
8611 | return 0; |
8612 | } | |
8613 | ||
8614 | static int intel_crtc_set_config(struct drm_mode_set *set) | |
8615 | { | |
8616 | struct drm_device *dev; | |
2e431051 DV |
8617 | struct drm_mode_set save_set; |
8618 | struct intel_set_config *config; | |
8619 | int ret; | |
2e431051 | 8620 | |
8d3e375e DV |
8621 | BUG_ON(!set); |
8622 | BUG_ON(!set->crtc); | |
8623 | BUG_ON(!set->crtc->helper_private); | |
2e431051 | 8624 | |
7e53f3a4 DV |
8625 | /* Enforce sane interface api - has been abused by the fb helper. */ |
8626 | BUG_ON(!set->mode && set->fb); | |
8627 | BUG_ON(set->fb && set->num_connectors == 0); | |
431e50f7 | 8628 | |
2e431051 DV |
8629 | if (set->fb) { |
8630 | DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n", | |
8631 | set->crtc->base.id, set->fb->base.id, | |
8632 | (int)set->num_connectors, set->x, set->y); | |
8633 | } else { | |
8634 | DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id); | |
2e431051 DV |
8635 | } |
8636 | ||
8637 | dev = set->crtc->dev; | |
8638 | ||
8639 | ret = -ENOMEM; | |
8640 | config = kzalloc(sizeof(*config), GFP_KERNEL); | |
8641 | if (!config) | |
8642 | goto out_config; | |
8643 | ||
8644 | ret = intel_set_config_save_state(dev, config); | |
8645 | if (ret) | |
8646 | goto out_config; | |
8647 | ||
8648 | save_set.crtc = set->crtc; | |
8649 | save_set.mode = &set->crtc->mode; | |
8650 | save_set.x = set->crtc->x; | |
8651 | save_set.y = set->crtc->y; | |
8652 | save_set.fb = set->crtc->fb; | |
8653 | ||
8654 | /* Compute whether we need a full modeset, only an fb base update or no | |
8655 | * change at all. In the future we might also check whether only the | |
8656 | * mode changed, e.g. for LVDS where we only change the panel fitter in | |
8657 | * such cases. */ | |
8658 | intel_set_config_compute_mode_changes(set, config); | |
8659 | ||
9a935856 | 8660 | ret = intel_modeset_stage_output_state(dev, set, config); |
2e431051 DV |
8661 | if (ret) |
8662 | goto fail; | |
8663 | ||
5e2b584e | 8664 | if (config->mode_changed) { |
c0c36b94 CW |
8665 | ret = intel_set_mode(set->crtc, set->mode, |
8666 | set->x, set->y, set->fb); | |
8667 | if (ret) { | |
8668 | DRM_ERROR("failed to set mode on [CRTC:%d], err = %d\n", | |
8669 | set->crtc->base.id, ret); | |
87f1faa6 DV |
8670 | goto fail; |
8671 | } | |
5e2b584e | 8672 | } else if (config->fb_changed) { |
4878cae2 VS |
8673 | intel_crtc_wait_for_pending_flips(set->crtc); |
8674 | ||
4f660f49 | 8675 | ret = intel_pipe_set_base(set->crtc, |
94352cf9 | 8676 | set->x, set->y, set->fb); |
50f56119 DV |
8677 | } |
8678 | ||
d9e55608 DV |
8679 | intel_set_config_free(config); |
8680 | ||
50f56119 DV |
8681 | return 0; |
8682 | ||
8683 | fail: | |
85f9eb71 | 8684 | intel_set_config_restore_state(dev, config); |
50f56119 DV |
8685 | |
8686 | /* Try to restore the config */ | |
5e2b584e | 8687 | if (config->mode_changed && |
c0c36b94 CW |
8688 | intel_set_mode(save_set.crtc, save_set.mode, |
8689 | save_set.x, save_set.y, save_set.fb)) | |
50f56119 DV |
8690 | DRM_ERROR("failed to restore config after modeset failure\n"); |
8691 | ||
d9e55608 DV |
8692 | out_config: |
8693 | intel_set_config_free(config); | |
50f56119 DV |
8694 | return ret; |
8695 | } | |
f6e5b160 CW |
8696 | |
8697 | static const struct drm_crtc_funcs intel_crtc_funcs = { | |
f6e5b160 CW |
8698 | .cursor_set = intel_crtc_cursor_set, |
8699 | .cursor_move = intel_crtc_cursor_move, | |
8700 | .gamma_set = intel_crtc_gamma_set, | |
50f56119 | 8701 | .set_config = intel_crtc_set_config, |
f6e5b160 CW |
8702 | .destroy = intel_crtc_destroy, |
8703 | .page_flip = intel_crtc_page_flip, | |
8704 | }; | |
8705 | ||
79f689aa PZ |
8706 | static void intel_cpu_pll_init(struct drm_device *dev) |
8707 | { | |
affa9354 | 8708 | if (HAS_DDI(dev)) |
79f689aa PZ |
8709 | intel_ddi_pll_init(dev); |
8710 | } | |
8711 | ||
ee7b9f93 JB |
8712 | static void intel_pch_pll_init(struct drm_device *dev) |
8713 | { | |
8714 | drm_i915_private_t *dev_priv = dev->dev_private; | |
8715 | int i; | |
8716 | ||
8717 | if (dev_priv->num_pch_pll == 0) { | |
8718 | DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n"); | |
8719 | return; | |
8720 | } | |
8721 | ||
8722 | for (i = 0; i < dev_priv->num_pch_pll; i++) { | |
8723 | dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i); | |
8724 | dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i); | |
8725 | dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i); | |
8726 | } | |
8727 | } | |
8728 | ||
b358d0a6 | 8729 | static void intel_crtc_init(struct drm_device *dev, int pipe) |
79e53945 | 8730 | { |
22fd0fab | 8731 | drm_i915_private_t *dev_priv = dev->dev_private; |
79e53945 JB |
8732 | struct intel_crtc *intel_crtc; |
8733 | int i; | |
8734 | ||
8735 | intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL); | |
8736 | if (intel_crtc == NULL) | |
8737 | return; | |
8738 | ||
8739 | drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs); | |
8740 | ||
8741 | drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256); | |
79e53945 JB |
8742 | for (i = 0; i < 256; i++) { |
8743 | intel_crtc->lut_r[i] = i; | |
8744 | intel_crtc->lut_g[i] = i; | |
8745 | intel_crtc->lut_b[i] = i; | |
8746 | } | |
8747 | ||
80824003 JB |
8748 | /* Swap pipes & planes for FBC on pre-965 */ |
8749 | intel_crtc->pipe = pipe; | |
8750 | intel_crtc->plane = pipe; | |
e2e767ab | 8751 | if (IS_MOBILE(dev) && IS_GEN3(dev)) { |
28c97730 | 8752 | DRM_DEBUG_KMS("swapping pipes & planes for FBC\n"); |
e2e767ab | 8753 | intel_crtc->plane = !pipe; |
80824003 JB |
8754 | } |
8755 | ||
22fd0fab JB |
8756 | BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) || |
8757 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL); | |
8758 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base; | |
8759 | dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base; | |
8760 | ||
79e53945 | 8761 | drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs); |
79e53945 JB |
8762 | } |
8763 | ||
08d7b3d1 | 8764 | int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data, |
05394f39 | 8765 | struct drm_file *file) |
08d7b3d1 | 8766 | { |
08d7b3d1 | 8767 | struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data; |
c05422d5 DV |
8768 | struct drm_mode_object *drmmode_obj; |
8769 | struct intel_crtc *crtc; | |
08d7b3d1 | 8770 | |
1cff8f6b DV |
8771 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
8772 | return -ENODEV; | |
08d7b3d1 | 8773 | |
c05422d5 DV |
8774 | drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id, |
8775 | DRM_MODE_OBJECT_CRTC); | |
08d7b3d1 | 8776 | |
c05422d5 | 8777 | if (!drmmode_obj) { |
08d7b3d1 CW |
8778 | DRM_ERROR("no such CRTC id\n"); |
8779 | return -EINVAL; | |
8780 | } | |
8781 | ||
c05422d5 DV |
8782 | crtc = to_intel_crtc(obj_to_crtc(drmmode_obj)); |
8783 | pipe_from_crtc_id->pipe = crtc->pipe; | |
08d7b3d1 | 8784 | |
c05422d5 | 8785 | return 0; |
08d7b3d1 CW |
8786 | } |
8787 | ||
66a9278e | 8788 | static int intel_encoder_clones(struct intel_encoder *encoder) |
79e53945 | 8789 | { |
66a9278e DV |
8790 | struct drm_device *dev = encoder->base.dev; |
8791 | struct intel_encoder *source_encoder; | |
79e53945 | 8792 | int index_mask = 0; |
79e53945 JB |
8793 | int entry = 0; |
8794 | ||
66a9278e DV |
8795 | list_for_each_entry(source_encoder, |
8796 | &dev->mode_config.encoder_list, base.head) { | |
8797 | ||
8798 | if (encoder == source_encoder) | |
79e53945 | 8799 | index_mask |= (1 << entry); |
66a9278e DV |
8800 | |
8801 | /* Intel hw has only one MUX where enocoders could be cloned. */ | |
8802 | if (encoder->cloneable && source_encoder->cloneable) | |
8803 | index_mask |= (1 << entry); | |
8804 | ||
79e53945 JB |
8805 | entry++; |
8806 | } | |
4ef69c7a | 8807 | |
79e53945 JB |
8808 | return index_mask; |
8809 | } | |
8810 | ||
4d302442 CW |
8811 | static bool has_edp_a(struct drm_device *dev) |
8812 | { | |
8813 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8814 | ||
8815 | if (!IS_MOBILE(dev)) | |
8816 | return false; | |
8817 | ||
8818 | if ((I915_READ(DP_A) & DP_DETECTED) == 0) | |
8819 | return false; | |
8820 | ||
8821 | if (IS_GEN5(dev) && | |
8822 | (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE)) | |
8823 | return false; | |
8824 | ||
8825 | return true; | |
8826 | } | |
8827 | ||
79e53945 JB |
8828 | static void intel_setup_outputs(struct drm_device *dev) |
8829 | { | |
725e30ad | 8830 | struct drm_i915_private *dev_priv = dev->dev_private; |
4ef69c7a | 8831 | struct intel_encoder *encoder; |
cb0953d7 | 8832 | bool dpd_is_edp = false; |
f3cfcba6 | 8833 | bool has_lvds; |
79e53945 | 8834 | |
f3cfcba6 | 8835 | has_lvds = intel_lvds_init(dev); |
c5d1b51d CW |
8836 | if (!has_lvds && !HAS_PCH_SPLIT(dev)) { |
8837 | /* disable the panel fitter on everything but LVDS */ | |
8838 | I915_WRITE(PFIT_CONTROL, 0); | |
8839 | } | |
79e53945 | 8840 | |
c40c0f5b | 8841 | if (!IS_ULT(dev)) |
79935fca | 8842 | intel_crt_init(dev); |
cb0953d7 | 8843 | |
affa9354 | 8844 | if (HAS_DDI(dev)) { |
0e72a5b5 ED |
8845 | int found; |
8846 | ||
8847 | /* Haswell uses DDI functions to detect digital outputs */ | |
8848 | found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED; | |
8849 | /* DDI A only supports eDP */ | |
8850 | if (found) | |
8851 | intel_ddi_init(dev, PORT_A); | |
8852 | ||
8853 | /* DDI B, C and D detection is indicated by the SFUSE_STRAP | |
8854 | * register */ | |
8855 | found = I915_READ(SFUSE_STRAP); | |
8856 | ||
8857 | if (found & SFUSE_STRAP_DDIB_DETECTED) | |
8858 | intel_ddi_init(dev, PORT_B); | |
8859 | if (found & SFUSE_STRAP_DDIC_DETECTED) | |
8860 | intel_ddi_init(dev, PORT_C); | |
8861 | if (found & SFUSE_STRAP_DDID_DETECTED) | |
8862 | intel_ddi_init(dev, PORT_D); | |
8863 | } else if (HAS_PCH_SPLIT(dev)) { | |
cb0953d7 | 8864 | int found; |
270b3042 DV |
8865 | dpd_is_edp = intel_dpd_is_edp(dev); |
8866 | ||
8867 | if (has_edp_a(dev)) | |
8868 | intel_dp_init(dev, DP_A, PORT_A); | |
cb0953d7 | 8869 | |
dc0fa718 | 8870 | if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) { |
461ed3ca | 8871 | /* PCH SDVOB multiplex with HDMIB */ |
eef4eacb | 8872 | found = intel_sdvo_init(dev, PCH_SDVOB, true); |
30ad48b7 | 8873 | if (!found) |
e2debe91 | 8874 | intel_hdmi_init(dev, PCH_HDMIB, PORT_B); |
5eb08b69 | 8875 | if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED)) |
ab9d7c30 | 8876 | intel_dp_init(dev, PCH_DP_B, PORT_B); |
30ad48b7 ZW |
8877 | } |
8878 | ||
dc0fa718 | 8879 | if (I915_READ(PCH_HDMIC) & SDVO_DETECTED) |
e2debe91 | 8880 | intel_hdmi_init(dev, PCH_HDMIC, PORT_C); |
30ad48b7 | 8881 | |
dc0fa718 | 8882 | if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED) |
e2debe91 | 8883 | intel_hdmi_init(dev, PCH_HDMID, PORT_D); |
30ad48b7 | 8884 | |
5eb08b69 | 8885 | if (I915_READ(PCH_DP_C) & DP_DETECTED) |
ab9d7c30 | 8886 | intel_dp_init(dev, PCH_DP_C, PORT_C); |
5eb08b69 | 8887 | |
270b3042 | 8888 | if (I915_READ(PCH_DP_D) & DP_DETECTED) |
ab9d7c30 | 8889 | intel_dp_init(dev, PCH_DP_D, PORT_D); |
4a87d65d | 8890 | } else if (IS_VALLEYVIEW(dev)) { |
19c03924 | 8891 | /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */ |
67cfc203 VS |
8892 | if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED) |
8893 | intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C); | |
19c03924 | 8894 | |
dc0fa718 | 8895 | if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) { |
e2debe91 PZ |
8896 | intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB, |
8897 | PORT_B); | |
67cfc203 VS |
8898 | if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED) |
8899 | intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B); | |
4a87d65d | 8900 | } |
103a196f | 8901 | } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) { |
27185ae1 | 8902 | bool found = false; |
7d57382e | 8903 | |
e2debe91 | 8904 | if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) { |
b01f2c3a | 8905 | DRM_DEBUG_KMS("probing SDVOB\n"); |
e2debe91 | 8906 | found = intel_sdvo_init(dev, GEN3_SDVOB, true); |
b01f2c3a JB |
8907 | if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) { |
8908 | DRM_DEBUG_KMS("probing HDMI on SDVOB\n"); | |
e2debe91 | 8909 | intel_hdmi_init(dev, GEN4_HDMIB, PORT_B); |
b01f2c3a | 8910 | } |
27185ae1 | 8911 | |
e7281eab | 8912 | if (!found && SUPPORTS_INTEGRATED_DP(dev)) |
ab9d7c30 | 8913 | intel_dp_init(dev, DP_B, PORT_B); |
725e30ad | 8914 | } |
13520b05 KH |
8915 | |
8916 | /* Before G4X SDVOC doesn't have its own detect register */ | |
13520b05 | 8917 | |
e2debe91 | 8918 | if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) { |
b01f2c3a | 8919 | DRM_DEBUG_KMS("probing SDVOC\n"); |
e2debe91 | 8920 | found = intel_sdvo_init(dev, GEN3_SDVOC, false); |
b01f2c3a | 8921 | } |
27185ae1 | 8922 | |
e2debe91 | 8923 | if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) { |
27185ae1 | 8924 | |
b01f2c3a JB |
8925 | if (SUPPORTS_INTEGRATED_HDMI(dev)) { |
8926 | DRM_DEBUG_KMS("probing HDMI on SDVOC\n"); | |
e2debe91 | 8927 | intel_hdmi_init(dev, GEN4_HDMIC, PORT_C); |
b01f2c3a | 8928 | } |
e7281eab | 8929 | if (SUPPORTS_INTEGRATED_DP(dev)) |
ab9d7c30 | 8930 | intel_dp_init(dev, DP_C, PORT_C); |
725e30ad | 8931 | } |
27185ae1 | 8932 | |
b01f2c3a | 8933 | if (SUPPORTS_INTEGRATED_DP(dev) && |
e7281eab | 8934 | (I915_READ(DP_D) & DP_DETECTED)) |
ab9d7c30 | 8935 | intel_dp_init(dev, DP_D, PORT_D); |
bad720ff | 8936 | } else if (IS_GEN2(dev)) |
79e53945 JB |
8937 | intel_dvo_init(dev); |
8938 | ||
103a196f | 8939 | if (SUPPORTS_TV(dev)) |
79e53945 JB |
8940 | intel_tv_init(dev); |
8941 | ||
4ef69c7a CW |
8942 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) { |
8943 | encoder->base.possible_crtcs = encoder->crtc_mask; | |
8944 | encoder->base.possible_clones = | |
66a9278e | 8945 | intel_encoder_clones(encoder); |
79e53945 | 8946 | } |
47356eb6 | 8947 | |
dde86e2d | 8948 | intel_init_pch_refclk(dev); |
270b3042 DV |
8949 | |
8950 | drm_helper_move_panel_connectors_to_head(dev); | |
79e53945 JB |
8951 | } |
8952 | ||
8953 | static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb) | |
8954 | { | |
8955 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); | |
79e53945 JB |
8956 | |
8957 | drm_framebuffer_cleanup(fb); | |
05394f39 | 8958 | drm_gem_object_unreference_unlocked(&intel_fb->obj->base); |
79e53945 JB |
8959 | |
8960 | kfree(intel_fb); | |
8961 | } | |
8962 | ||
8963 | static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb, | |
05394f39 | 8964 | struct drm_file *file, |
79e53945 JB |
8965 | unsigned int *handle) |
8966 | { | |
8967 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); | |
05394f39 | 8968 | struct drm_i915_gem_object *obj = intel_fb->obj; |
79e53945 | 8969 | |
05394f39 | 8970 | return drm_gem_handle_create(file, &obj->base, handle); |
79e53945 JB |
8971 | } |
8972 | ||
8973 | static const struct drm_framebuffer_funcs intel_fb_funcs = { | |
8974 | .destroy = intel_user_framebuffer_destroy, | |
8975 | .create_handle = intel_user_framebuffer_create_handle, | |
8976 | }; | |
8977 | ||
38651674 DA |
8978 | int intel_framebuffer_init(struct drm_device *dev, |
8979 | struct intel_framebuffer *intel_fb, | |
308e5bcb | 8980 | struct drm_mode_fb_cmd2 *mode_cmd, |
05394f39 | 8981 | struct drm_i915_gem_object *obj) |
79e53945 | 8982 | { |
79e53945 JB |
8983 | int ret; |
8984 | ||
c16ed4be CW |
8985 | if (obj->tiling_mode == I915_TILING_Y) { |
8986 | DRM_DEBUG("hardware does not support tiling Y\n"); | |
57cd6508 | 8987 | return -EINVAL; |
c16ed4be | 8988 | } |
57cd6508 | 8989 | |
c16ed4be CW |
8990 | if (mode_cmd->pitches[0] & 63) { |
8991 | DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n", | |
8992 | mode_cmd->pitches[0]); | |
57cd6508 | 8993 | return -EINVAL; |
c16ed4be | 8994 | } |
57cd6508 | 8995 | |
5d7bd705 | 8996 | /* FIXME <= Gen4 stride limits are bit unclear */ |
c16ed4be CW |
8997 | if (mode_cmd->pitches[0] > 32768) { |
8998 | DRM_DEBUG("pitch (%d) must be at less than 32768\n", | |
8999 | mode_cmd->pitches[0]); | |
5d7bd705 | 9000 | return -EINVAL; |
c16ed4be | 9001 | } |
5d7bd705 VS |
9002 | |
9003 | if (obj->tiling_mode != I915_TILING_NONE && | |
c16ed4be CW |
9004 | mode_cmd->pitches[0] != obj->stride) { |
9005 | DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n", | |
9006 | mode_cmd->pitches[0], obj->stride); | |
5d7bd705 | 9007 | return -EINVAL; |
c16ed4be | 9008 | } |
5d7bd705 | 9009 | |
57779d06 | 9010 | /* Reject formats not supported by any plane early. */ |
308e5bcb | 9011 | switch (mode_cmd->pixel_format) { |
57779d06 | 9012 | case DRM_FORMAT_C8: |
04b3924d VS |
9013 | case DRM_FORMAT_RGB565: |
9014 | case DRM_FORMAT_XRGB8888: | |
9015 | case DRM_FORMAT_ARGB8888: | |
57779d06 VS |
9016 | break; |
9017 | case DRM_FORMAT_XRGB1555: | |
9018 | case DRM_FORMAT_ARGB1555: | |
c16ed4be CW |
9019 | if (INTEL_INFO(dev)->gen > 3) { |
9020 | DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format); | |
57779d06 | 9021 | return -EINVAL; |
c16ed4be | 9022 | } |
57779d06 VS |
9023 | break; |
9024 | case DRM_FORMAT_XBGR8888: | |
9025 | case DRM_FORMAT_ABGR8888: | |
04b3924d VS |
9026 | case DRM_FORMAT_XRGB2101010: |
9027 | case DRM_FORMAT_ARGB2101010: | |
57779d06 VS |
9028 | case DRM_FORMAT_XBGR2101010: |
9029 | case DRM_FORMAT_ABGR2101010: | |
c16ed4be CW |
9030 | if (INTEL_INFO(dev)->gen < 4) { |
9031 | DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format); | |
57779d06 | 9032 | return -EINVAL; |
c16ed4be | 9033 | } |
b5626747 | 9034 | break; |
04b3924d VS |
9035 | case DRM_FORMAT_YUYV: |
9036 | case DRM_FORMAT_UYVY: | |
9037 | case DRM_FORMAT_YVYU: | |
9038 | case DRM_FORMAT_VYUY: | |
c16ed4be CW |
9039 | if (INTEL_INFO(dev)->gen < 5) { |
9040 | DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format); | |
57779d06 | 9041 | return -EINVAL; |
c16ed4be | 9042 | } |
57cd6508 CW |
9043 | break; |
9044 | default: | |
c16ed4be | 9045 | DRM_DEBUG("unsupported pixel format 0x%08x\n", mode_cmd->pixel_format); |
57cd6508 CW |
9046 | return -EINVAL; |
9047 | } | |
9048 | ||
90f9a336 VS |
9049 | /* FIXME need to adjust LINOFF/TILEOFF accordingly. */ |
9050 | if (mode_cmd->offsets[0] != 0) | |
9051 | return -EINVAL; | |
9052 | ||
c7d73f6a DV |
9053 | drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd); |
9054 | intel_fb->obj = obj; | |
9055 | ||
79e53945 JB |
9056 | ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs); |
9057 | if (ret) { | |
9058 | DRM_ERROR("framebuffer init failed %d\n", ret); | |
9059 | return ret; | |
9060 | } | |
9061 | ||
79e53945 JB |
9062 | return 0; |
9063 | } | |
9064 | ||
79e53945 JB |
9065 | static struct drm_framebuffer * |
9066 | intel_user_framebuffer_create(struct drm_device *dev, | |
9067 | struct drm_file *filp, | |
308e5bcb | 9068 | struct drm_mode_fb_cmd2 *mode_cmd) |
79e53945 | 9069 | { |
05394f39 | 9070 | struct drm_i915_gem_object *obj; |
79e53945 | 9071 | |
308e5bcb JB |
9072 | obj = to_intel_bo(drm_gem_object_lookup(dev, filp, |
9073 | mode_cmd->handles[0])); | |
c8725226 | 9074 | if (&obj->base == NULL) |
cce13ff7 | 9075 | return ERR_PTR(-ENOENT); |
79e53945 | 9076 | |
d2dff872 | 9077 | return intel_framebuffer_create(dev, mode_cmd, obj); |
79e53945 JB |
9078 | } |
9079 | ||
79e53945 | 9080 | static const struct drm_mode_config_funcs intel_mode_funcs = { |
79e53945 | 9081 | .fb_create = intel_user_framebuffer_create, |
eb1f8e4f | 9082 | .output_poll_changed = intel_fb_output_poll_changed, |
79e53945 JB |
9083 | }; |
9084 | ||
e70236a8 JB |
9085 | /* Set up chip specific display functions */ |
9086 | static void intel_init_display(struct drm_device *dev) | |
9087 | { | |
9088 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9089 | ||
ee9300bb DV |
9090 | if (HAS_PCH_SPLIT(dev) || IS_G4X(dev)) |
9091 | dev_priv->display.find_dpll = g4x_find_best_dpll; | |
9092 | else if (IS_VALLEYVIEW(dev)) | |
9093 | dev_priv->display.find_dpll = vlv_find_best_dpll; | |
9094 | else if (IS_PINEVIEW(dev)) | |
9095 | dev_priv->display.find_dpll = pnv_find_best_dpll; | |
9096 | else | |
9097 | dev_priv->display.find_dpll = i9xx_find_best_dpll; | |
9098 | ||
affa9354 | 9099 | if (HAS_DDI(dev)) { |
0e8ffe1b | 9100 | dev_priv->display.get_pipe_config = haswell_get_pipe_config; |
09b4ddf9 | 9101 | dev_priv->display.crtc_mode_set = haswell_crtc_mode_set; |
4f771f10 PZ |
9102 | dev_priv->display.crtc_enable = haswell_crtc_enable; |
9103 | dev_priv->display.crtc_disable = haswell_crtc_disable; | |
6441ab5f | 9104 | dev_priv->display.off = haswell_crtc_off; |
09b4ddf9 PZ |
9105 | dev_priv->display.update_plane = ironlake_update_plane; |
9106 | } else if (HAS_PCH_SPLIT(dev)) { | |
0e8ffe1b | 9107 | dev_priv->display.get_pipe_config = ironlake_get_pipe_config; |
f564048e | 9108 | dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set; |
76e5a89c DV |
9109 | dev_priv->display.crtc_enable = ironlake_crtc_enable; |
9110 | dev_priv->display.crtc_disable = ironlake_crtc_disable; | |
ee7b9f93 | 9111 | dev_priv->display.off = ironlake_crtc_off; |
17638cd6 | 9112 | dev_priv->display.update_plane = ironlake_update_plane; |
89b667f8 JB |
9113 | } else if (IS_VALLEYVIEW(dev)) { |
9114 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; | |
9115 | dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set; | |
9116 | dev_priv->display.crtc_enable = valleyview_crtc_enable; | |
9117 | dev_priv->display.crtc_disable = i9xx_crtc_disable; | |
9118 | dev_priv->display.off = i9xx_crtc_off; | |
9119 | dev_priv->display.update_plane = i9xx_update_plane; | |
f564048e | 9120 | } else { |
0e8ffe1b | 9121 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; |
f564048e | 9122 | dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set; |
76e5a89c DV |
9123 | dev_priv->display.crtc_enable = i9xx_crtc_enable; |
9124 | dev_priv->display.crtc_disable = i9xx_crtc_disable; | |
ee7b9f93 | 9125 | dev_priv->display.off = i9xx_crtc_off; |
17638cd6 | 9126 | dev_priv->display.update_plane = i9xx_update_plane; |
f564048e | 9127 | } |
e70236a8 | 9128 | |
e70236a8 | 9129 | /* Returns the core display clock speed */ |
25eb05fc JB |
9130 | if (IS_VALLEYVIEW(dev)) |
9131 | dev_priv->display.get_display_clock_speed = | |
9132 | valleyview_get_display_clock_speed; | |
9133 | else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev))) | |
e70236a8 JB |
9134 | dev_priv->display.get_display_clock_speed = |
9135 | i945_get_display_clock_speed; | |
9136 | else if (IS_I915G(dev)) | |
9137 | dev_priv->display.get_display_clock_speed = | |
9138 | i915_get_display_clock_speed; | |
f2b115e6 | 9139 | else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev)) |
e70236a8 JB |
9140 | dev_priv->display.get_display_clock_speed = |
9141 | i9xx_misc_get_display_clock_speed; | |
9142 | else if (IS_I915GM(dev)) | |
9143 | dev_priv->display.get_display_clock_speed = | |
9144 | i915gm_get_display_clock_speed; | |
9145 | else if (IS_I865G(dev)) | |
9146 | dev_priv->display.get_display_clock_speed = | |
9147 | i865_get_display_clock_speed; | |
f0f8a9ce | 9148 | else if (IS_I85X(dev)) |
e70236a8 JB |
9149 | dev_priv->display.get_display_clock_speed = |
9150 | i855_get_display_clock_speed; | |
9151 | else /* 852, 830 */ | |
9152 | dev_priv->display.get_display_clock_speed = | |
9153 | i830_get_display_clock_speed; | |
9154 | ||
7f8a8569 | 9155 | if (HAS_PCH_SPLIT(dev)) { |
f00a3ddf | 9156 | if (IS_GEN5(dev)) { |
674cf967 | 9157 | dev_priv->display.fdi_link_train = ironlake_fdi_link_train; |
e0dac65e | 9158 | dev_priv->display.write_eld = ironlake_write_eld; |
1398261a | 9159 | } else if (IS_GEN6(dev)) { |
674cf967 | 9160 | dev_priv->display.fdi_link_train = gen6_fdi_link_train; |
e0dac65e | 9161 | dev_priv->display.write_eld = ironlake_write_eld; |
357555c0 JB |
9162 | } else if (IS_IVYBRIDGE(dev)) { |
9163 | /* FIXME: detect B0+ stepping and use auto training */ | |
9164 | dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train; | |
e0dac65e | 9165 | dev_priv->display.write_eld = ironlake_write_eld; |
01a415fd DV |
9166 | dev_priv->display.modeset_global_resources = |
9167 | ivb_modeset_global_resources; | |
c82e4d26 ED |
9168 | } else if (IS_HASWELL(dev)) { |
9169 | dev_priv->display.fdi_link_train = hsw_fdi_link_train; | |
83358c85 | 9170 | dev_priv->display.write_eld = haswell_write_eld; |
d6dd9eb1 DV |
9171 | dev_priv->display.modeset_global_resources = |
9172 | haswell_modeset_global_resources; | |
a0e63c22 | 9173 | } |
6067aaea | 9174 | } else if (IS_G4X(dev)) { |
e0dac65e | 9175 | dev_priv->display.write_eld = g4x_write_eld; |
e70236a8 | 9176 | } |
8c9f3aaf JB |
9177 | |
9178 | /* Default just returns -ENODEV to indicate unsupported */ | |
9179 | dev_priv->display.queue_flip = intel_default_queue_flip; | |
9180 | ||
9181 | switch (INTEL_INFO(dev)->gen) { | |
9182 | case 2: | |
9183 | dev_priv->display.queue_flip = intel_gen2_queue_flip; | |
9184 | break; | |
9185 | ||
9186 | case 3: | |
9187 | dev_priv->display.queue_flip = intel_gen3_queue_flip; | |
9188 | break; | |
9189 | ||
9190 | case 4: | |
9191 | case 5: | |
9192 | dev_priv->display.queue_flip = intel_gen4_queue_flip; | |
9193 | break; | |
9194 | ||
9195 | case 6: | |
9196 | dev_priv->display.queue_flip = intel_gen6_queue_flip; | |
9197 | break; | |
7c9017e5 JB |
9198 | case 7: |
9199 | dev_priv->display.queue_flip = intel_gen7_queue_flip; | |
9200 | break; | |
8c9f3aaf | 9201 | } |
e70236a8 JB |
9202 | } |
9203 | ||
b690e96c JB |
9204 | /* |
9205 | * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend, | |
9206 | * resume, or other times. This quirk makes sure that's the case for | |
9207 | * affected systems. | |
9208 | */ | |
0206e353 | 9209 | static void quirk_pipea_force(struct drm_device *dev) |
b690e96c JB |
9210 | { |
9211 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9212 | ||
9213 | dev_priv->quirks |= QUIRK_PIPEA_FORCE; | |
bc0daf48 | 9214 | DRM_INFO("applying pipe a force quirk\n"); |
b690e96c JB |
9215 | } |
9216 | ||
435793df KP |
9217 | /* |
9218 | * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason | |
9219 | */ | |
9220 | static void quirk_ssc_force_disable(struct drm_device *dev) | |
9221 | { | |
9222 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9223 | dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE; | |
bc0daf48 | 9224 | DRM_INFO("applying lvds SSC disable quirk\n"); |
435793df KP |
9225 | } |
9226 | ||
4dca20ef | 9227 | /* |
5a15ab5b CE |
9228 | * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight |
9229 | * brightness value | |
4dca20ef CE |
9230 | */ |
9231 | static void quirk_invert_brightness(struct drm_device *dev) | |
9232 | { | |
9233 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9234 | dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS; | |
bc0daf48 | 9235 | DRM_INFO("applying inverted panel brightness quirk\n"); |
435793df KP |
9236 | } |
9237 | ||
b690e96c JB |
9238 | struct intel_quirk { |
9239 | int device; | |
9240 | int subsystem_vendor; | |
9241 | int subsystem_device; | |
9242 | void (*hook)(struct drm_device *dev); | |
9243 | }; | |
9244 | ||
5f85f176 EE |
9245 | /* For systems that don't have a meaningful PCI subdevice/subvendor ID */ |
9246 | struct intel_dmi_quirk { | |
9247 | void (*hook)(struct drm_device *dev); | |
9248 | const struct dmi_system_id (*dmi_id_list)[]; | |
9249 | }; | |
9250 | ||
9251 | static int intel_dmi_reverse_brightness(const struct dmi_system_id *id) | |
9252 | { | |
9253 | DRM_INFO("Backlight polarity reversed on %s\n", id->ident); | |
9254 | return 1; | |
9255 | } | |
9256 | ||
9257 | static const struct intel_dmi_quirk intel_dmi_quirks[] = { | |
9258 | { | |
9259 | .dmi_id_list = &(const struct dmi_system_id[]) { | |
9260 | { | |
9261 | .callback = intel_dmi_reverse_brightness, | |
9262 | .ident = "NCR Corporation", | |
9263 | .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"), | |
9264 | DMI_MATCH(DMI_PRODUCT_NAME, ""), | |
9265 | }, | |
9266 | }, | |
9267 | { } /* terminating entry */ | |
9268 | }, | |
9269 | .hook = quirk_invert_brightness, | |
9270 | }, | |
9271 | }; | |
9272 | ||
c43b5634 | 9273 | static struct intel_quirk intel_quirks[] = { |
b690e96c | 9274 | /* HP Mini needs pipe A force quirk (LP: #322104) */ |
0206e353 | 9275 | { 0x27ae, 0x103c, 0x361a, quirk_pipea_force }, |
b690e96c | 9276 | |
b690e96c JB |
9277 | /* Toshiba Protege R-205, S-209 needs pipe A force quirk */ |
9278 | { 0x2592, 0x1179, 0x0001, quirk_pipea_force }, | |
9279 | ||
b690e96c JB |
9280 | /* ThinkPad T60 needs pipe A force quirk (bug #16494) */ |
9281 | { 0x2782, 0x17aa, 0x201a, quirk_pipea_force }, | |
9282 | ||
ccd0d36e | 9283 | /* 830/845 need to leave pipe A & dpll A up */ |
b690e96c | 9284 | { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, |
dcdaed6e | 9285 | { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, |
435793df KP |
9286 | |
9287 | /* Lenovo U160 cannot use SSC on LVDS */ | |
9288 | { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable }, | |
070d329a MAS |
9289 | |
9290 | /* Sony Vaio Y cannot use SSC on LVDS */ | |
9291 | { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable }, | |
5a15ab5b CE |
9292 | |
9293 | /* Acer Aspire 5734Z must invert backlight brightness */ | |
9294 | { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness }, | |
1ffff603 JN |
9295 | |
9296 | /* Acer/eMachines G725 */ | |
9297 | { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness }, | |
01e3a8fe JN |
9298 | |
9299 | /* Acer/eMachines e725 */ | |
9300 | { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness }, | |
5559ecad JN |
9301 | |
9302 | /* Acer/Packard Bell NCL20 */ | |
9303 | { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness }, | |
ac4199e0 DV |
9304 | |
9305 | /* Acer Aspire 4736Z */ | |
9306 | { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness }, | |
b690e96c JB |
9307 | }; |
9308 | ||
9309 | static void intel_init_quirks(struct drm_device *dev) | |
9310 | { | |
9311 | struct pci_dev *d = dev->pdev; | |
9312 | int i; | |
9313 | ||
9314 | for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) { | |
9315 | struct intel_quirk *q = &intel_quirks[i]; | |
9316 | ||
9317 | if (d->device == q->device && | |
9318 | (d->subsystem_vendor == q->subsystem_vendor || | |
9319 | q->subsystem_vendor == PCI_ANY_ID) && | |
9320 | (d->subsystem_device == q->subsystem_device || | |
9321 | q->subsystem_device == PCI_ANY_ID)) | |
9322 | q->hook(dev); | |
9323 | } | |
5f85f176 EE |
9324 | for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) { |
9325 | if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0) | |
9326 | intel_dmi_quirks[i].hook(dev); | |
9327 | } | |
b690e96c JB |
9328 | } |
9329 | ||
9cce37f4 JB |
9330 | /* Disable the VGA plane that we never use */ |
9331 | static void i915_disable_vga(struct drm_device *dev) | |
9332 | { | |
9333 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9334 | u8 sr1; | |
766aa1c4 | 9335 | u32 vga_reg = i915_vgacntrl_reg(dev); |
9cce37f4 JB |
9336 | |
9337 | vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO); | |
3fdcf431 | 9338 | outb(SR01, VGA_SR_INDEX); |
9cce37f4 JB |
9339 | sr1 = inb(VGA_SR_DATA); |
9340 | outb(sr1 | 1<<5, VGA_SR_DATA); | |
9341 | vga_put(dev->pdev, VGA_RSRC_LEGACY_IO); | |
9342 | udelay(300); | |
9343 | ||
9344 | I915_WRITE(vga_reg, VGA_DISP_DISABLE); | |
9345 | POSTING_READ(vga_reg); | |
9346 | } | |
9347 | ||
f817586c DV |
9348 | void intel_modeset_init_hw(struct drm_device *dev) |
9349 | { | |
fa42e23c | 9350 | intel_init_power_well(dev); |
0232e927 | 9351 | |
a8f78b58 ED |
9352 | intel_prepare_ddi(dev); |
9353 | ||
f817586c DV |
9354 | intel_init_clock_gating(dev); |
9355 | ||
79f5b2c7 | 9356 | mutex_lock(&dev->struct_mutex); |
8090c6b9 | 9357 | intel_enable_gt_powersave(dev); |
79f5b2c7 | 9358 | mutex_unlock(&dev->struct_mutex); |
f817586c DV |
9359 | } |
9360 | ||
7d708ee4 ID |
9361 | void intel_modeset_suspend_hw(struct drm_device *dev) |
9362 | { | |
9363 | intel_suspend_hw(dev); | |
9364 | } | |
9365 | ||
79e53945 JB |
9366 | void intel_modeset_init(struct drm_device *dev) |
9367 | { | |
652c393a | 9368 | struct drm_i915_private *dev_priv = dev->dev_private; |
7f1f3851 | 9369 | int i, j, ret; |
79e53945 JB |
9370 | |
9371 | drm_mode_config_init(dev); | |
9372 | ||
9373 | dev->mode_config.min_width = 0; | |
9374 | dev->mode_config.min_height = 0; | |
9375 | ||
019d96cb DA |
9376 | dev->mode_config.preferred_depth = 24; |
9377 | dev->mode_config.prefer_shadow = 1; | |
9378 | ||
e6ecefaa | 9379 | dev->mode_config.funcs = &intel_mode_funcs; |
79e53945 | 9380 | |
b690e96c JB |
9381 | intel_init_quirks(dev); |
9382 | ||
1fa61106 ED |
9383 | intel_init_pm(dev); |
9384 | ||
e3c74757 BW |
9385 | if (INTEL_INFO(dev)->num_pipes == 0) |
9386 | return; | |
9387 | ||
e70236a8 JB |
9388 | intel_init_display(dev); |
9389 | ||
a6c45cf0 CW |
9390 | if (IS_GEN2(dev)) { |
9391 | dev->mode_config.max_width = 2048; | |
9392 | dev->mode_config.max_height = 2048; | |
9393 | } else if (IS_GEN3(dev)) { | |
5e4d6fa7 KP |
9394 | dev->mode_config.max_width = 4096; |
9395 | dev->mode_config.max_height = 4096; | |
79e53945 | 9396 | } else { |
a6c45cf0 CW |
9397 | dev->mode_config.max_width = 8192; |
9398 | dev->mode_config.max_height = 8192; | |
79e53945 | 9399 | } |
5d4545ae | 9400 | dev->mode_config.fb_base = dev_priv->gtt.mappable_base; |
79e53945 | 9401 | |
28c97730 | 9402 | DRM_DEBUG_KMS("%d display pipe%s available.\n", |
7eb552ae BW |
9403 | INTEL_INFO(dev)->num_pipes, |
9404 | INTEL_INFO(dev)->num_pipes > 1 ? "s" : ""); | |
79e53945 | 9405 | |
7eb552ae | 9406 | for (i = 0; i < INTEL_INFO(dev)->num_pipes; i++) { |
79e53945 | 9407 | intel_crtc_init(dev, i); |
7f1f3851 JB |
9408 | for (j = 0; j < dev_priv->num_plane; j++) { |
9409 | ret = intel_plane_init(dev, i, j); | |
9410 | if (ret) | |
06da8da2 VS |
9411 | DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n", |
9412 | pipe_name(i), sprite_name(i, j), ret); | |
7f1f3851 | 9413 | } |
79e53945 JB |
9414 | } |
9415 | ||
79f689aa | 9416 | intel_cpu_pll_init(dev); |
ee7b9f93 JB |
9417 | intel_pch_pll_init(dev); |
9418 | ||
9cce37f4 JB |
9419 | /* Just disable it once at startup */ |
9420 | i915_disable_vga(dev); | |
79e53945 | 9421 | intel_setup_outputs(dev); |
11be49eb CW |
9422 | |
9423 | /* Just in case the BIOS is doing something questionable. */ | |
9424 | intel_disable_fbc(dev); | |
2c7111db CW |
9425 | } |
9426 | ||
24929352 DV |
9427 | static void |
9428 | intel_connector_break_all_links(struct intel_connector *connector) | |
9429 | { | |
9430 | connector->base.dpms = DRM_MODE_DPMS_OFF; | |
9431 | connector->base.encoder = NULL; | |
9432 | connector->encoder->connectors_active = false; | |
9433 | connector->encoder->base.crtc = NULL; | |
9434 | } | |
9435 | ||
7fad798e DV |
9436 | static void intel_enable_pipe_a(struct drm_device *dev) |
9437 | { | |
9438 | struct intel_connector *connector; | |
9439 | struct drm_connector *crt = NULL; | |
9440 | struct intel_load_detect_pipe load_detect_temp; | |
9441 | ||
9442 | /* We can't just switch on the pipe A, we need to set things up with a | |
9443 | * proper mode and output configuration. As a gross hack, enable pipe A | |
9444 | * by enabling the load detect pipe once. */ | |
9445 | list_for_each_entry(connector, | |
9446 | &dev->mode_config.connector_list, | |
9447 | base.head) { | |
9448 | if (connector->encoder->type == INTEL_OUTPUT_ANALOG) { | |
9449 | crt = &connector->base; | |
9450 | break; | |
9451 | } | |
9452 | } | |
9453 | ||
9454 | if (!crt) | |
9455 | return; | |
9456 | ||
9457 | if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp)) | |
9458 | intel_release_load_detect_pipe(crt, &load_detect_temp); | |
9459 | ||
652c393a | 9460 | |
7fad798e DV |
9461 | } |
9462 | ||
fa555837 DV |
9463 | static bool |
9464 | intel_check_plane_mapping(struct intel_crtc *crtc) | |
9465 | { | |
7eb552ae BW |
9466 | struct drm_device *dev = crtc->base.dev; |
9467 | struct drm_i915_private *dev_priv = dev->dev_private; | |
fa555837 DV |
9468 | u32 reg, val; |
9469 | ||
7eb552ae | 9470 | if (INTEL_INFO(dev)->num_pipes == 1) |
fa555837 DV |
9471 | return true; |
9472 | ||
9473 | reg = DSPCNTR(!crtc->plane); | |
9474 | val = I915_READ(reg); | |
9475 | ||
9476 | if ((val & DISPLAY_PLANE_ENABLE) && | |
9477 | (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe)) | |
9478 | return false; | |
9479 | ||
9480 | return true; | |
9481 | } | |
9482 | ||
24929352 DV |
9483 | static void intel_sanitize_crtc(struct intel_crtc *crtc) |
9484 | { | |
9485 | struct drm_device *dev = crtc->base.dev; | |
9486 | struct drm_i915_private *dev_priv = dev->dev_private; | |
fa555837 | 9487 | u32 reg; |
24929352 | 9488 | |
24929352 | 9489 | /* Clear any frame start delays used for debugging left by the BIOS */ |
3b117c8f | 9490 | reg = PIPECONF(crtc->config.cpu_transcoder); |
24929352 DV |
9491 | I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK); |
9492 | ||
9493 | /* We need to sanitize the plane -> pipe mapping first because this will | |
fa555837 DV |
9494 | * disable the crtc (and hence change the state) if it is wrong. Note |
9495 | * that gen4+ has a fixed plane -> pipe mapping. */ | |
9496 | if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) { | |
24929352 DV |
9497 | struct intel_connector *connector; |
9498 | bool plane; | |
9499 | ||
24929352 DV |
9500 | DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n", |
9501 | crtc->base.base.id); | |
9502 | ||
9503 | /* Pipe has the wrong plane attached and the plane is active. | |
9504 | * Temporarily change the plane mapping and disable everything | |
9505 | * ... */ | |
9506 | plane = crtc->plane; | |
9507 | crtc->plane = !plane; | |
9508 | dev_priv->display.crtc_disable(&crtc->base); | |
9509 | crtc->plane = plane; | |
9510 | ||
9511 | /* ... and break all links. */ | |
9512 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
9513 | base.head) { | |
9514 | if (connector->encoder->base.crtc != &crtc->base) | |
9515 | continue; | |
9516 | ||
9517 | intel_connector_break_all_links(connector); | |
9518 | } | |
9519 | ||
9520 | WARN_ON(crtc->active); | |
9521 | crtc->base.enabled = false; | |
9522 | } | |
24929352 | 9523 | |
7fad798e DV |
9524 | if (dev_priv->quirks & QUIRK_PIPEA_FORCE && |
9525 | crtc->pipe == PIPE_A && !crtc->active) { | |
9526 | /* BIOS forgot to enable pipe A, this mostly happens after | |
9527 | * resume. Force-enable the pipe to fix this, the update_dpms | |
9528 | * call below we restore the pipe to the right state, but leave | |
9529 | * the required bits on. */ | |
9530 | intel_enable_pipe_a(dev); | |
9531 | } | |
9532 | ||
24929352 DV |
9533 | /* Adjust the state of the output pipe according to whether we |
9534 | * have active connectors/encoders. */ | |
9535 | intel_crtc_update_dpms(&crtc->base); | |
9536 | ||
9537 | if (crtc->active != crtc->base.enabled) { | |
9538 | struct intel_encoder *encoder; | |
9539 | ||
9540 | /* This can happen either due to bugs in the get_hw_state | |
9541 | * functions or because the pipe is force-enabled due to the | |
9542 | * pipe A quirk. */ | |
9543 | DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n", | |
9544 | crtc->base.base.id, | |
9545 | crtc->base.enabled ? "enabled" : "disabled", | |
9546 | crtc->active ? "enabled" : "disabled"); | |
9547 | ||
9548 | crtc->base.enabled = crtc->active; | |
9549 | ||
9550 | /* Because we only establish the connector -> encoder -> | |
9551 | * crtc links if something is active, this means the | |
9552 | * crtc is now deactivated. Break the links. connector | |
9553 | * -> encoder links are only establish when things are | |
9554 | * actually up, hence no need to break them. */ | |
9555 | WARN_ON(crtc->active); | |
9556 | ||
9557 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) { | |
9558 | WARN_ON(encoder->connectors_active); | |
9559 | encoder->base.crtc = NULL; | |
9560 | } | |
9561 | } | |
9562 | } | |
9563 | ||
9564 | static void intel_sanitize_encoder(struct intel_encoder *encoder) | |
9565 | { | |
9566 | struct intel_connector *connector; | |
9567 | struct drm_device *dev = encoder->base.dev; | |
9568 | ||
9569 | /* We need to check both for a crtc link (meaning that the | |
9570 | * encoder is active and trying to read from a pipe) and the | |
9571 | * pipe itself being active. */ | |
9572 | bool has_active_crtc = encoder->base.crtc && | |
9573 | to_intel_crtc(encoder->base.crtc)->active; | |
9574 | ||
9575 | if (encoder->connectors_active && !has_active_crtc) { | |
9576 | DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n", | |
9577 | encoder->base.base.id, | |
9578 | drm_get_encoder_name(&encoder->base)); | |
9579 | ||
9580 | /* Connector is active, but has no active pipe. This is | |
9581 | * fallout from our resume register restoring. Disable | |
9582 | * the encoder manually again. */ | |
9583 | if (encoder->base.crtc) { | |
9584 | DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n", | |
9585 | encoder->base.base.id, | |
9586 | drm_get_encoder_name(&encoder->base)); | |
9587 | encoder->disable(encoder); | |
9588 | } | |
9589 | ||
9590 | /* Inconsistent output/port/pipe state happens presumably due to | |
9591 | * a bug in one of the get_hw_state functions. Or someplace else | |
9592 | * in our code, like the register restore mess on resume. Clamp | |
9593 | * things to off as a safer default. */ | |
9594 | list_for_each_entry(connector, | |
9595 | &dev->mode_config.connector_list, | |
9596 | base.head) { | |
9597 | if (connector->encoder != encoder) | |
9598 | continue; | |
9599 | ||
9600 | intel_connector_break_all_links(connector); | |
9601 | } | |
9602 | } | |
9603 | /* Enabled encoders without active connectors will be fixed in | |
9604 | * the crtc fixup. */ | |
9605 | } | |
9606 | ||
44cec740 | 9607 | void i915_redisable_vga(struct drm_device *dev) |
0fde901f KM |
9608 | { |
9609 | struct drm_i915_private *dev_priv = dev->dev_private; | |
766aa1c4 | 9610 | u32 vga_reg = i915_vgacntrl_reg(dev); |
0fde901f KM |
9611 | |
9612 | if (I915_READ(vga_reg) != VGA_DISP_DISABLE) { | |
9613 | DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n"); | |
209d5211 | 9614 | i915_disable_vga(dev); |
0fde901f KM |
9615 | } |
9616 | } | |
9617 | ||
24929352 DV |
9618 | /* Scan out the current hw modeset state, sanitizes it and maps it into the drm |
9619 | * and i915 state tracking structures. */ | |
45e2b5f6 DV |
9620 | void intel_modeset_setup_hw_state(struct drm_device *dev, |
9621 | bool force_restore) | |
24929352 DV |
9622 | { |
9623 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9624 | enum pipe pipe; | |
b5644d05 | 9625 | struct drm_plane *plane; |
24929352 DV |
9626 | struct intel_crtc *crtc; |
9627 | struct intel_encoder *encoder; | |
9628 | struct intel_connector *connector; | |
9629 | ||
0e8ffe1b DV |
9630 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, |
9631 | base.head) { | |
88adfff1 | 9632 | memset(&crtc->config, 0, sizeof(crtc->config)); |
3b117c8f | 9633 | |
0e8ffe1b DV |
9634 | crtc->active = dev_priv->display.get_pipe_config(crtc, |
9635 | &crtc->config); | |
24929352 DV |
9636 | |
9637 | crtc->base.enabled = crtc->active; | |
9638 | ||
9639 | DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n", | |
9640 | crtc->base.base.id, | |
9641 | crtc->active ? "enabled" : "disabled"); | |
9642 | } | |
9643 | ||
affa9354 | 9644 | if (HAS_DDI(dev)) |
6441ab5f PZ |
9645 | intel_ddi_setup_hw_pll_state(dev); |
9646 | ||
24929352 DV |
9647 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
9648 | base.head) { | |
9649 | pipe = 0; | |
9650 | ||
9651 | if (encoder->get_hw_state(encoder, &pipe)) { | |
045ac3b5 JB |
9652 | crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); |
9653 | encoder->base.crtc = &crtc->base; | |
9654 | if (encoder->get_config) | |
9655 | encoder->get_config(encoder, &crtc->config); | |
24929352 DV |
9656 | } else { |
9657 | encoder->base.crtc = NULL; | |
9658 | } | |
9659 | ||
9660 | encoder->connectors_active = false; | |
9661 | DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n", | |
9662 | encoder->base.base.id, | |
9663 | drm_get_encoder_name(&encoder->base), | |
9664 | encoder->base.crtc ? "enabled" : "disabled", | |
9665 | pipe); | |
9666 | } | |
9667 | ||
9668 | list_for_each_entry(connector, &dev->mode_config.connector_list, | |
9669 | base.head) { | |
9670 | if (connector->get_hw_state(connector)) { | |
9671 | connector->base.dpms = DRM_MODE_DPMS_ON; | |
9672 | connector->encoder->connectors_active = true; | |
9673 | connector->base.encoder = &connector->encoder->base; | |
9674 | } else { | |
9675 | connector->base.dpms = DRM_MODE_DPMS_OFF; | |
9676 | connector->base.encoder = NULL; | |
9677 | } | |
9678 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n", | |
9679 | connector->base.base.id, | |
9680 | drm_get_connector_name(&connector->base), | |
9681 | connector->base.encoder ? "enabled" : "disabled"); | |
9682 | } | |
9683 | ||
9684 | /* HW state is read out, now we need to sanitize this mess. */ | |
9685 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, | |
9686 | base.head) { | |
9687 | intel_sanitize_encoder(encoder); | |
9688 | } | |
9689 | ||
9690 | for_each_pipe(pipe) { | |
9691 | crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); | |
9692 | intel_sanitize_crtc(crtc); | |
c0b03411 | 9693 | intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]"); |
24929352 | 9694 | } |
9a935856 | 9695 | |
45e2b5f6 | 9696 | if (force_restore) { |
f30da187 DV |
9697 | /* |
9698 | * We need to use raw interfaces for restoring state to avoid | |
9699 | * checking (bogus) intermediate states. | |
9700 | */ | |
45e2b5f6 | 9701 | for_each_pipe(pipe) { |
b5644d05 JB |
9702 | struct drm_crtc *crtc = |
9703 | dev_priv->pipe_to_crtc_mapping[pipe]; | |
f30da187 DV |
9704 | |
9705 | __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, | |
9706 | crtc->fb); | |
45e2b5f6 | 9707 | } |
b5644d05 JB |
9708 | list_for_each_entry(plane, &dev->mode_config.plane_list, head) |
9709 | intel_plane_restore(plane); | |
0fde901f KM |
9710 | |
9711 | i915_redisable_vga(dev); | |
45e2b5f6 DV |
9712 | } else { |
9713 | intel_modeset_update_staged_output_state(dev); | |
9714 | } | |
8af6cf88 DV |
9715 | |
9716 | intel_modeset_check_state(dev); | |
2e938892 DV |
9717 | |
9718 | drm_mode_config_reset(dev); | |
2c7111db CW |
9719 | } |
9720 | ||
9721 | void intel_modeset_gem_init(struct drm_device *dev) | |
9722 | { | |
1833b134 | 9723 | intel_modeset_init_hw(dev); |
02e792fb DV |
9724 | |
9725 | intel_setup_overlay(dev); | |
24929352 | 9726 | |
45e2b5f6 | 9727 | intel_modeset_setup_hw_state(dev, false); |
79e53945 JB |
9728 | } |
9729 | ||
9730 | void intel_modeset_cleanup(struct drm_device *dev) | |
9731 | { | |
652c393a JB |
9732 | struct drm_i915_private *dev_priv = dev->dev_private; |
9733 | struct drm_crtc *crtc; | |
9734 | struct intel_crtc *intel_crtc; | |
9735 | ||
fd0c0642 DV |
9736 | /* |
9737 | * Interrupts and polling as the first thing to avoid creating havoc. | |
9738 | * Too much stuff here (turning of rps, connectors, ...) would | |
9739 | * experience fancy races otherwise. | |
9740 | */ | |
9741 | drm_irq_uninstall(dev); | |
9742 | cancel_work_sync(&dev_priv->hotplug_work); | |
9743 | /* | |
9744 | * Due to the hpd irq storm handling the hotplug work can re-arm the | |
9745 | * poll handlers. Hence disable polling after hpd handling is shut down. | |
9746 | */ | |
f87ea761 | 9747 | drm_kms_helper_poll_fini(dev); |
fd0c0642 | 9748 | |
652c393a JB |
9749 | mutex_lock(&dev->struct_mutex); |
9750 | ||
723bfd70 JB |
9751 | intel_unregister_dsm_handler(); |
9752 | ||
652c393a JB |
9753 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
9754 | /* Skip inactive CRTCs */ | |
9755 | if (!crtc->fb) | |
9756 | continue; | |
9757 | ||
9758 | intel_crtc = to_intel_crtc(crtc); | |
3dec0095 | 9759 | intel_increase_pllclock(crtc); |
652c393a JB |
9760 | } |
9761 | ||
973d04f9 | 9762 | intel_disable_fbc(dev); |
e70236a8 | 9763 | |
8090c6b9 | 9764 | intel_disable_gt_powersave(dev); |
0cdab21f | 9765 | |
930ebb46 DV |
9766 | ironlake_teardown_rc6(dev); |
9767 | ||
69341a5e KH |
9768 | mutex_unlock(&dev->struct_mutex); |
9769 | ||
1630fe75 CW |
9770 | /* flush any delayed tasks or pending work */ |
9771 | flush_scheduled_work(); | |
9772 | ||
dc652f90 JN |
9773 | /* destroy backlight, if any, before the connectors */ |
9774 | intel_panel_destroy_backlight(dev); | |
9775 | ||
79e53945 | 9776 | drm_mode_config_cleanup(dev); |
4d7bb011 DV |
9777 | |
9778 | intel_cleanup_overlay(dev); | |
79e53945 JB |
9779 | } |
9780 | ||
f1c79df3 ZW |
9781 | /* |
9782 | * Return which encoder is currently attached for connector. | |
9783 | */ | |
df0e9248 | 9784 | struct drm_encoder *intel_best_encoder(struct drm_connector *connector) |
79e53945 | 9785 | { |
df0e9248 CW |
9786 | return &intel_attached_encoder(connector)->base; |
9787 | } | |
f1c79df3 | 9788 | |
df0e9248 CW |
9789 | void intel_connector_attach_encoder(struct intel_connector *connector, |
9790 | struct intel_encoder *encoder) | |
9791 | { | |
9792 | connector->encoder = encoder; | |
9793 | drm_mode_connector_attach_encoder(&connector->base, | |
9794 | &encoder->base); | |
79e53945 | 9795 | } |
28d52043 DA |
9796 | |
9797 | /* | |
9798 | * set vga decode state - true == enable VGA decode | |
9799 | */ | |
9800 | int intel_modeset_vga_set_state(struct drm_device *dev, bool state) | |
9801 | { | |
9802 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9803 | u16 gmch_ctrl; | |
9804 | ||
9805 | pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl); | |
9806 | if (state) | |
9807 | gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE; | |
9808 | else | |
9809 | gmch_ctrl |= INTEL_GMCH_VGA_DISABLE; | |
9810 | pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl); | |
9811 | return 0; | |
9812 | } | |
c4a1d9e4 CW |
9813 | |
9814 | #ifdef CONFIG_DEBUG_FS | |
9815 | #include <linux/seq_file.h> | |
9816 | ||
9817 | struct intel_display_error_state { | |
ff57f1b0 PZ |
9818 | |
9819 | u32 power_well_driver; | |
9820 | ||
c4a1d9e4 CW |
9821 | struct intel_cursor_error_state { |
9822 | u32 control; | |
9823 | u32 position; | |
9824 | u32 base; | |
9825 | u32 size; | |
52331309 | 9826 | } cursor[I915_MAX_PIPES]; |
c4a1d9e4 CW |
9827 | |
9828 | struct intel_pipe_error_state { | |
ff57f1b0 | 9829 | enum transcoder cpu_transcoder; |
c4a1d9e4 CW |
9830 | u32 conf; |
9831 | u32 source; | |
9832 | ||
9833 | u32 htotal; | |
9834 | u32 hblank; | |
9835 | u32 hsync; | |
9836 | u32 vtotal; | |
9837 | u32 vblank; | |
9838 | u32 vsync; | |
52331309 | 9839 | } pipe[I915_MAX_PIPES]; |
c4a1d9e4 CW |
9840 | |
9841 | struct intel_plane_error_state { | |
9842 | u32 control; | |
9843 | u32 stride; | |
9844 | u32 size; | |
9845 | u32 pos; | |
9846 | u32 addr; | |
9847 | u32 surface; | |
9848 | u32 tile_offset; | |
52331309 | 9849 | } plane[I915_MAX_PIPES]; |
c4a1d9e4 CW |
9850 | }; |
9851 | ||
9852 | struct intel_display_error_state * | |
9853 | intel_display_capture_error_state(struct drm_device *dev) | |
9854 | { | |
0206e353 | 9855 | drm_i915_private_t *dev_priv = dev->dev_private; |
c4a1d9e4 | 9856 | struct intel_display_error_state *error; |
702e7a56 | 9857 | enum transcoder cpu_transcoder; |
c4a1d9e4 CW |
9858 | int i; |
9859 | ||
9860 | error = kmalloc(sizeof(*error), GFP_ATOMIC); | |
9861 | if (error == NULL) | |
9862 | return NULL; | |
9863 | ||
ff57f1b0 PZ |
9864 | if (HAS_POWER_WELL(dev)) |
9865 | error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER); | |
9866 | ||
52331309 | 9867 | for_each_pipe(i) { |
702e7a56 | 9868 | cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, i); |
ff57f1b0 | 9869 | error->pipe[i].cpu_transcoder = cpu_transcoder; |
702e7a56 | 9870 | |
a18c4c3d PZ |
9871 | if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev)) { |
9872 | error->cursor[i].control = I915_READ(CURCNTR(i)); | |
9873 | error->cursor[i].position = I915_READ(CURPOS(i)); | |
9874 | error->cursor[i].base = I915_READ(CURBASE(i)); | |
9875 | } else { | |
9876 | error->cursor[i].control = I915_READ(CURCNTR_IVB(i)); | |
9877 | error->cursor[i].position = I915_READ(CURPOS_IVB(i)); | |
9878 | error->cursor[i].base = I915_READ(CURBASE_IVB(i)); | |
9879 | } | |
c4a1d9e4 CW |
9880 | |
9881 | error->plane[i].control = I915_READ(DSPCNTR(i)); | |
9882 | error->plane[i].stride = I915_READ(DSPSTRIDE(i)); | |
80ca378b | 9883 | if (INTEL_INFO(dev)->gen <= 3) { |
51889b35 | 9884 | error->plane[i].size = I915_READ(DSPSIZE(i)); |
80ca378b PZ |
9885 | error->plane[i].pos = I915_READ(DSPPOS(i)); |
9886 | } | |
ca291363 PZ |
9887 | if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev)) |
9888 | error->plane[i].addr = I915_READ(DSPADDR(i)); | |
c4a1d9e4 CW |
9889 | if (INTEL_INFO(dev)->gen >= 4) { |
9890 | error->plane[i].surface = I915_READ(DSPSURF(i)); | |
9891 | error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i)); | |
9892 | } | |
9893 | ||
702e7a56 | 9894 | error->pipe[i].conf = I915_READ(PIPECONF(cpu_transcoder)); |
c4a1d9e4 | 9895 | error->pipe[i].source = I915_READ(PIPESRC(i)); |
fe2b8f9d PZ |
9896 | error->pipe[i].htotal = I915_READ(HTOTAL(cpu_transcoder)); |
9897 | error->pipe[i].hblank = I915_READ(HBLANK(cpu_transcoder)); | |
9898 | error->pipe[i].hsync = I915_READ(HSYNC(cpu_transcoder)); | |
9899 | error->pipe[i].vtotal = I915_READ(VTOTAL(cpu_transcoder)); | |
9900 | error->pipe[i].vblank = I915_READ(VBLANK(cpu_transcoder)); | |
9901 | error->pipe[i].vsync = I915_READ(VSYNC(cpu_transcoder)); | |
c4a1d9e4 CW |
9902 | } |
9903 | ||
12d217c7 PZ |
9904 | /* In the code above we read the registers without checking if the power |
9905 | * well was on, so here we have to clear the FPGA_DBG_RM_NOCLAIM bit to | |
9906 | * prevent the next I915_WRITE from detecting it and printing an error | |
9907 | * message. */ | |
9908 | if (HAS_POWER_WELL(dev)) | |
9909 | I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM); | |
9910 | ||
c4a1d9e4 CW |
9911 | return error; |
9912 | } | |
9913 | ||
edc3d884 MK |
9914 | #define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__) |
9915 | ||
c4a1d9e4 | 9916 | void |
edc3d884 | 9917 | intel_display_print_error_state(struct drm_i915_error_state_buf *m, |
c4a1d9e4 CW |
9918 | struct drm_device *dev, |
9919 | struct intel_display_error_state *error) | |
9920 | { | |
9921 | int i; | |
9922 | ||
edc3d884 | 9923 | err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes); |
ff57f1b0 | 9924 | if (HAS_POWER_WELL(dev)) |
edc3d884 | 9925 | err_printf(m, "PWR_WELL_CTL2: %08x\n", |
ff57f1b0 | 9926 | error->power_well_driver); |
52331309 | 9927 | for_each_pipe(i) { |
edc3d884 MK |
9928 | err_printf(m, "Pipe [%d]:\n", i); |
9929 | err_printf(m, " CPU transcoder: %c\n", | |
ff57f1b0 | 9930 | transcoder_name(error->pipe[i].cpu_transcoder)); |
edc3d884 MK |
9931 | err_printf(m, " CONF: %08x\n", error->pipe[i].conf); |
9932 | err_printf(m, " SRC: %08x\n", error->pipe[i].source); | |
9933 | err_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal); | |
9934 | err_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank); | |
9935 | err_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync); | |
9936 | err_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal); | |
9937 | err_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank); | |
9938 | err_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync); | |
9939 | ||
9940 | err_printf(m, "Plane [%d]:\n", i); | |
9941 | err_printf(m, " CNTR: %08x\n", error->plane[i].control); | |
9942 | err_printf(m, " STRIDE: %08x\n", error->plane[i].stride); | |
80ca378b | 9943 | if (INTEL_INFO(dev)->gen <= 3) { |
edc3d884 MK |
9944 | err_printf(m, " SIZE: %08x\n", error->plane[i].size); |
9945 | err_printf(m, " POS: %08x\n", error->plane[i].pos); | |
80ca378b | 9946 | } |
4b71a570 | 9947 | if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev)) |
edc3d884 | 9948 | err_printf(m, " ADDR: %08x\n", error->plane[i].addr); |
c4a1d9e4 | 9949 | if (INTEL_INFO(dev)->gen >= 4) { |
edc3d884 MK |
9950 | err_printf(m, " SURF: %08x\n", error->plane[i].surface); |
9951 | err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset); | |
c4a1d9e4 CW |
9952 | } |
9953 | ||
edc3d884 MK |
9954 | err_printf(m, "Cursor [%d]:\n", i); |
9955 | err_printf(m, " CNTR: %08x\n", error->cursor[i].control); | |
9956 | err_printf(m, " POS: %08x\n", error->cursor[i].position); | |
9957 | err_printf(m, " BASE: %08x\n", error->cursor[i].base); | |
c4a1d9e4 CW |
9958 | } |
9959 | } | |
9960 | #endif |