]>
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" |
db18b6a6 | 39 | #include "intel_dsi.h" |
e5510fac | 40 | #include "i915_trace.h" |
319c1d42 | 41 | #include <drm/drm_atomic.h> |
c196e1d6 | 42 | #include <drm/drm_atomic_helper.h> |
760285e7 DH |
43 | #include <drm/drm_dp_helper.h> |
44 | #include <drm/drm_crtc_helper.h> | |
465c120c MR |
45 | #include <drm/drm_plane_helper.h> |
46 | #include <drm/drm_rect.h> | |
c0f372b3 | 47 | #include <linux/dma_remapping.h> |
fd8e058a AG |
48 | #include <linux/reservation.h> |
49 | #include <linux/dma-buf.h> | |
79e53945 | 50 | |
465c120c | 51 | /* Primary plane formats for gen <= 3 */ |
568db4f2 | 52 | static const uint32_t i8xx_primary_formats[] = { |
67fe7dc5 DL |
53 | DRM_FORMAT_C8, |
54 | DRM_FORMAT_RGB565, | |
465c120c | 55 | DRM_FORMAT_XRGB1555, |
67fe7dc5 | 56 | DRM_FORMAT_XRGB8888, |
465c120c MR |
57 | }; |
58 | ||
59 | /* Primary plane formats for gen >= 4 */ | |
568db4f2 | 60 | static const uint32_t i965_primary_formats[] = { |
6c0fd451 DL |
61 | DRM_FORMAT_C8, |
62 | DRM_FORMAT_RGB565, | |
63 | DRM_FORMAT_XRGB8888, | |
64 | DRM_FORMAT_XBGR8888, | |
65 | DRM_FORMAT_XRGB2101010, | |
66 | DRM_FORMAT_XBGR2101010, | |
67 | }; | |
68 | ||
69 | static const uint32_t skl_primary_formats[] = { | |
67fe7dc5 DL |
70 | DRM_FORMAT_C8, |
71 | DRM_FORMAT_RGB565, | |
72 | DRM_FORMAT_XRGB8888, | |
465c120c | 73 | DRM_FORMAT_XBGR8888, |
67fe7dc5 | 74 | DRM_FORMAT_ARGB8888, |
465c120c MR |
75 | DRM_FORMAT_ABGR8888, |
76 | DRM_FORMAT_XRGB2101010, | |
465c120c | 77 | DRM_FORMAT_XBGR2101010, |
ea916ea0 KM |
78 | DRM_FORMAT_YUYV, |
79 | DRM_FORMAT_YVYU, | |
80 | DRM_FORMAT_UYVY, | |
81 | DRM_FORMAT_VYUY, | |
465c120c MR |
82 | }; |
83 | ||
3d7d6510 MR |
84 | /* Cursor formats */ |
85 | static const uint32_t intel_cursor_formats[] = { | |
86 | DRM_FORMAT_ARGB8888, | |
87 | }; | |
88 | ||
f1f644dc | 89 | static void i9xx_crtc_clock_get(struct intel_crtc *crtc, |
5cec258b | 90 | struct intel_crtc_state *pipe_config); |
18442d08 | 91 | static void ironlake_pch_clock_get(struct intel_crtc *crtc, |
5cec258b | 92 | struct intel_crtc_state *pipe_config); |
f1f644dc | 93 | |
eb1bfe80 JB |
94 | static int intel_framebuffer_init(struct drm_device *dev, |
95 | struct intel_framebuffer *ifb, | |
96 | struct drm_mode_fb_cmd2 *mode_cmd, | |
97 | struct drm_i915_gem_object *obj); | |
5b18e57c DV |
98 | static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc); |
99 | static void intel_set_pipe_timings(struct intel_crtc *intel_crtc); | |
bc58be60 | 100 | static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc); |
29407aab | 101 | static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc, |
f769cd24 VK |
102 | struct intel_link_m_n *m_n, |
103 | struct intel_link_m_n *m2_n2); | |
29407aab | 104 | static void ironlake_set_pipeconf(struct drm_crtc *crtc); |
229fca97 | 105 | static void haswell_set_pipeconf(struct drm_crtc *crtc); |
391bf048 | 106 | static void haswell_set_pipemisc(struct drm_crtc *crtc); |
d288f65f | 107 | static void vlv_prepare_pll(struct intel_crtc *crtc, |
5cec258b | 108 | const struct intel_crtc_state *pipe_config); |
d288f65f | 109 | static void chv_prepare_pll(struct intel_crtc *crtc, |
5cec258b | 110 | const struct intel_crtc_state *pipe_config); |
613d2b27 ML |
111 | static void intel_begin_crtc_commit(struct drm_crtc *, struct drm_crtc_state *); |
112 | static void intel_finish_crtc_commit(struct drm_crtc *, struct drm_crtc_state *); | |
549e2bfb CK |
113 | static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc, |
114 | struct intel_crtc_state *crtc_state); | |
bfd16b2a ML |
115 | static void skylake_pfit_enable(struct intel_crtc *crtc); |
116 | static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force); | |
117 | static void ironlake_pfit_enable(struct intel_crtc *crtc); | |
043e9bda | 118 | static void intel_modeset_setup_hw_state(struct drm_device *dev); |
2622a081 | 119 | static void intel_pre_disable_primary_noatomic(struct drm_crtc *crtc); |
e7457a9a | 120 | |
79e53945 | 121 | typedef struct { |
0206e353 | 122 | int min, max; |
79e53945 JB |
123 | } intel_range_t; |
124 | ||
125 | typedef struct { | |
0206e353 AJ |
126 | int dot_limit; |
127 | int p2_slow, p2_fast; | |
79e53945 JB |
128 | } intel_p2_t; |
129 | ||
d4906093 ML |
130 | typedef struct intel_limit intel_limit_t; |
131 | struct intel_limit { | |
0206e353 AJ |
132 | intel_range_t dot, vco, n, m, m1, m2, p, p1; |
133 | intel_p2_t p2; | |
d4906093 | 134 | }; |
79e53945 | 135 | |
bfa7df01 VS |
136 | /* returns HPLL frequency in kHz */ |
137 | static int valleyview_get_vco(struct drm_i915_private *dev_priv) | |
138 | { | |
139 | int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 }; | |
140 | ||
141 | /* Obtain SKU information */ | |
142 | mutex_lock(&dev_priv->sb_lock); | |
143 | hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) & | |
144 | CCK_FUSE_HPLL_FREQ_MASK; | |
145 | mutex_unlock(&dev_priv->sb_lock); | |
146 | ||
147 | return vco_freq[hpll_freq] * 1000; | |
148 | } | |
149 | ||
c30fec65 VS |
150 | int vlv_get_cck_clock(struct drm_i915_private *dev_priv, |
151 | const char *name, u32 reg, int ref_freq) | |
bfa7df01 VS |
152 | { |
153 | u32 val; | |
154 | int divider; | |
155 | ||
bfa7df01 VS |
156 | mutex_lock(&dev_priv->sb_lock); |
157 | val = vlv_cck_read(dev_priv, reg); | |
158 | mutex_unlock(&dev_priv->sb_lock); | |
159 | ||
160 | divider = val & CCK_FREQUENCY_VALUES; | |
161 | ||
162 | WARN((val & CCK_FREQUENCY_STATUS) != | |
163 | (divider << CCK_FREQUENCY_STATUS_SHIFT), | |
164 | "%s change in progress\n", name); | |
165 | ||
c30fec65 VS |
166 | return DIV_ROUND_CLOSEST(ref_freq << 1, divider + 1); |
167 | } | |
168 | ||
169 | static int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv, | |
170 | const char *name, u32 reg) | |
171 | { | |
172 | if (dev_priv->hpll_freq == 0) | |
173 | dev_priv->hpll_freq = valleyview_get_vco(dev_priv); | |
174 | ||
175 | return vlv_get_cck_clock(dev_priv, name, reg, | |
176 | dev_priv->hpll_freq); | |
bfa7df01 VS |
177 | } |
178 | ||
e7dc33f3 VS |
179 | static int |
180 | intel_pch_rawclk(struct drm_i915_private *dev_priv) | |
d2acd215 | 181 | { |
e7dc33f3 VS |
182 | return (I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK) * 1000; |
183 | } | |
d2acd215 | 184 | |
e7dc33f3 VS |
185 | static int |
186 | intel_vlv_hrawclk(struct drm_i915_private *dev_priv) | |
187 | { | |
35d38d1f VS |
188 | return vlv_get_cck_clock_hpll(dev_priv, "hrawclk", |
189 | CCK_DISPLAY_REF_CLOCK_CONTROL); | |
d2acd215 DV |
190 | } |
191 | ||
e7dc33f3 VS |
192 | static int |
193 | intel_g4x_hrawclk(struct drm_i915_private *dev_priv) | |
79e50a4f | 194 | { |
79e50a4f JN |
195 | uint32_t clkcfg; |
196 | ||
e7dc33f3 | 197 | /* hrawclock is 1/4 the FSB frequency */ |
79e50a4f JN |
198 | clkcfg = I915_READ(CLKCFG); |
199 | switch (clkcfg & CLKCFG_FSB_MASK) { | |
200 | case CLKCFG_FSB_400: | |
e7dc33f3 | 201 | return 100000; |
79e50a4f | 202 | case CLKCFG_FSB_533: |
e7dc33f3 | 203 | return 133333; |
79e50a4f | 204 | case CLKCFG_FSB_667: |
e7dc33f3 | 205 | return 166667; |
79e50a4f | 206 | case CLKCFG_FSB_800: |
e7dc33f3 | 207 | return 200000; |
79e50a4f | 208 | case CLKCFG_FSB_1067: |
e7dc33f3 | 209 | return 266667; |
79e50a4f | 210 | case CLKCFG_FSB_1333: |
e7dc33f3 | 211 | return 333333; |
79e50a4f JN |
212 | /* these two are just a guess; one of them might be right */ |
213 | case CLKCFG_FSB_1600: | |
214 | case CLKCFG_FSB_1600_ALT: | |
e7dc33f3 | 215 | return 400000; |
79e50a4f | 216 | default: |
e7dc33f3 | 217 | return 133333; |
79e50a4f JN |
218 | } |
219 | } | |
220 | ||
e7dc33f3 VS |
221 | static void intel_update_rawclk(struct drm_i915_private *dev_priv) |
222 | { | |
223 | if (HAS_PCH_SPLIT(dev_priv)) | |
224 | dev_priv->rawclk_freq = intel_pch_rawclk(dev_priv); | |
225 | else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) | |
226 | dev_priv->rawclk_freq = intel_vlv_hrawclk(dev_priv); | |
227 | else if (IS_G4X(dev_priv) || IS_PINEVIEW(dev_priv)) | |
228 | dev_priv->rawclk_freq = intel_g4x_hrawclk(dev_priv); | |
229 | else | |
230 | return; /* no rawclk on other platforms, or no need to know it */ | |
231 | ||
232 | DRM_DEBUG_DRIVER("rawclk rate: %d kHz\n", dev_priv->rawclk_freq); | |
233 | } | |
234 | ||
bfa7df01 VS |
235 | static void intel_update_czclk(struct drm_i915_private *dev_priv) |
236 | { | |
666a4537 | 237 | if (!(IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))) |
bfa7df01 VS |
238 | return; |
239 | ||
240 | dev_priv->czclk_freq = vlv_get_cck_clock_hpll(dev_priv, "czclk", | |
241 | CCK_CZ_CLOCK_CONTROL); | |
242 | ||
243 | DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv->czclk_freq); | |
244 | } | |
245 | ||
021357ac | 246 | static inline u32 /* units of 100MHz */ |
21a727b3 VS |
247 | intel_fdi_link_freq(struct drm_i915_private *dev_priv, |
248 | const struct intel_crtc_state *pipe_config) | |
021357ac | 249 | { |
21a727b3 VS |
250 | if (HAS_DDI(dev_priv)) |
251 | return pipe_config->port_clock; /* SPLL */ | |
252 | else if (IS_GEN5(dev_priv)) | |
253 | return ((I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2) * 10000; | |
e3b247da | 254 | else |
21a727b3 | 255 | return 270000; |
021357ac CW |
256 | } |
257 | ||
5d536e28 | 258 | static const intel_limit_t intel_limits_i8xx_dac = { |
0206e353 | 259 | .dot = { .min = 25000, .max = 350000 }, |
9c333719 | 260 | .vco = { .min = 908000, .max = 1512000 }, |
91dbe5fb | 261 | .n = { .min = 2, .max = 16 }, |
0206e353 AJ |
262 | .m = { .min = 96, .max = 140 }, |
263 | .m1 = { .min = 18, .max = 26 }, | |
264 | .m2 = { .min = 6, .max = 16 }, | |
265 | .p = { .min = 4, .max = 128 }, | |
266 | .p1 = { .min = 2, .max = 33 }, | |
273e27ca EA |
267 | .p2 = { .dot_limit = 165000, |
268 | .p2_slow = 4, .p2_fast = 2 }, | |
e4b36699 KP |
269 | }; |
270 | ||
5d536e28 DV |
271 | static const intel_limit_t intel_limits_i8xx_dvo = { |
272 | .dot = { .min = 25000, .max = 350000 }, | |
9c333719 | 273 | .vco = { .min = 908000, .max = 1512000 }, |
91dbe5fb | 274 | .n = { .min = 2, .max = 16 }, |
5d536e28 DV |
275 | .m = { .min = 96, .max = 140 }, |
276 | .m1 = { .min = 18, .max = 26 }, | |
277 | .m2 = { .min = 6, .max = 16 }, | |
278 | .p = { .min = 4, .max = 128 }, | |
279 | .p1 = { .min = 2, .max = 33 }, | |
280 | .p2 = { .dot_limit = 165000, | |
281 | .p2_slow = 4, .p2_fast = 4 }, | |
282 | }; | |
283 | ||
e4b36699 | 284 | static const intel_limit_t intel_limits_i8xx_lvds = { |
0206e353 | 285 | .dot = { .min = 25000, .max = 350000 }, |
9c333719 | 286 | .vco = { .min = 908000, .max = 1512000 }, |
91dbe5fb | 287 | .n = { .min = 2, .max = 16 }, |
0206e353 AJ |
288 | .m = { .min = 96, .max = 140 }, |
289 | .m1 = { .min = 18, .max = 26 }, | |
290 | .m2 = { .min = 6, .max = 16 }, | |
291 | .p = { .min = 4, .max = 128 }, | |
292 | .p1 = { .min = 1, .max = 6 }, | |
273e27ca EA |
293 | .p2 = { .dot_limit = 165000, |
294 | .p2_slow = 14, .p2_fast = 7 }, | |
e4b36699 | 295 | }; |
273e27ca | 296 | |
e4b36699 | 297 | static const intel_limit_t intel_limits_i9xx_sdvo = { |
0206e353 AJ |
298 | .dot = { .min = 20000, .max = 400000 }, |
299 | .vco = { .min = 1400000, .max = 2800000 }, | |
300 | .n = { .min = 1, .max = 6 }, | |
301 | .m = { .min = 70, .max = 120 }, | |
4f7dfb67 PJ |
302 | .m1 = { .min = 8, .max = 18 }, |
303 | .m2 = { .min = 3, .max = 7 }, | |
0206e353 AJ |
304 | .p = { .min = 5, .max = 80 }, |
305 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
306 | .p2 = { .dot_limit = 200000, |
307 | .p2_slow = 10, .p2_fast = 5 }, | |
e4b36699 KP |
308 | }; |
309 | ||
310 | static const intel_limit_t intel_limits_i9xx_lvds = { | |
0206e353 AJ |
311 | .dot = { .min = 20000, .max = 400000 }, |
312 | .vco = { .min = 1400000, .max = 2800000 }, | |
313 | .n = { .min = 1, .max = 6 }, | |
314 | .m = { .min = 70, .max = 120 }, | |
53a7d2d1 PJ |
315 | .m1 = { .min = 8, .max = 18 }, |
316 | .m2 = { .min = 3, .max = 7 }, | |
0206e353 AJ |
317 | .p = { .min = 7, .max = 98 }, |
318 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
319 | .p2 = { .dot_limit = 112000, |
320 | .p2_slow = 14, .p2_fast = 7 }, | |
e4b36699 KP |
321 | }; |
322 | ||
273e27ca | 323 | |
e4b36699 | 324 | static const intel_limit_t intel_limits_g4x_sdvo = { |
273e27ca EA |
325 | .dot = { .min = 25000, .max = 270000 }, |
326 | .vco = { .min = 1750000, .max = 3500000}, | |
327 | .n = { .min = 1, .max = 4 }, | |
328 | .m = { .min = 104, .max = 138 }, | |
329 | .m1 = { .min = 17, .max = 23 }, | |
330 | .m2 = { .min = 5, .max = 11 }, | |
331 | .p = { .min = 10, .max = 30 }, | |
332 | .p1 = { .min = 1, .max = 3}, | |
333 | .p2 = { .dot_limit = 270000, | |
334 | .p2_slow = 10, | |
335 | .p2_fast = 10 | |
044c7c41 | 336 | }, |
e4b36699 KP |
337 | }; |
338 | ||
339 | static const intel_limit_t intel_limits_g4x_hdmi = { | |
273e27ca EA |
340 | .dot = { .min = 22000, .max = 400000 }, |
341 | .vco = { .min = 1750000, .max = 3500000}, | |
342 | .n = { .min = 1, .max = 4 }, | |
343 | .m = { .min = 104, .max = 138 }, | |
344 | .m1 = { .min = 16, .max = 23 }, | |
345 | .m2 = { .min = 5, .max = 11 }, | |
346 | .p = { .min = 5, .max = 80 }, | |
347 | .p1 = { .min = 1, .max = 8}, | |
348 | .p2 = { .dot_limit = 165000, | |
349 | .p2_slow = 10, .p2_fast = 5 }, | |
e4b36699 KP |
350 | }; |
351 | ||
352 | static const intel_limit_t intel_limits_g4x_single_channel_lvds = { | |
273e27ca EA |
353 | .dot = { .min = 20000, .max = 115000 }, |
354 | .vco = { .min = 1750000, .max = 3500000 }, | |
355 | .n = { .min = 1, .max = 3 }, | |
356 | .m = { .min = 104, .max = 138 }, | |
357 | .m1 = { .min = 17, .max = 23 }, | |
358 | .m2 = { .min = 5, .max = 11 }, | |
359 | .p = { .min = 28, .max = 112 }, | |
360 | .p1 = { .min = 2, .max = 8 }, | |
361 | .p2 = { .dot_limit = 0, | |
362 | .p2_slow = 14, .p2_fast = 14 | |
044c7c41 | 363 | }, |
e4b36699 KP |
364 | }; |
365 | ||
366 | static const intel_limit_t intel_limits_g4x_dual_channel_lvds = { | |
273e27ca EA |
367 | .dot = { .min = 80000, .max = 224000 }, |
368 | .vco = { .min = 1750000, .max = 3500000 }, | |
369 | .n = { .min = 1, .max = 3 }, | |
370 | .m = { .min = 104, .max = 138 }, | |
371 | .m1 = { .min = 17, .max = 23 }, | |
372 | .m2 = { .min = 5, .max = 11 }, | |
373 | .p = { .min = 14, .max = 42 }, | |
374 | .p1 = { .min = 2, .max = 6 }, | |
375 | .p2 = { .dot_limit = 0, | |
376 | .p2_slow = 7, .p2_fast = 7 | |
044c7c41 | 377 | }, |
e4b36699 KP |
378 | }; |
379 | ||
f2b115e6 | 380 | static const intel_limit_t intel_limits_pineview_sdvo = { |
0206e353 AJ |
381 | .dot = { .min = 20000, .max = 400000}, |
382 | .vco = { .min = 1700000, .max = 3500000 }, | |
273e27ca | 383 | /* Pineview's Ncounter is a ring counter */ |
0206e353 AJ |
384 | .n = { .min = 3, .max = 6 }, |
385 | .m = { .min = 2, .max = 256 }, | |
273e27ca | 386 | /* Pineview only has one combined m divider, which we treat as m2. */ |
0206e353 AJ |
387 | .m1 = { .min = 0, .max = 0 }, |
388 | .m2 = { .min = 0, .max = 254 }, | |
389 | .p = { .min = 5, .max = 80 }, | |
390 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
391 | .p2 = { .dot_limit = 200000, |
392 | .p2_slow = 10, .p2_fast = 5 }, | |
e4b36699 KP |
393 | }; |
394 | ||
f2b115e6 | 395 | static const intel_limit_t intel_limits_pineview_lvds = { |
0206e353 AJ |
396 | .dot = { .min = 20000, .max = 400000 }, |
397 | .vco = { .min = 1700000, .max = 3500000 }, | |
398 | .n = { .min = 3, .max = 6 }, | |
399 | .m = { .min = 2, .max = 256 }, | |
400 | .m1 = { .min = 0, .max = 0 }, | |
401 | .m2 = { .min = 0, .max = 254 }, | |
402 | .p = { .min = 7, .max = 112 }, | |
403 | .p1 = { .min = 1, .max = 8 }, | |
273e27ca EA |
404 | .p2 = { .dot_limit = 112000, |
405 | .p2_slow = 14, .p2_fast = 14 }, | |
e4b36699 KP |
406 | }; |
407 | ||
273e27ca EA |
408 | /* Ironlake / Sandybridge |
409 | * | |
410 | * We calculate clock using (register_value + 2) for N/M1/M2, so here | |
411 | * the range value for them is (actual_value - 2). | |
412 | */ | |
b91ad0ec | 413 | static const intel_limit_t intel_limits_ironlake_dac = { |
273e27ca EA |
414 | .dot = { .min = 25000, .max = 350000 }, |
415 | .vco = { .min = 1760000, .max = 3510000 }, | |
416 | .n = { .min = 1, .max = 5 }, | |
417 | .m = { .min = 79, .max = 127 }, | |
418 | .m1 = { .min = 12, .max = 22 }, | |
419 | .m2 = { .min = 5, .max = 9 }, | |
420 | .p = { .min = 5, .max = 80 }, | |
421 | .p1 = { .min = 1, .max = 8 }, | |
422 | .p2 = { .dot_limit = 225000, | |
423 | .p2_slow = 10, .p2_fast = 5 }, | |
e4b36699 KP |
424 | }; |
425 | ||
b91ad0ec | 426 | static const intel_limit_t intel_limits_ironlake_single_lvds = { |
273e27ca EA |
427 | .dot = { .min = 25000, .max = 350000 }, |
428 | .vco = { .min = 1760000, .max = 3510000 }, | |
429 | .n = { .min = 1, .max = 3 }, | |
430 | .m = { .min = 79, .max = 118 }, | |
431 | .m1 = { .min = 12, .max = 22 }, | |
432 | .m2 = { .min = 5, .max = 9 }, | |
433 | .p = { .min = 28, .max = 112 }, | |
434 | .p1 = { .min = 2, .max = 8 }, | |
435 | .p2 = { .dot_limit = 225000, | |
436 | .p2_slow = 14, .p2_fast = 14 }, | |
b91ad0ec ZW |
437 | }; |
438 | ||
439 | static const intel_limit_t intel_limits_ironlake_dual_lvds = { | |
273e27ca EA |
440 | .dot = { .min = 25000, .max = 350000 }, |
441 | .vco = { .min = 1760000, .max = 3510000 }, | |
442 | .n = { .min = 1, .max = 3 }, | |
443 | .m = { .min = 79, .max = 127 }, | |
444 | .m1 = { .min = 12, .max = 22 }, | |
445 | .m2 = { .min = 5, .max = 9 }, | |
446 | .p = { .min = 14, .max = 56 }, | |
447 | .p1 = { .min = 2, .max = 8 }, | |
448 | .p2 = { .dot_limit = 225000, | |
449 | .p2_slow = 7, .p2_fast = 7 }, | |
b91ad0ec ZW |
450 | }; |
451 | ||
273e27ca | 452 | /* LVDS 100mhz refclk limits. */ |
b91ad0ec | 453 | static const intel_limit_t intel_limits_ironlake_single_lvds_100m = { |
273e27ca EA |
454 | .dot = { .min = 25000, .max = 350000 }, |
455 | .vco = { .min = 1760000, .max = 3510000 }, | |
456 | .n = { .min = 1, .max = 2 }, | |
457 | .m = { .min = 79, .max = 126 }, | |
458 | .m1 = { .min = 12, .max = 22 }, | |
459 | .m2 = { .min = 5, .max = 9 }, | |
460 | .p = { .min = 28, .max = 112 }, | |
0206e353 | 461 | .p1 = { .min = 2, .max = 8 }, |
273e27ca EA |
462 | .p2 = { .dot_limit = 225000, |
463 | .p2_slow = 14, .p2_fast = 14 }, | |
b91ad0ec ZW |
464 | }; |
465 | ||
466 | static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = { | |
273e27ca EA |
467 | .dot = { .min = 25000, .max = 350000 }, |
468 | .vco = { .min = 1760000, .max = 3510000 }, | |
469 | .n = { .min = 1, .max = 3 }, | |
470 | .m = { .min = 79, .max = 126 }, | |
471 | .m1 = { .min = 12, .max = 22 }, | |
472 | .m2 = { .min = 5, .max = 9 }, | |
473 | .p = { .min = 14, .max = 42 }, | |
0206e353 | 474 | .p1 = { .min = 2, .max = 6 }, |
273e27ca EA |
475 | .p2 = { .dot_limit = 225000, |
476 | .p2_slow = 7, .p2_fast = 7 }, | |
4547668a ZY |
477 | }; |
478 | ||
dc730512 | 479 | static const intel_limit_t intel_limits_vlv = { |
f01b7962 VS |
480 | /* |
481 | * These are the data rate limits (measured in fast clocks) | |
482 | * since those are the strictest limits we have. The fast | |
483 | * clock and actual rate limits are more relaxed, so checking | |
484 | * them would make no difference. | |
485 | */ | |
486 | .dot = { .min = 25000 * 5, .max = 270000 * 5 }, | |
75e53986 | 487 | .vco = { .min = 4000000, .max = 6000000 }, |
a0c4da24 | 488 | .n = { .min = 1, .max = 7 }, |
a0c4da24 JB |
489 | .m1 = { .min = 2, .max = 3 }, |
490 | .m2 = { .min = 11, .max = 156 }, | |
b99ab663 | 491 | .p1 = { .min = 2, .max = 3 }, |
5fdc9c49 | 492 | .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */ |
a0c4da24 JB |
493 | }; |
494 | ||
ef9348c8 CML |
495 | static const intel_limit_t intel_limits_chv = { |
496 | /* | |
497 | * These are the data rate limits (measured in fast clocks) | |
498 | * since those are the strictest limits we have. The fast | |
499 | * clock and actual rate limits are more relaxed, so checking | |
500 | * them would make no difference. | |
501 | */ | |
502 | .dot = { .min = 25000 * 5, .max = 540000 * 5}, | |
17fe1021 | 503 | .vco = { .min = 4800000, .max = 6480000 }, |
ef9348c8 CML |
504 | .n = { .min = 1, .max = 1 }, |
505 | .m1 = { .min = 2, .max = 2 }, | |
506 | .m2 = { .min = 24 << 22, .max = 175 << 22 }, | |
507 | .p1 = { .min = 2, .max = 4 }, | |
508 | .p2 = { .p2_slow = 1, .p2_fast = 14 }, | |
509 | }; | |
510 | ||
5ab7b0b7 ID |
511 | static const intel_limit_t intel_limits_bxt = { |
512 | /* FIXME: find real dot limits */ | |
513 | .dot = { .min = 0, .max = INT_MAX }, | |
e6292556 | 514 | .vco = { .min = 4800000, .max = 6700000 }, |
5ab7b0b7 ID |
515 | .n = { .min = 1, .max = 1 }, |
516 | .m1 = { .min = 2, .max = 2 }, | |
517 | /* FIXME: find real m2 limits */ | |
518 | .m2 = { .min = 2 << 22, .max = 255 << 22 }, | |
519 | .p1 = { .min = 2, .max = 4 }, | |
520 | .p2 = { .p2_slow = 1, .p2_fast = 20 }, | |
521 | }; | |
522 | ||
cdba954e ACO |
523 | static bool |
524 | needs_modeset(struct drm_crtc_state *state) | |
525 | { | |
fc596660 | 526 | return drm_atomic_crtc_needs_modeset(state); |
cdba954e ACO |
527 | } |
528 | ||
e0638cdf PZ |
529 | /** |
530 | * Returns whether any output on the specified pipe is of the specified type | |
531 | */ | |
4093561b | 532 | bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type) |
e0638cdf | 533 | { |
409ee761 | 534 | struct drm_device *dev = crtc->base.dev; |
e0638cdf PZ |
535 | struct intel_encoder *encoder; |
536 | ||
409ee761 | 537 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) |
e0638cdf PZ |
538 | if (encoder->type == type) |
539 | return true; | |
540 | ||
541 | return false; | |
542 | } | |
543 | ||
d0737e1d ACO |
544 | /** |
545 | * Returns whether any output on the specified pipe will have the specified | |
546 | * type after a staged modeset is complete, i.e., the same as | |
547 | * intel_pipe_has_type() but looking at encoder->new_crtc instead of | |
548 | * encoder->crtc. | |
549 | */ | |
a93e255f ACO |
550 | static bool intel_pipe_will_have_type(const struct intel_crtc_state *crtc_state, |
551 | int type) | |
d0737e1d | 552 | { |
a93e255f | 553 | struct drm_atomic_state *state = crtc_state->base.state; |
da3ced29 | 554 | struct drm_connector *connector; |
a93e255f | 555 | struct drm_connector_state *connector_state; |
d0737e1d | 556 | struct intel_encoder *encoder; |
a93e255f ACO |
557 | int i, num_connectors = 0; |
558 | ||
da3ced29 | 559 | for_each_connector_in_state(state, connector, connector_state, i) { |
a93e255f ACO |
560 | if (connector_state->crtc != crtc_state->base.crtc) |
561 | continue; | |
562 | ||
563 | num_connectors++; | |
d0737e1d | 564 | |
a93e255f ACO |
565 | encoder = to_intel_encoder(connector_state->best_encoder); |
566 | if (encoder->type == type) | |
d0737e1d | 567 | return true; |
a93e255f ACO |
568 | } |
569 | ||
570 | WARN_ON(num_connectors == 0); | |
d0737e1d ACO |
571 | |
572 | return false; | |
573 | } | |
574 | ||
dccbea3b ID |
575 | /* |
576 | * Platform specific helpers to calculate the port PLL loopback- (clock.m), | |
577 | * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast | |
578 | * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic. | |
579 | * The helpers' return value is the rate of the clock that is fed to the | |
580 | * display engine's pipe which can be the above fast dot clock rate or a | |
581 | * divided-down version of it. | |
582 | */ | |
f2b115e6 | 583 | /* m1 is reserved as 0 in Pineview, n is a ring counter */ |
dccbea3b | 584 | static int pnv_calc_dpll_params(int refclk, intel_clock_t *clock) |
79e53945 | 585 | { |
2177832f SL |
586 | clock->m = clock->m2 + 2; |
587 | clock->p = clock->p1 * clock->p2; | |
ed5ca77e | 588 | if (WARN_ON(clock->n == 0 || clock->p == 0)) |
dccbea3b | 589 | return 0; |
fb03ac01 VS |
590 | clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n); |
591 | clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p); | |
dccbea3b ID |
592 | |
593 | return clock->dot; | |
2177832f SL |
594 | } |
595 | ||
7429e9d4 DV |
596 | static uint32_t i9xx_dpll_compute_m(struct dpll *dpll) |
597 | { | |
598 | return 5 * (dpll->m1 + 2) + (dpll->m2 + 2); | |
599 | } | |
600 | ||
dccbea3b | 601 | static int i9xx_calc_dpll_params(int refclk, intel_clock_t *clock) |
2177832f | 602 | { |
7429e9d4 | 603 | clock->m = i9xx_dpll_compute_m(clock); |
79e53945 | 604 | clock->p = clock->p1 * clock->p2; |
ed5ca77e | 605 | if (WARN_ON(clock->n + 2 == 0 || clock->p == 0)) |
dccbea3b | 606 | return 0; |
fb03ac01 VS |
607 | clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2); |
608 | clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p); | |
dccbea3b ID |
609 | |
610 | return clock->dot; | |
79e53945 JB |
611 | } |
612 | ||
dccbea3b | 613 | static int vlv_calc_dpll_params(int refclk, intel_clock_t *clock) |
589eca67 ID |
614 | { |
615 | clock->m = clock->m1 * clock->m2; | |
616 | clock->p = clock->p1 * clock->p2; | |
617 | if (WARN_ON(clock->n == 0 || clock->p == 0)) | |
dccbea3b | 618 | return 0; |
589eca67 ID |
619 | clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n); |
620 | clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p); | |
dccbea3b ID |
621 | |
622 | return clock->dot / 5; | |
589eca67 ID |
623 | } |
624 | ||
dccbea3b | 625 | int chv_calc_dpll_params(int refclk, intel_clock_t *clock) |
ef9348c8 CML |
626 | { |
627 | clock->m = clock->m1 * clock->m2; | |
628 | clock->p = clock->p1 * clock->p2; | |
629 | if (WARN_ON(clock->n == 0 || clock->p == 0)) | |
dccbea3b | 630 | return 0; |
ef9348c8 CML |
631 | clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m, |
632 | clock->n << 22); | |
633 | clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p); | |
dccbea3b ID |
634 | |
635 | return clock->dot / 5; | |
ef9348c8 CML |
636 | } |
637 | ||
7c04d1d9 | 638 | #define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0) |
79e53945 JB |
639 | /** |
640 | * Returns whether the given set of divisors are valid for a given refclk with | |
641 | * the given connectors. | |
642 | */ | |
643 | ||
1b894b59 CW |
644 | static bool intel_PLL_is_valid(struct drm_device *dev, |
645 | const intel_limit_t *limit, | |
646 | const intel_clock_t *clock) | |
79e53945 | 647 | { |
f01b7962 VS |
648 | if (clock->n < limit->n.min || limit->n.max < clock->n) |
649 | INTELPllInvalid("n out of range\n"); | |
79e53945 | 650 | if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1) |
0206e353 | 651 | INTELPllInvalid("p1 out of range\n"); |
79e53945 | 652 | if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2) |
0206e353 | 653 | INTELPllInvalid("m2 out of range\n"); |
79e53945 | 654 | if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1) |
0206e353 | 655 | INTELPllInvalid("m1 out of range\n"); |
f01b7962 | 656 | |
666a4537 WB |
657 | if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) && |
658 | !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev)) | |
f01b7962 VS |
659 | if (clock->m1 <= clock->m2) |
660 | INTELPllInvalid("m1 <= m2\n"); | |
661 | ||
666a4537 | 662 | if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev)) { |
f01b7962 VS |
663 | if (clock->p < limit->p.min || limit->p.max < clock->p) |
664 | INTELPllInvalid("p out of range\n"); | |
665 | if (clock->m < limit->m.min || limit->m.max < clock->m) | |
666 | INTELPllInvalid("m out of range\n"); | |
667 | } | |
668 | ||
79e53945 | 669 | if (clock->vco < limit->vco.min || limit->vco.max < clock->vco) |
0206e353 | 670 | INTELPllInvalid("vco out of range\n"); |
79e53945 JB |
671 | /* XXX: We may need to be checking "Dot clock" depending on the multiplier, |
672 | * connector, etc., rather than just a single range. | |
673 | */ | |
674 | if (clock->dot < limit->dot.min || limit->dot.max < clock->dot) | |
0206e353 | 675 | INTELPllInvalid("dot out of range\n"); |
79e53945 JB |
676 | |
677 | return true; | |
678 | } | |
679 | ||
3b1429d9 VS |
680 | static int |
681 | i9xx_select_p2_div(const intel_limit_t *limit, | |
682 | const struct intel_crtc_state *crtc_state, | |
683 | int target) | |
79e53945 | 684 | { |
3b1429d9 | 685 | struct drm_device *dev = crtc_state->base.crtc->dev; |
79e53945 | 686 | |
a93e255f | 687 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { |
79e53945 | 688 | /* |
a210b028 DV |
689 | * For LVDS just rely on its current settings for dual-channel. |
690 | * We haven't figured out how to reliably set up different | |
691 | * single/dual channel state, if we even can. | |
79e53945 | 692 | */ |
1974cad0 | 693 | if (intel_is_dual_link_lvds(dev)) |
3b1429d9 | 694 | return limit->p2.p2_fast; |
79e53945 | 695 | else |
3b1429d9 | 696 | return limit->p2.p2_slow; |
79e53945 JB |
697 | } else { |
698 | if (target < limit->p2.dot_limit) | |
3b1429d9 | 699 | return limit->p2.p2_slow; |
79e53945 | 700 | else |
3b1429d9 | 701 | return limit->p2.p2_fast; |
79e53945 | 702 | } |
3b1429d9 VS |
703 | } |
704 | ||
70e8aa21 ACO |
705 | /* |
706 | * Returns a set of divisors for the desired target clock with the given | |
707 | * refclk, or FALSE. The returned values represent the clock equation: | |
708 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. | |
709 | * | |
710 | * Target and reference clocks are specified in kHz. | |
711 | * | |
712 | * If match_clock is provided, then best_clock P divider must match the P | |
713 | * divider from @match_clock used for LVDS downclocking. | |
714 | */ | |
3b1429d9 VS |
715 | static bool |
716 | i9xx_find_best_dpll(const intel_limit_t *limit, | |
717 | struct intel_crtc_state *crtc_state, | |
718 | int target, int refclk, intel_clock_t *match_clock, | |
719 | intel_clock_t *best_clock) | |
720 | { | |
721 | struct drm_device *dev = crtc_state->base.crtc->dev; | |
722 | intel_clock_t clock; | |
723 | int err = target; | |
79e53945 | 724 | |
0206e353 | 725 | memset(best_clock, 0, sizeof(*best_clock)); |
79e53945 | 726 | |
3b1429d9 VS |
727 | clock.p2 = i9xx_select_p2_div(limit, crtc_state, target); |
728 | ||
42158660 ZY |
729 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; |
730 | clock.m1++) { | |
731 | for (clock.m2 = limit->m2.min; | |
732 | clock.m2 <= limit->m2.max; clock.m2++) { | |
c0efc387 | 733 | if (clock.m2 >= clock.m1) |
42158660 ZY |
734 | break; |
735 | for (clock.n = limit->n.min; | |
736 | clock.n <= limit->n.max; clock.n++) { | |
737 | for (clock.p1 = limit->p1.min; | |
738 | clock.p1 <= limit->p1.max; clock.p1++) { | |
79e53945 JB |
739 | int this_err; |
740 | ||
dccbea3b | 741 | i9xx_calc_dpll_params(refclk, &clock); |
ac58c3f0 DV |
742 | if (!intel_PLL_is_valid(dev, limit, |
743 | &clock)) | |
744 | continue; | |
745 | if (match_clock && | |
746 | clock.p != match_clock->p) | |
747 | continue; | |
748 | ||
749 | this_err = abs(clock.dot - target); | |
750 | if (this_err < err) { | |
751 | *best_clock = clock; | |
752 | err = this_err; | |
753 | } | |
754 | } | |
755 | } | |
756 | } | |
757 | } | |
758 | ||
759 | return (err != target); | |
760 | } | |
761 | ||
70e8aa21 ACO |
762 | /* |
763 | * Returns a set of divisors for the desired target clock with the given | |
764 | * refclk, or FALSE. The returned values represent the clock equation: | |
765 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. | |
766 | * | |
767 | * Target and reference clocks are specified in kHz. | |
768 | * | |
769 | * If match_clock is provided, then best_clock P divider must match the P | |
770 | * divider from @match_clock used for LVDS downclocking. | |
771 | */ | |
ac58c3f0 | 772 | static bool |
a93e255f ACO |
773 | pnv_find_best_dpll(const intel_limit_t *limit, |
774 | struct intel_crtc_state *crtc_state, | |
ee9300bb DV |
775 | int target, int refclk, intel_clock_t *match_clock, |
776 | intel_clock_t *best_clock) | |
79e53945 | 777 | { |
3b1429d9 | 778 | struct drm_device *dev = crtc_state->base.crtc->dev; |
79e53945 | 779 | intel_clock_t clock; |
79e53945 JB |
780 | int err = target; |
781 | ||
0206e353 | 782 | memset(best_clock, 0, sizeof(*best_clock)); |
79e53945 | 783 | |
3b1429d9 VS |
784 | clock.p2 = i9xx_select_p2_div(limit, crtc_state, target); |
785 | ||
42158660 ZY |
786 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; |
787 | clock.m1++) { | |
788 | for (clock.m2 = limit->m2.min; | |
789 | clock.m2 <= limit->m2.max; clock.m2++) { | |
42158660 ZY |
790 | for (clock.n = limit->n.min; |
791 | clock.n <= limit->n.max; clock.n++) { | |
792 | for (clock.p1 = limit->p1.min; | |
793 | clock.p1 <= limit->p1.max; clock.p1++) { | |
79e53945 JB |
794 | int this_err; |
795 | ||
dccbea3b | 796 | pnv_calc_dpll_params(refclk, &clock); |
1b894b59 CW |
797 | if (!intel_PLL_is_valid(dev, limit, |
798 | &clock)) | |
79e53945 | 799 | continue; |
cec2f356 SP |
800 | if (match_clock && |
801 | clock.p != match_clock->p) | |
802 | continue; | |
79e53945 JB |
803 | |
804 | this_err = abs(clock.dot - target); | |
805 | if (this_err < err) { | |
806 | *best_clock = clock; | |
807 | err = this_err; | |
808 | } | |
809 | } | |
810 | } | |
811 | } | |
812 | } | |
813 | ||
814 | return (err != target); | |
815 | } | |
816 | ||
997c030c ACO |
817 | /* |
818 | * Returns a set of divisors for the desired target clock with the given | |
819 | * refclk, or FALSE. The returned values represent the clock equation: | |
820 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. | |
70e8aa21 ACO |
821 | * |
822 | * Target and reference clocks are specified in kHz. | |
823 | * | |
824 | * If match_clock is provided, then best_clock P divider must match the P | |
825 | * divider from @match_clock used for LVDS downclocking. | |
997c030c | 826 | */ |
d4906093 | 827 | static bool |
a93e255f ACO |
828 | g4x_find_best_dpll(const intel_limit_t *limit, |
829 | struct intel_crtc_state *crtc_state, | |
ee9300bb DV |
830 | int target, int refclk, intel_clock_t *match_clock, |
831 | intel_clock_t *best_clock) | |
d4906093 | 832 | { |
3b1429d9 | 833 | struct drm_device *dev = crtc_state->base.crtc->dev; |
d4906093 ML |
834 | intel_clock_t clock; |
835 | int max_n; | |
3b1429d9 | 836 | bool found = false; |
6ba770dc AJ |
837 | /* approximately equals target * 0.00585 */ |
838 | int err_most = (target >> 8) + (target >> 9); | |
d4906093 ML |
839 | |
840 | memset(best_clock, 0, sizeof(*best_clock)); | |
3b1429d9 VS |
841 | |
842 | clock.p2 = i9xx_select_p2_div(limit, crtc_state, target); | |
843 | ||
d4906093 | 844 | max_n = limit->n.max; |
f77f13e2 | 845 | /* based on hardware requirement, prefer smaller n to precision */ |
d4906093 | 846 | for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { |
f77f13e2 | 847 | /* based on hardware requirement, prefere larger m1,m2 */ |
d4906093 ML |
848 | for (clock.m1 = limit->m1.max; |
849 | clock.m1 >= limit->m1.min; clock.m1--) { | |
850 | for (clock.m2 = limit->m2.max; | |
851 | clock.m2 >= limit->m2.min; clock.m2--) { | |
852 | for (clock.p1 = limit->p1.max; | |
853 | clock.p1 >= limit->p1.min; clock.p1--) { | |
854 | int this_err; | |
855 | ||
dccbea3b | 856 | i9xx_calc_dpll_params(refclk, &clock); |
1b894b59 CW |
857 | if (!intel_PLL_is_valid(dev, limit, |
858 | &clock)) | |
d4906093 | 859 | continue; |
1b894b59 CW |
860 | |
861 | this_err = abs(clock.dot - target); | |
d4906093 ML |
862 | if (this_err < err_most) { |
863 | *best_clock = clock; | |
864 | err_most = this_err; | |
865 | max_n = clock.n; | |
866 | found = true; | |
867 | } | |
868 | } | |
869 | } | |
870 | } | |
871 | } | |
2c07245f ZW |
872 | return found; |
873 | } | |
874 | ||
d5dd62bd ID |
875 | /* |
876 | * Check if the calculated PLL configuration is more optimal compared to the | |
877 | * best configuration and error found so far. Return the calculated error. | |
878 | */ | |
879 | static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq, | |
880 | const intel_clock_t *calculated_clock, | |
881 | const intel_clock_t *best_clock, | |
882 | unsigned int best_error_ppm, | |
883 | unsigned int *error_ppm) | |
884 | { | |
9ca3ba01 ID |
885 | /* |
886 | * For CHV ignore the error and consider only the P value. | |
887 | * Prefer a bigger P value based on HW requirements. | |
888 | */ | |
889 | if (IS_CHERRYVIEW(dev)) { | |
890 | *error_ppm = 0; | |
891 | ||
892 | return calculated_clock->p > best_clock->p; | |
893 | } | |
894 | ||
24be4e46 ID |
895 | if (WARN_ON_ONCE(!target_freq)) |
896 | return false; | |
897 | ||
d5dd62bd ID |
898 | *error_ppm = div_u64(1000000ULL * |
899 | abs(target_freq - calculated_clock->dot), | |
900 | target_freq); | |
901 | /* | |
902 | * Prefer a better P value over a better (smaller) error if the error | |
903 | * is small. Ensure this preference for future configurations too by | |
904 | * setting the error to 0. | |
905 | */ | |
906 | if (*error_ppm < 100 && calculated_clock->p > best_clock->p) { | |
907 | *error_ppm = 0; | |
908 | ||
909 | return true; | |
910 | } | |
911 | ||
912 | return *error_ppm + 10 < best_error_ppm; | |
913 | } | |
914 | ||
65b3d6a9 ACO |
915 | /* |
916 | * Returns a set of divisors for the desired target clock with the given | |
917 | * refclk, or FALSE. The returned values represent the clock equation: | |
918 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. | |
919 | */ | |
a0c4da24 | 920 | static bool |
a93e255f ACO |
921 | vlv_find_best_dpll(const intel_limit_t *limit, |
922 | struct intel_crtc_state *crtc_state, | |
ee9300bb DV |
923 | int target, int refclk, intel_clock_t *match_clock, |
924 | intel_clock_t *best_clock) | |
a0c4da24 | 925 | { |
a93e255f | 926 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc); |
a919ff14 | 927 | struct drm_device *dev = crtc->base.dev; |
6b4bf1c4 | 928 | intel_clock_t clock; |
69e4f900 | 929 | unsigned int bestppm = 1000000; |
27e639bf VS |
930 | /* min update 19.2 MHz */ |
931 | int max_n = min(limit->n.max, refclk / 19200); | |
49e497ef | 932 | bool found = false; |
a0c4da24 | 933 | |
6b4bf1c4 VS |
934 | target *= 5; /* fast clock */ |
935 | ||
936 | memset(best_clock, 0, sizeof(*best_clock)); | |
a0c4da24 JB |
937 | |
938 | /* based on hardware requirement, prefer smaller n to precision */ | |
27e639bf | 939 | for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { |
811bbf05 | 940 | for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) { |
889059d8 | 941 | for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow; |
c1a9ae43 | 942 | clock.p2 -= clock.p2 > 10 ? 2 : 1) { |
6b4bf1c4 | 943 | clock.p = clock.p1 * clock.p2; |
a0c4da24 | 944 | /* based on hardware requirement, prefer bigger m1,m2 values */ |
6b4bf1c4 | 945 | for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) { |
d5dd62bd | 946 | unsigned int ppm; |
69e4f900 | 947 | |
6b4bf1c4 VS |
948 | clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n, |
949 | refclk * clock.m1); | |
950 | ||
dccbea3b | 951 | vlv_calc_dpll_params(refclk, &clock); |
43b0ac53 | 952 | |
f01b7962 VS |
953 | if (!intel_PLL_is_valid(dev, limit, |
954 | &clock)) | |
43b0ac53 VS |
955 | continue; |
956 | ||
d5dd62bd ID |
957 | if (!vlv_PLL_is_optimal(dev, target, |
958 | &clock, | |
959 | best_clock, | |
960 | bestppm, &ppm)) | |
961 | continue; | |
6b4bf1c4 | 962 | |
d5dd62bd ID |
963 | *best_clock = clock; |
964 | bestppm = ppm; | |
965 | found = true; | |
a0c4da24 JB |
966 | } |
967 | } | |
968 | } | |
969 | } | |
a0c4da24 | 970 | |
49e497ef | 971 | return found; |
a0c4da24 | 972 | } |
a4fc5ed6 | 973 | |
65b3d6a9 ACO |
974 | /* |
975 | * Returns a set of divisors for the desired target clock with the given | |
976 | * refclk, or FALSE. The returned values represent the clock equation: | |
977 | * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2. | |
978 | */ | |
ef9348c8 | 979 | static bool |
a93e255f ACO |
980 | chv_find_best_dpll(const intel_limit_t *limit, |
981 | struct intel_crtc_state *crtc_state, | |
ef9348c8 CML |
982 | int target, int refclk, intel_clock_t *match_clock, |
983 | intel_clock_t *best_clock) | |
984 | { | |
a93e255f | 985 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc); |
a919ff14 | 986 | struct drm_device *dev = crtc->base.dev; |
9ca3ba01 | 987 | unsigned int best_error_ppm; |
ef9348c8 CML |
988 | intel_clock_t clock; |
989 | uint64_t m2; | |
990 | int found = false; | |
991 | ||
992 | memset(best_clock, 0, sizeof(*best_clock)); | |
9ca3ba01 | 993 | best_error_ppm = 1000000; |
ef9348c8 CML |
994 | |
995 | /* | |
996 | * Based on hardware doc, the n always set to 1, and m1 always | |
997 | * set to 2. If requires to support 200Mhz refclk, we need to | |
998 | * revisit this because n may not 1 anymore. | |
999 | */ | |
1000 | clock.n = 1, clock.m1 = 2; | |
1001 | target *= 5; /* fast clock */ | |
1002 | ||
1003 | for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) { | |
1004 | for (clock.p2 = limit->p2.p2_fast; | |
1005 | clock.p2 >= limit->p2.p2_slow; | |
1006 | clock.p2 -= clock.p2 > 10 ? 2 : 1) { | |
9ca3ba01 | 1007 | unsigned int error_ppm; |
ef9348c8 CML |
1008 | |
1009 | clock.p = clock.p1 * clock.p2; | |
1010 | ||
1011 | m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p * | |
1012 | clock.n) << 22, refclk * clock.m1); | |
1013 | ||
1014 | if (m2 > INT_MAX/clock.m1) | |
1015 | continue; | |
1016 | ||
1017 | clock.m2 = m2; | |
1018 | ||
dccbea3b | 1019 | chv_calc_dpll_params(refclk, &clock); |
ef9348c8 CML |
1020 | |
1021 | if (!intel_PLL_is_valid(dev, limit, &clock)) | |
1022 | continue; | |
1023 | ||
9ca3ba01 ID |
1024 | if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock, |
1025 | best_error_ppm, &error_ppm)) | |
1026 | continue; | |
1027 | ||
1028 | *best_clock = clock; | |
1029 | best_error_ppm = error_ppm; | |
1030 | found = true; | |
ef9348c8 CML |
1031 | } |
1032 | } | |
1033 | ||
1034 | return found; | |
1035 | } | |
1036 | ||
5ab7b0b7 ID |
1037 | bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock, |
1038 | intel_clock_t *best_clock) | |
1039 | { | |
65b3d6a9 ACO |
1040 | int refclk = 100000; |
1041 | const intel_limit_t *limit = &intel_limits_bxt; | |
5ab7b0b7 | 1042 | |
65b3d6a9 | 1043 | return chv_find_best_dpll(limit, crtc_state, |
5ab7b0b7 ID |
1044 | target_clock, refclk, NULL, best_clock); |
1045 | } | |
1046 | ||
20ddf665 VS |
1047 | bool intel_crtc_active(struct drm_crtc *crtc) |
1048 | { | |
1049 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
1050 | ||
1051 | /* Be paranoid as we can arrive here with only partial | |
1052 | * state retrieved from the hardware during setup. | |
1053 | * | |
241bfc38 | 1054 | * We can ditch the adjusted_mode.crtc_clock check as soon |
20ddf665 VS |
1055 | * as Haswell has gained clock readout/fastboot support. |
1056 | * | |
66e514c1 | 1057 | * We can ditch the crtc->primary->fb check as soon as we can |
20ddf665 | 1058 | * properly reconstruct framebuffers. |
c3d1f436 MR |
1059 | * |
1060 | * FIXME: The intel_crtc->active here should be switched to | |
1061 | * crtc->state->active once we have proper CRTC states wired up | |
1062 | * for atomic. | |
20ddf665 | 1063 | */ |
c3d1f436 | 1064 | return intel_crtc->active && crtc->primary->state->fb && |
6e3c9717 | 1065 | intel_crtc->config->base.adjusted_mode.crtc_clock; |
20ddf665 VS |
1066 | } |
1067 | ||
a5c961d1 PZ |
1068 | enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv, |
1069 | enum pipe pipe) | |
1070 | { | |
1071 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; | |
1072 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
1073 | ||
6e3c9717 | 1074 | return intel_crtc->config->cpu_transcoder; |
a5c961d1 PZ |
1075 | } |
1076 | ||
fbf49ea2 VS |
1077 | static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe) |
1078 | { | |
1079 | struct drm_i915_private *dev_priv = dev->dev_private; | |
f0f59a00 | 1080 | i915_reg_t reg = PIPEDSL(pipe); |
fbf49ea2 VS |
1081 | u32 line1, line2; |
1082 | u32 line_mask; | |
1083 | ||
1084 | if (IS_GEN2(dev)) | |
1085 | line_mask = DSL_LINEMASK_GEN2; | |
1086 | else | |
1087 | line_mask = DSL_LINEMASK_GEN3; | |
1088 | ||
1089 | line1 = I915_READ(reg) & line_mask; | |
6adfb1ef | 1090 | msleep(5); |
fbf49ea2 VS |
1091 | line2 = I915_READ(reg) & line_mask; |
1092 | ||
1093 | return line1 == line2; | |
1094 | } | |
1095 | ||
ab7ad7f6 KP |
1096 | /* |
1097 | * intel_wait_for_pipe_off - wait for pipe to turn off | |
575f7ab7 | 1098 | * @crtc: crtc whose pipe to wait for |
9d0498a2 JB |
1099 | * |
1100 | * After disabling a pipe, we can't wait for vblank in the usual way, | |
1101 | * spinning on the vblank interrupt status bit, since we won't actually | |
1102 | * see an interrupt when the pipe is disabled. | |
1103 | * | |
ab7ad7f6 KP |
1104 | * On Gen4 and above: |
1105 | * wait for the pipe register state bit to turn off | |
1106 | * | |
1107 | * Otherwise: | |
1108 | * wait for the display line value to settle (it usually | |
1109 | * ends up stopping at the start of the next frame). | |
58e10eb9 | 1110 | * |
9d0498a2 | 1111 | */ |
575f7ab7 | 1112 | static void intel_wait_for_pipe_off(struct intel_crtc *crtc) |
9d0498a2 | 1113 | { |
575f7ab7 | 1114 | struct drm_device *dev = crtc->base.dev; |
9d0498a2 | 1115 | struct drm_i915_private *dev_priv = dev->dev_private; |
6e3c9717 | 1116 | enum transcoder cpu_transcoder = crtc->config->cpu_transcoder; |
575f7ab7 | 1117 | enum pipe pipe = crtc->pipe; |
ab7ad7f6 KP |
1118 | |
1119 | if (INTEL_INFO(dev)->gen >= 4) { | |
f0f59a00 | 1120 | i915_reg_t reg = PIPECONF(cpu_transcoder); |
ab7ad7f6 KP |
1121 | |
1122 | /* Wait for the Pipe State to go off */ | |
58e10eb9 CW |
1123 | if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0, |
1124 | 100)) | |
284637d9 | 1125 | WARN(1, "pipe_off wait timed out\n"); |
ab7ad7f6 | 1126 | } else { |
ab7ad7f6 | 1127 | /* Wait for the display line to settle */ |
fbf49ea2 | 1128 | if (wait_for(pipe_dsl_stopped(dev, pipe), 100)) |
284637d9 | 1129 | WARN(1, "pipe_off wait timed out\n"); |
ab7ad7f6 | 1130 | } |
79e53945 JB |
1131 | } |
1132 | ||
b24e7179 | 1133 | /* Only for pre-ILK configs */ |
55607e8a DV |
1134 | void assert_pll(struct drm_i915_private *dev_priv, |
1135 | enum pipe pipe, bool state) | |
b24e7179 | 1136 | { |
b24e7179 JB |
1137 | u32 val; |
1138 | bool cur_state; | |
1139 | ||
649636ef | 1140 | val = I915_READ(DPLL(pipe)); |
b24e7179 | 1141 | cur_state = !!(val & DPLL_VCO_ENABLE); |
e2c719b7 | 1142 | I915_STATE_WARN(cur_state != state, |
b24e7179 | 1143 | "PLL state assertion failure (expected %s, current %s)\n", |
87ad3212 | 1144 | onoff(state), onoff(cur_state)); |
b24e7179 | 1145 | } |
b24e7179 | 1146 | |
23538ef1 | 1147 | /* XXX: the dsi pll is shared between MIPI DSI ports */ |
8563b1e8 | 1148 | void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state) |
23538ef1 JN |
1149 | { |
1150 | u32 val; | |
1151 | bool cur_state; | |
1152 | ||
a580516d | 1153 | mutex_lock(&dev_priv->sb_lock); |
23538ef1 | 1154 | val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL); |
a580516d | 1155 | mutex_unlock(&dev_priv->sb_lock); |
23538ef1 JN |
1156 | |
1157 | cur_state = val & DSI_PLL_VCO_EN; | |
e2c719b7 | 1158 | I915_STATE_WARN(cur_state != state, |
23538ef1 | 1159 | "DSI PLL state assertion failure (expected %s, current %s)\n", |
87ad3212 | 1160 | onoff(state), onoff(cur_state)); |
23538ef1 | 1161 | } |
23538ef1 | 1162 | |
040484af JB |
1163 | static void assert_fdi_tx(struct drm_i915_private *dev_priv, |
1164 | enum pipe pipe, bool state) | |
1165 | { | |
040484af | 1166 | bool cur_state; |
ad80a810 PZ |
1167 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
1168 | pipe); | |
040484af | 1169 | |
affa9354 PZ |
1170 | if (HAS_DDI(dev_priv->dev)) { |
1171 | /* DDI does not have a specific FDI_TX register */ | |
649636ef | 1172 | u32 val = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder)); |
ad80a810 | 1173 | cur_state = !!(val & TRANS_DDI_FUNC_ENABLE); |
bf507ef7 | 1174 | } else { |
649636ef | 1175 | u32 val = I915_READ(FDI_TX_CTL(pipe)); |
bf507ef7 ED |
1176 | cur_state = !!(val & FDI_TX_ENABLE); |
1177 | } | |
e2c719b7 | 1178 | I915_STATE_WARN(cur_state != state, |
040484af | 1179 | "FDI TX state assertion failure (expected %s, current %s)\n", |
87ad3212 | 1180 | onoff(state), onoff(cur_state)); |
040484af JB |
1181 | } |
1182 | #define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true) | |
1183 | #define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false) | |
1184 | ||
1185 | static void assert_fdi_rx(struct drm_i915_private *dev_priv, | |
1186 | enum pipe pipe, bool state) | |
1187 | { | |
040484af JB |
1188 | u32 val; |
1189 | bool cur_state; | |
1190 | ||
649636ef | 1191 | val = I915_READ(FDI_RX_CTL(pipe)); |
d63fa0dc | 1192 | cur_state = !!(val & FDI_RX_ENABLE); |
e2c719b7 | 1193 | I915_STATE_WARN(cur_state != state, |
040484af | 1194 | "FDI RX state assertion failure (expected %s, current %s)\n", |
87ad3212 | 1195 | onoff(state), onoff(cur_state)); |
040484af JB |
1196 | } |
1197 | #define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true) | |
1198 | #define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false) | |
1199 | ||
1200 | static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv, | |
1201 | enum pipe pipe) | |
1202 | { | |
040484af JB |
1203 | u32 val; |
1204 | ||
1205 | /* ILK FDI PLL is always enabled */ | |
3d13ef2e | 1206 | if (INTEL_INFO(dev_priv->dev)->gen == 5) |
040484af JB |
1207 | return; |
1208 | ||
bf507ef7 | 1209 | /* On Haswell, DDI ports are responsible for the FDI PLL setup */ |
affa9354 | 1210 | if (HAS_DDI(dev_priv->dev)) |
bf507ef7 ED |
1211 | return; |
1212 | ||
649636ef | 1213 | val = I915_READ(FDI_TX_CTL(pipe)); |
e2c719b7 | 1214 | I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n"); |
040484af JB |
1215 | } |
1216 | ||
55607e8a DV |
1217 | void assert_fdi_rx_pll(struct drm_i915_private *dev_priv, |
1218 | enum pipe pipe, bool state) | |
040484af | 1219 | { |
040484af | 1220 | u32 val; |
55607e8a | 1221 | bool cur_state; |
040484af | 1222 | |
649636ef | 1223 | val = I915_READ(FDI_RX_CTL(pipe)); |
55607e8a | 1224 | cur_state = !!(val & FDI_RX_PLL_ENABLE); |
e2c719b7 | 1225 | I915_STATE_WARN(cur_state != state, |
55607e8a | 1226 | "FDI RX PLL assertion failure (expected %s, current %s)\n", |
87ad3212 | 1227 | onoff(state), onoff(cur_state)); |
040484af JB |
1228 | } |
1229 | ||
b680c37a DV |
1230 | void assert_panel_unlocked(struct drm_i915_private *dev_priv, |
1231 | enum pipe pipe) | |
ea0760cf | 1232 | { |
bedd4dba | 1233 | struct drm_device *dev = dev_priv->dev; |
f0f59a00 | 1234 | i915_reg_t pp_reg; |
ea0760cf JB |
1235 | u32 val; |
1236 | enum pipe panel_pipe = PIPE_A; | |
0de3b485 | 1237 | bool locked = true; |
ea0760cf | 1238 | |
bedd4dba JN |
1239 | if (WARN_ON(HAS_DDI(dev))) |
1240 | return; | |
1241 | ||
1242 | if (HAS_PCH_SPLIT(dev)) { | |
1243 | u32 port_sel; | |
1244 | ||
ea0760cf | 1245 | pp_reg = PCH_PP_CONTROL; |
bedd4dba JN |
1246 | port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK; |
1247 | ||
1248 | if (port_sel == PANEL_PORT_SELECT_LVDS && | |
1249 | I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT) | |
1250 | panel_pipe = PIPE_B; | |
1251 | /* XXX: else fix for eDP */ | |
666a4537 | 1252 | } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
bedd4dba JN |
1253 | /* presumably write lock depends on pipe, not port select */ |
1254 | pp_reg = VLV_PIPE_PP_CONTROL(pipe); | |
1255 | panel_pipe = pipe; | |
ea0760cf JB |
1256 | } else { |
1257 | pp_reg = PP_CONTROL; | |
bedd4dba JN |
1258 | if (I915_READ(LVDS) & LVDS_PIPEB_SELECT) |
1259 | panel_pipe = PIPE_B; | |
ea0760cf JB |
1260 | } |
1261 | ||
1262 | val = I915_READ(pp_reg); | |
1263 | if (!(val & PANEL_POWER_ON) || | |
ec49ba2d | 1264 | ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS)) |
ea0760cf JB |
1265 | locked = false; |
1266 | ||
e2c719b7 | 1267 | I915_STATE_WARN(panel_pipe == pipe && locked, |
ea0760cf | 1268 | "panel assertion failure, pipe %c regs locked\n", |
9db4a9c7 | 1269 | pipe_name(pipe)); |
ea0760cf JB |
1270 | } |
1271 | ||
93ce0ba6 JN |
1272 | static void assert_cursor(struct drm_i915_private *dev_priv, |
1273 | enum pipe pipe, bool state) | |
1274 | { | |
1275 | struct drm_device *dev = dev_priv->dev; | |
1276 | bool cur_state; | |
1277 | ||
d9d82081 | 1278 | if (IS_845G(dev) || IS_I865G(dev)) |
0b87c24e | 1279 | cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE; |
d9d82081 | 1280 | else |
5efb3e28 | 1281 | cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE; |
93ce0ba6 | 1282 | |
e2c719b7 | 1283 | I915_STATE_WARN(cur_state != state, |
93ce0ba6 | 1284 | "cursor on pipe %c assertion failure (expected %s, current %s)\n", |
87ad3212 | 1285 | pipe_name(pipe), onoff(state), onoff(cur_state)); |
93ce0ba6 JN |
1286 | } |
1287 | #define assert_cursor_enabled(d, p) assert_cursor(d, p, true) | |
1288 | #define assert_cursor_disabled(d, p) assert_cursor(d, p, false) | |
1289 | ||
b840d907 JB |
1290 | void assert_pipe(struct drm_i915_private *dev_priv, |
1291 | enum pipe pipe, bool state) | |
b24e7179 | 1292 | { |
63d7bbe9 | 1293 | bool cur_state; |
702e7a56 PZ |
1294 | enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, |
1295 | pipe); | |
4feed0eb | 1296 | enum intel_display_power_domain power_domain; |
b24e7179 | 1297 | |
b6b5d049 VS |
1298 | /* if we need the pipe quirk it must be always on */ |
1299 | if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) || | |
1300 | (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)) | |
8e636784 DV |
1301 | state = true; |
1302 | ||
4feed0eb ID |
1303 | power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder); |
1304 | if (intel_display_power_get_if_enabled(dev_priv, power_domain)) { | |
649636ef | 1305 | u32 val = I915_READ(PIPECONF(cpu_transcoder)); |
69310161 | 1306 | cur_state = !!(val & PIPECONF_ENABLE); |
4feed0eb ID |
1307 | |
1308 | intel_display_power_put(dev_priv, power_domain); | |
1309 | } else { | |
1310 | cur_state = false; | |
69310161 PZ |
1311 | } |
1312 | ||
e2c719b7 | 1313 | I915_STATE_WARN(cur_state != state, |
63d7bbe9 | 1314 | "pipe %c assertion failure (expected %s, current %s)\n", |
87ad3212 | 1315 | pipe_name(pipe), onoff(state), onoff(cur_state)); |
b24e7179 JB |
1316 | } |
1317 | ||
931872fc CW |
1318 | static void assert_plane(struct drm_i915_private *dev_priv, |
1319 | enum plane plane, bool state) | |
b24e7179 | 1320 | { |
b24e7179 | 1321 | u32 val; |
931872fc | 1322 | bool cur_state; |
b24e7179 | 1323 | |
649636ef | 1324 | val = I915_READ(DSPCNTR(plane)); |
931872fc | 1325 | cur_state = !!(val & DISPLAY_PLANE_ENABLE); |
e2c719b7 | 1326 | I915_STATE_WARN(cur_state != state, |
931872fc | 1327 | "plane %c assertion failure (expected %s, current %s)\n", |
87ad3212 | 1328 | plane_name(plane), onoff(state), onoff(cur_state)); |
b24e7179 JB |
1329 | } |
1330 | ||
931872fc CW |
1331 | #define assert_plane_enabled(d, p) assert_plane(d, p, true) |
1332 | #define assert_plane_disabled(d, p) assert_plane(d, p, false) | |
1333 | ||
b24e7179 JB |
1334 | static void assert_planes_disabled(struct drm_i915_private *dev_priv, |
1335 | enum pipe pipe) | |
1336 | { | |
653e1026 | 1337 | struct drm_device *dev = dev_priv->dev; |
649636ef | 1338 | int i; |
b24e7179 | 1339 | |
653e1026 VS |
1340 | /* Primary planes are fixed to pipes on gen4+ */ |
1341 | if (INTEL_INFO(dev)->gen >= 4) { | |
649636ef | 1342 | u32 val = I915_READ(DSPCNTR(pipe)); |
e2c719b7 | 1343 | I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE, |
28c05794 AJ |
1344 | "plane %c assertion failure, should be disabled but not\n", |
1345 | plane_name(pipe)); | |
19ec1358 | 1346 | return; |
28c05794 | 1347 | } |
19ec1358 | 1348 | |
b24e7179 | 1349 | /* Need to check both planes against the pipe */ |
055e393f | 1350 | for_each_pipe(dev_priv, i) { |
649636ef VS |
1351 | u32 val = I915_READ(DSPCNTR(i)); |
1352 | enum pipe cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >> | |
b24e7179 | 1353 | DISPPLANE_SEL_PIPE_SHIFT; |
e2c719b7 | 1354 | I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe, |
9db4a9c7 JB |
1355 | "plane %c assertion failure, should be off on pipe %c but is still active\n", |
1356 | plane_name(i), pipe_name(pipe)); | |
b24e7179 JB |
1357 | } |
1358 | } | |
1359 | ||
19332d7a JB |
1360 | static void assert_sprites_disabled(struct drm_i915_private *dev_priv, |
1361 | enum pipe pipe) | |
1362 | { | |
20674eef | 1363 | struct drm_device *dev = dev_priv->dev; |
649636ef | 1364 | int sprite; |
19332d7a | 1365 | |
7feb8b88 | 1366 | if (INTEL_INFO(dev)->gen >= 9) { |
3bdcfc0c | 1367 | for_each_sprite(dev_priv, pipe, sprite) { |
649636ef | 1368 | u32 val = I915_READ(PLANE_CTL(pipe, sprite)); |
e2c719b7 | 1369 | I915_STATE_WARN(val & PLANE_CTL_ENABLE, |
7feb8b88 DL |
1370 | "plane %d assertion failure, should be off on pipe %c but is still active\n", |
1371 | sprite, pipe_name(pipe)); | |
1372 | } | |
666a4537 | 1373 | } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
3bdcfc0c | 1374 | for_each_sprite(dev_priv, pipe, sprite) { |
649636ef | 1375 | u32 val = I915_READ(SPCNTR(pipe, sprite)); |
e2c719b7 | 1376 | I915_STATE_WARN(val & SP_ENABLE, |
20674eef | 1377 | "sprite %c assertion failure, should be off on pipe %c but is still active\n", |
1fe47785 | 1378 | sprite_name(pipe, sprite), pipe_name(pipe)); |
20674eef VS |
1379 | } |
1380 | } else if (INTEL_INFO(dev)->gen >= 7) { | |
649636ef | 1381 | u32 val = I915_READ(SPRCTL(pipe)); |
e2c719b7 | 1382 | I915_STATE_WARN(val & SPRITE_ENABLE, |
06da8da2 | 1383 | "sprite %c assertion failure, should be off on pipe %c but is still active\n", |
20674eef VS |
1384 | plane_name(pipe), pipe_name(pipe)); |
1385 | } else if (INTEL_INFO(dev)->gen >= 5) { | |
649636ef | 1386 | u32 val = I915_READ(DVSCNTR(pipe)); |
e2c719b7 | 1387 | I915_STATE_WARN(val & DVS_ENABLE, |
06da8da2 | 1388 | "sprite %c assertion failure, should be off on pipe %c but is still active\n", |
20674eef | 1389 | plane_name(pipe), pipe_name(pipe)); |
19332d7a JB |
1390 | } |
1391 | } | |
1392 | ||
08c71e5e VS |
1393 | static void assert_vblank_disabled(struct drm_crtc *crtc) |
1394 | { | |
e2c719b7 | 1395 | if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0)) |
08c71e5e VS |
1396 | drm_crtc_vblank_put(crtc); |
1397 | } | |
1398 | ||
7abd4b35 ACO |
1399 | void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv, |
1400 | enum pipe pipe) | |
92f2584a | 1401 | { |
92f2584a JB |
1402 | u32 val; |
1403 | bool enabled; | |
1404 | ||
649636ef | 1405 | val = I915_READ(PCH_TRANSCONF(pipe)); |
92f2584a | 1406 | enabled = !!(val & TRANS_ENABLE); |
e2c719b7 | 1407 | I915_STATE_WARN(enabled, |
9db4a9c7 JB |
1408 | "transcoder assertion failed, should be off on pipe %c but is still active\n", |
1409 | pipe_name(pipe)); | |
92f2584a JB |
1410 | } |
1411 | ||
4e634389 KP |
1412 | static bool dp_pipe_enabled(struct drm_i915_private *dev_priv, |
1413 | enum pipe pipe, u32 port_sel, u32 val) | |
f0575e92 KP |
1414 | { |
1415 | if ((val & DP_PORT_EN) == 0) | |
1416 | return false; | |
1417 | ||
1418 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
f0f59a00 | 1419 | u32 trans_dp_ctl = I915_READ(TRANS_DP_CTL(pipe)); |
f0575e92 KP |
1420 | if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel) |
1421 | return false; | |
44f37d1f CML |
1422 | } else if (IS_CHERRYVIEW(dev_priv->dev)) { |
1423 | if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe)) | |
1424 | return false; | |
f0575e92 KP |
1425 | } else { |
1426 | if ((val & DP_PIPE_MASK) != (pipe << 30)) | |
1427 | return false; | |
1428 | } | |
1429 | return true; | |
1430 | } | |
1431 | ||
1519b995 KP |
1432 | static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv, |
1433 | enum pipe pipe, u32 val) | |
1434 | { | |
dc0fa718 | 1435 | if ((val & SDVO_ENABLE) == 0) |
1519b995 KP |
1436 | return false; |
1437 | ||
1438 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
dc0fa718 | 1439 | if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe)) |
1519b995 | 1440 | return false; |
44f37d1f CML |
1441 | } else if (IS_CHERRYVIEW(dev_priv->dev)) { |
1442 | if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe)) | |
1443 | return false; | |
1519b995 | 1444 | } else { |
dc0fa718 | 1445 | if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe)) |
1519b995 KP |
1446 | return false; |
1447 | } | |
1448 | return true; | |
1449 | } | |
1450 | ||
1451 | static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv, | |
1452 | enum pipe pipe, u32 val) | |
1453 | { | |
1454 | if ((val & LVDS_PORT_EN) == 0) | |
1455 | return false; | |
1456 | ||
1457 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
1458 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) | |
1459 | return false; | |
1460 | } else { | |
1461 | if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe)) | |
1462 | return false; | |
1463 | } | |
1464 | return true; | |
1465 | } | |
1466 | ||
1467 | static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv, | |
1468 | enum pipe pipe, u32 val) | |
1469 | { | |
1470 | if ((val & ADPA_DAC_ENABLE) == 0) | |
1471 | return false; | |
1472 | if (HAS_PCH_CPT(dev_priv->dev)) { | |
1473 | if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe)) | |
1474 | return false; | |
1475 | } else { | |
1476 | if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe)) | |
1477 | return false; | |
1478 | } | |
1479 | return true; | |
1480 | } | |
1481 | ||
291906f1 | 1482 | static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv, |
f0f59a00 VS |
1483 | enum pipe pipe, i915_reg_t reg, |
1484 | u32 port_sel) | |
291906f1 | 1485 | { |
47a05eca | 1486 | u32 val = I915_READ(reg); |
e2c719b7 | 1487 | I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val), |
291906f1 | 1488 | "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n", |
f0f59a00 | 1489 | i915_mmio_reg_offset(reg), pipe_name(pipe)); |
de9a35ab | 1490 | |
e2c719b7 | 1491 | I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0 |
75c5da27 | 1492 | && (val & DP_PIPEB_SELECT), |
de9a35ab | 1493 | "IBX PCH dp port still using transcoder B\n"); |
291906f1 JB |
1494 | } |
1495 | ||
1496 | static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv, | |
f0f59a00 | 1497 | enum pipe pipe, i915_reg_t reg) |
291906f1 | 1498 | { |
47a05eca | 1499 | u32 val = I915_READ(reg); |
e2c719b7 | 1500 | I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val), |
23c99e77 | 1501 | "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n", |
f0f59a00 | 1502 | i915_mmio_reg_offset(reg), pipe_name(pipe)); |
de9a35ab | 1503 | |
e2c719b7 | 1504 | I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0 |
75c5da27 | 1505 | && (val & SDVO_PIPE_B_SELECT), |
de9a35ab | 1506 | "IBX PCH hdmi port still using transcoder B\n"); |
291906f1 JB |
1507 | } |
1508 | ||
1509 | static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv, | |
1510 | enum pipe pipe) | |
1511 | { | |
291906f1 | 1512 | u32 val; |
291906f1 | 1513 | |
f0575e92 KP |
1514 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B); |
1515 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C); | |
1516 | assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D); | |
291906f1 | 1517 | |
649636ef | 1518 | val = I915_READ(PCH_ADPA); |
e2c719b7 | 1519 | I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val), |
291906f1 | 1520 | "PCH VGA enabled on transcoder %c, should be disabled\n", |
9db4a9c7 | 1521 | pipe_name(pipe)); |
291906f1 | 1522 | |
649636ef | 1523 | val = I915_READ(PCH_LVDS); |
e2c719b7 | 1524 | I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val), |
291906f1 | 1525 | "PCH LVDS enabled on transcoder %c, should be disabled\n", |
9db4a9c7 | 1526 | pipe_name(pipe)); |
291906f1 | 1527 | |
e2debe91 PZ |
1528 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB); |
1529 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC); | |
1530 | assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID); | |
291906f1 JB |
1531 | } |
1532 | ||
d288f65f | 1533 | static void vlv_enable_pll(struct intel_crtc *crtc, |
5cec258b | 1534 | const struct intel_crtc_state *pipe_config) |
87442f73 | 1535 | { |
426115cf DV |
1536 | struct drm_device *dev = crtc->base.dev; |
1537 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8bd3f301 VS |
1538 | enum pipe pipe = crtc->pipe; |
1539 | i915_reg_t reg = DPLL(pipe); | |
d288f65f | 1540 | u32 dpll = pipe_config->dpll_hw_state.dpll; |
87442f73 | 1541 | |
8bd3f301 | 1542 | assert_pipe_disabled(dev_priv, pipe); |
87442f73 | 1543 | |
87442f73 | 1544 | /* PLL is protected by panel, make sure we can write it */ |
7d1a83cb | 1545 | assert_panel_unlocked(dev_priv, pipe); |
87442f73 | 1546 | |
426115cf DV |
1547 | I915_WRITE(reg, dpll); |
1548 | POSTING_READ(reg); | |
1549 | udelay(150); | |
1550 | ||
1551 | if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1)) | |
8bd3f301 | 1552 | DRM_ERROR("DPLL %d failed to lock\n", pipe); |
426115cf | 1553 | |
8bd3f301 VS |
1554 | I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md); |
1555 | POSTING_READ(DPLL_MD(pipe)); | |
87442f73 DV |
1556 | } |
1557 | ||
d288f65f | 1558 | static void chv_enable_pll(struct intel_crtc *crtc, |
5cec258b | 1559 | const struct intel_crtc_state *pipe_config) |
9d556c99 CML |
1560 | { |
1561 | struct drm_device *dev = crtc->base.dev; | |
1562 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8bd3f301 | 1563 | enum pipe pipe = crtc->pipe; |
9d556c99 | 1564 | enum dpio_channel port = vlv_pipe_to_channel(pipe); |
9d556c99 CML |
1565 | u32 tmp; |
1566 | ||
8bd3f301 | 1567 | assert_pipe_disabled(dev_priv, pipe); |
9d556c99 | 1568 | |
7d1a83cb VS |
1569 | /* PLL is protected by panel, make sure we can write it */ |
1570 | assert_panel_unlocked(dev_priv, pipe); | |
1571 | ||
a580516d | 1572 | mutex_lock(&dev_priv->sb_lock); |
9d556c99 CML |
1573 | |
1574 | /* Enable back the 10bit clock to display controller */ | |
1575 | tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)); | |
1576 | tmp |= DPIO_DCLKP_EN; | |
1577 | vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp); | |
1578 | ||
54433e91 VS |
1579 | mutex_unlock(&dev_priv->sb_lock); |
1580 | ||
9d556c99 CML |
1581 | /* |
1582 | * Need to wait > 100ns between dclkp clock enable bit and PLL enable. | |
1583 | */ | |
1584 | udelay(1); | |
1585 | ||
1586 | /* Enable PLL */ | |
d288f65f | 1587 | I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll); |
9d556c99 CML |
1588 | |
1589 | /* Check PLL is locked */ | |
a11b0703 | 1590 | if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1)) |
9d556c99 CML |
1591 | DRM_ERROR("PLL %d failed to lock\n", pipe); |
1592 | ||
c231775c VS |
1593 | if (pipe != PIPE_A) { |
1594 | /* | |
1595 | * WaPixelRepeatModeFixForC0:chv | |
1596 | * | |
1597 | * DPLLCMD is AWOL. Use chicken bits to propagate | |
1598 | * the value from DPLLBMD to either pipe B or C. | |
1599 | */ | |
1600 | I915_WRITE(CBR4_VLV, pipe == PIPE_B ? CBR_DPLLBMD_PIPE_B : CBR_DPLLBMD_PIPE_C); | |
1601 | I915_WRITE(DPLL_MD(PIPE_B), pipe_config->dpll_hw_state.dpll_md); | |
1602 | I915_WRITE(CBR4_VLV, 0); | |
1603 | dev_priv->chv_dpll_md[pipe] = pipe_config->dpll_hw_state.dpll_md; | |
1604 | ||
1605 | /* | |
1606 | * DPLLB VGA mode also seems to cause problems. | |
1607 | * We should always have it disabled. | |
1608 | */ | |
1609 | WARN_ON((I915_READ(DPLL(PIPE_B)) & DPLL_VGA_MODE_DIS) == 0); | |
1610 | } else { | |
1611 | I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md); | |
1612 | POSTING_READ(DPLL_MD(pipe)); | |
1613 | } | |
9d556c99 CML |
1614 | } |
1615 | ||
1c4e0274 VS |
1616 | static int intel_num_dvo_pipes(struct drm_device *dev) |
1617 | { | |
1618 | struct intel_crtc *crtc; | |
1619 | int count = 0; | |
1620 | ||
1621 | for_each_intel_crtc(dev, crtc) | |
3538b9df | 1622 | count += crtc->base.state->active && |
409ee761 | 1623 | intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO); |
1c4e0274 VS |
1624 | |
1625 | return count; | |
1626 | } | |
1627 | ||
66e3d5c0 | 1628 | static void i9xx_enable_pll(struct intel_crtc *crtc) |
63d7bbe9 | 1629 | { |
66e3d5c0 DV |
1630 | struct drm_device *dev = crtc->base.dev; |
1631 | struct drm_i915_private *dev_priv = dev->dev_private; | |
f0f59a00 | 1632 | i915_reg_t reg = DPLL(crtc->pipe); |
6e3c9717 | 1633 | u32 dpll = crtc->config->dpll_hw_state.dpll; |
63d7bbe9 | 1634 | |
66e3d5c0 | 1635 | assert_pipe_disabled(dev_priv, crtc->pipe); |
58c6eaa2 | 1636 | |
63d7bbe9 | 1637 | /* PLL is protected by panel, make sure we can write it */ |
66e3d5c0 DV |
1638 | if (IS_MOBILE(dev) && !IS_I830(dev)) |
1639 | assert_panel_unlocked(dev_priv, crtc->pipe); | |
63d7bbe9 | 1640 | |
1c4e0274 VS |
1641 | /* Enable DVO 2x clock on both PLLs if necessary */ |
1642 | if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) { | |
1643 | /* | |
1644 | * It appears to be important that we don't enable this | |
1645 | * for the current pipe before otherwise configuring the | |
1646 | * PLL. No idea how this should be handled if multiple | |
1647 | * DVO outputs are enabled simultaneosly. | |
1648 | */ | |
1649 | dpll |= DPLL_DVO_2X_MODE; | |
1650 | I915_WRITE(DPLL(!crtc->pipe), | |
1651 | I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE); | |
1652 | } | |
66e3d5c0 | 1653 | |
c2b63374 VS |
1654 | /* |
1655 | * Apparently we need to have VGA mode enabled prior to changing | |
1656 | * the P1/P2 dividers. Otherwise the DPLL will keep using the old | |
1657 | * dividers, even though the register value does change. | |
1658 | */ | |
1659 | I915_WRITE(reg, 0); | |
1660 | ||
8e7a65aa VS |
1661 | I915_WRITE(reg, dpll); |
1662 | ||
66e3d5c0 DV |
1663 | /* Wait for the clocks to stabilize. */ |
1664 | POSTING_READ(reg); | |
1665 | udelay(150); | |
1666 | ||
1667 | if (INTEL_INFO(dev)->gen >= 4) { | |
1668 | I915_WRITE(DPLL_MD(crtc->pipe), | |
6e3c9717 | 1669 | crtc->config->dpll_hw_state.dpll_md); |
66e3d5c0 DV |
1670 | } else { |
1671 | /* The pixel multiplier can only be updated once the | |
1672 | * DPLL is enabled and the clocks are stable. | |
1673 | * | |
1674 | * So write it again. | |
1675 | */ | |
1676 | I915_WRITE(reg, dpll); | |
1677 | } | |
63d7bbe9 JB |
1678 | |
1679 | /* We do this three times for luck */ | |
66e3d5c0 | 1680 | I915_WRITE(reg, dpll); |
63d7bbe9 JB |
1681 | POSTING_READ(reg); |
1682 | udelay(150); /* wait for warmup */ | |
66e3d5c0 | 1683 | I915_WRITE(reg, dpll); |
63d7bbe9 JB |
1684 | POSTING_READ(reg); |
1685 | udelay(150); /* wait for warmup */ | |
66e3d5c0 | 1686 | I915_WRITE(reg, dpll); |
63d7bbe9 JB |
1687 | POSTING_READ(reg); |
1688 | udelay(150); /* wait for warmup */ | |
1689 | } | |
1690 | ||
1691 | /** | |
50b44a44 | 1692 | * i9xx_disable_pll - disable a PLL |
63d7bbe9 JB |
1693 | * @dev_priv: i915 private structure |
1694 | * @pipe: pipe PLL to disable | |
1695 | * | |
1696 | * Disable the PLL for @pipe, making sure the pipe is off first. | |
1697 | * | |
1698 | * Note! This is for pre-ILK only. | |
1699 | */ | |
1c4e0274 | 1700 | static void i9xx_disable_pll(struct intel_crtc *crtc) |
63d7bbe9 | 1701 | { |
1c4e0274 VS |
1702 | struct drm_device *dev = crtc->base.dev; |
1703 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1704 | enum pipe pipe = crtc->pipe; | |
1705 | ||
1706 | /* Disable DVO 2x clock on both PLLs if necessary */ | |
1707 | if (IS_I830(dev) && | |
409ee761 | 1708 | intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) && |
3538b9df | 1709 | !intel_num_dvo_pipes(dev)) { |
1c4e0274 VS |
1710 | I915_WRITE(DPLL(PIPE_B), |
1711 | I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE); | |
1712 | I915_WRITE(DPLL(PIPE_A), | |
1713 | I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE); | |
1714 | } | |
1715 | ||
b6b5d049 VS |
1716 | /* Don't disable pipe or pipe PLLs if needed */ |
1717 | if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) || | |
1718 | (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)) | |
63d7bbe9 JB |
1719 | return; |
1720 | ||
1721 | /* Make sure the pipe isn't still relying on us */ | |
1722 | assert_pipe_disabled(dev_priv, pipe); | |
1723 | ||
b8afb911 | 1724 | I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS); |
50b44a44 | 1725 | POSTING_READ(DPLL(pipe)); |
63d7bbe9 JB |
1726 | } |
1727 | ||
f6071166 JB |
1728 | static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) |
1729 | { | |
b8afb911 | 1730 | u32 val; |
f6071166 JB |
1731 | |
1732 | /* Make sure the pipe isn't still relying on us */ | |
1733 | assert_pipe_disabled(dev_priv, pipe); | |
1734 | ||
03ed5cbf VS |
1735 | val = DPLL_INTEGRATED_REF_CLK_VLV | |
1736 | DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS; | |
1737 | if (pipe != PIPE_A) | |
1738 | val |= DPLL_INTEGRATED_CRI_CLK_VLV; | |
1739 | ||
f6071166 JB |
1740 | I915_WRITE(DPLL(pipe), val); |
1741 | POSTING_READ(DPLL(pipe)); | |
076ed3b2 CML |
1742 | } |
1743 | ||
1744 | static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe) | |
1745 | { | |
d752048d | 1746 | enum dpio_channel port = vlv_pipe_to_channel(pipe); |
076ed3b2 CML |
1747 | u32 val; |
1748 | ||
a11b0703 VS |
1749 | /* Make sure the pipe isn't still relying on us */ |
1750 | assert_pipe_disabled(dev_priv, pipe); | |
076ed3b2 | 1751 | |
60bfe44f VS |
1752 | val = DPLL_SSC_REF_CLK_CHV | |
1753 | DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS; | |
a11b0703 VS |
1754 | if (pipe != PIPE_A) |
1755 | val |= DPLL_INTEGRATED_CRI_CLK_VLV; | |
03ed5cbf | 1756 | |
a11b0703 VS |
1757 | I915_WRITE(DPLL(pipe), val); |
1758 | POSTING_READ(DPLL(pipe)); | |
d752048d | 1759 | |
a580516d | 1760 | mutex_lock(&dev_priv->sb_lock); |
d752048d VS |
1761 | |
1762 | /* Disable 10bit clock to display controller */ | |
1763 | val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)); | |
1764 | val &= ~DPIO_DCLKP_EN; | |
1765 | vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val); | |
1766 | ||
a580516d | 1767 | mutex_unlock(&dev_priv->sb_lock); |
f6071166 JB |
1768 | } |
1769 | ||
e4607fcf | 1770 | void vlv_wait_port_ready(struct drm_i915_private *dev_priv, |
9b6de0a1 VS |
1771 | struct intel_digital_port *dport, |
1772 | unsigned int expected_mask) | |
89b667f8 JB |
1773 | { |
1774 | u32 port_mask; | |
f0f59a00 | 1775 | i915_reg_t dpll_reg; |
89b667f8 | 1776 | |
e4607fcf CML |
1777 | switch (dport->port) { |
1778 | case PORT_B: | |
89b667f8 | 1779 | port_mask = DPLL_PORTB_READY_MASK; |
00fc31b7 | 1780 | dpll_reg = DPLL(0); |
e4607fcf CML |
1781 | break; |
1782 | case PORT_C: | |
89b667f8 | 1783 | port_mask = DPLL_PORTC_READY_MASK; |
00fc31b7 | 1784 | dpll_reg = DPLL(0); |
9b6de0a1 | 1785 | expected_mask <<= 4; |
00fc31b7 CML |
1786 | break; |
1787 | case PORT_D: | |
1788 | port_mask = DPLL_PORTD_READY_MASK; | |
1789 | dpll_reg = DPIO_PHY_STATUS; | |
e4607fcf CML |
1790 | break; |
1791 | default: | |
1792 | BUG(); | |
1793 | } | |
89b667f8 | 1794 | |
9b6de0a1 VS |
1795 | if (wait_for((I915_READ(dpll_reg) & port_mask) == expected_mask, 1000)) |
1796 | WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n", | |
1797 | port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask); | |
89b667f8 JB |
1798 | } |
1799 | ||
b8a4f404 PZ |
1800 | static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv, |
1801 | enum pipe pipe) | |
040484af | 1802 | { |
23670b32 | 1803 | struct drm_device *dev = dev_priv->dev; |
7c26e5c6 | 1804 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
e2b78267 | 1805 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
f0f59a00 VS |
1806 | i915_reg_t reg; |
1807 | uint32_t val, pipeconf_val; | |
040484af | 1808 | |
040484af | 1809 | /* Make sure PCH DPLL is enabled */ |
8106ddbd | 1810 | assert_shared_dpll_enabled(dev_priv, intel_crtc->config->shared_dpll); |
040484af JB |
1811 | |
1812 | /* FDI must be feeding us bits for PCH ports */ | |
1813 | assert_fdi_tx_enabled(dev_priv, pipe); | |
1814 | assert_fdi_rx_enabled(dev_priv, pipe); | |
1815 | ||
23670b32 DV |
1816 | if (HAS_PCH_CPT(dev)) { |
1817 | /* Workaround: Set the timing override bit before enabling the | |
1818 | * pch transcoder. */ | |
1819 | reg = TRANS_CHICKEN2(pipe); | |
1820 | val = I915_READ(reg); | |
1821 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; | |
1822 | I915_WRITE(reg, val); | |
59c859d6 | 1823 | } |
23670b32 | 1824 | |
ab9412ba | 1825 | reg = PCH_TRANSCONF(pipe); |
040484af | 1826 | val = I915_READ(reg); |
5f7f726d | 1827 | pipeconf_val = I915_READ(PIPECONF(pipe)); |
e9bcff5c JB |
1828 | |
1829 | if (HAS_PCH_IBX(dev_priv->dev)) { | |
1830 | /* | |
c5de7c6f VS |
1831 | * Make the BPC in transcoder be consistent with |
1832 | * that in pipeconf reg. For HDMI we must use 8bpc | |
1833 | * here for both 8bpc and 12bpc. | |
e9bcff5c | 1834 | */ |
dfd07d72 | 1835 | val &= ~PIPECONF_BPC_MASK; |
c5de7c6f VS |
1836 | if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_HDMI)) |
1837 | val |= PIPECONF_8BPC; | |
1838 | else | |
1839 | val |= pipeconf_val & PIPECONF_BPC_MASK; | |
e9bcff5c | 1840 | } |
5f7f726d PZ |
1841 | |
1842 | val &= ~TRANS_INTERLACE_MASK; | |
1843 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK) | |
7c26e5c6 | 1844 | if (HAS_PCH_IBX(dev_priv->dev) && |
409ee761 | 1845 | intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO)) |
7c26e5c6 PZ |
1846 | val |= TRANS_LEGACY_INTERLACED_ILK; |
1847 | else | |
1848 | val |= TRANS_INTERLACED; | |
5f7f726d PZ |
1849 | else |
1850 | val |= TRANS_PROGRESSIVE; | |
1851 | ||
040484af JB |
1852 | I915_WRITE(reg, val | TRANS_ENABLE); |
1853 | if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100)) | |
4bb6f1f3 | 1854 | DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe)); |
040484af JB |
1855 | } |
1856 | ||
8fb033d7 | 1857 | static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv, |
937bb610 | 1858 | enum transcoder cpu_transcoder) |
040484af | 1859 | { |
8fb033d7 | 1860 | u32 val, pipeconf_val; |
8fb033d7 | 1861 | |
8fb033d7 | 1862 | /* FDI must be feeding us bits for PCH ports */ |
1a240d4d | 1863 | assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder); |
937bb610 | 1864 | assert_fdi_rx_enabled(dev_priv, TRANSCODER_A); |
8fb033d7 | 1865 | |
223a6fdf | 1866 | /* Workaround: set timing override bit. */ |
36c0d0cf | 1867 | val = I915_READ(TRANS_CHICKEN2(PIPE_A)); |
23670b32 | 1868 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; |
36c0d0cf | 1869 | I915_WRITE(TRANS_CHICKEN2(PIPE_A), val); |
223a6fdf | 1870 | |
25f3ef11 | 1871 | val = TRANS_ENABLE; |
937bb610 | 1872 | pipeconf_val = I915_READ(PIPECONF(cpu_transcoder)); |
8fb033d7 | 1873 | |
9a76b1c6 PZ |
1874 | if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) == |
1875 | PIPECONF_INTERLACED_ILK) | |
a35f2679 | 1876 | val |= TRANS_INTERLACED; |
8fb033d7 PZ |
1877 | else |
1878 | val |= TRANS_PROGRESSIVE; | |
1879 | ||
ab9412ba DV |
1880 | I915_WRITE(LPT_TRANSCONF, val); |
1881 | if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100)) | |
937bb610 | 1882 | DRM_ERROR("Failed to enable PCH transcoder\n"); |
8fb033d7 PZ |
1883 | } |
1884 | ||
b8a4f404 PZ |
1885 | static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv, |
1886 | enum pipe pipe) | |
040484af | 1887 | { |
23670b32 | 1888 | struct drm_device *dev = dev_priv->dev; |
f0f59a00 VS |
1889 | i915_reg_t reg; |
1890 | uint32_t val; | |
040484af JB |
1891 | |
1892 | /* FDI relies on the transcoder */ | |
1893 | assert_fdi_tx_disabled(dev_priv, pipe); | |
1894 | assert_fdi_rx_disabled(dev_priv, pipe); | |
1895 | ||
291906f1 JB |
1896 | /* Ports must be off as well */ |
1897 | assert_pch_ports_disabled(dev_priv, pipe); | |
1898 | ||
ab9412ba | 1899 | reg = PCH_TRANSCONF(pipe); |
040484af JB |
1900 | val = I915_READ(reg); |
1901 | val &= ~TRANS_ENABLE; | |
1902 | I915_WRITE(reg, val); | |
1903 | /* wait for PCH transcoder off, transcoder state */ | |
1904 | if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50)) | |
4bb6f1f3 | 1905 | DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe)); |
23670b32 | 1906 | |
c465613b | 1907 | if (HAS_PCH_CPT(dev)) { |
23670b32 DV |
1908 | /* Workaround: Clear the timing override chicken bit again. */ |
1909 | reg = TRANS_CHICKEN2(pipe); | |
1910 | val = I915_READ(reg); | |
1911 | val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE; | |
1912 | I915_WRITE(reg, val); | |
1913 | } | |
040484af JB |
1914 | } |
1915 | ||
ab4d966c | 1916 | static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv) |
8fb033d7 | 1917 | { |
8fb033d7 PZ |
1918 | u32 val; |
1919 | ||
ab9412ba | 1920 | val = I915_READ(LPT_TRANSCONF); |
8fb033d7 | 1921 | val &= ~TRANS_ENABLE; |
ab9412ba | 1922 | I915_WRITE(LPT_TRANSCONF, val); |
8fb033d7 | 1923 | /* wait for PCH transcoder off, transcoder state */ |
ab9412ba | 1924 | if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50)) |
8a52fd9f | 1925 | DRM_ERROR("Failed to disable PCH transcoder\n"); |
223a6fdf PZ |
1926 | |
1927 | /* Workaround: clear timing override bit. */ | |
36c0d0cf | 1928 | val = I915_READ(TRANS_CHICKEN2(PIPE_A)); |
23670b32 | 1929 | val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE; |
36c0d0cf | 1930 | I915_WRITE(TRANS_CHICKEN2(PIPE_A), val); |
040484af JB |
1931 | } |
1932 | ||
b24e7179 | 1933 | /** |
309cfea8 | 1934 | * intel_enable_pipe - enable a pipe, asserting requirements |
0372264a | 1935 | * @crtc: crtc responsible for the pipe |
b24e7179 | 1936 | * |
0372264a | 1937 | * Enable @crtc's pipe, making sure that various hardware specific requirements |
b24e7179 | 1938 | * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc. |
b24e7179 | 1939 | */ |
e1fdc473 | 1940 | static void intel_enable_pipe(struct intel_crtc *crtc) |
b24e7179 | 1941 | { |
0372264a PZ |
1942 | struct drm_device *dev = crtc->base.dev; |
1943 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1944 | enum pipe pipe = crtc->pipe; | |
1a70a728 | 1945 | enum transcoder cpu_transcoder = crtc->config->cpu_transcoder; |
1a240d4d | 1946 | enum pipe pch_transcoder; |
f0f59a00 | 1947 | i915_reg_t reg; |
b24e7179 JB |
1948 | u32 val; |
1949 | ||
9e2ee2dd VS |
1950 | DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe)); |
1951 | ||
58c6eaa2 | 1952 | assert_planes_disabled(dev_priv, pipe); |
93ce0ba6 | 1953 | assert_cursor_disabled(dev_priv, pipe); |
58c6eaa2 DV |
1954 | assert_sprites_disabled(dev_priv, pipe); |
1955 | ||
681e5811 | 1956 | if (HAS_PCH_LPT(dev_priv->dev)) |
cc391bbb PZ |
1957 | pch_transcoder = TRANSCODER_A; |
1958 | else | |
1959 | pch_transcoder = pipe; | |
1960 | ||
b24e7179 JB |
1961 | /* |
1962 | * A pipe without a PLL won't actually be able to drive bits from | |
1963 | * a plane. On ILK+ the pipe PLLs are integrated, so we don't | |
1964 | * need the check. | |
1965 | */ | |
50360403 | 1966 | if (HAS_GMCH_DISPLAY(dev_priv->dev)) |
a65347ba | 1967 | if (crtc->config->has_dsi_encoder) |
23538ef1 JN |
1968 | assert_dsi_pll_enabled(dev_priv); |
1969 | else | |
1970 | assert_pll_enabled(dev_priv, pipe); | |
040484af | 1971 | else { |
6e3c9717 | 1972 | if (crtc->config->has_pch_encoder) { |
040484af | 1973 | /* if driving the PCH, we need FDI enabled */ |
cc391bbb | 1974 | assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder); |
1a240d4d DV |
1975 | assert_fdi_tx_pll_enabled(dev_priv, |
1976 | (enum pipe) cpu_transcoder); | |
040484af JB |
1977 | } |
1978 | /* FIXME: assert CPU port conditions for SNB+ */ | |
1979 | } | |
b24e7179 | 1980 | |
702e7a56 | 1981 | reg = PIPECONF(cpu_transcoder); |
b24e7179 | 1982 | val = I915_READ(reg); |
7ad25d48 | 1983 | if (val & PIPECONF_ENABLE) { |
b6b5d049 VS |
1984 | WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) || |
1985 | (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))); | |
00d70b15 | 1986 | return; |
7ad25d48 | 1987 | } |
00d70b15 CW |
1988 | |
1989 | I915_WRITE(reg, val | PIPECONF_ENABLE); | |
851855d8 | 1990 | POSTING_READ(reg); |
b7792d8b VS |
1991 | |
1992 | /* | |
1993 | * Until the pipe starts DSL will read as 0, which would cause | |
1994 | * an apparent vblank timestamp jump, which messes up also the | |
1995 | * frame count when it's derived from the timestamps. So let's | |
1996 | * wait for the pipe to start properly before we call | |
1997 | * drm_crtc_vblank_on() | |
1998 | */ | |
1999 | if (dev->max_vblank_count == 0 && | |
2000 | wait_for(intel_get_crtc_scanline(crtc) != crtc->scanline_offset, 50)) | |
2001 | DRM_ERROR("pipe %c didn't start\n", pipe_name(pipe)); | |
b24e7179 JB |
2002 | } |
2003 | ||
2004 | /** | |
309cfea8 | 2005 | * intel_disable_pipe - disable a pipe, asserting requirements |
575f7ab7 | 2006 | * @crtc: crtc whose pipes is to be disabled |
b24e7179 | 2007 | * |
575f7ab7 VS |
2008 | * Disable the pipe of @crtc, making sure that various hardware |
2009 | * specific requirements are met, if applicable, e.g. plane | |
2010 | * disabled, panel fitter off, etc. | |
b24e7179 JB |
2011 | * |
2012 | * Will wait until the pipe has shut down before returning. | |
2013 | */ | |
575f7ab7 | 2014 | static void intel_disable_pipe(struct intel_crtc *crtc) |
b24e7179 | 2015 | { |
575f7ab7 | 2016 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
6e3c9717 | 2017 | enum transcoder cpu_transcoder = crtc->config->cpu_transcoder; |
575f7ab7 | 2018 | enum pipe pipe = crtc->pipe; |
f0f59a00 | 2019 | i915_reg_t reg; |
b24e7179 JB |
2020 | u32 val; |
2021 | ||
9e2ee2dd VS |
2022 | DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe)); |
2023 | ||
b24e7179 JB |
2024 | /* |
2025 | * Make sure planes won't keep trying to pump pixels to us, | |
2026 | * or we might hang the display. | |
2027 | */ | |
2028 | assert_planes_disabled(dev_priv, pipe); | |
93ce0ba6 | 2029 | assert_cursor_disabled(dev_priv, pipe); |
19332d7a | 2030 | assert_sprites_disabled(dev_priv, pipe); |
b24e7179 | 2031 | |
702e7a56 | 2032 | reg = PIPECONF(cpu_transcoder); |
b24e7179 | 2033 | val = I915_READ(reg); |
00d70b15 CW |
2034 | if ((val & PIPECONF_ENABLE) == 0) |
2035 | return; | |
2036 | ||
67adc644 VS |
2037 | /* |
2038 | * Double wide has implications for planes | |
2039 | * so best keep it disabled when not needed. | |
2040 | */ | |
6e3c9717 | 2041 | if (crtc->config->double_wide) |
67adc644 VS |
2042 | val &= ~PIPECONF_DOUBLE_WIDE; |
2043 | ||
2044 | /* Don't disable pipe or pipe PLLs if needed */ | |
b6b5d049 VS |
2045 | if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) && |
2046 | !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)) | |
67adc644 VS |
2047 | val &= ~PIPECONF_ENABLE; |
2048 | ||
2049 | I915_WRITE(reg, val); | |
2050 | if ((val & PIPECONF_ENABLE) == 0) | |
2051 | intel_wait_for_pipe_off(crtc); | |
b24e7179 JB |
2052 | } |
2053 | ||
693db184 CW |
2054 | static bool need_vtd_wa(struct drm_device *dev) |
2055 | { | |
2056 | #ifdef CONFIG_INTEL_IOMMU | |
2057 | if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped) | |
2058 | return true; | |
2059 | #endif | |
2060 | return false; | |
2061 | } | |
2062 | ||
832be82f VS |
2063 | static unsigned int intel_tile_size(const struct drm_i915_private *dev_priv) |
2064 | { | |
2065 | return IS_GEN2(dev_priv) ? 2048 : 4096; | |
2066 | } | |
2067 | ||
27ba3910 VS |
2068 | static unsigned int intel_tile_width_bytes(const struct drm_i915_private *dev_priv, |
2069 | uint64_t fb_modifier, unsigned int cpp) | |
7b49f948 VS |
2070 | { |
2071 | switch (fb_modifier) { | |
2072 | case DRM_FORMAT_MOD_NONE: | |
2073 | return cpp; | |
2074 | case I915_FORMAT_MOD_X_TILED: | |
2075 | if (IS_GEN2(dev_priv)) | |
2076 | return 128; | |
2077 | else | |
2078 | return 512; | |
2079 | case I915_FORMAT_MOD_Y_TILED: | |
2080 | if (IS_GEN2(dev_priv) || HAS_128_BYTE_Y_TILING(dev_priv)) | |
2081 | return 128; | |
2082 | else | |
2083 | return 512; | |
2084 | case I915_FORMAT_MOD_Yf_TILED: | |
2085 | switch (cpp) { | |
2086 | case 1: | |
2087 | return 64; | |
2088 | case 2: | |
2089 | case 4: | |
2090 | return 128; | |
2091 | case 8: | |
2092 | case 16: | |
2093 | return 256; | |
2094 | default: | |
2095 | MISSING_CASE(cpp); | |
2096 | return cpp; | |
2097 | } | |
2098 | break; | |
2099 | default: | |
2100 | MISSING_CASE(fb_modifier); | |
2101 | return cpp; | |
2102 | } | |
2103 | } | |
2104 | ||
832be82f VS |
2105 | unsigned int intel_tile_height(const struct drm_i915_private *dev_priv, |
2106 | uint64_t fb_modifier, unsigned int cpp) | |
a57ce0b2 | 2107 | { |
832be82f VS |
2108 | if (fb_modifier == DRM_FORMAT_MOD_NONE) |
2109 | return 1; | |
2110 | else | |
2111 | return intel_tile_size(dev_priv) / | |
27ba3910 | 2112 | intel_tile_width_bytes(dev_priv, fb_modifier, cpp); |
6761dd31 TU |
2113 | } |
2114 | ||
8d0deca8 VS |
2115 | /* Return the tile dimensions in pixel units */ |
2116 | static void intel_tile_dims(const struct drm_i915_private *dev_priv, | |
2117 | unsigned int *tile_width, | |
2118 | unsigned int *tile_height, | |
2119 | uint64_t fb_modifier, | |
2120 | unsigned int cpp) | |
2121 | { | |
2122 | unsigned int tile_width_bytes = | |
2123 | intel_tile_width_bytes(dev_priv, fb_modifier, cpp); | |
2124 | ||
2125 | *tile_width = tile_width_bytes / cpp; | |
2126 | *tile_height = intel_tile_size(dev_priv) / tile_width_bytes; | |
2127 | } | |
2128 | ||
6761dd31 TU |
2129 | unsigned int |
2130 | intel_fb_align_height(struct drm_device *dev, unsigned int height, | |
832be82f | 2131 | uint32_t pixel_format, uint64_t fb_modifier) |
6761dd31 | 2132 | { |
832be82f VS |
2133 | unsigned int cpp = drm_format_plane_cpp(pixel_format, 0); |
2134 | unsigned int tile_height = intel_tile_height(to_i915(dev), fb_modifier, cpp); | |
2135 | ||
2136 | return ALIGN(height, tile_height); | |
a57ce0b2 JB |
2137 | } |
2138 | ||
1663b9d6 VS |
2139 | unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info) |
2140 | { | |
2141 | unsigned int size = 0; | |
2142 | int i; | |
2143 | ||
2144 | for (i = 0 ; i < ARRAY_SIZE(rot_info->plane); i++) | |
2145 | size += rot_info->plane[i].width * rot_info->plane[i].height; | |
2146 | ||
2147 | return size; | |
2148 | } | |
2149 | ||
75c82a53 | 2150 | static void |
3465c580 VS |
2151 | intel_fill_fb_ggtt_view(struct i915_ggtt_view *view, |
2152 | const struct drm_framebuffer *fb, | |
2153 | unsigned int rotation) | |
f64b98cd | 2154 | { |
2d7a215f VS |
2155 | if (intel_rotation_90_or_270(rotation)) { |
2156 | *view = i915_ggtt_view_rotated; | |
2157 | view->params.rotated = to_intel_framebuffer(fb)->rot_info; | |
2158 | } else { | |
2159 | *view = i915_ggtt_view_normal; | |
2160 | } | |
2161 | } | |
50470bb0 | 2162 | |
2d7a215f VS |
2163 | static void |
2164 | intel_fill_fb_info(struct drm_i915_private *dev_priv, | |
2165 | struct drm_framebuffer *fb) | |
2166 | { | |
2167 | struct intel_rotation_info *info = &to_intel_framebuffer(fb)->rot_info; | |
2168 | unsigned int tile_size, tile_width, tile_height, cpp; | |
50470bb0 | 2169 | |
d9b3288e VS |
2170 | tile_size = intel_tile_size(dev_priv); |
2171 | ||
2172 | cpp = drm_format_plane_cpp(fb->pixel_format, 0); | |
8d0deca8 VS |
2173 | intel_tile_dims(dev_priv, &tile_width, &tile_height, |
2174 | fb->modifier[0], cpp); | |
d9b3288e | 2175 | |
1663b9d6 VS |
2176 | info->plane[0].width = DIV_ROUND_UP(fb->pitches[0], tile_width * cpp); |
2177 | info->plane[0].height = DIV_ROUND_UP(fb->height, tile_height); | |
84fe03f7 | 2178 | |
89e3e142 | 2179 | if (info->pixel_format == DRM_FORMAT_NV12) { |
832be82f | 2180 | cpp = drm_format_plane_cpp(fb->pixel_format, 1); |
8d0deca8 VS |
2181 | intel_tile_dims(dev_priv, &tile_width, &tile_height, |
2182 | fb->modifier[1], cpp); | |
d9b3288e | 2183 | |
2d7a215f | 2184 | info->uv_offset = fb->offsets[1]; |
1663b9d6 VS |
2185 | info->plane[1].width = DIV_ROUND_UP(fb->pitches[1], tile_width * cpp); |
2186 | info->plane[1].height = DIV_ROUND_UP(fb->height / 2, tile_height); | |
89e3e142 | 2187 | } |
f64b98cd TU |
2188 | } |
2189 | ||
603525d7 | 2190 | static unsigned int intel_linear_alignment(const struct drm_i915_private *dev_priv) |
4e9a86b6 VS |
2191 | { |
2192 | if (INTEL_INFO(dev_priv)->gen >= 9) | |
2193 | return 256 * 1024; | |
985b8bb4 | 2194 | else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) || |
666a4537 | 2195 | IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
4e9a86b6 VS |
2196 | return 128 * 1024; |
2197 | else if (INTEL_INFO(dev_priv)->gen >= 4) | |
2198 | return 4 * 1024; | |
2199 | else | |
44c5905e | 2200 | return 0; |
4e9a86b6 VS |
2201 | } |
2202 | ||
603525d7 VS |
2203 | static unsigned int intel_surf_alignment(const struct drm_i915_private *dev_priv, |
2204 | uint64_t fb_modifier) | |
2205 | { | |
2206 | switch (fb_modifier) { | |
2207 | case DRM_FORMAT_MOD_NONE: | |
2208 | return intel_linear_alignment(dev_priv); | |
2209 | case I915_FORMAT_MOD_X_TILED: | |
2210 | if (INTEL_INFO(dev_priv)->gen >= 9) | |
2211 | return 256 * 1024; | |
2212 | return 0; | |
2213 | case I915_FORMAT_MOD_Y_TILED: | |
2214 | case I915_FORMAT_MOD_Yf_TILED: | |
2215 | return 1 * 1024 * 1024; | |
2216 | default: | |
2217 | MISSING_CASE(fb_modifier); | |
2218 | return 0; | |
2219 | } | |
2220 | } | |
2221 | ||
127bd2ac | 2222 | int |
3465c580 VS |
2223 | intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb, |
2224 | unsigned int rotation) | |
6b95a207 | 2225 | { |
850c4cdc | 2226 | struct drm_device *dev = fb->dev; |
ce453d81 | 2227 | struct drm_i915_private *dev_priv = dev->dev_private; |
850c4cdc | 2228 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
f64b98cd | 2229 | struct i915_ggtt_view view; |
6b95a207 KH |
2230 | u32 alignment; |
2231 | int ret; | |
2232 | ||
ebcdd39e MR |
2233 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
2234 | ||
603525d7 | 2235 | alignment = intel_surf_alignment(dev_priv, fb->modifier[0]); |
6b95a207 | 2236 | |
3465c580 | 2237 | intel_fill_fb_ggtt_view(&view, fb, rotation); |
f64b98cd | 2238 | |
693db184 CW |
2239 | /* Note that the w/a also requires 64 PTE of padding following the |
2240 | * bo. We currently fill all unused PTE with the shadow page and so | |
2241 | * we should always have valid PTE following the scanout preventing | |
2242 | * the VT-d warning. | |
2243 | */ | |
2244 | if (need_vtd_wa(dev) && alignment < 256 * 1024) | |
2245 | alignment = 256 * 1024; | |
2246 | ||
d6dd6843 PZ |
2247 | /* |
2248 | * Global gtt pte registers are special registers which actually forward | |
2249 | * writes to a chunk of system memory. Which means that there is no risk | |
2250 | * that the register values disappear as soon as we call | |
2251 | * intel_runtime_pm_put(), so it is correct to wrap only the | |
2252 | * pin/unpin/fence and not more. | |
2253 | */ | |
2254 | intel_runtime_pm_get(dev_priv); | |
2255 | ||
7580d774 ML |
2256 | ret = i915_gem_object_pin_to_display_plane(obj, alignment, |
2257 | &view); | |
48b956c5 | 2258 | if (ret) |
b26a6b35 | 2259 | goto err_pm; |
6b95a207 KH |
2260 | |
2261 | /* Install a fence for tiled scan-out. Pre-i965 always needs a | |
2262 | * fence, whereas 965+ only requires a fence if using | |
2263 | * framebuffer compression. For simplicity, we always install | |
2264 | * a fence as the cost is not that onerous. | |
2265 | */ | |
9807216f VK |
2266 | if (view.type == I915_GGTT_VIEW_NORMAL) { |
2267 | ret = i915_gem_object_get_fence(obj); | |
2268 | if (ret == -EDEADLK) { | |
2269 | /* | |
2270 | * -EDEADLK means there are no free fences | |
2271 | * no pending flips. | |
2272 | * | |
2273 | * This is propagated to atomic, but it uses | |
2274 | * -EDEADLK to force a locking recovery, so | |
2275 | * change the returned error to -EBUSY. | |
2276 | */ | |
2277 | ret = -EBUSY; | |
2278 | goto err_unpin; | |
2279 | } else if (ret) | |
2280 | goto err_unpin; | |
1690e1eb | 2281 | |
9807216f VK |
2282 | i915_gem_object_pin_fence(obj); |
2283 | } | |
6b95a207 | 2284 | |
d6dd6843 | 2285 | intel_runtime_pm_put(dev_priv); |
6b95a207 | 2286 | return 0; |
48b956c5 CW |
2287 | |
2288 | err_unpin: | |
f64b98cd | 2289 | i915_gem_object_unpin_from_display_plane(obj, &view); |
b26a6b35 | 2290 | err_pm: |
d6dd6843 | 2291 | intel_runtime_pm_put(dev_priv); |
48b956c5 | 2292 | return ret; |
6b95a207 KH |
2293 | } |
2294 | ||
3465c580 | 2295 | static void intel_unpin_fb_obj(struct drm_framebuffer *fb, unsigned int rotation) |
1690e1eb | 2296 | { |
82bc3b2d | 2297 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
f64b98cd | 2298 | struct i915_ggtt_view view; |
82bc3b2d | 2299 | |
ebcdd39e MR |
2300 | WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex)); |
2301 | ||
3465c580 | 2302 | intel_fill_fb_ggtt_view(&view, fb, rotation); |
f64b98cd | 2303 | |
9807216f VK |
2304 | if (view.type == I915_GGTT_VIEW_NORMAL) |
2305 | i915_gem_object_unpin_fence(obj); | |
2306 | ||
f64b98cd | 2307 | i915_gem_object_unpin_from_display_plane(obj, &view); |
1690e1eb CW |
2308 | } |
2309 | ||
29cf9491 VS |
2310 | /* |
2311 | * Adjust the tile offset by moving the difference into | |
2312 | * the x/y offsets. | |
2313 | * | |
2314 | * Input tile dimensions and pitch must already be | |
2315 | * rotated to match x and y, and in pixel units. | |
2316 | */ | |
2317 | static u32 intel_adjust_tile_offset(int *x, int *y, | |
2318 | unsigned int tile_width, | |
2319 | unsigned int tile_height, | |
2320 | unsigned int tile_size, | |
2321 | unsigned int pitch_tiles, | |
2322 | u32 old_offset, | |
2323 | u32 new_offset) | |
2324 | { | |
2325 | unsigned int tiles; | |
2326 | ||
2327 | WARN_ON(old_offset & (tile_size - 1)); | |
2328 | WARN_ON(new_offset & (tile_size - 1)); | |
2329 | WARN_ON(new_offset > old_offset); | |
2330 | ||
2331 | tiles = (old_offset - new_offset) / tile_size; | |
2332 | ||
2333 | *y += tiles / pitch_tiles * tile_height; | |
2334 | *x += tiles % pitch_tiles * tile_width; | |
2335 | ||
2336 | return new_offset; | |
2337 | } | |
2338 | ||
8d0deca8 VS |
2339 | /* |
2340 | * Computes the linear offset to the base tile and adjusts | |
2341 | * x, y. bytes per pixel is assumed to be a power-of-two. | |
2342 | * | |
2343 | * In the 90/270 rotated case, x and y are assumed | |
2344 | * to be already rotated to match the rotated GTT view, and | |
2345 | * pitch is the tile_height aligned framebuffer height. | |
2346 | */ | |
4f2d9934 VS |
2347 | u32 intel_compute_tile_offset(int *x, int *y, |
2348 | const struct drm_framebuffer *fb, int plane, | |
8d0deca8 VS |
2349 | unsigned int pitch, |
2350 | unsigned int rotation) | |
c2c75131 | 2351 | { |
4f2d9934 VS |
2352 | const struct drm_i915_private *dev_priv = to_i915(fb->dev); |
2353 | uint64_t fb_modifier = fb->modifier[plane]; | |
2354 | unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane); | |
29cf9491 VS |
2355 | u32 offset, offset_aligned, alignment; |
2356 | ||
2357 | alignment = intel_surf_alignment(dev_priv, fb_modifier); | |
2358 | if (alignment) | |
2359 | alignment--; | |
2360 | ||
b5c65338 | 2361 | if (fb_modifier != DRM_FORMAT_MOD_NONE) { |
8d0deca8 VS |
2362 | unsigned int tile_size, tile_width, tile_height; |
2363 | unsigned int tile_rows, tiles, pitch_tiles; | |
c2c75131 | 2364 | |
d843310d | 2365 | tile_size = intel_tile_size(dev_priv); |
8d0deca8 VS |
2366 | intel_tile_dims(dev_priv, &tile_width, &tile_height, |
2367 | fb_modifier, cpp); | |
2368 | ||
2369 | if (intel_rotation_90_or_270(rotation)) { | |
2370 | pitch_tiles = pitch / tile_height; | |
2371 | swap(tile_width, tile_height); | |
2372 | } else { | |
2373 | pitch_tiles = pitch / (tile_width * cpp); | |
2374 | } | |
d843310d VS |
2375 | |
2376 | tile_rows = *y / tile_height; | |
2377 | *y %= tile_height; | |
c2c75131 | 2378 | |
8d0deca8 VS |
2379 | tiles = *x / tile_width; |
2380 | *x %= tile_width; | |
bc752862 | 2381 | |
29cf9491 VS |
2382 | offset = (tile_rows * pitch_tiles + tiles) * tile_size; |
2383 | offset_aligned = offset & ~alignment; | |
bc752862 | 2384 | |
29cf9491 VS |
2385 | intel_adjust_tile_offset(x, y, tile_width, tile_height, |
2386 | tile_size, pitch_tiles, | |
2387 | offset, offset_aligned); | |
2388 | } else { | |
bc752862 | 2389 | offset = *y * pitch + *x * cpp; |
29cf9491 VS |
2390 | offset_aligned = offset & ~alignment; |
2391 | ||
4e9a86b6 VS |
2392 | *y = (offset & alignment) / pitch; |
2393 | *x = ((offset & alignment) - *y * pitch) / cpp; | |
bc752862 | 2394 | } |
29cf9491 VS |
2395 | |
2396 | return offset_aligned; | |
c2c75131 DV |
2397 | } |
2398 | ||
b35d63fa | 2399 | static int i9xx_format_to_fourcc(int format) |
46f297fb JB |
2400 | { |
2401 | switch (format) { | |
2402 | case DISPPLANE_8BPP: | |
2403 | return DRM_FORMAT_C8; | |
2404 | case DISPPLANE_BGRX555: | |
2405 | return DRM_FORMAT_XRGB1555; | |
2406 | case DISPPLANE_BGRX565: | |
2407 | return DRM_FORMAT_RGB565; | |
2408 | default: | |
2409 | case DISPPLANE_BGRX888: | |
2410 | return DRM_FORMAT_XRGB8888; | |
2411 | case DISPPLANE_RGBX888: | |
2412 | return DRM_FORMAT_XBGR8888; | |
2413 | case DISPPLANE_BGRX101010: | |
2414 | return DRM_FORMAT_XRGB2101010; | |
2415 | case DISPPLANE_RGBX101010: | |
2416 | return DRM_FORMAT_XBGR2101010; | |
2417 | } | |
2418 | } | |
2419 | ||
bc8d7dff DL |
2420 | static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha) |
2421 | { | |
2422 | switch (format) { | |
2423 | case PLANE_CTL_FORMAT_RGB_565: | |
2424 | return DRM_FORMAT_RGB565; | |
2425 | default: | |
2426 | case PLANE_CTL_FORMAT_XRGB_8888: | |
2427 | if (rgb_order) { | |
2428 | if (alpha) | |
2429 | return DRM_FORMAT_ABGR8888; | |
2430 | else | |
2431 | return DRM_FORMAT_XBGR8888; | |
2432 | } else { | |
2433 | if (alpha) | |
2434 | return DRM_FORMAT_ARGB8888; | |
2435 | else | |
2436 | return DRM_FORMAT_XRGB8888; | |
2437 | } | |
2438 | case PLANE_CTL_FORMAT_XRGB_2101010: | |
2439 | if (rgb_order) | |
2440 | return DRM_FORMAT_XBGR2101010; | |
2441 | else | |
2442 | return DRM_FORMAT_XRGB2101010; | |
2443 | } | |
2444 | } | |
2445 | ||
5724dbd1 | 2446 | static bool |
f6936e29 DV |
2447 | intel_alloc_initial_plane_obj(struct intel_crtc *crtc, |
2448 | struct intel_initial_plane_config *plane_config) | |
46f297fb JB |
2449 | { |
2450 | struct drm_device *dev = crtc->base.dev; | |
3badb49f | 2451 | struct drm_i915_private *dev_priv = to_i915(dev); |
72e96d64 | 2452 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
46f297fb JB |
2453 | struct drm_i915_gem_object *obj = NULL; |
2454 | struct drm_mode_fb_cmd2 mode_cmd = { 0 }; | |
2d14030b | 2455 | struct drm_framebuffer *fb = &plane_config->fb->base; |
f37b5c2b DV |
2456 | u32 base_aligned = round_down(plane_config->base, PAGE_SIZE); |
2457 | u32 size_aligned = round_up(plane_config->base + plane_config->size, | |
2458 | PAGE_SIZE); | |
2459 | ||
2460 | size_aligned -= base_aligned; | |
46f297fb | 2461 | |
ff2652ea CW |
2462 | if (plane_config->size == 0) |
2463 | return false; | |
2464 | ||
3badb49f PZ |
2465 | /* If the FB is too big, just don't use it since fbdev is not very |
2466 | * important and we should probably use that space with FBC or other | |
2467 | * features. */ | |
72e96d64 | 2468 | if (size_aligned * 2 > ggtt->stolen_usable_size) |
3badb49f PZ |
2469 | return false; |
2470 | ||
12c83d99 TU |
2471 | mutex_lock(&dev->struct_mutex); |
2472 | ||
f37b5c2b DV |
2473 | obj = i915_gem_object_create_stolen_for_preallocated(dev, |
2474 | base_aligned, | |
2475 | base_aligned, | |
2476 | size_aligned); | |
12c83d99 TU |
2477 | if (!obj) { |
2478 | mutex_unlock(&dev->struct_mutex); | |
484b41dd | 2479 | return false; |
12c83d99 | 2480 | } |
46f297fb | 2481 | |
49af449b DL |
2482 | obj->tiling_mode = plane_config->tiling; |
2483 | if (obj->tiling_mode == I915_TILING_X) | |
6bf129df | 2484 | obj->stride = fb->pitches[0]; |
46f297fb | 2485 | |
6bf129df DL |
2486 | mode_cmd.pixel_format = fb->pixel_format; |
2487 | mode_cmd.width = fb->width; | |
2488 | mode_cmd.height = fb->height; | |
2489 | mode_cmd.pitches[0] = fb->pitches[0]; | |
18c5247e DV |
2490 | mode_cmd.modifier[0] = fb->modifier[0]; |
2491 | mode_cmd.flags = DRM_MODE_FB_MODIFIERS; | |
46f297fb | 2492 | |
6bf129df | 2493 | if (intel_framebuffer_init(dev, to_intel_framebuffer(fb), |
484b41dd | 2494 | &mode_cmd, obj)) { |
46f297fb JB |
2495 | DRM_DEBUG_KMS("intel fb init failed\n"); |
2496 | goto out_unref_obj; | |
2497 | } | |
12c83d99 | 2498 | |
46f297fb | 2499 | mutex_unlock(&dev->struct_mutex); |
484b41dd | 2500 | |
f6936e29 | 2501 | DRM_DEBUG_KMS("initial plane fb obj %p\n", obj); |
484b41dd | 2502 | return true; |
46f297fb JB |
2503 | |
2504 | out_unref_obj: | |
2505 | drm_gem_object_unreference(&obj->base); | |
2506 | mutex_unlock(&dev->struct_mutex); | |
484b41dd JB |
2507 | return false; |
2508 | } | |
2509 | ||
afd65eb4 MR |
2510 | /* Update plane->state->fb to match plane->fb after driver-internal updates */ |
2511 | static void | |
2512 | update_state_fb(struct drm_plane *plane) | |
2513 | { | |
2514 | if (plane->fb == plane->state->fb) | |
2515 | return; | |
2516 | ||
2517 | if (plane->state->fb) | |
2518 | drm_framebuffer_unreference(plane->state->fb); | |
2519 | plane->state->fb = plane->fb; | |
2520 | if (plane->state->fb) | |
2521 | drm_framebuffer_reference(plane->state->fb); | |
2522 | } | |
2523 | ||
5724dbd1 | 2524 | static void |
f6936e29 DV |
2525 | intel_find_initial_plane_obj(struct intel_crtc *intel_crtc, |
2526 | struct intel_initial_plane_config *plane_config) | |
484b41dd JB |
2527 | { |
2528 | struct drm_device *dev = intel_crtc->base.dev; | |
d9ceb816 | 2529 | struct drm_i915_private *dev_priv = dev->dev_private; |
484b41dd JB |
2530 | struct drm_crtc *c; |
2531 | struct intel_crtc *i; | |
2ff8fde1 | 2532 | struct drm_i915_gem_object *obj; |
88595ac9 | 2533 | struct drm_plane *primary = intel_crtc->base.primary; |
be5651f2 | 2534 | struct drm_plane_state *plane_state = primary->state; |
200757f5 MR |
2535 | struct drm_crtc_state *crtc_state = intel_crtc->base.state; |
2536 | struct intel_plane *intel_plane = to_intel_plane(primary); | |
0a8d8a86 MR |
2537 | struct intel_plane_state *intel_state = |
2538 | to_intel_plane_state(plane_state); | |
88595ac9 | 2539 | struct drm_framebuffer *fb; |
484b41dd | 2540 | |
2d14030b | 2541 | if (!plane_config->fb) |
484b41dd JB |
2542 | return; |
2543 | ||
f6936e29 | 2544 | if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) { |
88595ac9 DV |
2545 | fb = &plane_config->fb->base; |
2546 | goto valid_fb; | |
f55548b5 | 2547 | } |
484b41dd | 2548 | |
2d14030b | 2549 | kfree(plane_config->fb); |
484b41dd JB |
2550 | |
2551 | /* | |
2552 | * Failed to alloc the obj, check to see if we should share | |
2553 | * an fb with another CRTC instead | |
2554 | */ | |
70e1e0ec | 2555 | for_each_crtc(dev, c) { |
484b41dd JB |
2556 | i = to_intel_crtc(c); |
2557 | ||
2558 | if (c == &intel_crtc->base) | |
2559 | continue; | |
2560 | ||
2ff8fde1 MR |
2561 | if (!i->active) |
2562 | continue; | |
2563 | ||
88595ac9 DV |
2564 | fb = c->primary->fb; |
2565 | if (!fb) | |
484b41dd JB |
2566 | continue; |
2567 | ||
88595ac9 | 2568 | obj = intel_fb_obj(fb); |
2ff8fde1 | 2569 | if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) { |
88595ac9 DV |
2570 | drm_framebuffer_reference(fb); |
2571 | goto valid_fb; | |
484b41dd JB |
2572 | } |
2573 | } | |
88595ac9 | 2574 | |
200757f5 MR |
2575 | /* |
2576 | * We've failed to reconstruct the BIOS FB. Current display state | |
2577 | * indicates that the primary plane is visible, but has a NULL FB, | |
2578 | * which will lead to problems later if we don't fix it up. The | |
2579 | * simplest solution is to just disable the primary plane now and | |
2580 | * pretend the BIOS never had it enabled. | |
2581 | */ | |
2582 | to_intel_plane_state(plane_state)->visible = false; | |
2583 | crtc_state->plane_mask &= ~(1 << drm_plane_index(primary)); | |
2622a081 | 2584 | intel_pre_disable_primary_noatomic(&intel_crtc->base); |
200757f5 MR |
2585 | intel_plane->disable_plane(primary, &intel_crtc->base); |
2586 | ||
88595ac9 DV |
2587 | return; |
2588 | ||
2589 | valid_fb: | |
f44e2659 VS |
2590 | plane_state->src_x = 0; |
2591 | plane_state->src_y = 0; | |
be5651f2 ML |
2592 | plane_state->src_w = fb->width << 16; |
2593 | plane_state->src_h = fb->height << 16; | |
2594 | ||
f44e2659 VS |
2595 | plane_state->crtc_x = 0; |
2596 | plane_state->crtc_y = 0; | |
be5651f2 ML |
2597 | plane_state->crtc_w = fb->width; |
2598 | plane_state->crtc_h = fb->height; | |
2599 | ||
0a8d8a86 MR |
2600 | intel_state->src.x1 = plane_state->src_x; |
2601 | intel_state->src.y1 = plane_state->src_y; | |
2602 | intel_state->src.x2 = plane_state->src_x + plane_state->src_w; | |
2603 | intel_state->src.y2 = plane_state->src_y + plane_state->src_h; | |
2604 | intel_state->dst.x1 = plane_state->crtc_x; | |
2605 | intel_state->dst.y1 = plane_state->crtc_y; | |
2606 | intel_state->dst.x2 = plane_state->crtc_x + plane_state->crtc_w; | |
2607 | intel_state->dst.y2 = plane_state->crtc_y + plane_state->crtc_h; | |
2608 | ||
88595ac9 DV |
2609 | obj = intel_fb_obj(fb); |
2610 | if (obj->tiling_mode != I915_TILING_NONE) | |
2611 | dev_priv->preserve_bios_swizzle = true; | |
2612 | ||
be5651f2 ML |
2613 | drm_framebuffer_reference(fb); |
2614 | primary->fb = primary->state->fb = fb; | |
36750f28 | 2615 | primary->crtc = primary->state->crtc = &intel_crtc->base; |
36750f28 | 2616 | intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary)); |
a9ff8714 | 2617 | obj->frontbuffer_bits |= to_intel_plane(primary)->frontbuffer_bit; |
46f297fb JB |
2618 | } |
2619 | ||
a8d201af ML |
2620 | static void i9xx_update_primary_plane(struct drm_plane *primary, |
2621 | const struct intel_crtc_state *crtc_state, | |
2622 | const struct intel_plane_state *plane_state) | |
81255565 | 2623 | { |
a8d201af | 2624 | struct drm_device *dev = primary->dev; |
81255565 | 2625 | struct drm_i915_private *dev_priv = dev->dev_private; |
a8d201af ML |
2626 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc); |
2627 | struct drm_framebuffer *fb = plane_state->base.fb; | |
2628 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); | |
81255565 | 2629 | int plane = intel_crtc->plane; |
54ea9da8 | 2630 | u32 linear_offset; |
81255565 | 2631 | u32 dspcntr; |
f0f59a00 | 2632 | i915_reg_t reg = DSPCNTR(plane); |
8d0deca8 | 2633 | unsigned int rotation = plane_state->base.rotation; |
ac484963 | 2634 | int cpp = drm_format_plane_cpp(fb->pixel_format, 0); |
54ea9da8 VS |
2635 | int x = plane_state->src.x1 >> 16; |
2636 | int y = plane_state->src.y1 >> 16; | |
c9ba6fad | 2637 | |
f45651ba VS |
2638 | dspcntr = DISPPLANE_GAMMA_ENABLE; |
2639 | ||
fdd508a6 | 2640 | dspcntr |= DISPLAY_PLANE_ENABLE; |
f45651ba VS |
2641 | |
2642 | if (INTEL_INFO(dev)->gen < 4) { | |
2643 | if (intel_crtc->pipe == PIPE_B) | |
2644 | dspcntr |= DISPPLANE_SEL_PIPE_B; | |
2645 | ||
2646 | /* pipesrc and dspsize control the size that is scaled from, | |
2647 | * which should always be the user's requested size. | |
2648 | */ | |
2649 | I915_WRITE(DSPSIZE(plane), | |
a8d201af ML |
2650 | ((crtc_state->pipe_src_h - 1) << 16) | |
2651 | (crtc_state->pipe_src_w - 1)); | |
f45651ba | 2652 | I915_WRITE(DSPPOS(plane), 0); |
c14b0485 VS |
2653 | } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) { |
2654 | I915_WRITE(PRIMSIZE(plane), | |
a8d201af ML |
2655 | ((crtc_state->pipe_src_h - 1) << 16) | |
2656 | (crtc_state->pipe_src_w - 1)); | |
c14b0485 VS |
2657 | I915_WRITE(PRIMPOS(plane), 0); |
2658 | I915_WRITE(PRIMCNSTALPHA(plane), 0); | |
f45651ba | 2659 | } |
81255565 | 2660 | |
57779d06 VS |
2661 | switch (fb->pixel_format) { |
2662 | case DRM_FORMAT_C8: | |
81255565 JB |
2663 | dspcntr |= DISPPLANE_8BPP; |
2664 | break; | |
57779d06 | 2665 | case DRM_FORMAT_XRGB1555: |
57779d06 | 2666 | dspcntr |= DISPPLANE_BGRX555; |
81255565 | 2667 | break; |
57779d06 VS |
2668 | case DRM_FORMAT_RGB565: |
2669 | dspcntr |= DISPPLANE_BGRX565; | |
2670 | break; | |
2671 | case DRM_FORMAT_XRGB8888: | |
57779d06 VS |
2672 | dspcntr |= DISPPLANE_BGRX888; |
2673 | break; | |
2674 | case DRM_FORMAT_XBGR8888: | |
57779d06 VS |
2675 | dspcntr |= DISPPLANE_RGBX888; |
2676 | break; | |
2677 | case DRM_FORMAT_XRGB2101010: | |
57779d06 VS |
2678 | dspcntr |= DISPPLANE_BGRX101010; |
2679 | break; | |
2680 | case DRM_FORMAT_XBGR2101010: | |
57779d06 | 2681 | dspcntr |= DISPPLANE_RGBX101010; |
81255565 JB |
2682 | break; |
2683 | default: | |
baba133a | 2684 | BUG(); |
81255565 | 2685 | } |
57779d06 | 2686 | |
f45651ba VS |
2687 | if (INTEL_INFO(dev)->gen >= 4 && |
2688 | obj->tiling_mode != I915_TILING_NONE) | |
2689 | dspcntr |= DISPPLANE_TILED; | |
81255565 | 2690 | |
de1aa629 VS |
2691 | if (IS_G4X(dev)) |
2692 | dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE; | |
2693 | ||
ac484963 | 2694 | linear_offset = y * fb->pitches[0] + x * cpp; |
81255565 | 2695 | |
c2c75131 DV |
2696 | if (INTEL_INFO(dev)->gen >= 4) { |
2697 | intel_crtc->dspaddr_offset = | |
4f2d9934 | 2698 | intel_compute_tile_offset(&x, &y, fb, 0, |
8d0deca8 | 2699 | fb->pitches[0], rotation); |
c2c75131 DV |
2700 | linear_offset -= intel_crtc->dspaddr_offset; |
2701 | } else { | |
e506a0c6 | 2702 | intel_crtc->dspaddr_offset = linear_offset; |
c2c75131 | 2703 | } |
e506a0c6 | 2704 | |
8d0deca8 | 2705 | if (rotation == BIT(DRM_ROTATE_180)) { |
48404c1e SJ |
2706 | dspcntr |= DISPPLANE_ROTATE_180; |
2707 | ||
a8d201af ML |
2708 | x += (crtc_state->pipe_src_w - 1); |
2709 | y += (crtc_state->pipe_src_h - 1); | |
48404c1e SJ |
2710 | |
2711 | /* Finding the last pixel of the last line of the display | |
2712 | data and adding to linear_offset*/ | |
2713 | linear_offset += | |
a8d201af | 2714 | (crtc_state->pipe_src_h - 1) * fb->pitches[0] + |
ac484963 | 2715 | (crtc_state->pipe_src_w - 1) * cpp; |
48404c1e SJ |
2716 | } |
2717 | ||
2db3366b PZ |
2718 | intel_crtc->adjusted_x = x; |
2719 | intel_crtc->adjusted_y = y; | |
2720 | ||
48404c1e SJ |
2721 | I915_WRITE(reg, dspcntr); |
2722 | ||
01f2c773 | 2723 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
a6c45cf0 | 2724 | if (INTEL_INFO(dev)->gen >= 4) { |
85ba7b7d DV |
2725 | I915_WRITE(DSPSURF(plane), |
2726 | i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset); | |
5eddb70b | 2727 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); |
e506a0c6 | 2728 | I915_WRITE(DSPLINOFF(plane), linear_offset); |
5eddb70b | 2729 | } else |
f343c5f6 | 2730 | I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset); |
5eddb70b | 2731 | POSTING_READ(reg); |
17638cd6 JB |
2732 | } |
2733 | ||
a8d201af ML |
2734 | static void i9xx_disable_primary_plane(struct drm_plane *primary, |
2735 | struct drm_crtc *crtc) | |
17638cd6 JB |
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); | |
17638cd6 | 2740 | int plane = intel_crtc->plane; |
f45651ba | 2741 | |
a8d201af ML |
2742 | I915_WRITE(DSPCNTR(plane), 0); |
2743 | if (INTEL_INFO(dev_priv)->gen >= 4) | |
fdd508a6 | 2744 | I915_WRITE(DSPSURF(plane), 0); |
a8d201af ML |
2745 | else |
2746 | I915_WRITE(DSPADDR(plane), 0); | |
2747 | POSTING_READ(DSPCNTR(plane)); | |
2748 | } | |
c9ba6fad | 2749 | |
a8d201af ML |
2750 | static void ironlake_update_primary_plane(struct drm_plane *primary, |
2751 | const struct intel_crtc_state *crtc_state, | |
2752 | const struct intel_plane_state *plane_state) | |
2753 | { | |
2754 | struct drm_device *dev = primary->dev; | |
2755 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2756 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc); | |
2757 | struct drm_framebuffer *fb = plane_state->base.fb; | |
2758 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); | |
2759 | int plane = intel_crtc->plane; | |
54ea9da8 | 2760 | u32 linear_offset; |
a8d201af ML |
2761 | u32 dspcntr; |
2762 | i915_reg_t reg = DSPCNTR(plane); | |
8d0deca8 | 2763 | unsigned int rotation = plane_state->base.rotation; |
ac484963 | 2764 | int cpp = drm_format_plane_cpp(fb->pixel_format, 0); |
a8d201af ML |
2765 | int x = plane_state->src.x1 >> 16; |
2766 | int y = plane_state->src.y1 >> 16; | |
c9ba6fad | 2767 | |
f45651ba | 2768 | dspcntr = DISPPLANE_GAMMA_ENABLE; |
fdd508a6 | 2769 | dspcntr |= DISPLAY_PLANE_ENABLE; |
f45651ba VS |
2770 | |
2771 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) | |
2772 | dspcntr |= DISPPLANE_PIPE_CSC_ENABLE; | |
17638cd6 | 2773 | |
57779d06 VS |
2774 | switch (fb->pixel_format) { |
2775 | case DRM_FORMAT_C8: | |
17638cd6 JB |
2776 | dspcntr |= DISPPLANE_8BPP; |
2777 | break; | |
57779d06 VS |
2778 | case DRM_FORMAT_RGB565: |
2779 | dspcntr |= DISPPLANE_BGRX565; | |
17638cd6 | 2780 | break; |
57779d06 | 2781 | case DRM_FORMAT_XRGB8888: |
57779d06 VS |
2782 | dspcntr |= DISPPLANE_BGRX888; |
2783 | break; | |
2784 | case DRM_FORMAT_XBGR8888: | |
57779d06 VS |
2785 | dspcntr |= DISPPLANE_RGBX888; |
2786 | break; | |
2787 | case DRM_FORMAT_XRGB2101010: | |
57779d06 VS |
2788 | dspcntr |= DISPPLANE_BGRX101010; |
2789 | break; | |
2790 | case DRM_FORMAT_XBGR2101010: | |
57779d06 | 2791 | dspcntr |= DISPPLANE_RGBX101010; |
17638cd6 JB |
2792 | break; |
2793 | default: | |
baba133a | 2794 | BUG(); |
17638cd6 JB |
2795 | } |
2796 | ||
2797 | if (obj->tiling_mode != I915_TILING_NONE) | |
2798 | dspcntr |= DISPPLANE_TILED; | |
17638cd6 | 2799 | |
f45651ba | 2800 | if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) |
1f5d76db | 2801 | dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE; |
17638cd6 | 2802 | |
ac484963 | 2803 | linear_offset = y * fb->pitches[0] + x * cpp; |
c2c75131 | 2804 | intel_crtc->dspaddr_offset = |
4f2d9934 | 2805 | intel_compute_tile_offset(&x, &y, fb, 0, |
8d0deca8 | 2806 | fb->pitches[0], rotation); |
c2c75131 | 2807 | linear_offset -= intel_crtc->dspaddr_offset; |
8d0deca8 | 2808 | if (rotation == BIT(DRM_ROTATE_180)) { |
48404c1e SJ |
2809 | dspcntr |= DISPPLANE_ROTATE_180; |
2810 | ||
2811 | if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) { | |
a8d201af ML |
2812 | x += (crtc_state->pipe_src_w - 1); |
2813 | y += (crtc_state->pipe_src_h - 1); | |
48404c1e SJ |
2814 | |
2815 | /* Finding the last pixel of the last line of the display | |
2816 | data and adding to linear_offset*/ | |
2817 | linear_offset += | |
a8d201af | 2818 | (crtc_state->pipe_src_h - 1) * fb->pitches[0] + |
ac484963 | 2819 | (crtc_state->pipe_src_w - 1) * cpp; |
48404c1e SJ |
2820 | } |
2821 | } | |
2822 | ||
2db3366b PZ |
2823 | intel_crtc->adjusted_x = x; |
2824 | intel_crtc->adjusted_y = y; | |
2825 | ||
48404c1e | 2826 | I915_WRITE(reg, dspcntr); |
17638cd6 | 2827 | |
01f2c773 | 2828 | I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]); |
85ba7b7d DV |
2829 | I915_WRITE(DSPSURF(plane), |
2830 | i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset); | |
b3dc685e | 2831 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { |
bc1c91eb DL |
2832 | I915_WRITE(DSPOFFSET(plane), (y << 16) | x); |
2833 | } else { | |
2834 | I915_WRITE(DSPTILEOFF(plane), (y << 16) | x); | |
2835 | I915_WRITE(DSPLINOFF(plane), linear_offset); | |
2836 | } | |
17638cd6 | 2837 | POSTING_READ(reg); |
17638cd6 JB |
2838 | } |
2839 | ||
7b49f948 VS |
2840 | u32 intel_fb_stride_alignment(const struct drm_i915_private *dev_priv, |
2841 | uint64_t fb_modifier, uint32_t pixel_format) | |
b321803d | 2842 | { |
7b49f948 | 2843 | if (fb_modifier == DRM_FORMAT_MOD_NONE) { |
b321803d | 2844 | return 64; |
7b49f948 VS |
2845 | } else { |
2846 | int cpp = drm_format_plane_cpp(pixel_format, 0); | |
2847 | ||
27ba3910 | 2848 | return intel_tile_width_bytes(dev_priv, fb_modifier, cpp); |
b321803d DL |
2849 | } |
2850 | } | |
2851 | ||
44eb0cb9 MK |
2852 | u32 intel_plane_obj_offset(struct intel_plane *intel_plane, |
2853 | struct drm_i915_gem_object *obj, | |
2854 | unsigned int plane) | |
121920fa | 2855 | { |
ce7f1728 | 2856 | struct i915_ggtt_view view; |
dedf278c | 2857 | struct i915_vma *vma; |
44eb0cb9 | 2858 | u64 offset; |
121920fa | 2859 | |
e7941294 | 2860 | intel_fill_fb_ggtt_view(&view, intel_plane->base.state->fb, |
3465c580 | 2861 | intel_plane->base.state->rotation); |
121920fa | 2862 | |
ce7f1728 | 2863 | vma = i915_gem_obj_to_ggtt_view(obj, &view); |
dedf278c | 2864 | if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n", |
ce7f1728 | 2865 | view.type)) |
dedf278c TU |
2866 | return -1; |
2867 | ||
44eb0cb9 | 2868 | offset = vma->node.start; |
dedf278c TU |
2869 | |
2870 | if (plane == 1) { | |
7723f47d | 2871 | offset += vma->ggtt_view.params.rotated.uv_start_page * |
dedf278c TU |
2872 | PAGE_SIZE; |
2873 | } | |
2874 | ||
44eb0cb9 MK |
2875 | WARN_ON(upper_32_bits(offset)); |
2876 | ||
2877 | return lower_32_bits(offset); | |
121920fa TU |
2878 | } |
2879 | ||
e435d6e5 ML |
2880 | static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id) |
2881 | { | |
2882 | struct drm_device *dev = intel_crtc->base.dev; | |
2883 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2884 | ||
2885 | I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0); | |
2886 | I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0); | |
2887 | I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0); | |
e435d6e5 ML |
2888 | } |
2889 | ||
a1b2278e CK |
2890 | /* |
2891 | * This function detaches (aka. unbinds) unused scalers in hardware | |
2892 | */ | |
0583236e | 2893 | static void skl_detach_scalers(struct intel_crtc *intel_crtc) |
a1b2278e | 2894 | { |
a1b2278e CK |
2895 | struct intel_crtc_scaler_state *scaler_state; |
2896 | int i; | |
2897 | ||
a1b2278e CK |
2898 | scaler_state = &intel_crtc->config->scaler_state; |
2899 | ||
2900 | /* loop through and disable scalers that aren't in use */ | |
2901 | for (i = 0; i < intel_crtc->num_scalers; i++) { | |
e435d6e5 ML |
2902 | if (!scaler_state->scalers[i].in_use) |
2903 | skl_detach_scaler(intel_crtc, i); | |
a1b2278e CK |
2904 | } |
2905 | } | |
2906 | ||
6156a456 | 2907 | u32 skl_plane_ctl_format(uint32_t pixel_format) |
70d21f0e | 2908 | { |
6156a456 | 2909 | switch (pixel_format) { |
d161cf7a | 2910 | case DRM_FORMAT_C8: |
c34ce3d1 | 2911 | return PLANE_CTL_FORMAT_INDEXED; |
70d21f0e | 2912 | case DRM_FORMAT_RGB565: |
c34ce3d1 | 2913 | return PLANE_CTL_FORMAT_RGB_565; |
70d21f0e | 2914 | case DRM_FORMAT_XBGR8888: |
c34ce3d1 | 2915 | return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX; |
6156a456 | 2916 | case DRM_FORMAT_XRGB8888: |
c34ce3d1 | 2917 | return PLANE_CTL_FORMAT_XRGB_8888; |
6156a456 CK |
2918 | /* |
2919 | * XXX: For ARBG/ABGR formats we default to expecting scanout buffers | |
2920 | * to be already pre-multiplied. We need to add a knob (or a different | |
2921 | * DRM_FORMAT) for user-space to configure that. | |
2922 | */ | |
f75fb42a | 2923 | case DRM_FORMAT_ABGR8888: |
c34ce3d1 | 2924 | return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX | |
6156a456 | 2925 | PLANE_CTL_ALPHA_SW_PREMULTIPLY; |
6156a456 | 2926 | case DRM_FORMAT_ARGB8888: |
c34ce3d1 | 2927 | return PLANE_CTL_FORMAT_XRGB_8888 | |
6156a456 | 2928 | PLANE_CTL_ALPHA_SW_PREMULTIPLY; |
70d21f0e | 2929 | case DRM_FORMAT_XRGB2101010: |
c34ce3d1 | 2930 | return PLANE_CTL_FORMAT_XRGB_2101010; |
70d21f0e | 2931 | case DRM_FORMAT_XBGR2101010: |
c34ce3d1 | 2932 | return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010; |
6156a456 | 2933 | case DRM_FORMAT_YUYV: |
c34ce3d1 | 2934 | return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV; |
6156a456 | 2935 | case DRM_FORMAT_YVYU: |
c34ce3d1 | 2936 | return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU; |
6156a456 | 2937 | case DRM_FORMAT_UYVY: |
c34ce3d1 | 2938 | return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY; |
6156a456 | 2939 | case DRM_FORMAT_VYUY: |
c34ce3d1 | 2940 | return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY; |
70d21f0e | 2941 | default: |
4249eeef | 2942 | MISSING_CASE(pixel_format); |
70d21f0e | 2943 | } |
8cfcba41 | 2944 | |
c34ce3d1 | 2945 | return 0; |
6156a456 | 2946 | } |
70d21f0e | 2947 | |
6156a456 CK |
2948 | u32 skl_plane_ctl_tiling(uint64_t fb_modifier) |
2949 | { | |
6156a456 | 2950 | switch (fb_modifier) { |
30af77c4 | 2951 | case DRM_FORMAT_MOD_NONE: |
70d21f0e | 2952 | break; |
30af77c4 | 2953 | case I915_FORMAT_MOD_X_TILED: |
c34ce3d1 | 2954 | return PLANE_CTL_TILED_X; |
b321803d | 2955 | case I915_FORMAT_MOD_Y_TILED: |
c34ce3d1 | 2956 | return PLANE_CTL_TILED_Y; |
b321803d | 2957 | case I915_FORMAT_MOD_Yf_TILED: |
c34ce3d1 | 2958 | return PLANE_CTL_TILED_YF; |
70d21f0e | 2959 | default: |
6156a456 | 2960 | MISSING_CASE(fb_modifier); |
70d21f0e | 2961 | } |
8cfcba41 | 2962 | |
c34ce3d1 | 2963 | return 0; |
6156a456 | 2964 | } |
70d21f0e | 2965 | |
6156a456 CK |
2966 | u32 skl_plane_ctl_rotation(unsigned int rotation) |
2967 | { | |
3b7a5119 | 2968 | switch (rotation) { |
6156a456 CK |
2969 | case BIT(DRM_ROTATE_0): |
2970 | break; | |
1e8df167 SJ |
2971 | /* |
2972 | * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr | |
2973 | * while i915 HW rotation is clockwise, thats why this swapping. | |
2974 | */ | |
3b7a5119 | 2975 | case BIT(DRM_ROTATE_90): |
1e8df167 | 2976 | return PLANE_CTL_ROTATE_270; |
3b7a5119 | 2977 | case BIT(DRM_ROTATE_180): |
c34ce3d1 | 2978 | return PLANE_CTL_ROTATE_180; |
3b7a5119 | 2979 | case BIT(DRM_ROTATE_270): |
1e8df167 | 2980 | return PLANE_CTL_ROTATE_90; |
6156a456 CK |
2981 | default: |
2982 | MISSING_CASE(rotation); | |
2983 | } | |
2984 | ||
c34ce3d1 | 2985 | return 0; |
6156a456 CK |
2986 | } |
2987 | ||
a8d201af ML |
2988 | static void skylake_update_primary_plane(struct drm_plane *plane, |
2989 | const struct intel_crtc_state *crtc_state, | |
2990 | const struct intel_plane_state *plane_state) | |
6156a456 | 2991 | { |
a8d201af | 2992 | struct drm_device *dev = plane->dev; |
6156a456 | 2993 | struct drm_i915_private *dev_priv = dev->dev_private; |
a8d201af ML |
2994 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc); |
2995 | struct drm_framebuffer *fb = plane_state->base.fb; | |
2996 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); | |
6156a456 CK |
2997 | int pipe = intel_crtc->pipe; |
2998 | u32 plane_ctl, stride_div, stride; | |
2999 | u32 tile_height, plane_offset, plane_size; | |
a8d201af | 3000 | unsigned int rotation = plane_state->base.rotation; |
6156a456 | 3001 | int x_offset, y_offset; |
44eb0cb9 | 3002 | u32 surf_addr; |
a8d201af ML |
3003 | int scaler_id = plane_state->scaler_id; |
3004 | int src_x = plane_state->src.x1 >> 16; | |
3005 | int src_y = plane_state->src.y1 >> 16; | |
3006 | int src_w = drm_rect_width(&plane_state->src) >> 16; | |
3007 | int src_h = drm_rect_height(&plane_state->src) >> 16; | |
3008 | int dst_x = plane_state->dst.x1; | |
3009 | int dst_y = plane_state->dst.y1; | |
3010 | int dst_w = drm_rect_width(&plane_state->dst); | |
3011 | int dst_h = drm_rect_height(&plane_state->dst); | |
70d21f0e | 3012 | |
6156a456 CK |
3013 | plane_ctl = PLANE_CTL_ENABLE | |
3014 | PLANE_CTL_PIPE_GAMMA_ENABLE | | |
3015 | PLANE_CTL_PIPE_CSC_ENABLE; | |
3016 | ||
3017 | plane_ctl |= skl_plane_ctl_format(fb->pixel_format); | |
3018 | plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]); | |
3019 | plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE; | |
6156a456 CK |
3020 | plane_ctl |= skl_plane_ctl_rotation(rotation); |
3021 | ||
7b49f948 | 3022 | stride_div = intel_fb_stride_alignment(dev_priv, fb->modifier[0], |
b321803d | 3023 | fb->pixel_format); |
dedf278c | 3024 | surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0); |
3b7a5119 | 3025 | |
a42e5a23 PZ |
3026 | WARN_ON(drm_rect_width(&plane_state->src) == 0); |
3027 | ||
3b7a5119 | 3028 | if (intel_rotation_90_or_270(rotation)) { |
832be82f VS |
3029 | int cpp = drm_format_plane_cpp(fb->pixel_format, 0); |
3030 | ||
3b7a5119 | 3031 | /* stride = Surface height in tiles */ |
832be82f | 3032 | tile_height = intel_tile_height(dev_priv, fb->modifier[0], cpp); |
3b7a5119 | 3033 | stride = DIV_ROUND_UP(fb->height, tile_height); |
a8d201af ML |
3034 | x_offset = stride * tile_height - src_y - src_h; |
3035 | y_offset = src_x; | |
6156a456 | 3036 | plane_size = (src_w - 1) << 16 | (src_h - 1); |
3b7a5119 SJ |
3037 | } else { |
3038 | stride = fb->pitches[0] / stride_div; | |
a8d201af ML |
3039 | x_offset = src_x; |
3040 | y_offset = src_y; | |
6156a456 | 3041 | plane_size = (src_h - 1) << 16 | (src_w - 1); |
3b7a5119 SJ |
3042 | } |
3043 | plane_offset = y_offset << 16 | x_offset; | |
b321803d | 3044 | |
2db3366b PZ |
3045 | intel_crtc->adjusted_x = x_offset; |
3046 | intel_crtc->adjusted_y = y_offset; | |
3047 | ||
70d21f0e | 3048 | I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl); |
3b7a5119 SJ |
3049 | I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset); |
3050 | I915_WRITE(PLANE_SIZE(pipe, 0), plane_size); | |
3051 | I915_WRITE(PLANE_STRIDE(pipe, 0), stride); | |
6156a456 CK |
3052 | |
3053 | if (scaler_id >= 0) { | |
3054 | uint32_t ps_ctrl = 0; | |
3055 | ||
3056 | WARN_ON(!dst_w || !dst_h); | |
3057 | ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) | | |
3058 | crtc_state->scaler_state.scalers[scaler_id].mode; | |
3059 | I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl); | |
3060 | I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0); | |
3061 | I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y); | |
3062 | I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h); | |
3063 | I915_WRITE(PLANE_POS(pipe, 0), 0); | |
3064 | } else { | |
3065 | I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x); | |
3066 | } | |
3067 | ||
121920fa | 3068 | I915_WRITE(PLANE_SURF(pipe, 0), surf_addr); |
70d21f0e DL |
3069 | |
3070 | POSTING_READ(PLANE_SURF(pipe, 0)); | |
3071 | } | |
3072 | ||
a8d201af ML |
3073 | static void skylake_disable_primary_plane(struct drm_plane *primary, |
3074 | struct drm_crtc *crtc) | |
17638cd6 JB |
3075 | { |
3076 | struct drm_device *dev = crtc->dev; | |
3077 | struct drm_i915_private *dev_priv = dev->dev_private; | |
a8d201af | 3078 | int pipe = to_intel_crtc(crtc)->pipe; |
17638cd6 | 3079 | |
a8d201af ML |
3080 | I915_WRITE(PLANE_CTL(pipe, 0), 0); |
3081 | I915_WRITE(PLANE_SURF(pipe, 0), 0); | |
3082 | POSTING_READ(PLANE_SURF(pipe, 0)); | |
3083 | } | |
29b9bde6 | 3084 | |
a8d201af ML |
3085 | /* Assume fb object is pinned & idle & fenced and just update base pointers */ |
3086 | static int | |
3087 | intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb, | |
3088 | int x, int y, enum mode_set_atomic state) | |
3089 | { | |
3090 | /* Support for kgdboc is disabled, this needs a major rework. */ | |
3091 | DRM_ERROR("legacy panic handler not supported any more.\n"); | |
3092 | ||
3093 | return -ENODEV; | |
81255565 JB |
3094 | } |
3095 | ||
7514747d | 3096 | static void intel_complete_page_flips(struct drm_device *dev) |
96a02917 | 3097 | { |
96a02917 VS |
3098 | struct drm_crtc *crtc; |
3099 | ||
70e1e0ec | 3100 | for_each_crtc(dev, crtc) { |
96a02917 VS |
3101 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
3102 | enum plane plane = intel_crtc->plane; | |
3103 | ||
3104 | intel_prepare_page_flip(dev, plane); | |
3105 | intel_finish_page_flip_plane(dev, plane); | |
3106 | } | |
7514747d VS |
3107 | } |
3108 | ||
3109 | static void intel_update_primary_planes(struct drm_device *dev) | |
3110 | { | |
7514747d | 3111 | struct drm_crtc *crtc; |
96a02917 | 3112 | |
70e1e0ec | 3113 | for_each_crtc(dev, crtc) { |
11c22da6 ML |
3114 | struct intel_plane *plane = to_intel_plane(crtc->primary); |
3115 | struct intel_plane_state *plane_state; | |
96a02917 | 3116 | |
11c22da6 | 3117 | drm_modeset_lock_crtc(crtc, &plane->base); |
11c22da6 ML |
3118 | plane_state = to_intel_plane_state(plane->base.state); |
3119 | ||
a8d201af ML |
3120 | if (plane_state->visible) |
3121 | plane->update_plane(&plane->base, | |
3122 | to_intel_crtc_state(crtc->state), | |
3123 | plane_state); | |
11c22da6 ML |
3124 | |
3125 | drm_modeset_unlock_crtc(crtc); | |
96a02917 VS |
3126 | } |
3127 | } | |
3128 | ||
7514747d VS |
3129 | void intel_prepare_reset(struct drm_device *dev) |
3130 | { | |
3131 | /* no reset support for gen2 */ | |
3132 | if (IS_GEN2(dev)) | |
3133 | return; | |
3134 | ||
3135 | /* reset doesn't touch the display */ | |
3136 | if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) | |
3137 | return; | |
3138 | ||
3139 | drm_modeset_lock_all(dev); | |
f98ce92f VS |
3140 | /* |
3141 | * Disabling the crtcs gracefully seems nicer. Also the | |
3142 | * g33 docs say we should at least disable all the planes. | |
3143 | */ | |
6b72d486 | 3144 | intel_display_suspend(dev); |
7514747d VS |
3145 | } |
3146 | ||
3147 | void intel_finish_reset(struct drm_device *dev) | |
3148 | { | |
3149 | struct drm_i915_private *dev_priv = to_i915(dev); | |
3150 | ||
3151 | /* | |
3152 | * Flips in the rings will be nuked by the reset, | |
3153 | * so complete all pending flips so that user space | |
3154 | * will get its events and not get stuck. | |
3155 | */ | |
3156 | intel_complete_page_flips(dev); | |
3157 | ||
3158 | /* no reset support for gen2 */ | |
3159 | if (IS_GEN2(dev)) | |
3160 | return; | |
3161 | ||
3162 | /* reset doesn't touch the display */ | |
3163 | if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) { | |
3164 | /* | |
3165 | * Flips in the rings have been nuked by the reset, | |
3166 | * so update the base address of all primary | |
3167 | * planes to the the last fb to make sure we're | |
3168 | * showing the correct fb after a reset. | |
11c22da6 ML |
3169 | * |
3170 | * FIXME: Atomic will make this obsolete since we won't schedule | |
3171 | * CS-based flips (which might get lost in gpu resets) any more. | |
7514747d VS |
3172 | */ |
3173 | intel_update_primary_planes(dev); | |
3174 | return; | |
3175 | } | |
3176 | ||
3177 | /* | |
3178 | * The display has been reset as well, | |
3179 | * so need a full re-initialization. | |
3180 | */ | |
3181 | intel_runtime_pm_disable_interrupts(dev_priv); | |
3182 | intel_runtime_pm_enable_interrupts(dev_priv); | |
3183 | ||
3184 | intel_modeset_init_hw(dev); | |
3185 | ||
3186 | spin_lock_irq(&dev_priv->irq_lock); | |
3187 | if (dev_priv->display.hpd_irq_setup) | |
3188 | dev_priv->display.hpd_irq_setup(dev); | |
3189 | spin_unlock_irq(&dev_priv->irq_lock); | |
3190 | ||
043e9bda | 3191 | intel_display_resume(dev); |
7514747d VS |
3192 | |
3193 | intel_hpd_init(dev_priv); | |
3194 | ||
3195 | drm_modeset_unlock_all(dev); | |
3196 | } | |
3197 | ||
7d5e3799 CW |
3198 | static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc) |
3199 | { | |
3200 | struct drm_device *dev = crtc->dev; | |
3201 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3202 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
7d5e3799 CW |
3203 | bool pending; |
3204 | ||
3205 | if (i915_reset_in_progress(&dev_priv->gpu_error) || | |
3206 | intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) | |
3207 | return false; | |
3208 | ||
5e2d7afc | 3209 | spin_lock_irq(&dev->event_lock); |
7d5e3799 | 3210 | pending = to_intel_crtc(crtc)->unpin_work != NULL; |
5e2d7afc | 3211 | spin_unlock_irq(&dev->event_lock); |
7d5e3799 CW |
3212 | |
3213 | return pending; | |
3214 | } | |
3215 | ||
bfd16b2a ML |
3216 | static void intel_update_pipe_config(struct intel_crtc *crtc, |
3217 | struct intel_crtc_state *old_crtc_state) | |
e30e8f75 GP |
3218 | { |
3219 | struct drm_device *dev = crtc->base.dev; | |
3220 | struct drm_i915_private *dev_priv = dev->dev_private; | |
bfd16b2a ML |
3221 | struct intel_crtc_state *pipe_config = |
3222 | to_intel_crtc_state(crtc->base.state); | |
e30e8f75 | 3223 | |
bfd16b2a ML |
3224 | /* drm_atomic_helper_update_legacy_modeset_state might not be called. */ |
3225 | crtc->base.mode = crtc->base.state->mode; | |
3226 | ||
3227 | DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n", | |
3228 | old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h, | |
3229 | pipe_config->pipe_src_w, pipe_config->pipe_src_h); | |
e30e8f75 GP |
3230 | |
3231 | /* | |
3232 | * Update pipe size and adjust fitter if needed: the reason for this is | |
3233 | * that in compute_mode_changes we check the native mode (not the pfit | |
3234 | * mode) to see if we can flip rather than do a full mode set. In the | |
3235 | * fastboot case, we'll flip, but if we don't update the pipesrc and | |
3236 | * pfit state, we'll end up with a big fb scanned out into the wrong | |
3237 | * sized surface. | |
e30e8f75 GP |
3238 | */ |
3239 | ||
e30e8f75 | 3240 | I915_WRITE(PIPESRC(crtc->pipe), |
bfd16b2a ML |
3241 | ((pipe_config->pipe_src_w - 1) << 16) | |
3242 | (pipe_config->pipe_src_h - 1)); | |
3243 | ||
3244 | /* on skylake this is done by detaching scalers */ | |
3245 | if (INTEL_INFO(dev)->gen >= 9) { | |
3246 | skl_detach_scalers(crtc); | |
3247 | ||
3248 | if (pipe_config->pch_pfit.enabled) | |
3249 | skylake_pfit_enable(crtc); | |
3250 | } else if (HAS_PCH_SPLIT(dev)) { | |
3251 | if (pipe_config->pch_pfit.enabled) | |
3252 | ironlake_pfit_enable(crtc); | |
3253 | else if (old_crtc_state->pch_pfit.enabled) | |
3254 | ironlake_pfit_disable(crtc, true); | |
e30e8f75 | 3255 | } |
e30e8f75 GP |
3256 | } |
3257 | ||
5e84e1a4 ZW |
3258 | static void intel_fdi_normal_train(struct drm_crtc *crtc) |
3259 | { | |
3260 | struct drm_device *dev = crtc->dev; | |
3261 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3262 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3263 | int pipe = intel_crtc->pipe; | |
f0f59a00 VS |
3264 | i915_reg_t reg; |
3265 | u32 temp; | |
5e84e1a4 ZW |
3266 | |
3267 | /* enable normal train */ | |
3268 | reg = FDI_TX_CTL(pipe); | |
3269 | temp = I915_READ(reg); | |
61e499bf | 3270 | if (IS_IVYBRIDGE(dev)) { |
357555c0 JB |
3271 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
3272 | temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE; | |
61e499bf KP |
3273 | } else { |
3274 | temp &= ~FDI_LINK_TRAIN_NONE; | |
3275 | temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE; | |
357555c0 | 3276 | } |
5e84e1a4 ZW |
3277 | I915_WRITE(reg, temp); |
3278 | ||
3279 | reg = FDI_RX_CTL(pipe); | |
3280 | temp = I915_READ(reg); | |
3281 | if (HAS_PCH_CPT(dev)) { | |
3282 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
3283 | temp |= FDI_LINK_TRAIN_NORMAL_CPT; | |
3284 | } else { | |
3285 | temp &= ~FDI_LINK_TRAIN_NONE; | |
3286 | temp |= FDI_LINK_TRAIN_NONE; | |
3287 | } | |
3288 | I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE); | |
3289 | ||
3290 | /* wait one idle pattern time */ | |
3291 | POSTING_READ(reg); | |
3292 | udelay(1000); | |
357555c0 JB |
3293 | |
3294 | /* IVB wants error correction enabled */ | |
3295 | if (IS_IVYBRIDGE(dev)) | |
3296 | I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE | | |
3297 | FDI_FE_ERRC_ENABLE); | |
5e84e1a4 ZW |
3298 | } |
3299 | ||
8db9d77b ZW |
3300 | /* The FDI link training functions for ILK/Ibexpeak. */ |
3301 | static void ironlake_fdi_link_train(struct drm_crtc *crtc) | |
3302 | { | |
3303 | struct drm_device *dev = crtc->dev; | |
3304 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3305 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3306 | int pipe = intel_crtc->pipe; | |
f0f59a00 VS |
3307 | i915_reg_t reg; |
3308 | u32 temp, tries; | |
8db9d77b | 3309 | |
1c8562f6 | 3310 | /* FDI needs bits from pipe first */ |
0fc932b8 | 3311 | assert_pipe_enabled(dev_priv, pipe); |
0fc932b8 | 3312 | |
e1a44743 AJ |
3313 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
3314 | for train result */ | |
5eddb70b CW |
3315 | reg = FDI_RX_IMR(pipe); |
3316 | temp = I915_READ(reg); | |
e1a44743 AJ |
3317 | temp &= ~FDI_RX_SYMBOL_LOCK; |
3318 | temp &= ~FDI_RX_BIT_LOCK; | |
5eddb70b CW |
3319 | I915_WRITE(reg, temp); |
3320 | I915_READ(reg); | |
e1a44743 AJ |
3321 | udelay(150); |
3322 | ||
8db9d77b | 3323 | /* enable CPU FDI TX and PCH FDI RX */ |
5eddb70b CW |
3324 | reg = FDI_TX_CTL(pipe); |
3325 | temp = I915_READ(reg); | |
627eb5a3 | 3326 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
6e3c9717 | 3327 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes); |
8db9d77b ZW |
3328 | temp &= ~FDI_LINK_TRAIN_NONE; |
3329 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
5eddb70b | 3330 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
8db9d77b | 3331 | |
5eddb70b CW |
3332 | reg = FDI_RX_CTL(pipe); |
3333 | temp = I915_READ(reg); | |
8db9d77b ZW |
3334 | temp &= ~FDI_LINK_TRAIN_NONE; |
3335 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
5eddb70b CW |
3336 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
3337 | ||
3338 | POSTING_READ(reg); | |
8db9d77b ZW |
3339 | udelay(150); |
3340 | ||
5b2adf89 | 3341 | /* Ironlake workaround, enable clock pointer after FDI enable*/ |
8f5718a6 DV |
3342 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
3343 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR | | |
3344 | FDI_RX_PHASE_SYNC_POINTER_EN); | |
5b2adf89 | 3345 | |
5eddb70b | 3346 | reg = FDI_RX_IIR(pipe); |
e1a44743 | 3347 | for (tries = 0; tries < 5; tries++) { |
5eddb70b | 3348 | temp = I915_READ(reg); |
8db9d77b ZW |
3349 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
3350 | ||
3351 | if ((temp & FDI_RX_BIT_LOCK)) { | |
3352 | DRM_DEBUG_KMS("FDI train 1 done.\n"); | |
5eddb70b | 3353 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); |
8db9d77b ZW |
3354 | break; |
3355 | } | |
8db9d77b | 3356 | } |
e1a44743 | 3357 | if (tries == 5) |
5eddb70b | 3358 | DRM_ERROR("FDI train 1 fail!\n"); |
8db9d77b ZW |
3359 | |
3360 | /* Train 2 */ | |
5eddb70b CW |
3361 | reg = FDI_TX_CTL(pipe); |
3362 | temp = I915_READ(reg); | |
8db9d77b ZW |
3363 | temp &= ~FDI_LINK_TRAIN_NONE; |
3364 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
5eddb70b | 3365 | I915_WRITE(reg, temp); |
8db9d77b | 3366 | |
5eddb70b CW |
3367 | reg = FDI_RX_CTL(pipe); |
3368 | temp = I915_READ(reg); | |
8db9d77b ZW |
3369 | temp &= ~FDI_LINK_TRAIN_NONE; |
3370 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
5eddb70b | 3371 | I915_WRITE(reg, temp); |
8db9d77b | 3372 | |
5eddb70b CW |
3373 | POSTING_READ(reg); |
3374 | udelay(150); | |
8db9d77b | 3375 | |
5eddb70b | 3376 | reg = FDI_RX_IIR(pipe); |
e1a44743 | 3377 | for (tries = 0; tries < 5; tries++) { |
5eddb70b | 3378 | temp = I915_READ(reg); |
8db9d77b ZW |
3379 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); |
3380 | ||
3381 | if (temp & FDI_RX_SYMBOL_LOCK) { | |
5eddb70b | 3382 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); |
8db9d77b ZW |
3383 | DRM_DEBUG_KMS("FDI train 2 done.\n"); |
3384 | break; | |
3385 | } | |
8db9d77b | 3386 | } |
e1a44743 | 3387 | if (tries == 5) |
5eddb70b | 3388 | DRM_ERROR("FDI train 2 fail!\n"); |
8db9d77b ZW |
3389 | |
3390 | DRM_DEBUG_KMS("FDI train done\n"); | |
5c5313c8 | 3391 | |
8db9d77b ZW |
3392 | } |
3393 | ||
0206e353 | 3394 | static const int snb_b_fdi_train_param[] = { |
8db9d77b ZW |
3395 | FDI_LINK_TRAIN_400MV_0DB_SNB_B, |
3396 | FDI_LINK_TRAIN_400MV_6DB_SNB_B, | |
3397 | FDI_LINK_TRAIN_600MV_3_5DB_SNB_B, | |
3398 | FDI_LINK_TRAIN_800MV_0DB_SNB_B, | |
3399 | }; | |
3400 | ||
3401 | /* The FDI link training functions for SNB/Cougarpoint. */ | |
3402 | static void gen6_fdi_link_train(struct drm_crtc *crtc) | |
3403 | { | |
3404 | struct drm_device *dev = crtc->dev; | |
3405 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3406 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3407 | int pipe = intel_crtc->pipe; | |
f0f59a00 VS |
3408 | i915_reg_t reg; |
3409 | u32 temp, i, retry; | |
8db9d77b | 3410 | |
e1a44743 AJ |
3411 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit |
3412 | for train result */ | |
5eddb70b CW |
3413 | reg = FDI_RX_IMR(pipe); |
3414 | temp = I915_READ(reg); | |
e1a44743 AJ |
3415 | temp &= ~FDI_RX_SYMBOL_LOCK; |
3416 | temp &= ~FDI_RX_BIT_LOCK; | |
5eddb70b CW |
3417 | I915_WRITE(reg, temp); |
3418 | ||
3419 | POSTING_READ(reg); | |
e1a44743 AJ |
3420 | udelay(150); |
3421 | ||
8db9d77b | 3422 | /* enable CPU FDI TX and PCH FDI RX */ |
5eddb70b CW |
3423 | reg = FDI_TX_CTL(pipe); |
3424 | temp = I915_READ(reg); | |
627eb5a3 | 3425 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
6e3c9717 | 3426 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes); |
8db9d77b ZW |
3427 | temp &= ~FDI_LINK_TRAIN_NONE; |
3428 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
3429 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
3430 | /* SNB-B */ | |
3431 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; | |
5eddb70b | 3432 | I915_WRITE(reg, temp | FDI_TX_ENABLE); |
8db9d77b | 3433 | |
d74cf324 DV |
3434 | I915_WRITE(FDI_RX_MISC(pipe), |
3435 | FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90); | |
3436 | ||
5eddb70b CW |
3437 | reg = FDI_RX_CTL(pipe); |
3438 | temp = I915_READ(reg); | |
8db9d77b ZW |
3439 | if (HAS_PCH_CPT(dev)) { |
3440 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
3441 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; | |
3442 | } else { | |
3443 | temp &= ~FDI_LINK_TRAIN_NONE; | |
3444 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
3445 | } | |
5eddb70b CW |
3446 | I915_WRITE(reg, temp | FDI_RX_ENABLE); |
3447 | ||
3448 | POSTING_READ(reg); | |
8db9d77b ZW |
3449 | udelay(150); |
3450 | ||
0206e353 | 3451 | for (i = 0; i < 4; i++) { |
5eddb70b CW |
3452 | reg = FDI_TX_CTL(pipe); |
3453 | temp = I915_READ(reg); | |
8db9d77b ZW |
3454 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
3455 | temp |= snb_b_fdi_train_param[i]; | |
5eddb70b CW |
3456 | I915_WRITE(reg, temp); |
3457 | ||
3458 | POSTING_READ(reg); | |
8db9d77b ZW |
3459 | udelay(500); |
3460 | ||
fa37d39e SP |
3461 | for (retry = 0; retry < 5; retry++) { |
3462 | reg = FDI_RX_IIR(pipe); | |
3463 | temp = I915_READ(reg); | |
3464 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
3465 | if (temp & FDI_RX_BIT_LOCK) { | |
3466 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); | |
3467 | DRM_DEBUG_KMS("FDI train 1 done.\n"); | |
3468 | break; | |
3469 | } | |
3470 | udelay(50); | |
8db9d77b | 3471 | } |
fa37d39e SP |
3472 | if (retry < 5) |
3473 | break; | |
8db9d77b ZW |
3474 | } |
3475 | if (i == 4) | |
5eddb70b | 3476 | DRM_ERROR("FDI train 1 fail!\n"); |
8db9d77b ZW |
3477 | |
3478 | /* Train 2 */ | |
5eddb70b CW |
3479 | reg = FDI_TX_CTL(pipe); |
3480 | temp = I915_READ(reg); | |
8db9d77b ZW |
3481 | temp &= ~FDI_LINK_TRAIN_NONE; |
3482 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
3483 | if (IS_GEN6(dev)) { | |
3484 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; | |
3485 | /* SNB-B */ | |
3486 | temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B; | |
3487 | } | |
5eddb70b | 3488 | I915_WRITE(reg, temp); |
8db9d77b | 3489 | |
5eddb70b CW |
3490 | reg = FDI_RX_CTL(pipe); |
3491 | temp = I915_READ(reg); | |
8db9d77b ZW |
3492 | if (HAS_PCH_CPT(dev)) { |
3493 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
3494 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; | |
3495 | } else { | |
3496 | temp &= ~FDI_LINK_TRAIN_NONE; | |
3497 | temp |= FDI_LINK_TRAIN_PATTERN_2; | |
3498 | } | |
5eddb70b CW |
3499 | I915_WRITE(reg, temp); |
3500 | ||
3501 | POSTING_READ(reg); | |
8db9d77b ZW |
3502 | udelay(150); |
3503 | ||
0206e353 | 3504 | for (i = 0; i < 4; i++) { |
5eddb70b CW |
3505 | reg = FDI_TX_CTL(pipe); |
3506 | temp = I915_READ(reg); | |
8db9d77b ZW |
3507 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
3508 | temp |= snb_b_fdi_train_param[i]; | |
5eddb70b CW |
3509 | I915_WRITE(reg, temp); |
3510 | ||
3511 | POSTING_READ(reg); | |
8db9d77b ZW |
3512 | udelay(500); |
3513 | ||
fa37d39e SP |
3514 | for (retry = 0; retry < 5; retry++) { |
3515 | reg = FDI_RX_IIR(pipe); | |
3516 | temp = I915_READ(reg); | |
3517 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
3518 | if (temp & FDI_RX_SYMBOL_LOCK) { | |
3519 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); | |
3520 | DRM_DEBUG_KMS("FDI train 2 done.\n"); | |
3521 | break; | |
3522 | } | |
3523 | udelay(50); | |
8db9d77b | 3524 | } |
fa37d39e SP |
3525 | if (retry < 5) |
3526 | break; | |
8db9d77b ZW |
3527 | } |
3528 | if (i == 4) | |
5eddb70b | 3529 | DRM_ERROR("FDI train 2 fail!\n"); |
8db9d77b ZW |
3530 | |
3531 | DRM_DEBUG_KMS("FDI train done.\n"); | |
3532 | } | |
3533 | ||
357555c0 JB |
3534 | /* Manual link training for Ivy Bridge A0 parts */ |
3535 | static void ivb_manual_fdi_link_train(struct drm_crtc *crtc) | |
3536 | { | |
3537 | struct drm_device *dev = crtc->dev; | |
3538 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3539 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3540 | int pipe = intel_crtc->pipe; | |
f0f59a00 VS |
3541 | i915_reg_t reg; |
3542 | u32 temp, i, j; | |
357555c0 JB |
3543 | |
3544 | /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit | |
3545 | for train result */ | |
3546 | reg = FDI_RX_IMR(pipe); | |
3547 | temp = I915_READ(reg); | |
3548 | temp &= ~FDI_RX_SYMBOL_LOCK; | |
3549 | temp &= ~FDI_RX_BIT_LOCK; | |
3550 | I915_WRITE(reg, temp); | |
3551 | ||
3552 | POSTING_READ(reg); | |
3553 | udelay(150); | |
3554 | ||
01a415fd DV |
3555 | DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n", |
3556 | I915_READ(FDI_RX_IIR(pipe))); | |
3557 | ||
139ccd3f JB |
3558 | /* Try each vswing and preemphasis setting twice before moving on */ |
3559 | for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) { | |
3560 | /* disable first in case we need to retry */ | |
3561 | reg = FDI_TX_CTL(pipe); | |
3562 | temp = I915_READ(reg); | |
3563 | temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB); | |
3564 | temp &= ~FDI_TX_ENABLE; | |
3565 | I915_WRITE(reg, temp); | |
357555c0 | 3566 | |
139ccd3f JB |
3567 | reg = FDI_RX_CTL(pipe); |
3568 | temp = I915_READ(reg); | |
3569 | temp &= ~FDI_LINK_TRAIN_AUTO; | |
3570 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
3571 | temp &= ~FDI_RX_ENABLE; | |
3572 | I915_WRITE(reg, temp); | |
357555c0 | 3573 | |
139ccd3f | 3574 | /* enable CPU FDI TX and PCH FDI RX */ |
357555c0 JB |
3575 | reg = FDI_TX_CTL(pipe); |
3576 | temp = I915_READ(reg); | |
139ccd3f | 3577 | temp &= ~FDI_DP_PORT_WIDTH_MASK; |
6e3c9717 | 3578 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes); |
139ccd3f | 3579 | temp |= FDI_LINK_TRAIN_PATTERN_1_IVB; |
357555c0 | 3580 | temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK; |
139ccd3f JB |
3581 | temp |= snb_b_fdi_train_param[j/2]; |
3582 | temp |= FDI_COMPOSITE_SYNC; | |
3583 | I915_WRITE(reg, temp | FDI_TX_ENABLE); | |
357555c0 | 3584 | |
139ccd3f JB |
3585 | I915_WRITE(FDI_RX_MISC(pipe), |
3586 | FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90); | |
357555c0 | 3587 | |
139ccd3f | 3588 | reg = FDI_RX_CTL(pipe); |
357555c0 | 3589 | temp = I915_READ(reg); |
139ccd3f JB |
3590 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; |
3591 | temp |= FDI_COMPOSITE_SYNC; | |
3592 | I915_WRITE(reg, temp | FDI_RX_ENABLE); | |
357555c0 | 3593 | |
139ccd3f JB |
3594 | POSTING_READ(reg); |
3595 | udelay(1); /* should be 0.5us */ | |
357555c0 | 3596 | |
139ccd3f JB |
3597 | for (i = 0; i < 4; i++) { |
3598 | reg = FDI_RX_IIR(pipe); | |
3599 | temp = I915_READ(reg); | |
3600 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
357555c0 | 3601 | |
139ccd3f JB |
3602 | if (temp & FDI_RX_BIT_LOCK || |
3603 | (I915_READ(reg) & FDI_RX_BIT_LOCK)) { | |
3604 | I915_WRITE(reg, temp | FDI_RX_BIT_LOCK); | |
3605 | DRM_DEBUG_KMS("FDI train 1 done, level %i.\n", | |
3606 | i); | |
3607 | break; | |
3608 | } | |
3609 | udelay(1); /* should be 0.5us */ | |
3610 | } | |
3611 | if (i == 4) { | |
3612 | DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2); | |
3613 | continue; | |
3614 | } | |
357555c0 | 3615 | |
139ccd3f | 3616 | /* Train 2 */ |
357555c0 JB |
3617 | reg = FDI_TX_CTL(pipe); |
3618 | temp = I915_READ(reg); | |
139ccd3f JB |
3619 | temp &= ~FDI_LINK_TRAIN_NONE_IVB; |
3620 | temp |= FDI_LINK_TRAIN_PATTERN_2_IVB; | |
3621 | I915_WRITE(reg, temp); | |
3622 | ||
3623 | reg = FDI_RX_CTL(pipe); | |
3624 | temp = I915_READ(reg); | |
3625 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
3626 | temp |= FDI_LINK_TRAIN_PATTERN_2_CPT; | |
357555c0 JB |
3627 | I915_WRITE(reg, temp); |
3628 | ||
3629 | POSTING_READ(reg); | |
139ccd3f | 3630 | udelay(2); /* should be 1.5us */ |
357555c0 | 3631 | |
139ccd3f JB |
3632 | for (i = 0; i < 4; i++) { |
3633 | reg = FDI_RX_IIR(pipe); | |
3634 | temp = I915_READ(reg); | |
3635 | DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp); | |
357555c0 | 3636 | |
139ccd3f JB |
3637 | if (temp & FDI_RX_SYMBOL_LOCK || |
3638 | (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) { | |
3639 | I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK); | |
3640 | DRM_DEBUG_KMS("FDI train 2 done, level %i.\n", | |
3641 | i); | |
3642 | goto train_done; | |
3643 | } | |
3644 | udelay(2); /* should be 1.5us */ | |
357555c0 | 3645 | } |
139ccd3f JB |
3646 | if (i == 4) |
3647 | DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2); | |
357555c0 | 3648 | } |
357555c0 | 3649 | |
139ccd3f | 3650 | train_done: |
357555c0 JB |
3651 | DRM_DEBUG_KMS("FDI train done.\n"); |
3652 | } | |
3653 | ||
88cefb6c | 3654 | static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc) |
2c07245f | 3655 | { |
88cefb6c | 3656 | struct drm_device *dev = intel_crtc->base.dev; |
2c07245f | 3657 | struct drm_i915_private *dev_priv = dev->dev_private; |
2c07245f | 3658 | int pipe = intel_crtc->pipe; |
f0f59a00 VS |
3659 | i915_reg_t reg; |
3660 | u32 temp; | |
c64e311e | 3661 | |
c98e9dcf | 3662 | /* enable PCH FDI RX PLL, wait warmup plus DMI latency */ |
5eddb70b CW |
3663 | reg = FDI_RX_CTL(pipe); |
3664 | temp = I915_READ(reg); | |
627eb5a3 | 3665 | temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16)); |
6e3c9717 | 3666 | temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes); |
dfd07d72 | 3667 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
5eddb70b CW |
3668 | I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE); |
3669 | ||
3670 | POSTING_READ(reg); | |
c98e9dcf JB |
3671 | udelay(200); |
3672 | ||
3673 | /* Switch from Rawclk to PCDclk */ | |
5eddb70b CW |
3674 | temp = I915_READ(reg); |
3675 | I915_WRITE(reg, temp | FDI_PCDCLK); | |
3676 | ||
3677 | POSTING_READ(reg); | |
c98e9dcf JB |
3678 | udelay(200); |
3679 | ||
20749730 PZ |
3680 | /* Enable CPU FDI TX PLL, always on for Ironlake */ |
3681 | reg = FDI_TX_CTL(pipe); | |
3682 | temp = I915_READ(reg); | |
3683 | if ((temp & FDI_TX_PLL_ENABLE) == 0) { | |
3684 | I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE); | |
5eddb70b | 3685 | |
20749730 PZ |
3686 | POSTING_READ(reg); |
3687 | udelay(100); | |
6be4a607 | 3688 | } |
0e23b99d JB |
3689 | } |
3690 | ||
88cefb6c DV |
3691 | static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc) |
3692 | { | |
3693 | struct drm_device *dev = intel_crtc->base.dev; | |
3694 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3695 | int pipe = intel_crtc->pipe; | |
f0f59a00 VS |
3696 | i915_reg_t reg; |
3697 | u32 temp; | |
88cefb6c DV |
3698 | |
3699 | /* Switch from PCDclk to Rawclk */ | |
3700 | reg = FDI_RX_CTL(pipe); | |
3701 | temp = I915_READ(reg); | |
3702 | I915_WRITE(reg, temp & ~FDI_PCDCLK); | |
3703 | ||
3704 | /* Disable CPU FDI TX PLL */ | |
3705 | reg = FDI_TX_CTL(pipe); | |
3706 | temp = I915_READ(reg); | |
3707 | I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE); | |
3708 | ||
3709 | POSTING_READ(reg); | |
3710 | udelay(100); | |
3711 | ||
3712 | reg = FDI_RX_CTL(pipe); | |
3713 | temp = I915_READ(reg); | |
3714 | I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE); | |
3715 | ||
3716 | /* Wait for the clocks to turn off. */ | |
3717 | POSTING_READ(reg); | |
3718 | udelay(100); | |
3719 | } | |
3720 | ||
0fc932b8 JB |
3721 | static void ironlake_fdi_disable(struct drm_crtc *crtc) |
3722 | { | |
3723 | struct drm_device *dev = crtc->dev; | |
3724 | struct drm_i915_private *dev_priv = dev->dev_private; | |
3725 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
3726 | int pipe = intel_crtc->pipe; | |
f0f59a00 VS |
3727 | i915_reg_t reg; |
3728 | u32 temp; | |
0fc932b8 JB |
3729 | |
3730 | /* disable CPU FDI tx and PCH FDI rx */ | |
3731 | reg = FDI_TX_CTL(pipe); | |
3732 | temp = I915_READ(reg); | |
3733 | I915_WRITE(reg, temp & ~FDI_TX_ENABLE); | |
3734 | POSTING_READ(reg); | |
3735 | ||
3736 | reg = FDI_RX_CTL(pipe); | |
3737 | temp = I915_READ(reg); | |
3738 | temp &= ~(0x7 << 16); | |
dfd07d72 | 3739 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
0fc932b8 JB |
3740 | I915_WRITE(reg, temp & ~FDI_RX_ENABLE); |
3741 | ||
3742 | POSTING_READ(reg); | |
3743 | udelay(100); | |
3744 | ||
3745 | /* Ironlake workaround, disable clock pointer after downing FDI */ | |
eba905b2 | 3746 | if (HAS_PCH_IBX(dev)) |
6f06ce18 | 3747 | I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR); |
0fc932b8 JB |
3748 | |
3749 | /* still set train pattern 1 */ | |
3750 | reg = FDI_TX_CTL(pipe); | |
3751 | temp = I915_READ(reg); | |
3752 | temp &= ~FDI_LINK_TRAIN_NONE; | |
3753 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
3754 | I915_WRITE(reg, temp); | |
3755 | ||
3756 | reg = FDI_RX_CTL(pipe); | |
3757 | temp = I915_READ(reg); | |
3758 | if (HAS_PCH_CPT(dev)) { | |
3759 | temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT; | |
3760 | temp |= FDI_LINK_TRAIN_PATTERN_1_CPT; | |
3761 | } else { | |
3762 | temp &= ~FDI_LINK_TRAIN_NONE; | |
3763 | temp |= FDI_LINK_TRAIN_PATTERN_1; | |
3764 | } | |
3765 | /* BPC in FDI rx is consistent with that in PIPECONF */ | |
3766 | temp &= ~(0x07 << 16); | |
dfd07d72 | 3767 | temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11; |
0fc932b8 JB |
3768 | I915_WRITE(reg, temp); |
3769 | ||
3770 | POSTING_READ(reg); | |
3771 | udelay(100); | |
3772 | } | |
3773 | ||
5dce5b93 CW |
3774 | bool intel_has_pending_fb_unpin(struct drm_device *dev) |
3775 | { | |
3776 | struct intel_crtc *crtc; | |
3777 | ||
3778 | /* Note that we don't need to be called with mode_config.lock here | |
3779 | * as our list of CRTC objects is static for the lifetime of the | |
3780 | * device and so cannot disappear as we iterate. Similarly, we can | |
3781 | * happily treat the predicates as racy, atomic checks as userspace | |
3782 | * cannot claim and pin a new fb without at least acquring the | |
3783 | * struct_mutex and so serialising with us. | |
3784 | */ | |
d3fcc808 | 3785 | for_each_intel_crtc(dev, crtc) { |
5dce5b93 CW |
3786 | if (atomic_read(&crtc->unpin_work_count) == 0) |
3787 | continue; | |
3788 | ||
3789 | if (crtc->unpin_work) | |
3790 | intel_wait_for_vblank(dev, crtc->pipe); | |
3791 | ||
3792 | return true; | |
3793 | } | |
3794 | ||
3795 | return false; | |
3796 | } | |
3797 | ||
d6bbafa1 CW |
3798 | static void page_flip_completed(struct intel_crtc *intel_crtc) |
3799 | { | |
3800 | struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev); | |
3801 | struct intel_unpin_work *work = intel_crtc->unpin_work; | |
3802 | ||
3803 | /* ensure that the unpin work is consistent wrt ->pending. */ | |
3804 | smp_rmb(); | |
3805 | intel_crtc->unpin_work = NULL; | |
3806 | ||
3807 | if (work->event) | |
3808 | drm_send_vblank_event(intel_crtc->base.dev, | |
3809 | intel_crtc->pipe, | |
3810 | work->event); | |
3811 | ||
3812 | drm_crtc_vblank_put(&intel_crtc->base); | |
3813 | ||
3814 | wake_up_all(&dev_priv->pending_flip_queue); | |
3815 | queue_work(dev_priv->wq, &work->work); | |
3816 | ||
3817 | trace_i915_flip_complete(intel_crtc->plane, | |
3818 | work->pending_flip_obj); | |
3819 | } | |
3820 | ||
5008e874 | 3821 | static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc) |
e6c3a2a6 | 3822 | { |
0f91128d | 3823 | struct drm_device *dev = crtc->dev; |
5bb61643 | 3824 | struct drm_i915_private *dev_priv = dev->dev_private; |
5008e874 | 3825 | long ret; |
e6c3a2a6 | 3826 | |
2c10d571 | 3827 | WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue)); |
5008e874 ML |
3828 | |
3829 | ret = wait_event_interruptible_timeout( | |
3830 | dev_priv->pending_flip_queue, | |
3831 | !intel_crtc_has_pending_flip(crtc), | |
3832 | 60*HZ); | |
3833 | ||
3834 | if (ret < 0) | |
3835 | return ret; | |
3836 | ||
3837 | if (ret == 0) { | |
9c787942 | 3838 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
2c10d571 | 3839 | |
5e2d7afc | 3840 | spin_lock_irq(&dev->event_lock); |
9c787942 CW |
3841 | if (intel_crtc->unpin_work) { |
3842 | WARN_ONCE(1, "Removing stuck page flip\n"); | |
3843 | page_flip_completed(intel_crtc); | |
3844 | } | |
5e2d7afc | 3845 | spin_unlock_irq(&dev->event_lock); |
9c787942 | 3846 | } |
5bb61643 | 3847 | |
5008e874 | 3848 | return 0; |
e6c3a2a6 CW |
3849 | } |
3850 | ||
060f02d8 VS |
3851 | static void lpt_disable_iclkip(struct drm_i915_private *dev_priv) |
3852 | { | |
3853 | u32 temp; | |
3854 | ||
3855 | I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE); | |
3856 | ||
3857 | mutex_lock(&dev_priv->sb_lock); | |
3858 | ||
3859 | temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK); | |
3860 | temp |= SBI_SSCCTL_DISABLE; | |
3861 | intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK); | |
3862 | ||
3863 | mutex_unlock(&dev_priv->sb_lock); | |
3864 | } | |
3865 | ||
e615efe4 ED |
3866 | /* Program iCLKIP clock to the desired frequency */ |
3867 | static void lpt_program_iclkip(struct drm_crtc *crtc) | |
3868 | { | |
64b46a06 | 3869 | struct drm_i915_private *dev_priv = to_i915(crtc->dev); |
6e3c9717 | 3870 | int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock; |
e615efe4 ED |
3871 | u32 divsel, phaseinc, auxdiv, phasedir = 0; |
3872 | u32 temp; | |
3873 | ||
060f02d8 | 3874 | lpt_disable_iclkip(dev_priv); |
e615efe4 | 3875 | |
64b46a06 VS |
3876 | /* The iCLK virtual clock root frequency is in MHz, |
3877 | * but the adjusted_mode->crtc_clock in in KHz. To get the | |
3878 | * divisors, it is necessary to divide one by another, so we | |
3879 | * convert the virtual clock precision to KHz here for higher | |
3880 | * precision. | |
3881 | */ | |
3882 | for (auxdiv = 0; auxdiv < 2; auxdiv++) { | |
e615efe4 ED |
3883 | u32 iclk_virtual_root_freq = 172800 * 1000; |
3884 | u32 iclk_pi_range = 64; | |
64b46a06 | 3885 | u32 desired_divisor; |
e615efe4 | 3886 | |
64b46a06 VS |
3887 | desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq, |
3888 | clock << auxdiv); | |
3889 | divsel = (desired_divisor / iclk_pi_range) - 2; | |
3890 | phaseinc = desired_divisor % iclk_pi_range; | |
e615efe4 | 3891 | |
64b46a06 VS |
3892 | /* |
3893 | * Near 20MHz is a corner case which is | |
3894 | * out of range for the 7-bit divisor | |
3895 | */ | |
3896 | if (divsel <= 0x7f) | |
3897 | break; | |
e615efe4 ED |
3898 | } |
3899 | ||
3900 | /* This should not happen with any sane values */ | |
3901 | WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) & | |
3902 | ~SBI_SSCDIVINTPHASE_DIVSEL_MASK); | |
3903 | WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) & | |
3904 | ~SBI_SSCDIVINTPHASE_INCVAL_MASK); | |
3905 | ||
3906 | DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n", | |
12d7ceed | 3907 | clock, |
e615efe4 ED |
3908 | auxdiv, |
3909 | divsel, | |
3910 | phasedir, | |
3911 | phaseinc); | |
3912 | ||
060f02d8 VS |
3913 | mutex_lock(&dev_priv->sb_lock); |
3914 | ||
e615efe4 | 3915 | /* Program SSCDIVINTPHASE6 */ |
988d6ee8 | 3916 | temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK); |
e615efe4 ED |
3917 | temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK; |
3918 | temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel); | |
3919 | temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK; | |
3920 | temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc); | |
3921 | temp |= SBI_SSCDIVINTPHASE_DIR(phasedir); | |
3922 | temp |= SBI_SSCDIVINTPHASE_PROPAGATE; | |
988d6ee8 | 3923 | intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK); |
e615efe4 ED |
3924 | |
3925 | /* Program SSCAUXDIV */ | |
988d6ee8 | 3926 | temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK); |
e615efe4 ED |
3927 | temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1); |
3928 | temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv); | |
988d6ee8 | 3929 | intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK); |
e615efe4 ED |
3930 | |
3931 | /* Enable modulator and associated divider */ | |
988d6ee8 | 3932 | temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK); |
e615efe4 | 3933 | temp &= ~SBI_SSCCTL_DISABLE; |
988d6ee8 | 3934 | intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK); |
e615efe4 | 3935 | |
060f02d8 VS |
3936 | mutex_unlock(&dev_priv->sb_lock); |
3937 | ||
e615efe4 ED |
3938 | /* Wait for initialization time */ |
3939 | udelay(24); | |
3940 | ||
3941 | I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE); | |
3942 | } | |
3943 | ||
8802e5b6 VS |
3944 | int lpt_get_iclkip(struct drm_i915_private *dev_priv) |
3945 | { | |
3946 | u32 divsel, phaseinc, auxdiv; | |
3947 | u32 iclk_virtual_root_freq = 172800 * 1000; | |
3948 | u32 iclk_pi_range = 64; | |
3949 | u32 desired_divisor; | |
3950 | u32 temp; | |
3951 | ||
3952 | if ((I915_READ(PIXCLK_GATE) & PIXCLK_GATE_UNGATE) == 0) | |
3953 | return 0; | |
3954 | ||
3955 | mutex_lock(&dev_priv->sb_lock); | |
3956 | ||
3957 | temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK); | |
3958 | if (temp & SBI_SSCCTL_DISABLE) { | |
3959 | mutex_unlock(&dev_priv->sb_lock); | |
3960 | return 0; | |
3961 | } | |
3962 | ||
3963 | temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK); | |
3964 | divsel = (temp & SBI_SSCDIVINTPHASE_DIVSEL_MASK) >> | |
3965 | SBI_SSCDIVINTPHASE_DIVSEL_SHIFT; | |
3966 | phaseinc = (temp & SBI_SSCDIVINTPHASE_INCVAL_MASK) >> | |
3967 | SBI_SSCDIVINTPHASE_INCVAL_SHIFT; | |
3968 | ||
3969 | temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK); | |
3970 | auxdiv = (temp & SBI_SSCAUXDIV_FINALDIV2SEL_MASK) >> | |
3971 | SBI_SSCAUXDIV_FINALDIV2SEL_SHIFT; | |
3972 | ||
3973 | mutex_unlock(&dev_priv->sb_lock); | |
3974 | ||
3975 | desired_divisor = (divsel + 2) * iclk_pi_range + phaseinc; | |
3976 | ||
3977 | return DIV_ROUND_CLOSEST(iclk_virtual_root_freq, | |
3978 | desired_divisor << auxdiv); | |
3979 | } | |
3980 | ||
275f01b2 DV |
3981 | static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc, |
3982 | enum pipe pch_transcoder) | |
3983 | { | |
3984 | struct drm_device *dev = crtc->base.dev; | |
3985 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6e3c9717 | 3986 | enum transcoder cpu_transcoder = crtc->config->cpu_transcoder; |
275f01b2 DV |
3987 | |
3988 | I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder), | |
3989 | I915_READ(HTOTAL(cpu_transcoder))); | |
3990 | I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder), | |
3991 | I915_READ(HBLANK(cpu_transcoder))); | |
3992 | I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder), | |
3993 | I915_READ(HSYNC(cpu_transcoder))); | |
3994 | ||
3995 | I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder), | |
3996 | I915_READ(VTOTAL(cpu_transcoder))); | |
3997 | I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder), | |
3998 | I915_READ(VBLANK(cpu_transcoder))); | |
3999 | I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder), | |
4000 | I915_READ(VSYNC(cpu_transcoder))); | |
4001 | I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder), | |
4002 | I915_READ(VSYNCSHIFT(cpu_transcoder))); | |
4003 | } | |
4004 | ||
003632d9 | 4005 | static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable) |
1fbc0d78 DV |
4006 | { |
4007 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4008 | uint32_t temp; | |
4009 | ||
4010 | temp = I915_READ(SOUTH_CHICKEN1); | |
003632d9 | 4011 | if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable) |
1fbc0d78 DV |
4012 | return; |
4013 | ||
4014 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE); | |
4015 | WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE); | |
4016 | ||
003632d9 ACO |
4017 | temp &= ~FDI_BC_BIFURCATION_SELECT; |
4018 | if (enable) | |
4019 | temp |= FDI_BC_BIFURCATION_SELECT; | |
4020 | ||
4021 | DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis"); | |
1fbc0d78 DV |
4022 | I915_WRITE(SOUTH_CHICKEN1, temp); |
4023 | POSTING_READ(SOUTH_CHICKEN1); | |
4024 | } | |
4025 | ||
4026 | static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc) | |
4027 | { | |
4028 | struct drm_device *dev = intel_crtc->base.dev; | |
1fbc0d78 DV |
4029 | |
4030 | switch (intel_crtc->pipe) { | |
4031 | case PIPE_A: | |
4032 | break; | |
4033 | case PIPE_B: | |
6e3c9717 | 4034 | if (intel_crtc->config->fdi_lanes > 2) |
003632d9 | 4035 | cpt_set_fdi_bc_bifurcation(dev, false); |
1fbc0d78 | 4036 | else |
003632d9 | 4037 | cpt_set_fdi_bc_bifurcation(dev, true); |
1fbc0d78 DV |
4038 | |
4039 | break; | |
4040 | case PIPE_C: | |
003632d9 | 4041 | cpt_set_fdi_bc_bifurcation(dev, true); |
1fbc0d78 DV |
4042 | |
4043 | break; | |
4044 | default: | |
4045 | BUG(); | |
4046 | } | |
4047 | } | |
4048 | ||
c48b5305 VS |
4049 | /* Return which DP Port should be selected for Transcoder DP control */ |
4050 | static enum port | |
4051 | intel_trans_dp_port_sel(struct drm_crtc *crtc) | |
4052 | { | |
4053 | struct drm_device *dev = crtc->dev; | |
4054 | struct intel_encoder *encoder; | |
4055 | ||
4056 | for_each_encoder_on_crtc(dev, crtc, encoder) { | |
4057 | if (encoder->type == INTEL_OUTPUT_DISPLAYPORT || | |
4058 | encoder->type == INTEL_OUTPUT_EDP) | |
4059 | return enc_to_dig_port(&encoder->base)->port; | |
4060 | } | |
4061 | ||
4062 | return -1; | |
4063 | } | |
4064 | ||
f67a559d JB |
4065 | /* |
4066 | * Enable PCH resources required for PCH ports: | |
4067 | * - PCH PLLs | |
4068 | * - FDI training & RX/TX | |
4069 | * - update transcoder timings | |
4070 | * - DP transcoding bits | |
4071 | * - transcoder | |
4072 | */ | |
4073 | static void ironlake_pch_enable(struct drm_crtc *crtc) | |
0e23b99d JB |
4074 | { |
4075 | struct drm_device *dev = crtc->dev; | |
4076 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4077 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
4078 | int pipe = intel_crtc->pipe; | |
f0f59a00 | 4079 | u32 temp; |
2c07245f | 4080 | |
ab9412ba | 4081 | assert_pch_transcoder_disabled(dev_priv, pipe); |
e7e164db | 4082 | |
1fbc0d78 DV |
4083 | if (IS_IVYBRIDGE(dev)) |
4084 | ivybridge_update_fdi_bc_bifurcation(intel_crtc); | |
4085 | ||
cd986abb DV |
4086 | /* Write the TU size bits before fdi link training, so that error |
4087 | * detection works. */ | |
4088 | I915_WRITE(FDI_RX_TUSIZE1(pipe), | |
4089 | I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK); | |
4090 | ||
3860b2ec VS |
4091 | /* |
4092 | * Sometimes spurious CPU pipe underruns happen during FDI | |
4093 | * training, at least with VGA+HDMI cloning. Suppress them. | |
4094 | */ | |
4095 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false); | |
4096 | ||
c98e9dcf | 4097 | /* For PCH output, training FDI link */ |
674cf967 | 4098 | dev_priv->display.fdi_link_train(crtc); |
2c07245f | 4099 | |
3ad8a208 DV |
4100 | /* We need to program the right clock selection before writing the pixel |
4101 | * mutliplier into the DPLL. */ | |
303b81e0 | 4102 | if (HAS_PCH_CPT(dev)) { |
ee7b9f93 | 4103 | u32 sel; |
4b645f14 | 4104 | |
c98e9dcf | 4105 | temp = I915_READ(PCH_DPLL_SEL); |
11887397 DV |
4106 | temp |= TRANS_DPLL_ENABLE(pipe); |
4107 | sel = TRANS_DPLLB_SEL(pipe); | |
8106ddbd ACO |
4108 | if (intel_crtc->config->shared_dpll == |
4109 | intel_get_shared_dpll_by_id(dev_priv, DPLL_ID_PCH_PLL_B)) | |
ee7b9f93 JB |
4110 | temp |= sel; |
4111 | else | |
4112 | temp &= ~sel; | |
c98e9dcf | 4113 | I915_WRITE(PCH_DPLL_SEL, temp); |
c98e9dcf | 4114 | } |
5eddb70b | 4115 | |
3ad8a208 DV |
4116 | /* XXX: pch pll's can be enabled any time before we enable the PCH |
4117 | * transcoder, and we actually should do this to not upset any PCH | |
4118 | * transcoder that already use the clock when we share it. | |
4119 | * | |
4120 | * Note that enable_shared_dpll tries to do the right thing, but | |
4121 | * get_shared_dpll unconditionally resets the pll - we need that to have | |
4122 | * the right LVDS enable sequence. */ | |
85b3894f | 4123 | intel_enable_shared_dpll(intel_crtc); |
3ad8a208 | 4124 | |
d9b6cb56 JB |
4125 | /* set transcoder timing, panel must allow it */ |
4126 | assert_panel_unlocked(dev_priv, pipe); | |
275f01b2 | 4127 | ironlake_pch_transcoder_set_timings(intel_crtc, pipe); |
8db9d77b | 4128 | |
303b81e0 | 4129 | intel_fdi_normal_train(crtc); |
5e84e1a4 | 4130 | |
3860b2ec VS |
4131 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
4132 | ||
c98e9dcf | 4133 | /* For PCH DP, enable TRANS_DP_CTL */ |
6e3c9717 | 4134 | if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) { |
9c4edaee VS |
4135 | const struct drm_display_mode *adjusted_mode = |
4136 | &intel_crtc->config->base.adjusted_mode; | |
dfd07d72 | 4137 | u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5; |
f0f59a00 | 4138 | i915_reg_t reg = TRANS_DP_CTL(pipe); |
5eddb70b CW |
4139 | temp = I915_READ(reg); |
4140 | temp &= ~(TRANS_DP_PORT_SEL_MASK | | |
220cad3c EA |
4141 | TRANS_DP_SYNC_MASK | |
4142 | TRANS_DP_BPC_MASK); | |
e3ef4479 | 4143 | temp |= TRANS_DP_OUTPUT_ENABLE; |
9325c9f0 | 4144 | temp |= bpc << 9; /* same format but at 11:9 */ |
c98e9dcf | 4145 | |
9c4edaee | 4146 | if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC) |
5eddb70b | 4147 | temp |= TRANS_DP_HSYNC_ACTIVE_HIGH; |
9c4edaee | 4148 | if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC) |
5eddb70b | 4149 | temp |= TRANS_DP_VSYNC_ACTIVE_HIGH; |
c98e9dcf JB |
4150 | |
4151 | switch (intel_trans_dp_port_sel(crtc)) { | |
c48b5305 | 4152 | case PORT_B: |
5eddb70b | 4153 | temp |= TRANS_DP_PORT_SEL_B; |
c98e9dcf | 4154 | break; |
c48b5305 | 4155 | case PORT_C: |
5eddb70b | 4156 | temp |= TRANS_DP_PORT_SEL_C; |
c98e9dcf | 4157 | break; |
c48b5305 | 4158 | case PORT_D: |
5eddb70b | 4159 | temp |= TRANS_DP_PORT_SEL_D; |
c98e9dcf JB |
4160 | break; |
4161 | default: | |
e95d41e1 | 4162 | BUG(); |
32f9d658 | 4163 | } |
2c07245f | 4164 | |
5eddb70b | 4165 | I915_WRITE(reg, temp); |
6be4a607 | 4166 | } |
b52eb4dc | 4167 | |
b8a4f404 | 4168 | ironlake_enable_pch_transcoder(dev_priv, pipe); |
f67a559d JB |
4169 | } |
4170 | ||
1507e5bd PZ |
4171 | static void lpt_pch_enable(struct drm_crtc *crtc) |
4172 | { | |
4173 | struct drm_device *dev = crtc->dev; | |
4174 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4175 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6e3c9717 | 4176 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
1507e5bd | 4177 | |
ab9412ba | 4178 | assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A); |
1507e5bd | 4179 | |
8c52b5e8 | 4180 | lpt_program_iclkip(crtc); |
1507e5bd | 4181 | |
0540e488 | 4182 | /* Set transcoder timing. */ |
275f01b2 | 4183 | ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A); |
1507e5bd | 4184 | |
937bb610 | 4185 | lpt_enable_pch_transcoder(dev_priv, cpu_transcoder); |
f67a559d JB |
4186 | } |
4187 | ||
a1520318 | 4188 | static void cpt_verify_modeset(struct drm_device *dev, int pipe) |
d4270e57 JB |
4189 | { |
4190 | struct drm_i915_private *dev_priv = dev->dev_private; | |
f0f59a00 | 4191 | i915_reg_t dslreg = PIPEDSL(pipe); |
d4270e57 JB |
4192 | u32 temp; |
4193 | ||
4194 | temp = I915_READ(dslreg); | |
4195 | udelay(500); | |
4196 | if (wait_for(I915_READ(dslreg) != temp, 5)) { | |
d4270e57 | 4197 | if (wait_for(I915_READ(dslreg) != temp, 5)) |
84f44ce7 | 4198 | DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe)); |
d4270e57 JB |
4199 | } |
4200 | } | |
4201 | ||
86adf9d7 ML |
4202 | static int |
4203 | skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach, | |
4204 | unsigned scaler_user, int *scaler_id, unsigned int rotation, | |
4205 | int src_w, int src_h, int dst_w, int dst_h) | |
a1b2278e | 4206 | { |
86adf9d7 ML |
4207 | struct intel_crtc_scaler_state *scaler_state = |
4208 | &crtc_state->scaler_state; | |
4209 | struct intel_crtc *intel_crtc = | |
4210 | to_intel_crtc(crtc_state->base.crtc); | |
a1b2278e | 4211 | int need_scaling; |
6156a456 CK |
4212 | |
4213 | need_scaling = intel_rotation_90_or_270(rotation) ? | |
4214 | (src_h != dst_w || src_w != dst_h): | |
4215 | (src_w != dst_w || src_h != dst_h); | |
a1b2278e CK |
4216 | |
4217 | /* | |
4218 | * if plane is being disabled or scaler is no more required or force detach | |
4219 | * - free scaler binded to this plane/crtc | |
4220 | * - in order to do this, update crtc->scaler_usage | |
4221 | * | |
4222 | * Here scaler state in crtc_state is set free so that | |
4223 | * scaler can be assigned to other user. Actual register | |
4224 | * update to free the scaler is done in plane/panel-fit programming. | |
4225 | * For this purpose crtc/plane_state->scaler_id isn't reset here. | |
4226 | */ | |
86adf9d7 | 4227 | if (force_detach || !need_scaling) { |
a1b2278e | 4228 | if (*scaler_id >= 0) { |
86adf9d7 | 4229 | scaler_state->scaler_users &= ~(1 << scaler_user); |
a1b2278e CK |
4230 | scaler_state->scalers[*scaler_id].in_use = 0; |
4231 | ||
86adf9d7 ML |
4232 | DRM_DEBUG_KMS("scaler_user index %u.%u: " |
4233 | "Staged freeing scaler id %d scaler_users = 0x%x\n", | |
4234 | intel_crtc->pipe, scaler_user, *scaler_id, | |
a1b2278e CK |
4235 | scaler_state->scaler_users); |
4236 | *scaler_id = -1; | |
4237 | } | |
4238 | return 0; | |
4239 | } | |
4240 | ||
4241 | /* range checks */ | |
4242 | if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H || | |
4243 | dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H || | |
4244 | ||
4245 | src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H || | |
4246 | dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) { | |
86adf9d7 | 4247 | DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u " |
a1b2278e | 4248 | "size is out of scaler range\n", |
86adf9d7 | 4249 | intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h); |
a1b2278e CK |
4250 | return -EINVAL; |
4251 | } | |
4252 | ||
86adf9d7 ML |
4253 | /* mark this plane as a scaler user in crtc_state */ |
4254 | scaler_state->scaler_users |= (1 << scaler_user); | |
4255 | DRM_DEBUG_KMS("scaler_user index %u.%u: " | |
4256 | "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n", | |
4257 | intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h, | |
4258 | scaler_state->scaler_users); | |
4259 | ||
4260 | return 0; | |
4261 | } | |
4262 | ||
4263 | /** | |
4264 | * skl_update_scaler_crtc - Stages update to scaler state for a given crtc. | |
4265 | * | |
4266 | * @state: crtc's scaler state | |
86adf9d7 ML |
4267 | * |
4268 | * Return | |
4269 | * 0 - scaler_usage updated successfully | |
4270 | * error - requested scaling cannot be supported or other error condition | |
4271 | */ | |
e435d6e5 | 4272 | int skl_update_scaler_crtc(struct intel_crtc_state *state) |
86adf9d7 ML |
4273 | { |
4274 | struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc); | |
7c5f93b0 | 4275 | const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode; |
86adf9d7 ML |
4276 | |
4277 | DRM_DEBUG_KMS("Updating scaler for [CRTC:%i] scaler_user index %u.%u\n", | |
4278 | intel_crtc->base.base.id, intel_crtc->pipe, SKL_CRTC_INDEX); | |
4279 | ||
e435d6e5 | 4280 | return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX, |
fa5a7970 | 4281 | &state->scaler_state.scaler_id, BIT(DRM_ROTATE_0), |
86adf9d7 | 4282 | state->pipe_src_w, state->pipe_src_h, |
aad941d5 | 4283 | adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay); |
86adf9d7 ML |
4284 | } |
4285 | ||
4286 | /** | |
4287 | * skl_update_scaler_plane - Stages update to scaler state for a given plane. | |
4288 | * | |
4289 | * @state: crtc's scaler state | |
86adf9d7 ML |
4290 | * @plane_state: atomic plane state to update |
4291 | * | |
4292 | * Return | |
4293 | * 0 - scaler_usage updated successfully | |
4294 | * error - requested scaling cannot be supported or other error condition | |
4295 | */ | |
da20eabd ML |
4296 | static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state, |
4297 | struct intel_plane_state *plane_state) | |
86adf9d7 ML |
4298 | { |
4299 | ||
4300 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc); | |
da20eabd ML |
4301 | struct intel_plane *intel_plane = |
4302 | to_intel_plane(plane_state->base.plane); | |
86adf9d7 ML |
4303 | struct drm_framebuffer *fb = plane_state->base.fb; |
4304 | int ret; | |
4305 | ||
4306 | bool force_detach = !fb || !plane_state->visible; | |
4307 | ||
4308 | DRM_DEBUG_KMS("Updating scaler for [PLANE:%d] scaler_user index %u.%u\n", | |
4309 | intel_plane->base.base.id, intel_crtc->pipe, | |
4310 | drm_plane_index(&intel_plane->base)); | |
4311 | ||
4312 | ret = skl_update_scaler(crtc_state, force_detach, | |
4313 | drm_plane_index(&intel_plane->base), | |
4314 | &plane_state->scaler_id, | |
4315 | plane_state->base.rotation, | |
4316 | drm_rect_width(&plane_state->src) >> 16, | |
4317 | drm_rect_height(&plane_state->src) >> 16, | |
4318 | drm_rect_width(&plane_state->dst), | |
4319 | drm_rect_height(&plane_state->dst)); | |
4320 | ||
4321 | if (ret || plane_state->scaler_id < 0) | |
4322 | return ret; | |
4323 | ||
a1b2278e | 4324 | /* check colorkey */ |
818ed961 | 4325 | if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) { |
86adf9d7 | 4326 | DRM_DEBUG_KMS("[PLANE:%d] scaling with color key not allowed", |
818ed961 | 4327 | intel_plane->base.base.id); |
a1b2278e CK |
4328 | return -EINVAL; |
4329 | } | |
4330 | ||
4331 | /* Check src format */ | |
86adf9d7 ML |
4332 | switch (fb->pixel_format) { |
4333 | case DRM_FORMAT_RGB565: | |
4334 | case DRM_FORMAT_XBGR8888: | |
4335 | case DRM_FORMAT_XRGB8888: | |
4336 | case DRM_FORMAT_ABGR8888: | |
4337 | case DRM_FORMAT_ARGB8888: | |
4338 | case DRM_FORMAT_XRGB2101010: | |
4339 | case DRM_FORMAT_XBGR2101010: | |
4340 | case DRM_FORMAT_YUYV: | |
4341 | case DRM_FORMAT_YVYU: | |
4342 | case DRM_FORMAT_UYVY: | |
4343 | case DRM_FORMAT_VYUY: | |
4344 | break; | |
4345 | default: | |
4346 | DRM_DEBUG_KMS("[PLANE:%d] FB:%d unsupported scaling format 0x%x\n", | |
4347 | intel_plane->base.base.id, fb->base.id, fb->pixel_format); | |
4348 | return -EINVAL; | |
a1b2278e CK |
4349 | } |
4350 | ||
a1b2278e CK |
4351 | return 0; |
4352 | } | |
4353 | ||
e435d6e5 ML |
4354 | static void skylake_scaler_disable(struct intel_crtc *crtc) |
4355 | { | |
4356 | int i; | |
4357 | ||
4358 | for (i = 0; i < crtc->num_scalers; i++) | |
4359 | skl_detach_scaler(crtc, i); | |
4360 | } | |
4361 | ||
4362 | static void skylake_pfit_enable(struct intel_crtc *crtc) | |
bd2e244f JB |
4363 | { |
4364 | struct drm_device *dev = crtc->base.dev; | |
4365 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4366 | int pipe = crtc->pipe; | |
a1b2278e CK |
4367 | struct intel_crtc_scaler_state *scaler_state = |
4368 | &crtc->config->scaler_state; | |
4369 | ||
4370 | DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config); | |
4371 | ||
6e3c9717 | 4372 | if (crtc->config->pch_pfit.enabled) { |
a1b2278e CK |
4373 | int id; |
4374 | ||
4375 | if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) { | |
4376 | DRM_ERROR("Requesting pfit without getting a scaler first\n"); | |
4377 | return; | |
4378 | } | |
4379 | ||
4380 | id = scaler_state->scaler_id; | |
4381 | I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN | | |
4382 | PS_FILTER_MEDIUM | scaler_state->scalers[id].mode); | |
4383 | I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos); | |
4384 | I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size); | |
4385 | ||
4386 | DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id); | |
bd2e244f JB |
4387 | } |
4388 | } | |
4389 | ||
b074cec8 JB |
4390 | static void ironlake_pfit_enable(struct intel_crtc *crtc) |
4391 | { | |
4392 | struct drm_device *dev = crtc->base.dev; | |
4393 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4394 | int pipe = crtc->pipe; | |
4395 | ||
6e3c9717 | 4396 | if (crtc->config->pch_pfit.enabled) { |
b074cec8 JB |
4397 | /* Force use of hard-coded filter coefficients |
4398 | * as some pre-programmed values are broken, | |
4399 | * e.g. x201. | |
4400 | */ | |
4401 | if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) | |
4402 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 | | |
4403 | PF_PIPE_SEL_IVB(pipe)); | |
4404 | else | |
4405 | I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3); | |
6e3c9717 ACO |
4406 | I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos); |
4407 | I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size); | |
d4270e57 JB |
4408 | } |
4409 | } | |
4410 | ||
20bc8673 | 4411 | void hsw_enable_ips(struct intel_crtc *crtc) |
d77e4531 | 4412 | { |
cea165c3 VS |
4413 | struct drm_device *dev = crtc->base.dev; |
4414 | struct drm_i915_private *dev_priv = dev->dev_private; | |
d77e4531 | 4415 | |
6e3c9717 | 4416 | if (!crtc->config->ips_enabled) |
d77e4531 PZ |
4417 | return; |
4418 | ||
307e4498 ML |
4419 | /* |
4420 | * We can only enable IPS after we enable a plane and wait for a vblank | |
4421 | * This function is called from post_plane_update, which is run after | |
4422 | * a vblank wait. | |
4423 | */ | |
cea165c3 | 4424 | |
d77e4531 | 4425 | assert_plane_enabled(dev_priv, crtc->plane); |
cea165c3 | 4426 | if (IS_BROADWELL(dev)) { |
2a114cc1 BW |
4427 | mutex_lock(&dev_priv->rps.hw_lock); |
4428 | WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000)); | |
4429 | mutex_unlock(&dev_priv->rps.hw_lock); | |
4430 | /* Quoting Art Runyan: "its not safe to expect any particular | |
4431 | * value in IPS_CTL bit 31 after enabling IPS through the | |
e59150dc JB |
4432 | * mailbox." Moreover, the mailbox may return a bogus state, |
4433 | * so we need to just enable it and continue on. | |
2a114cc1 BW |
4434 | */ |
4435 | } else { | |
4436 | I915_WRITE(IPS_CTL, IPS_ENABLE); | |
4437 | /* The bit only becomes 1 in the next vblank, so this wait here | |
4438 | * is essentially intel_wait_for_vblank. If we don't have this | |
4439 | * and don't wait for vblanks until the end of crtc_enable, then | |
4440 | * the HW state readout code will complain that the expected | |
4441 | * IPS_CTL value is not the one we read. */ | |
4442 | if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50)) | |
4443 | DRM_ERROR("Timed out waiting for IPS enable\n"); | |
4444 | } | |
d77e4531 PZ |
4445 | } |
4446 | ||
20bc8673 | 4447 | void hsw_disable_ips(struct intel_crtc *crtc) |
d77e4531 PZ |
4448 | { |
4449 | struct drm_device *dev = crtc->base.dev; | |
4450 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4451 | ||
6e3c9717 | 4452 | if (!crtc->config->ips_enabled) |
d77e4531 PZ |
4453 | return; |
4454 | ||
4455 | assert_plane_enabled(dev_priv, crtc->plane); | |
23d0b130 | 4456 | if (IS_BROADWELL(dev)) { |
2a114cc1 BW |
4457 | mutex_lock(&dev_priv->rps.hw_lock); |
4458 | WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0)); | |
4459 | mutex_unlock(&dev_priv->rps.hw_lock); | |
23d0b130 BW |
4460 | /* wait for pcode to finish disabling IPS, which may take up to 42ms */ |
4461 | if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42)) | |
4462 | DRM_ERROR("Timed out waiting for IPS disable\n"); | |
e59150dc | 4463 | } else { |
2a114cc1 | 4464 | I915_WRITE(IPS_CTL, 0); |
e59150dc JB |
4465 | POSTING_READ(IPS_CTL); |
4466 | } | |
d77e4531 PZ |
4467 | |
4468 | /* We need to wait for a vblank before we can disable the plane. */ | |
4469 | intel_wait_for_vblank(dev, crtc->pipe); | |
4470 | } | |
4471 | ||
7cac945f | 4472 | static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc) |
d3eedb1a | 4473 | { |
7cac945f | 4474 | if (intel_crtc->overlay) { |
d3eedb1a VS |
4475 | struct drm_device *dev = intel_crtc->base.dev; |
4476 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4477 | ||
4478 | mutex_lock(&dev->struct_mutex); | |
4479 | dev_priv->mm.interruptible = false; | |
4480 | (void) intel_overlay_switch_off(intel_crtc->overlay); | |
4481 | dev_priv->mm.interruptible = true; | |
4482 | mutex_unlock(&dev->struct_mutex); | |
4483 | } | |
4484 | ||
4485 | /* Let userspace switch the overlay on again. In most cases userspace | |
4486 | * has to recompute where to put it anyway. | |
4487 | */ | |
4488 | } | |
4489 | ||
87d4300a ML |
4490 | /** |
4491 | * intel_post_enable_primary - Perform operations after enabling primary plane | |
4492 | * @crtc: the CRTC whose primary plane was just enabled | |
4493 | * | |
4494 | * Performs potentially sleeping operations that must be done after the primary | |
4495 | * plane is enabled, such as updating FBC and IPS. Note that this may be | |
4496 | * called due to an explicit primary plane update, or due to an implicit | |
4497 | * re-enable that is caused when a sprite plane is updated to no longer | |
4498 | * completely hide the primary plane. | |
4499 | */ | |
4500 | static void | |
4501 | intel_post_enable_primary(struct drm_crtc *crtc) | |
a5c4d7bc VS |
4502 | { |
4503 | struct drm_device *dev = crtc->dev; | |
87d4300a | 4504 | struct drm_i915_private *dev_priv = dev->dev_private; |
a5c4d7bc VS |
4505 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
4506 | int pipe = intel_crtc->pipe; | |
a5c4d7bc | 4507 | |
87d4300a ML |
4508 | /* |
4509 | * FIXME IPS should be fine as long as one plane is | |
4510 | * enabled, but in practice it seems to have problems | |
4511 | * when going from primary only to sprite only and vice | |
4512 | * versa. | |
4513 | */ | |
a5c4d7bc VS |
4514 | hsw_enable_ips(intel_crtc); |
4515 | ||
f99d7069 | 4516 | /* |
87d4300a ML |
4517 | * Gen2 reports pipe underruns whenever all planes are disabled. |
4518 | * So don't enable underrun reporting before at least some planes | |
4519 | * are enabled. | |
4520 | * FIXME: Need to fix the logic to work when we turn off all planes | |
4521 | * but leave the pipe running. | |
f99d7069 | 4522 | */ |
87d4300a ML |
4523 | if (IS_GEN2(dev)) |
4524 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); | |
4525 | ||
aca7b684 VS |
4526 | /* Underruns don't always raise interrupts, so check manually. */ |
4527 | intel_check_cpu_fifo_underruns(dev_priv); | |
4528 | intel_check_pch_fifo_underruns(dev_priv); | |
a5c4d7bc VS |
4529 | } |
4530 | ||
2622a081 | 4531 | /* FIXME move all this to pre_plane_update() with proper state tracking */ |
87d4300a ML |
4532 | static void |
4533 | intel_pre_disable_primary(struct drm_crtc *crtc) | |
a5c4d7bc VS |
4534 | { |
4535 | struct drm_device *dev = crtc->dev; | |
4536 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4537 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
4538 | int pipe = intel_crtc->pipe; | |
a5c4d7bc | 4539 | |
87d4300a ML |
4540 | /* |
4541 | * Gen2 reports pipe underruns whenever all planes are disabled. | |
4542 | * So diasble underrun reporting before all the planes get disabled. | |
4543 | * FIXME: Need to fix the logic to work when we turn off all planes | |
4544 | * but leave the pipe running. | |
4545 | */ | |
4546 | if (IS_GEN2(dev)) | |
4547 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false); | |
a5c4d7bc | 4548 | |
2622a081 VS |
4549 | /* |
4550 | * FIXME IPS should be fine as long as one plane is | |
4551 | * enabled, but in practice it seems to have problems | |
4552 | * when going from primary only to sprite only and vice | |
4553 | * versa. | |
4554 | */ | |
4555 | hsw_disable_ips(intel_crtc); | |
4556 | } | |
4557 | ||
4558 | /* FIXME get rid of this and use pre_plane_update */ | |
4559 | static void | |
4560 | intel_pre_disable_primary_noatomic(struct drm_crtc *crtc) | |
4561 | { | |
4562 | struct drm_device *dev = crtc->dev; | |
4563 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4564 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
4565 | int pipe = intel_crtc->pipe; | |
4566 | ||
4567 | intel_pre_disable_primary(crtc); | |
4568 | ||
87d4300a ML |
4569 | /* |
4570 | * Vblank time updates from the shadow to live plane control register | |
4571 | * are blocked if the memory self-refresh mode is active at that | |
4572 | * moment. So to make sure the plane gets truly disabled, disable | |
4573 | * first the self-refresh mode. The self-refresh enable bit in turn | |
4574 | * will be checked/applied by the HW only at the next frame start | |
4575 | * event which is after the vblank start event, so we need to have a | |
4576 | * wait-for-vblank between disabling the plane and the pipe. | |
4577 | */ | |
262cd2e1 | 4578 | if (HAS_GMCH_DISPLAY(dev)) { |
87d4300a | 4579 | intel_set_memory_cxsr(dev_priv, false); |
262cd2e1 VS |
4580 | dev_priv->wm.vlv.cxsr = false; |
4581 | intel_wait_for_vblank(dev, pipe); | |
4582 | } | |
87d4300a ML |
4583 | } |
4584 | ||
cd202f69 | 4585 | static void intel_post_plane_update(struct intel_crtc_state *old_crtc_state) |
ac21b225 | 4586 | { |
cd202f69 ML |
4587 | struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc); |
4588 | struct drm_atomic_state *old_state = old_crtc_state->base.state; | |
92826fcd ML |
4589 | struct intel_crtc_state *pipe_config = |
4590 | to_intel_crtc_state(crtc->base.state); | |
ac21b225 | 4591 | struct drm_device *dev = crtc->base.dev; |
cd202f69 ML |
4592 | struct drm_plane *primary = crtc->base.primary; |
4593 | struct drm_plane_state *old_pri_state = | |
4594 | drm_atomic_get_existing_plane_state(old_state, primary); | |
ac21b225 | 4595 | |
cd202f69 | 4596 | intel_frontbuffer_flip(dev, pipe_config->fb_bits); |
ac21b225 | 4597 | |
ab1d3a0e | 4598 | crtc->wm.cxsr_allowed = true; |
852eb00d | 4599 | |
caed361d | 4600 | if (pipe_config->update_wm_post && pipe_config->base.active) |
f015c551 VS |
4601 | intel_update_watermarks(&crtc->base); |
4602 | ||
cd202f69 ML |
4603 | if (old_pri_state) { |
4604 | struct intel_plane_state *primary_state = | |
4605 | to_intel_plane_state(primary->state); | |
4606 | struct intel_plane_state *old_primary_state = | |
4607 | to_intel_plane_state(old_pri_state); | |
4608 | ||
31ae71fc ML |
4609 | intel_fbc_post_update(crtc); |
4610 | ||
cd202f69 ML |
4611 | if (primary_state->visible && |
4612 | (needs_modeset(&pipe_config->base) || | |
4613 | !old_primary_state->visible)) | |
4614 | intel_post_enable_primary(&crtc->base); | |
4615 | } | |
ac21b225 ML |
4616 | } |
4617 | ||
5c74cd73 | 4618 | static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state) |
ac21b225 | 4619 | { |
5c74cd73 | 4620 | struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc); |
ac21b225 | 4621 | struct drm_device *dev = crtc->base.dev; |
eddfcbcd | 4622 | struct drm_i915_private *dev_priv = dev->dev_private; |
ab1d3a0e ML |
4623 | struct intel_crtc_state *pipe_config = |
4624 | to_intel_crtc_state(crtc->base.state); | |
5c74cd73 ML |
4625 | struct drm_atomic_state *old_state = old_crtc_state->base.state; |
4626 | struct drm_plane *primary = crtc->base.primary; | |
4627 | struct drm_plane_state *old_pri_state = | |
4628 | drm_atomic_get_existing_plane_state(old_state, primary); | |
4629 | bool modeset = needs_modeset(&pipe_config->base); | |
ac21b225 | 4630 | |
5c74cd73 ML |
4631 | if (old_pri_state) { |
4632 | struct intel_plane_state *primary_state = | |
4633 | to_intel_plane_state(primary->state); | |
4634 | struct intel_plane_state *old_primary_state = | |
4635 | to_intel_plane_state(old_pri_state); | |
4636 | ||
31ae71fc ML |
4637 | intel_fbc_pre_update(crtc); |
4638 | ||
5c74cd73 ML |
4639 | if (old_primary_state->visible && |
4640 | (modeset || !primary_state->visible)) | |
4641 | intel_pre_disable_primary(&crtc->base); | |
4642 | } | |
852eb00d | 4643 | |
ab1d3a0e | 4644 | if (pipe_config->disable_cxsr) { |
852eb00d | 4645 | crtc->wm.cxsr_allowed = false; |
2dfd178d | 4646 | |
2622a081 VS |
4647 | /* |
4648 | * Vblank time updates from the shadow to live plane control register | |
4649 | * are blocked if the memory self-refresh mode is active at that | |
4650 | * moment. So to make sure the plane gets truly disabled, disable | |
4651 | * first the self-refresh mode. The self-refresh enable bit in turn | |
4652 | * will be checked/applied by the HW only at the next frame start | |
4653 | * event which is after the vblank start event, so we need to have a | |
4654 | * wait-for-vblank between disabling the plane and the pipe. | |
4655 | */ | |
4656 | if (old_crtc_state->base.active) { | |
2dfd178d | 4657 | intel_set_memory_cxsr(dev_priv, false); |
2622a081 VS |
4658 | dev_priv->wm.vlv.cxsr = false; |
4659 | intel_wait_for_vblank(dev, crtc->pipe); | |
4660 | } | |
852eb00d | 4661 | } |
92826fcd | 4662 | |
ed4a6a7c MR |
4663 | /* |
4664 | * IVB workaround: must disable low power watermarks for at least | |
4665 | * one frame before enabling scaling. LP watermarks can be re-enabled | |
4666 | * when scaling is disabled. | |
4667 | * | |
4668 | * WaCxSRDisabledForSpriteScaling:ivb | |
4669 | */ | |
4670 | if (pipe_config->disable_lp_wm) { | |
4671 | ilk_disable_lp_wm(dev); | |
4672 | intel_wait_for_vblank(dev, crtc->pipe); | |
4673 | } | |
4674 | ||
4675 | /* | |
4676 | * If we're doing a modeset, we're done. No need to do any pre-vblank | |
4677 | * watermark programming here. | |
4678 | */ | |
4679 | if (needs_modeset(&pipe_config->base)) | |
4680 | return; | |
4681 | ||
4682 | /* | |
4683 | * For platforms that support atomic watermarks, program the | |
4684 | * 'intermediate' watermarks immediately. On pre-gen9 platforms, these | |
4685 | * will be the intermediate values that are safe for both pre- and | |
4686 | * post- vblank; when vblank happens, the 'active' values will be set | |
4687 | * to the final 'target' values and we'll do this again to get the | |
4688 | * optimal watermarks. For gen9+ platforms, the values we program here | |
4689 | * will be the final target values which will get automatically latched | |
4690 | * at vblank time; no further programming will be necessary. | |
4691 | * | |
4692 | * If a platform hasn't been transitioned to atomic watermarks yet, | |
4693 | * we'll continue to update watermarks the old way, if flags tell | |
4694 | * us to. | |
4695 | */ | |
4696 | if (dev_priv->display.initial_watermarks != NULL) | |
4697 | dev_priv->display.initial_watermarks(pipe_config); | |
caed361d | 4698 | else if (pipe_config->update_wm_pre) |
92826fcd | 4699 | intel_update_watermarks(&crtc->base); |
ac21b225 ML |
4700 | } |
4701 | ||
d032ffa0 | 4702 | static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask) |
87d4300a ML |
4703 | { |
4704 | struct drm_device *dev = crtc->dev; | |
4705 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
d032ffa0 | 4706 | struct drm_plane *p; |
87d4300a ML |
4707 | int pipe = intel_crtc->pipe; |
4708 | ||
7cac945f | 4709 | intel_crtc_dpms_overlay_disable(intel_crtc); |
27321ae8 | 4710 | |
d032ffa0 ML |
4711 | drm_for_each_plane_mask(p, dev, plane_mask) |
4712 | to_intel_plane(p)->disable_plane(p, crtc); | |
f98551ae | 4713 | |
f99d7069 DV |
4714 | /* |
4715 | * FIXME: Once we grow proper nuclear flip support out of this we need | |
4716 | * to compute the mask of flip planes precisely. For the time being | |
4717 | * consider this a flip to a NULL plane. | |
4718 | */ | |
4719 | intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe)); | |
a5c4d7bc VS |
4720 | } |
4721 | ||
f67a559d JB |
4722 | static void ironlake_crtc_enable(struct drm_crtc *crtc) |
4723 | { | |
4724 | struct drm_device *dev = crtc->dev; | |
4725 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4726 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ef9c3aee | 4727 | struct intel_encoder *encoder; |
f67a559d | 4728 | int pipe = intel_crtc->pipe; |
b95c5321 ML |
4729 | struct intel_crtc_state *pipe_config = |
4730 | to_intel_crtc_state(crtc->state); | |
f67a559d | 4731 | |
53d9f4e9 | 4732 | if (WARN_ON(intel_crtc->active)) |
f67a559d JB |
4733 | return; |
4734 | ||
81b088ca VS |
4735 | if (intel_crtc->config->has_pch_encoder) |
4736 | intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false); | |
4737 | ||
6e3c9717 | 4738 | if (intel_crtc->config->has_pch_encoder) |
b14b1055 DV |
4739 | intel_prepare_shared_dpll(intel_crtc); |
4740 | ||
6e3c9717 | 4741 | if (intel_crtc->config->has_dp_encoder) |
fe3cd48d | 4742 | intel_dp_set_m_n(intel_crtc, M1_N1); |
29407aab DV |
4743 | |
4744 | intel_set_pipe_timings(intel_crtc); | |
bc58be60 | 4745 | intel_set_pipe_src_size(intel_crtc); |
29407aab | 4746 | |
6e3c9717 | 4747 | if (intel_crtc->config->has_pch_encoder) { |
29407aab | 4748 | intel_cpu_transcoder_set_m_n(intel_crtc, |
6e3c9717 | 4749 | &intel_crtc->config->fdi_m_n, NULL); |
29407aab DV |
4750 | } |
4751 | ||
4752 | ironlake_set_pipeconf(crtc); | |
4753 | ||
f67a559d | 4754 | intel_crtc->active = true; |
8664281b | 4755 | |
a72e4c9f | 4756 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
8664281b | 4757 | |
f6736a1a | 4758 | for_each_encoder_on_crtc(dev, crtc, encoder) |
952735ee DV |
4759 | if (encoder->pre_enable) |
4760 | encoder->pre_enable(encoder); | |
f67a559d | 4761 | |
6e3c9717 | 4762 | if (intel_crtc->config->has_pch_encoder) { |
fff367c7 DV |
4763 | /* Note: FDI PLL enabling _must_ be done before we enable the |
4764 | * cpu pipes, hence this is separate from all the other fdi/pch | |
4765 | * enabling. */ | |
88cefb6c | 4766 | ironlake_fdi_pll_enable(intel_crtc); |
46b6f814 DV |
4767 | } else { |
4768 | assert_fdi_tx_disabled(dev_priv, pipe); | |
4769 | assert_fdi_rx_disabled(dev_priv, pipe); | |
4770 | } | |
f67a559d | 4771 | |
b074cec8 | 4772 | ironlake_pfit_enable(intel_crtc); |
f67a559d | 4773 | |
9c54c0dd JB |
4774 | /* |
4775 | * On ILK+ LUT must be loaded before the pipe is running but with | |
4776 | * clocks enabled | |
4777 | */ | |
b95c5321 | 4778 | intel_color_load_luts(&pipe_config->base); |
9c54c0dd | 4779 | |
1d5bf5d9 ID |
4780 | if (dev_priv->display.initial_watermarks != NULL) |
4781 | dev_priv->display.initial_watermarks(intel_crtc->config); | |
e1fdc473 | 4782 | intel_enable_pipe(intel_crtc); |
f67a559d | 4783 | |
6e3c9717 | 4784 | if (intel_crtc->config->has_pch_encoder) |
f67a559d | 4785 | ironlake_pch_enable(crtc); |
c98e9dcf | 4786 | |
f9b61ff6 DV |
4787 | assert_vblank_disabled(crtc); |
4788 | drm_crtc_vblank_on(crtc); | |
4789 | ||
fa5c73b1 DV |
4790 | for_each_encoder_on_crtc(dev, crtc, encoder) |
4791 | encoder->enable(encoder); | |
61b77ddd DV |
4792 | |
4793 | if (HAS_PCH_CPT(dev)) | |
a1520318 | 4794 | cpt_verify_modeset(dev, intel_crtc->pipe); |
37ca8d4c VS |
4795 | |
4796 | /* Must wait for vblank to avoid spurious PCH FIFO underruns */ | |
4797 | if (intel_crtc->config->has_pch_encoder) | |
4798 | intel_wait_for_vblank(dev, pipe); | |
4799 | intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true); | |
6be4a607 JB |
4800 | } |
4801 | ||
42db64ef PZ |
4802 | /* IPS only exists on ULT machines and is tied to pipe A. */ |
4803 | static bool hsw_crtc_supports_ips(struct intel_crtc *crtc) | |
4804 | { | |
f5adf94e | 4805 | return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A; |
42db64ef PZ |
4806 | } |
4807 | ||
4f771f10 PZ |
4808 | static void haswell_crtc_enable(struct drm_crtc *crtc) |
4809 | { | |
4810 | struct drm_device *dev = crtc->dev; | |
4811 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4812 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
4813 | struct intel_encoder *encoder; | |
99d736a2 | 4814 | int pipe = intel_crtc->pipe, hsw_workaround_pipe; |
4d1de975 | 4815 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
99d736a2 ML |
4816 | struct intel_crtc_state *pipe_config = |
4817 | to_intel_crtc_state(crtc->state); | |
4f771f10 | 4818 | |
53d9f4e9 | 4819 | if (WARN_ON(intel_crtc->active)) |
4f771f10 PZ |
4820 | return; |
4821 | ||
81b088ca VS |
4822 | if (intel_crtc->config->has_pch_encoder) |
4823 | intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A, | |
4824 | false); | |
4825 | ||
8106ddbd | 4826 | if (intel_crtc->config->shared_dpll) |
df8ad70c DV |
4827 | intel_enable_shared_dpll(intel_crtc); |
4828 | ||
6e3c9717 | 4829 | if (intel_crtc->config->has_dp_encoder) |
fe3cd48d | 4830 | intel_dp_set_m_n(intel_crtc, M1_N1); |
229fca97 | 4831 | |
4d1de975 JN |
4832 | if (!intel_crtc->config->has_dsi_encoder) |
4833 | intel_set_pipe_timings(intel_crtc); | |
4834 | ||
bc58be60 | 4835 | intel_set_pipe_src_size(intel_crtc); |
229fca97 | 4836 | |
4d1de975 JN |
4837 | if (cpu_transcoder != TRANSCODER_EDP && |
4838 | !transcoder_is_dsi(cpu_transcoder)) { | |
4839 | I915_WRITE(PIPE_MULT(cpu_transcoder), | |
6e3c9717 | 4840 | intel_crtc->config->pixel_multiplier - 1); |
ebb69c95 CT |
4841 | } |
4842 | ||
6e3c9717 | 4843 | if (intel_crtc->config->has_pch_encoder) { |
229fca97 | 4844 | intel_cpu_transcoder_set_m_n(intel_crtc, |
6e3c9717 | 4845 | &intel_crtc->config->fdi_m_n, NULL); |
229fca97 DV |
4846 | } |
4847 | ||
4d1de975 JN |
4848 | if (!intel_crtc->config->has_dsi_encoder) |
4849 | haswell_set_pipeconf(crtc); | |
4850 | ||
391bf048 | 4851 | haswell_set_pipemisc(crtc); |
229fca97 | 4852 | |
b95c5321 | 4853 | intel_color_set_csc(&pipe_config->base); |
229fca97 | 4854 | |
4f771f10 | 4855 | intel_crtc->active = true; |
8664281b | 4856 | |
6b698516 DV |
4857 | if (intel_crtc->config->has_pch_encoder) |
4858 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false); | |
4859 | else | |
4860 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); | |
4861 | ||
7d4aefd0 | 4862 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
4f771f10 PZ |
4863 | if (encoder->pre_enable) |
4864 | encoder->pre_enable(encoder); | |
7d4aefd0 | 4865 | } |
4f771f10 | 4866 | |
d2d65408 | 4867 | if (intel_crtc->config->has_pch_encoder) |
4fe9467d | 4868 | dev_priv->display.fdi_link_train(crtc); |
4fe9467d | 4869 | |
a65347ba | 4870 | if (!intel_crtc->config->has_dsi_encoder) |
7d4aefd0 | 4871 | intel_ddi_enable_pipe_clock(intel_crtc); |
4f771f10 | 4872 | |
1c132b44 | 4873 | if (INTEL_INFO(dev)->gen >= 9) |
e435d6e5 | 4874 | skylake_pfit_enable(intel_crtc); |
ff6d9f55 | 4875 | else |
1c132b44 | 4876 | ironlake_pfit_enable(intel_crtc); |
4f771f10 PZ |
4877 | |
4878 | /* | |
4879 | * On ILK+ LUT must be loaded before the pipe is running but with | |
4880 | * clocks enabled | |
4881 | */ | |
b95c5321 | 4882 | intel_color_load_luts(&pipe_config->base); |
4f771f10 | 4883 | |
1f544388 | 4884 | intel_ddi_set_pipe_settings(crtc); |
a65347ba | 4885 | if (!intel_crtc->config->has_dsi_encoder) |
7d4aefd0 | 4886 | intel_ddi_enable_transcoder_func(crtc); |
4f771f10 | 4887 | |
1d5bf5d9 ID |
4888 | if (dev_priv->display.initial_watermarks != NULL) |
4889 | dev_priv->display.initial_watermarks(pipe_config); | |
4890 | else | |
4891 | intel_update_watermarks(crtc); | |
4d1de975 JN |
4892 | |
4893 | /* XXX: Do the pipe assertions at the right place for BXT DSI. */ | |
4894 | if (!intel_crtc->config->has_dsi_encoder) | |
4895 | intel_enable_pipe(intel_crtc); | |
42db64ef | 4896 | |
6e3c9717 | 4897 | if (intel_crtc->config->has_pch_encoder) |
1507e5bd | 4898 | lpt_pch_enable(crtc); |
4f771f10 | 4899 | |
a65347ba | 4900 | if (intel_crtc->config->dp_encoder_is_mst) |
0e32b39c DA |
4901 | intel_ddi_set_vc_payload_alloc(crtc, true); |
4902 | ||
f9b61ff6 DV |
4903 | assert_vblank_disabled(crtc); |
4904 | drm_crtc_vblank_on(crtc); | |
4905 | ||
8807e55b | 4906 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
4f771f10 | 4907 | encoder->enable(encoder); |
8807e55b JN |
4908 | intel_opregion_notify_encoder(encoder, true); |
4909 | } | |
4f771f10 | 4910 | |
6b698516 DV |
4911 | if (intel_crtc->config->has_pch_encoder) { |
4912 | intel_wait_for_vblank(dev, pipe); | |
4913 | intel_wait_for_vblank(dev, pipe); | |
4914 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); | |
d2d65408 VS |
4915 | intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A, |
4916 | true); | |
6b698516 | 4917 | } |
d2d65408 | 4918 | |
e4916946 PZ |
4919 | /* If we change the relative order between pipe/planes enabling, we need |
4920 | * to change the workaround. */ | |
99d736a2 ML |
4921 | hsw_workaround_pipe = pipe_config->hsw_workaround_pipe; |
4922 | if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) { | |
4923 | intel_wait_for_vblank(dev, hsw_workaround_pipe); | |
4924 | intel_wait_for_vblank(dev, hsw_workaround_pipe); | |
4925 | } | |
4f771f10 PZ |
4926 | } |
4927 | ||
bfd16b2a | 4928 | static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force) |
3f8dce3a DV |
4929 | { |
4930 | struct drm_device *dev = crtc->base.dev; | |
4931 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4932 | int pipe = crtc->pipe; | |
4933 | ||
4934 | /* To avoid upsetting the power well on haswell only disable the pfit if | |
4935 | * it's in use. The hw state code will make sure we get this right. */ | |
bfd16b2a | 4936 | if (force || crtc->config->pch_pfit.enabled) { |
3f8dce3a DV |
4937 | I915_WRITE(PF_CTL(pipe), 0); |
4938 | I915_WRITE(PF_WIN_POS(pipe), 0); | |
4939 | I915_WRITE(PF_WIN_SZ(pipe), 0); | |
4940 | } | |
4941 | } | |
4942 | ||
6be4a607 JB |
4943 | static void ironlake_crtc_disable(struct drm_crtc *crtc) |
4944 | { | |
4945 | struct drm_device *dev = crtc->dev; | |
4946 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4947 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ef9c3aee | 4948 | struct intel_encoder *encoder; |
6be4a607 | 4949 | int pipe = intel_crtc->pipe; |
b52eb4dc | 4950 | |
37ca8d4c VS |
4951 | if (intel_crtc->config->has_pch_encoder) |
4952 | intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false); | |
4953 | ||
ea9d758d DV |
4954 | for_each_encoder_on_crtc(dev, crtc, encoder) |
4955 | encoder->disable(encoder); | |
4956 | ||
f9b61ff6 DV |
4957 | drm_crtc_vblank_off(crtc); |
4958 | assert_vblank_disabled(crtc); | |
4959 | ||
3860b2ec VS |
4960 | /* |
4961 | * Sometimes spurious CPU pipe underruns happen when the | |
4962 | * pipe is already disabled, but FDI RX/TX is still enabled. | |
4963 | * Happens at least with VGA+HDMI cloning. Suppress them. | |
4964 | */ | |
4965 | if (intel_crtc->config->has_pch_encoder) | |
4966 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false); | |
4967 | ||
575f7ab7 | 4968 | intel_disable_pipe(intel_crtc); |
32f9d658 | 4969 | |
bfd16b2a | 4970 | ironlake_pfit_disable(intel_crtc, false); |
2c07245f | 4971 | |
3860b2ec | 4972 | if (intel_crtc->config->has_pch_encoder) { |
5a74f70a | 4973 | ironlake_fdi_disable(crtc); |
3860b2ec VS |
4974 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
4975 | } | |
5a74f70a | 4976 | |
bf49ec8c DV |
4977 | for_each_encoder_on_crtc(dev, crtc, encoder) |
4978 | if (encoder->post_disable) | |
4979 | encoder->post_disable(encoder); | |
2c07245f | 4980 | |
6e3c9717 | 4981 | if (intel_crtc->config->has_pch_encoder) { |
d925c59a | 4982 | ironlake_disable_pch_transcoder(dev_priv, pipe); |
6be4a607 | 4983 | |
d925c59a | 4984 | if (HAS_PCH_CPT(dev)) { |
f0f59a00 VS |
4985 | i915_reg_t reg; |
4986 | u32 temp; | |
4987 | ||
d925c59a DV |
4988 | /* disable TRANS_DP_CTL */ |
4989 | reg = TRANS_DP_CTL(pipe); | |
4990 | temp = I915_READ(reg); | |
4991 | temp &= ~(TRANS_DP_OUTPUT_ENABLE | | |
4992 | TRANS_DP_PORT_SEL_MASK); | |
4993 | temp |= TRANS_DP_PORT_SEL_NONE; | |
4994 | I915_WRITE(reg, temp); | |
4995 | ||
4996 | /* disable DPLL_SEL */ | |
4997 | temp = I915_READ(PCH_DPLL_SEL); | |
11887397 | 4998 | temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe)); |
d925c59a | 4999 | I915_WRITE(PCH_DPLL_SEL, temp); |
9db4a9c7 | 5000 | } |
e3421a18 | 5001 | |
d925c59a DV |
5002 | ironlake_fdi_pll_disable(intel_crtc); |
5003 | } | |
81b088ca VS |
5004 | |
5005 | intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true); | |
6be4a607 | 5006 | } |
1b3c7a47 | 5007 | |
4f771f10 | 5008 | static void haswell_crtc_disable(struct drm_crtc *crtc) |
ee7b9f93 | 5009 | { |
4f771f10 PZ |
5010 | struct drm_device *dev = crtc->dev; |
5011 | struct drm_i915_private *dev_priv = dev->dev_private; | |
ee7b9f93 | 5012 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
4f771f10 | 5013 | struct intel_encoder *encoder; |
6e3c9717 | 5014 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
ee7b9f93 | 5015 | |
d2d65408 VS |
5016 | if (intel_crtc->config->has_pch_encoder) |
5017 | intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A, | |
5018 | false); | |
5019 | ||
8807e55b JN |
5020 | for_each_encoder_on_crtc(dev, crtc, encoder) { |
5021 | intel_opregion_notify_encoder(encoder, false); | |
4f771f10 | 5022 | encoder->disable(encoder); |
8807e55b | 5023 | } |
4f771f10 | 5024 | |
f9b61ff6 DV |
5025 | drm_crtc_vblank_off(crtc); |
5026 | assert_vblank_disabled(crtc); | |
5027 | ||
4d1de975 JN |
5028 | /* XXX: Do the pipe assertions at the right place for BXT DSI. */ |
5029 | if (!intel_crtc->config->has_dsi_encoder) | |
5030 | intel_disable_pipe(intel_crtc); | |
4f771f10 | 5031 | |
6e3c9717 | 5032 | if (intel_crtc->config->dp_encoder_is_mst) |
a4bf214f VS |
5033 | intel_ddi_set_vc_payload_alloc(crtc, false); |
5034 | ||
a65347ba | 5035 | if (!intel_crtc->config->has_dsi_encoder) |
7d4aefd0 | 5036 | intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder); |
4f771f10 | 5037 | |
1c132b44 | 5038 | if (INTEL_INFO(dev)->gen >= 9) |
e435d6e5 | 5039 | skylake_scaler_disable(intel_crtc); |
ff6d9f55 | 5040 | else |
bfd16b2a | 5041 | ironlake_pfit_disable(intel_crtc, false); |
4f771f10 | 5042 | |
a65347ba | 5043 | if (!intel_crtc->config->has_dsi_encoder) |
7d4aefd0 | 5044 | intel_ddi_disable_pipe_clock(intel_crtc); |
4f771f10 | 5045 | |
97b040aa ID |
5046 | for_each_encoder_on_crtc(dev, crtc, encoder) |
5047 | if (encoder->post_disable) | |
5048 | encoder->post_disable(encoder); | |
81b088ca | 5049 | |
92966a37 VS |
5050 | if (intel_crtc->config->has_pch_encoder) { |
5051 | lpt_disable_pch_transcoder(dev_priv); | |
503a74e9 | 5052 | lpt_disable_iclkip(dev_priv); |
92966a37 VS |
5053 | intel_ddi_fdi_disable(crtc); |
5054 | ||
81b088ca VS |
5055 | intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A, |
5056 | true); | |
92966a37 | 5057 | } |
4f771f10 PZ |
5058 | } |
5059 | ||
2dd24552 JB |
5060 | static void i9xx_pfit_enable(struct intel_crtc *crtc) |
5061 | { | |
5062 | struct drm_device *dev = crtc->base.dev; | |
5063 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6e3c9717 | 5064 | struct intel_crtc_state *pipe_config = crtc->config; |
2dd24552 | 5065 | |
681a8504 | 5066 | if (!pipe_config->gmch_pfit.control) |
2dd24552 JB |
5067 | return; |
5068 | ||
2dd24552 | 5069 | /* |
c0b03411 DV |
5070 | * The panel fitter should only be adjusted whilst the pipe is disabled, |
5071 | * according to register description and PRM. | |
2dd24552 | 5072 | */ |
c0b03411 DV |
5073 | WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE); |
5074 | assert_pipe_disabled(dev_priv, crtc->pipe); | |
2dd24552 | 5075 | |
b074cec8 JB |
5076 | I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios); |
5077 | I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control); | |
5a80c45c DV |
5078 | |
5079 | /* Border color in case we don't scale up to the full screen. Black by | |
5080 | * default, change to something else for debugging. */ | |
5081 | I915_WRITE(BCLRPAT(crtc->pipe), 0); | |
2dd24552 JB |
5082 | } |
5083 | ||
d05410f9 DA |
5084 | static enum intel_display_power_domain port_to_power_domain(enum port port) |
5085 | { | |
5086 | switch (port) { | |
5087 | case PORT_A: | |
6331a704 | 5088 | return POWER_DOMAIN_PORT_DDI_A_LANES; |
d05410f9 | 5089 | case PORT_B: |
6331a704 | 5090 | return POWER_DOMAIN_PORT_DDI_B_LANES; |
d05410f9 | 5091 | case PORT_C: |
6331a704 | 5092 | return POWER_DOMAIN_PORT_DDI_C_LANES; |
d05410f9 | 5093 | case PORT_D: |
6331a704 | 5094 | return POWER_DOMAIN_PORT_DDI_D_LANES; |
d8e19f99 | 5095 | case PORT_E: |
6331a704 | 5096 | return POWER_DOMAIN_PORT_DDI_E_LANES; |
d05410f9 | 5097 | default: |
b9fec167 | 5098 | MISSING_CASE(port); |
d05410f9 DA |
5099 | return POWER_DOMAIN_PORT_OTHER; |
5100 | } | |
5101 | } | |
5102 | ||
25f78f58 VS |
5103 | static enum intel_display_power_domain port_to_aux_power_domain(enum port port) |
5104 | { | |
5105 | switch (port) { | |
5106 | case PORT_A: | |
5107 | return POWER_DOMAIN_AUX_A; | |
5108 | case PORT_B: | |
5109 | return POWER_DOMAIN_AUX_B; | |
5110 | case PORT_C: | |
5111 | return POWER_DOMAIN_AUX_C; | |
5112 | case PORT_D: | |
5113 | return POWER_DOMAIN_AUX_D; | |
5114 | case PORT_E: | |
5115 | /* FIXME: Check VBT for actual wiring of PORT E */ | |
5116 | return POWER_DOMAIN_AUX_D; | |
5117 | default: | |
b9fec167 | 5118 | MISSING_CASE(port); |
25f78f58 VS |
5119 | return POWER_DOMAIN_AUX_A; |
5120 | } | |
5121 | } | |
5122 | ||
319be8ae ID |
5123 | enum intel_display_power_domain |
5124 | intel_display_port_power_domain(struct intel_encoder *intel_encoder) | |
5125 | { | |
5126 | struct drm_device *dev = intel_encoder->base.dev; | |
5127 | struct intel_digital_port *intel_dig_port; | |
5128 | ||
5129 | switch (intel_encoder->type) { | |
5130 | case INTEL_OUTPUT_UNKNOWN: | |
5131 | /* Only DDI platforms should ever use this output type */ | |
5132 | WARN_ON_ONCE(!HAS_DDI(dev)); | |
5133 | case INTEL_OUTPUT_DISPLAYPORT: | |
5134 | case INTEL_OUTPUT_HDMI: | |
5135 | case INTEL_OUTPUT_EDP: | |
5136 | intel_dig_port = enc_to_dig_port(&intel_encoder->base); | |
d05410f9 | 5137 | return port_to_power_domain(intel_dig_port->port); |
0e32b39c DA |
5138 | case INTEL_OUTPUT_DP_MST: |
5139 | intel_dig_port = enc_to_mst(&intel_encoder->base)->primary; | |
5140 | return port_to_power_domain(intel_dig_port->port); | |
319be8ae ID |
5141 | case INTEL_OUTPUT_ANALOG: |
5142 | return POWER_DOMAIN_PORT_CRT; | |
5143 | case INTEL_OUTPUT_DSI: | |
5144 | return POWER_DOMAIN_PORT_DSI; | |
5145 | default: | |
5146 | return POWER_DOMAIN_PORT_OTHER; | |
5147 | } | |
5148 | } | |
5149 | ||
25f78f58 VS |
5150 | enum intel_display_power_domain |
5151 | intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder) | |
5152 | { | |
5153 | struct drm_device *dev = intel_encoder->base.dev; | |
5154 | struct intel_digital_port *intel_dig_port; | |
5155 | ||
5156 | switch (intel_encoder->type) { | |
5157 | case INTEL_OUTPUT_UNKNOWN: | |
651174a4 ID |
5158 | case INTEL_OUTPUT_HDMI: |
5159 | /* | |
5160 | * Only DDI platforms should ever use these output types. | |
5161 | * We can get here after the HDMI detect code has already set | |
5162 | * the type of the shared encoder. Since we can't be sure | |
5163 | * what's the status of the given connectors, play safe and | |
5164 | * run the DP detection too. | |
5165 | */ | |
25f78f58 VS |
5166 | WARN_ON_ONCE(!HAS_DDI(dev)); |
5167 | case INTEL_OUTPUT_DISPLAYPORT: | |
5168 | case INTEL_OUTPUT_EDP: | |
5169 | intel_dig_port = enc_to_dig_port(&intel_encoder->base); | |
5170 | return port_to_aux_power_domain(intel_dig_port->port); | |
5171 | case INTEL_OUTPUT_DP_MST: | |
5172 | intel_dig_port = enc_to_mst(&intel_encoder->base)->primary; | |
5173 | return port_to_aux_power_domain(intel_dig_port->port); | |
5174 | default: | |
b9fec167 | 5175 | MISSING_CASE(intel_encoder->type); |
25f78f58 VS |
5176 | return POWER_DOMAIN_AUX_A; |
5177 | } | |
5178 | } | |
5179 | ||
74bff5f9 ML |
5180 | static unsigned long get_crtc_power_domains(struct drm_crtc *crtc, |
5181 | struct intel_crtc_state *crtc_state) | |
77d22dca | 5182 | { |
319be8ae | 5183 | struct drm_device *dev = crtc->dev; |
74bff5f9 | 5184 | struct drm_encoder *encoder; |
319be8ae ID |
5185 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
5186 | enum pipe pipe = intel_crtc->pipe; | |
77d22dca | 5187 | unsigned long mask; |
74bff5f9 | 5188 | enum transcoder transcoder = crtc_state->cpu_transcoder; |
77d22dca | 5189 | |
74bff5f9 | 5190 | if (!crtc_state->base.active) |
292b990e ML |
5191 | return 0; |
5192 | ||
77d22dca ID |
5193 | mask = BIT(POWER_DOMAIN_PIPE(pipe)); |
5194 | mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder)); | |
74bff5f9 ML |
5195 | if (crtc_state->pch_pfit.enabled || |
5196 | crtc_state->pch_pfit.force_thru) | |
77d22dca ID |
5197 | mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe)); |
5198 | ||
74bff5f9 ML |
5199 | drm_for_each_encoder_mask(encoder, dev, crtc_state->base.encoder_mask) { |
5200 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); | |
5201 | ||
319be8ae | 5202 | mask |= BIT(intel_display_port_power_domain(intel_encoder)); |
74bff5f9 | 5203 | } |
319be8ae | 5204 | |
15e7ec29 ML |
5205 | if (crtc_state->shared_dpll) |
5206 | mask |= BIT(POWER_DOMAIN_PLLS); | |
5207 | ||
77d22dca ID |
5208 | return mask; |
5209 | } | |
5210 | ||
74bff5f9 ML |
5211 | static unsigned long |
5212 | modeset_get_crtc_power_domains(struct drm_crtc *crtc, | |
5213 | struct intel_crtc_state *crtc_state) | |
77d22dca | 5214 | { |
292b990e ML |
5215 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
5216 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
5217 | enum intel_display_power_domain domain; | |
5218 | unsigned long domains, new_domains, old_domains; | |
77d22dca | 5219 | |
292b990e | 5220 | old_domains = intel_crtc->enabled_power_domains; |
74bff5f9 ML |
5221 | intel_crtc->enabled_power_domains = new_domains = |
5222 | get_crtc_power_domains(crtc, crtc_state); | |
77d22dca | 5223 | |
292b990e ML |
5224 | domains = new_domains & ~old_domains; |
5225 | ||
5226 | for_each_power_domain(domain, domains) | |
5227 | intel_display_power_get(dev_priv, domain); | |
5228 | ||
5229 | return old_domains & ~new_domains; | |
5230 | } | |
5231 | ||
5232 | static void modeset_put_power_domains(struct drm_i915_private *dev_priv, | |
5233 | unsigned long domains) | |
5234 | { | |
5235 | enum intel_display_power_domain domain; | |
5236 | ||
5237 | for_each_power_domain(domain, domains) | |
5238 | intel_display_power_put(dev_priv, domain); | |
5239 | } | |
77d22dca | 5240 | |
adafdc6f MK |
5241 | static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv) |
5242 | { | |
5243 | int max_cdclk_freq = dev_priv->max_cdclk_freq; | |
5244 | ||
5245 | if (INTEL_INFO(dev_priv)->gen >= 9 || | |
5246 | IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) | |
5247 | return max_cdclk_freq; | |
5248 | else if (IS_CHERRYVIEW(dev_priv)) | |
5249 | return max_cdclk_freq*95/100; | |
5250 | else if (INTEL_INFO(dev_priv)->gen < 4) | |
5251 | return 2*max_cdclk_freq*90/100; | |
5252 | else | |
5253 | return max_cdclk_freq*90/100; | |
5254 | } | |
5255 | ||
560a7ae4 DL |
5256 | static void intel_update_max_cdclk(struct drm_device *dev) |
5257 | { | |
5258 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5259 | ||
ef11bdb3 | 5260 | if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) { |
560a7ae4 DL |
5261 | u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK; |
5262 | ||
5263 | if (limit == SKL_DFSM_CDCLK_LIMIT_675) | |
5264 | dev_priv->max_cdclk_freq = 675000; | |
5265 | else if (limit == SKL_DFSM_CDCLK_LIMIT_540) | |
5266 | dev_priv->max_cdclk_freq = 540000; | |
5267 | else if (limit == SKL_DFSM_CDCLK_LIMIT_450) | |
5268 | dev_priv->max_cdclk_freq = 450000; | |
5269 | else | |
5270 | dev_priv->max_cdclk_freq = 337500; | |
5271 | } else if (IS_BROADWELL(dev)) { | |
5272 | /* | |
5273 | * FIXME with extra cooling we can allow | |
5274 | * 540 MHz for ULX and 675 Mhz for ULT. | |
5275 | * How can we know if extra cooling is | |
5276 | * available? PCI ID, VTB, something else? | |
5277 | */ | |
5278 | if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT) | |
5279 | dev_priv->max_cdclk_freq = 450000; | |
5280 | else if (IS_BDW_ULX(dev)) | |
5281 | dev_priv->max_cdclk_freq = 450000; | |
5282 | else if (IS_BDW_ULT(dev)) | |
5283 | dev_priv->max_cdclk_freq = 540000; | |
5284 | else | |
5285 | dev_priv->max_cdclk_freq = 675000; | |
0904deaf MK |
5286 | } else if (IS_CHERRYVIEW(dev)) { |
5287 | dev_priv->max_cdclk_freq = 320000; | |
560a7ae4 DL |
5288 | } else if (IS_VALLEYVIEW(dev)) { |
5289 | dev_priv->max_cdclk_freq = 400000; | |
5290 | } else { | |
5291 | /* otherwise assume cdclk is fixed */ | |
5292 | dev_priv->max_cdclk_freq = dev_priv->cdclk_freq; | |
5293 | } | |
5294 | ||
adafdc6f MK |
5295 | dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv); |
5296 | ||
560a7ae4 DL |
5297 | DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n", |
5298 | dev_priv->max_cdclk_freq); | |
adafdc6f MK |
5299 | |
5300 | DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n", | |
5301 | dev_priv->max_dotclk_freq); | |
560a7ae4 DL |
5302 | } |
5303 | ||
5304 | static void intel_update_cdclk(struct drm_device *dev) | |
5305 | { | |
5306 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5307 | ||
5308 | dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev); | |
5309 | DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n", | |
5310 | dev_priv->cdclk_freq); | |
5311 | ||
5312 | /* | |
5313 | * Program the gmbus_freq based on the cdclk frequency. | |
5314 | * BSpec erroneously claims we should aim for 4MHz, but | |
5315 | * in fact 1MHz is the correct frequency. | |
5316 | */ | |
666a4537 | 5317 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
560a7ae4 DL |
5318 | /* |
5319 | * Program the gmbus_freq based on the cdclk frequency. | |
5320 | * BSpec erroneously claims we should aim for 4MHz, but | |
5321 | * in fact 1MHz is the correct frequency. | |
5322 | */ | |
5323 | I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000)); | |
5324 | } | |
5325 | ||
5326 | if (dev_priv->max_cdclk_freq == 0) | |
5327 | intel_update_max_cdclk(dev); | |
5328 | } | |
5329 | ||
70d0c574 | 5330 | static void broxton_set_cdclk(struct drm_device *dev, int frequency) |
f8437dd1 VK |
5331 | { |
5332 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5333 | uint32_t divider; | |
5334 | uint32_t ratio; | |
5335 | uint32_t current_freq; | |
5336 | int ret; | |
5337 | ||
5338 | /* frequency = 19.2MHz * ratio / 2 / div{1,1.5,2,4} */ | |
5339 | switch (frequency) { | |
5340 | case 144000: | |
5341 | divider = BXT_CDCLK_CD2X_DIV_SEL_4; | |
5342 | ratio = BXT_DE_PLL_RATIO(60); | |
5343 | break; | |
5344 | case 288000: | |
5345 | divider = BXT_CDCLK_CD2X_DIV_SEL_2; | |
5346 | ratio = BXT_DE_PLL_RATIO(60); | |
5347 | break; | |
5348 | case 384000: | |
5349 | divider = BXT_CDCLK_CD2X_DIV_SEL_1_5; | |
5350 | ratio = BXT_DE_PLL_RATIO(60); | |
5351 | break; | |
5352 | case 576000: | |
5353 | divider = BXT_CDCLK_CD2X_DIV_SEL_1; | |
5354 | ratio = BXT_DE_PLL_RATIO(60); | |
5355 | break; | |
5356 | case 624000: | |
5357 | divider = BXT_CDCLK_CD2X_DIV_SEL_1; | |
5358 | ratio = BXT_DE_PLL_RATIO(65); | |
5359 | break; | |
5360 | case 19200: | |
5361 | /* | |
5362 | * Bypass frequency with DE PLL disabled. Init ratio, divider | |
5363 | * to suppress GCC warning. | |
5364 | */ | |
5365 | ratio = 0; | |
5366 | divider = 0; | |
5367 | break; | |
5368 | default: | |
5369 | DRM_ERROR("unsupported CDCLK freq %d", frequency); | |
5370 | ||
5371 | return; | |
5372 | } | |
5373 | ||
5374 | mutex_lock(&dev_priv->rps.hw_lock); | |
5375 | /* Inform power controller of upcoming frequency change */ | |
5376 | ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, | |
5377 | 0x80000000); | |
5378 | mutex_unlock(&dev_priv->rps.hw_lock); | |
5379 | ||
5380 | if (ret) { | |
5381 | DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n", | |
5382 | ret, frequency); | |
5383 | return; | |
5384 | } | |
5385 | ||
5386 | current_freq = I915_READ(CDCLK_CTL) & CDCLK_FREQ_DECIMAL_MASK; | |
5387 | /* convert from .1 fixpoint MHz with -1MHz offset to kHz */ | |
5388 | current_freq = current_freq * 500 + 1000; | |
5389 | ||
5390 | /* | |
5391 | * DE PLL has to be disabled when | |
5392 | * - setting to 19.2MHz (bypass, PLL isn't used) | |
5393 | * - before setting to 624MHz (PLL needs toggling) | |
5394 | * - before setting to any frequency from 624MHz (PLL needs toggling) | |
5395 | */ | |
5396 | if (frequency == 19200 || frequency == 624000 || | |
5397 | current_freq == 624000) { | |
5398 | I915_WRITE(BXT_DE_PLL_ENABLE, ~BXT_DE_PLL_PLL_ENABLE); | |
5399 | /* Timeout 200us */ | |
5400 | if (wait_for(!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK), | |
5401 | 1)) | |
5402 | DRM_ERROR("timout waiting for DE PLL unlock\n"); | |
5403 | } | |
5404 | ||
5405 | if (frequency != 19200) { | |
5406 | uint32_t val; | |
5407 | ||
5408 | val = I915_READ(BXT_DE_PLL_CTL); | |
5409 | val &= ~BXT_DE_PLL_RATIO_MASK; | |
5410 | val |= ratio; | |
5411 | I915_WRITE(BXT_DE_PLL_CTL, val); | |
5412 | ||
5413 | I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE); | |
5414 | /* Timeout 200us */ | |
5415 | if (wait_for(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK, 1)) | |
5416 | DRM_ERROR("timeout waiting for DE PLL lock\n"); | |
5417 | ||
5418 | val = I915_READ(CDCLK_CTL); | |
5419 | val &= ~BXT_CDCLK_CD2X_DIV_SEL_MASK; | |
5420 | val |= divider; | |
5421 | /* | |
5422 | * Disable SSA Precharge when CD clock frequency < 500 MHz, | |
5423 | * enable otherwise. | |
5424 | */ | |
5425 | val &= ~BXT_CDCLK_SSA_PRECHARGE_ENABLE; | |
5426 | if (frequency >= 500000) | |
5427 | val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE; | |
5428 | ||
5429 | val &= ~CDCLK_FREQ_DECIMAL_MASK; | |
5430 | /* convert from kHz to .1 fixpoint MHz with -1MHz offset */ | |
5431 | val |= (frequency - 1000) / 500; | |
5432 | I915_WRITE(CDCLK_CTL, val); | |
5433 | } | |
5434 | ||
5435 | mutex_lock(&dev_priv->rps.hw_lock); | |
5436 | ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, | |
5437 | DIV_ROUND_UP(frequency, 25000)); | |
5438 | mutex_unlock(&dev_priv->rps.hw_lock); | |
5439 | ||
5440 | if (ret) { | |
5441 | DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n", | |
5442 | ret, frequency); | |
5443 | return; | |
5444 | } | |
5445 | ||
a47871bd | 5446 | intel_update_cdclk(dev); |
f8437dd1 VK |
5447 | } |
5448 | ||
5449 | void broxton_init_cdclk(struct drm_device *dev) | |
5450 | { | |
5451 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5452 | uint32_t val; | |
5453 | ||
5454 | /* | |
5455 | * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT | |
5456 | * or else the reset will hang because there is no PCH to respond. | |
5457 | * Move the handshake programming to initialization sequence. | |
5458 | * Previously was left up to BIOS. | |
5459 | */ | |
5460 | val = I915_READ(HSW_NDE_RSTWRN_OPT); | |
5461 | val &= ~RESET_PCH_HANDSHAKE_ENABLE; | |
5462 | I915_WRITE(HSW_NDE_RSTWRN_OPT, val); | |
5463 | ||
5464 | /* Enable PG1 for cdclk */ | |
5465 | intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS); | |
5466 | ||
5467 | /* check if cd clock is enabled */ | |
5468 | if (I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_PLL_ENABLE) { | |
5469 | DRM_DEBUG_KMS("Display already initialized\n"); | |
5470 | return; | |
5471 | } | |
5472 | ||
5473 | /* | |
5474 | * FIXME: | |
5475 | * - The initial CDCLK needs to be read from VBT. | |
5476 | * Need to make this change after VBT has changes for BXT. | |
5477 | * - check if setting the max (or any) cdclk freq is really necessary | |
5478 | * here, it belongs to modeset time | |
5479 | */ | |
5480 | broxton_set_cdclk(dev, 624000); | |
5481 | ||
5482 | I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST); | |
22e02c0b VS |
5483 | POSTING_READ(DBUF_CTL); |
5484 | ||
f8437dd1 VK |
5485 | udelay(10); |
5486 | ||
5487 | if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE)) | |
5488 | DRM_ERROR("DBuf power enable timeout!\n"); | |
5489 | } | |
5490 | ||
5491 | void broxton_uninit_cdclk(struct drm_device *dev) | |
5492 | { | |
5493 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5494 | ||
5495 | I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST); | |
22e02c0b VS |
5496 | POSTING_READ(DBUF_CTL); |
5497 | ||
f8437dd1 VK |
5498 | udelay(10); |
5499 | ||
5500 | if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE) | |
5501 | DRM_ERROR("DBuf power disable timeout!\n"); | |
5502 | ||
5503 | /* Set minimum (bypass) frequency, in effect turning off the DE PLL */ | |
5504 | broxton_set_cdclk(dev, 19200); | |
5505 | ||
5506 | intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS); | |
5507 | } | |
5508 | ||
5d96d8af DL |
5509 | static const struct skl_cdclk_entry { |
5510 | unsigned int freq; | |
5511 | unsigned int vco; | |
5512 | } skl_cdclk_frequencies[] = { | |
5513 | { .freq = 308570, .vco = 8640 }, | |
5514 | { .freq = 337500, .vco = 8100 }, | |
5515 | { .freq = 432000, .vco = 8640 }, | |
5516 | { .freq = 450000, .vco = 8100 }, | |
5517 | { .freq = 540000, .vco = 8100 }, | |
5518 | { .freq = 617140, .vco = 8640 }, | |
5519 | { .freq = 675000, .vco = 8100 }, | |
5520 | }; | |
5521 | ||
5522 | static unsigned int skl_cdclk_decimal(unsigned int freq) | |
5523 | { | |
5524 | return (freq - 1000) / 500; | |
5525 | } | |
5526 | ||
5527 | static unsigned int skl_cdclk_get_vco(unsigned int freq) | |
5528 | { | |
5529 | unsigned int i; | |
5530 | ||
5531 | for (i = 0; i < ARRAY_SIZE(skl_cdclk_frequencies); i++) { | |
5532 | const struct skl_cdclk_entry *e = &skl_cdclk_frequencies[i]; | |
5533 | ||
5534 | if (e->freq == freq) | |
5535 | return e->vco; | |
5536 | } | |
5537 | ||
5538 | return 8100; | |
5539 | } | |
5540 | ||
5541 | static void | |
5542 | skl_dpll0_enable(struct drm_i915_private *dev_priv, unsigned int required_vco) | |
5543 | { | |
5544 | unsigned int min_freq; | |
5545 | u32 val; | |
5546 | ||
5547 | /* select the minimum CDCLK before enabling DPLL 0 */ | |
5548 | val = I915_READ(CDCLK_CTL); | |
5549 | val &= ~CDCLK_FREQ_SEL_MASK | ~CDCLK_FREQ_DECIMAL_MASK; | |
5550 | val |= CDCLK_FREQ_337_308; | |
5551 | ||
5552 | if (required_vco == 8640) | |
5553 | min_freq = 308570; | |
5554 | else | |
5555 | min_freq = 337500; | |
5556 | ||
5557 | val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_freq); | |
5558 | ||
5559 | I915_WRITE(CDCLK_CTL, val); | |
5560 | POSTING_READ(CDCLK_CTL); | |
5561 | ||
5562 | /* | |
5563 | * We always enable DPLL0 with the lowest link rate possible, but still | |
5564 | * taking into account the VCO required to operate the eDP panel at the | |
5565 | * desired frequency. The usual DP link rates operate with a VCO of | |
5566 | * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640. | |
5567 | * The modeset code is responsible for the selection of the exact link | |
5568 | * rate later on, with the constraint of choosing a frequency that | |
5569 | * works with required_vco. | |
5570 | */ | |
5571 | val = I915_READ(DPLL_CTRL1); | |
5572 | ||
5573 | val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) | | |
5574 | DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)); | |
5575 | val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0); | |
5576 | if (required_vco == 8640) | |
5577 | val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080, | |
5578 | SKL_DPLL0); | |
5579 | else | |
5580 | val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810, | |
5581 | SKL_DPLL0); | |
5582 | ||
5583 | I915_WRITE(DPLL_CTRL1, val); | |
5584 | POSTING_READ(DPLL_CTRL1); | |
5585 | ||
5586 | I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE); | |
5587 | ||
5588 | if (wait_for(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK, 5)) | |
5589 | DRM_ERROR("DPLL0 not locked\n"); | |
5590 | } | |
5591 | ||
5592 | static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv) | |
5593 | { | |
5594 | int ret; | |
5595 | u32 val; | |
5596 | ||
5597 | /* inform PCU we want to change CDCLK */ | |
5598 | val = SKL_CDCLK_PREPARE_FOR_CHANGE; | |
5599 | mutex_lock(&dev_priv->rps.hw_lock); | |
5600 | ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val); | |
5601 | mutex_unlock(&dev_priv->rps.hw_lock); | |
5602 | ||
5603 | return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE); | |
5604 | } | |
5605 | ||
5606 | static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv) | |
5607 | { | |
5608 | unsigned int i; | |
5609 | ||
5610 | for (i = 0; i < 15; i++) { | |
5611 | if (skl_cdclk_pcu_ready(dev_priv)) | |
5612 | return true; | |
5613 | udelay(10); | |
5614 | } | |
5615 | ||
5616 | return false; | |
5617 | } | |
5618 | ||
5619 | static void skl_set_cdclk(struct drm_i915_private *dev_priv, unsigned int freq) | |
5620 | { | |
560a7ae4 | 5621 | struct drm_device *dev = dev_priv->dev; |
5d96d8af DL |
5622 | u32 freq_select, pcu_ack; |
5623 | ||
5624 | DRM_DEBUG_DRIVER("Changing CDCLK to %dKHz\n", freq); | |
5625 | ||
5626 | if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) { | |
5627 | DRM_ERROR("failed to inform PCU about cdclk change\n"); | |
5628 | return; | |
5629 | } | |
5630 | ||
5631 | /* set CDCLK_CTL */ | |
5632 | switch(freq) { | |
5633 | case 450000: | |
5634 | case 432000: | |
5635 | freq_select = CDCLK_FREQ_450_432; | |
5636 | pcu_ack = 1; | |
5637 | break; | |
5638 | case 540000: | |
5639 | freq_select = CDCLK_FREQ_540; | |
5640 | pcu_ack = 2; | |
5641 | break; | |
5642 | case 308570: | |
5643 | case 337500: | |
5644 | default: | |
5645 | freq_select = CDCLK_FREQ_337_308; | |
5646 | pcu_ack = 0; | |
5647 | break; | |
5648 | case 617140: | |
5649 | case 675000: | |
5650 | freq_select = CDCLK_FREQ_675_617; | |
5651 | pcu_ack = 3; | |
5652 | break; | |
5653 | } | |
5654 | ||
5655 | I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(freq)); | |
5656 | POSTING_READ(CDCLK_CTL); | |
5657 | ||
5658 | /* inform PCU of the change */ | |
5659 | mutex_lock(&dev_priv->rps.hw_lock); | |
5660 | sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack); | |
5661 | mutex_unlock(&dev_priv->rps.hw_lock); | |
560a7ae4 DL |
5662 | |
5663 | intel_update_cdclk(dev); | |
5d96d8af DL |
5664 | } |
5665 | ||
5666 | void skl_uninit_cdclk(struct drm_i915_private *dev_priv) | |
5667 | { | |
5668 | /* disable DBUF power */ | |
5669 | I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST); | |
5670 | POSTING_READ(DBUF_CTL); | |
5671 | ||
5672 | udelay(10); | |
5673 | ||
5674 | if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE) | |
5675 | DRM_ERROR("DBuf power disable timeout\n"); | |
5676 | ||
ab96c1ee ID |
5677 | /* disable DPLL0 */ |
5678 | I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE); | |
5679 | if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1)) | |
5680 | DRM_ERROR("Couldn't disable DPLL0\n"); | |
5d96d8af DL |
5681 | } |
5682 | ||
5683 | void skl_init_cdclk(struct drm_i915_private *dev_priv) | |
5684 | { | |
5d96d8af DL |
5685 | unsigned int required_vco; |
5686 | ||
39d9b85a GW |
5687 | /* DPLL0 not enabled (happens on early BIOS versions) */ |
5688 | if (!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_ENABLE)) { | |
5689 | /* enable DPLL0 */ | |
5690 | required_vco = skl_cdclk_get_vco(dev_priv->skl_boot_cdclk); | |
5691 | skl_dpll0_enable(dev_priv, required_vco); | |
5d96d8af DL |
5692 | } |
5693 | ||
5d96d8af DL |
5694 | /* set CDCLK to the frequency the BIOS chose */ |
5695 | skl_set_cdclk(dev_priv, dev_priv->skl_boot_cdclk); | |
5696 | ||
5697 | /* enable DBUF power */ | |
5698 | I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST); | |
5699 | POSTING_READ(DBUF_CTL); | |
5700 | ||
5701 | udelay(10); | |
5702 | ||
5703 | if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE)) | |
5704 | DRM_ERROR("DBuf power enable timeout\n"); | |
5705 | } | |
5706 | ||
c73666f3 SK |
5707 | int skl_sanitize_cdclk(struct drm_i915_private *dev_priv) |
5708 | { | |
5709 | uint32_t lcpll1 = I915_READ(LCPLL1_CTL); | |
5710 | uint32_t cdctl = I915_READ(CDCLK_CTL); | |
5711 | int freq = dev_priv->skl_boot_cdclk; | |
5712 | ||
f1b391a5 SK |
5713 | /* |
5714 | * check if the pre-os intialized the display | |
5715 | * There is SWF18 scratchpad register defined which is set by the | |
5716 | * pre-os which can be used by the OS drivers to check the status | |
5717 | */ | |
5718 | if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0) | |
5719 | goto sanitize; | |
5720 | ||
c73666f3 SK |
5721 | /* Is PLL enabled and locked ? */ |
5722 | if (!((lcpll1 & LCPLL_PLL_ENABLE) && (lcpll1 & LCPLL_PLL_LOCK))) | |
5723 | goto sanitize; | |
5724 | ||
5725 | /* DPLL okay; verify the cdclock | |
5726 | * | |
5727 | * Noticed in some instances that the freq selection is correct but | |
5728 | * decimal part is programmed wrong from BIOS where pre-os does not | |
5729 | * enable display. Verify the same as well. | |
5730 | */ | |
5731 | if (cdctl == ((cdctl & CDCLK_FREQ_SEL_MASK) | skl_cdclk_decimal(freq))) | |
5732 | /* All well; nothing to sanitize */ | |
5733 | return false; | |
5734 | sanitize: | |
5735 | /* | |
5736 | * As of now initialize with max cdclk till | |
5737 | * we get dynamic cdclk support | |
5738 | * */ | |
5739 | dev_priv->skl_boot_cdclk = dev_priv->max_cdclk_freq; | |
5740 | skl_init_cdclk(dev_priv); | |
5741 | ||
5742 | /* we did have to sanitize */ | |
5743 | return true; | |
5744 | } | |
5745 | ||
30a970c6 JB |
5746 | /* Adjust CDclk dividers to allow high res or save power if possible */ |
5747 | static void valleyview_set_cdclk(struct drm_device *dev, int cdclk) | |
5748 | { | |
5749 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5750 | u32 val, cmd; | |
5751 | ||
164dfd28 VK |
5752 | WARN_ON(dev_priv->display.get_display_clock_speed(dev) |
5753 | != dev_priv->cdclk_freq); | |
d60c4473 | 5754 | |
dfcab17e | 5755 | if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */ |
30a970c6 | 5756 | cmd = 2; |
dfcab17e | 5757 | else if (cdclk == 266667) |
30a970c6 JB |
5758 | cmd = 1; |
5759 | else | |
5760 | cmd = 0; | |
5761 | ||
5762 | mutex_lock(&dev_priv->rps.hw_lock); | |
5763 | val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ); | |
5764 | val &= ~DSPFREQGUAR_MASK; | |
5765 | val |= (cmd << DSPFREQGUAR_SHIFT); | |
5766 | vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val); | |
5767 | if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) & | |
5768 | DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT), | |
5769 | 50)) { | |
5770 | DRM_ERROR("timed out waiting for CDclk change\n"); | |
5771 | } | |
5772 | mutex_unlock(&dev_priv->rps.hw_lock); | |
5773 | ||
54433e91 VS |
5774 | mutex_lock(&dev_priv->sb_lock); |
5775 | ||
dfcab17e | 5776 | if (cdclk == 400000) { |
6bcda4f0 | 5777 | u32 divider; |
30a970c6 | 5778 | |
6bcda4f0 | 5779 | divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1; |
30a970c6 | 5780 | |
30a970c6 JB |
5781 | /* adjust cdclk divider */ |
5782 | val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL); | |
87d5d259 | 5783 | val &= ~CCK_FREQUENCY_VALUES; |
30a970c6 JB |
5784 | val |= divider; |
5785 | vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val); | |
a877e801 VS |
5786 | |
5787 | if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) & | |
87d5d259 | 5788 | CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT), |
a877e801 VS |
5789 | 50)) |
5790 | DRM_ERROR("timed out waiting for CDclk change\n"); | |
30a970c6 JB |
5791 | } |
5792 | ||
30a970c6 JB |
5793 | /* adjust self-refresh exit latency value */ |
5794 | val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC); | |
5795 | val &= ~0x7f; | |
5796 | ||
5797 | /* | |
5798 | * For high bandwidth configs, we set a higher latency in the bunit | |
5799 | * so that the core display fetch happens in time to avoid underruns. | |
5800 | */ | |
dfcab17e | 5801 | if (cdclk == 400000) |
30a970c6 JB |
5802 | val |= 4500 / 250; /* 4.5 usec */ |
5803 | else | |
5804 | val |= 3000 / 250; /* 3.0 usec */ | |
5805 | vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val); | |
54433e91 | 5806 | |
a580516d | 5807 | mutex_unlock(&dev_priv->sb_lock); |
30a970c6 | 5808 | |
b6283055 | 5809 | intel_update_cdclk(dev); |
30a970c6 JB |
5810 | } |
5811 | ||
383c5a6a VS |
5812 | static void cherryview_set_cdclk(struct drm_device *dev, int cdclk) |
5813 | { | |
5814 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5815 | u32 val, cmd; | |
5816 | ||
164dfd28 VK |
5817 | WARN_ON(dev_priv->display.get_display_clock_speed(dev) |
5818 | != dev_priv->cdclk_freq); | |
383c5a6a VS |
5819 | |
5820 | switch (cdclk) { | |
383c5a6a VS |
5821 | case 333333: |
5822 | case 320000: | |
383c5a6a | 5823 | case 266667: |
383c5a6a | 5824 | case 200000: |
383c5a6a VS |
5825 | break; |
5826 | default: | |
5f77eeb0 | 5827 | MISSING_CASE(cdclk); |
383c5a6a VS |
5828 | return; |
5829 | } | |
5830 | ||
9d0d3fda VS |
5831 | /* |
5832 | * Specs are full of misinformation, but testing on actual | |
5833 | * hardware has shown that we just need to write the desired | |
5834 | * CCK divider into the Punit register. | |
5835 | */ | |
5836 | cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1; | |
5837 | ||
383c5a6a VS |
5838 | mutex_lock(&dev_priv->rps.hw_lock); |
5839 | val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ); | |
5840 | val &= ~DSPFREQGUAR_MASK_CHV; | |
5841 | val |= (cmd << DSPFREQGUAR_SHIFT_CHV); | |
5842 | vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val); | |
5843 | if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) & | |
5844 | DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV), | |
5845 | 50)) { | |
5846 | DRM_ERROR("timed out waiting for CDclk change\n"); | |
5847 | } | |
5848 | mutex_unlock(&dev_priv->rps.hw_lock); | |
5849 | ||
b6283055 | 5850 | intel_update_cdclk(dev); |
383c5a6a VS |
5851 | } |
5852 | ||
30a970c6 JB |
5853 | static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv, |
5854 | int max_pixclk) | |
5855 | { | |
6bcda4f0 | 5856 | int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000; |
6cca3195 | 5857 | int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90; |
29dc7ef3 | 5858 | |
30a970c6 JB |
5859 | /* |
5860 | * Really only a few cases to deal with, as only 4 CDclks are supported: | |
5861 | * 200MHz | |
5862 | * 267MHz | |
29dc7ef3 | 5863 | * 320/333MHz (depends on HPLL freq) |
6cca3195 VS |
5864 | * 400MHz (VLV only) |
5865 | * So we check to see whether we're above 90% (VLV) or 95% (CHV) | |
5866 | * of the lower bin and adjust if needed. | |
e37c67a1 VS |
5867 | * |
5868 | * We seem to get an unstable or solid color picture at 200MHz. | |
5869 | * Not sure what's wrong. For now use 200MHz only when all pipes | |
5870 | * are off. | |
30a970c6 | 5871 | */ |
6cca3195 VS |
5872 | if (!IS_CHERRYVIEW(dev_priv) && |
5873 | max_pixclk > freq_320*limit/100) | |
dfcab17e | 5874 | return 400000; |
6cca3195 | 5875 | else if (max_pixclk > 266667*limit/100) |
29dc7ef3 | 5876 | return freq_320; |
e37c67a1 | 5877 | else if (max_pixclk > 0) |
dfcab17e | 5878 | return 266667; |
e37c67a1 VS |
5879 | else |
5880 | return 200000; | |
30a970c6 JB |
5881 | } |
5882 | ||
f8437dd1 VK |
5883 | static int broxton_calc_cdclk(struct drm_i915_private *dev_priv, |
5884 | int max_pixclk) | |
5885 | { | |
5886 | /* | |
5887 | * FIXME: | |
5888 | * - remove the guardband, it's not needed on BXT | |
5889 | * - set 19.2MHz bypass frequency if there are no active pipes | |
5890 | */ | |
5891 | if (max_pixclk > 576000*9/10) | |
5892 | return 624000; | |
5893 | else if (max_pixclk > 384000*9/10) | |
5894 | return 576000; | |
5895 | else if (max_pixclk > 288000*9/10) | |
5896 | return 384000; | |
5897 | else if (max_pixclk > 144000*9/10) | |
5898 | return 288000; | |
5899 | else | |
5900 | return 144000; | |
5901 | } | |
5902 | ||
e8788cbc | 5903 | /* Compute the max pixel clock for new configuration. */ |
a821fc46 ACO |
5904 | static int intel_mode_max_pixclk(struct drm_device *dev, |
5905 | struct drm_atomic_state *state) | |
30a970c6 | 5906 | { |
565602d7 ML |
5907 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
5908 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5909 | struct drm_crtc *crtc; | |
5910 | struct drm_crtc_state *crtc_state; | |
5911 | unsigned max_pixclk = 0, i; | |
5912 | enum pipe pipe; | |
30a970c6 | 5913 | |
565602d7 ML |
5914 | memcpy(intel_state->min_pixclk, dev_priv->min_pixclk, |
5915 | sizeof(intel_state->min_pixclk)); | |
304603f4 | 5916 | |
565602d7 ML |
5917 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
5918 | int pixclk = 0; | |
5919 | ||
5920 | if (crtc_state->enable) | |
5921 | pixclk = crtc_state->adjusted_mode.crtc_clock; | |
304603f4 | 5922 | |
565602d7 | 5923 | intel_state->min_pixclk[i] = pixclk; |
30a970c6 JB |
5924 | } |
5925 | ||
565602d7 ML |
5926 | for_each_pipe(dev_priv, pipe) |
5927 | max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk); | |
5928 | ||
30a970c6 JB |
5929 | return max_pixclk; |
5930 | } | |
5931 | ||
27c329ed | 5932 | static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state) |
30a970c6 | 5933 | { |
27c329ed ML |
5934 | struct drm_device *dev = state->dev; |
5935 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5936 | int max_pixclk = intel_mode_max_pixclk(dev, state); | |
1a617b77 ML |
5937 | struct intel_atomic_state *intel_state = |
5938 | to_intel_atomic_state(state); | |
30a970c6 | 5939 | |
304603f4 ACO |
5940 | if (max_pixclk < 0) |
5941 | return max_pixclk; | |
30a970c6 | 5942 | |
1a617b77 | 5943 | intel_state->cdclk = intel_state->dev_cdclk = |
27c329ed | 5944 | valleyview_calc_cdclk(dev_priv, max_pixclk); |
0a9ab303 | 5945 | |
1a617b77 ML |
5946 | if (!intel_state->active_crtcs) |
5947 | intel_state->dev_cdclk = valleyview_calc_cdclk(dev_priv, 0); | |
5948 | ||
27c329ed ML |
5949 | return 0; |
5950 | } | |
304603f4 | 5951 | |
27c329ed ML |
5952 | static int broxton_modeset_calc_cdclk(struct drm_atomic_state *state) |
5953 | { | |
5954 | struct drm_device *dev = state->dev; | |
5955 | struct drm_i915_private *dev_priv = dev->dev_private; | |
5956 | int max_pixclk = intel_mode_max_pixclk(dev, state); | |
1a617b77 ML |
5957 | struct intel_atomic_state *intel_state = |
5958 | to_intel_atomic_state(state); | |
85a96e7a | 5959 | |
27c329ed ML |
5960 | if (max_pixclk < 0) |
5961 | return max_pixclk; | |
85a96e7a | 5962 | |
1a617b77 | 5963 | intel_state->cdclk = intel_state->dev_cdclk = |
27c329ed | 5964 | broxton_calc_cdclk(dev_priv, max_pixclk); |
85a96e7a | 5965 | |
1a617b77 ML |
5966 | if (!intel_state->active_crtcs) |
5967 | intel_state->dev_cdclk = broxton_calc_cdclk(dev_priv, 0); | |
5968 | ||
27c329ed | 5969 | return 0; |
30a970c6 JB |
5970 | } |
5971 | ||
1e69cd74 VS |
5972 | static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv) |
5973 | { | |
5974 | unsigned int credits, default_credits; | |
5975 | ||
5976 | if (IS_CHERRYVIEW(dev_priv)) | |
5977 | default_credits = PFI_CREDIT(12); | |
5978 | else | |
5979 | default_credits = PFI_CREDIT(8); | |
5980 | ||
bfa7df01 | 5981 | if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) { |
1e69cd74 VS |
5982 | /* CHV suggested value is 31 or 63 */ |
5983 | if (IS_CHERRYVIEW(dev_priv)) | |
fcc0008f | 5984 | credits = PFI_CREDIT_63; |
1e69cd74 VS |
5985 | else |
5986 | credits = PFI_CREDIT(15); | |
5987 | } else { | |
5988 | credits = default_credits; | |
5989 | } | |
5990 | ||
5991 | /* | |
5992 | * WA - write default credits before re-programming | |
5993 | * FIXME: should we also set the resend bit here? | |
5994 | */ | |
5995 | I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE | | |
5996 | default_credits); | |
5997 | ||
5998 | I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE | | |
5999 | credits | PFI_CREDIT_RESEND); | |
6000 | ||
6001 | /* | |
6002 | * FIXME is this guaranteed to clear | |
6003 | * immediately or should we poll for it? | |
6004 | */ | |
6005 | WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND); | |
6006 | } | |
6007 | ||
27c329ed | 6008 | static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state) |
30a970c6 | 6009 | { |
a821fc46 | 6010 | struct drm_device *dev = old_state->dev; |
30a970c6 | 6011 | struct drm_i915_private *dev_priv = dev->dev_private; |
1a617b77 ML |
6012 | struct intel_atomic_state *old_intel_state = |
6013 | to_intel_atomic_state(old_state); | |
6014 | unsigned req_cdclk = old_intel_state->dev_cdclk; | |
30a970c6 | 6015 | |
27c329ed ML |
6016 | /* |
6017 | * FIXME: We can end up here with all power domains off, yet | |
6018 | * with a CDCLK frequency other than the minimum. To account | |
6019 | * for this take the PIPE-A power domain, which covers the HW | |
6020 | * blocks needed for the following programming. This can be | |
6021 | * removed once it's guaranteed that we get here either with | |
6022 | * the minimum CDCLK set, or the required power domains | |
6023 | * enabled. | |
6024 | */ | |
6025 | intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A); | |
738c05c0 | 6026 | |
27c329ed ML |
6027 | if (IS_CHERRYVIEW(dev)) |
6028 | cherryview_set_cdclk(dev, req_cdclk); | |
6029 | else | |
6030 | valleyview_set_cdclk(dev, req_cdclk); | |
738c05c0 | 6031 | |
27c329ed | 6032 | vlv_program_pfi_credits(dev_priv); |
1e69cd74 | 6033 | |
27c329ed | 6034 | intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A); |
30a970c6 JB |
6035 | } |
6036 | ||
89b667f8 JB |
6037 | static void valleyview_crtc_enable(struct drm_crtc *crtc) |
6038 | { | |
6039 | struct drm_device *dev = crtc->dev; | |
a72e4c9f | 6040 | struct drm_i915_private *dev_priv = to_i915(dev); |
89b667f8 JB |
6041 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
6042 | struct intel_encoder *encoder; | |
b95c5321 ML |
6043 | struct intel_crtc_state *pipe_config = |
6044 | to_intel_crtc_state(crtc->state); | |
89b667f8 | 6045 | int pipe = intel_crtc->pipe; |
89b667f8 | 6046 | |
53d9f4e9 | 6047 | if (WARN_ON(intel_crtc->active)) |
89b667f8 JB |
6048 | return; |
6049 | ||
6e3c9717 | 6050 | if (intel_crtc->config->has_dp_encoder) |
fe3cd48d | 6051 | intel_dp_set_m_n(intel_crtc, M1_N1); |
5b18e57c DV |
6052 | |
6053 | intel_set_pipe_timings(intel_crtc); | |
bc58be60 | 6054 | intel_set_pipe_src_size(intel_crtc); |
5b18e57c | 6055 | |
c14b0485 VS |
6056 | if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) { |
6057 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6058 | ||
6059 | I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY); | |
6060 | I915_WRITE(CHV_CANVAS(pipe), 0); | |
6061 | } | |
6062 | ||
5b18e57c DV |
6063 | i9xx_set_pipeconf(intel_crtc); |
6064 | ||
89b667f8 | 6065 | intel_crtc->active = true; |
89b667f8 | 6066 | |
a72e4c9f | 6067 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
4a3436e8 | 6068 | |
89b667f8 JB |
6069 | for_each_encoder_on_crtc(dev, crtc, encoder) |
6070 | if (encoder->pre_pll_enable) | |
6071 | encoder->pre_pll_enable(encoder); | |
6072 | ||
a65347ba | 6073 | if (!intel_crtc->config->has_dsi_encoder) { |
c0b4c660 VS |
6074 | if (IS_CHERRYVIEW(dev)) { |
6075 | chv_prepare_pll(intel_crtc, intel_crtc->config); | |
6e3c9717 | 6076 | chv_enable_pll(intel_crtc, intel_crtc->config); |
c0b4c660 VS |
6077 | } else { |
6078 | vlv_prepare_pll(intel_crtc, intel_crtc->config); | |
6e3c9717 | 6079 | vlv_enable_pll(intel_crtc, intel_crtc->config); |
c0b4c660 | 6080 | } |
9d556c99 | 6081 | } |
89b667f8 JB |
6082 | |
6083 | for_each_encoder_on_crtc(dev, crtc, encoder) | |
6084 | if (encoder->pre_enable) | |
6085 | encoder->pre_enable(encoder); | |
6086 | ||
2dd24552 JB |
6087 | i9xx_pfit_enable(intel_crtc); |
6088 | ||
b95c5321 | 6089 | intel_color_load_luts(&pipe_config->base); |
63cbb074 | 6090 | |
caed361d | 6091 | intel_update_watermarks(crtc); |
e1fdc473 | 6092 | intel_enable_pipe(intel_crtc); |
be6a6f8e | 6093 | |
4b3a9526 VS |
6094 | assert_vblank_disabled(crtc); |
6095 | drm_crtc_vblank_on(crtc); | |
6096 | ||
f9b61ff6 DV |
6097 | for_each_encoder_on_crtc(dev, crtc, encoder) |
6098 | encoder->enable(encoder); | |
89b667f8 JB |
6099 | } |
6100 | ||
f13c2ef3 DV |
6101 | static void i9xx_set_pll_dividers(struct intel_crtc *crtc) |
6102 | { | |
6103 | struct drm_device *dev = crtc->base.dev; | |
6104 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6105 | ||
6e3c9717 ACO |
6106 | I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0); |
6107 | I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1); | |
f13c2ef3 DV |
6108 | } |
6109 | ||
0b8765c6 | 6110 | static void i9xx_crtc_enable(struct drm_crtc *crtc) |
79e53945 JB |
6111 | { |
6112 | struct drm_device *dev = crtc->dev; | |
a72e4c9f | 6113 | struct drm_i915_private *dev_priv = to_i915(dev); |
79e53945 | 6114 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
ef9c3aee | 6115 | struct intel_encoder *encoder; |
b95c5321 ML |
6116 | struct intel_crtc_state *pipe_config = |
6117 | to_intel_crtc_state(crtc->state); | |
79e53945 | 6118 | int pipe = intel_crtc->pipe; |
79e53945 | 6119 | |
53d9f4e9 | 6120 | if (WARN_ON(intel_crtc->active)) |
f7abfe8b CW |
6121 | return; |
6122 | ||
f13c2ef3 DV |
6123 | i9xx_set_pll_dividers(intel_crtc); |
6124 | ||
6e3c9717 | 6125 | if (intel_crtc->config->has_dp_encoder) |
fe3cd48d | 6126 | intel_dp_set_m_n(intel_crtc, M1_N1); |
5b18e57c DV |
6127 | |
6128 | intel_set_pipe_timings(intel_crtc); | |
bc58be60 | 6129 | intel_set_pipe_src_size(intel_crtc); |
5b18e57c | 6130 | |
5b18e57c DV |
6131 | i9xx_set_pipeconf(intel_crtc); |
6132 | ||
f7abfe8b | 6133 | intel_crtc->active = true; |
6b383a7f | 6134 | |
4a3436e8 | 6135 | if (!IS_GEN2(dev)) |
a72e4c9f | 6136 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true); |
4a3436e8 | 6137 | |
9d6d9f19 MK |
6138 | for_each_encoder_on_crtc(dev, crtc, encoder) |
6139 | if (encoder->pre_enable) | |
6140 | encoder->pre_enable(encoder); | |
6141 | ||
f6736a1a DV |
6142 | i9xx_enable_pll(intel_crtc); |
6143 | ||
2dd24552 JB |
6144 | i9xx_pfit_enable(intel_crtc); |
6145 | ||
b95c5321 | 6146 | intel_color_load_luts(&pipe_config->base); |
63cbb074 | 6147 | |
f37fcc2a | 6148 | intel_update_watermarks(crtc); |
e1fdc473 | 6149 | intel_enable_pipe(intel_crtc); |
be6a6f8e | 6150 | |
4b3a9526 VS |
6151 | assert_vblank_disabled(crtc); |
6152 | drm_crtc_vblank_on(crtc); | |
6153 | ||
f9b61ff6 DV |
6154 | for_each_encoder_on_crtc(dev, crtc, encoder) |
6155 | encoder->enable(encoder); | |
0b8765c6 | 6156 | } |
79e53945 | 6157 | |
87476d63 DV |
6158 | static void i9xx_pfit_disable(struct intel_crtc *crtc) |
6159 | { | |
6160 | struct drm_device *dev = crtc->base.dev; | |
6161 | struct drm_i915_private *dev_priv = dev->dev_private; | |
87476d63 | 6162 | |
6e3c9717 | 6163 | if (!crtc->config->gmch_pfit.control) |
328d8e82 | 6164 | return; |
87476d63 | 6165 | |
328d8e82 | 6166 | assert_pipe_disabled(dev_priv, crtc->pipe); |
87476d63 | 6167 | |
328d8e82 DV |
6168 | DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n", |
6169 | I915_READ(PFIT_CONTROL)); | |
6170 | I915_WRITE(PFIT_CONTROL, 0); | |
87476d63 DV |
6171 | } |
6172 | ||
0b8765c6 JB |
6173 | static void i9xx_crtc_disable(struct drm_crtc *crtc) |
6174 | { | |
6175 | struct drm_device *dev = crtc->dev; | |
6176 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6177 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ef9c3aee | 6178 | struct intel_encoder *encoder; |
0b8765c6 | 6179 | int pipe = intel_crtc->pipe; |
ef9c3aee | 6180 | |
6304cd91 VS |
6181 | /* |
6182 | * On gen2 planes are double buffered but the pipe isn't, so we must | |
6183 | * wait for planes to fully turn off before disabling the pipe. | |
6184 | */ | |
90e83e53 ACO |
6185 | if (IS_GEN2(dev)) |
6186 | intel_wait_for_vblank(dev, pipe); | |
6304cd91 | 6187 | |
4b3a9526 VS |
6188 | for_each_encoder_on_crtc(dev, crtc, encoder) |
6189 | encoder->disable(encoder); | |
6190 | ||
f9b61ff6 DV |
6191 | drm_crtc_vblank_off(crtc); |
6192 | assert_vblank_disabled(crtc); | |
6193 | ||
575f7ab7 | 6194 | intel_disable_pipe(intel_crtc); |
24a1f16d | 6195 | |
87476d63 | 6196 | i9xx_pfit_disable(intel_crtc); |
24a1f16d | 6197 | |
89b667f8 JB |
6198 | for_each_encoder_on_crtc(dev, crtc, encoder) |
6199 | if (encoder->post_disable) | |
6200 | encoder->post_disable(encoder); | |
6201 | ||
a65347ba | 6202 | if (!intel_crtc->config->has_dsi_encoder) { |
076ed3b2 CML |
6203 | if (IS_CHERRYVIEW(dev)) |
6204 | chv_disable_pll(dev_priv, pipe); | |
6205 | else if (IS_VALLEYVIEW(dev)) | |
6206 | vlv_disable_pll(dev_priv, pipe); | |
6207 | else | |
1c4e0274 | 6208 | i9xx_disable_pll(intel_crtc); |
076ed3b2 | 6209 | } |
0b8765c6 | 6210 | |
d6db995f VS |
6211 | for_each_encoder_on_crtc(dev, crtc, encoder) |
6212 | if (encoder->post_pll_disable) | |
6213 | encoder->post_pll_disable(encoder); | |
6214 | ||
4a3436e8 | 6215 | if (!IS_GEN2(dev)) |
a72e4c9f | 6216 | intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false); |
0b8765c6 JB |
6217 | } |
6218 | ||
b17d48e2 ML |
6219 | static void intel_crtc_disable_noatomic(struct drm_crtc *crtc) |
6220 | { | |
842e0307 | 6221 | struct intel_encoder *encoder; |
b17d48e2 ML |
6222 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
6223 | struct drm_i915_private *dev_priv = to_i915(crtc->dev); | |
6224 | enum intel_display_power_domain domain; | |
6225 | unsigned long domains; | |
6226 | ||
6227 | if (!intel_crtc->active) | |
6228 | return; | |
6229 | ||
a539205a | 6230 | if (to_intel_plane_state(crtc->primary->state)->visible) { |
fc32b1fd ML |
6231 | WARN_ON(intel_crtc->unpin_work); |
6232 | ||
2622a081 | 6233 | intel_pre_disable_primary_noatomic(crtc); |
54a41961 ML |
6234 | |
6235 | intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary)); | |
6236 | to_intel_plane_state(crtc->primary->state)->visible = false; | |
a539205a ML |
6237 | } |
6238 | ||
b17d48e2 | 6239 | dev_priv->display.crtc_disable(crtc); |
842e0307 ML |
6240 | |
6241 | DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was enabled, now disabled\n", | |
6242 | crtc->base.id); | |
6243 | ||
6244 | WARN_ON(drm_atomic_set_mode_for_crtc(crtc->state, NULL) < 0); | |
6245 | crtc->state->active = false; | |
37d9078b | 6246 | intel_crtc->active = false; |
842e0307 ML |
6247 | crtc->enabled = false; |
6248 | crtc->state->connector_mask = 0; | |
6249 | crtc->state->encoder_mask = 0; | |
6250 | ||
6251 | for_each_encoder_on_crtc(crtc->dev, crtc, encoder) | |
6252 | encoder->base.crtc = NULL; | |
6253 | ||
58f9c0bc | 6254 | intel_fbc_disable(intel_crtc); |
37d9078b | 6255 | intel_update_watermarks(crtc); |
1f7457b1 | 6256 | intel_disable_shared_dpll(intel_crtc); |
b17d48e2 ML |
6257 | |
6258 | domains = intel_crtc->enabled_power_domains; | |
6259 | for_each_power_domain(domain, domains) | |
6260 | intel_display_power_put(dev_priv, domain); | |
6261 | intel_crtc->enabled_power_domains = 0; | |
565602d7 ML |
6262 | |
6263 | dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe); | |
6264 | dev_priv->min_pixclk[intel_crtc->pipe] = 0; | |
b17d48e2 ML |
6265 | } |
6266 | ||
6b72d486 ML |
6267 | /* |
6268 | * turn all crtc's off, but do not adjust state | |
6269 | * This has to be paired with a call to intel_modeset_setup_hw_state. | |
6270 | */ | |
70e0bd74 | 6271 | int intel_display_suspend(struct drm_device *dev) |
ee7b9f93 | 6272 | { |
e2c8b870 | 6273 | struct drm_i915_private *dev_priv = to_i915(dev); |
70e0bd74 | 6274 | struct drm_atomic_state *state; |
e2c8b870 | 6275 | int ret; |
70e0bd74 | 6276 | |
e2c8b870 ML |
6277 | state = drm_atomic_helper_suspend(dev); |
6278 | ret = PTR_ERR_OR_ZERO(state); | |
70e0bd74 ML |
6279 | if (ret) |
6280 | DRM_ERROR("Suspending crtc's failed with %i\n", ret); | |
e2c8b870 ML |
6281 | else |
6282 | dev_priv->modeset_restore_state = state; | |
70e0bd74 | 6283 | return ret; |
ee7b9f93 JB |
6284 | } |
6285 | ||
ea5b213a | 6286 | void intel_encoder_destroy(struct drm_encoder *encoder) |
7e7d76c3 | 6287 | { |
4ef69c7a | 6288 | struct intel_encoder *intel_encoder = to_intel_encoder(encoder); |
ea5b213a | 6289 | |
ea5b213a CW |
6290 | drm_encoder_cleanup(encoder); |
6291 | kfree(intel_encoder); | |
7e7d76c3 JB |
6292 | } |
6293 | ||
0a91ca29 DV |
6294 | /* Cross check the actual hw state with our own modeset state tracking (and it's |
6295 | * internal consistency). */ | |
b980514c | 6296 | static void intel_connector_check_state(struct intel_connector *connector) |
79e53945 | 6297 | { |
35dd3c64 ML |
6298 | struct drm_crtc *crtc = connector->base.state->crtc; |
6299 | ||
6300 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", | |
6301 | connector->base.base.id, | |
6302 | connector->base.name); | |
6303 | ||
0a91ca29 | 6304 | if (connector->get_hw_state(connector)) { |
e85376cb | 6305 | struct intel_encoder *encoder = connector->encoder; |
35dd3c64 | 6306 | struct drm_connector_state *conn_state = connector->base.state; |
0a91ca29 | 6307 | |
35dd3c64 ML |
6308 | I915_STATE_WARN(!crtc, |
6309 | "connector enabled without attached crtc\n"); | |
0a91ca29 | 6310 | |
35dd3c64 ML |
6311 | if (!crtc) |
6312 | return; | |
6313 | ||
6314 | I915_STATE_WARN(!crtc->state->active, | |
6315 | "connector is active, but attached crtc isn't\n"); | |
6316 | ||
e85376cb | 6317 | if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST) |
35dd3c64 ML |
6318 | return; |
6319 | ||
e85376cb | 6320 | I915_STATE_WARN(conn_state->best_encoder != &encoder->base, |
35dd3c64 ML |
6321 | "atomic encoder doesn't match attached encoder\n"); |
6322 | ||
e85376cb | 6323 | I915_STATE_WARN(conn_state->crtc != encoder->base.crtc, |
35dd3c64 ML |
6324 | "attached encoder crtc differs from connector crtc\n"); |
6325 | } else { | |
4d688a2a ML |
6326 | I915_STATE_WARN(crtc && crtc->state->active, |
6327 | "attached crtc is active, but connector isn't\n"); | |
35dd3c64 ML |
6328 | I915_STATE_WARN(!crtc && connector->base.state->best_encoder, |
6329 | "best encoder set without crtc!\n"); | |
0a91ca29 | 6330 | } |
79e53945 JB |
6331 | } |
6332 | ||
08d9bc92 ACO |
6333 | int intel_connector_init(struct intel_connector *connector) |
6334 | { | |
5350a031 | 6335 | drm_atomic_helper_connector_reset(&connector->base); |
08d9bc92 | 6336 | |
5350a031 | 6337 | if (!connector->base.state) |
08d9bc92 ACO |
6338 | return -ENOMEM; |
6339 | ||
08d9bc92 ACO |
6340 | return 0; |
6341 | } | |
6342 | ||
6343 | struct intel_connector *intel_connector_alloc(void) | |
6344 | { | |
6345 | struct intel_connector *connector; | |
6346 | ||
6347 | connector = kzalloc(sizeof *connector, GFP_KERNEL); | |
6348 | if (!connector) | |
6349 | return NULL; | |
6350 | ||
6351 | if (intel_connector_init(connector) < 0) { | |
6352 | kfree(connector); | |
6353 | return NULL; | |
6354 | } | |
6355 | ||
6356 | return connector; | |
6357 | } | |
6358 | ||
f0947c37 DV |
6359 | /* Simple connector->get_hw_state implementation for encoders that support only |
6360 | * one connector and no cloning and hence the encoder state determines the state | |
6361 | * of the connector. */ | |
6362 | bool intel_connector_get_hw_state(struct intel_connector *connector) | |
ea5b213a | 6363 | { |
24929352 | 6364 | enum pipe pipe = 0; |
f0947c37 | 6365 | struct intel_encoder *encoder = connector->encoder; |
ea5b213a | 6366 | |
f0947c37 | 6367 | return encoder->get_hw_state(encoder, &pipe); |
ea5b213a CW |
6368 | } |
6369 | ||
6d293983 | 6370 | static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state) |
d272ddfa | 6371 | { |
6d293983 ACO |
6372 | if (crtc_state->base.enable && crtc_state->has_pch_encoder) |
6373 | return crtc_state->fdi_lanes; | |
d272ddfa VS |
6374 | |
6375 | return 0; | |
6376 | } | |
6377 | ||
6d293983 | 6378 | static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe, |
5cec258b | 6379 | struct intel_crtc_state *pipe_config) |
1857e1da | 6380 | { |
6d293983 ACO |
6381 | struct drm_atomic_state *state = pipe_config->base.state; |
6382 | struct intel_crtc *other_crtc; | |
6383 | struct intel_crtc_state *other_crtc_state; | |
6384 | ||
1857e1da DV |
6385 | DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n", |
6386 | pipe_name(pipe), pipe_config->fdi_lanes); | |
6387 | if (pipe_config->fdi_lanes > 4) { | |
6388 | DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n", | |
6389 | pipe_name(pipe), pipe_config->fdi_lanes); | |
6d293983 | 6390 | return -EINVAL; |
1857e1da DV |
6391 | } |
6392 | ||
bafb6553 | 6393 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { |
1857e1da DV |
6394 | if (pipe_config->fdi_lanes > 2) { |
6395 | DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n", | |
6396 | pipe_config->fdi_lanes); | |
6d293983 | 6397 | return -EINVAL; |
1857e1da | 6398 | } else { |
6d293983 | 6399 | return 0; |
1857e1da DV |
6400 | } |
6401 | } | |
6402 | ||
6403 | if (INTEL_INFO(dev)->num_pipes == 2) | |
6d293983 | 6404 | return 0; |
1857e1da DV |
6405 | |
6406 | /* Ivybridge 3 pipe is really complicated */ | |
6407 | switch (pipe) { | |
6408 | case PIPE_A: | |
6d293983 | 6409 | return 0; |
1857e1da | 6410 | case PIPE_B: |
6d293983 ACO |
6411 | if (pipe_config->fdi_lanes <= 2) |
6412 | return 0; | |
6413 | ||
6414 | other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C)); | |
6415 | other_crtc_state = | |
6416 | intel_atomic_get_crtc_state(state, other_crtc); | |
6417 | if (IS_ERR(other_crtc_state)) | |
6418 | return PTR_ERR(other_crtc_state); | |
6419 | ||
6420 | if (pipe_required_fdi_lanes(other_crtc_state) > 0) { | |
1857e1da DV |
6421 | DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n", |
6422 | pipe_name(pipe), pipe_config->fdi_lanes); | |
6d293983 | 6423 | return -EINVAL; |
1857e1da | 6424 | } |
6d293983 | 6425 | return 0; |
1857e1da | 6426 | case PIPE_C: |
251cc67c VS |
6427 | if (pipe_config->fdi_lanes > 2) { |
6428 | DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n", | |
6429 | pipe_name(pipe), pipe_config->fdi_lanes); | |
6d293983 | 6430 | return -EINVAL; |
251cc67c | 6431 | } |
6d293983 ACO |
6432 | |
6433 | other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B)); | |
6434 | other_crtc_state = | |
6435 | intel_atomic_get_crtc_state(state, other_crtc); | |
6436 | if (IS_ERR(other_crtc_state)) | |
6437 | return PTR_ERR(other_crtc_state); | |
6438 | ||
6439 | if (pipe_required_fdi_lanes(other_crtc_state) > 2) { | |
1857e1da | 6440 | DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n"); |
6d293983 | 6441 | return -EINVAL; |
1857e1da | 6442 | } |
6d293983 | 6443 | return 0; |
1857e1da DV |
6444 | default: |
6445 | BUG(); | |
6446 | } | |
6447 | } | |
6448 | ||
e29c22c0 DV |
6449 | #define RETRY 1 |
6450 | static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc, | |
5cec258b | 6451 | struct intel_crtc_state *pipe_config) |
877d48d5 | 6452 | { |
1857e1da | 6453 | struct drm_device *dev = intel_crtc->base.dev; |
7c5f93b0 | 6454 | const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode; |
6d293983 ACO |
6455 | int lane, link_bw, fdi_dotclock, ret; |
6456 | bool needs_recompute = false; | |
877d48d5 | 6457 | |
e29c22c0 | 6458 | retry: |
877d48d5 DV |
6459 | /* FDI is a binary signal running at ~2.7GHz, encoding |
6460 | * each output octet as 10 bits. The actual frequency | |
6461 | * is stored as a divider into a 100MHz clock, and the | |
6462 | * mode pixel clock is stored in units of 1KHz. | |
6463 | * Hence the bw of each lane in terms of the mode signal | |
6464 | * is: | |
6465 | */ | |
21a727b3 | 6466 | link_bw = intel_fdi_link_freq(to_i915(dev), pipe_config); |
877d48d5 | 6467 | |
241bfc38 | 6468 | fdi_dotclock = adjusted_mode->crtc_clock; |
877d48d5 | 6469 | |
2bd89a07 | 6470 | lane = ironlake_get_lanes_required(fdi_dotclock, link_bw, |
877d48d5 DV |
6471 | pipe_config->pipe_bpp); |
6472 | ||
6473 | pipe_config->fdi_lanes = lane; | |
6474 | ||
2bd89a07 | 6475 | intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock, |
877d48d5 | 6476 | link_bw, &pipe_config->fdi_m_n); |
1857e1da | 6477 | |
e3b247da | 6478 | ret = ironlake_check_fdi_lanes(dev, intel_crtc->pipe, pipe_config); |
6d293983 | 6479 | if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) { |
e29c22c0 DV |
6480 | pipe_config->pipe_bpp -= 2*3; |
6481 | DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n", | |
6482 | pipe_config->pipe_bpp); | |
6483 | needs_recompute = true; | |
6484 | pipe_config->bw_constrained = true; | |
6485 | ||
6486 | goto retry; | |
6487 | } | |
6488 | ||
6489 | if (needs_recompute) | |
6490 | return RETRY; | |
6491 | ||
6d293983 | 6492 | return ret; |
877d48d5 DV |
6493 | } |
6494 | ||
8cfb3407 VS |
6495 | static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv, |
6496 | struct intel_crtc_state *pipe_config) | |
6497 | { | |
6498 | if (pipe_config->pipe_bpp > 24) | |
6499 | return false; | |
6500 | ||
6501 | /* HSW can handle pixel rate up to cdclk? */ | |
6502 | if (IS_HASWELL(dev_priv->dev)) | |
6503 | return true; | |
6504 | ||
6505 | /* | |
b432e5cf VS |
6506 | * We compare against max which means we must take |
6507 | * the increased cdclk requirement into account when | |
6508 | * calculating the new cdclk. | |
6509 | * | |
6510 | * Should measure whether using a lower cdclk w/o IPS | |
8cfb3407 VS |
6511 | */ |
6512 | return ilk_pipe_pixel_rate(pipe_config) <= | |
6513 | dev_priv->max_cdclk_freq * 95 / 100; | |
6514 | } | |
6515 | ||
42db64ef | 6516 | static void hsw_compute_ips_config(struct intel_crtc *crtc, |
5cec258b | 6517 | struct intel_crtc_state *pipe_config) |
42db64ef | 6518 | { |
8cfb3407 VS |
6519 | struct drm_device *dev = crtc->base.dev; |
6520 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6521 | ||
d330a953 | 6522 | pipe_config->ips_enabled = i915.enable_ips && |
8cfb3407 VS |
6523 | hsw_crtc_supports_ips(crtc) && |
6524 | pipe_config_supports_ips(dev_priv, pipe_config); | |
42db64ef PZ |
6525 | } |
6526 | ||
39acb4aa VS |
6527 | static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc) |
6528 | { | |
6529 | const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); | |
6530 | ||
6531 | /* GDG double wide on either pipe, otherwise pipe A only */ | |
6532 | return INTEL_INFO(dev_priv)->gen < 4 && | |
6533 | (crtc->pipe == PIPE_A || IS_I915G(dev_priv)); | |
6534 | } | |
6535 | ||
a43f6e0f | 6536 | static int intel_crtc_compute_config(struct intel_crtc *crtc, |
5cec258b | 6537 | struct intel_crtc_state *pipe_config) |
79e53945 | 6538 | { |
a43f6e0f | 6539 | struct drm_device *dev = crtc->base.dev; |
8bd31e67 | 6540 | struct drm_i915_private *dev_priv = dev->dev_private; |
7c5f93b0 | 6541 | const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode; |
89749350 | 6542 | |
ad3a4479 | 6543 | /* FIXME should check pixel clock limits on all platforms */ |
cf532bb2 | 6544 | if (INTEL_INFO(dev)->gen < 4) { |
39acb4aa | 6545 | int clock_limit = dev_priv->max_cdclk_freq * 9 / 10; |
cf532bb2 VS |
6546 | |
6547 | /* | |
39acb4aa | 6548 | * Enable double wide mode when the dot clock |
cf532bb2 | 6549 | * is > 90% of the (display) core speed. |
cf532bb2 | 6550 | */ |
39acb4aa VS |
6551 | if (intel_crtc_supports_double_wide(crtc) && |
6552 | adjusted_mode->crtc_clock > clock_limit) { | |
ad3a4479 | 6553 | clock_limit *= 2; |
cf532bb2 | 6554 | pipe_config->double_wide = true; |
ad3a4479 VS |
6555 | } |
6556 | ||
39acb4aa VS |
6557 | if (adjusted_mode->crtc_clock > clock_limit) { |
6558 | DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n", | |
6559 | adjusted_mode->crtc_clock, clock_limit, | |
6560 | yesno(pipe_config->double_wide)); | |
e29c22c0 | 6561 | return -EINVAL; |
39acb4aa | 6562 | } |
2c07245f | 6563 | } |
89749350 | 6564 | |
1d1d0e27 VS |
6565 | /* |
6566 | * Pipe horizontal size must be even in: | |
6567 | * - DVO ganged mode | |
6568 | * - LVDS dual channel mode | |
6569 | * - Double wide pipe | |
6570 | */ | |
a93e255f | 6571 | if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) && |
1d1d0e27 VS |
6572 | intel_is_dual_link_lvds(dev)) || pipe_config->double_wide) |
6573 | pipe_config->pipe_src_w &= ~1; | |
6574 | ||
8693a824 DL |
6575 | /* Cantiga+ cannot handle modes with a hsync front porch of 0. |
6576 | * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw. | |
44f46b42 CW |
6577 | */ |
6578 | if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) && | |
aad941d5 | 6579 | adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay) |
e29c22c0 | 6580 | return -EINVAL; |
44f46b42 | 6581 | |
f5adf94e | 6582 | if (HAS_IPS(dev)) |
a43f6e0f DV |
6583 | hsw_compute_ips_config(crtc, pipe_config); |
6584 | ||
877d48d5 | 6585 | if (pipe_config->has_pch_encoder) |
a43f6e0f | 6586 | return ironlake_fdi_compute_config(crtc, pipe_config); |
877d48d5 | 6587 | |
cf5a15be | 6588 | return 0; |
79e53945 JB |
6589 | } |
6590 | ||
1652d19e VS |
6591 | static int skylake_get_display_clock_speed(struct drm_device *dev) |
6592 | { | |
6593 | struct drm_i915_private *dev_priv = to_i915(dev); | |
6594 | uint32_t lcpll1 = I915_READ(LCPLL1_CTL); | |
6595 | uint32_t cdctl = I915_READ(CDCLK_CTL); | |
6596 | uint32_t linkrate; | |
6597 | ||
414355a7 | 6598 | if (!(lcpll1 & LCPLL_PLL_ENABLE)) |
1652d19e | 6599 | return 24000; /* 24MHz is the cd freq with NSSC ref */ |
1652d19e VS |
6600 | |
6601 | if ((cdctl & CDCLK_FREQ_SEL_MASK) == CDCLK_FREQ_540) | |
6602 | return 540000; | |
6603 | ||
6604 | linkrate = (I915_READ(DPLL_CTRL1) & | |
71cd8423 | 6605 | DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) >> 1; |
1652d19e | 6606 | |
71cd8423 DL |
6607 | if (linkrate == DPLL_CTRL1_LINK_RATE_2160 || |
6608 | linkrate == DPLL_CTRL1_LINK_RATE_1080) { | |
1652d19e VS |
6609 | /* vco 8640 */ |
6610 | switch (cdctl & CDCLK_FREQ_SEL_MASK) { | |
6611 | case CDCLK_FREQ_450_432: | |
6612 | return 432000; | |
6613 | case CDCLK_FREQ_337_308: | |
6614 | return 308570; | |
6615 | case CDCLK_FREQ_675_617: | |
6616 | return 617140; | |
6617 | default: | |
6618 | WARN(1, "Unknown cd freq selection\n"); | |
6619 | } | |
6620 | } else { | |
6621 | /* vco 8100 */ | |
6622 | switch (cdctl & CDCLK_FREQ_SEL_MASK) { | |
6623 | case CDCLK_FREQ_450_432: | |
6624 | return 450000; | |
6625 | case CDCLK_FREQ_337_308: | |
6626 | return 337500; | |
6627 | case CDCLK_FREQ_675_617: | |
6628 | return 675000; | |
6629 | default: | |
6630 | WARN(1, "Unknown cd freq selection\n"); | |
6631 | } | |
6632 | } | |
6633 | ||
6634 | /* error case, do as if DPLL0 isn't enabled */ | |
6635 | return 24000; | |
6636 | } | |
6637 | ||
acd3f3d3 BP |
6638 | static int broxton_get_display_clock_speed(struct drm_device *dev) |
6639 | { | |
6640 | struct drm_i915_private *dev_priv = to_i915(dev); | |
6641 | uint32_t cdctl = I915_READ(CDCLK_CTL); | |
6642 | uint32_t pll_ratio = I915_READ(BXT_DE_PLL_CTL) & BXT_DE_PLL_RATIO_MASK; | |
6643 | uint32_t pll_enab = I915_READ(BXT_DE_PLL_ENABLE); | |
6644 | int cdclk; | |
6645 | ||
6646 | if (!(pll_enab & BXT_DE_PLL_PLL_ENABLE)) | |
6647 | return 19200; | |
6648 | ||
6649 | cdclk = 19200 * pll_ratio / 2; | |
6650 | ||
6651 | switch (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) { | |
6652 | case BXT_CDCLK_CD2X_DIV_SEL_1: | |
6653 | return cdclk; /* 576MHz or 624MHz */ | |
6654 | case BXT_CDCLK_CD2X_DIV_SEL_1_5: | |
6655 | return cdclk * 2 / 3; /* 384MHz */ | |
6656 | case BXT_CDCLK_CD2X_DIV_SEL_2: | |
6657 | return cdclk / 2; /* 288MHz */ | |
6658 | case BXT_CDCLK_CD2X_DIV_SEL_4: | |
6659 | return cdclk / 4; /* 144MHz */ | |
6660 | } | |
6661 | ||
6662 | /* error case, do as if DE PLL isn't enabled */ | |
6663 | return 19200; | |
6664 | } | |
6665 | ||
1652d19e VS |
6666 | static int broadwell_get_display_clock_speed(struct drm_device *dev) |
6667 | { | |
6668 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6669 | uint32_t lcpll = I915_READ(LCPLL_CTL); | |
6670 | uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK; | |
6671 | ||
6672 | if (lcpll & LCPLL_CD_SOURCE_FCLK) | |
6673 | return 800000; | |
6674 | else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT) | |
6675 | return 450000; | |
6676 | else if (freq == LCPLL_CLK_FREQ_450) | |
6677 | return 450000; | |
6678 | else if (freq == LCPLL_CLK_FREQ_54O_BDW) | |
6679 | return 540000; | |
6680 | else if (freq == LCPLL_CLK_FREQ_337_5_BDW) | |
6681 | return 337500; | |
6682 | else | |
6683 | return 675000; | |
6684 | } | |
6685 | ||
6686 | static int haswell_get_display_clock_speed(struct drm_device *dev) | |
6687 | { | |
6688 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6689 | uint32_t lcpll = I915_READ(LCPLL_CTL); | |
6690 | uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK; | |
6691 | ||
6692 | if (lcpll & LCPLL_CD_SOURCE_FCLK) | |
6693 | return 800000; | |
6694 | else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT) | |
6695 | return 450000; | |
6696 | else if (freq == LCPLL_CLK_FREQ_450) | |
6697 | return 450000; | |
6698 | else if (IS_HSW_ULT(dev)) | |
6699 | return 337500; | |
6700 | else | |
6701 | return 540000; | |
79e53945 JB |
6702 | } |
6703 | ||
25eb05fc JB |
6704 | static int valleyview_get_display_clock_speed(struct drm_device *dev) |
6705 | { | |
bfa7df01 VS |
6706 | return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk", |
6707 | CCK_DISPLAY_CLOCK_CONTROL); | |
25eb05fc JB |
6708 | } |
6709 | ||
b37a6434 VS |
6710 | static int ilk_get_display_clock_speed(struct drm_device *dev) |
6711 | { | |
6712 | return 450000; | |
6713 | } | |
6714 | ||
e70236a8 JB |
6715 | static int i945_get_display_clock_speed(struct drm_device *dev) |
6716 | { | |
6717 | return 400000; | |
6718 | } | |
79e53945 | 6719 | |
e70236a8 | 6720 | static int i915_get_display_clock_speed(struct drm_device *dev) |
79e53945 | 6721 | { |
e907f170 | 6722 | return 333333; |
e70236a8 | 6723 | } |
79e53945 | 6724 | |
e70236a8 JB |
6725 | static int i9xx_misc_get_display_clock_speed(struct drm_device *dev) |
6726 | { | |
6727 | return 200000; | |
6728 | } | |
79e53945 | 6729 | |
257a7ffc DV |
6730 | static int pnv_get_display_clock_speed(struct drm_device *dev) |
6731 | { | |
6732 | u16 gcfgc = 0; | |
6733 | ||
6734 | pci_read_config_word(dev->pdev, GCFGC, &gcfgc); | |
6735 | ||
6736 | switch (gcfgc & GC_DISPLAY_CLOCK_MASK) { | |
6737 | case GC_DISPLAY_CLOCK_267_MHZ_PNV: | |
e907f170 | 6738 | return 266667; |
257a7ffc | 6739 | case GC_DISPLAY_CLOCK_333_MHZ_PNV: |
e907f170 | 6740 | return 333333; |
257a7ffc | 6741 | case GC_DISPLAY_CLOCK_444_MHZ_PNV: |
e907f170 | 6742 | return 444444; |
257a7ffc DV |
6743 | case GC_DISPLAY_CLOCK_200_MHZ_PNV: |
6744 | return 200000; | |
6745 | default: | |
6746 | DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc); | |
6747 | case GC_DISPLAY_CLOCK_133_MHZ_PNV: | |
e907f170 | 6748 | return 133333; |
257a7ffc | 6749 | case GC_DISPLAY_CLOCK_167_MHZ_PNV: |
e907f170 | 6750 | return 166667; |
257a7ffc DV |
6751 | } |
6752 | } | |
6753 | ||
e70236a8 JB |
6754 | static int i915gm_get_display_clock_speed(struct drm_device *dev) |
6755 | { | |
6756 | u16 gcfgc = 0; | |
79e53945 | 6757 | |
e70236a8 JB |
6758 | pci_read_config_word(dev->pdev, GCFGC, &gcfgc); |
6759 | ||
6760 | if (gcfgc & GC_LOW_FREQUENCY_ENABLE) | |
e907f170 | 6761 | return 133333; |
e70236a8 JB |
6762 | else { |
6763 | switch (gcfgc & GC_DISPLAY_CLOCK_MASK) { | |
6764 | case GC_DISPLAY_CLOCK_333_MHZ: | |
e907f170 | 6765 | return 333333; |
e70236a8 JB |
6766 | default: |
6767 | case GC_DISPLAY_CLOCK_190_200_MHZ: | |
6768 | return 190000; | |
79e53945 | 6769 | } |
e70236a8 JB |
6770 | } |
6771 | } | |
6772 | ||
6773 | static int i865_get_display_clock_speed(struct drm_device *dev) | |
6774 | { | |
e907f170 | 6775 | return 266667; |
e70236a8 JB |
6776 | } |
6777 | ||
1b1d2716 | 6778 | static int i85x_get_display_clock_speed(struct drm_device *dev) |
e70236a8 JB |
6779 | { |
6780 | u16 hpllcc = 0; | |
1b1d2716 | 6781 | |
65cd2b3f VS |
6782 | /* |
6783 | * 852GM/852GMV only supports 133 MHz and the HPLLCC | |
6784 | * encoding is different :( | |
6785 | * FIXME is this the right way to detect 852GM/852GMV? | |
6786 | */ | |
6787 | if (dev->pdev->revision == 0x1) | |
6788 | return 133333; | |
6789 | ||
1b1d2716 VS |
6790 | pci_bus_read_config_word(dev->pdev->bus, |
6791 | PCI_DEVFN(0, 3), HPLLCC, &hpllcc); | |
6792 | ||
e70236a8 JB |
6793 | /* Assume that the hardware is in the high speed state. This |
6794 | * should be the default. | |
6795 | */ | |
6796 | switch (hpllcc & GC_CLOCK_CONTROL_MASK) { | |
6797 | case GC_CLOCK_133_200: | |
1b1d2716 | 6798 | case GC_CLOCK_133_200_2: |
e70236a8 JB |
6799 | case GC_CLOCK_100_200: |
6800 | return 200000; | |
6801 | case GC_CLOCK_166_250: | |
6802 | return 250000; | |
6803 | case GC_CLOCK_100_133: | |
e907f170 | 6804 | return 133333; |
1b1d2716 VS |
6805 | case GC_CLOCK_133_266: |
6806 | case GC_CLOCK_133_266_2: | |
6807 | case GC_CLOCK_166_266: | |
6808 | return 266667; | |
e70236a8 | 6809 | } |
79e53945 | 6810 | |
e70236a8 JB |
6811 | /* Shouldn't happen */ |
6812 | return 0; | |
6813 | } | |
79e53945 | 6814 | |
e70236a8 JB |
6815 | static int i830_get_display_clock_speed(struct drm_device *dev) |
6816 | { | |
e907f170 | 6817 | return 133333; |
79e53945 JB |
6818 | } |
6819 | ||
34edce2f VS |
6820 | static unsigned int intel_hpll_vco(struct drm_device *dev) |
6821 | { | |
6822 | struct drm_i915_private *dev_priv = dev->dev_private; | |
6823 | static const unsigned int blb_vco[8] = { | |
6824 | [0] = 3200000, | |
6825 | [1] = 4000000, | |
6826 | [2] = 5333333, | |
6827 | [3] = 4800000, | |
6828 | [4] = 6400000, | |
6829 | }; | |
6830 | static const unsigned int pnv_vco[8] = { | |
6831 | [0] = 3200000, | |
6832 | [1] = 4000000, | |
6833 | [2] = 5333333, | |
6834 | [3] = 4800000, | |
6835 | [4] = 2666667, | |
6836 | }; | |
6837 | static const unsigned int cl_vco[8] = { | |
6838 | [0] = 3200000, | |
6839 | [1] = 4000000, | |
6840 | [2] = 5333333, | |
6841 | [3] = 6400000, | |
6842 | [4] = 3333333, | |
6843 | [5] = 3566667, | |
6844 | [6] = 4266667, | |
6845 | }; | |
6846 | static const unsigned int elk_vco[8] = { | |
6847 | [0] = 3200000, | |
6848 | [1] = 4000000, | |
6849 | [2] = 5333333, | |
6850 | [3] = 4800000, | |
6851 | }; | |
6852 | static const unsigned int ctg_vco[8] = { | |
6853 | [0] = 3200000, | |
6854 | [1] = 4000000, | |
6855 | [2] = 5333333, | |
6856 | [3] = 6400000, | |
6857 | [4] = 2666667, | |
6858 | [5] = 4266667, | |
6859 | }; | |
6860 | const unsigned int *vco_table; | |
6861 | unsigned int vco; | |
6862 | uint8_t tmp = 0; | |
6863 | ||
6864 | /* FIXME other chipsets? */ | |
6865 | if (IS_GM45(dev)) | |
6866 | vco_table = ctg_vco; | |
6867 | else if (IS_G4X(dev)) | |
6868 | vco_table = elk_vco; | |
6869 | else if (IS_CRESTLINE(dev)) | |
6870 | vco_table = cl_vco; | |
6871 | else if (IS_PINEVIEW(dev)) | |
6872 | vco_table = pnv_vco; | |
6873 | else if (IS_G33(dev)) | |
6874 | vco_table = blb_vco; | |
6875 | else | |
6876 | return 0; | |
6877 | ||
6878 | tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO); | |
6879 | ||
6880 | vco = vco_table[tmp & 0x7]; | |
6881 | if (vco == 0) | |
6882 | DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp); | |
6883 | else | |
6884 | DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco); | |
6885 | ||
6886 | return vco; | |
6887 | } | |
6888 | ||
6889 | static int gm45_get_display_clock_speed(struct drm_device *dev) | |
6890 | { | |
6891 | unsigned int cdclk_sel, vco = intel_hpll_vco(dev); | |
6892 | uint16_t tmp = 0; | |
6893 | ||
6894 | pci_read_config_word(dev->pdev, GCFGC, &tmp); | |
6895 | ||
6896 | cdclk_sel = (tmp >> 12) & 0x1; | |
6897 | ||
6898 | switch (vco) { | |
6899 | case 2666667: | |
6900 | case 4000000: | |
6901 | case 5333333: | |
6902 | return cdclk_sel ? 333333 : 222222; | |
6903 | case 3200000: | |
6904 | return cdclk_sel ? 320000 : 228571; | |
6905 | default: | |
6906 | DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp); | |
6907 | return 222222; | |
6908 | } | |
6909 | } | |
6910 | ||
6911 | static int i965gm_get_display_clock_speed(struct drm_device *dev) | |
6912 | { | |
6913 | static const uint8_t div_3200[] = { 16, 10, 8 }; | |
6914 | static const uint8_t div_4000[] = { 20, 12, 10 }; | |
6915 | static const uint8_t div_5333[] = { 24, 16, 14 }; | |
6916 | const uint8_t *div_table; | |
6917 | unsigned int cdclk_sel, vco = intel_hpll_vco(dev); | |
6918 | uint16_t tmp = 0; | |
6919 | ||
6920 | pci_read_config_word(dev->pdev, GCFGC, &tmp); | |
6921 | ||
6922 | cdclk_sel = ((tmp >> 8) & 0x1f) - 1; | |
6923 | ||
6924 | if (cdclk_sel >= ARRAY_SIZE(div_3200)) | |
6925 | goto fail; | |
6926 | ||
6927 | switch (vco) { | |
6928 | case 3200000: | |
6929 | div_table = div_3200; | |
6930 | break; | |
6931 | case 4000000: | |
6932 | div_table = div_4000; | |
6933 | break; | |
6934 | case 5333333: | |
6935 | div_table = div_5333; | |
6936 | break; | |
6937 | default: | |
6938 | goto fail; | |
6939 | } | |
6940 | ||
6941 | return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]); | |
6942 | ||
caf4e252 | 6943 | fail: |
34edce2f VS |
6944 | DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp); |
6945 | return 200000; | |
6946 | } | |
6947 | ||
6948 | static int g33_get_display_clock_speed(struct drm_device *dev) | |
6949 | { | |
6950 | static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 }; | |
6951 | static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 }; | |
6952 | static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 }; | |
6953 | static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 }; | |
6954 | const uint8_t *div_table; | |
6955 | unsigned int cdclk_sel, vco = intel_hpll_vco(dev); | |
6956 | uint16_t tmp = 0; | |
6957 | ||
6958 | pci_read_config_word(dev->pdev, GCFGC, &tmp); | |
6959 | ||
6960 | cdclk_sel = (tmp >> 4) & 0x7; | |
6961 | ||
6962 | if (cdclk_sel >= ARRAY_SIZE(div_3200)) | |
6963 | goto fail; | |
6964 | ||
6965 | switch (vco) { | |
6966 | case 3200000: | |
6967 | div_table = div_3200; | |
6968 | break; | |
6969 | case 4000000: | |
6970 | div_table = div_4000; | |
6971 | break; | |
6972 | case 4800000: | |
6973 | div_table = div_4800; | |
6974 | break; | |
6975 | case 5333333: | |
6976 | div_table = div_5333; | |
6977 | break; | |
6978 | default: | |
6979 | goto fail; | |
6980 | } | |
6981 | ||
6982 | return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]); | |
6983 | ||
caf4e252 | 6984 | fail: |
34edce2f VS |
6985 | DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp); |
6986 | return 190476; | |
6987 | } | |
6988 | ||
2c07245f | 6989 | static void |
a65851af | 6990 | intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den) |
2c07245f | 6991 | { |
a65851af VS |
6992 | while (*num > DATA_LINK_M_N_MASK || |
6993 | *den > DATA_LINK_M_N_MASK) { | |
2c07245f ZW |
6994 | *num >>= 1; |
6995 | *den >>= 1; | |
6996 | } | |
6997 | } | |
6998 | ||
a65851af VS |
6999 | static void compute_m_n(unsigned int m, unsigned int n, |
7000 | uint32_t *ret_m, uint32_t *ret_n) | |
7001 | { | |
7002 | *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX); | |
7003 | *ret_m = div_u64((uint64_t) m * *ret_n, n); | |
7004 | intel_reduce_m_n_ratio(ret_m, ret_n); | |
7005 | } | |
7006 | ||
e69d0bc1 DV |
7007 | void |
7008 | intel_link_compute_m_n(int bits_per_pixel, int nlanes, | |
7009 | int pixel_clock, int link_clock, | |
7010 | struct intel_link_m_n *m_n) | |
2c07245f | 7011 | { |
e69d0bc1 | 7012 | m_n->tu = 64; |
a65851af VS |
7013 | |
7014 | compute_m_n(bits_per_pixel * pixel_clock, | |
7015 | link_clock * nlanes * 8, | |
7016 | &m_n->gmch_m, &m_n->gmch_n); | |
7017 | ||
7018 | compute_m_n(pixel_clock, link_clock, | |
7019 | &m_n->link_m, &m_n->link_n); | |
2c07245f ZW |
7020 | } |
7021 | ||
a7615030 CW |
7022 | static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv) |
7023 | { | |
d330a953 JN |
7024 | if (i915.panel_use_ssc >= 0) |
7025 | return i915.panel_use_ssc != 0; | |
41aa3448 | 7026 | return dev_priv->vbt.lvds_use_ssc |
435793df | 7027 | && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE); |
a7615030 CW |
7028 | } |
7029 | ||
7429e9d4 | 7030 | static uint32_t pnv_dpll_compute_fp(struct dpll *dpll) |
c65d77d8 | 7031 | { |
7df00d7a | 7032 | return (1 << dpll->n) << 16 | dpll->m2; |
7429e9d4 | 7033 | } |
f47709a9 | 7034 | |
7429e9d4 DV |
7035 | static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll) |
7036 | { | |
7037 | return dpll->n << 16 | dpll->m1 << 8 | dpll->m2; | |
c65d77d8 JB |
7038 | } |
7039 | ||
f47709a9 | 7040 | static void i9xx_update_pll_dividers(struct intel_crtc *crtc, |
190f68c5 | 7041 | struct intel_crtc_state *crtc_state, |
a7516a05 JB |
7042 | intel_clock_t *reduced_clock) |
7043 | { | |
f47709a9 | 7044 | struct drm_device *dev = crtc->base.dev; |
a7516a05 JB |
7045 | u32 fp, fp2 = 0; |
7046 | ||
7047 | if (IS_PINEVIEW(dev)) { | |
190f68c5 | 7048 | fp = pnv_dpll_compute_fp(&crtc_state->dpll); |
a7516a05 | 7049 | if (reduced_clock) |
7429e9d4 | 7050 | fp2 = pnv_dpll_compute_fp(reduced_clock); |
a7516a05 | 7051 | } else { |
190f68c5 | 7052 | fp = i9xx_dpll_compute_fp(&crtc_state->dpll); |
a7516a05 | 7053 | if (reduced_clock) |
7429e9d4 | 7054 | fp2 = i9xx_dpll_compute_fp(reduced_clock); |
a7516a05 JB |
7055 | } |
7056 | ||
190f68c5 | 7057 | crtc_state->dpll_hw_state.fp0 = fp; |
a7516a05 | 7058 | |
f47709a9 | 7059 | crtc->lowfreq_avail = false; |
a93e255f | 7060 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) && |
ab585dea | 7061 | reduced_clock) { |
190f68c5 | 7062 | crtc_state->dpll_hw_state.fp1 = fp2; |
f47709a9 | 7063 | crtc->lowfreq_avail = true; |
a7516a05 | 7064 | } else { |
190f68c5 | 7065 | crtc_state->dpll_hw_state.fp1 = fp; |
a7516a05 JB |
7066 | } |
7067 | } | |
7068 | ||
5e69f97f CML |
7069 | static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe |
7070 | pipe) | |
89b667f8 JB |
7071 | { |
7072 | u32 reg_val; | |
7073 | ||
7074 | /* | |
7075 | * PLLB opamp always calibrates to max value of 0x3f, force enable it | |
7076 | * and set it to a reasonable value instead. | |
7077 | */ | |
ab3c759a | 7078 | reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1)); |
89b667f8 JB |
7079 | reg_val &= 0xffffff00; |
7080 | reg_val |= 0x00000030; | |
ab3c759a | 7081 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val); |
89b667f8 | 7082 | |
ab3c759a | 7083 | reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13); |
89b667f8 JB |
7084 | reg_val &= 0x8cffffff; |
7085 | reg_val = 0x8c000000; | |
ab3c759a | 7086 | vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val); |
89b667f8 | 7087 | |
ab3c759a | 7088 | reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1)); |
89b667f8 | 7089 | reg_val &= 0xffffff00; |
ab3c759a | 7090 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val); |
89b667f8 | 7091 | |
ab3c759a | 7092 | reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13); |
89b667f8 JB |
7093 | reg_val &= 0x00ffffff; |
7094 | reg_val |= 0xb0000000; | |
ab3c759a | 7095 | vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val); |
89b667f8 JB |
7096 | } |
7097 | ||
b551842d DV |
7098 | static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc, |
7099 | struct intel_link_m_n *m_n) | |
7100 | { | |
7101 | struct drm_device *dev = crtc->base.dev; | |
7102 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7103 | int pipe = crtc->pipe; | |
7104 | ||
e3b95f1e DV |
7105 | I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m); |
7106 | I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n); | |
7107 | I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m); | |
7108 | I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n); | |
b551842d DV |
7109 | } |
7110 | ||
7111 | static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc, | |
f769cd24 VK |
7112 | struct intel_link_m_n *m_n, |
7113 | struct intel_link_m_n *m2_n2) | |
b551842d DV |
7114 | { |
7115 | struct drm_device *dev = crtc->base.dev; | |
7116 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7117 | int pipe = crtc->pipe; | |
6e3c9717 | 7118 | enum transcoder transcoder = crtc->config->cpu_transcoder; |
b551842d DV |
7119 | |
7120 | if (INTEL_INFO(dev)->gen >= 5) { | |
7121 | I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m); | |
7122 | I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n); | |
7123 | I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m); | |
7124 | I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n); | |
f769cd24 VK |
7125 | /* M2_N2 registers to be set only for gen < 8 (M2_N2 available |
7126 | * for gen < 8) and if DRRS is supported (to make sure the | |
7127 | * registers are not unnecessarily accessed). | |
7128 | */ | |
44395bfe | 7129 | if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) && |
6e3c9717 | 7130 | crtc->config->has_drrs) { |
f769cd24 VK |
7131 | I915_WRITE(PIPE_DATA_M2(transcoder), |
7132 | TU_SIZE(m2_n2->tu) | m2_n2->gmch_m); | |
7133 | I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n); | |
7134 | I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m); | |
7135 | I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n); | |
7136 | } | |
b551842d | 7137 | } else { |
e3b95f1e DV |
7138 | I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m); |
7139 | I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n); | |
7140 | I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m); | |
7141 | I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n); | |
b551842d DV |
7142 | } |
7143 | } | |
7144 | ||
fe3cd48d | 7145 | void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n) |
03afc4a2 | 7146 | { |
fe3cd48d R |
7147 | struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL; |
7148 | ||
7149 | if (m_n == M1_N1) { | |
7150 | dp_m_n = &crtc->config->dp_m_n; | |
7151 | dp_m2_n2 = &crtc->config->dp_m2_n2; | |
7152 | } else if (m_n == M2_N2) { | |
7153 | ||
7154 | /* | |
7155 | * M2_N2 registers are not supported. Hence m2_n2 divider value | |
7156 | * needs to be programmed into M1_N1. | |
7157 | */ | |
7158 | dp_m_n = &crtc->config->dp_m2_n2; | |
7159 | } else { | |
7160 | DRM_ERROR("Unsupported divider value\n"); | |
7161 | return; | |
7162 | } | |
7163 | ||
6e3c9717 ACO |
7164 | if (crtc->config->has_pch_encoder) |
7165 | intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n); | |
03afc4a2 | 7166 | else |
fe3cd48d | 7167 | intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2); |
03afc4a2 DV |
7168 | } |
7169 | ||
251ac862 DV |
7170 | static void vlv_compute_dpll(struct intel_crtc *crtc, |
7171 | struct intel_crtc_state *pipe_config) | |
bdd4b6a6 | 7172 | { |
03ed5cbf VS |
7173 | pipe_config->dpll_hw_state.dpll = DPLL_INTEGRATED_REF_CLK_VLV | |
7174 | DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS | | |
7175 | DPLL_VCO_ENABLE | DPLL_EXT_BUFFER_ENABLE_VLV; | |
7176 | if (crtc->pipe != PIPE_A) | |
7177 | pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV; | |
bdd4b6a6 | 7178 | |
03ed5cbf VS |
7179 | pipe_config->dpll_hw_state.dpll_md = |
7180 | (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT; | |
7181 | } | |
bdd4b6a6 | 7182 | |
03ed5cbf VS |
7183 | static void chv_compute_dpll(struct intel_crtc *crtc, |
7184 | struct intel_crtc_state *pipe_config) | |
7185 | { | |
7186 | pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV | | |
7187 | DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS | | |
7188 | DPLL_VCO_ENABLE; | |
7189 | if (crtc->pipe != PIPE_A) | |
7190 | pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV; | |
7191 | ||
7192 | pipe_config->dpll_hw_state.dpll_md = | |
7193 | (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT; | |
bdd4b6a6 DV |
7194 | } |
7195 | ||
d288f65f | 7196 | static void vlv_prepare_pll(struct intel_crtc *crtc, |
5cec258b | 7197 | const struct intel_crtc_state *pipe_config) |
a0c4da24 | 7198 | { |
f47709a9 | 7199 | struct drm_device *dev = crtc->base.dev; |
a0c4da24 | 7200 | struct drm_i915_private *dev_priv = dev->dev_private; |
f47709a9 | 7201 | int pipe = crtc->pipe; |
bdd4b6a6 | 7202 | u32 mdiv; |
a0c4da24 | 7203 | u32 bestn, bestm1, bestm2, bestp1, bestp2; |
bdd4b6a6 | 7204 | u32 coreclk, reg_val; |
a0c4da24 | 7205 | |
a580516d | 7206 | mutex_lock(&dev_priv->sb_lock); |
09153000 | 7207 | |
d288f65f VS |
7208 | bestn = pipe_config->dpll.n; |
7209 | bestm1 = pipe_config->dpll.m1; | |
7210 | bestm2 = pipe_config->dpll.m2; | |
7211 | bestp1 = pipe_config->dpll.p1; | |
7212 | bestp2 = pipe_config->dpll.p2; | |
a0c4da24 | 7213 | |
89b667f8 JB |
7214 | /* See eDP HDMI DPIO driver vbios notes doc */ |
7215 | ||
7216 | /* PLL B needs special handling */ | |
bdd4b6a6 | 7217 | if (pipe == PIPE_B) |
5e69f97f | 7218 | vlv_pllb_recal_opamp(dev_priv, pipe); |
89b667f8 JB |
7219 | |
7220 | /* Set up Tx target for periodic Rcomp update */ | |
ab3c759a | 7221 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f); |
89b667f8 JB |
7222 | |
7223 | /* Disable target IRef on PLL */ | |
ab3c759a | 7224 | reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe)); |
89b667f8 | 7225 | reg_val &= 0x00ffffff; |
ab3c759a | 7226 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val); |
89b667f8 JB |
7227 | |
7228 | /* Disable fast lock */ | |
ab3c759a | 7229 | vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610); |
89b667f8 JB |
7230 | |
7231 | /* Set idtafcrecal before PLL is enabled */ | |
a0c4da24 JB |
7232 | mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK)); |
7233 | mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT)); | |
7234 | mdiv |= ((bestn << DPIO_N_SHIFT)); | |
a0c4da24 | 7235 | mdiv |= (1 << DPIO_K_SHIFT); |
7df5080b JB |
7236 | |
7237 | /* | |
7238 | * Post divider depends on pixel clock rate, DAC vs digital (and LVDS, | |
7239 | * but we don't support that). | |
7240 | * Note: don't use the DAC post divider as it seems unstable. | |
7241 | */ | |
7242 | mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT); | |
ab3c759a | 7243 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv); |
a0c4da24 | 7244 | |
a0c4da24 | 7245 | mdiv |= DPIO_ENABLE_CALIBRATION; |
ab3c759a | 7246 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv); |
a0c4da24 | 7247 | |
89b667f8 | 7248 | /* Set HBR and RBR LPF coefficients */ |
d288f65f | 7249 | if (pipe_config->port_clock == 162000 || |
409ee761 ACO |
7250 | intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) || |
7251 | intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) | |
ab3c759a | 7252 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe), |
885b0120 | 7253 | 0x009f0003); |
89b667f8 | 7254 | else |
ab3c759a | 7255 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe), |
89b667f8 JB |
7256 | 0x00d0000f); |
7257 | ||
681a8504 | 7258 | if (pipe_config->has_dp_encoder) { |
89b667f8 | 7259 | /* Use SSC source */ |
bdd4b6a6 | 7260 | if (pipe == PIPE_A) |
ab3c759a | 7261 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe), |
89b667f8 JB |
7262 | 0x0df40000); |
7263 | else | |
ab3c759a | 7264 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe), |
89b667f8 JB |
7265 | 0x0df70000); |
7266 | } else { /* HDMI or VGA */ | |
7267 | /* Use bend source */ | |
bdd4b6a6 | 7268 | if (pipe == PIPE_A) |
ab3c759a | 7269 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe), |
89b667f8 JB |
7270 | 0x0df70000); |
7271 | else | |
ab3c759a | 7272 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe), |
89b667f8 JB |
7273 | 0x0df40000); |
7274 | } | |
a0c4da24 | 7275 | |
ab3c759a | 7276 | coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe)); |
89b667f8 | 7277 | coreclk = (coreclk & 0x0000ff00) | 0x01c00000; |
409ee761 ACO |
7278 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) || |
7279 | intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) | |
89b667f8 | 7280 | coreclk |= 0x01000000; |
ab3c759a | 7281 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk); |
a0c4da24 | 7282 | |
ab3c759a | 7283 | vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000); |
a580516d | 7284 | mutex_unlock(&dev_priv->sb_lock); |
a0c4da24 JB |
7285 | } |
7286 | ||
d288f65f | 7287 | static void chv_prepare_pll(struct intel_crtc *crtc, |
5cec258b | 7288 | const struct intel_crtc_state *pipe_config) |
9d556c99 CML |
7289 | { |
7290 | struct drm_device *dev = crtc->base.dev; | |
7291 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7292 | int pipe = crtc->pipe; | |
f0f59a00 | 7293 | i915_reg_t dpll_reg = DPLL(crtc->pipe); |
9d556c99 | 7294 | enum dpio_channel port = vlv_pipe_to_channel(pipe); |
9cbe40c1 | 7295 | u32 loopfilter, tribuf_calcntr; |
9d556c99 | 7296 | u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac; |
a945ce7e | 7297 | u32 dpio_val; |
9cbe40c1 | 7298 | int vco; |
9d556c99 | 7299 | |
d288f65f VS |
7300 | bestn = pipe_config->dpll.n; |
7301 | bestm2_frac = pipe_config->dpll.m2 & 0x3fffff; | |
7302 | bestm1 = pipe_config->dpll.m1; | |
7303 | bestm2 = pipe_config->dpll.m2 >> 22; | |
7304 | bestp1 = pipe_config->dpll.p1; | |
7305 | bestp2 = pipe_config->dpll.p2; | |
9cbe40c1 | 7306 | vco = pipe_config->dpll.vco; |
a945ce7e | 7307 | dpio_val = 0; |
9cbe40c1 | 7308 | loopfilter = 0; |
9d556c99 CML |
7309 | |
7310 | /* | |
7311 | * Enable Refclk and SSC | |
7312 | */ | |
a11b0703 | 7313 | I915_WRITE(dpll_reg, |
d288f65f | 7314 | pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE); |
a11b0703 | 7315 | |
a580516d | 7316 | mutex_lock(&dev_priv->sb_lock); |
9d556c99 | 7317 | |
9d556c99 CML |
7318 | /* p1 and p2 divider */ |
7319 | vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port), | |
7320 | 5 << DPIO_CHV_S1_DIV_SHIFT | | |
7321 | bestp1 << DPIO_CHV_P1_DIV_SHIFT | | |
7322 | bestp2 << DPIO_CHV_P2_DIV_SHIFT | | |
7323 | 1 << DPIO_CHV_K_DIV_SHIFT); | |
7324 | ||
7325 | /* Feedback post-divider - m2 */ | |
7326 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2); | |
7327 | ||
7328 | /* Feedback refclk divider - n and m1 */ | |
7329 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port), | |
7330 | DPIO_CHV_M1_DIV_BY_2 | | |
7331 | 1 << DPIO_CHV_N_DIV_SHIFT); | |
7332 | ||
7333 | /* M2 fraction division */ | |
25a25dfc | 7334 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac); |
9d556c99 CML |
7335 | |
7336 | /* M2 fraction division enable */ | |
a945ce7e VP |
7337 | dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port)); |
7338 | dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN); | |
7339 | dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT); | |
7340 | if (bestm2_frac) | |
7341 | dpio_val |= DPIO_CHV_FRAC_DIV_EN; | |
7342 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val); | |
9d556c99 | 7343 | |
de3a0fde VP |
7344 | /* Program digital lock detect threshold */ |
7345 | dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port)); | |
7346 | dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK | | |
7347 | DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE); | |
7348 | dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT); | |
7349 | if (!bestm2_frac) | |
7350 | dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE; | |
7351 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val); | |
7352 | ||
9d556c99 | 7353 | /* Loop filter */ |
9cbe40c1 VP |
7354 | if (vco == 5400000) { |
7355 | loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT); | |
7356 | loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT); | |
7357 | loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT); | |
7358 | tribuf_calcntr = 0x9; | |
7359 | } else if (vco <= 6200000) { | |
7360 | loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT); | |
7361 | loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT); | |
7362 | loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT); | |
7363 | tribuf_calcntr = 0x9; | |
7364 | } else if (vco <= 6480000) { | |
7365 | loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT); | |
7366 | loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT); | |
7367 | loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT); | |
7368 | tribuf_calcntr = 0x8; | |
7369 | } else { | |
7370 | /* Not supported. Apply the same limits as in the max case */ | |
7371 | loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT); | |
7372 | loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT); | |
7373 | loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT); | |
7374 | tribuf_calcntr = 0; | |
7375 | } | |
9d556c99 CML |
7376 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter); |
7377 | ||
968040b2 | 7378 | dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port)); |
9cbe40c1 VP |
7379 | dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK; |
7380 | dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT); | |
7381 | vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val); | |
7382 | ||
9d556c99 CML |
7383 | /* AFC Recal */ |
7384 | vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), | |
7385 | vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) | | |
7386 | DPIO_AFC_RECAL); | |
7387 | ||
a580516d | 7388 | mutex_unlock(&dev_priv->sb_lock); |
9d556c99 CML |
7389 | } |
7390 | ||
d288f65f VS |
7391 | /** |
7392 | * vlv_force_pll_on - forcibly enable just the PLL | |
7393 | * @dev_priv: i915 private structure | |
7394 | * @pipe: pipe PLL to enable | |
7395 | * @dpll: PLL configuration | |
7396 | * | |
7397 | * Enable the PLL for @pipe using the supplied @dpll config. To be used | |
7398 | * in cases where we need the PLL enabled even when @pipe is not going to | |
7399 | * be enabled. | |
7400 | */ | |
3f36b937 TU |
7401 | int vlv_force_pll_on(struct drm_device *dev, enum pipe pipe, |
7402 | const struct dpll *dpll) | |
d288f65f VS |
7403 | { |
7404 | struct intel_crtc *crtc = | |
7405 | to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe)); | |
3f36b937 TU |
7406 | struct intel_crtc_state *pipe_config; |
7407 | ||
7408 | pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL); | |
7409 | if (!pipe_config) | |
7410 | return -ENOMEM; | |
7411 | ||
7412 | pipe_config->base.crtc = &crtc->base; | |
7413 | pipe_config->pixel_multiplier = 1; | |
7414 | pipe_config->dpll = *dpll; | |
d288f65f VS |
7415 | |
7416 | if (IS_CHERRYVIEW(dev)) { | |
3f36b937 TU |
7417 | chv_compute_dpll(crtc, pipe_config); |
7418 | chv_prepare_pll(crtc, pipe_config); | |
7419 | chv_enable_pll(crtc, pipe_config); | |
d288f65f | 7420 | } else { |
3f36b937 TU |
7421 | vlv_compute_dpll(crtc, pipe_config); |
7422 | vlv_prepare_pll(crtc, pipe_config); | |
7423 | vlv_enable_pll(crtc, pipe_config); | |
d288f65f | 7424 | } |
3f36b937 TU |
7425 | |
7426 | kfree(pipe_config); | |
7427 | ||
7428 | return 0; | |
d288f65f VS |
7429 | } |
7430 | ||
7431 | /** | |
7432 | * vlv_force_pll_off - forcibly disable just the PLL | |
7433 | * @dev_priv: i915 private structure | |
7434 | * @pipe: pipe PLL to disable | |
7435 | * | |
7436 | * Disable the PLL for @pipe. To be used in cases where we need | |
7437 | * the PLL enabled even when @pipe is not going to be enabled. | |
7438 | */ | |
7439 | void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe) | |
7440 | { | |
7441 | if (IS_CHERRYVIEW(dev)) | |
7442 | chv_disable_pll(to_i915(dev), pipe); | |
7443 | else | |
7444 | vlv_disable_pll(to_i915(dev), pipe); | |
7445 | } | |
7446 | ||
251ac862 DV |
7447 | static void i9xx_compute_dpll(struct intel_crtc *crtc, |
7448 | struct intel_crtc_state *crtc_state, | |
ceb41007 | 7449 | intel_clock_t *reduced_clock) |
eb1cbe48 | 7450 | { |
f47709a9 | 7451 | struct drm_device *dev = crtc->base.dev; |
eb1cbe48 | 7452 | struct drm_i915_private *dev_priv = dev->dev_private; |
eb1cbe48 DV |
7453 | u32 dpll; |
7454 | bool is_sdvo; | |
190f68c5 | 7455 | struct dpll *clock = &crtc_state->dpll; |
eb1cbe48 | 7456 | |
190f68c5 | 7457 | i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock); |
2a8f64ca | 7458 | |
a93e255f ACO |
7459 | is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) || |
7460 | intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI); | |
eb1cbe48 DV |
7461 | |
7462 | dpll = DPLL_VGA_MODE_DIS; | |
7463 | ||
a93e255f | 7464 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) |
eb1cbe48 DV |
7465 | dpll |= DPLLB_MODE_LVDS; |
7466 | else | |
7467 | dpll |= DPLLB_MODE_DAC_SERIAL; | |
6cc5f341 | 7468 | |
ef1b460d | 7469 | if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) { |
190f68c5 | 7470 | dpll |= (crtc_state->pixel_multiplier - 1) |
198a037f | 7471 | << SDVO_MULTIPLIER_SHIFT_HIRES; |
eb1cbe48 | 7472 | } |
198a037f DV |
7473 | |
7474 | if (is_sdvo) | |
4a33e48d | 7475 | dpll |= DPLL_SDVO_HIGH_SPEED; |
198a037f | 7476 | |
190f68c5 | 7477 | if (crtc_state->has_dp_encoder) |
4a33e48d | 7478 | dpll |= DPLL_SDVO_HIGH_SPEED; |
eb1cbe48 DV |
7479 | |
7480 | /* compute bitmask from p1 value */ | |
7481 | if (IS_PINEVIEW(dev)) | |
7482 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW; | |
7483 | else { | |
7484 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; | |
7485 | if (IS_G4X(dev) && reduced_clock) | |
7486 | dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; | |
7487 | } | |
7488 | switch (clock->p2) { | |
7489 | case 5: | |
7490 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; | |
7491 | break; | |
7492 | case 7: | |
7493 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; | |
7494 | break; | |
7495 | case 10: | |
7496 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; | |
7497 | break; | |
7498 | case 14: | |
7499 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; | |
7500 | break; | |
7501 | } | |
7502 | if (INTEL_INFO(dev)->gen >= 4) | |
7503 | dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT); | |
7504 | ||
190f68c5 | 7505 | if (crtc_state->sdvo_tv_clock) |
eb1cbe48 | 7506 | dpll |= PLL_REF_INPUT_TVCLKINBC; |
a93e255f | 7507 | else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) && |
ceb41007 | 7508 | intel_panel_use_ssc(dev_priv)) |
eb1cbe48 DV |
7509 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
7510 | else | |
7511 | dpll |= PLL_REF_INPUT_DREFCLK; | |
7512 | ||
7513 | dpll |= DPLL_VCO_ENABLE; | |
190f68c5 | 7514 | crtc_state->dpll_hw_state.dpll = dpll; |
8bcc2795 | 7515 | |
eb1cbe48 | 7516 | if (INTEL_INFO(dev)->gen >= 4) { |
190f68c5 | 7517 | u32 dpll_md = (crtc_state->pixel_multiplier - 1) |
ef1b460d | 7518 | << DPLL_MD_UDI_MULTIPLIER_SHIFT; |
190f68c5 | 7519 | crtc_state->dpll_hw_state.dpll_md = dpll_md; |
eb1cbe48 DV |
7520 | } |
7521 | } | |
7522 | ||
251ac862 DV |
7523 | static void i8xx_compute_dpll(struct intel_crtc *crtc, |
7524 | struct intel_crtc_state *crtc_state, | |
ceb41007 | 7525 | intel_clock_t *reduced_clock) |
eb1cbe48 | 7526 | { |
f47709a9 | 7527 | struct drm_device *dev = crtc->base.dev; |
eb1cbe48 | 7528 | struct drm_i915_private *dev_priv = dev->dev_private; |
eb1cbe48 | 7529 | u32 dpll; |
190f68c5 | 7530 | struct dpll *clock = &crtc_state->dpll; |
eb1cbe48 | 7531 | |
190f68c5 | 7532 | i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock); |
2a8f64ca | 7533 | |
eb1cbe48 DV |
7534 | dpll = DPLL_VGA_MODE_DIS; |
7535 | ||
a93e255f | 7536 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { |
eb1cbe48 DV |
7537 | dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
7538 | } else { | |
7539 | if (clock->p1 == 2) | |
7540 | dpll |= PLL_P1_DIVIDE_BY_TWO; | |
7541 | else | |
7542 | dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT; | |
7543 | if (clock->p2 == 4) | |
7544 | dpll |= PLL_P2_DIVIDE_BY_4; | |
7545 | } | |
7546 | ||
a93e255f | 7547 | if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO)) |
4a33e48d DV |
7548 | dpll |= DPLL_DVO_2X_MODE; |
7549 | ||
a93e255f | 7550 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) && |
ceb41007 | 7551 | intel_panel_use_ssc(dev_priv)) |
eb1cbe48 DV |
7552 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
7553 | else | |
7554 | dpll |= PLL_REF_INPUT_DREFCLK; | |
7555 | ||
7556 | dpll |= DPLL_VCO_ENABLE; | |
190f68c5 | 7557 | crtc_state->dpll_hw_state.dpll = dpll; |
eb1cbe48 DV |
7558 | } |
7559 | ||
8a654f3b | 7560 | static void intel_set_pipe_timings(struct intel_crtc *intel_crtc) |
b0e77b9c PZ |
7561 | { |
7562 | struct drm_device *dev = intel_crtc->base.dev; | |
7563 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7564 | enum pipe pipe = intel_crtc->pipe; | |
6e3c9717 | 7565 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
7c5f93b0 | 7566 | const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode; |
1caea6e9 VS |
7567 | uint32_t crtc_vtotal, crtc_vblank_end; |
7568 | int vsyncshift = 0; | |
4d8a62ea DV |
7569 | |
7570 | /* We need to be careful not to changed the adjusted mode, for otherwise | |
7571 | * the hw state checker will get angry at the mismatch. */ | |
7572 | crtc_vtotal = adjusted_mode->crtc_vtotal; | |
7573 | crtc_vblank_end = adjusted_mode->crtc_vblank_end; | |
b0e77b9c | 7574 | |
609aeaca | 7575 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { |
b0e77b9c | 7576 | /* the chip adds 2 halflines automatically */ |
4d8a62ea DV |
7577 | crtc_vtotal -= 1; |
7578 | crtc_vblank_end -= 1; | |
609aeaca | 7579 | |
409ee761 | 7580 | if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO)) |
609aeaca VS |
7581 | vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2; |
7582 | else | |
7583 | vsyncshift = adjusted_mode->crtc_hsync_start - | |
7584 | adjusted_mode->crtc_htotal / 2; | |
1caea6e9 VS |
7585 | if (vsyncshift < 0) |
7586 | vsyncshift += adjusted_mode->crtc_htotal; | |
b0e77b9c PZ |
7587 | } |
7588 | ||
7589 | if (INTEL_INFO(dev)->gen > 3) | |
fe2b8f9d | 7590 | I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift); |
b0e77b9c | 7591 | |
fe2b8f9d | 7592 | I915_WRITE(HTOTAL(cpu_transcoder), |
b0e77b9c PZ |
7593 | (adjusted_mode->crtc_hdisplay - 1) | |
7594 | ((adjusted_mode->crtc_htotal - 1) << 16)); | |
fe2b8f9d | 7595 | I915_WRITE(HBLANK(cpu_transcoder), |
b0e77b9c PZ |
7596 | (adjusted_mode->crtc_hblank_start - 1) | |
7597 | ((adjusted_mode->crtc_hblank_end - 1) << 16)); | |
fe2b8f9d | 7598 | I915_WRITE(HSYNC(cpu_transcoder), |
b0e77b9c PZ |
7599 | (adjusted_mode->crtc_hsync_start - 1) | |
7600 | ((adjusted_mode->crtc_hsync_end - 1) << 16)); | |
7601 | ||
fe2b8f9d | 7602 | I915_WRITE(VTOTAL(cpu_transcoder), |
b0e77b9c | 7603 | (adjusted_mode->crtc_vdisplay - 1) | |
4d8a62ea | 7604 | ((crtc_vtotal - 1) << 16)); |
fe2b8f9d | 7605 | I915_WRITE(VBLANK(cpu_transcoder), |
b0e77b9c | 7606 | (adjusted_mode->crtc_vblank_start - 1) | |
4d8a62ea | 7607 | ((crtc_vblank_end - 1) << 16)); |
fe2b8f9d | 7608 | I915_WRITE(VSYNC(cpu_transcoder), |
b0e77b9c PZ |
7609 | (adjusted_mode->crtc_vsync_start - 1) | |
7610 | ((adjusted_mode->crtc_vsync_end - 1) << 16)); | |
7611 | ||
b5e508d4 PZ |
7612 | /* Workaround: when the EDP input selection is B, the VTOTAL_B must be |
7613 | * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is | |
7614 | * documented on the DDI_FUNC_CTL register description, EDP Input Select | |
7615 | * bits. */ | |
7616 | if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP && | |
7617 | (pipe == PIPE_B || pipe == PIPE_C)) | |
7618 | I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder))); | |
7619 | ||
bc58be60 JN |
7620 | } |
7621 | ||
7622 | static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc) | |
7623 | { | |
7624 | struct drm_device *dev = intel_crtc->base.dev; | |
7625 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7626 | enum pipe pipe = intel_crtc->pipe; | |
7627 | ||
b0e77b9c PZ |
7628 | /* pipesrc controls the size that is scaled from, which should |
7629 | * always be the user's requested size. | |
7630 | */ | |
7631 | I915_WRITE(PIPESRC(pipe), | |
6e3c9717 ACO |
7632 | ((intel_crtc->config->pipe_src_w - 1) << 16) | |
7633 | (intel_crtc->config->pipe_src_h - 1)); | |
b0e77b9c PZ |
7634 | } |
7635 | ||
1bd1bd80 | 7636 | static void intel_get_pipe_timings(struct intel_crtc *crtc, |
5cec258b | 7637 | struct intel_crtc_state *pipe_config) |
1bd1bd80 DV |
7638 | { |
7639 | struct drm_device *dev = crtc->base.dev; | |
7640 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7641 | enum transcoder cpu_transcoder = pipe_config->cpu_transcoder; | |
7642 | uint32_t tmp; | |
7643 | ||
7644 | tmp = I915_READ(HTOTAL(cpu_transcoder)); | |
2d112de7 ACO |
7645 | pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1; |
7646 | pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1; | |
1bd1bd80 | 7647 | tmp = I915_READ(HBLANK(cpu_transcoder)); |
2d112de7 ACO |
7648 | pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1; |
7649 | pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1; | |
1bd1bd80 | 7650 | tmp = I915_READ(HSYNC(cpu_transcoder)); |
2d112de7 ACO |
7651 | pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1; |
7652 | pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1; | |
1bd1bd80 DV |
7653 | |
7654 | tmp = I915_READ(VTOTAL(cpu_transcoder)); | |
2d112de7 ACO |
7655 | pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1; |
7656 | pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1; | |
1bd1bd80 | 7657 | tmp = I915_READ(VBLANK(cpu_transcoder)); |
2d112de7 ACO |
7658 | pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1; |
7659 | pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1; | |
1bd1bd80 | 7660 | tmp = I915_READ(VSYNC(cpu_transcoder)); |
2d112de7 ACO |
7661 | pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1; |
7662 | pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1; | |
1bd1bd80 DV |
7663 | |
7664 | if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) { | |
2d112de7 ACO |
7665 | pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE; |
7666 | pipe_config->base.adjusted_mode.crtc_vtotal += 1; | |
7667 | pipe_config->base.adjusted_mode.crtc_vblank_end += 1; | |
1bd1bd80 | 7668 | } |
bc58be60 JN |
7669 | } |
7670 | ||
7671 | static void intel_get_pipe_src_size(struct intel_crtc *crtc, | |
7672 | struct intel_crtc_state *pipe_config) | |
7673 | { | |
7674 | struct drm_device *dev = crtc->base.dev; | |
7675 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7676 | u32 tmp; | |
1bd1bd80 DV |
7677 | |
7678 | tmp = I915_READ(PIPESRC(crtc->pipe)); | |
37327abd VS |
7679 | pipe_config->pipe_src_h = (tmp & 0xffff) + 1; |
7680 | pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1; | |
7681 | ||
2d112de7 ACO |
7682 | pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h; |
7683 | pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w; | |
1bd1bd80 DV |
7684 | } |
7685 | ||
f6a83288 | 7686 | void intel_mode_from_pipe_config(struct drm_display_mode *mode, |
5cec258b | 7687 | struct intel_crtc_state *pipe_config) |
babea61d | 7688 | { |
2d112de7 ACO |
7689 | mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay; |
7690 | mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal; | |
7691 | mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start; | |
7692 | mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end; | |
babea61d | 7693 | |
2d112de7 ACO |
7694 | mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay; |
7695 | mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal; | |
7696 | mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start; | |
7697 | mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end; | |
babea61d | 7698 | |
2d112de7 | 7699 | mode->flags = pipe_config->base.adjusted_mode.flags; |
cd13f5ab | 7700 | mode->type = DRM_MODE_TYPE_DRIVER; |
babea61d | 7701 | |
2d112de7 ACO |
7702 | mode->clock = pipe_config->base.adjusted_mode.crtc_clock; |
7703 | mode->flags |= pipe_config->base.adjusted_mode.flags; | |
cd13f5ab ML |
7704 | |
7705 | mode->hsync = drm_mode_hsync(mode); | |
7706 | mode->vrefresh = drm_mode_vrefresh(mode); | |
7707 | drm_mode_set_name(mode); | |
babea61d JB |
7708 | } |
7709 | ||
84b046f3 DV |
7710 | static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc) |
7711 | { | |
7712 | struct drm_device *dev = intel_crtc->base.dev; | |
7713 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7714 | uint32_t pipeconf; | |
7715 | ||
9f11a9e4 | 7716 | pipeconf = 0; |
84b046f3 | 7717 | |
b6b5d049 VS |
7718 | if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) || |
7719 | (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)) | |
7720 | pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE; | |
67c72a12 | 7721 | |
6e3c9717 | 7722 | if (intel_crtc->config->double_wide) |
cf532bb2 | 7723 | pipeconf |= PIPECONF_DOUBLE_WIDE; |
84b046f3 | 7724 | |
ff9ce46e | 7725 | /* only g4x and later have fancy bpc/dither controls */ |
666a4537 | 7726 | if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
ff9ce46e | 7727 | /* Bspec claims that we can't use dithering for 30bpp pipes. */ |
6e3c9717 | 7728 | if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30) |
ff9ce46e | 7729 | pipeconf |= PIPECONF_DITHER_EN | |
84b046f3 | 7730 | PIPECONF_DITHER_TYPE_SP; |
84b046f3 | 7731 | |
6e3c9717 | 7732 | switch (intel_crtc->config->pipe_bpp) { |
ff9ce46e DV |
7733 | case 18: |
7734 | pipeconf |= PIPECONF_6BPC; | |
7735 | break; | |
7736 | case 24: | |
7737 | pipeconf |= PIPECONF_8BPC; | |
7738 | break; | |
7739 | case 30: | |
7740 | pipeconf |= PIPECONF_10BPC; | |
7741 | break; | |
7742 | default: | |
7743 | /* Case prevented by intel_choose_pipe_bpp_dither. */ | |
7744 | BUG(); | |
84b046f3 DV |
7745 | } |
7746 | } | |
7747 | ||
7748 | if (HAS_PIPE_CXSR(dev)) { | |
7749 | if (intel_crtc->lowfreq_avail) { | |
7750 | DRM_DEBUG_KMS("enabling CxSR downclocking\n"); | |
7751 | pipeconf |= PIPECONF_CXSR_DOWNCLOCK; | |
7752 | } else { | |
7753 | DRM_DEBUG_KMS("disabling CxSR downclocking\n"); | |
84b046f3 DV |
7754 | } |
7755 | } | |
7756 | ||
6e3c9717 | 7757 | if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) { |
efc2cfff | 7758 | if (INTEL_INFO(dev)->gen < 4 || |
409ee761 | 7759 | intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO)) |
efc2cfff VS |
7760 | pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION; |
7761 | else | |
7762 | pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT; | |
7763 | } else | |
84b046f3 DV |
7764 | pipeconf |= PIPECONF_PROGRESSIVE; |
7765 | ||
666a4537 WB |
7766 | if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) && |
7767 | intel_crtc->config->limited_color_range) | |
9f11a9e4 | 7768 | pipeconf |= PIPECONF_COLOR_RANGE_SELECT; |
9c8e09b7 | 7769 | |
84b046f3 DV |
7770 | I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf); |
7771 | POSTING_READ(PIPECONF(intel_crtc->pipe)); | |
7772 | } | |
7773 | ||
81c97f52 ACO |
7774 | static int i8xx_crtc_compute_clock(struct intel_crtc *crtc, |
7775 | struct intel_crtc_state *crtc_state) | |
7776 | { | |
7777 | struct drm_device *dev = crtc->base.dev; | |
7778 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7779 | const intel_limit_t *limit; | |
7780 | int refclk = 48000; | |
7781 | ||
7782 | memset(&crtc_state->dpll_hw_state, 0, | |
7783 | sizeof(crtc_state->dpll_hw_state)); | |
7784 | ||
7785 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { | |
7786 | if (intel_panel_use_ssc(dev_priv)) { | |
7787 | refclk = dev_priv->vbt.lvds_ssc_freq; | |
7788 | DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk); | |
7789 | } | |
7790 | ||
7791 | limit = &intel_limits_i8xx_lvds; | |
7792 | } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO)) { | |
7793 | limit = &intel_limits_i8xx_dvo; | |
7794 | } else { | |
7795 | limit = &intel_limits_i8xx_dac; | |
7796 | } | |
7797 | ||
7798 | if (!crtc_state->clock_set && | |
7799 | !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock, | |
7800 | refclk, NULL, &crtc_state->dpll)) { | |
7801 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); | |
7802 | return -EINVAL; | |
7803 | } | |
7804 | ||
7805 | i8xx_compute_dpll(crtc, crtc_state, NULL); | |
7806 | ||
7807 | return 0; | |
7808 | } | |
7809 | ||
19ec6693 ACO |
7810 | static int g4x_crtc_compute_clock(struct intel_crtc *crtc, |
7811 | struct intel_crtc_state *crtc_state) | |
7812 | { | |
7813 | struct drm_device *dev = crtc->base.dev; | |
7814 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7815 | const intel_limit_t *limit; | |
7816 | int refclk = 96000; | |
7817 | ||
7818 | memset(&crtc_state->dpll_hw_state, 0, | |
7819 | sizeof(crtc_state->dpll_hw_state)); | |
7820 | ||
7821 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { | |
7822 | if (intel_panel_use_ssc(dev_priv)) { | |
7823 | refclk = dev_priv->vbt.lvds_ssc_freq; | |
7824 | DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk); | |
7825 | } | |
7826 | ||
7827 | if (intel_is_dual_link_lvds(dev)) | |
7828 | limit = &intel_limits_g4x_dual_channel_lvds; | |
7829 | else | |
7830 | limit = &intel_limits_g4x_single_channel_lvds; | |
7831 | } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI) || | |
7832 | intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_ANALOG)) { | |
7833 | limit = &intel_limits_g4x_hdmi; | |
7834 | } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO)) { | |
7835 | limit = &intel_limits_g4x_sdvo; | |
7836 | } else { | |
7837 | /* The option is for other outputs */ | |
7838 | limit = &intel_limits_i9xx_sdvo; | |
7839 | } | |
7840 | ||
7841 | if (!crtc_state->clock_set && | |
7842 | !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock, | |
7843 | refclk, NULL, &crtc_state->dpll)) { | |
7844 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); | |
7845 | return -EINVAL; | |
7846 | } | |
7847 | ||
7848 | i9xx_compute_dpll(crtc, crtc_state, NULL); | |
7849 | ||
7850 | return 0; | |
7851 | } | |
7852 | ||
70e8aa21 ACO |
7853 | static int pnv_crtc_compute_clock(struct intel_crtc *crtc, |
7854 | struct intel_crtc_state *crtc_state) | |
7855 | { | |
7856 | struct drm_device *dev = crtc->base.dev; | |
7857 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7858 | const intel_limit_t *limit; | |
7859 | int refclk = 96000; | |
7860 | ||
7861 | memset(&crtc_state->dpll_hw_state, 0, | |
7862 | sizeof(crtc_state->dpll_hw_state)); | |
7863 | ||
7864 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { | |
7865 | if (intel_panel_use_ssc(dev_priv)) { | |
7866 | refclk = dev_priv->vbt.lvds_ssc_freq; | |
7867 | DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk); | |
7868 | } | |
7869 | ||
7870 | limit = &intel_limits_pineview_lvds; | |
7871 | } else { | |
7872 | limit = &intel_limits_pineview_sdvo; | |
7873 | } | |
7874 | ||
7875 | if (!crtc_state->clock_set && | |
7876 | !pnv_find_best_dpll(limit, crtc_state, crtc_state->port_clock, | |
7877 | refclk, NULL, &crtc_state->dpll)) { | |
7878 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); | |
7879 | return -EINVAL; | |
7880 | } | |
7881 | ||
7882 | i9xx_compute_dpll(crtc, crtc_state, NULL); | |
7883 | ||
7884 | return 0; | |
7885 | } | |
7886 | ||
190f68c5 ACO |
7887 | static int i9xx_crtc_compute_clock(struct intel_crtc *crtc, |
7888 | struct intel_crtc_state *crtc_state) | |
79e53945 | 7889 | { |
c7653199 | 7890 | struct drm_device *dev = crtc->base.dev; |
79e53945 | 7891 | struct drm_i915_private *dev_priv = dev->dev_private; |
d4906093 | 7892 | const intel_limit_t *limit; |
81c97f52 | 7893 | int refclk = 96000; |
79e53945 | 7894 | |
dd3cd74a ACO |
7895 | memset(&crtc_state->dpll_hw_state, 0, |
7896 | sizeof(crtc_state->dpll_hw_state)); | |
7897 | ||
70e8aa21 ACO |
7898 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { |
7899 | if (intel_panel_use_ssc(dev_priv)) { | |
7900 | refclk = dev_priv->vbt.lvds_ssc_freq; | |
7901 | DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk); | |
7902 | } | |
43565a06 | 7903 | |
70e8aa21 ACO |
7904 | limit = &intel_limits_i9xx_lvds; |
7905 | } else { | |
7906 | limit = &intel_limits_i9xx_sdvo; | |
81c97f52 | 7907 | } |
79e53945 | 7908 | |
70e8aa21 ACO |
7909 | if (!crtc_state->clock_set && |
7910 | !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock, | |
7911 | refclk, NULL, &crtc_state->dpll)) { | |
7912 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); | |
7913 | return -EINVAL; | |
f47709a9 | 7914 | } |
7026d4ac | 7915 | |
81c97f52 | 7916 | i9xx_compute_dpll(crtc, crtc_state, NULL); |
79e53945 | 7917 | |
c8f7a0db | 7918 | return 0; |
f564048e EA |
7919 | } |
7920 | ||
65b3d6a9 ACO |
7921 | static int chv_crtc_compute_clock(struct intel_crtc *crtc, |
7922 | struct intel_crtc_state *crtc_state) | |
7923 | { | |
7924 | int refclk = 100000; | |
7925 | const intel_limit_t *limit = &intel_limits_chv; | |
7926 | ||
7927 | memset(&crtc_state->dpll_hw_state, 0, | |
7928 | sizeof(crtc_state->dpll_hw_state)); | |
7929 | ||
7930 | if (crtc_state->has_dsi_encoder) | |
7931 | return 0; | |
7932 | ||
7933 | if (!crtc_state->clock_set && | |
7934 | !chv_find_best_dpll(limit, crtc_state, crtc_state->port_clock, | |
7935 | refclk, NULL, &crtc_state->dpll)) { | |
7936 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); | |
7937 | return -EINVAL; | |
7938 | } | |
7939 | ||
7940 | chv_compute_dpll(crtc, crtc_state); | |
7941 | ||
7942 | return 0; | |
7943 | } | |
7944 | ||
7945 | static int vlv_crtc_compute_clock(struct intel_crtc *crtc, | |
7946 | struct intel_crtc_state *crtc_state) | |
7947 | { | |
7948 | int refclk = 100000; | |
7949 | const intel_limit_t *limit = &intel_limits_vlv; | |
7950 | ||
7951 | memset(&crtc_state->dpll_hw_state, 0, | |
7952 | sizeof(crtc_state->dpll_hw_state)); | |
7953 | ||
7954 | if (crtc_state->has_dsi_encoder) | |
7955 | return 0; | |
7956 | ||
7957 | if (!crtc_state->clock_set && | |
7958 | !vlv_find_best_dpll(limit, crtc_state, crtc_state->port_clock, | |
7959 | refclk, NULL, &crtc_state->dpll)) { | |
7960 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); | |
7961 | return -EINVAL; | |
7962 | } | |
7963 | ||
7964 | vlv_compute_dpll(crtc, crtc_state); | |
7965 | ||
7966 | return 0; | |
7967 | } | |
7968 | ||
2fa2fe9a | 7969 | static void i9xx_get_pfit_config(struct intel_crtc *crtc, |
5cec258b | 7970 | struct intel_crtc_state *pipe_config) |
2fa2fe9a DV |
7971 | { |
7972 | struct drm_device *dev = crtc->base.dev; | |
7973 | struct drm_i915_private *dev_priv = dev->dev_private; | |
7974 | uint32_t tmp; | |
7975 | ||
dc9e7dec VS |
7976 | if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev))) |
7977 | return; | |
7978 | ||
2fa2fe9a | 7979 | tmp = I915_READ(PFIT_CONTROL); |
06922821 DV |
7980 | if (!(tmp & PFIT_ENABLE)) |
7981 | return; | |
2fa2fe9a | 7982 | |
06922821 | 7983 | /* Check whether the pfit is attached to our pipe. */ |
2fa2fe9a DV |
7984 | if (INTEL_INFO(dev)->gen < 4) { |
7985 | if (crtc->pipe != PIPE_B) | |
7986 | return; | |
2fa2fe9a DV |
7987 | } else { |
7988 | if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT)) | |
7989 | return; | |
7990 | } | |
7991 | ||
06922821 | 7992 | pipe_config->gmch_pfit.control = tmp; |
2fa2fe9a DV |
7993 | pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS); |
7994 | if (INTEL_INFO(dev)->gen < 5) | |
7995 | pipe_config->gmch_pfit.lvds_border_bits = | |
7996 | I915_READ(LVDS) & LVDS_BORDER_ENABLE; | |
7997 | } | |
7998 | ||
acbec814 | 7999 | static void vlv_crtc_clock_get(struct intel_crtc *crtc, |
5cec258b | 8000 | struct intel_crtc_state *pipe_config) |
acbec814 JB |
8001 | { |
8002 | struct drm_device *dev = crtc->base.dev; | |
8003 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8004 | int pipe = pipe_config->cpu_transcoder; | |
8005 | intel_clock_t clock; | |
8006 | u32 mdiv; | |
662c6ecb | 8007 | int refclk = 100000; |
acbec814 | 8008 | |
f573de5a SK |
8009 | /* In case of MIPI DPLL will not even be used */ |
8010 | if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)) | |
8011 | return; | |
8012 | ||
a580516d | 8013 | mutex_lock(&dev_priv->sb_lock); |
ab3c759a | 8014 | mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe)); |
a580516d | 8015 | mutex_unlock(&dev_priv->sb_lock); |
acbec814 JB |
8016 | |
8017 | clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7; | |
8018 | clock.m2 = mdiv & DPIO_M2DIV_MASK; | |
8019 | clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf; | |
8020 | clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7; | |
8021 | clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f; | |
8022 | ||
dccbea3b | 8023 | pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock); |
acbec814 JB |
8024 | } |
8025 | ||
5724dbd1 DL |
8026 | static void |
8027 | i9xx_get_initial_plane_config(struct intel_crtc *crtc, | |
8028 | struct intel_initial_plane_config *plane_config) | |
1ad292b5 JB |
8029 | { |
8030 | struct drm_device *dev = crtc->base.dev; | |
8031 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8032 | u32 val, base, offset; | |
8033 | int pipe = crtc->pipe, plane = crtc->plane; | |
8034 | int fourcc, pixel_format; | |
6761dd31 | 8035 | unsigned int aligned_height; |
b113d5ee | 8036 | struct drm_framebuffer *fb; |
1b842c89 | 8037 | struct intel_framebuffer *intel_fb; |
1ad292b5 | 8038 | |
42a7b088 DL |
8039 | val = I915_READ(DSPCNTR(plane)); |
8040 | if (!(val & DISPLAY_PLANE_ENABLE)) | |
8041 | return; | |
8042 | ||
d9806c9f | 8043 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); |
1b842c89 | 8044 | if (!intel_fb) { |
1ad292b5 JB |
8045 | DRM_DEBUG_KMS("failed to alloc fb\n"); |
8046 | return; | |
8047 | } | |
8048 | ||
1b842c89 DL |
8049 | fb = &intel_fb->base; |
8050 | ||
18c5247e DV |
8051 | if (INTEL_INFO(dev)->gen >= 4) { |
8052 | if (val & DISPPLANE_TILED) { | |
49af449b | 8053 | plane_config->tiling = I915_TILING_X; |
18c5247e DV |
8054 | fb->modifier[0] = I915_FORMAT_MOD_X_TILED; |
8055 | } | |
8056 | } | |
1ad292b5 JB |
8057 | |
8058 | pixel_format = val & DISPPLANE_PIXFORMAT_MASK; | |
b35d63fa | 8059 | fourcc = i9xx_format_to_fourcc(pixel_format); |
b113d5ee DL |
8060 | fb->pixel_format = fourcc; |
8061 | fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8; | |
1ad292b5 JB |
8062 | |
8063 | if (INTEL_INFO(dev)->gen >= 4) { | |
49af449b | 8064 | if (plane_config->tiling) |
1ad292b5 JB |
8065 | offset = I915_READ(DSPTILEOFF(plane)); |
8066 | else | |
8067 | offset = I915_READ(DSPLINOFF(plane)); | |
8068 | base = I915_READ(DSPSURF(plane)) & 0xfffff000; | |
8069 | } else { | |
8070 | base = I915_READ(DSPADDR(plane)); | |
8071 | } | |
8072 | plane_config->base = base; | |
8073 | ||
8074 | val = I915_READ(PIPESRC(pipe)); | |
b113d5ee DL |
8075 | fb->width = ((val >> 16) & 0xfff) + 1; |
8076 | fb->height = ((val >> 0) & 0xfff) + 1; | |
1ad292b5 JB |
8077 | |
8078 | val = I915_READ(DSPSTRIDE(pipe)); | |
b113d5ee | 8079 | fb->pitches[0] = val & 0xffffffc0; |
1ad292b5 | 8080 | |
b113d5ee | 8081 | aligned_height = intel_fb_align_height(dev, fb->height, |
091df6cb DV |
8082 | fb->pixel_format, |
8083 | fb->modifier[0]); | |
1ad292b5 | 8084 | |
f37b5c2b | 8085 | plane_config->size = fb->pitches[0] * aligned_height; |
1ad292b5 | 8086 | |
2844a921 DL |
8087 | DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n", |
8088 | pipe_name(pipe), plane, fb->width, fb->height, | |
8089 | fb->bits_per_pixel, base, fb->pitches[0], | |
8090 | plane_config->size); | |
1ad292b5 | 8091 | |
2d14030b | 8092 | plane_config->fb = intel_fb; |
1ad292b5 JB |
8093 | } |
8094 | ||
70b23a98 | 8095 | static void chv_crtc_clock_get(struct intel_crtc *crtc, |
5cec258b | 8096 | struct intel_crtc_state *pipe_config) |
70b23a98 VS |
8097 | { |
8098 | struct drm_device *dev = crtc->base.dev; | |
8099 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8100 | int pipe = pipe_config->cpu_transcoder; | |
8101 | enum dpio_channel port = vlv_pipe_to_channel(pipe); | |
8102 | intel_clock_t clock; | |
0d7b6b11 | 8103 | u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3; |
70b23a98 VS |
8104 | int refclk = 100000; |
8105 | ||
a580516d | 8106 | mutex_lock(&dev_priv->sb_lock); |
70b23a98 VS |
8107 | cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port)); |
8108 | pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port)); | |
8109 | pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port)); | |
8110 | pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port)); | |
0d7b6b11 | 8111 | pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port)); |
a580516d | 8112 | mutex_unlock(&dev_priv->sb_lock); |
70b23a98 VS |
8113 | |
8114 | clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0; | |
0d7b6b11 ID |
8115 | clock.m2 = (pll_dw0 & 0xff) << 22; |
8116 | if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN) | |
8117 | clock.m2 |= pll_dw2 & 0x3fffff; | |
70b23a98 VS |
8118 | clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf; |
8119 | clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7; | |
8120 | clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f; | |
8121 | ||
dccbea3b | 8122 | pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock); |
70b23a98 VS |
8123 | } |
8124 | ||
0e8ffe1b | 8125 | static bool i9xx_get_pipe_config(struct intel_crtc *crtc, |
5cec258b | 8126 | struct intel_crtc_state *pipe_config) |
0e8ffe1b DV |
8127 | { |
8128 | struct drm_device *dev = crtc->base.dev; | |
8129 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1729050e | 8130 | enum intel_display_power_domain power_domain; |
0e8ffe1b | 8131 | uint32_t tmp; |
1729050e | 8132 | bool ret; |
0e8ffe1b | 8133 | |
1729050e ID |
8134 | power_domain = POWER_DOMAIN_PIPE(crtc->pipe); |
8135 | if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) | |
b5482bd0 ID |
8136 | return false; |
8137 | ||
e143a21c | 8138 | pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe; |
8106ddbd | 8139 | pipe_config->shared_dpll = NULL; |
eccb140b | 8140 | |
1729050e ID |
8141 | ret = false; |
8142 | ||
0e8ffe1b DV |
8143 | tmp = I915_READ(PIPECONF(crtc->pipe)); |
8144 | if (!(tmp & PIPECONF_ENABLE)) | |
1729050e | 8145 | goto out; |
0e8ffe1b | 8146 | |
666a4537 | 8147 | if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
42571aef VS |
8148 | switch (tmp & PIPECONF_BPC_MASK) { |
8149 | case PIPECONF_6BPC: | |
8150 | pipe_config->pipe_bpp = 18; | |
8151 | break; | |
8152 | case PIPECONF_8BPC: | |
8153 | pipe_config->pipe_bpp = 24; | |
8154 | break; | |
8155 | case PIPECONF_10BPC: | |
8156 | pipe_config->pipe_bpp = 30; | |
8157 | break; | |
8158 | default: | |
8159 | break; | |
8160 | } | |
8161 | } | |
8162 | ||
666a4537 WB |
8163 | if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) && |
8164 | (tmp & PIPECONF_COLOR_RANGE_SELECT)) | |
b5a9fa09 DV |
8165 | pipe_config->limited_color_range = true; |
8166 | ||
282740f7 VS |
8167 | if (INTEL_INFO(dev)->gen < 4) |
8168 | pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE; | |
8169 | ||
1bd1bd80 | 8170 | intel_get_pipe_timings(crtc, pipe_config); |
bc58be60 | 8171 | intel_get_pipe_src_size(crtc, pipe_config); |
1bd1bd80 | 8172 | |
2fa2fe9a DV |
8173 | i9xx_get_pfit_config(crtc, pipe_config); |
8174 | ||
6c49f241 | 8175 | if (INTEL_INFO(dev)->gen >= 4) { |
c231775c VS |
8176 | /* No way to read it out on pipes B and C */ |
8177 | if (IS_CHERRYVIEW(dev) && crtc->pipe != PIPE_A) | |
8178 | tmp = dev_priv->chv_dpll_md[crtc->pipe]; | |
8179 | else | |
8180 | tmp = I915_READ(DPLL_MD(crtc->pipe)); | |
6c49f241 DV |
8181 | pipe_config->pixel_multiplier = |
8182 | ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK) | |
8183 | >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1; | |
8bcc2795 | 8184 | pipe_config->dpll_hw_state.dpll_md = tmp; |
6c49f241 DV |
8185 | } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) { |
8186 | tmp = I915_READ(DPLL(crtc->pipe)); | |
8187 | pipe_config->pixel_multiplier = | |
8188 | ((tmp & SDVO_MULTIPLIER_MASK) | |
8189 | >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1; | |
8190 | } else { | |
8191 | /* Note that on i915G/GM the pixel multiplier is in the sdvo | |
8192 | * port and will be fixed up in the encoder->get_config | |
8193 | * function. */ | |
8194 | pipe_config->pixel_multiplier = 1; | |
8195 | } | |
8bcc2795 | 8196 | pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe)); |
666a4537 | 8197 | if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) { |
1c4e0274 VS |
8198 | /* |
8199 | * DPLL_DVO_2X_MODE must be enabled for both DPLLs | |
8200 | * on 830. Filter it out here so that we don't | |
8201 | * report errors due to that. | |
8202 | */ | |
8203 | if (IS_I830(dev)) | |
8204 | pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE; | |
8205 | ||
8bcc2795 DV |
8206 | pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe)); |
8207 | pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe)); | |
165e901c VS |
8208 | } else { |
8209 | /* Mask out read-only status bits. */ | |
8210 | pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV | | |
8211 | DPLL_PORTC_READY_MASK | | |
8212 | DPLL_PORTB_READY_MASK); | |
8bcc2795 | 8213 | } |
6c49f241 | 8214 | |
70b23a98 VS |
8215 | if (IS_CHERRYVIEW(dev)) |
8216 | chv_crtc_clock_get(crtc, pipe_config); | |
8217 | else if (IS_VALLEYVIEW(dev)) | |
acbec814 JB |
8218 | vlv_crtc_clock_get(crtc, pipe_config); |
8219 | else | |
8220 | i9xx_crtc_clock_get(crtc, pipe_config); | |
18442d08 | 8221 | |
0f64614d VS |
8222 | /* |
8223 | * Normally the dotclock is filled in by the encoder .get_config() | |
8224 | * but in case the pipe is enabled w/o any ports we need a sane | |
8225 | * default. | |
8226 | */ | |
8227 | pipe_config->base.adjusted_mode.crtc_clock = | |
8228 | pipe_config->port_clock / pipe_config->pixel_multiplier; | |
8229 | ||
1729050e ID |
8230 | ret = true; |
8231 | ||
8232 | out: | |
8233 | intel_display_power_put(dev_priv, power_domain); | |
8234 | ||
8235 | return ret; | |
0e8ffe1b DV |
8236 | } |
8237 | ||
dde86e2d | 8238 | static void ironlake_init_pch_refclk(struct drm_device *dev) |
13d83a67 JB |
8239 | { |
8240 | struct drm_i915_private *dev_priv = dev->dev_private; | |
13d83a67 | 8241 | struct intel_encoder *encoder; |
74cfd7ac | 8242 | u32 val, final; |
13d83a67 | 8243 | bool has_lvds = false; |
199e5d79 | 8244 | bool has_cpu_edp = false; |
199e5d79 | 8245 | bool has_panel = false; |
99eb6a01 KP |
8246 | bool has_ck505 = false; |
8247 | bool can_ssc = false; | |
13d83a67 JB |
8248 | |
8249 | /* We need to take the global config into account */ | |
b2784e15 | 8250 | for_each_intel_encoder(dev, encoder) { |
199e5d79 KP |
8251 | switch (encoder->type) { |
8252 | case INTEL_OUTPUT_LVDS: | |
8253 | has_panel = true; | |
8254 | has_lvds = true; | |
8255 | break; | |
8256 | case INTEL_OUTPUT_EDP: | |
8257 | has_panel = true; | |
2de6905f | 8258 | if (enc_to_dig_port(&encoder->base)->port == PORT_A) |
199e5d79 KP |
8259 | has_cpu_edp = true; |
8260 | break; | |
6847d71b PZ |
8261 | default: |
8262 | break; | |
13d83a67 JB |
8263 | } |
8264 | } | |
8265 | ||
99eb6a01 | 8266 | if (HAS_PCH_IBX(dev)) { |
41aa3448 | 8267 | has_ck505 = dev_priv->vbt.display_clock_mode; |
99eb6a01 KP |
8268 | can_ssc = has_ck505; |
8269 | } else { | |
8270 | has_ck505 = false; | |
8271 | can_ssc = true; | |
8272 | } | |
8273 | ||
2de6905f ID |
8274 | DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n", |
8275 | has_panel, has_lvds, has_ck505); | |
13d83a67 JB |
8276 | |
8277 | /* Ironlake: try to setup display ref clock before DPLL | |
8278 | * enabling. This is only under driver's control after | |
8279 | * PCH B stepping, previous chipset stepping should be | |
8280 | * ignoring this setting. | |
8281 | */ | |
74cfd7ac CW |
8282 | val = I915_READ(PCH_DREF_CONTROL); |
8283 | ||
8284 | /* As we must carefully and slowly disable/enable each source in turn, | |
8285 | * compute the final state we want first and check if we need to | |
8286 | * make any changes at all. | |
8287 | */ | |
8288 | final = val; | |
8289 | final &= ~DREF_NONSPREAD_SOURCE_MASK; | |
8290 | if (has_ck505) | |
8291 | final |= DREF_NONSPREAD_CK505_ENABLE; | |
8292 | else | |
8293 | final |= DREF_NONSPREAD_SOURCE_ENABLE; | |
8294 | ||
8295 | final &= ~DREF_SSC_SOURCE_MASK; | |
8296 | final &= ~DREF_CPU_SOURCE_OUTPUT_MASK; | |
8297 | final &= ~DREF_SSC1_ENABLE; | |
8298 | ||
8299 | if (has_panel) { | |
8300 | final |= DREF_SSC_SOURCE_ENABLE; | |
8301 | ||
8302 | if (intel_panel_use_ssc(dev_priv) && can_ssc) | |
8303 | final |= DREF_SSC1_ENABLE; | |
8304 | ||
8305 | if (has_cpu_edp) { | |
8306 | if (intel_panel_use_ssc(dev_priv) && can_ssc) | |
8307 | final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; | |
8308 | else | |
8309 | final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; | |
8310 | } else | |
8311 | final |= DREF_CPU_SOURCE_OUTPUT_DISABLE; | |
8312 | } else { | |
8313 | final |= DREF_SSC_SOURCE_DISABLE; | |
8314 | final |= DREF_CPU_SOURCE_OUTPUT_DISABLE; | |
8315 | } | |
8316 | ||
8317 | if (final == val) | |
8318 | return; | |
8319 | ||
13d83a67 | 8320 | /* Always enable nonspread source */ |
74cfd7ac | 8321 | val &= ~DREF_NONSPREAD_SOURCE_MASK; |
13d83a67 | 8322 | |
99eb6a01 | 8323 | if (has_ck505) |
74cfd7ac | 8324 | val |= DREF_NONSPREAD_CK505_ENABLE; |
99eb6a01 | 8325 | else |
74cfd7ac | 8326 | val |= DREF_NONSPREAD_SOURCE_ENABLE; |
13d83a67 | 8327 | |
199e5d79 | 8328 | if (has_panel) { |
74cfd7ac CW |
8329 | val &= ~DREF_SSC_SOURCE_MASK; |
8330 | val |= DREF_SSC_SOURCE_ENABLE; | |
13d83a67 | 8331 | |
199e5d79 | 8332 | /* SSC must be turned on before enabling the CPU output */ |
99eb6a01 | 8333 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
199e5d79 | 8334 | DRM_DEBUG_KMS("Using SSC on panel\n"); |
74cfd7ac | 8335 | val |= DREF_SSC1_ENABLE; |
e77166b5 | 8336 | } else |
74cfd7ac | 8337 | val &= ~DREF_SSC1_ENABLE; |
199e5d79 KP |
8338 | |
8339 | /* Get SSC going before enabling the outputs */ | |
74cfd7ac | 8340 | I915_WRITE(PCH_DREF_CONTROL, val); |
199e5d79 KP |
8341 | POSTING_READ(PCH_DREF_CONTROL); |
8342 | udelay(200); | |
8343 | ||
74cfd7ac | 8344 | val &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
13d83a67 JB |
8345 | |
8346 | /* Enable CPU source on CPU attached eDP */ | |
199e5d79 | 8347 | if (has_cpu_edp) { |
99eb6a01 | 8348 | if (intel_panel_use_ssc(dev_priv) && can_ssc) { |
199e5d79 | 8349 | DRM_DEBUG_KMS("Using SSC on eDP\n"); |
74cfd7ac | 8350 | val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; |
eba905b2 | 8351 | } else |
74cfd7ac | 8352 | val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; |
199e5d79 | 8353 | } else |
74cfd7ac | 8354 | val |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
199e5d79 | 8355 | |
74cfd7ac | 8356 | I915_WRITE(PCH_DREF_CONTROL, val); |
199e5d79 KP |
8357 | POSTING_READ(PCH_DREF_CONTROL); |
8358 | udelay(200); | |
8359 | } else { | |
8360 | DRM_DEBUG_KMS("Disabling SSC entirely\n"); | |
8361 | ||
74cfd7ac | 8362 | val &= ~DREF_CPU_SOURCE_OUTPUT_MASK; |
199e5d79 KP |
8363 | |
8364 | /* Turn off CPU output */ | |
74cfd7ac | 8365 | val |= DREF_CPU_SOURCE_OUTPUT_DISABLE; |
199e5d79 | 8366 | |
74cfd7ac | 8367 | I915_WRITE(PCH_DREF_CONTROL, val); |
199e5d79 KP |
8368 | POSTING_READ(PCH_DREF_CONTROL); |
8369 | udelay(200); | |
8370 | ||
8371 | /* Turn off the SSC source */ | |
74cfd7ac CW |
8372 | val &= ~DREF_SSC_SOURCE_MASK; |
8373 | val |= DREF_SSC_SOURCE_DISABLE; | |
199e5d79 KP |
8374 | |
8375 | /* Turn off SSC1 */ | |
74cfd7ac | 8376 | val &= ~DREF_SSC1_ENABLE; |
199e5d79 | 8377 | |
74cfd7ac | 8378 | I915_WRITE(PCH_DREF_CONTROL, val); |
13d83a67 JB |
8379 | POSTING_READ(PCH_DREF_CONTROL); |
8380 | udelay(200); | |
8381 | } | |
74cfd7ac CW |
8382 | |
8383 | BUG_ON(val != final); | |
13d83a67 JB |
8384 | } |
8385 | ||
f31f2d55 | 8386 | static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv) |
dde86e2d | 8387 | { |
f31f2d55 | 8388 | uint32_t tmp; |
dde86e2d | 8389 | |
0ff066a9 PZ |
8390 | tmp = I915_READ(SOUTH_CHICKEN2); |
8391 | tmp |= FDI_MPHY_IOSFSB_RESET_CTL; | |
8392 | I915_WRITE(SOUTH_CHICKEN2, tmp); | |
dde86e2d | 8393 | |
0ff066a9 PZ |
8394 | if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) & |
8395 | FDI_MPHY_IOSFSB_RESET_STATUS, 100)) | |
8396 | DRM_ERROR("FDI mPHY reset assert timeout\n"); | |
dde86e2d | 8397 | |
0ff066a9 PZ |
8398 | tmp = I915_READ(SOUTH_CHICKEN2); |
8399 | tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL; | |
8400 | I915_WRITE(SOUTH_CHICKEN2, tmp); | |
dde86e2d | 8401 | |
0ff066a9 PZ |
8402 | if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) & |
8403 | FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100)) | |
8404 | DRM_ERROR("FDI mPHY reset de-assert timeout\n"); | |
f31f2d55 PZ |
8405 | } |
8406 | ||
8407 | /* WaMPhyProgramming:hsw */ | |
8408 | static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv) | |
8409 | { | |
8410 | uint32_t tmp; | |
dde86e2d PZ |
8411 | |
8412 | tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY); | |
8413 | tmp &= ~(0xFF << 24); | |
8414 | tmp |= (0x12 << 24); | |
8415 | intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY); | |
8416 | ||
dde86e2d PZ |
8417 | tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY); |
8418 | tmp |= (1 << 11); | |
8419 | intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY); | |
8420 | ||
8421 | tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY); | |
8422 | tmp |= (1 << 11); | |
8423 | intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY); | |
8424 | ||
dde86e2d PZ |
8425 | tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY); |
8426 | tmp |= (1 << 24) | (1 << 21) | (1 << 18); | |
8427 | intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY); | |
8428 | ||
8429 | tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY); | |
8430 | tmp |= (1 << 24) | (1 << 21) | (1 << 18); | |
8431 | intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY); | |
8432 | ||
0ff066a9 PZ |
8433 | tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY); |
8434 | tmp &= ~(7 << 13); | |
8435 | tmp |= (5 << 13); | |
8436 | intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY); | |
dde86e2d | 8437 | |
0ff066a9 PZ |
8438 | tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY); |
8439 | tmp &= ~(7 << 13); | |
8440 | tmp |= (5 << 13); | |
8441 | intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY); | |
dde86e2d PZ |
8442 | |
8443 | tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY); | |
8444 | tmp &= ~0xFF; | |
8445 | tmp |= 0x1C; | |
8446 | intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY); | |
8447 | ||
8448 | tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY); | |
8449 | tmp &= ~0xFF; | |
8450 | tmp |= 0x1C; | |
8451 | intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY); | |
8452 | ||
8453 | tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY); | |
8454 | tmp &= ~(0xFF << 16); | |
8455 | tmp |= (0x1C << 16); | |
8456 | intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY); | |
8457 | ||
8458 | tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY); | |
8459 | tmp &= ~(0xFF << 16); | |
8460 | tmp |= (0x1C << 16); | |
8461 | intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY); | |
8462 | ||
0ff066a9 PZ |
8463 | tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY); |
8464 | tmp |= (1 << 27); | |
8465 | intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY); | |
dde86e2d | 8466 | |
0ff066a9 PZ |
8467 | tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY); |
8468 | tmp |= (1 << 27); | |
8469 | intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY); | |
dde86e2d | 8470 | |
0ff066a9 PZ |
8471 | tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY); |
8472 | tmp &= ~(0xF << 28); | |
8473 | tmp |= (4 << 28); | |
8474 | intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY); | |
dde86e2d | 8475 | |
0ff066a9 PZ |
8476 | tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY); |
8477 | tmp &= ~(0xF << 28); | |
8478 | tmp |= (4 << 28); | |
8479 | intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY); | |
f31f2d55 PZ |
8480 | } |
8481 | ||
2fa86a1f PZ |
8482 | /* Implements 3 different sequences from BSpec chapter "Display iCLK |
8483 | * Programming" based on the parameters passed: | |
8484 | * - Sequence to enable CLKOUT_DP | |
8485 | * - Sequence to enable CLKOUT_DP without spread | |
8486 | * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O | |
8487 | */ | |
8488 | static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread, | |
8489 | bool with_fdi) | |
f31f2d55 PZ |
8490 | { |
8491 | struct drm_i915_private *dev_priv = dev->dev_private; | |
2fa86a1f PZ |
8492 | uint32_t reg, tmp; |
8493 | ||
8494 | if (WARN(with_fdi && !with_spread, "FDI requires downspread\n")) | |
8495 | with_spread = true; | |
c2699524 | 8496 | if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n")) |
2fa86a1f | 8497 | with_fdi = false; |
f31f2d55 | 8498 | |
a580516d | 8499 | mutex_lock(&dev_priv->sb_lock); |
f31f2d55 PZ |
8500 | |
8501 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); | |
8502 | tmp &= ~SBI_SSCCTL_DISABLE; | |
8503 | tmp |= SBI_SSCCTL_PATHALT; | |
8504 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); | |
8505 | ||
8506 | udelay(24); | |
8507 | ||
2fa86a1f PZ |
8508 | if (with_spread) { |
8509 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); | |
8510 | tmp &= ~SBI_SSCCTL_PATHALT; | |
8511 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); | |
f31f2d55 | 8512 | |
2fa86a1f PZ |
8513 | if (with_fdi) { |
8514 | lpt_reset_fdi_mphy(dev_priv); | |
8515 | lpt_program_fdi_mphy(dev_priv); | |
8516 | } | |
8517 | } | |
dde86e2d | 8518 | |
c2699524 | 8519 | reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0; |
2fa86a1f PZ |
8520 | tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK); |
8521 | tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE; | |
8522 | intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK); | |
c00db246 | 8523 | |
a580516d | 8524 | mutex_unlock(&dev_priv->sb_lock); |
dde86e2d PZ |
8525 | } |
8526 | ||
47701c3b PZ |
8527 | /* Sequence to disable CLKOUT_DP */ |
8528 | static void lpt_disable_clkout_dp(struct drm_device *dev) | |
8529 | { | |
8530 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8531 | uint32_t reg, tmp; | |
8532 | ||
a580516d | 8533 | mutex_lock(&dev_priv->sb_lock); |
47701c3b | 8534 | |
c2699524 | 8535 | reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0; |
47701c3b PZ |
8536 | tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK); |
8537 | tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE; | |
8538 | intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK); | |
8539 | ||
8540 | tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK); | |
8541 | if (!(tmp & SBI_SSCCTL_DISABLE)) { | |
8542 | if (!(tmp & SBI_SSCCTL_PATHALT)) { | |
8543 | tmp |= SBI_SSCCTL_PATHALT; | |
8544 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); | |
8545 | udelay(32); | |
8546 | } | |
8547 | tmp |= SBI_SSCCTL_DISABLE; | |
8548 | intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK); | |
8549 | } | |
8550 | ||
a580516d | 8551 | mutex_unlock(&dev_priv->sb_lock); |
47701c3b PZ |
8552 | } |
8553 | ||
f7be2c21 VS |
8554 | #define BEND_IDX(steps) ((50 + (steps)) / 5) |
8555 | ||
8556 | static const uint16_t sscdivintphase[] = { | |
8557 | [BEND_IDX( 50)] = 0x3B23, | |
8558 | [BEND_IDX( 45)] = 0x3B23, | |
8559 | [BEND_IDX( 40)] = 0x3C23, | |
8560 | [BEND_IDX( 35)] = 0x3C23, | |
8561 | [BEND_IDX( 30)] = 0x3D23, | |
8562 | [BEND_IDX( 25)] = 0x3D23, | |
8563 | [BEND_IDX( 20)] = 0x3E23, | |
8564 | [BEND_IDX( 15)] = 0x3E23, | |
8565 | [BEND_IDX( 10)] = 0x3F23, | |
8566 | [BEND_IDX( 5)] = 0x3F23, | |
8567 | [BEND_IDX( 0)] = 0x0025, | |
8568 | [BEND_IDX( -5)] = 0x0025, | |
8569 | [BEND_IDX(-10)] = 0x0125, | |
8570 | [BEND_IDX(-15)] = 0x0125, | |
8571 | [BEND_IDX(-20)] = 0x0225, | |
8572 | [BEND_IDX(-25)] = 0x0225, | |
8573 | [BEND_IDX(-30)] = 0x0325, | |
8574 | [BEND_IDX(-35)] = 0x0325, | |
8575 | [BEND_IDX(-40)] = 0x0425, | |
8576 | [BEND_IDX(-45)] = 0x0425, | |
8577 | [BEND_IDX(-50)] = 0x0525, | |
8578 | }; | |
8579 | ||
8580 | /* | |
8581 | * Bend CLKOUT_DP | |
8582 | * steps -50 to 50 inclusive, in steps of 5 | |
8583 | * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz) | |
8584 | * change in clock period = -(steps / 10) * 5.787 ps | |
8585 | */ | |
8586 | static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps) | |
8587 | { | |
8588 | uint32_t tmp; | |
8589 | int idx = BEND_IDX(steps); | |
8590 | ||
8591 | if (WARN_ON(steps % 5 != 0)) | |
8592 | return; | |
8593 | ||
8594 | if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase))) | |
8595 | return; | |
8596 | ||
8597 | mutex_lock(&dev_priv->sb_lock); | |
8598 | ||
8599 | if (steps % 10 != 0) | |
8600 | tmp = 0xAAAAAAAB; | |
8601 | else | |
8602 | tmp = 0x00000000; | |
8603 | intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK); | |
8604 | ||
8605 | tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK); | |
8606 | tmp &= 0xffff0000; | |
8607 | tmp |= sscdivintphase[idx]; | |
8608 | intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK); | |
8609 | ||
8610 | mutex_unlock(&dev_priv->sb_lock); | |
8611 | } | |
8612 | ||
8613 | #undef BEND_IDX | |
8614 | ||
bf8fa3d3 PZ |
8615 | static void lpt_init_pch_refclk(struct drm_device *dev) |
8616 | { | |
bf8fa3d3 PZ |
8617 | struct intel_encoder *encoder; |
8618 | bool has_vga = false; | |
8619 | ||
b2784e15 | 8620 | for_each_intel_encoder(dev, encoder) { |
bf8fa3d3 PZ |
8621 | switch (encoder->type) { |
8622 | case INTEL_OUTPUT_ANALOG: | |
8623 | has_vga = true; | |
8624 | break; | |
6847d71b PZ |
8625 | default: |
8626 | break; | |
bf8fa3d3 PZ |
8627 | } |
8628 | } | |
8629 | ||
f7be2c21 VS |
8630 | if (has_vga) { |
8631 | lpt_bend_clkout_dp(to_i915(dev), 0); | |
47701c3b | 8632 | lpt_enable_clkout_dp(dev, true, true); |
f7be2c21 | 8633 | } else { |
47701c3b | 8634 | lpt_disable_clkout_dp(dev); |
f7be2c21 | 8635 | } |
bf8fa3d3 PZ |
8636 | } |
8637 | ||
dde86e2d PZ |
8638 | /* |
8639 | * Initialize reference clocks when the driver loads | |
8640 | */ | |
8641 | void intel_init_pch_refclk(struct drm_device *dev) | |
8642 | { | |
8643 | if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) | |
8644 | ironlake_init_pch_refclk(dev); | |
8645 | else if (HAS_PCH_LPT(dev)) | |
8646 | lpt_init_pch_refclk(dev); | |
8647 | } | |
8648 | ||
6ff93609 | 8649 | static void ironlake_set_pipeconf(struct drm_crtc *crtc) |
79e53945 | 8650 | { |
c8203565 | 8651 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
79e53945 JB |
8652 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
8653 | int pipe = intel_crtc->pipe; | |
c8203565 PZ |
8654 | uint32_t val; |
8655 | ||
78114071 | 8656 | val = 0; |
c8203565 | 8657 | |
6e3c9717 | 8658 | switch (intel_crtc->config->pipe_bpp) { |
c8203565 | 8659 | case 18: |
dfd07d72 | 8660 | val |= PIPECONF_6BPC; |
c8203565 PZ |
8661 | break; |
8662 | case 24: | |
dfd07d72 | 8663 | val |= PIPECONF_8BPC; |
c8203565 PZ |
8664 | break; |
8665 | case 30: | |
dfd07d72 | 8666 | val |= PIPECONF_10BPC; |
c8203565 PZ |
8667 | break; |
8668 | case 36: | |
dfd07d72 | 8669 | val |= PIPECONF_12BPC; |
c8203565 PZ |
8670 | break; |
8671 | default: | |
cc769b62 PZ |
8672 | /* Case prevented by intel_choose_pipe_bpp_dither. */ |
8673 | BUG(); | |
c8203565 PZ |
8674 | } |
8675 | ||
6e3c9717 | 8676 | if (intel_crtc->config->dither) |
c8203565 PZ |
8677 | val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP); |
8678 | ||
6e3c9717 | 8679 | if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) |
c8203565 PZ |
8680 | val |= PIPECONF_INTERLACED_ILK; |
8681 | else | |
8682 | val |= PIPECONF_PROGRESSIVE; | |
8683 | ||
6e3c9717 | 8684 | if (intel_crtc->config->limited_color_range) |
3685a8f3 | 8685 | val |= PIPECONF_COLOR_RANGE_SELECT; |
3685a8f3 | 8686 | |
c8203565 PZ |
8687 | I915_WRITE(PIPECONF(pipe), val); |
8688 | POSTING_READ(PIPECONF(pipe)); | |
8689 | } | |
8690 | ||
6ff93609 | 8691 | static void haswell_set_pipeconf(struct drm_crtc *crtc) |
ee2b0b38 | 8692 | { |
391bf048 | 8693 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
ee2b0b38 | 8694 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
6e3c9717 | 8695 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
391bf048 | 8696 | u32 val = 0; |
ee2b0b38 | 8697 | |
391bf048 | 8698 | if (IS_HASWELL(dev_priv) && intel_crtc->config->dither) |
ee2b0b38 PZ |
8699 | val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP); |
8700 | ||
6e3c9717 | 8701 | if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) |
ee2b0b38 PZ |
8702 | val |= PIPECONF_INTERLACED_ILK; |
8703 | else | |
8704 | val |= PIPECONF_PROGRESSIVE; | |
8705 | ||
702e7a56 PZ |
8706 | I915_WRITE(PIPECONF(cpu_transcoder), val); |
8707 | POSTING_READ(PIPECONF(cpu_transcoder)); | |
391bf048 JN |
8708 | } |
8709 | ||
391bf048 JN |
8710 | static void haswell_set_pipemisc(struct drm_crtc *crtc) |
8711 | { | |
8712 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; | |
8713 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
756f85cf | 8714 | |
391bf048 JN |
8715 | if (IS_BROADWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 9) { |
8716 | u32 val = 0; | |
756f85cf | 8717 | |
6e3c9717 | 8718 | switch (intel_crtc->config->pipe_bpp) { |
756f85cf PZ |
8719 | case 18: |
8720 | val |= PIPEMISC_DITHER_6_BPC; | |
8721 | break; | |
8722 | case 24: | |
8723 | val |= PIPEMISC_DITHER_8_BPC; | |
8724 | break; | |
8725 | case 30: | |
8726 | val |= PIPEMISC_DITHER_10_BPC; | |
8727 | break; | |
8728 | case 36: | |
8729 | val |= PIPEMISC_DITHER_12_BPC; | |
8730 | break; | |
8731 | default: | |
8732 | /* Case prevented by pipe_config_set_bpp. */ | |
8733 | BUG(); | |
8734 | } | |
8735 | ||
6e3c9717 | 8736 | if (intel_crtc->config->dither) |
756f85cf PZ |
8737 | val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP; |
8738 | ||
391bf048 | 8739 | I915_WRITE(PIPEMISC(intel_crtc->pipe), val); |
756f85cf | 8740 | } |
ee2b0b38 PZ |
8741 | } |
8742 | ||
d4b1931c PZ |
8743 | int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp) |
8744 | { | |
8745 | /* | |
8746 | * Account for spread spectrum to avoid | |
8747 | * oversubscribing the link. Max center spread | |
8748 | * is 2.5%; use 5% for safety's sake. | |
8749 | */ | |
8750 | u32 bps = target_clock * bpp * 21 / 20; | |
619d4d04 | 8751 | return DIV_ROUND_UP(bps, link_bw * 8); |
d4b1931c PZ |
8752 | } |
8753 | ||
7429e9d4 | 8754 | static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor) |
6cf86a5e | 8755 | { |
7429e9d4 | 8756 | return i9xx_dpll_compute_m(dpll) < factor * dpll->n; |
f48d8f23 PZ |
8757 | } |
8758 | ||
b75ca6f6 ACO |
8759 | static void ironlake_compute_dpll(struct intel_crtc *intel_crtc, |
8760 | struct intel_crtc_state *crtc_state, | |
8761 | intel_clock_t *reduced_clock) | |
79e53945 | 8762 | { |
de13a2e3 | 8763 | struct drm_crtc *crtc = &intel_crtc->base; |
79e53945 JB |
8764 | struct drm_device *dev = crtc->dev; |
8765 | struct drm_i915_private *dev_priv = dev->dev_private; | |
55bb9992 | 8766 | struct drm_atomic_state *state = crtc_state->base.state; |
da3ced29 | 8767 | struct drm_connector *connector; |
55bb9992 ACO |
8768 | struct drm_connector_state *connector_state; |
8769 | struct intel_encoder *encoder; | |
b75ca6f6 | 8770 | u32 dpll, fp, fp2; |
ceb41007 | 8771 | int factor, i; |
09ede541 | 8772 | bool is_lvds = false, is_sdvo = false; |
79e53945 | 8773 | |
da3ced29 | 8774 | for_each_connector_in_state(state, connector, connector_state, i) { |
55bb9992 ACO |
8775 | if (connector_state->crtc != crtc_state->base.crtc) |
8776 | continue; | |
8777 | ||
8778 | encoder = to_intel_encoder(connector_state->best_encoder); | |
8779 | ||
8780 | switch (encoder->type) { | |
79e53945 JB |
8781 | case INTEL_OUTPUT_LVDS: |
8782 | is_lvds = true; | |
8783 | break; | |
8784 | case INTEL_OUTPUT_SDVO: | |
7d57382e | 8785 | case INTEL_OUTPUT_HDMI: |
79e53945 | 8786 | is_sdvo = true; |
79e53945 | 8787 | break; |
6847d71b PZ |
8788 | default: |
8789 | break; | |
79e53945 JB |
8790 | } |
8791 | } | |
79e53945 | 8792 | |
c1858123 | 8793 | /* Enable autotuning of the PLL clock (if permissible) */ |
8febb297 EA |
8794 | factor = 21; |
8795 | if (is_lvds) { | |
8796 | if ((intel_panel_use_ssc(dev_priv) && | |
e91e941b | 8797 | dev_priv->vbt.lvds_ssc_freq == 100000) || |
f0b44056 | 8798 | (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev))) |
8febb297 | 8799 | factor = 25; |
190f68c5 | 8800 | } else if (crtc_state->sdvo_tv_clock) |
8febb297 | 8801 | factor = 20; |
c1858123 | 8802 | |
b75ca6f6 ACO |
8803 | fp = i9xx_dpll_compute_fp(&crtc_state->dpll); |
8804 | ||
190f68c5 | 8805 | if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor)) |
b75ca6f6 ACO |
8806 | fp |= FP_CB_TUNE; |
8807 | ||
8808 | if (reduced_clock) { | |
8809 | fp2 = i9xx_dpll_compute_fp(reduced_clock); | |
2c07245f | 8810 | |
b75ca6f6 ACO |
8811 | if (reduced_clock->m < factor * reduced_clock->n) |
8812 | fp2 |= FP_CB_TUNE; | |
8813 | } else { | |
8814 | fp2 = fp; | |
8815 | } | |
9a7c7890 | 8816 | |
5eddb70b | 8817 | dpll = 0; |
2c07245f | 8818 | |
a07d6787 EA |
8819 | if (is_lvds) |
8820 | dpll |= DPLLB_MODE_LVDS; | |
8821 | else | |
8822 | dpll |= DPLLB_MODE_DAC_SERIAL; | |
198a037f | 8823 | |
190f68c5 | 8824 | dpll |= (crtc_state->pixel_multiplier - 1) |
ef1b460d | 8825 | << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT; |
198a037f DV |
8826 | |
8827 | if (is_sdvo) | |
4a33e48d | 8828 | dpll |= DPLL_SDVO_HIGH_SPEED; |
190f68c5 | 8829 | if (crtc_state->has_dp_encoder) |
4a33e48d | 8830 | dpll |= DPLL_SDVO_HIGH_SPEED; |
79e53945 | 8831 | |
a07d6787 | 8832 | /* compute bitmask from p1 value */ |
190f68c5 | 8833 | dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; |
a07d6787 | 8834 | /* also FPA1 */ |
190f68c5 | 8835 | dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; |
a07d6787 | 8836 | |
190f68c5 | 8837 | switch (crtc_state->dpll.p2) { |
a07d6787 EA |
8838 | case 5: |
8839 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5; | |
8840 | break; | |
8841 | case 7: | |
8842 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7; | |
8843 | break; | |
8844 | case 10: | |
8845 | dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10; | |
8846 | break; | |
8847 | case 14: | |
8848 | dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14; | |
8849 | break; | |
79e53945 JB |
8850 | } |
8851 | ||
ceb41007 | 8852 | if (is_lvds && intel_panel_use_ssc(dev_priv)) |
43565a06 | 8853 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
79e53945 JB |
8854 | else |
8855 | dpll |= PLL_REF_INPUT_DREFCLK; | |
8856 | ||
b75ca6f6 ACO |
8857 | dpll |= DPLL_VCO_ENABLE; |
8858 | ||
8859 | crtc_state->dpll_hw_state.dpll = dpll; | |
8860 | crtc_state->dpll_hw_state.fp0 = fp; | |
8861 | crtc_state->dpll_hw_state.fp1 = fp2; | |
de13a2e3 PZ |
8862 | } |
8863 | ||
190f68c5 ACO |
8864 | static int ironlake_crtc_compute_clock(struct intel_crtc *crtc, |
8865 | struct intel_crtc_state *crtc_state) | |
de13a2e3 | 8866 | { |
997c030c ACO |
8867 | struct drm_device *dev = crtc->base.dev; |
8868 | struct drm_i915_private *dev_priv = dev->dev_private; | |
364ee29d | 8869 | intel_clock_t reduced_clock; |
7ed9f894 | 8870 | bool has_reduced_clock = false; |
e2b78267 | 8871 | struct intel_shared_dpll *pll; |
997c030c ACO |
8872 | const intel_limit_t *limit; |
8873 | int refclk = 120000; | |
de13a2e3 | 8874 | |
dd3cd74a ACO |
8875 | memset(&crtc_state->dpll_hw_state, 0, |
8876 | sizeof(crtc_state->dpll_hw_state)); | |
8877 | ||
ded220e2 ACO |
8878 | crtc->lowfreq_avail = false; |
8879 | ||
8880 | /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */ | |
8881 | if (!crtc_state->has_pch_encoder) | |
8882 | return 0; | |
79e53945 | 8883 | |
997c030c ACO |
8884 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) { |
8885 | if (intel_panel_use_ssc(dev_priv)) { | |
8886 | DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", | |
8887 | dev_priv->vbt.lvds_ssc_freq); | |
8888 | refclk = dev_priv->vbt.lvds_ssc_freq; | |
8889 | } | |
8890 | ||
8891 | if (intel_is_dual_link_lvds(dev)) { | |
8892 | if (refclk == 100000) | |
8893 | limit = &intel_limits_ironlake_dual_lvds_100m; | |
8894 | else | |
8895 | limit = &intel_limits_ironlake_dual_lvds; | |
8896 | } else { | |
8897 | if (refclk == 100000) | |
8898 | limit = &intel_limits_ironlake_single_lvds_100m; | |
8899 | else | |
8900 | limit = &intel_limits_ironlake_single_lvds; | |
8901 | } | |
8902 | } else { | |
8903 | limit = &intel_limits_ironlake_dac; | |
8904 | } | |
8905 | ||
364ee29d | 8906 | if (!crtc_state->clock_set && |
997c030c ACO |
8907 | !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock, |
8908 | refclk, NULL, &crtc_state->dpll)) { | |
364ee29d ACO |
8909 | DRM_ERROR("Couldn't find PLL settings for mode!\n"); |
8910 | return -EINVAL; | |
f47709a9 | 8911 | } |
79e53945 | 8912 | |
b75ca6f6 ACO |
8913 | ironlake_compute_dpll(crtc, crtc_state, |
8914 | has_reduced_clock ? &reduced_clock : NULL); | |
66e985c0 | 8915 | |
ded220e2 ACO |
8916 | pll = intel_get_shared_dpll(crtc, crtc_state, NULL); |
8917 | if (pll == NULL) { | |
8918 | DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n", | |
8919 | pipe_name(crtc->pipe)); | |
8920 | return -EINVAL; | |
3fb37703 | 8921 | } |
79e53945 | 8922 | |
ded220e2 ACO |
8923 | if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) && |
8924 | has_reduced_clock) | |
c7653199 | 8925 | crtc->lowfreq_avail = true; |
e2b78267 | 8926 | |
c8f7a0db | 8927 | return 0; |
79e53945 JB |
8928 | } |
8929 | ||
eb14cb74 VS |
8930 | static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc, |
8931 | struct intel_link_m_n *m_n) | |
8932 | { | |
8933 | struct drm_device *dev = crtc->base.dev; | |
8934 | struct drm_i915_private *dev_priv = dev->dev_private; | |
8935 | enum pipe pipe = crtc->pipe; | |
8936 | ||
8937 | m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe)); | |
8938 | m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe)); | |
8939 | m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe)) | |
8940 | & ~TU_SIZE_MASK; | |
8941 | m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe)); | |
8942 | m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe)) | |
8943 | & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1; | |
8944 | } | |
8945 | ||
8946 | static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc, | |
8947 | enum transcoder transcoder, | |
b95af8be VK |
8948 | struct intel_link_m_n *m_n, |
8949 | struct intel_link_m_n *m2_n2) | |
72419203 DV |
8950 | { |
8951 | struct drm_device *dev = crtc->base.dev; | |
8952 | struct drm_i915_private *dev_priv = dev->dev_private; | |
eb14cb74 | 8953 | enum pipe pipe = crtc->pipe; |
72419203 | 8954 | |
eb14cb74 VS |
8955 | if (INTEL_INFO(dev)->gen >= 5) { |
8956 | m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder)); | |
8957 | m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder)); | |
8958 | m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder)) | |
8959 | & ~TU_SIZE_MASK; | |
8960 | m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder)); | |
8961 | m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder)) | |
8962 | & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1; | |
b95af8be VK |
8963 | /* Read M2_N2 registers only for gen < 8 (M2_N2 available for |
8964 | * gen < 8) and if DRRS is supported (to make sure the | |
8965 | * registers are not unnecessarily read). | |
8966 | */ | |
8967 | if (m2_n2 && INTEL_INFO(dev)->gen < 8 && | |
6e3c9717 | 8968 | crtc->config->has_drrs) { |
b95af8be VK |
8969 | m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder)); |
8970 | m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder)); | |
8971 | m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder)) | |
8972 | & ~TU_SIZE_MASK; | |
8973 | m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder)); | |
8974 | m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder)) | |
8975 | & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1; | |
8976 | } | |
eb14cb74 VS |
8977 | } else { |
8978 | m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe)); | |
8979 | m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe)); | |
8980 | m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe)) | |
8981 | & ~TU_SIZE_MASK; | |
8982 | m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe)); | |
8983 | m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe)) | |
8984 | & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1; | |
8985 | } | |
8986 | } | |
8987 | ||
8988 | void intel_dp_get_m_n(struct intel_crtc *crtc, | |
5cec258b | 8989 | struct intel_crtc_state *pipe_config) |
eb14cb74 | 8990 | { |
681a8504 | 8991 | if (pipe_config->has_pch_encoder) |
eb14cb74 VS |
8992 | intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n); |
8993 | else | |
8994 | intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder, | |
b95af8be VK |
8995 | &pipe_config->dp_m_n, |
8996 | &pipe_config->dp_m2_n2); | |
eb14cb74 | 8997 | } |
72419203 | 8998 | |
eb14cb74 | 8999 | static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc, |
5cec258b | 9000 | struct intel_crtc_state *pipe_config) |
eb14cb74 VS |
9001 | { |
9002 | intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder, | |
b95af8be | 9003 | &pipe_config->fdi_m_n, NULL); |
72419203 DV |
9004 | } |
9005 | ||
bd2e244f | 9006 | static void skylake_get_pfit_config(struct intel_crtc *crtc, |
5cec258b | 9007 | struct intel_crtc_state *pipe_config) |
bd2e244f JB |
9008 | { |
9009 | struct drm_device *dev = crtc->base.dev; | |
9010 | struct drm_i915_private *dev_priv = dev->dev_private; | |
a1b2278e CK |
9011 | struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state; |
9012 | uint32_t ps_ctrl = 0; | |
9013 | int id = -1; | |
9014 | int i; | |
bd2e244f | 9015 | |
a1b2278e CK |
9016 | /* find scaler attached to this pipe */ |
9017 | for (i = 0; i < crtc->num_scalers; i++) { | |
9018 | ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i)); | |
9019 | if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) { | |
9020 | id = i; | |
9021 | pipe_config->pch_pfit.enabled = true; | |
9022 | pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i)); | |
9023 | pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i)); | |
9024 | break; | |
9025 | } | |
9026 | } | |
bd2e244f | 9027 | |
a1b2278e CK |
9028 | scaler_state->scaler_id = id; |
9029 | if (id >= 0) { | |
9030 | scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX); | |
9031 | } else { | |
9032 | scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX); | |
bd2e244f JB |
9033 | } |
9034 | } | |
9035 | ||
5724dbd1 DL |
9036 | static void |
9037 | skylake_get_initial_plane_config(struct intel_crtc *crtc, | |
9038 | struct intel_initial_plane_config *plane_config) | |
bc8d7dff DL |
9039 | { |
9040 | struct drm_device *dev = crtc->base.dev; | |
9041 | struct drm_i915_private *dev_priv = dev->dev_private; | |
40f46283 | 9042 | u32 val, base, offset, stride_mult, tiling; |
bc8d7dff DL |
9043 | int pipe = crtc->pipe; |
9044 | int fourcc, pixel_format; | |
6761dd31 | 9045 | unsigned int aligned_height; |
bc8d7dff | 9046 | struct drm_framebuffer *fb; |
1b842c89 | 9047 | struct intel_framebuffer *intel_fb; |
bc8d7dff | 9048 | |
d9806c9f | 9049 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); |
1b842c89 | 9050 | if (!intel_fb) { |
bc8d7dff DL |
9051 | DRM_DEBUG_KMS("failed to alloc fb\n"); |
9052 | return; | |
9053 | } | |
9054 | ||
1b842c89 DL |
9055 | fb = &intel_fb->base; |
9056 | ||
bc8d7dff | 9057 | val = I915_READ(PLANE_CTL(pipe, 0)); |
42a7b088 DL |
9058 | if (!(val & PLANE_CTL_ENABLE)) |
9059 | goto error; | |
9060 | ||
bc8d7dff DL |
9061 | pixel_format = val & PLANE_CTL_FORMAT_MASK; |
9062 | fourcc = skl_format_to_fourcc(pixel_format, | |
9063 | val & PLANE_CTL_ORDER_RGBX, | |
9064 | val & PLANE_CTL_ALPHA_MASK); | |
9065 | fb->pixel_format = fourcc; | |
9066 | fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8; | |
9067 | ||
40f46283 DL |
9068 | tiling = val & PLANE_CTL_TILED_MASK; |
9069 | switch (tiling) { | |
9070 | case PLANE_CTL_TILED_LINEAR: | |
9071 | fb->modifier[0] = DRM_FORMAT_MOD_NONE; | |
9072 | break; | |
9073 | case PLANE_CTL_TILED_X: | |
9074 | plane_config->tiling = I915_TILING_X; | |
9075 | fb->modifier[0] = I915_FORMAT_MOD_X_TILED; | |
9076 | break; | |
9077 | case PLANE_CTL_TILED_Y: | |
9078 | fb->modifier[0] = I915_FORMAT_MOD_Y_TILED; | |
9079 | break; | |
9080 | case PLANE_CTL_TILED_YF: | |
9081 | fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED; | |
9082 | break; | |
9083 | default: | |
9084 | MISSING_CASE(tiling); | |
9085 | goto error; | |
9086 | } | |
9087 | ||
bc8d7dff DL |
9088 | base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000; |
9089 | plane_config->base = base; | |
9090 | ||
9091 | offset = I915_READ(PLANE_OFFSET(pipe, 0)); | |
9092 | ||
9093 | val = I915_READ(PLANE_SIZE(pipe, 0)); | |
9094 | fb->height = ((val >> 16) & 0xfff) + 1; | |
9095 | fb->width = ((val >> 0) & 0x1fff) + 1; | |
9096 | ||
9097 | val = I915_READ(PLANE_STRIDE(pipe, 0)); | |
7b49f948 | 9098 | stride_mult = intel_fb_stride_alignment(dev_priv, fb->modifier[0], |
40f46283 | 9099 | fb->pixel_format); |
bc8d7dff DL |
9100 | fb->pitches[0] = (val & 0x3ff) * stride_mult; |
9101 | ||
9102 | aligned_height = intel_fb_align_height(dev, fb->height, | |
091df6cb DV |
9103 | fb->pixel_format, |
9104 | fb->modifier[0]); | |
bc8d7dff | 9105 | |
f37b5c2b | 9106 | plane_config->size = fb->pitches[0] * aligned_height; |
bc8d7dff DL |
9107 | |
9108 | DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n", | |
9109 | pipe_name(pipe), fb->width, fb->height, | |
9110 | fb->bits_per_pixel, base, fb->pitches[0], | |
9111 | plane_config->size); | |
9112 | ||
2d14030b | 9113 | plane_config->fb = intel_fb; |
bc8d7dff DL |
9114 | return; |
9115 | ||
9116 | error: | |
9117 | kfree(fb); | |
9118 | } | |
9119 | ||
2fa2fe9a | 9120 | static void ironlake_get_pfit_config(struct intel_crtc *crtc, |
5cec258b | 9121 | struct intel_crtc_state *pipe_config) |
2fa2fe9a DV |
9122 | { |
9123 | struct drm_device *dev = crtc->base.dev; | |
9124 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9125 | uint32_t tmp; | |
9126 | ||
9127 | tmp = I915_READ(PF_CTL(crtc->pipe)); | |
9128 | ||
9129 | if (tmp & PF_ENABLE) { | |
fd4daa9c | 9130 | pipe_config->pch_pfit.enabled = true; |
2fa2fe9a DV |
9131 | pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe)); |
9132 | pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe)); | |
cb8b2a30 DV |
9133 | |
9134 | /* We currently do not free assignements of panel fitters on | |
9135 | * ivb/hsw (since we don't use the higher upscaling modes which | |
9136 | * differentiates them) so just WARN about this case for now. */ | |
9137 | if (IS_GEN7(dev)) { | |
9138 | WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) != | |
9139 | PF_PIPE_SEL_IVB(crtc->pipe)); | |
9140 | } | |
2fa2fe9a | 9141 | } |
79e53945 JB |
9142 | } |
9143 | ||
5724dbd1 DL |
9144 | static void |
9145 | ironlake_get_initial_plane_config(struct intel_crtc *crtc, | |
9146 | struct intel_initial_plane_config *plane_config) | |
4c6baa59 JB |
9147 | { |
9148 | struct drm_device *dev = crtc->base.dev; | |
9149 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9150 | u32 val, base, offset; | |
aeee5a49 | 9151 | int pipe = crtc->pipe; |
4c6baa59 | 9152 | int fourcc, pixel_format; |
6761dd31 | 9153 | unsigned int aligned_height; |
b113d5ee | 9154 | struct drm_framebuffer *fb; |
1b842c89 | 9155 | struct intel_framebuffer *intel_fb; |
4c6baa59 | 9156 | |
42a7b088 DL |
9157 | val = I915_READ(DSPCNTR(pipe)); |
9158 | if (!(val & DISPLAY_PLANE_ENABLE)) | |
9159 | return; | |
9160 | ||
d9806c9f | 9161 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); |
1b842c89 | 9162 | if (!intel_fb) { |
4c6baa59 JB |
9163 | DRM_DEBUG_KMS("failed to alloc fb\n"); |
9164 | return; | |
9165 | } | |
9166 | ||
1b842c89 DL |
9167 | fb = &intel_fb->base; |
9168 | ||
18c5247e DV |
9169 | if (INTEL_INFO(dev)->gen >= 4) { |
9170 | if (val & DISPPLANE_TILED) { | |
49af449b | 9171 | plane_config->tiling = I915_TILING_X; |
18c5247e DV |
9172 | fb->modifier[0] = I915_FORMAT_MOD_X_TILED; |
9173 | } | |
9174 | } | |
4c6baa59 JB |
9175 | |
9176 | pixel_format = val & DISPPLANE_PIXFORMAT_MASK; | |
b35d63fa | 9177 | fourcc = i9xx_format_to_fourcc(pixel_format); |
b113d5ee DL |
9178 | fb->pixel_format = fourcc; |
9179 | fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8; | |
4c6baa59 | 9180 | |
aeee5a49 | 9181 | base = I915_READ(DSPSURF(pipe)) & 0xfffff000; |
4c6baa59 | 9182 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { |
aeee5a49 | 9183 | offset = I915_READ(DSPOFFSET(pipe)); |
4c6baa59 | 9184 | } else { |
49af449b | 9185 | if (plane_config->tiling) |
aeee5a49 | 9186 | offset = I915_READ(DSPTILEOFF(pipe)); |
4c6baa59 | 9187 | else |
aeee5a49 | 9188 | offset = I915_READ(DSPLINOFF(pipe)); |
4c6baa59 JB |
9189 | } |
9190 | plane_config->base = base; | |
9191 | ||
9192 | val = I915_READ(PIPESRC(pipe)); | |
b113d5ee DL |
9193 | fb->width = ((val >> 16) & 0xfff) + 1; |
9194 | fb->height = ((val >> 0) & 0xfff) + 1; | |
4c6baa59 JB |
9195 | |
9196 | val = I915_READ(DSPSTRIDE(pipe)); | |
b113d5ee | 9197 | fb->pitches[0] = val & 0xffffffc0; |
4c6baa59 | 9198 | |
b113d5ee | 9199 | aligned_height = intel_fb_align_height(dev, fb->height, |
091df6cb DV |
9200 | fb->pixel_format, |
9201 | fb->modifier[0]); | |
4c6baa59 | 9202 | |
f37b5c2b | 9203 | plane_config->size = fb->pitches[0] * aligned_height; |
4c6baa59 | 9204 | |
2844a921 DL |
9205 | DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n", |
9206 | pipe_name(pipe), fb->width, fb->height, | |
9207 | fb->bits_per_pixel, base, fb->pitches[0], | |
9208 | plane_config->size); | |
b113d5ee | 9209 | |
2d14030b | 9210 | plane_config->fb = intel_fb; |
4c6baa59 JB |
9211 | } |
9212 | ||
0e8ffe1b | 9213 | static bool ironlake_get_pipe_config(struct intel_crtc *crtc, |
5cec258b | 9214 | struct intel_crtc_state *pipe_config) |
0e8ffe1b DV |
9215 | { |
9216 | struct drm_device *dev = crtc->base.dev; | |
9217 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1729050e | 9218 | enum intel_display_power_domain power_domain; |
0e8ffe1b | 9219 | uint32_t tmp; |
1729050e | 9220 | bool ret; |
0e8ffe1b | 9221 | |
1729050e ID |
9222 | power_domain = POWER_DOMAIN_PIPE(crtc->pipe); |
9223 | if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) | |
930e8c9e PZ |
9224 | return false; |
9225 | ||
e143a21c | 9226 | pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe; |
8106ddbd | 9227 | pipe_config->shared_dpll = NULL; |
eccb140b | 9228 | |
1729050e | 9229 | ret = false; |
0e8ffe1b DV |
9230 | tmp = I915_READ(PIPECONF(crtc->pipe)); |
9231 | if (!(tmp & PIPECONF_ENABLE)) | |
1729050e | 9232 | goto out; |
0e8ffe1b | 9233 | |
42571aef VS |
9234 | switch (tmp & PIPECONF_BPC_MASK) { |
9235 | case PIPECONF_6BPC: | |
9236 | pipe_config->pipe_bpp = 18; | |
9237 | break; | |
9238 | case PIPECONF_8BPC: | |
9239 | pipe_config->pipe_bpp = 24; | |
9240 | break; | |
9241 | case PIPECONF_10BPC: | |
9242 | pipe_config->pipe_bpp = 30; | |
9243 | break; | |
9244 | case PIPECONF_12BPC: | |
9245 | pipe_config->pipe_bpp = 36; | |
9246 | break; | |
9247 | default: | |
9248 | break; | |
9249 | } | |
9250 | ||
b5a9fa09 DV |
9251 | if (tmp & PIPECONF_COLOR_RANGE_SELECT) |
9252 | pipe_config->limited_color_range = true; | |
9253 | ||
ab9412ba | 9254 | if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) { |
66e985c0 | 9255 | struct intel_shared_dpll *pll; |
8106ddbd | 9256 | enum intel_dpll_id pll_id; |
66e985c0 | 9257 | |
88adfff1 DV |
9258 | pipe_config->has_pch_encoder = true; |
9259 | ||
627eb5a3 DV |
9260 | tmp = I915_READ(FDI_RX_CTL(crtc->pipe)); |
9261 | pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >> | |
9262 | FDI_DP_PORT_WIDTH_SHIFT) + 1; | |
72419203 DV |
9263 | |
9264 | ironlake_get_fdi_m_n_config(crtc, pipe_config); | |
6c49f241 | 9265 | |
c0d43d62 | 9266 | if (HAS_PCH_IBX(dev_priv->dev)) { |
8106ddbd | 9267 | pll_id = (enum intel_dpll_id) crtc->pipe; |
c0d43d62 DV |
9268 | } else { |
9269 | tmp = I915_READ(PCH_DPLL_SEL); | |
9270 | if (tmp & TRANS_DPLLB_SEL(crtc->pipe)) | |
8106ddbd | 9271 | pll_id = DPLL_ID_PCH_PLL_B; |
c0d43d62 | 9272 | else |
8106ddbd | 9273 | pll_id= DPLL_ID_PCH_PLL_A; |
c0d43d62 | 9274 | } |
66e985c0 | 9275 | |
8106ddbd ACO |
9276 | pipe_config->shared_dpll = |
9277 | intel_get_shared_dpll_by_id(dev_priv, pll_id); | |
9278 | pll = pipe_config->shared_dpll; | |
66e985c0 | 9279 | |
2edd6443 ACO |
9280 | WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll, |
9281 | &pipe_config->dpll_hw_state)); | |
c93f54cf DV |
9282 | |
9283 | tmp = pipe_config->dpll_hw_state.dpll; | |
9284 | pipe_config->pixel_multiplier = | |
9285 | ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK) | |
9286 | >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1; | |
18442d08 VS |
9287 | |
9288 | ironlake_pch_clock_get(crtc, pipe_config); | |
6c49f241 DV |
9289 | } else { |
9290 | pipe_config->pixel_multiplier = 1; | |
627eb5a3 DV |
9291 | } |
9292 | ||
1bd1bd80 | 9293 | intel_get_pipe_timings(crtc, pipe_config); |
bc58be60 | 9294 | intel_get_pipe_src_size(crtc, pipe_config); |
1bd1bd80 | 9295 | |
2fa2fe9a DV |
9296 | ironlake_get_pfit_config(crtc, pipe_config); |
9297 | ||
1729050e ID |
9298 | ret = true; |
9299 | ||
9300 | out: | |
9301 | intel_display_power_put(dev_priv, power_domain); | |
9302 | ||
9303 | return ret; | |
0e8ffe1b DV |
9304 | } |
9305 | ||
be256dc7 PZ |
9306 | static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv) |
9307 | { | |
9308 | struct drm_device *dev = dev_priv->dev; | |
be256dc7 | 9309 | struct intel_crtc *crtc; |
be256dc7 | 9310 | |
d3fcc808 | 9311 | for_each_intel_crtc(dev, crtc) |
e2c719b7 | 9312 | I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n", |
be256dc7 PZ |
9313 | pipe_name(crtc->pipe)); |
9314 | ||
e2c719b7 RC |
9315 | I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n"); |
9316 | I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n"); | |
01403de3 VS |
9317 | I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n"); |
9318 | I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n"); | |
e2c719b7 RC |
9319 | I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n"); |
9320 | I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE, | |
be256dc7 | 9321 | "CPU PWM1 enabled\n"); |
c5107b87 | 9322 | if (IS_HASWELL(dev)) |
e2c719b7 | 9323 | I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE, |
c5107b87 | 9324 | "CPU PWM2 enabled\n"); |
e2c719b7 | 9325 | I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE, |
be256dc7 | 9326 | "PCH PWM1 enabled\n"); |
e2c719b7 | 9327 | I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE, |
be256dc7 | 9328 | "Utility pin enabled\n"); |
e2c719b7 | 9329 | I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n"); |
be256dc7 | 9330 | |
9926ada1 PZ |
9331 | /* |
9332 | * In theory we can still leave IRQs enabled, as long as only the HPD | |
9333 | * interrupts remain enabled. We used to check for that, but since it's | |
9334 | * gen-specific and since we only disable LCPLL after we fully disable | |
9335 | * the interrupts, the check below should be enough. | |
9336 | */ | |
e2c719b7 | 9337 | I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n"); |
be256dc7 PZ |
9338 | } |
9339 | ||
9ccd5aeb PZ |
9340 | static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv) |
9341 | { | |
9342 | struct drm_device *dev = dev_priv->dev; | |
9343 | ||
9344 | if (IS_HASWELL(dev)) | |
9345 | return I915_READ(D_COMP_HSW); | |
9346 | else | |
9347 | return I915_READ(D_COMP_BDW); | |
9348 | } | |
9349 | ||
3c4c9b81 PZ |
9350 | static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val) |
9351 | { | |
9352 | struct drm_device *dev = dev_priv->dev; | |
9353 | ||
9354 | if (IS_HASWELL(dev)) { | |
9355 | mutex_lock(&dev_priv->rps.hw_lock); | |
9356 | if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP, | |
9357 | val)) | |
f475dadf | 9358 | DRM_ERROR("Failed to write to D_COMP\n"); |
3c4c9b81 PZ |
9359 | mutex_unlock(&dev_priv->rps.hw_lock); |
9360 | } else { | |
9ccd5aeb PZ |
9361 | I915_WRITE(D_COMP_BDW, val); |
9362 | POSTING_READ(D_COMP_BDW); | |
3c4c9b81 | 9363 | } |
be256dc7 PZ |
9364 | } |
9365 | ||
9366 | /* | |
9367 | * This function implements pieces of two sequences from BSpec: | |
9368 | * - Sequence for display software to disable LCPLL | |
9369 | * - Sequence for display software to allow package C8+ | |
9370 | * The steps implemented here are just the steps that actually touch the LCPLL | |
9371 | * register. Callers should take care of disabling all the display engine | |
9372 | * functions, doing the mode unset, fixing interrupts, etc. | |
9373 | */ | |
6ff58d53 PZ |
9374 | static void hsw_disable_lcpll(struct drm_i915_private *dev_priv, |
9375 | bool switch_to_fclk, bool allow_power_down) | |
be256dc7 PZ |
9376 | { |
9377 | uint32_t val; | |
9378 | ||
9379 | assert_can_disable_lcpll(dev_priv); | |
9380 | ||
9381 | val = I915_READ(LCPLL_CTL); | |
9382 | ||
9383 | if (switch_to_fclk) { | |
9384 | val |= LCPLL_CD_SOURCE_FCLK; | |
9385 | I915_WRITE(LCPLL_CTL, val); | |
9386 | ||
9387 | if (wait_for_atomic_us(I915_READ(LCPLL_CTL) & | |
9388 | LCPLL_CD_SOURCE_FCLK_DONE, 1)) | |
9389 | DRM_ERROR("Switching to FCLK failed\n"); | |
9390 | ||
9391 | val = I915_READ(LCPLL_CTL); | |
9392 | } | |
9393 | ||
9394 | val |= LCPLL_PLL_DISABLE; | |
9395 | I915_WRITE(LCPLL_CTL, val); | |
9396 | POSTING_READ(LCPLL_CTL); | |
9397 | ||
9398 | if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1)) | |
9399 | DRM_ERROR("LCPLL still locked\n"); | |
9400 | ||
9ccd5aeb | 9401 | val = hsw_read_dcomp(dev_priv); |
be256dc7 | 9402 | val |= D_COMP_COMP_DISABLE; |
3c4c9b81 | 9403 | hsw_write_dcomp(dev_priv, val); |
be256dc7 PZ |
9404 | ndelay(100); |
9405 | ||
9ccd5aeb PZ |
9406 | if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0, |
9407 | 1)) | |
be256dc7 PZ |
9408 | DRM_ERROR("D_COMP RCOMP still in progress\n"); |
9409 | ||
9410 | if (allow_power_down) { | |
9411 | val = I915_READ(LCPLL_CTL); | |
9412 | val |= LCPLL_POWER_DOWN_ALLOW; | |
9413 | I915_WRITE(LCPLL_CTL, val); | |
9414 | POSTING_READ(LCPLL_CTL); | |
9415 | } | |
9416 | } | |
9417 | ||
9418 | /* | |
9419 | * Fully restores LCPLL, disallowing power down and switching back to LCPLL | |
9420 | * source. | |
9421 | */ | |
6ff58d53 | 9422 | static void hsw_restore_lcpll(struct drm_i915_private *dev_priv) |
be256dc7 PZ |
9423 | { |
9424 | uint32_t val; | |
9425 | ||
9426 | val = I915_READ(LCPLL_CTL); | |
9427 | ||
9428 | if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK | | |
9429 | LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK) | |
9430 | return; | |
9431 | ||
a8a8bd54 PZ |
9432 | /* |
9433 | * Make sure we're not on PC8 state before disabling PC8, otherwise | |
9434 | * we'll hang the machine. To prevent PC8 state, just enable force_wake. | |
a8a8bd54 | 9435 | */ |
59bad947 | 9436 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
215733fa | 9437 | |
be256dc7 PZ |
9438 | if (val & LCPLL_POWER_DOWN_ALLOW) { |
9439 | val &= ~LCPLL_POWER_DOWN_ALLOW; | |
9440 | I915_WRITE(LCPLL_CTL, val); | |
35d8f2eb | 9441 | POSTING_READ(LCPLL_CTL); |
be256dc7 PZ |
9442 | } |
9443 | ||
9ccd5aeb | 9444 | val = hsw_read_dcomp(dev_priv); |
be256dc7 PZ |
9445 | val |= D_COMP_COMP_FORCE; |
9446 | val &= ~D_COMP_COMP_DISABLE; | |
3c4c9b81 | 9447 | hsw_write_dcomp(dev_priv, val); |
be256dc7 PZ |
9448 | |
9449 | val = I915_READ(LCPLL_CTL); | |
9450 | val &= ~LCPLL_PLL_DISABLE; | |
9451 | I915_WRITE(LCPLL_CTL, val); | |
9452 | ||
9453 | if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5)) | |
9454 | DRM_ERROR("LCPLL not locked yet\n"); | |
9455 | ||
9456 | if (val & LCPLL_CD_SOURCE_FCLK) { | |
9457 | val = I915_READ(LCPLL_CTL); | |
9458 | val &= ~LCPLL_CD_SOURCE_FCLK; | |
9459 | I915_WRITE(LCPLL_CTL, val); | |
9460 | ||
9461 | if (wait_for_atomic_us((I915_READ(LCPLL_CTL) & | |
9462 | LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1)) | |
9463 | DRM_ERROR("Switching back to LCPLL failed\n"); | |
9464 | } | |
215733fa | 9465 | |
59bad947 | 9466 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
b6283055 | 9467 | intel_update_cdclk(dev_priv->dev); |
be256dc7 PZ |
9468 | } |
9469 | ||
765dab67 PZ |
9470 | /* |
9471 | * Package states C8 and deeper are really deep PC states that can only be | |
9472 | * reached when all the devices on the system allow it, so even if the graphics | |
9473 | * device allows PC8+, it doesn't mean the system will actually get to these | |
9474 | * states. Our driver only allows PC8+ when going into runtime PM. | |
9475 | * | |
9476 | * The requirements for PC8+ are that all the outputs are disabled, the power | |
9477 | * well is disabled and most interrupts are disabled, and these are also | |
9478 | * requirements for runtime PM. When these conditions are met, we manually do | |
9479 | * the other conditions: disable the interrupts, clocks and switch LCPLL refclk | |
9480 | * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard | |
9481 | * hang the machine. | |
9482 | * | |
9483 | * When we really reach PC8 or deeper states (not just when we allow it) we lose | |
9484 | * the state of some registers, so when we come back from PC8+ we need to | |
9485 | * restore this state. We don't get into PC8+ if we're not in RC6, so we don't | |
9486 | * need to take care of the registers kept by RC6. Notice that this happens even | |
9487 | * if we don't put the device in PCI D3 state (which is what currently happens | |
9488 | * because of the runtime PM support). | |
9489 | * | |
9490 | * For more, read "Display Sequences for Package C8" on the hardware | |
9491 | * documentation. | |
9492 | */ | |
a14cb6fc | 9493 | void hsw_enable_pc8(struct drm_i915_private *dev_priv) |
c67a470b | 9494 | { |
c67a470b PZ |
9495 | struct drm_device *dev = dev_priv->dev; |
9496 | uint32_t val; | |
9497 | ||
c67a470b PZ |
9498 | DRM_DEBUG_KMS("Enabling package C8+\n"); |
9499 | ||
c2699524 | 9500 | if (HAS_PCH_LPT_LP(dev)) { |
c67a470b PZ |
9501 | val = I915_READ(SOUTH_DSPCLK_GATE_D); |
9502 | val &= ~PCH_LP_PARTITION_LEVEL_DISABLE; | |
9503 | I915_WRITE(SOUTH_DSPCLK_GATE_D, val); | |
9504 | } | |
9505 | ||
9506 | lpt_disable_clkout_dp(dev); | |
c67a470b PZ |
9507 | hsw_disable_lcpll(dev_priv, true, true); |
9508 | } | |
9509 | ||
a14cb6fc | 9510 | void hsw_disable_pc8(struct drm_i915_private *dev_priv) |
c67a470b PZ |
9511 | { |
9512 | struct drm_device *dev = dev_priv->dev; | |
9513 | uint32_t val; | |
9514 | ||
c67a470b PZ |
9515 | DRM_DEBUG_KMS("Disabling package C8+\n"); |
9516 | ||
9517 | hsw_restore_lcpll(dev_priv); | |
c67a470b PZ |
9518 | lpt_init_pch_refclk(dev); |
9519 | ||
c2699524 | 9520 | if (HAS_PCH_LPT_LP(dev)) { |
c67a470b PZ |
9521 | val = I915_READ(SOUTH_DSPCLK_GATE_D); |
9522 | val |= PCH_LP_PARTITION_LEVEL_DISABLE; | |
9523 | I915_WRITE(SOUTH_DSPCLK_GATE_D, val); | |
9524 | } | |
c67a470b PZ |
9525 | } |
9526 | ||
27c329ed | 9527 | static void broxton_modeset_commit_cdclk(struct drm_atomic_state *old_state) |
f8437dd1 | 9528 | { |
a821fc46 | 9529 | struct drm_device *dev = old_state->dev; |
1a617b77 ML |
9530 | struct intel_atomic_state *old_intel_state = |
9531 | to_intel_atomic_state(old_state); | |
9532 | unsigned int req_cdclk = old_intel_state->dev_cdclk; | |
f8437dd1 | 9533 | |
27c329ed | 9534 | broxton_set_cdclk(dev, req_cdclk); |
f8437dd1 VK |
9535 | } |
9536 | ||
b432e5cf | 9537 | /* compute the max rate for new configuration */ |
27c329ed | 9538 | static int ilk_max_pixel_rate(struct drm_atomic_state *state) |
b432e5cf | 9539 | { |
565602d7 ML |
9540 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
9541 | struct drm_i915_private *dev_priv = state->dev->dev_private; | |
9542 | struct drm_crtc *crtc; | |
9543 | struct drm_crtc_state *cstate; | |
27c329ed | 9544 | struct intel_crtc_state *crtc_state; |
565602d7 ML |
9545 | unsigned max_pixel_rate = 0, i; |
9546 | enum pipe pipe; | |
b432e5cf | 9547 | |
565602d7 ML |
9548 | memcpy(intel_state->min_pixclk, dev_priv->min_pixclk, |
9549 | sizeof(intel_state->min_pixclk)); | |
27c329ed | 9550 | |
565602d7 ML |
9551 | for_each_crtc_in_state(state, crtc, cstate, i) { |
9552 | int pixel_rate; | |
27c329ed | 9553 | |
565602d7 ML |
9554 | crtc_state = to_intel_crtc_state(cstate); |
9555 | if (!crtc_state->base.enable) { | |
9556 | intel_state->min_pixclk[i] = 0; | |
b432e5cf | 9557 | continue; |
565602d7 | 9558 | } |
b432e5cf | 9559 | |
27c329ed | 9560 | pixel_rate = ilk_pipe_pixel_rate(crtc_state); |
b432e5cf VS |
9561 | |
9562 | /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */ | |
565602d7 | 9563 | if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled) |
b432e5cf VS |
9564 | pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95); |
9565 | ||
565602d7 | 9566 | intel_state->min_pixclk[i] = pixel_rate; |
b432e5cf VS |
9567 | } |
9568 | ||
565602d7 ML |
9569 | for_each_pipe(dev_priv, pipe) |
9570 | max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate); | |
9571 | ||
b432e5cf VS |
9572 | return max_pixel_rate; |
9573 | } | |
9574 | ||
9575 | static void broadwell_set_cdclk(struct drm_device *dev, int cdclk) | |
9576 | { | |
9577 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9578 | uint32_t val, data; | |
9579 | int ret; | |
9580 | ||
9581 | if (WARN((I915_READ(LCPLL_CTL) & | |
9582 | (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK | | |
9583 | LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE | | |
9584 | LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW | | |
9585 | LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK, | |
9586 | "trying to change cdclk frequency with cdclk not enabled\n")) | |
9587 | return; | |
9588 | ||
9589 | mutex_lock(&dev_priv->rps.hw_lock); | |
9590 | ret = sandybridge_pcode_write(dev_priv, | |
9591 | BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0); | |
9592 | mutex_unlock(&dev_priv->rps.hw_lock); | |
9593 | if (ret) { | |
9594 | DRM_ERROR("failed to inform pcode about cdclk change\n"); | |
9595 | return; | |
9596 | } | |
9597 | ||
9598 | val = I915_READ(LCPLL_CTL); | |
9599 | val |= LCPLL_CD_SOURCE_FCLK; | |
9600 | I915_WRITE(LCPLL_CTL, val); | |
9601 | ||
5ba00178 TU |
9602 | if (wait_for_us(I915_READ(LCPLL_CTL) & |
9603 | LCPLL_CD_SOURCE_FCLK_DONE, 1)) | |
b432e5cf VS |
9604 | DRM_ERROR("Switching to FCLK failed\n"); |
9605 | ||
9606 | val = I915_READ(LCPLL_CTL); | |
9607 | val &= ~LCPLL_CLK_FREQ_MASK; | |
9608 | ||
9609 | switch (cdclk) { | |
9610 | case 450000: | |
9611 | val |= LCPLL_CLK_FREQ_450; | |
9612 | data = 0; | |
9613 | break; | |
9614 | case 540000: | |
9615 | val |= LCPLL_CLK_FREQ_54O_BDW; | |
9616 | data = 1; | |
9617 | break; | |
9618 | case 337500: | |
9619 | val |= LCPLL_CLK_FREQ_337_5_BDW; | |
9620 | data = 2; | |
9621 | break; | |
9622 | case 675000: | |
9623 | val |= LCPLL_CLK_FREQ_675_BDW; | |
9624 | data = 3; | |
9625 | break; | |
9626 | default: | |
9627 | WARN(1, "invalid cdclk frequency\n"); | |
9628 | return; | |
9629 | } | |
9630 | ||
9631 | I915_WRITE(LCPLL_CTL, val); | |
9632 | ||
9633 | val = I915_READ(LCPLL_CTL); | |
9634 | val &= ~LCPLL_CD_SOURCE_FCLK; | |
9635 | I915_WRITE(LCPLL_CTL, val); | |
9636 | ||
5ba00178 TU |
9637 | if (wait_for_us((I915_READ(LCPLL_CTL) & |
9638 | LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1)) | |
b432e5cf VS |
9639 | DRM_ERROR("Switching back to LCPLL failed\n"); |
9640 | ||
9641 | mutex_lock(&dev_priv->rps.hw_lock); | |
9642 | sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data); | |
9643 | mutex_unlock(&dev_priv->rps.hw_lock); | |
9644 | ||
9645 | intel_update_cdclk(dev); | |
9646 | ||
9647 | WARN(cdclk != dev_priv->cdclk_freq, | |
9648 | "cdclk requested %d kHz but got %d kHz\n", | |
9649 | cdclk, dev_priv->cdclk_freq); | |
9650 | } | |
9651 | ||
27c329ed | 9652 | static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state) |
b432e5cf | 9653 | { |
27c329ed | 9654 | struct drm_i915_private *dev_priv = to_i915(state->dev); |
1a617b77 | 9655 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
27c329ed | 9656 | int max_pixclk = ilk_max_pixel_rate(state); |
b432e5cf VS |
9657 | int cdclk; |
9658 | ||
9659 | /* | |
9660 | * FIXME should also account for plane ratio | |
9661 | * once 64bpp pixel formats are supported. | |
9662 | */ | |
27c329ed | 9663 | if (max_pixclk > 540000) |
b432e5cf | 9664 | cdclk = 675000; |
27c329ed | 9665 | else if (max_pixclk > 450000) |
b432e5cf | 9666 | cdclk = 540000; |
27c329ed | 9667 | else if (max_pixclk > 337500) |
b432e5cf VS |
9668 | cdclk = 450000; |
9669 | else | |
9670 | cdclk = 337500; | |
9671 | ||
b432e5cf | 9672 | if (cdclk > dev_priv->max_cdclk_freq) { |
63ba534e ML |
9673 | DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n", |
9674 | cdclk, dev_priv->max_cdclk_freq); | |
9675 | return -EINVAL; | |
b432e5cf VS |
9676 | } |
9677 | ||
1a617b77 ML |
9678 | intel_state->cdclk = intel_state->dev_cdclk = cdclk; |
9679 | if (!intel_state->active_crtcs) | |
9680 | intel_state->dev_cdclk = 337500; | |
b432e5cf VS |
9681 | |
9682 | return 0; | |
9683 | } | |
9684 | ||
27c329ed | 9685 | static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state) |
b432e5cf | 9686 | { |
27c329ed | 9687 | struct drm_device *dev = old_state->dev; |
1a617b77 ML |
9688 | struct intel_atomic_state *old_intel_state = |
9689 | to_intel_atomic_state(old_state); | |
9690 | unsigned req_cdclk = old_intel_state->dev_cdclk; | |
b432e5cf | 9691 | |
27c329ed | 9692 | broadwell_set_cdclk(dev, req_cdclk); |
b432e5cf VS |
9693 | } |
9694 | ||
190f68c5 ACO |
9695 | static int haswell_crtc_compute_clock(struct intel_crtc *crtc, |
9696 | struct intel_crtc_state *crtc_state) | |
09b4ddf9 | 9697 | { |
af3997b5 MK |
9698 | struct intel_encoder *intel_encoder = |
9699 | intel_ddi_get_crtc_new_encoder(crtc_state); | |
9700 | ||
9701 | if (intel_encoder->type != INTEL_OUTPUT_DSI) { | |
9702 | if (!intel_ddi_pll_select(crtc, crtc_state)) | |
9703 | return -EINVAL; | |
9704 | } | |
716c2e55 | 9705 | |
c7653199 | 9706 | crtc->lowfreq_avail = false; |
644cef34 | 9707 | |
c8f7a0db | 9708 | return 0; |
79e53945 JB |
9709 | } |
9710 | ||
3760b59c S |
9711 | static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv, |
9712 | enum port port, | |
9713 | struct intel_crtc_state *pipe_config) | |
9714 | { | |
8106ddbd ACO |
9715 | enum intel_dpll_id id; |
9716 | ||
3760b59c S |
9717 | switch (port) { |
9718 | case PORT_A: | |
9719 | pipe_config->ddi_pll_sel = SKL_DPLL0; | |
08250c4b | 9720 | id = DPLL_ID_SKL_DPLL0; |
3760b59c S |
9721 | break; |
9722 | case PORT_B: | |
9723 | pipe_config->ddi_pll_sel = SKL_DPLL1; | |
08250c4b | 9724 | id = DPLL_ID_SKL_DPLL1; |
3760b59c S |
9725 | break; |
9726 | case PORT_C: | |
9727 | pipe_config->ddi_pll_sel = SKL_DPLL2; | |
08250c4b | 9728 | id = DPLL_ID_SKL_DPLL2; |
3760b59c S |
9729 | break; |
9730 | default: | |
9731 | DRM_ERROR("Incorrect port type\n"); | |
8106ddbd | 9732 | return; |
3760b59c | 9733 | } |
8106ddbd ACO |
9734 | |
9735 | pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id); | |
3760b59c S |
9736 | } |
9737 | ||
96b7dfb7 S |
9738 | static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv, |
9739 | enum port port, | |
5cec258b | 9740 | struct intel_crtc_state *pipe_config) |
96b7dfb7 | 9741 | { |
8106ddbd | 9742 | enum intel_dpll_id id; |
a3c988ea | 9743 | u32 temp; |
96b7dfb7 S |
9744 | |
9745 | temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port); | |
9746 | pipe_config->ddi_pll_sel = temp >> (port * 3 + 1); | |
9747 | ||
9748 | switch (pipe_config->ddi_pll_sel) { | |
3148ade7 | 9749 | case SKL_DPLL0: |
a3c988ea ACO |
9750 | id = DPLL_ID_SKL_DPLL0; |
9751 | break; | |
96b7dfb7 | 9752 | case SKL_DPLL1: |
8106ddbd | 9753 | id = DPLL_ID_SKL_DPLL1; |
96b7dfb7 S |
9754 | break; |
9755 | case SKL_DPLL2: | |
8106ddbd | 9756 | id = DPLL_ID_SKL_DPLL2; |
96b7dfb7 S |
9757 | break; |
9758 | case SKL_DPLL3: | |
8106ddbd | 9759 | id = DPLL_ID_SKL_DPLL3; |
96b7dfb7 | 9760 | break; |
8106ddbd ACO |
9761 | default: |
9762 | MISSING_CASE(pipe_config->ddi_pll_sel); | |
9763 | return; | |
96b7dfb7 | 9764 | } |
8106ddbd ACO |
9765 | |
9766 | pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id); | |
96b7dfb7 S |
9767 | } |
9768 | ||
7d2c8175 DL |
9769 | static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv, |
9770 | enum port port, | |
5cec258b | 9771 | struct intel_crtc_state *pipe_config) |
7d2c8175 | 9772 | { |
8106ddbd ACO |
9773 | enum intel_dpll_id id; |
9774 | ||
7d2c8175 DL |
9775 | pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port)); |
9776 | ||
9777 | switch (pipe_config->ddi_pll_sel) { | |
9778 | case PORT_CLK_SEL_WRPLL1: | |
8106ddbd | 9779 | id = DPLL_ID_WRPLL1; |
7d2c8175 DL |
9780 | break; |
9781 | case PORT_CLK_SEL_WRPLL2: | |
8106ddbd | 9782 | id = DPLL_ID_WRPLL2; |
7d2c8175 | 9783 | break; |
00490c22 | 9784 | case PORT_CLK_SEL_SPLL: |
8106ddbd | 9785 | id = DPLL_ID_SPLL; |
79bd23da | 9786 | break; |
9d16da65 ACO |
9787 | case PORT_CLK_SEL_LCPLL_810: |
9788 | id = DPLL_ID_LCPLL_810; | |
9789 | break; | |
9790 | case PORT_CLK_SEL_LCPLL_1350: | |
9791 | id = DPLL_ID_LCPLL_1350; | |
9792 | break; | |
9793 | case PORT_CLK_SEL_LCPLL_2700: | |
9794 | id = DPLL_ID_LCPLL_2700; | |
9795 | break; | |
8106ddbd ACO |
9796 | default: |
9797 | MISSING_CASE(pipe_config->ddi_pll_sel); | |
9798 | /* fall through */ | |
9799 | case PORT_CLK_SEL_NONE: | |
8106ddbd | 9800 | return; |
7d2c8175 | 9801 | } |
8106ddbd ACO |
9802 | |
9803 | pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id); | |
7d2c8175 DL |
9804 | } |
9805 | ||
cf30429e JN |
9806 | static bool hsw_get_transcoder_state(struct intel_crtc *crtc, |
9807 | struct intel_crtc_state *pipe_config, | |
9808 | unsigned long *power_domain_mask) | |
9809 | { | |
9810 | struct drm_device *dev = crtc->base.dev; | |
9811 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9812 | enum intel_display_power_domain power_domain; | |
9813 | u32 tmp; | |
9814 | ||
9815 | pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe; | |
9816 | ||
9817 | /* | |
9818 | * XXX: Do intel_display_power_get_if_enabled before reading this (for | |
9819 | * consistency and less surprising code; it's in always on power). | |
9820 | */ | |
9821 | tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP)); | |
9822 | if (tmp & TRANS_DDI_FUNC_ENABLE) { | |
9823 | enum pipe trans_edp_pipe; | |
9824 | switch (tmp & TRANS_DDI_EDP_INPUT_MASK) { | |
9825 | default: | |
9826 | WARN(1, "unknown pipe linked to edp transcoder\n"); | |
9827 | case TRANS_DDI_EDP_INPUT_A_ONOFF: | |
9828 | case TRANS_DDI_EDP_INPUT_A_ON: | |
9829 | trans_edp_pipe = PIPE_A; | |
9830 | break; | |
9831 | case TRANS_DDI_EDP_INPUT_B_ONOFF: | |
9832 | trans_edp_pipe = PIPE_B; | |
9833 | break; | |
9834 | case TRANS_DDI_EDP_INPUT_C_ONOFF: | |
9835 | trans_edp_pipe = PIPE_C; | |
9836 | break; | |
9837 | } | |
9838 | ||
9839 | if (trans_edp_pipe == crtc->pipe) | |
9840 | pipe_config->cpu_transcoder = TRANSCODER_EDP; | |
9841 | } | |
9842 | ||
9843 | power_domain = POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder); | |
9844 | if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) | |
9845 | return false; | |
9846 | *power_domain_mask |= BIT(power_domain); | |
9847 | ||
9848 | tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder)); | |
9849 | ||
9850 | return tmp & PIPECONF_ENABLE; | |
9851 | } | |
9852 | ||
4d1de975 JN |
9853 | static bool bxt_get_dsi_transcoder_state(struct intel_crtc *crtc, |
9854 | struct intel_crtc_state *pipe_config, | |
9855 | unsigned long *power_domain_mask) | |
9856 | { | |
9857 | struct drm_device *dev = crtc->base.dev; | |
9858 | struct drm_i915_private *dev_priv = dev->dev_private; | |
9859 | enum intel_display_power_domain power_domain; | |
9860 | enum port port; | |
9861 | enum transcoder cpu_transcoder; | |
9862 | u32 tmp; | |
9863 | ||
9864 | pipe_config->has_dsi_encoder = false; | |
9865 | ||
9866 | for_each_port_masked(port, BIT(PORT_A) | BIT(PORT_C)) { | |
9867 | if (port == PORT_A) | |
9868 | cpu_transcoder = TRANSCODER_DSI_A; | |
9869 | else | |
9870 | cpu_transcoder = TRANSCODER_DSI_C; | |
9871 | ||
9872 | power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder); | |
9873 | if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) | |
9874 | continue; | |
9875 | *power_domain_mask |= BIT(power_domain); | |
9876 | ||
db18b6a6 ID |
9877 | /* |
9878 | * The PLL needs to be enabled with a valid divider | |
9879 | * configuration, otherwise accessing DSI registers will hang | |
9880 | * the machine. See BSpec North Display Engine | |
9881 | * registers/MIPI[BXT]. We can break out here early, since we | |
9882 | * need the same DSI PLL to be enabled for both DSI ports. | |
9883 | */ | |
9884 | if (!intel_dsi_pll_is_enabled(dev_priv)) | |
9885 | break; | |
9886 | ||
4d1de975 JN |
9887 | /* XXX: this works for video mode only */ |
9888 | tmp = I915_READ(BXT_MIPI_PORT_CTRL(port)); | |
9889 | if (!(tmp & DPI_ENABLE)) | |
9890 | continue; | |
9891 | ||
9892 | tmp = I915_READ(MIPI_CTRL(port)); | |
9893 | if ((tmp & BXT_PIPE_SELECT_MASK) != BXT_PIPE_SELECT(crtc->pipe)) | |
9894 | continue; | |
9895 | ||
9896 | pipe_config->cpu_transcoder = cpu_transcoder; | |
9897 | pipe_config->has_dsi_encoder = true; | |
9898 | break; | |
9899 | } | |
9900 | ||
9901 | return pipe_config->has_dsi_encoder; | |
9902 | } | |
9903 | ||
26804afd | 9904 | static void haswell_get_ddi_port_state(struct intel_crtc *crtc, |
5cec258b | 9905 | struct intel_crtc_state *pipe_config) |
26804afd DV |
9906 | { |
9907 | struct drm_device *dev = crtc->base.dev; | |
9908 | struct drm_i915_private *dev_priv = dev->dev_private; | |
d452c5b6 | 9909 | struct intel_shared_dpll *pll; |
26804afd DV |
9910 | enum port port; |
9911 | uint32_t tmp; | |
9912 | ||
9913 | tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder)); | |
9914 | ||
9915 | port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT; | |
9916 | ||
ef11bdb3 | 9917 | if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) |
96b7dfb7 | 9918 | skylake_get_ddi_pll(dev_priv, port, pipe_config); |
3760b59c S |
9919 | else if (IS_BROXTON(dev)) |
9920 | bxt_get_ddi_pll(dev_priv, port, pipe_config); | |
96b7dfb7 S |
9921 | else |
9922 | haswell_get_ddi_pll(dev_priv, port, pipe_config); | |
9cd86933 | 9923 | |
8106ddbd ACO |
9924 | pll = pipe_config->shared_dpll; |
9925 | if (pll) { | |
2edd6443 ACO |
9926 | WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll, |
9927 | &pipe_config->dpll_hw_state)); | |
d452c5b6 DV |
9928 | } |
9929 | ||
26804afd DV |
9930 | /* |
9931 | * Haswell has only FDI/PCH transcoder A. It is which is connected to | |
9932 | * DDI E. So just check whether this pipe is wired to DDI E and whether | |
9933 | * the PCH transcoder is on. | |
9934 | */ | |
ca370455 DL |
9935 | if (INTEL_INFO(dev)->gen < 9 && |
9936 | (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) { | |
26804afd DV |
9937 | pipe_config->has_pch_encoder = true; |
9938 | ||
9939 | tmp = I915_READ(FDI_RX_CTL(PIPE_A)); | |
9940 | pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >> | |
9941 | FDI_DP_PORT_WIDTH_SHIFT) + 1; | |
9942 | ||
9943 | ironlake_get_fdi_m_n_config(crtc, pipe_config); | |
9944 | } | |
9945 | } | |
9946 | ||
0e8ffe1b | 9947 | static bool haswell_get_pipe_config(struct intel_crtc *crtc, |
5cec258b | 9948 | struct intel_crtc_state *pipe_config) |
0e8ffe1b DV |
9949 | { |
9950 | struct drm_device *dev = crtc->base.dev; | |
9951 | struct drm_i915_private *dev_priv = dev->dev_private; | |
1729050e ID |
9952 | enum intel_display_power_domain power_domain; |
9953 | unsigned long power_domain_mask; | |
cf30429e | 9954 | bool active; |
0e8ffe1b | 9955 | |
1729050e ID |
9956 | power_domain = POWER_DOMAIN_PIPE(crtc->pipe); |
9957 | if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) | |
b5482bd0 | 9958 | return false; |
1729050e ID |
9959 | power_domain_mask = BIT(power_domain); |
9960 | ||
8106ddbd | 9961 | pipe_config->shared_dpll = NULL; |
c0d43d62 | 9962 | |
cf30429e | 9963 | active = hsw_get_transcoder_state(crtc, pipe_config, &power_domain_mask); |
eccb140b | 9964 | |
4d1de975 JN |
9965 | if (IS_BROXTON(dev_priv)) { |
9966 | bxt_get_dsi_transcoder_state(crtc, pipe_config, | |
9967 | &power_domain_mask); | |
9968 | WARN_ON(active && pipe_config->has_dsi_encoder); | |
9969 | if (pipe_config->has_dsi_encoder) | |
9970 | active = true; | |
9971 | } | |
9972 | ||
cf30429e | 9973 | if (!active) |
1729050e | 9974 | goto out; |
0e8ffe1b | 9975 | |
4d1de975 JN |
9976 | if (!pipe_config->has_dsi_encoder) { |
9977 | haswell_get_ddi_port_state(crtc, pipe_config); | |
9978 | intel_get_pipe_timings(crtc, pipe_config); | |
9979 | } | |
627eb5a3 | 9980 | |
bc58be60 | 9981 | intel_get_pipe_src_size(crtc, pipe_config); |
1bd1bd80 | 9982 | |
05dc698c LL |
9983 | pipe_config->gamma_mode = |
9984 | I915_READ(GAMMA_MODE(crtc->pipe)) & GAMMA_MODE_MODE_MASK; | |
9985 | ||
a1b2278e CK |
9986 | if (INTEL_INFO(dev)->gen >= 9) { |
9987 | skl_init_scalers(dev, crtc, pipe_config); | |
9988 | } | |
9989 | ||
af99ceda CK |
9990 | if (INTEL_INFO(dev)->gen >= 9) { |
9991 | pipe_config->scaler_state.scaler_id = -1; | |
9992 | pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX); | |
9993 | } | |
9994 | ||
1729050e ID |
9995 | power_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe); |
9996 | if (intel_display_power_get_if_enabled(dev_priv, power_domain)) { | |
9997 | power_domain_mask |= BIT(power_domain); | |
1c132b44 | 9998 | if (INTEL_INFO(dev)->gen >= 9) |
bd2e244f | 9999 | skylake_get_pfit_config(crtc, pipe_config); |
ff6d9f55 | 10000 | else |
1c132b44 | 10001 | ironlake_get_pfit_config(crtc, pipe_config); |
bd2e244f | 10002 | } |
88adfff1 | 10003 | |
e59150dc JB |
10004 | if (IS_HASWELL(dev)) |
10005 | pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) && | |
10006 | (I915_READ(IPS_CTL) & IPS_ENABLE); | |
42db64ef | 10007 | |
4d1de975 JN |
10008 | if (pipe_config->cpu_transcoder != TRANSCODER_EDP && |
10009 | !transcoder_is_dsi(pipe_config->cpu_transcoder)) { | |
ebb69c95 CT |
10010 | pipe_config->pixel_multiplier = |
10011 | I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1; | |
10012 | } else { | |
10013 | pipe_config->pixel_multiplier = 1; | |
10014 | } | |
6c49f241 | 10015 | |
1729050e ID |
10016 | out: |
10017 | for_each_power_domain(power_domain, power_domain_mask) | |
10018 | intel_display_power_put(dev_priv, power_domain); | |
10019 | ||
cf30429e | 10020 | return active; |
0e8ffe1b DV |
10021 | } |
10022 | ||
55a08b3f ML |
10023 | static void i845_update_cursor(struct drm_crtc *crtc, u32 base, |
10024 | const struct intel_plane_state *plane_state) | |
560b85bb CW |
10025 | { |
10026 | struct drm_device *dev = crtc->dev; | |
10027 | struct drm_i915_private *dev_priv = dev->dev_private; | |
10028 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
dc41c154 | 10029 | uint32_t cntl = 0, size = 0; |
560b85bb | 10030 | |
55a08b3f ML |
10031 | if (plane_state && plane_state->visible) { |
10032 | unsigned int width = plane_state->base.crtc_w; | |
10033 | unsigned int height = plane_state->base.crtc_h; | |
dc41c154 VS |
10034 | unsigned int stride = roundup_pow_of_two(width) * 4; |
10035 | ||
10036 | switch (stride) { | |
10037 | default: | |
10038 | WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n", | |
10039 | width, stride); | |
10040 | stride = 256; | |
10041 | /* fallthrough */ | |
10042 | case 256: | |
10043 | case 512: | |
10044 | case 1024: | |
10045 | case 2048: | |
10046 | break; | |
4b0e333e CW |
10047 | } |
10048 | ||
dc41c154 VS |
10049 | cntl |= CURSOR_ENABLE | |
10050 | CURSOR_GAMMA_ENABLE | | |
10051 | CURSOR_FORMAT_ARGB | | |
10052 | CURSOR_STRIDE(stride); | |
10053 | ||
10054 | size = (height << 12) | width; | |
4b0e333e | 10055 | } |
560b85bb | 10056 | |
dc41c154 VS |
10057 | if (intel_crtc->cursor_cntl != 0 && |
10058 | (intel_crtc->cursor_base != base || | |
10059 | intel_crtc->cursor_size != size || | |
10060 | intel_crtc->cursor_cntl != cntl)) { | |
10061 | /* On these chipsets we can only modify the base/size/stride | |
10062 | * whilst the cursor is disabled. | |
10063 | */ | |
0b87c24e VS |
10064 | I915_WRITE(CURCNTR(PIPE_A), 0); |
10065 | POSTING_READ(CURCNTR(PIPE_A)); | |
dc41c154 | 10066 | intel_crtc->cursor_cntl = 0; |
4b0e333e | 10067 | } |
560b85bb | 10068 | |
99d1f387 | 10069 | if (intel_crtc->cursor_base != base) { |
0b87c24e | 10070 | I915_WRITE(CURBASE(PIPE_A), base); |
99d1f387 VS |
10071 | intel_crtc->cursor_base = base; |
10072 | } | |
4726e0b0 | 10073 | |
dc41c154 VS |
10074 | if (intel_crtc->cursor_size != size) { |
10075 | I915_WRITE(CURSIZE, size); | |
10076 | intel_crtc->cursor_size = size; | |
4b0e333e | 10077 | } |
560b85bb | 10078 | |
4b0e333e | 10079 | if (intel_crtc->cursor_cntl != cntl) { |
0b87c24e VS |
10080 | I915_WRITE(CURCNTR(PIPE_A), cntl); |
10081 | POSTING_READ(CURCNTR(PIPE_A)); | |
4b0e333e | 10082 | intel_crtc->cursor_cntl = cntl; |
560b85bb | 10083 | } |
560b85bb CW |
10084 | } |
10085 | ||
55a08b3f ML |
10086 | static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base, |
10087 | const struct intel_plane_state *plane_state) | |
65a21cd6 JB |
10088 | { |
10089 | struct drm_device *dev = crtc->dev; | |
10090 | struct drm_i915_private *dev_priv = dev->dev_private; | |
10091 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
10092 | int pipe = intel_crtc->pipe; | |
663f3122 | 10093 | uint32_t cntl = 0; |
4b0e333e | 10094 | |
55a08b3f | 10095 | if (plane_state && plane_state->visible) { |
4b0e333e | 10096 | cntl = MCURSOR_GAMMA_ENABLE; |
55a08b3f | 10097 | switch (plane_state->base.crtc_w) { |
4726e0b0 SK |
10098 | case 64: |
10099 | cntl |= CURSOR_MODE_64_ARGB_AX; | |
10100 | break; | |
10101 | case 128: | |
10102 | cntl |= CURSOR_MODE_128_ARGB_AX; | |
10103 | break; | |
10104 | case 256: | |
10105 | cntl |= CURSOR_MODE_256_ARGB_AX; | |
10106 | break; | |
10107 | default: | |
55a08b3f | 10108 | MISSING_CASE(plane_state->base.crtc_w); |
4726e0b0 | 10109 | return; |
65a21cd6 | 10110 | } |
4b0e333e | 10111 | cntl |= pipe << 28; /* Connect to correct pipe */ |
47bf17a7 | 10112 | |
fc6f93bc | 10113 | if (HAS_DDI(dev)) |
47bf17a7 | 10114 | cntl |= CURSOR_PIPE_CSC_ENABLE; |
65a21cd6 | 10115 | |
55a08b3f ML |
10116 | if (plane_state->base.rotation == BIT(DRM_ROTATE_180)) |
10117 | cntl |= CURSOR_ROTATE_180; | |
10118 | } | |
4398ad45 | 10119 | |
4b0e333e CW |
10120 | if (intel_crtc->cursor_cntl != cntl) { |
10121 | I915_WRITE(CURCNTR(pipe), cntl); | |
10122 | POSTING_READ(CURCNTR(pipe)); | |
10123 | intel_crtc->cursor_cntl = cntl; | |
65a21cd6 | 10124 | } |
4b0e333e | 10125 | |
65a21cd6 | 10126 | /* and commit changes on next vblank */ |
5efb3e28 VS |
10127 | I915_WRITE(CURBASE(pipe), base); |
10128 | POSTING_READ(CURBASE(pipe)); | |
99d1f387 VS |
10129 | |
10130 | intel_crtc->cursor_base = base; | |
65a21cd6 JB |
10131 | } |
10132 | ||
cda4b7d3 | 10133 | /* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */ |
6b383a7f | 10134 | static void intel_crtc_update_cursor(struct drm_crtc *crtc, |
55a08b3f | 10135 | const struct intel_plane_state *plane_state) |
cda4b7d3 CW |
10136 | { |
10137 | struct drm_device *dev = crtc->dev; | |
10138 | struct drm_i915_private *dev_priv = dev->dev_private; | |
10139 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
10140 | int pipe = intel_crtc->pipe; | |
55a08b3f ML |
10141 | u32 base = intel_crtc->cursor_addr; |
10142 | u32 pos = 0; | |
cda4b7d3 | 10143 | |
55a08b3f ML |
10144 | if (plane_state) { |
10145 | int x = plane_state->base.crtc_x; | |
10146 | int y = plane_state->base.crtc_y; | |
cda4b7d3 | 10147 | |
55a08b3f ML |
10148 | if (x < 0) { |
10149 | pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT; | |
10150 | x = -x; | |
10151 | } | |
10152 | pos |= x << CURSOR_X_SHIFT; | |
cda4b7d3 | 10153 | |
55a08b3f ML |
10154 | if (y < 0) { |
10155 | pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT; | |
10156 | y = -y; | |
10157 | } | |
10158 | pos |= y << CURSOR_Y_SHIFT; | |
10159 | ||
10160 | /* ILK+ do this automagically */ | |
10161 | if (HAS_GMCH_DISPLAY(dev) && | |
10162 | plane_state->base.rotation == BIT(DRM_ROTATE_180)) { | |
10163 | base += (plane_state->base.crtc_h * | |
10164 | plane_state->base.crtc_w - 1) * 4; | |
10165 | } | |
cda4b7d3 | 10166 | } |
cda4b7d3 | 10167 | |
5efb3e28 VS |
10168 | I915_WRITE(CURPOS(pipe), pos); |
10169 | ||
8ac54669 | 10170 | if (IS_845G(dev) || IS_I865G(dev)) |
55a08b3f | 10171 | i845_update_cursor(crtc, base, plane_state); |
5efb3e28 | 10172 | else |
55a08b3f | 10173 | i9xx_update_cursor(crtc, base, plane_state); |
cda4b7d3 CW |
10174 | } |
10175 | ||
dc41c154 VS |
10176 | static bool cursor_size_ok(struct drm_device *dev, |
10177 | uint32_t width, uint32_t height) | |
10178 | { | |
10179 | if (width == 0 || height == 0) | |
10180 | return false; | |
10181 | ||
10182 | /* | |
10183 | * 845g/865g are special in that they are only limited by | |
10184 | * the width of their cursors, the height is arbitrary up to | |
10185 | * the precision of the register. Everything else requires | |
10186 | * square cursors, limited to a few power-of-two sizes. | |
10187 | */ | |
10188 | if (IS_845G(dev) || IS_I865G(dev)) { | |
10189 | if ((width & 63) != 0) | |
10190 | return false; | |
10191 | ||
10192 | if (width > (IS_845G(dev) ? 64 : 512)) | |
10193 | return false; | |
10194 | ||
10195 | if (height > 1023) | |
10196 | return false; | |
10197 | } else { | |
10198 | switch (width | height) { | |
10199 | case 256: | |
10200 | case 128: | |
10201 | if (IS_GEN2(dev)) | |
10202 | return false; | |
10203 | case 64: | |
10204 | break; | |
10205 | default: | |
10206 | return false; | |
10207 | } | |
10208 | } | |
10209 | ||
10210 | return true; | |
10211 | } | |
10212 | ||
79e53945 JB |
10213 | /* VESA 640x480x72Hz mode to set on the pipe */ |
10214 | static struct drm_display_mode load_detect_mode = { | |
10215 | DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664, | |
10216 | 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC), | |
10217 | }; | |
10218 | ||
a8bb6818 DV |
10219 | struct drm_framebuffer * |
10220 | __intel_framebuffer_create(struct drm_device *dev, | |
10221 | struct drm_mode_fb_cmd2 *mode_cmd, | |
10222 | struct drm_i915_gem_object *obj) | |
d2dff872 CW |
10223 | { |
10224 | struct intel_framebuffer *intel_fb; | |
10225 | int ret; | |
10226 | ||
10227 | intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL); | |
dcb1394e | 10228 | if (!intel_fb) |
d2dff872 | 10229 | return ERR_PTR(-ENOMEM); |
d2dff872 CW |
10230 | |
10231 | ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj); | |
dd4916c5 DV |
10232 | if (ret) |
10233 | goto err; | |
d2dff872 CW |
10234 | |
10235 | return &intel_fb->base; | |
dcb1394e | 10236 | |
dd4916c5 | 10237 | err: |
dd4916c5 | 10238 | kfree(intel_fb); |
dd4916c5 | 10239 | return ERR_PTR(ret); |
d2dff872 CW |
10240 | } |
10241 | ||
b5ea642a | 10242 | static struct drm_framebuffer * |
a8bb6818 DV |
10243 | intel_framebuffer_create(struct drm_device *dev, |
10244 | struct drm_mode_fb_cmd2 *mode_cmd, | |
10245 | struct drm_i915_gem_object *obj) | |
10246 | { | |
10247 | struct drm_framebuffer *fb; | |
10248 | int ret; | |
10249 | ||
10250 | ret = i915_mutex_lock_interruptible(dev); | |
10251 | if (ret) | |
10252 | return ERR_PTR(ret); | |
10253 | fb = __intel_framebuffer_create(dev, mode_cmd, obj); | |
10254 | mutex_unlock(&dev->struct_mutex); | |
10255 | ||
10256 | return fb; | |
10257 | } | |
10258 | ||
d2dff872 CW |
10259 | static u32 |
10260 | intel_framebuffer_pitch_for_width(int width, int bpp) | |
10261 | { | |
10262 | u32 pitch = DIV_ROUND_UP(width * bpp, 8); | |
10263 | return ALIGN(pitch, 64); | |
10264 | } | |
10265 | ||
10266 | static u32 | |
10267 | intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp) | |
10268 | { | |
10269 | u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp); | |
1267a26b | 10270 | return PAGE_ALIGN(pitch * mode->vdisplay); |
d2dff872 CW |
10271 | } |
10272 | ||
10273 | static struct drm_framebuffer * | |
10274 | intel_framebuffer_create_for_mode(struct drm_device *dev, | |
10275 | struct drm_display_mode *mode, | |
10276 | int depth, int bpp) | |
10277 | { | |
dcb1394e | 10278 | struct drm_framebuffer *fb; |
d2dff872 | 10279 | struct drm_i915_gem_object *obj; |
0fed39bd | 10280 | struct drm_mode_fb_cmd2 mode_cmd = { 0 }; |
d2dff872 CW |
10281 | |
10282 | obj = i915_gem_alloc_object(dev, | |
10283 | intel_framebuffer_size_for_mode(mode, bpp)); | |
10284 | if (obj == NULL) | |
10285 | return ERR_PTR(-ENOMEM); | |
10286 | ||
10287 | mode_cmd.width = mode->hdisplay; | |
10288 | mode_cmd.height = mode->vdisplay; | |
308e5bcb JB |
10289 | mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width, |
10290 | bpp); | |
5ca0c34a | 10291 | mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth); |
d2dff872 | 10292 | |
dcb1394e LW |
10293 | fb = intel_framebuffer_create(dev, &mode_cmd, obj); |
10294 | if (IS_ERR(fb)) | |
10295 | drm_gem_object_unreference_unlocked(&obj->base); | |
10296 | ||
10297 | return fb; | |
d2dff872 CW |
10298 | } |
10299 | ||
10300 | static struct drm_framebuffer * | |
10301 | mode_fits_in_fbdev(struct drm_device *dev, | |
10302 | struct drm_display_mode *mode) | |
10303 | { | |
0695726e | 10304 | #ifdef CONFIG_DRM_FBDEV_EMULATION |
d2dff872 CW |
10305 | struct drm_i915_private *dev_priv = dev->dev_private; |
10306 | struct drm_i915_gem_object *obj; | |
10307 | struct drm_framebuffer *fb; | |
10308 | ||
4c0e5528 | 10309 | if (!dev_priv->fbdev) |
d2dff872 CW |
10310 | return NULL; |
10311 | ||
4c0e5528 | 10312 | if (!dev_priv->fbdev->fb) |
d2dff872 CW |
10313 | return NULL; |
10314 | ||
4c0e5528 DV |
10315 | obj = dev_priv->fbdev->fb->obj; |
10316 | BUG_ON(!obj); | |
10317 | ||
8bcd4553 | 10318 | fb = &dev_priv->fbdev->fb->base; |
01f2c773 VS |
10319 | if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay, |
10320 | fb->bits_per_pixel)) | |
d2dff872 CW |
10321 | return NULL; |
10322 | ||
01f2c773 | 10323 | if (obj->base.size < mode->vdisplay * fb->pitches[0]) |
d2dff872 CW |
10324 | return NULL; |
10325 | ||
edde3617 | 10326 | drm_framebuffer_reference(fb); |
d2dff872 | 10327 | return fb; |
4520f53a DV |
10328 | #else |
10329 | return NULL; | |
10330 | #endif | |
d2dff872 CW |
10331 | } |
10332 | ||
d3a40d1b ACO |
10333 | static int intel_modeset_setup_plane_state(struct drm_atomic_state *state, |
10334 | struct drm_crtc *crtc, | |
10335 | struct drm_display_mode *mode, | |
10336 | struct drm_framebuffer *fb, | |
10337 | int x, int y) | |
10338 | { | |
10339 | struct drm_plane_state *plane_state; | |
10340 | int hdisplay, vdisplay; | |
10341 | int ret; | |
10342 | ||
10343 | plane_state = drm_atomic_get_plane_state(state, crtc->primary); | |
10344 | if (IS_ERR(plane_state)) | |
10345 | return PTR_ERR(plane_state); | |
10346 | ||
10347 | if (mode) | |
10348 | drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay); | |
10349 | else | |
10350 | hdisplay = vdisplay = 0; | |
10351 | ||
10352 | ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL); | |
10353 | if (ret) | |
10354 | return ret; | |
10355 | drm_atomic_set_fb_for_plane(plane_state, fb); | |
10356 | plane_state->crtc_x = 0; | |
10357 | plane_state->crtc_y = 0; | |
10358 | plane_state->crtc_w = hdisplay; | |
10359 | plane_state->crtc_h = vdisplay; | |
10360 | plane_state->src_x = x << 16; | |
10361 | plane_state->src_y = y << 16; | |
10362 | plane_state->src_w = hdisplay << 16; | |
10363 | plane_state->src_h = vdisplay << 16; | |
10364 | ||
10365 | return 0; | |
10366 | } | |
10367 | ||
d2434ab7 | 10368 | bool intel_get_load_detect_pipe(struct drm_connector *connector, |
7173188d | 10369 | struct drm_display_mode *mode, |
51fd371b RC |
10370 | struct intel_load_detect_pipe *old, |
10371 | struct drm_modeset_acquire_ctx *ctx) | |
79e53945 JB |
10372 | { |
10373 | struct intel_crtc *intel_crtc; | |
d2434ab7 DV |
10374 | struct intel_encoder *intel_encoder = |
10375 | intel_attached_encoder(connector); | |
79e53945 | 10376 | struct drm_crtc *possible_crtc; |
4ef69c7a | 10377 | struct drm_encoder *encoder = &intel_encoder->base; |
79e53945 JB |
10378 | struct drm_crtc *crtc = NULL; |
10379 | struct drm_device *dev = encoder->dev; | |
94352cf9 | 10380 | struct drm_framebuffer *fb; |
51fd371b | 10381 | struct drm_mode_config *config = &dev->mode_config; |
edde3617 | 10382 | struct drm_atomic_state *state = NULL, *restore_state = NULL; |
944b0c76 | 10383 | struct drm_connector_state *connector_state; |
4be07317 | 10384 | struct intel_crtc_state *crtc_state; |
51fd371b | 10385 | int ret, i = -1; |
79e53945 | 10386 | |
d2dff872 | 10387 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
c23cc417 | 10388 | connector->base.id, connector->name, |
8e329a03 | 10389 | encoder->base.id, encoder->name); |
d2dff872 | 10390 | |
edde3617 ML |
10391 | old->restore_state = NULL; |
10392 | ||
51fd371b RC |
10393 | retry: |
10394 | ret = drm_modeset_lock(&config->connection_mutex, ctx); | |
10395 | if (ret) | |
ad3c558f | 10396 | goto fail; |
6e9f798d | 10397 | |
79e53945 JB |
10398 | /* |
10399 | * Algorithm gets a little messy: | |
7a5e4805 | 10400 | * |
79e53945 JB |
10401 | * - if the connector already has an assigned crtc, use it (but make |
10402 | * sure it's on first) | |
7a5e4805 | 10403 | * |
79e53945 JB |
10404 | * - try to find the first unused crtc that can drive this connector, |
10405 | * and use that if we find one | |
79e53945 JB |
10406 | */ |
10407 | ||
10408 | /* See if we already have a CRTC for this connector */ | |
edde3617 ML |
10409 | if (connector->state->crtc) { |
10410 | crtc = connector->state->crtc; | |
8261b191 | 10411 | |
51fd371b | 10412 | ret = drm_modeset_lock(&crtc->mutex, ctx); |
4d02e2de | 10413 | if (ret) |
ad3c558f | 10414 | goto fail; |
8261b191 CW |
10415 | |
10416 | /* Make sure the crtc and connector are running */ | |
edde3617 | 10417 | goto found; |
79e53945 JB |
10418 | } |
10419 | ||
10420 | /* Find an unused one (if possible) */ | |
70e1e0ec | 10421 | for_each_crtc(dev, possible_crtc) { |
79e53945 JB |
10422 | i++; |
10423 | if (!(encoder->possible_crtcs & (1 << i))) | |
10424 | continue; | |
edde3617 ML |
10425 | |
10426 | ret = drm_modeset_lock(&possible_crtc->mutex, ctx); | |
10427 | if (ret) | |
10428 | goto fail; | |
10429 | ||
10430 | if (possible_crtc->state->enable) { | |
10431 | drm_modeset_unlock(&possible_crtc->mutex); | |
a459249c | 10432 | continue; |
edde3617 | 10433 | } |
a459249c VS |
10434 | |
10435 | crtc = possible_crtc; | |
10436 | break; | |
79e53945 JB |
10437 | } |
10438 | ||
10439 | /* | |
10440 | * If we didn't find an unused CRTC, don't use any. | |
10441 | */ | |
10442 | if (!crtc) { | |
7173188d | 10443 | DRM_DEBUG_KMS("no pipe available for load-detect\n"); |
ad3c558f | 10444 | goto fail; |
79e53945 JB |
10445 | } |
10446 | ||
edde3617 ML |
10447 | found: |
10448 | intel_crtc = to_intel_crtc(crtc); | |
10449 | ||
4d02e2de DV |
10450 | ret = drm_modeset_lock(&crtc->primary->mutex, ctx); |
10451 | if (ret) | |
ad3c558f | 10452 | goto fail; |
79e53945 | 10453 | |
83a57153 | 10454 | state = drm_atomic_state_alloc(dev); |
edde3617 ML |
10455 | restore_state = drm_atomic_state_alloc(dev); |
10456 | if (!state || !restore_state) { | |
10457 | ret = -ENOMEM; | |
10458 | goto fail; | |
10459 | } | |
83a57153 ACO |
10460 | |
10461 | state->acquire_ctx = ctx; | |
edde3617 | 10462 | restore_state->acquire_ctx = ctx; |
83a57153 | 10463 | |
944b0c76 ACO |
10464 | connector_state = drm_atomic_get_connector_state(state, connector); |
10465 | if (IS_ERR(connector_state)) { | |
10466 | ret = PTR_ERR(connector_state); | |
10467 | goto fail; | |
10468 | } | |
10469 | ||
edde3617 ML |
10470 | ret = drm_atomic_set_crtc_for_connector(connector_state, crtc); |
10471 | if (ret) | |
10472 | goto fail; | |
944b0c76 | 10473 | |
4be07317 ACO |
10474 | crtc_state = intel_atomic_get_crtc_state(state, intel_crtc); |
10475 | if (IS_ERR(crtc_state)) { | |
10476 | ret = PTR_ERR(crtc_state); | |
10477 | goto fail; | |
10478 | } | |
10479 | ||
49d6fa21 | 10480 | crtc_state->base.active = crtc_state->base.enable = true; |
4be07317 | 10481 | |
6492711d CW |
10482 | if (!mode) |
10483 | mode = &load_detect_mode; | |
79e53945 | 10484 | |
d2dff872 CW |
10485 | /* We need a framebuffer large enough to accommodate all accesses |
10486 | * that the plane may generate whilst we perform load detection. | |
10487 | * We can not rely on the fbcon either being present (we get called | |
10488 | * during its initialisation to detect all boot displays, or it may | |
10489 | * not even exist) or that it is large enough to satisfy the | |
10490 | * requested mode. | |
10491 | */ | |
94352cf9 DV |
10492 | fb = mode_fits_in_fbdev(dev, mode); |
10493 | if (fb == NULL) { | |
d2dff872 | 10494 | DRM_DEBUG_KMS("creating tmp fb for load-detection\n"); |
94352cf9 | 10495 | fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32); |
d2dff872 CW |
10496 | } else |
10497 | DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n"); | |
94352cf9 | 10498 | if (IS_ERR(fb)) { |
d2dff872 | 10499 | DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n"); |
412b61d8 | 10500 | goto fail; |
79e53945 | 10501 | } |
79e53945 | 10502 | |
d3a40d1b ACO |
10503 | ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0); |
10504 | if (ret) | |
10505 | goto fail; | |
10506 | ||
edde3617 ML |
10507 | drm_framebuffer_unreference(fb); |
10508 | ||
10509 | ret = drm_atomic_set_mode_for_crtc(&crtc_state->base, mode); | |
10510 | if (ret) | |
10511 | goto fail; | |
10512 | ||
10513 | ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(restore_state, connector)); | |
10514 | if (!ret) | |
10515 | ret = PTR_ERR_OR_ZERO(drm_atomic_get_crtc_state(restore_state, crtc)); | |
10516 | if (!ret) | |
10517 | ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(restore_state, crtc->primary)); | |
10518 | if (ret) { | |
10519 | DRM_DEBUG_KMS("Failed to create a copy of old state to restore: %i\n", ret); | |
10520 | goto fail; | |
10521 | } | |
8c7b5ccb | 10522 | |
3ba86073 ML |
10523 | ret = drm_atomic_commit(state); |
10524 | if (ret) { | |
6492711d | 10525 | DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n"); |
412b61d8 | 10526 | goto fail; |
79e53945 | 10527 | } |
edde3617 ML |
10528 | |
10529 | old->restore_state = restore_state; | |
7173188d | 10530 | |
79e53945 | 10531 | /* let the connector get through one full cycle before testing */ |
9d0498a2 | 10532 | intel_wait_for_vblank(dev, intel_crtc->pipe); |
7173188d | 10533 | return true; |
412b61d8 | 10534 | |
ad3c558f | 10535 | fail: |
e5d958ef | 10536 | drm_atomic_state_free(state); |
edde3617 ML |
10537 | drm_atomic_state_free(restore_state); |
10538 | restore_state = state = NULL; | |
83a57153 | 10539 | |
51fd371b RC |
10540 | if (ret == -EDEADLK) { |
10541 | drm_modeset_backoff(ctx); | |
10542 | goto retry; | |
10543 | } | |
10544 | ||
412b61d8 | 10545 | return false; |
79e53945 JB |
10546 | } |
10547 | ||
d2434ab7 | 10548 | void intel_release_load_detect_pipe(struct drm_connector *connector, |
49172fee ACO |
10549 | struct intel_load_detect_pipe *old, |
10550 | struct drm_modeset_acquire_ctx *ctx) | |
79e53945 | 10551 | { |
d2434ab7 DV |
10552 | struct intel_encoder *intel_encoder = |
10553 | intel_attached_encoder(connector); | |
4ef69c7a | 10554 | struct drm_encoder *encoder = &intel_encoder->base; |
edde3617 | 10555 | struct drm_atomic_state *state = old->restore_state; |
d3a40d1b | 10556 | int ret; |
79e53945 | 10557 | |
d2dff872 | 10558 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n", |
c23cc417 | 10559 | connector->base.id, connector->name, |
8e329a03 | 10560 | encoder->base.id, encoder->name); |
d2dff872 | 10561 | |
edde3617 | 10562 | if (!state) |
0622a53c | 10563 | return; |
79e53945 | 10564 | |
edde3617 ML |
10565 | ret = drm_atomic_commit(state); |
10566 | if (ret) { | |
10567 | DRM_DEBUG_KMS("Couldn't release load detect pipe: %i\n", ret); | |
10568 | drm_atomic_state_free(state); | |
10569 | } | |
79e53945 JB |
10570 | } |
10571 | ||
da4a1efa | 10572 | static int i9xx_pll_refclk(struct drm_device *dev, |
5cec258b | 10573 | const struct intel_crtc_state *pipe_config) |
da4a1efa VS |
10574 | { |
10575 | struct drm_i915_private *dev_priv = dev->dev_private; | |
10576 | u32 dpll = pipe_config->dpll_hw_state.dpll; | |
10577 | ||
10578 | if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN) | |
e91e941b | 10579 | return dev_priv->vbt.lvds_ssc_freq; |
da4a1efa VS |
10580 | else if (HAS_PCH_SPLIT(dev)) |
10581 | return 120000; | |
10582 | else if (!IS_GEN2(dev)) | |
10583 | return 96000; | |
10584 | else | |
10585 | return 48000; | |
10586 | } | |
10587 | ||
79e53945 | 10588 | /* Returns the clock of the currently programmed mode of the given pipe. */ |
f1f644dc | 10589 | static void i9xx_crtc_clock_get(struct intel_crtc *crtc, |
5cec258b | 10590 | struct intel_crtc_state *pipe_config) |
79e53945 | 10591 | { |
f1f644dc | 10592 | struct drm_device *dev = crtc->base.dev; |
79e53945 | 10593 | struct drm_i915_private *dev_priv = dev->dev_private; |
f1f644dc | 10594 | int pipe = pipe_config->cpu_transcoder; |
293623f7 | 10595 | u32 dpll = pipe_config->dpll_hw_state.dpll; |
79e53945 JB |
10596 | u32 fp; |
10597 | intel_clock_t clock; | |
dccbea3b | 10598 | int port_clock; |
da4a1efa | 10599 | int refclk = i9xx_pll_refclk(dev, pipe_config); |
79e53945 JB |
10600 | |
10601 | if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0) | |
293623f7 | 10602 | fp = pipe_config->dpll_hw_state.fp0; |
79e53945 | 10603 | else |
293623f7 | 10604 | fp = pipe_config->dpll_hw_state.fp1; |
79e53945 JB |
10605 | |
10606 | clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT; | |
f2b115e6 AJ |
10607 | if (IS_PINEVIEW(dev)) { |
10608 | clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1; | |
10609 | clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT; | |
2177832f SL |
10610 | } else { |
10611 | clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT; | |
10612 | clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT; | |
10613 | } | |
10614 | ||
a6c45cf0 | 10615 | if (!IS_GEN2(dev)) { |
f2b115e6 AJ |
10616 | if (IS_PINEVIEW(dev)) |
10617 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >> | |
10618 | DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW); | |
2177832f SL |
10619 | else |
10620 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >> | |
79e53945 JB |
10621 | DPLL_FPA01_P1_POST_DIV_SHIFT); |
10622 | ||
10623 | switch (dpll & DPLL_MODE_MASK) { | |
10624 | case DPLLB_MODE_DAC_SERIAL: | |
10625 | clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ? | |
10626 | 5 : 10; | |
10627 | break; | |
10628 | case DPLLB_MODE_LVDS: | |
10629 | clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ? | |
10630 | 7 : 14; | |
10631 | break; | |
10632 | default: | |
28c97730 | 10633 | DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed " |
79e53945 | 10634 | "mode\n", (int)(dpll & DPLL_MODE_MASK)); |
f1f644dc | 10635 | return; |
79e53945 JB |
10636 | } |
10637 | ||
ac58c3f0 | 10638 | if (IS_PINEVIEW(dev)) |
dccbea3b | 10639 | port_clock = pnv_calc_dpll_params(refclk, &clock); |
ac58c3f0 | 10640 | else |
dccbea3b | 10641 | port_clock = i9xx_calc_dpll_params(refclk, &clock); |
79e53945 | 10642 | } else { |
0fb58223 | 10643 | u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS); |
b1c560d1 | 10644 | bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN); |
79e53945 JB |
10645 | |
10646 | if (is_lvds) { | |
10647 | clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >> | |
10648 | DPLL_FPA01_P1_POST_DIV_SHIFT); | |
b1c560d1 VS |
10649 | |
10650 | if (lvds & LVDS_CLKB_POWER_UP) | |
10651 | clock.p2 = 7; | |
10652 | else | |
10653 | clock.p2 = 14; | |
79e53945 JB |
10654 | } else { |
10655 | if (dpll & PLL_P1_DIVIDE_BY_TWO) | |
10656 | clock.p1 = 2; | |
10657 | else { | |
10658 | clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >> | |
10659 | DPLL_FPA01_P1_POST_DIV_SHIFT) + 2; | |
10660 | } | |
10661 | if (dpll & PLL_P2_DIVIDE_BY_4) | |
10662 | clock.p2 = 4; | |
10663 | else | |
10664 | clock.p2 = 2; | |
79e53945 | 10665 | } |
da4a1efa | 10666 | |
dccbea3b | 10667 | port_clock = i9xx_calc_dpll_params(refclk, &clock); |
79e53945 JB |
10668 | } |
10669 | ||
18442d08 VS |
10670 | /* |
10671 | * This value includes pixel_multiplier. We will use | |
241bfc38 | 10672 | * port_clock to compute adjusted_mode.crtc_clock in the |
18442d08 VS |
10673 | * encoder's get_config() function. |
10674 | */ | |
dccbea3b | 10675 | pipe_config->port_clock = port_clock; |
f1f644dc JB |
10676 | } |
10677 | ||
6878da05 VS |
10678 | int intel_dotclock_calculate(int link_freq, |
10679 | const struct intel_link_m_n *m_n) | |
f1f644dc | 10680 | { |
f1f644dc JB |
10681 | /* |
10682 | * The calculation for the data clock is: | |
1041a02f | 10683 | * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp |
f1f644dc | 10684 | * But we want to avoid losing precison if possible, so: |
1041a02f | 10685 | * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp)) |
f1f644dc JB |
10686 | * |
10687 | * and the link clock is simpler: | |
1041a02f | 10688 | * link_clock = (m * link_clock) / n |
f1f644dc JB |
10689 | */ |
10690 | ||
6878da05 VS |
10691 | if (!m_n->link_n) |
10692 | return 0; | |
f1f644dc | 10693 | |
6878da05 VS |
10694 | return div_u64((u64)m_n->link_m * link_freq, m_n->link_n); |
10695 | } | |
f1f644dc | 10696 | |
18442d08 | 10697 | static void ironlake_pch_clock_get(struct intel_crtc *crtc, |
5cec258b | 10698 | struct intel_crtc_state *pipe_config) |
6878da05 | 10699 | { |
e3b247da | 10700 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
79e53945 | 10701 | |
18442d08 VS |
10702 | /* read out port_clock from the DPLL */ |
10703 | i9xx_crtc_clock_get(crtc, pipe_config); | |
f1f644dc | 10704 | |
f1f644dc | 10705 | /* |
e3b247da VS |
10706 | * In case there is an active pipe without active ports, |
10707 | * we may need some idea for the dotclock anyway. | |
10708 | * Calculate one based on the FDI configuration. | |
79e53945 | 10709 | */ |
2d112de7 | 10710 | pipe_config->base.adjusted_mode.crtc_clock = |
21a727b3 | 10711 | intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config), |
18442d08 | 10712 | &pipe_config->fdi_m_n); |
79e53945 JB |
10713 | } |
10714 | ||
10715 | /** Returns the currently programmed mode of the given pipe. */ | |
10716 | struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev, | |
10717 | struct drm_crtc *crtc) | |
10718 | { | |
548f245b | 10719 | struct drm_i915_private *dev_priv = dev->dev_private; |
79e53945 | 10720 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
6e3c9717 | 10721 | enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder; |
79e53945 | 10722 | struct drm_display_mode *mode; |
3f36b937 | 10723 | struct intel_crtc_state *pipe_config; |
fe2b8f9d PZ |
10724 | int htot = I915_READ(HTOTAL(cpu_transcoder)); |
10725 | int hsync = I915_READ(HSYNC(cpu_transcoder)); | |
10726 | int vtot = I915_READ(VTOTAL(cpu_transcoder)); | |
10727 | int vsync = I915_READ(VSYNC(cpu_transcoder)); | |
293623f7 | 10728 | enum pipe pipe = intel_crtc->pipe; |
79e53945 JB |
10729 | |
10730 | mode = kzalloc(sizeof(*mode), GFP_KERNEL); | |
10731 | if (!mode) | |
10732 | return NULL; | |
10733 | ||
3f36b937 TU |
10734 | pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL); |
10735 | if (!pipe_config) { | |
10736 | kfree(mode); | |
10737 | return NULL; | |
10738 | } | |
10739 | ||
f1f644dc JB |
10740 | /* |
10741 | * Construct a pipe_config sufficient for getting the clock info | |
10742 | * back out of crtc_clock_get. | |
10743 | * | |
10744 | * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need | |
10745 | * to use a real value here instead. | |
10746 | */ | |
3f36b937 TU |
10747 | pipe_config->cpu_transcoder = (enum transcoder) pipe; |
10748 | pipe_config->pixel_multiplier = 1; | |
10749 | pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(pipe)); | |
10750 | pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(pipe)); | |
10751 | pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(pipe)); | |
10752 | i9xx_crtc_clock_get(intel_crtc, pipe_config); | |
10753 | ||
10754 | mode->clock = pipe_config->port_clock / pipe_config->pixel_multiplier; | |
79e53945 JB |
10755 | mode->hdisplay = (htot & 0xffff) + 1; |
10756 | mode->htotal = ((htot & 0xffff0000) >> 16) + 1; | |
10757 | mode->hsync_start = (hsync & 0xffff) + 1; | |
10758 | mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1; | |
10759 | mode->vdisplay = (vtot & 0xffff) + 1; | |
10760 | mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1; | |
10761 | mode->vsync_start = (vsync & 0xffff) + 1; | |
10762 | mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1; | |
10763 | ||
10764 | drm_mode_set_name(mode); | |
79e53945 | 10765 | |
3f36b937 TU |
10766 | kfree(pipe_config); |
10767 | ||
79e53945 JB |
10768 | return mode; |
10769 | } | |
10770 | ||
f047e395 CW |
10771 | void intel_mark_busy(struct drm_device *dev) |
10772 | { | |
c67a470b PZ |
10773 | struct drm_i915_private *dev_priv = dev->dev_private; |
10774 | ||
f62a0076 CW |
10775 | if (dev_priv->mm.busy) |
10776 | return; | |
10777 | ||
43694d69 | 10778 | intel_runtime_pm_get(dev_priv); |
c67a470b | 10779 | i915_update_gfx_val(dev_priv); |
43cf3bf0 CW |
10780 | if (INTEL_INFO(dev)->gen >= 6) |
10781 | gen6_rps_busy(dev_priv); | |
f62a0076 | 10782 | dev_priv->mm.busy = true; |
f047e395 CW |
10783 | } |
10784 | ||
10785 | void intel_mark_idle(struct drm_device *dev) | |
652c393a | 10786 | { |
c67a470b | 10787 | struct drm_i915_private *dev_priv = dev->dev_private; |
652c393a | 10788 | |
f62a0076 CW |
10789 | if (!dev_priv->mm.busy) |
10790 | return; | |
10791 | ||
10792 | dev_priv->mm.busy = false; | |
10793 | ||
3d13ef2e | 10794 | if (INTEL_INFO(dev)->gen >= 6) |
b29c19b6 | 10795 | gen6_rps_idle(dev->dev_private); |
bb4cdd53 | 10796 | |
43694d69 | 10797 | intel_runtime_pm_put(dev_priv); |
652c393a JB |
10798 | } |
10799 | ||
79e53945 JB |
10800 | static void intel_crtc_destroy(struct drm_crtc *crtc) |
10801 | { | |
10802 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
67e77c5a DV |
10803 | struct drm_device *dev = crtc->dev; |
10804 | struct intel_unpin_work *work; | |
67e77c5a | 10805 | |
5e2d7afc | 10806 | spin_lock_irq(&dev->event_lock); |
67e77c5a DV |
10807 | work = intel_crtc->unpin_work; |
10808 | intel_crtc->unpin_work = NULL; | |
5e2d7afc | 10809 | spin_unlock_irq(&dev->event_lock); |
67e77c5a DV |
10810 | |
10811 | if (work) { | |
10812 | cancel_work_sync(&work->work); | |
10813 | kfree(work); | |
10814 | } | |
79e53945 JB |
10815 | |
10816 | drm_crtc_cleanup(crtc); | |
67e77c5a | 10817 | |
79e53945 JB |
10818 | kfree(intel_crtc); |
10819 | } | |
10820 | ||
6b95a207 KH |
10821 | static void intel_unpin_work_fn(struct work_struct *__work) |
10822 | { | |
10823 | struct intel_unpin_work *work = | |
10824 | container_of(__work, struct intel_unpin_work, work); | |
a9ff8714 VS |
10825 | struct intel_crtc *crtc = to_intel_crtc(work->crtc); |
10826 | struct drm_device *dev = crtc->base.dev; | |
10827 | struct drm_plane *primary = crtc->base.primary; | |
6b95a207 | 10828 | |
b4a98e57 | 10829 | mutex_lock(&dev->struct_mutex); |
3465c580 | 10830 | intel_unpin_fb_obj(work->old_fb, primary->state->rotation); |
05394f39 | 10831 | drm_gem_object_unreference(&work->pending_flip_obj->base); |
d9e86c0e | 10832 | |
f06cc1b9 | 10833 | if (work->flip_queued_req) |
146d84f0 | 10834 | i915_gem_request_assign(&work->flip_queued_req, NULL); |
b4a98e57 CW |
10835 | mutex_unlock(&dev->struct_mutex); |
10836 | ||
a9ff8714 | 10837 | intel_frontbuffer_flip_complete(dev, to_intel_plane(primary)->frontbuffer_bit); |
1eb52238 | 10838 | intel_fbc_post_update(crtc); |
89ed88ba | 10839 | drm_framebuffer_unreference(work->old_fb); |
f99d7069 | 10840 | |
a9ff8714 VS |
10841 | BUG_ON(atomic_read(&crtc->unpin_work_count) == 0); |
10842 | atomic_dec(&crtc->unpin_work_count); | |
b4a98e57 | 10843 | |
6b95a207 KH |
10844 | kfree(work); |
10845 | } | |
10846 | ||
1afe3e9d | 10847 | static void do_intel_finish_page_flip(struct drm_device *dev, |
49b14a5c | 10848 | struct drm_crtc *crtc) |
6b95a207 | 10849 | { |
6b95a207 KH |
10850 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
10851 | struct intel_unpin_work *work; | |
6b95a207 KH |
10852 | unsigned long flags; |
10853 | ||
10854 | /* Ignore early vblank irqs */ | |
10855 | if (intel_crtc == NULL) | |
10856 | return; | |
10857 | ||
f326038a DV |
10858 | /* |
10859 | * This is called both by irq handlers and the reset code (to complete | |
10860 | * lost pageflips) so needs the full irqsave spinlocks. | |
10861 | */ | |
6b95a207 KH |
10862 | spin_lock_irqsave(&dev->event_lock, flags); |
10863 | work = intel_crtc->unpin_work; | |
e7d841ca CW |
10864 | |
10865 | /* Ensure we don't miss a work->pending update ... */ | |
10866 | smp_rmb(); | |
10867 | ||
10868 | if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) { | |
6b95a207 KH |
10869 | spin_unlock_irqrestore(&dev->event_lock, flags); |
10870 | return; | |
10871 | } | |
10872 | ||
d6bbafa1 | 10873 | page_flip_completed(intel_crtc); |
0af7e4df | 10874 | |
6b95a207 | 10875 | spin_unlock_irqrestore(&dev->event_lock, flags); |
6b95a207 KH |
10876 | } |
10877 | ||
1afe3e9d JB |
10878 | void intel_finish_page_flip(struct drm_device *dev, int pipe) |
10879 | { | |
fbee40df | 10880 | struct drm_i915_private *dev_priv = dev->dev_private; |
1afe3e9d JB |
10881 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
10882 | ||
49b14a5c | 10883 | do_intel_finish_page_flip(dev, crtc); |
1afe3e9d JB |
10884 | } |
10885 | ||
10886 | void intel_finish_page_flip_plane(struct drm_device *dev, int plane) | |
10887 | { | |
fbee40df | 10888 | struct drm_i915_private *dev_priv = dev->dev_private; |
1afe3e9d JB |
10889 | struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane]; |
10890 | ||
49b14a5c | 10891 | do_intel_finish_page_flip(dev, crtc); |
1afe3e9d JB |
10892 | } |
10893 | ||
75f7f3ec VS |
10894 | /* Is 'a' after or equal to 'b'? */ |
10895 | static bool g4x_flip_count_after_eq(u32 a, u32 b) | |
10896 | { | |
10897 | return !((a - b) & 0x80000000); | |
10898 | } | |
10899 | ||
10900 | static bool page_flip_finished(struct intel_crtc *crtc) | |
10901 | { | |
10902 | struct drm_device *dev = crtc->base.dev; | |
10903 | struct drm_i915_private *dev_priv = dev->dev_private; | |
10904 | ||
bdfa7542 VS |
10905 | if (i915_reset_in_progress(&dev_priv->gpu_error) || |
10906 | crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) | |
10907 | return true; | |
10908 | ||
75f7f3ec VS |
10909 | /* |
10910 | * The relevant registers doen't exist on pre-ctg. | |
10911 | * As the flip done interrupt doesn't trigger for mmio | |
10912 | * flips on gmch platforms, a flip count check isn't | |
10913 | * really needed there. But since ctg has the registers, | |
10914 | * include it in the check anyway. | |
10915 | */ | |
10916 | if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev)) | |
10917 | return true; | |
10918 | ||
e8861675 ML |
10919 | /* |
10920 | * BDW signals flip done immediately if the plane | |
10921 | * is disabled, even if the plane enable is already | |
10922 | * armed to occur at the next vblank :( | |
10923 | */ | |
10924 | ||
75f7f3ec VS |
10925 | /* |
10926 | * A DSPSURFLIVE check isn't enough in case the mmio and CS flips | |
10927 | * used the same base address. In that case the mmio flip might | |
10928 | * have completed, but the CS hasn't even executed the flip yet. | |
10929 | * | |
10930 | * A flip count check isn't enough as the CS might have updated | |
10931 | * the base address just after start of vblank, but before we | |
10932 | * managed to process the interrupt. This means we'd complete the | |
10933 | * CS flip too soon. | |
10934 | * | |
10935 | * Combining both checks should get us a good enough result. It may | |
10936 | * still happen that the CS flip has been executed, but has not | |
10937 | * yet actually completed. But in case the base address is the same | |
10938 | * anyway, we don't really care. | |
10939 | */ | |
10940 | return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) == | |
10941 | crtc->unpin_work->gtt_offset && | |
fd8f507c | 10942 | g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_G4X(crtc->pipe)), |
75f7f3ec VS |
10943 | crtc->unpin_work->flip_count); |
10944 | } | |
10945 | ||
6b95a207 KH |
10946 | void intel_prepare_page_flip(struct drm_device *dev, int plane) |
10947 | { | |
fbee40df | 10948 | struct drm_i915_private *dev_priv = dev->dev_private; |
6b95a207 KH |
10949 | struct intel_crtc *intel_crtc = |
10950 | to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]); | |
10951 | unsigned long flags; | |
10952 | ||
f326038a DV |
10953 | |
10954 | /* | |
10955 | * This is called both by irq handlers and the reset code (to complete | |
10956 | * lost pageflips) so needs the full irqsave spinlocks. | |
10957 | * | |
10958 | * NB: An MMIO update of the plane base pointer will also | |
e7d841ca CW |
10959 | * generate a page-flip completion irq, i.e. every modeset |
10960 | * is also accompanied by a spurious intel_prepare_page_flip(). | |
10961 | */ | |
6b95a207 | 10962 | spin_lock_irqsave(&dev->event_lock, flags); |
75f7f3ec | 10963 | if (intel_crtc->unpin_work && page_flip_finished(intel_crtc)) |
e7d841ca | 10964 | atomic_inc_not_zero(&intel_crtc->unpin_work->pending); |
6b95a207 KH |
10965 | spin_unlock_irqrestore(&dev->event_lock, flags); |
10966 | } | |
10967 | ||
6042639c | 10968 | static inline void intel_mark_page_flip_active(struct intel_unpin_work *work) |
e7d841ca CW |
10969 | { |
10970 | /* Ensure that the work item is consistent when activating it ... */ | |
10971 | smp_wmb(); | |
6042639c | 10972 | atomic_set(&work->pending, INTEL_FLIP_PENDING); |
e7d841ca CW |
10973 | /* and that it is marked active as soon as the irq could fire. */ |
10974 | smp_wmb(); | |
10975 | } | |
10976 | ||
8c9f3aaf JB |
10977 | static int intel_gen2_queue_flip(struct drm_device *dev, |
10978 | struct drm_crtc *crtc, | |
10979 | struct drm_framebuffer *fb, | |
ed8d1975 | 10980 | struct drm_i915_gem_object *obj, |
6258fbe2 | 10981 | struct drm_i915_gem_request *req, |
ed8d1975 | 10982 | uint32_t flags) |
8c9f3aaf | 10983 | { |
4a570db5 | 10984 | struct intel_engine_cs *engine = req->engine; |
8c9f3aaf | 10985 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
8c9f3aaf JB |
10986 | u32 flip_mask; |
10987 | int ret; | |
10988 | ||
5fb9de1a | 10989 | ret = intel_ring_begin(req, 6); |
8c9f3aaf | 10990 | if (ret) |
4fa62c89 | 10991 | return ret; |
8c9f3aaf JB |
10992 | |
10993 | /* Can't queue multiple flips, so wait for the previous | |
10994 | * one to finish before executing the next. | |
10995 | */ | |
10996 | if (intel_crtc->plane) | |
10997 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; | |
10998 | else | |
10999 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; | |
e2f80391 TU |
11000 | intel_ring_emit(engine, MI_WAIT_FOR_EVENT | flip_mask); |
11001 | intel_ring_emit(engine, MI_NOOP); | |
11002 | intel_ring_emit(engine, MI_DISPLAY_FLIP | | |
6d90c952 | 11003 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
e2f80391 TU |
11004 | intel_ring_emit(engine, fb->pitches[0]); |
11005 | intel_ring_emit(engine, intel_crtc->unpin_work->gtt_offset); | |
11006 | intel_ring_emit(engine, 0); /* aux display base address, unused */ | |
e7d841ca | 11007 | |
6042639c | 11008 | intel_mark_page_flip_active(intel_crtc->unpin_work); |
83d4092b | 11009 | return 0; |
8c9f3aaf JB |
11010 | } |
11011 | ||
11012 | static int intel_gen3_queue_flip(struct drm_device *dev, | |
11013 | struct drm_crtc *crtc, | |
11014 | struct drm_framebuffer *fb, | |
ed8d1975 | 11015 | struct drm_i915_gem_object *obj, |
6258fbe2 | 11016 | struct drm_i915_gem_request *req, |
ed8d1975 | 11017 | uint32_t flags) |
8c9f3aaf | 11018 | { |
4a570db5 | 11019 | struct intel_engine_cs *engine = req->engine; |
8c9f3aaf | 11020 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
8c9f3aaf JB |
11021 | u32 flip_mask; |
11022 | int ret; | |
11023 | ||
5fb9de1a | 11024 | ret = intel_ring_begin(req, 6); |
8c9f3aaf | 11025 | if (ret) |
4fa62c89 | 11026 | return ret; |
8c9f3aaf JB |
11027 | |
11028 | if (intel_crtc->plane) | |
11029 | flip_mask = MI_WAIT_FOR_PLANE_B_FLIP; | |
11030 | else | |
11031 | flip_mask = MI_WAIT_FOR_PLANE_A_FLIP; | |
e2f80391 TU |
11032 | intel_ring_emit(engine, MI_WAIT_FOR_EVENT | flip_mask); |
11033 | intel_ring_emit(engine, MI_NOOP); | |
11034 | intel_ring_emit(engine, MI_DISPLAY_FLIP_I915 | | |
6d90c952 | 11035 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
e2f80391 TU |
11036 | intel_ring_emit(engine, fb->pitches[0]); |
11037 | intel_ring_emit(engine, intel_crtc->unpin_work->gtt_offset); | |
11038 | intel_ring_emit(engine, MI_NOOP); | |
6d90c952 | 11039 | |
6042639c | 11040 | intel_mark_page_flip_active(intel_crtc->unpin_work); |
83d4092b | 11041 | return 0; |
8c9f3aaf JB |
11042 | } |
11043 | ||
11044 | static int intel_gen4_queue_flip(struct drm_device *dev, | |
11045 | struct drm_crtc *crtc, | |
11046 | struct drm_framebuffer *fb, | |
ed8d1975 | 11047 | struct drm_i915_gem_object *obj, |
6258fbe2 | 11048 | struct drm_i915_gem_request *req, |
ed8d1975 | 11049 | uint32_t flags) |
8c9f3aaf | 11050 | { |
4a570db5 | 11051 | struct intel_engine_cs *engine = req->engine; |
8c9f3aaf JB |
11052 | struct drm_i915_private *dev_priv = dev->dev_private; |
11053 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
11054 | uint32_t pf, pipesrc; | |
11055 | int ret; | |
11056 | ||
5fb9de1a | 11057 | ret = intel_ring_begin(req, 4); |
8c9f3aaf | 11058 | if (ret) |
4fa62c89 | 11059 | return ret; |
8c9f3aaf JB |
11060 | |
11061 | /* i965+ uses the linear or tiled offsets from the | |
11062 | * Display Registers (which do not change across a page-flip) | |
11063 | * so we need only reprogram the base address. | |
11064 | */ | |
e2f80391 | 11065 | intel_ring_emit(engine, MI_DISPLAY_FLIP | |
6d90c952 | 11066 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
e2f80391 TU |
11067 | intel_ring_emit(engine, fb->pitches[0]); |
11068 | intel_ring_emit(engine, intel_crtc->unpin_work->gtt_offset | | |
c2c75131 | 11069 | obj->tiling_mode); |
8c9f3aaf JB |
11070 | |
11071 | /* XXX Enabling the panel-fitter across page-flip is so far | |
11072 | * untested on non-native modes, so ignore it for now. | |
11073 | * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE; | |
11074 | */ | |
11075 | pf = 0; | |
11076 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; | |
e2f80391 | 11077 | intel_ring_emit(engine, pf | pipesrc); |
e7d841ca | 11078 | |
6042639c | 11079 | intel_mark_page_flip_active(intel_crtc->unpin_work); |
83d4092b | 11080 | return 0; |
8c9f3aaf JB |
11081 | } |
11082 | ||
11083 | static int intel_gen6_queue_flip(struct drm_device *dev, | |
11084 | struct drm_crtc *crtc, | |
11085 | struct drm_framebuffer *fb, | |
ed8d1975 | 11086 | struct drm_i915_gem_object *obj, |
6258fbe2 | 11087 | struct drm_i915_gem_request *req, |
ed8d1975 | 11088 | uint32_t flags) |
8c9f3aaf | 11089 | { |
4a570db5 | 11090 | struct intel_engine_cs *engine = req->engine; |
8c9f3aaf JB |
11091 | struct drm_i915_private *dev_priv = dev->dev_private; |
11092 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
11093 | uint32_t pf, pipesrc; | |
11094 | int ret; | |
11095 | ||
5fb9de1a | 11096 | ret = intel_ring_begin(req, 4); |
8c9f3aaf | 11097 | if (ret) |
4fa62c89 | 11098 | return ret; |
8c9f3aaf | 11099 | |
e2f80391 | 11100 | intel_ring_emit(engine, MI_DISPLAY_FLIP | |
6d90c952 | 11101 | MI_DISPLAY_FLIP_PLANE(intel_crtc->plane)); |
e2f80391 TU |
11102 | intel_ring_emit(engine, fb->pitches[0] | obj->tiling_mode); |
11103 | intel_ring_emit(engine, intel_crtc->unpin_work->gtt_offset); | |
8c9f3aaf | 11104 | |
dc257cf1 DV |
11105 | /* Contrary to the suggestions in the documentation, |
11106 | * "Enable Panel Fitter" does not seem to be required when page | |
11107 | * flipping with a non-native mode, and worse causes a normal | |
11108 | * modeset to fail. | |
11109 | * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE; | |
11110 | */ | |
11111 | pf = 0; | |
8c9f3aaf | 11112 | pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff; |
e2f80391 | 11113 | intel_ring_emit(engine, pf | pipesrc); |
e7d841ca | 11114 | |
6042639c | 11115 | intel_mark_page_flip_active(intel_crtc->unpin_work); |
83d4092b | 11116 | return 0; |
8c9f3aaf JB |
11117 | } |
11118 | ||
7c9017e5 JB |
11119 | static int intel_gen7_queue_flip(struct drm_device *dev, |
11120 | struct drm_crtc *crtc, | |
11121 | struct drm_framebuffer *fb, | |
ed8d1975 | 11122 | struct drm_i915_gem_object *obj, |
6258fbe2 | 11123 | struct drm_i915_gem_request *req, |
ed8d1975 | 11124 | uint32_t flags) |
7c9017e5 | 11125 | { |
4a570db5 | 11126 | struct intel_engine_cs *engine = req->engine; |
7c9017e5 | 11127 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
cb05d8de | 11128 | uint32_t plane_bit = 0; |
ffe74d75 CW |
11129 | int len, ret; |
11130 | ||
eba905b2 | 11131 | switch (intel_crtc->plane) { |
cb05d8de DV |
11132 | case PLANE_A: |
11133 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A; | |
11134 | break; | |
11135 | case PLANE_B: | |
11136 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B; | |
11137 | break; | |
11138 | case PLANE_C: | |
11139 | plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C; | |
11140 | break; | |
11141 | default: | |
11142 | WARN_ONCE(1, "unknown plane in flip command\n"); | |
4fa62c89 | 11143 | return -ENODEV; |
cb05d8de DV |
11144 | } |
11145 | ||
ffe74d75 | 11146 | len = 4; |
e2f80391 | 11147 | if (engine->id == RCS) { |
ffe74d75 | 11148 | len += 6; |
f476828a DL |
11149 | /* |
11150 | * On Gen 8, SRM is now taking an extra dword to accommodate | |
11151 | * 48bits addresses, and we need a NOOP for the batch size to | |
11152 | * stay even. | |
11153 | */ | |
11154 | if (IS_GEN8(dev)) | |
11155 | len += 2; | |
11156 | } | |
ffe74d75 | 11157 | |
f66fab8e VS |
11158 | /* |
11159 | * BSpec MI_DISPLAY_FLIP for IVB: | |
11160 | * "The full packet must be contained within the same cache line." | |
11161 | * | |
11162 | * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same | |
11163 | * cacheline, if we ever start emitting more commands before | |
11164 | * the MI_DISPLAY_FLIP we may need to first emit everything else, | |
11165 | * then do the cacheline alignment, and finally emit the | |
11166 | * MI_DISPLAY_FLIP. | |
11167 | */ | |
bba09b12 | 11168 | ret = intel_ring_cacheline_align(req); |
f66fab8e | 11169 | if (ret) |
4fa62c89 | 11170 | return ret; |
f66fab8e | 11171 | |
5fb9de1a | 11172 | ret = intel_ring_begin(req, len); |
7c9017e5 | 11173 | if (ret) |
4fa62c89 | 11174 | return ret; |
7c9017e5 | 11175 | |
ffe74d75 CW |
11176 | /* Unmask the flip-done completion message. Note that the bspec says that |
11177 | * we should do this for both the BCS and RCS, and that we must not unmask | |
11178 | * more than one flip event at any time (or ensure that one flip message | |
11179 | * can be sent by waiting for flip-done prior to queueing new flips). | |
11180 | * Experimentation says that BCS works despite DERRMR masking all | |
11181 | * flip-done completion events and that unmasking all planes at once | |
11182 | * for the RCS also doesn't appear to drop events. Setting the DERRMR | |
11183 | * to zero does lead to lockups within MI_DISPLAY_FLIP. | |
11184 | */ | |
e2f80391 TU |
11185 | if (engine->id == RCS) { |
11186 | intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(1)); | |
11187 | intel_ring_emit_reg(engine, DERRMR); | |
11188 | intel_ring_emit(engine, ~(DERRMR_PIPEA_PRI_FLIP_DONE | | |
11189 | DERRMR_PIPEB_PRI_FLIP_DONE | | |
11190 | DERRMR_PIPEC_PRI_FLIP_DONE)); | |
f476828a | 11191 | if (IS_GEN8(dev)) |
e2f80391 | 11192 | intel_ring_emit(engine, MI_STORE_REGISTER_MEM_GEN8 | |
f476828a DL |
11193 | MI_SRM_LRM_GLOBAL_GTT); |
11194 | else | |
e2f80391 | 11195 | intel_ring_emit(engine, MI_STORE_REGISTER_MEM | |
f476828a | 11196 | MI_SRM_LRM_GLOBAL_GTT); |
e2f80391 TU |
11197 | intel_ring_emit_reg(engine, DERRMR); |
11198 | intel_ring_emit(engine, engine->scratch.gtt_offset + 256); | |
f476828a | 11199 | if (IS_GEN8(dev)) { |
e2f80391 TU |
11200 | intel_ring_emit(engine, 0); |
11201 | intel_ring_emit(engine, MI_NOOP); | |
f476828a | 11202 | } |
ffe74d75 CW |
11203 | } |
11204 | ||
e2f80391 TU |
11205 | intel_ring_emit(engine, MI_DISPLAY_FLIP_I915 | plane_bit); |
11206 | intel_ring_emit(engine, (fb->pitches[0] | obj->tiling_mode)); | |
11207 | intel_ring_emit(engine, intel_crtc->unpin_work->gtt_offset); | |
11208 | intel_ring_emit(engine, (MI_NOOP)); | |
e7d841ca | 11209 | |
6042639c | 11210 | intel_mark_page_flip_active(intel_crtc->unpin_work); |
83d4092b | 11211 | return 0; |
7c9017e5 JB |
11212 | } |
11213 | ||
0bc40be8 | 11214 | static bool use_mmio_flip(struct intel_engine_cs *engine, |
84c33a64 SG |
11215 | struct drm_i915_gem_object *obj) |
11216 | { | |
11217 | /* | |
11218 | * This is not being used for older platforms, because | |
11219 | * non-availability of flip done interrupt forces us to use | |
11220 | * CS flips. Older platforms derive flip done using some clever | |
11221 | * tricks involving the flip_pending status bits and vblank irqs. | |
11222 | * So using MMIO flips there would disrupt this mechanism. | |
11223 | */ | |
11224 | ||
0bc40be8 | 11225 | if (engine == NULL) |
8e09bf83 CW |
11226 | return true; |
11227 | ||
0bc40be8 | 11228 | if (INTEL_INFO(engine->dev)->gen < 5) |
84c33a64 SG |
11229 | return false; |
11230 | ||
11231 | if (i915.use_mmio_flip < 0) | |
11232 | return false; | |
11233 | else if (i915.use_mmio_flip > 0) | |
11234 | return true; | |
14bf993e OM |
11235 | else if (i915.enable_execlists) |
11236 | return true; | |
fd8e058a AG |
11237 | else if (obj->base.dma_buf && |
11238 | !reservation_object_test_signaled_rcu(obj->base.dma_buf->resv, | |
11239 | false)) | |
11240 | return true; | |
84c33a64 | 11241 | else |
666796da | 11242 | return engine != i915_gem_request_get_engine(obj->last_write_req); |
84c33a64 SG |
11243 | } |
11244 | ||
6042639c | 11245 | static void skl_do_mmio_flip(struct intel_crtc *intel_crtc, |
86efe24a | 11246 | unsigned int rotation, |
6042639c | 11247 | struct intel_unpin_work *work) |
ff944564 DL |
11248 | { |
11249 | struct drm_device *dev = intel_crtc->base.dev; | |
11250 | struct drm_i915_private *dev_priv = dev->dev_private; | |
11251 | struct drm_framebuffer *fb = intel_crtc->base.primary->fb; | |
ff944564 | 11252 | const enum pipe pipe = intel_crtc->pipe; |
86efe24a | 11253 | u32 ctl, stride, tile_height; |
ff944564 DL |
11254 | |
11255 | ctl = I915_READ(PLANE_CTL(pipe, 0)); | |
11256 | ctl &= ~PLANE_CTL_TILED_MASK; | |
2ebef630 TU |
11257 | switch (fb->modifier[0]) { |
11258 | case DRM_FORMAT_MOD_NONE: | |
11259 | break; | |
11260 | case I915_FORMAT_MOD_X_TILED: | |
ff944564 | 11261 | ctl |= PLANE_CTL_TILED_X; |
2ebef630 TU |
11262 | break; |
11263 | case I915_FORMAT_MOD_Y_TILED: | |
11264 | ctl |= PLANE_CTL_TILED_Y; | |
11265 | break; | |
11266 | case I915_FORMAT_MOD_Yf_TILED: | |
11267 | ctl |= PLANE_CTL_TILED_YF; | |
11268 | break; | |
11269 | default: | |
11270 | MISSING_CASE(fb->modifier[0]); | |
11271 | } | |
ff944564 DL |
11272 | |
11273 | /* | |
11274 | * The stride is either expressed as a multiple of 64 bytes chunks for | |
11275 | * linear buffers or in number of tiles for tiled buffers. | |
11276 | */ | |
86efe24a TU |
11277 | if (intel_rotation_90_or_270(rotation)) { |
11278 | /* stride = Surface height in tiles */ | |
832be82f | 11279 | tile_height = intel_tile_height(dev_priv, fb->modifier[0], 0); |
86efe24a TU |
11280 | stride = DIV_ROUND_UP(fb->height, tile_height); |
11281 | } else { | |
11282 | stride = fb->pitches[0] / | |
7b49f948 VS |
11283 | intel_fb_stride_alignment(dev_priv, fb->modifier[0], |
11284 | fb->pixel_format); | |
86efe24a | 11285 | } |
ff944564 DL |
11286 | |
11287 | /* | |
11288 | * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on | |
11289 | * PLANE_SURF updates, the update is then guaranteed to be atomic. | |
11290 | */ | |
11291 | I915_WRITE(PLANE_CTL(pipe, 0), ctl); | |
11292 | I915_WRITE(PLANE_STRIDE(pipe, 0), stride); | |
11293 | ||
6042639c | 11294 | I915_WRITE(PLANE_SURF(pipe, 0), work->gtt_offset); |
ff944564 DL |
11295 | POSTING_READ(PLANE_SURF(pipe, 0)); |
11296 | } | |
11297 | ||
6042639c CW |
11298 | static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc, |
11299 | struct intel_unpin_work *work) | |
84c33a64 SG |
11300 | { |
11301 | struct drm_device *dev = intel_crtc->base.dev; | |
11302 | struct drm_i915_private *dev_priv = dev->dev_private; | |
11303 | struct intel_framebuffer *intel_fb = | |
11304 | to_intel_framebuffer(intel_crtc->base.primary->fb); | |
11305 | struct drm_i915_gem_object *obj = intel_fb->obj; | |
f0f59a00 | 11306 | i915_reg_t reg = DSPCNTR(intel_crtc->plane); |
84c33a64 | 11307 | u32 dspcntr; |
84c33a64 | 11308 | |
84c33a64 SG |
11309 | dspcntr = I915_READ(reg); |
11310 | ||
c5d97472 DL |
11311 | if (obj->tiling_mode != I915_TILING_NONE) |
11312 | dspcntr |= DISPPLANE_TILED; | |
11313 | else | |
11314 | dspcntr &= ~DISPPLANE_TILED; | |
11315 | ||
84c33a64 SG |
11316 | I915_WRITE(reg, dspcntr); |
11317 | ||
6042639c | 11318 | I915_WRITE(DSPSURF(intel_crtc->plane), work->gtt_offset); |
84c33a64 | 11319 | POSTING_READ(DSPSURF(intel_crtc->plane)); |
ff944564 DL |
11320 | } |
11321 | ||
11322 | /* | |
11323 | * XXX: This is the temporary way to update the plane registers until we get | |
11324 | * around to using the usual plane update functions for MMIO flips | |
11325 | */ | |
6042639c | 11326 | static void intel_do_mmio_flip(struct intel_mmio_flip *mmio_flip) |
ff944564 | 11327 | { |
6042639c CW |
11328 | struct intel_crtc *crtc = mmio_flip->crtc; |
11329 | struct intel_unpin_work *work; | |
11330 | ||
11331 | spin_lock_irq(&crtc->base.dev->event_lock); | |
11332 | work = crtc->unpin_work; | |
11333 | spin_unlock_irq(&crtc->base.dev->event_lock); | |
11334 | if (work == NULL) | |
11335 | return; | |
ff944564 | 11336 | |
6042639c | 11337 | intel_mark_page_flip_active(work); |
ff944564 | 11338 | |
6042639c | 11339 | intel_pipe_update_start(crtc); |
ff944564 | 11340 | |
6042639c | 11341 | if (INTEL_INFO(mmio_flip->i915)->gen >= 9) |
86efe24a | 11342 | skl_do_mmio_flip(crtc, mmio_flip->rotation, work); |
ff944564 DL |
11343 | else |
11344 | /* use_mmio_flip() retricts MMIO flips to ilk+ */ | |
6042639c | 11345 | ilk_do_mmio_flip(crtc, work); |
ff944564 | 11346 | |
6042639c | 11347 | intel_pipe_update_end(crtc); |
84c33a64 SG |
11348 | } |
11349 | ||
9362c7c5 | 11350 | static void intel_mmio_flip_work_func(struct work_struct *work) |
84c33a64 | 11351 | { |
b2cfe0ab CW |
11352 | struct intel_mmio_flip *mmio_flip = |
11353 | container_of(work, struct intel_mmio_flip, work); | |
fd8e058a AG |
11354 | struct intel_framebuffer *intel_fb = |
11355 | to_intel_framebuffer(mmio_flip->crtc->base.primary->fb); | |
11356 | struct drm_i915_gem_object *obj = intel_fb->obj; | |
84c33a64 | 11357 | |
6042639c | 11358 | if (mmio_flip->req) { |
eed29a5b | 11359 | WARN_ON(__i915_wait_request(mmio_flip->req, |
b2cfe0ab | 11360 | mmio_flip->crtc->reset_counter, |
bcafc4e3 CW |
11361 | false, NULL, |
11362 | &mmio_flip->i915->rps.mmioflips)); | |
6042639c CW |
11363 | i915_gem_request_unreference__unlocked(mmio_flip->req); |
11364 | } | |
84c33a64 | 11365 | |
fd8e058a AG |
11366 | /* For framebuffer backed by dmabuf, wait for fence */ |
11367 | if (obj->base.dma_buf) | |
11368 | WARN_ON(reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv, | |
11369 | false, false, | |
11370 | MAX_SCHEDULE_TIMEOUT) < 0); | |
11371 | ||
6042639c | 11372 | intel_do_mmio_flip(mmio_flip); |
b2cfe0ab | 11373 | kfree(mmio_flip); |
84c33a64 SG |
11374 | } |
11375 | ||
11376 | static int intel_queue_mmio_flip(struct drm_device *dev, | |
11377 | struct drm_crtc *crtc, | |
86efe24a | 11378 | struct drm_i915_gem_object *obj) |
84c33a64 | 11379 | { |
b2cfe0ab CW |
11380 | struct intel_mmio_flip *mmio_flip; |
11381 | ||
11382 | mmio_flip = kmalloc(sizeof(*mmio_flip), GFP_KERNEL); | |
11383 | if (mmio_flip == NULL) | |
11384 | return -ENOMEM; | |
84c33a64 | 11385 | |
bcafc4e3 | 11386 | mmio_flip->i915 = to_i915(dev); |
eed29a5b | 11387 | mmio_flip->req = i915_gem_request_reference(obj->last_write_req); |
b2cfe0ab | 11388 | mmio_flip->crtc = to_intel_crtc(crtc); |
86efe24a | 11389 | mmio_flip->rotation = crtc->primary->state->rotation; |
536f5b5e | 11390 | |
b2cfe0ab CW |
11391 | INIT_WORK(&mmio_flip->work, intel_mmio_flip_work_func); |
11392 | schedule_work(&mmio_flip->work); | |
84c33a64 | 11393 | |
84c33a64 SG |
11394 | return 0; |
11395 | } | |
11396 | ||
8c9f3aaf JB |
11397 | static int intel_default_queue_flip(struct drm_device *dev, |
11398 | struct drm_crtc *crtc, | |
11399 | struct drm_framebuffer *fb, | |
ed8d1975 | 11400 | struct drm_i915_gem_object *obj, |
6258fbe2 | 11401 | struct drm_i915_gem_request *req, |
ed8d1975 | 11402 | uint32_t flags) |
8c9f3aaf JB |
11403 | { |
11404 | return -ENODEV; | |
11405 | } | |
11406 | ||
d6bbafa1 CW |
11407 | static bool __intel_pageflip_stall_check(struct drm_device *dev, |
11408 | struct drm_crtc *crtc) | |
11409 | { | |
11410 | struct drm_i915_private *dev_priv = dev->dev_private; | |
11411 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
11412 | struct intel_unpin_work *work = intel_crtc->unpin_work; | |
11413 | u32 addr; | |
11414 | ||
11415 | if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE) | |
11416 | return true; | |
11417 | ||
908565c2 CW |
11418 | if (atomic_read(&work->pending) < INTEL_FLIP_PENDING) |
11419 | return false; | |
11420 | ||
d6bbafa1 CW |
11421 | if (!work->enable_stall_check) |
11422 | return false; | |
11423 | ||
11424 | if (work->flip_ready_vblank == 0) { | |
3a8a946e DV |
11425 | if (work->flip_queued_req && |
11426 | !i915_gem_request_completed(work->flip_queued_req, true)) | |
d6bbafa1 CW |
11427 | return false; |
11428 | ||
1e3feefd | 11429 | work->flip_ready_vblank = drm_crtc_vblank_count(crtc); |
d6bbafa1 CW |
11430 | } |
11431 | ||
1e3feefd | 11432 | if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3) |
d6bbafa1 CW |
11433 | return false; |
11434 | ||
11435 | /* Potential stall - if we see that the flip has happened, | |
11436 | * assume a missed interrupt. */ | |
11437 | if (INTEL_INFO(dev)->gen >= 4) | |
11438 | addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane))); | |
11439 | else | |
11440 | addr = I915_READ(DSPADDR(intel_crtc->plane)); | |
11441 | ||
11442 | /* There is a potential issue here with a false positive after a flip | |
11443 | * to the same address. We could address this by checking for a | |
11444 | * non-incrementing frame counter. | |
11445 | */ | |
11446 | return addr == work->gtt_offset; | |
11447 | } | |
11448 | ||
11449 | void intel_check_page_flip(struct drm_device *dev, int pipe) | |
11450 | { | |
11451 | struct drm_i915_private *dev_priv = dev->dev_private; | |
11452 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; | |
11453 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
6ad790c0 | 11454 | struct intel_unpin_work *work; |
f326038a | 11455 | |
6c51d46f | 11456 | WARN_ON(!in_interrupt()); |
d6bbafa1 CW |
11457 | |
11458 | if (crtc == NULL) | |
11459 | return; | |
11460 | ||
f326038a | 11461 | spin_lock(&dev->event_lock); |
6ad790c0 CW |
11462 | work = intel_crtc->unpin_work; |
11463 | if (work != NULL && __intel_pageflip_stall_check(dev, crtc)) { | |
d6bbafa1 | 11464 | WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n", |
6ad790c0 | 11465 | work->flip_queued_vblank, drm_vblank_count(dev, pipe)); |
d6bbafa1 | 11466 | page_flip_completed(intel_crtc); |
6ad790c0 | 11467 | work = NULL; |
d6bbafa1 | 11468 | } |
6ad790c0 CW |
11469 | if (work != NULL && |
11470 | drm_vblank_count(dev, pipe) - work->flip_queued_vblank > 1) | |
11471 | intel_queue_rps_boost_for_request(dev, work->flip_queued_req); | |
f326038a | 11472 | spin_unlock(&dev->event_lock); |
d6bbafa1 CW |
11473 | } |
11474 | ||
6b95a207 KH |
11475 | static int intel_crtc_page_flip(struct drm_crtc *crtc, |
11476 | struct drm_framebuffer *fb, | |
ed8d1975 KP |
11477 | struct drm_pending_vblank_event *event, |
11478 | uint32_t page_flip_flags) | |
6b95a207 KH |
11479 | { |
11480 | struct drm_device *dev = crtc->dev; | |
11481 | struct drm_i915_private *dev_priv = dev->dev_private; | |
f4510a27 | 11482 | struct drm_framebuffer *old_fb = crtc->primary->fb; |
2ff8fde1 | 11483 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
6b95a207 | 11484 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
455a6808 | 11485 | struct drm_plane *primary = crtc->primary; |
a071fa00 | 11486 | enum pipe pipe = intel_crtc->pipe; |
6b95a207 | 11487 | struct intel_unpin_work *work; |
e2f80391 | 11488 | struct intel_engine_cs *engine; |
cf5d8a46 | 11489 | bool mmio_flip; |
91af127f | 11490 | struct drm_i915_gem_request *request = NULL; |
52e68630 | 11491 | int ret; |
6b95a207 | 11492 | |
2ff8fde1 MR |
11493 | /* |
11494 | * drm_mode_page_flip_ioctl() should already catch this, but double | |
11495 | * check to be safe. In the future we may enable pageflipping from | |
11496 | * a disabled primary plane. | |
11497 | */ | |
11498 | if (WARN_ON(intel_fb_obj(old_fb) == NULL)) | |
11499 | return -EBUSY; | |
11500 | ||
e6a595d2 | 11501 | /* Can't change pixel format via MI display flips. */ |
f4510a27 | 11502 | if (fb->pixel_format != crtc->primary->fb->pixel_format) |
e6a595d2 VS |
11503 | return -EINVAL; |
11504 | ||
11505 | /* | |
11506 | * TILEOFF/LINOFF registers can't be changed via MI display flips. | |
11507 | * Note that pitch changes could also affect these register. | |
11508 | */ | |
11509 | if (INTEL_INFO(dev)->gen > 3 && | |
f4510a27 MR |
11510 | (fb->offsets[0] != crtc->primary->fb->offsets[0] || |
11511 | fb->pitches[0] != crtc->primary->fb->pitches[0])) | |
e6a595d2 VS |
11512 | return -EINVAL; |
11513 | ||
f900db47 CW |
11514 | if (i915_terminally_wedged(&dev_priv->gpu_error)) |
11515 | goto out_hang; | |
11516 | ||
b14c5679 | 11517 | work = kzalloc(sizeof(*work), GFP_KERNEL); |
6b95a207 KH |
11518 | if (work == NULL) |
11519 | return -ENOMEM; | |
11520 | ||
6b95a207 | 11521 | work->event = event; |
b4a98e57 | 11522 | work->crtc = crtc; |
ab8d6675 | 11523 | work->old_fb = old_fb; |
6b95a207 KH |
11524 | INIT_WORK(&work->work, intel_unpin_work_fn); |
11525 | ||
87b6b101 | 11526 | ret = drm_crtc_vblank_get(crtc); |
7317c75e JB |
11527 | if (ret) |
11528 | goto free_work; | |
11529 | ||
6b95a207 | 11530 | /* We borrow the event spin lock for protecting unpin_work */ |
5e2d7afc | 11531 | spin_lock_irq(&dev->event_lock); |
6b95a207 | 11532 | if (intel_crtc->unpin_work) { |
d6bbafa1 CW |
11533 | /* Before declaring the flip queue wedged, check if |
11534 | * the hardware completed the operation behind our backs. | |
11535 | */ | |
11536 | if (__intel_pageflip_stall_check(dev, crtc)) { | |
11537 | DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n"); | |
11538 | page_flip_completed(intel_crtc); | |
11539 | } else { | |
11540 | DRM_DEBUG_DRIVER("flip queue: crtc already busy\n"); | |
5e2d7afc | 11541 | spin_unlock_irq(&dev->event_lock); |
468f0b44 | 11542 | |
d6bbafa1 CW |
11543 | drm_crtc_vblank_put(crtc); |
11544 | kfree(work); | |
11545 | return -EBUSY; | |
11546 | } | |
6b95a207 KH |
11547 | } |
11548 | intel_crtc->unpin_work = work; | |
5e2d7afc | 11549 | spin_unlock_irq(&dev->event_lock); |
6b95a207 | 11550 | |
b4a98e57 CW |
11551 | if (atomic_read(&intel_crtc->unpin_work_count) >= 2) |
11552 | flush_workqueue(dev_priv->wq); | |
11553 | ||
75dfca80 | 11554 | /* Reference the objects for the scheduled work. */ |
ab8d6675 | 11555 | drm_framebuffer_reference(work->old_fb); |
05394f39 | 11556 | drm_gem_object_reference(&obj->base); |
6b95a207 | 11557 | |
f4510a27 | 11558 | crtc->primary->fb = fb; |
afd65eb4 | 11559 | update_state_fb(crtc->primary); |
e8216e50 | 11560 | intel_fbc_pre_update(intel_crtc); |
1ed1f968 | 11561 | |
e1f99ce6 | 11562 | work->pending_flip_obj = obj; |
e1f99ce6 | 11563 | |
89ed88ba CW |
11564 | ret = i915_mutex_lock_interruptible(dev); |
11565 | if (ret) | |
11566 | goto cleanup; | |
11567 | ||
b4a98e57 | 11568 | atomic_inc(&intel_crtc->unpin_work_count); |
10d83730 | 11569 | intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter); |
e1f99ce6 | 11570 | |
75f7f3ec | 11571 | if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) |
fd8f507c | 11572 | work->flip_count = I915_READ(PIPE_FLIPCOUNT_G4X(pipe)) + 1; |
75f7f3ec | 11573 | |
666a4537 | 11574 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
4a570db5 | 11575 | engine = &dev_priv->engine[BCS]; |
ab8d6675 | 11576 | if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode) |
8e09bf83 | 11577 | /* vlv: DISPLAY_FLIP fails to change tiling */ |
e2f80391 | 11578 | engine = NULL; |
48bf5b2d | 11579 | } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) { |
4a570db5 | 11580 | engine = &dev_priv->engine[BCS]; |
4fa62c89 | 11581 | } else if (INTEL_INFO(dev)->gen >= 7) { |
666796da | 11582 | engine = i915_gem_request_get_engine(obj->last_write_req); |
e2f80391 | 11583 | if (engine == NULL || engine->id != RCS) |
4a570db5 | 11584 | engine = &dev_priv->engine[BCS]; |
4fa62c89 | 11585 | } else { |
4a570db5 | 11586 | engine = &dev_priv->engine[RCS]; |
4fa62c89 VS |
11587 | } |
11588 | ||
e2f80391 | 11589 | mmio_flip = use_mmio_flip(engine, obj); |
cf5d8a46 CW |
11590 | |
11591 | /* When using CS flips, we want to emit semaphores between rings. | |
11592 | * However, when using mmio flips we will create a task to do the | |
11593 | * synchronisation, so all we want here is to pin the framebuffer | |
11594 | * into the display plane and skip any waits. | |
11595 | */ | |
7580d774 | 11596 | if (!mmio_flip) { |
e2f80391 | 11597 | ret = i915_gem_object_sync(obj, engine, &request); |
7580d774 ML |
11598 | if (ret) |
11599 | goto cleanup_pending; | |
11600 | } | |
11601 | ||
3465c580 | 11602 | ret = intel_pin_and_fence_fb_obj(fb, primary->state->rotation); |
8c9f3aaf JB |
11603 | if (ret) |
11604 | goto cleanup_pending; | |
6b95a207 | 11605 | |
dedf278c TU |
11606 | work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary), |
11607 | obj, 0); | |
11608 | work->gtt_offset += intel_crtc->dspaddr_offset; | |
4fa62c89 | 11609 | |
cf5d8a46 | 11610 | if (mmio_flip) { |
86efe24a | 11611 | ret = intel_queue_mmio_flip(dev, crtc, obj); |
d6bbafa1 CW |
11612 | if (ret) |
11613 | goto cleanup_unpin; | |
11614 | ||
f06cc1b9 JH |
11615 | i915_gem_request_assign(&work->flip_queued_req, |
11616 | obj->last_write_req); | |
d6bbafa1 | 11617 | } else { |
6258fbe2 | 11618 | if (!request) { |
e2f80391 | 11619 | request = i915_gem_request_alloc(engine, NULL); |
26827088 DG |
11620 | if (IS_ERR(request)) { |
11621 | ret = PTR_ERR(request); | |
6258fbe2 | 11622 | goto cleanup_unpin; |
26827088 | 11623 | } |
6258fbe2 JH |
11624 | } |
11625 | ||
11626 | ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request, | |
d6bbafa1 CW |
11627 | page_flip_flags); |
11628 | if (ret) | |
11629 | goto cleanup_unpin; | |
11630 | ||
6258fbe2 | 11631 | i915_gem_request_assign(&work->flip_queued_req, request); |
d6bbafa1 CW |
11632 | } |
11633 | ||
91af127f | 11634 | if (request) |
75289874 | 11635 | i915_add_request_no_flush(request); |
91af127f | 11636 | |
1e3feefd | 11637 | work->flip_queued_vblank = drm_crtc_vblank_count(crtc); |
d6bbafa1 | 11638 | work->enable_stall_check = true; |
4fa62c89 | 11639 | |
ab8d6675 | 11640 | i915_gem_track_fb(intel_fb_obj(work->old_fb), obj, |
a9ff8714 | 11641 | to_intel_plane(primary)->frontbuffer_bit); |
c80ac854 | 11642 | mutex_unlock(&dev->struct_mutex); |
a071fa00 | 11643 | |
a9ff8714 VS |
11644 | intel_frontbuffer_flip_prepare(dev, |
11645 | to_intel_plane(primary)->frontbuffer_bit); | |
6b95a207 | 11646 | |
e5510fac JB |
11647 | trace_i915_flip_request(intel_crtc->plane, obj); |
11648 | ||
6b95a207 | 11649 | return 0; |
96b099fd | 11650 | |
4fa62c89 | 11651 | cleanup_unpin: |
3465c580 | 11652 | intel_unpin_fb_obj(fb, crtc->primary->state->rotation); |
8c9f3aaf | 11653 | cleanup_pending: |
0aa498d5 | 11654 | if (!IS_ERR_OR_NULL(request)) |
91af127f | 11655 | i915_gem_request_cancel(request); |
b4a98e57 | 11656 | atomic_dec(&intel_crtc->unpin_work_count); |
89ed88ba CW |
11657 | mutex_unlock(&dev->struct_mutex); |
11658 | cleanup: | |
f4510a27 | 11659 | crtc->primary->fb = old_fb; |
afd65eb4 | 11660 | update_state_fb(crtc->primary); |
89ed88ba CW |
11661 | |
11662 | drm_gem_object_unreference_unlocked(&obj->base); | |
ab8d6675 | 11663 | drm_framebuffer_unreference(work->old_fb); |
96b099fd | 11664 | |
5e2d7afc | 11665 | spin_lock_irq(&dev->event_lock); |
96b099fd | 11666 | intel_crtc->unpin_work = NULL; |
5e2d7afc | 11667 | spin_unlock_irq(&dev->event_lock); |
96b099fd | 11668 | |
87b6b101 | 11669 | drm_crtc_vblank_put(crtc); |
7317c75e | 11670 | free_work: |
96b099fd CW |
11671 | kfree(work); |
11672 | ||
f900db47 | 11673 | if (ret == -EIO) { |
02e0efb5 ML |
11674 | struct drm_atomic_state *state; |
11675 | struct drm_plane_state *plane_state; | |
11676 | ||
f900db47 | 11677 | out_hang: |
02e0efb5 ML |
11678 | state = drm_atomic_state_alloc(dev); |
11679 | if (!state) | |
11680 | return -ENOMEM; | |
11681 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); | |
11682 | ||
11683 | retry: | |
11684 | plane_state = drm_atomic_get_plane_state(state, primary); | |
11685 | ret = PTR_ERR_OR_ZERO(plane_state); | |
11686 | if (!ret) { | |
11687 | drm_atomic_set_fb_for_plane(plane_state, fb); | |
11688 | ||
11689 | ret = drm_atomic_set_crtc_for_plane(plane_state, crtc); | |
11690 | if (!ret) | |
11691 | ret = drm_atomic_commit(state); | |
11692 | } | |
11693 | ||
11694 | if (ret == -EDEADLK) { | |
11695 | drm_modeset_backoff(state->acquire_ctx); | |
11696 | drm_atomic_state_clear(state); | |
11697 | goto retry; | |
11698 | } | |
11699 | ||
11700 | if (ret) | |
11701 | drm_atomic_state_free(state); | |
11702 | ||
f0d3dad3 | 11703 | if (ret == 0 && event) { |
5e2d7afc | 11704 | spin_lock_irq(&dev->event_lock); |
a071fa00 | 11705 | drm_send_vblank_event(dev, pipe, event); |
5e2d7afc | 11706 | spin_unlock_irq(&dev->event_lock); |
f0d3dad3 | 11707 | } |
f900db47 | 11708 | } |
96b099fd | 11709 | return ret; |
6b95a207 KH |
11710 | } |
11711 | ||
da20eabd ML |
11712 | |
11713 | /** | |
11714 | * intel_wm_need_update - Check whether watermarks need updating | |
11715 | * @plane: drm plane | |
11716 | * @state: new plane state | |
11717 | * | |
11718 | * Check current plane state versus the new one to determine whether | |
11719 | * watermarks need to be recalculated. | |
11720 | * | |
11721 | * Returns true or false. | |
11722 | */ | |
11723 | static bool intel_wm_need_update(struct drm_plane *plane, | |
11724 | struct drm_plane_state *state) | |
11725 | { | |
d21fbe87 MR |
11726 | struct intel_plane_state *new = to_intel_plane_state(state); |
11727 | struct intel_plane_state *cur = to_intel_plane_state(plane->state); | |
11728 | ||
11729 | /* Update watermarks on tiling or size changes. */ | |
92826fcd ML |
11730 | if (new->visible != cur->visible) |
11731 | return true; | |
11732 | ||
11733 | if (!cur->base.fb || !new->base.fb) | |
11734 | return false; | |
11735 | ||
11736 | if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] || | |
11737 | cur->base.rotation != new->base.rotation || | |
d21fbe87 MR |
11738 | drm_rect_width(&new->src) != drm_rect_width(&cur->src) || |
11739 | drm_rect_height(&new->src) != drm_rect_height(&cur->src) || | |
11740 | drm_rect_width(&new->dst) != drm_rect_width(&cur->dst) || | |
11741 | drm_rect_height(&new->dst) != drm_rect_height(&cur->dst)) | |
2791a16c | 11742 | return true; |
7809e5ae | 11743 | |
2791a16c | 11744 | return false; |
7809e5ae MR |
11745 | } |
11746 | ||
d21fbe87 MR |
11747 | static bool needs_scaling(struct intel_plane_state *state) |
11748 | { | |
11749 | int src_w = drm_rect_width(&state->src) >> 16; | |
11750 | int src_h = drm_rect_height(&state->src) >> 16; | |
11751 | int dst_w = drm_rect_width(&state->dst); | |
11752 | int dst_h = drm_rect_height(&state->dst); | |
11753 | ||
11754 | return (src_w != dst_w || src_h != dst_h); | |
11755 | } | |
11756 | ||
da20eabd ML |
11757 | int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state, |
11758 | struct drm_plane_state *plane_state) | |
11759 | { | |
ab1d3a0e | 11760 | struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state); |
da20eabd ML |
11761 | struct drm_crtc *crtc = crtc_state->crtc; |
11762 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
11763 | struct drm_plane *plane = plane_state->plane; | |
11764 | struct drm_device *dev = crtc->dev; | |
ed4a6a7c | 11765 | struct drm_i915_private *dev_priv = to_i915(dev); |
da20eabd ML |
11766 | struct intel_plane_state *old_plane_state = |
11767 | to_intel_plane_state(plane->state); | |
11768 | int idx = intel_crtc->base.base.id, ret; | |
da20eabd ML |
11769 | bool mode_changed = needs_modeset(crtc_state); |
11770 | bool was_crtc_enabled = crtc->state->active; | |
11771 | bool is_crtc_enabled = crtc_state->active; | |
da20eabd ML |
11772 | bool turn_off, turn_on, visible, was_visible; |
11773 | struct drm_framebuffer *fb = plane_state->fb; | |
11774 | ||
11775 | if (crtc_state && INTEL_INFO(dev)->gen >= 9 && | |
11776 | plane->type != DRM_PLANE_TYPE_CURSOR) { | |
11777 | ret = skl_update_scaler_plane( | |
11778 | to_intel_crtc_state(crtc_state), | |
11779 | to_intel_plane_state(plane_state)); | |
11780 | if (ret) | |
11781 | return ret; | |
11782 | } | |
11783 | ||
da20eabd ML |
11784 | was_visible = old_plane_state->visible; |
11785 | visible = to_intel_plane_state(plane_state)->visible; | |
11786 | ||
11787 | if (!was_crtc_enabled && WARN_ON(was_visible)) | |
11788 | was_visible = false; | |
11789 | ||
35c08f43 ML |
11790 | /* |
11791 | * Visibility is calculated as if the crtc was on, but | |
11792 | * after scaler setup everything depends on it being off | |
11793 | * when the crtc isn't active. | |
11794 | */ | |
11795 | if (!is_crtc_enabled) | |
11796 | to_intel_plane_state(plane_state)->visible = visible = false; | |
da20eabd ML |
11797 | |
11798 | if (!was_visible && !visible) | |
11799 | return 0; | |
11800 | ||
e8861675 ML |
11801 | if (fb != old_plane_state->base.fb) |
11802 | pipe_config->fb_changed = true; | |
11803 | ||
da20eabd ML |
11804 | turn_off = was_visible && (!visible || mode_changed); |
11805 | turn_on = visible && (!was_visible || mode_changed); | |
11806 | ||
11807 | DRM_DEBUG_ATOMIC("[CRTC:%i] has [PLANE:%i] with fb %i\n", idx, | |
11808 | plane->base.id, fb ? fb->base.id : -1); | |
11809 | ||
11810 | DRM_DEBUG_ATOMIC("[PLANE:%i] visible %i -> %i, off %i, on %i, ms %i\n", | |
11811 | plane->base.id, was_visible, visible, | |
11812 | turn_off, turn_on, mode_changed); | |
11813 | ||
caed361d VS |
11814 | if (turn_on) { |
11815 | pipe_config->update_wm_pre = true; | |
11816 | ||
11817 | /* must disable cxsr around plane enable/disable */ | |
11818 | if (plane->type != DRM_PLANE_TYPE_CURSOR) | |
11819 | pipe_config->disable_cxsr = true; | |
11820 | } else if (turn_off) { | |
11821 | pipe_config->update_wm_post = true; | |
92826fcd | 11822 | |
852eb00d | 11823 | /* must disable cxsr around plane enable/disable */ |
e8861675 | 11824 | if (plane->type != DRM_PLANE_TYPE_CURSOR) |
ab1d3a0e | 11825 | pipe_config->disable_cxsr = true; |
852eb00d | 11826 | } else if (intel_wm_need_update(plane, plane_state)) { |
caed361d VS |
11827 | /* FIXME bollocks */ |
11828 | pipe_config->update_wm_pre = true; | |
11829 | pipe_config->update_wm_post = true; | |
852eb00d | 11830 | } |
da20eabd | 11831 | |
ed4a6a7c | 11832 | /* Pre-gen9 platforms need two-step watermark updates */ |
caed361d VS |
11833 | if ((pipe_config->update_wm_pre || pipe_config->update_wm_post) && |
11834 | INTEL_INFO(dev)->gen < 9 && dev_priv->display.optimize_watermarks) | |
ed4a6a7c MR |
11835 | to_intel_crtc_state(crtc_state)->wm.need_postvbl_update = true; |
11836 | ||
8be6ca85 | 11837 | if (visible || was_visible) |
cd202f69 | 11838 | pipe_config->fb_bits |= to_intel_plane(plane)->frontbuffer_bit; |
a9ff8714 | 11839 | |
31ae71fc ML |
11840 | /* |
11841 | * WaCxSRDisabledForSpriteScaling:ivb | |
11842 | * | |
11843 | * cstate->update_wm was already set above, so this flag will | |
11844 | * take effect when we commit and program watermarks. | |
11845 | */ | |
11846 | if (plane->type == DRM_PLANE_TYPE_OVERLAY && IS_IVYBRIDGE(dev) && | |
11847 | needs_scaling(to_intel_plane_state(plane_state)) && | |
11848 | !needs_scaling(old_plane_state)) | |
11849 | pipe_config->disable_lp_wm = true; | |
d21fbe87 | 11850 | |
da20eabd ML |
11851 | return 0; |
11852 | } | |
11853 | ||
6d3a1ce7 ML |
11854 | static bool encoders_cloneable(const struct intel_encoder *a, |
11855 | const struct intel_encoder *b) | |
11856 | { | |
11857 | /* masks could be asymmetric, so check both ways */ | |
11858 | return a == b || (a->cloneable & (1 << b->type) && | |
11859 | b->cloneable & (1 << a->type)); | |
11860 | } | |
11861 | ||
11862 | static bool check_single_encoder_cloning(struct drm_atomic_state *state, | |
11863 | struct intel_crtc *crtc, | |
11864 | struct intel_encoder *encoder) | |
11865 | { | |
11866 | struct intel_encoder *source_encoder; | |
11867 | struct drm_connector *connector; | |
11868 | struct drm_connector_state *connector_state; | |
11869 | int i; | |
11870 | ||
11871 | for_each_connector_in_state(state, connector, connector_state, i) { | |
11872 | if (connector_state->crtc != &crtc->base) | |
11873 | continue; | |
11874 | ||
11875 | source_encoder = | |
11876 | to_intel_encoder(connector_state->best_encoder); | |
11877 | if (!encoders_cloneable(encoder, source_encoder)) | |
11878 | return false; | |
11879 | } | |
11880 | ||
11881 | return true; | |
11882 | } | |
11883 | ||
11884 | static bool check_encoder_cloning(struct drm_atomic_state *state, | |
11885 | struct intel_crtc *crtc) | |
11886 | { | |
11887 | struct intel_encoder *encoder; | |
11888 | struct drm_connector *connector; | |
11889 | struct drm_connector_state *connector_state; | |
11890 | int i; | |
11891 | ||
11892 | for_each_connector_in_state(state, connector, connector_state, i) { | |
11893 | if (connector_state->crtc != &crtc->base) | |
11894 | continue; | |
11895 | ||
11896 | encoder = to_intel_encoder(connector_state->best_encoder); | |
11897 | if (!check_single_encoder_cloning(state, crtc, encoder)) | |
11898 | return false; | |
11899 | } | |
11900 | ||
11901 | return true; | |
11902 | } | |
11903 | ||
11904 | static int intel_crtc_atomic_check(struct drm_crtc *crtc, | |
11905 | struct drm_crtc_state *crtc_state) | |
11906 | { | |
cf5a15be | 11907 | struct drm_device *dev = crtc->dev; |
ad421372 | 11908 | struct drm_i915_private *dev_priv = dev->dev_private; |
6d3a1ce7 | 11909 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
cf5a15be ML |
11910 | struct intel_crtc_state *pipe_config = |
11911 | to_intel_crtc_state(crtc_state); | |
6d3a1ce7 | 11912 | struct drm_atomic_state *state = crtc_state->state; |
4d20cd86 | 11913 | int ret; |
6d3a1ce7 ML |
11914 | bool mode_changed = needs_modeset(crtc_state); |
11915 | ||
11916 | if (mode_changed && !check_encoder_cloning(state, intel_crtc)) { | |
11917 | DRM_DEBUG_KMS("rejecting invalid cloning configuration\n"); | |
11918 | return -EINVAL; | |
11919 | } | |
11920 | ||
852eb00d | 11921 | if (mode_changed && !crtc_state->active) |
caed361d | 11922 | pipe_config->update_wm_post = true; |
eddfcbcd | 11923 | |
ad421372 ML |
11924 | if (mode_changed && crtc_state->enable && |
11925 | dev_priv->display.crtc_compute_clock && | |
8106ddbd | 11926 | !WARN_ON(pipe_config->shared_dpll)) { |
ad421372 ML |
11927 | ret = dev_priv->display.crtc_compute_clock(intel_crtc, |
11928 | pipe_config); | |
11929 | if (ret) | |
11930 | return ret; | |
11931 | } | |
11932 | ||
82cf435b LL |
11933 | if (crtc_state->color_mgmt_changed) { |
11934 | ret = intel_color_check(crtc, crtc_state); | |
11935 | if (ret) | |
11936 | return ret; | |
11937 | } | |
11938 | ||
e435d6e5 | 11939 | ret = 0; |
86c8bbbe | 11940 | if (dev_priv->display.compute_pipe_wm) { |
e3bddded | 11941 | ret = dev_priv->display.compute_pipe_wm(pipe_config); |
ed4a6a7c MR |
11942 | if (ret) { |
11943 | DRM_DEBUG_KMS("Target pipe watermarks are invalid\n"); | |
11944 | return ret; | |
11945 | } | |
11946 | } | |
11947 | ||
11948 | if (dev_priv->display.compute_intermediate_wm && | |
11949 | !to_intel_atomic_state(state)->skip_intermediate_wm) { | |
11950 | if (WARN_ON(!dev_priv->display.compute_pipe_wm)) | |
11951 | return 0; | |
11952 | ||
11953 | /* | |
11954 | * Calculate 'intermediate' watermarks that satisfy both the | |
11955 | * old state and the new state. We can program these | |
11956 | * immediately. | |
11957 | */ | |
11958 | ret = dev_priv->display.compute_intermediate_wm(crtc->dev, | |
11959 | intel_crtc, | |
11960 | pipe_config); | |
11961 | if (ret) { | |
11962 | DRM_DEBUG_KMS("No valid intermediate pipe watermarks are possible\n"); | |
86c8bbbe | 11963 | return ret; |
ed4a6a7c | 11964 | } |
86c8bbbe MR |
11965 | } |
11966 | ||
e435d6e5 ML |
11967 | if (INTEL_INFO(dev)->gen >= 9) { |
11968 | if (mode_changed) | |
11969 | ret = skl_update_scaler_crtc(pipe_config); | |
11970 | ||
11971 | if (!ret) | |
11972 | ret = intel_atomic_setup_scalers(dev, intel_crtc, | |
11973 | pipe_config); | |
11974 | } | |
11975 | ||
11976 | return ret; | |
6d3a1ce7 ML |
11977 | } |
11978 | ||
65b38e0d | 11979 | static const struct drm_crtc_helper_funcs intel_helper_funcs = { |
f6e5b160 | 11980 | .mode_set_base_atomic = intel_pipe_set_base_atomic, |
ea2c67bb MR |
11981 | .atomic_begin = intel_begin_crtc_commit, |
11982 | .atomic_flush = intel_finish_crtc_commit, | |
6d3a1ce7 | 11983 | .atomic_check = intel_crtc_atomic_check, |
f6e5b160 CW |
11984 | }; |
11985 | ||
d29b2f9d ACO |
11986 | static void intel_modeset_update_connector_atomic_state(struct drm_device *dev) |
11987 | { | |
11988 | struct intel_connector *connector; | |
11989 | ||
11990 | for_each_intel_connector(dev, connector) { | |
11991 | if (connector->base.encoder) { | |
11992 | connector->base.state->best_encoder = | |
11993 | connector->base.encoder; | |
11994 | connector->base.state->crtc = | |
11995 | connector->base.encoder->crtc; | |
11996 | } else { | |
11997 | connector->base.state->best_encoder = NULL; | |
11998 | connector->base.state->crtc = NULL; | |
11999 | } | |
12000 | } | |
12001 | } | |
12002 | ||
050f7aeb | 12003 | static void |
eba905b2 | 12004 | connected_sink_compute_bpp(struct intel_connector *connector, |
5cec258b | 12005 | struct intel_crtc_state *pipe_config) |
050f7aeb DV |
12006 | { |
12007 | int bpp = pipe_config->pipe_bpp; | |
12008 | ||
12009 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n", | |
12010 | connector->base.base.id, | |
c23cc417 | 12011 | connector->base.name); |
050f7aeb DV |
12012 | |
12013 | /* Don't use an invalid EDID bpc value */ | |
12014 | if (connector->base.display_info.bpc && | |
12015 | connector->base.display_info.bpc * 3 < bpp) { | |
12016 | DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n", | |
12017 | bpp, connector->base.display_info.bpc*3); | |
12018 | pipe_config->pipe_bpp = connector->base.display_info.bpc*3; | |
12019 | } | |
12020 | ||
013dd9e0 JN |
12021 | /* Clamp bpp to default limit on screens without EDID 1.4 */ |
12022 | if (connector->base.display_info.bpc == 0) { | |
12023 | int type = connector->base.connector_type; | |
12024 | int clamp_bpp = 24; | |
12025 | ||
12026 | /* Fall back to 18 bpp when DP sink capability is unknown. */ | |
12027 | if (type == DRM_MODE_CONNECTOR_DisplayPort || | |
12028 | type == DRM_MODE_CONNECTOR_eDP) | |
12029 | clamp_bpp = 18; | |
12030 | ||
12031 | if (bpp > clamp_bpp) { | |
12032 | DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of %d\n", | |
12033 | bpp, clamp_bpp); | |
12034 | pipe_config->pipe_bpp = clamp_bpp; | |
12035 | } | |
050f7aeb DV |
12036 | } |
12037 | } | |
12038 | ||
4e53c2e0 | 12039 | static int |
050f7aeb | 12040 | compute_baseline_pipe_bpp(struct intel_crtc *crtc, |
5cec258b | 12041 | struct intel_crtc_state *pipe_config) |
4e53c2e0 | 12042 | { |
050f7aeb | 12043 | struct drm_device *dev = crtc->base.dev; |
1486017f | 12044 | struct drm_atomic_state *state; |
da3ced29 ACO |
12045 | struct drm_connector *connector; |
12046 | struct drm_connector_state *connector_state; | |
1486017f | 12047 | int bpp, i; |
4e53c2e0 | 12048 | |
666a4537 | 12049 | if ((IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))) |
4e53c2e0 | 12050 | bpp = 10*3; |
d328c9d7 DV |
12051 | else if (INTEL_INFO(dev)->gen >= 5) |
12052 | bpp = 12*3; | |
12053 | else | |
12054 | bpp = 8*3; | |
12055 | ||
4e53c2e0 | 12056 | |
4e53c2e0 DV |
12057 | pipe_config->pipe_bpp = bpp; |
12058 | ||
1486017f ACO |
12059 | state = pipe_config->base.state; |
12060 | ||
4e53c2e0 | 12061 | /* Clamp display bpp to EDID value */ |
da3ced29 ACO |
12062 | for_each_connector_in_state(state, connector, connector_state, i) { |
12063 | if (connector_state->crtc != &crtc->base) | |
4e53c2e0 DV |
12064 | continue; |
12065 | ||
da3ced29 ACO |
12066 | connected_sink_compute_bpp(to_intel_connector(connector), |
12067 | pipe_config); | |
4e53c2e0 DV |
12068 | } |
12069 | ||
12070 | return bpp; | |
12071 | } | |
12072 | ||
644db711 DV |
12073 | static void intel_dump_crtc_timings(const struct drm_display_mode *mode) |
12074 | { | |
12075 | DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, " | |
12076 | "type: 0x%x flags: 0x%x\n", | |
1342830c | 12077 | mode->crtc_clock, |
644db711 DV |
12078 | mode->crtc_hdisplay, mode->crtc_hsync_start, |
12079 | mode->crtc_hsync_end, mode->crtc_htotal, | |
12080 | mode->crtc_vdisplay, mode->crtc_vsync_start, | |
12081 | mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags); | |
12082 | } | |
12083 | ||
c0b03411 | 12084 | static void intel_dump_pipe_config(struct intel_crtc *crtc, |
5cec258b | 12085 | struct intel_crtc_state *pipe_config, |
c0b03411 DV |
12086 | const char *context) |
12087 | { | |
6a60cd87 CK |
12088 | struct drm_device *dev = crtc->base.dev; |
12089 | struct drm_plane *plane; | |
12090 | struct intel_plane *intel_plane; | |
12091 | struct intel_plane_state *state; | |
12092 | struct drm_framebuffer *fb; | |
12093 | ||
12094 | DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id, | |
12095 | context, pipe_config, pipe_name(crtc->pipe)); | |
c0b03411 | 12096 | |
da205630 | 12097 | DRM_DEBUG_KMS("cpu_transcoder: %s\n", transcoder_name(pipe_config->cpu_transcoder)); |
c0b03411 DV |
12098 | DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n", |
12099 | pipe_config->pipe_bpp, pipe_config->dither); | |
12100 | DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n", | |
12101 | pipe_config->has_pch_encoder, | |
12102 | pipe_config->fdi_lanes, | |
12103 | pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n, | |
12104 | pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n, | |
12105 | pipe_config->fdi_m_n.tu); | |
90a6b7b0 | 12106 | DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n", |
eb14cb74 | 12107 | pipe_config->has_dp_encoder, |
90a6b7b0 | 12108 | pipe_config->lane_count, |
eb14cb74 VS |
12109 | pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n, |
12110 | pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n, | |
12111 | pipe_config->dp_m_n.tu); | |
b95af8be | 12112 | |
90a6b7b0 | 12113 | DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n", |
b95af8be | 12114 | pipe_config->has_dp_encoder, |
90a6b7b0 | 12115 | pipe_config->lane_count, |
b95af8be VK |
12116 | pipe_config->dp_m2_n2.gmch_m, |
12117 | pipe_config->dp_m2_n2.gmch_n, | |
12118 | pipe_config->dp_m2_n2.link_m, | |
12119 | pipe_config->dp_m2_n2.link_n, | |
12120 | pipe_config->dp_m2_n2.tu); | |
12121 | ||
55072d19 DV |
12122 | DRM_DEBUG_KMS("audio: %i, infoframes: %i\n", |
12123 | pipe_config->has_audio, | |
12124 | pipe_config->has_infoframe); | |
12125 | ||
c0b03411 | 12126 | DRM_DEBUG_KMS("requested mode:\n"); |
2d112de7 | 12127 | drm_mode_debug_printmodeline(&pipe_config->base.mode); |
c0b03411 | 12128 | DRM_DEBUG_KMS("adjusted mode:\n"); |
2d112de7 ACO |
12129 | drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode); |
12130 | intel_dump_crtc_timings(&pipe_config->base.adjusted_mode); | |
d71b8d4a | 12131 | DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock); |
37327abd VS |
12132 | DRM_DEBUG_KMS("pipe src size: %dx%d\n", |
12133 | pipe_config->pipe_src_w, pipe_config->pipe_src_h); | |
0ec463d3 TU |
12134 | DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n", |
12135 | crtc->num_scalers, | |
12136 | pipe_config->scaler_state.scaler_users, | |
12137 | pipe_config->scaler_state.scaler_id); | |
c0b03411 DV |
12138 | DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n", |
12139 | pipe_config->gmch_pfit.control, | |
12140 | pipe_config->gmch_pfit.pgm_ratios, | |
12141 | pipe_config->gmch_pfit.lvds_border_bits); | |
fd4daa9c | 12142 | DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n", |
c0b03411 | 12143 | pipe_config->pch_pfit.pos, |
fd4daa9c CW |
12144 | pipe_config->pch_pfit.size, |
12145 | pipe_config->pch_pfit.enabled ? "enabled" : "disabled"); | |
42db64ef | 12146 | DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled); |
cf532bb2 | 12147 | DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide); |
6a60cd87 | 12148 | |
415ff0f6 | 12149 | if (IS_BROXTON(dev)) { |
05712c15 | 12150 | DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x," |
415ff0f6 | 12151 | "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, " |
c8453338 | 12152 | "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n", |
415ff0f6 TU |
12153 | pipe_config->ddi_pll_sel, |
12154 | pipe_config->dpll_hw_state.ebb0, | |
05712c15 | 12155 | pipe_config->dpll_hw_state.ebb4, |
415ff0f6 TU |
12156 | pipe_config->dpll_hw_state.pll0, |
12157 | pipe_config->dpll_hw_state.pll1, | |
12158 | pipe_config->dpll_hw_state.pll2, | |
12159 | pipe_config->dpll_hw_state.pll3, | |
12160 | pipe_config->dpll_hw_state.pll6, | |
12161 | pipe_config->dpll_hw_state.pll8, | |
05712c15 | 12162 | pipe_config->dpll_hw_state.pll9, |
c8453338 | 12163 | pipe_config->dpll_hw_state.pll10, |
415ff0f6 | 12164 | pipe_config->dpll_hw_state.pcsdw12); |
ef11bdb3 | 12165 | } else if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) { |
415ff0f6 TU |
12166 | DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: " |
12167 | "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n", | |
12168 | pipe_config->ddi_pll_sel, | |
12169 | pipe_config->dpll_hw_state.ctrl1, | |
12170 | pipe_config->dpll_hw_state.cfgcr1, | |
12171 | pipe_config->dpll_hw_state.cfgcr2); | |
12172 | } else if (HAS_DDI(dev)) { | |
1260f07e | 12173 | DRM_DEBUG_KMS("ddi_pll_sel: 0x%x; dpll_hw_state: wrpll: 0x%x spll: 0x%x\n", |
415ff0f6 | 12174 | pipe_config->ddi_pll_sel, |
00490c22 ML |
12175 | pipe_config->dpll_hw_state.wrpll, |
12176 | pipe_config->dpll_hw_state.spll); | |
415ff0f6 TU |
12177 | } else { |
12178 | DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, " | |
12179 | "fp0: 0x%x, fp1: 0x%x\n", | |
12180 | pipe_config->dpll_hw_state.dpll, | |
12181 | pipe_config->dpll_hw_state.dpll_md, | |
12182 | pipe_config->dpll_hw_state.fp0, | |
12183 | pipe_config->dpll_hw_state.fp1); | |
12184 | } | |
12185 | ||
6a60cd87 CK |
12186 | DRM_DEBUG_KMS("planes on this crtc\n"); |
12187 | list_for_each_entry(plane, &dev->mode_config.plane_list, head) { | |
12188 | intel_plane = to_intel_plane(plane); | |
12189 | if (intel_plane->pipe != crtc->pipe) | |
12190 | continue; | |
12191 | ||
12192 | state = to_intel_plane_state(plane->state); | |
12193 | fb = state->base.fb; | |
12194 | if (!fb) { | |
12195 | DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d " | |
12196 | "disabled, scaler_id = %d\n", | |
12197 | plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD", | |
12198 | plane->base.id, intel_plane->pipe, | |
12199 | (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1, | |
12200 | drm_plane_index(plane), state->scaler_id); | |
12201 | continue; | |
12202 | } | |
12203 | ||
12204 | DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled", | |
12205 | plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD", | |
12206 | plane->base.id, intel_plane->pipe, | |
12207 | crtc->base.primary == plane ? 0 : intel_plane->plane + 1, | |
12208 | drm_plane_index(plane)); | |
12209 | DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x", | |
12210 | fb->base.id, fb->width, fb->height, fb->pixel_format); | |
12211 | DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n", | |
12212 | state->scaler_id, | |
12213 | state->src.x1 >> 16, state->src.y1 >> 16, | |
12214 | drm_rect_width(&state->src) >> 16, | |
12215 | drm_rect_height(&state->src) >> 16, | |
12216 | state->dst.x1, state->dst.y1, | |
12217 | drm_rect_width(&state->dst), drm_rect_height(&state->dst)); | |
12218 | } | |
c0b03411 DV |
12219 | } |
12220 | ||
5448a00d | 12221 | static bool check_digital_port_conflicts(struct drm_atomic_state *state) |
00f0b378 | 12222 | { |
5448a00d | 12223 | struct drm_device *dev = state->dev; |
da3ced29 | 12224 | struct drm_connector *connector; |
00f0b378 VS |
12225 | unsigned int used_ports = 0; |
12226 | ||
12227 | /* | |
12228 | * Walk the connector list instead of the encoder | |
12229 | * list to detect the problem on ddi platforms | |
12230 | * where there's just one encoder per digital port. | |
12231 | */ | |
0bff4858 VS |
12232 | drm_for_each_connector(connector, dev) { |
12233 | struct drm_connector_state *connector_state; | |
12234 | struct intel_encoder *encoder; | |
12235 | ||
12236 | connector_state = drm_atomic_get_existing_connector_state(state, connector); | |
12237 | if (!connector_state) | |
12238 | connector_state = connector->state; | |
12239 | ||
5448a00d | 12240 | if (!connector_state->best_encoder) |
00f0b378 VS |
12241 | continue; |
12242 | ||
5448a00d ACO |
12243 | encoder = to_intel_encoder(connector_state->best_encoder); |
12244 | ||
12245 | WARN_ON(!connector_state->crtc); | |
00f0b378 VS |
12246 | |
12247 | switch (encoder->type) { | |
12248 | unsigned int port_mask; | |
12249 | case INTEL_OUTPUT_UNKNOWN: | |
12250 | if (WARN_ON(!HAS_DDI(dev))) | |
12251 | break; | |
12252 | case INTEL_OUTPUT_DISPLAYPORT: | |
12253 | case INTEL_OUTPUT_HDMI: | |
12254 | case INTEL_OUTPUT_EDP: | |
12255 | port_mask = 1 << enc_to_dig_port(&encoder->base)->port; | |
12256 | ||
12257 | /* the same port mustn't appear more than once */ | |
12258 | if (used_ports & port_mask) | |
12259 | return false; | |
12260 | ||
12261 | used_ports |= port_mask; | |
12262 | default: | |
12263 | break; | |
12264 | } | |
12265 | } | |
12266 | ||
12267 | return true; | |
12268 | } | |
12269 | ||
83a57153 ACO |
12270 | static void |
12271 | clear_intel_crtc_state(struct intel_crtc_state *crtc_state) | |
12272 | { | |
12273 | struct drm_crtc_state tmp_state; | |
663a3640 | 12274 | struct intel_crtc_scaler_state scaler_state; |
4978cc93 | 12275 | struct intel_dpll_hw_state dpll_hw_state; |
8106ddbd | 12276 | struct intel_shared_dpll *shared_dpll; |
8504c74c | 12277 | uint32_t ddi_pll_sel; |
c4e2d043 | 12278 | bool force_thru; |
83a57153 | 12279 | |
7546a384 ACO |
12280 | /* FIXME: before the switch to atomic started, a new pipe_config was |
12281 | * kzalloc'd. Code that depends on any field being zero should be | |
12282 | * fixed, so that the crtc_state can be safely duplicated. For now, | |
12283 | * only fields that are know to not cause problems are preserved. */ | |
12284 | ||
83a57153 | 12285 | tmp_state = crtc_state->base; |
663a3640 | 12286 | scaler_state = crtc_state->scaler_state; |
4978cc93 ACO |
12287 | shared_dpll = crtc_state->shared_dpll; |
12288 | dpll_hw_state = crtc_state->dpll_hw_state; | |
8504c74c | 12289 | ddi_pll_sel = crtc_state->ddi_pll_sel; |
c4e2d043 | 12290 | force_thru = crtc_state->pch_pfit.force_thru; |
4978cc93 | 12291 | |
83a57153 | 12292 | memset(crtc_state, 0, sizeof *crtc_state); |
4978cc93 | 12293 | |
83a57153 | 12294 | crtc_state->base = tmp_state; |
663a3640 | 12295 | crtc_state->scaler_state = scaler_state; |
4978cc93 ACO |
12296 | crtc_state->shared_dpll = shared_dpll; |
12297 | crtc_state->dpll_hw_state = dpll_hw_state; | |
8504c74c | 12298 | crtc_state->ddi_pll_sel = ddi_pll_sel; |
c4e2d043 | 12299 | crtc_state->pch_pfit.force_thru = force_thru; |
83a57153 ACO |
12300 | } |
12301 | ||
548ee15b | 12302 | static int |
b8cecdf5 | 12303 | intel_modeset_pipe_config(struct drm_crtc *crtc, |
b359283a | 12304 | struct intel_crtc_state *pipe_config) |
ee7b9f93 | 12305 | { |
b359283a | 12306 | struct drm_atomic_state *state = pipe_config->base.state; |
7758a113 | 12307 | struct intel_encoder *encoder; |
da3ced29 | 12308 | struct drm_connector *connector; |
0b901879 | 12309 | struct drm_connector_state *connector_state; |
d328c9d7 | 12310 | int base_bpp, ret = -EINVAL; |
0b901879 | 12311 | int i; |
e29c22c0 | 12312 | bool retry = true; |
ee7b9f93 | 12313 | |
83a57153 | 12314 | clear_intel_crtc_state(pipe_config); |
7758a113 | 12315 | |
e143a21c DV |
12316 | pipe_config->cpu_transcoder = |
12317 | (enum transcoder) to_intel_crtc(crtc)->pipe; | |
b8cecdf5 | 12318 | |
2960bc9c ID |
12319 | /* |
12320 | * Sanitize sync polarity flags based on requested ones. If neither | |
12321 | * positive or negative polarity is requested, treat this as meaning | |
12322 | * negative polarity. | |
12323 | */ | |
2d112de7 | 12324 | if (!(pipe_config->base.adjusted_mode.flags & |
2960bc9c | 12325 | (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC))) |
2d112de7 | 12326 | pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC; |
2960bc9c | 12327 | |
2d112de7 | 12328 | if (!(pipe_config->base.adjusted_mode.flags & |
2960bc9c | 12329 | (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC))) |
2d112de7 | 12330 | pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC; |
2960bc9c | 12331 | |
d328c9d7 DV |
12332 | base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc), |
12333 | pipe_config); | |
12334 | if (base_bpp < 0) | |
4e53c2e0 DV |
12335 | goto fail; |
12336 | ||
e41a56be VS |
12337 | /* |
12338 | * Determine the real pipe dimensions. Note that stereo modes can | |
12339 | * increase the actual pipe size due to the frame doubling and | |
12340 | * insertion of additional space for blanks between the frame. This | |
12341 | * is stored in the crtc timings. We use the requested mode to do this | |
12342 | * computation to clearly distinguish it from the adjusted mode, which | |
12343 | * can be changed by the connectors in the below retry loop. | |
12344 | */ | |
2d112de7 | 12345 | drm_crtc_get_hv_timing(&pipe_config->base.mode, |
ecb7e16b GP |
12346 | &pipe_config->pipe_src_w, |
12347 | &pipe_config->pipe_src_h); | |
e41a56be | 12348 | |
e29c22c0 | 12349 | encoder_retry: |
ef1b460d | 12350 | /* Ensure the port clock defaults are reset when retrying. */ |
ff9a6750 | 12351 | pipe_config->port_clock = 0; |
ef1b460d | 12352 | pipe_config->pixel_multiplier = 1; |
ff9a6750 | 12353 | |
135c81b8 | 12354 | /* Fill in default crtc timings, allow encoders to overwrite them. */ |
2d112de7 ACO |
12355 | drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode, |
12356 | CRTC_STEREO_DOUBLE); | |
135c81b8 | 12357 | |
7758a113 DV |
12358 | /* Pass our mode to the connectors and the CRTC to give them a chance to |
12359 | * adjust it according to limitations or connector properties, and also | |
12360 | * a chance to reject the mode entirely. | |
47f1c6c9 | 12361 | */ |
da3ced29 | 12362 | for_each_connector_in_state(state, connector, connector_state, i) { |
0b901879 | 12363 | if (connector_state->crtc != crtc) |
7758a113 | 12364 | continue; |
7ae89233 | 12365 | |
0b901879 ACO |
12366 | encoder = to_intel_encoder(connector_state->best_encoder); |
12367 | ||
efea6e8e DV |
12368 | if (!(encoder->compute_config(encoder, pipe_config))) { |
12369 | DRM_DEBUG_KMS("Encoder config failure\n"); | |
7758a113 DV |
12370 | goto fail; |
12371 | } | |
ee7b9f93 | 12372 | } |
47f1c6c9 | 12373 | |
ff9a6750 DV |
12374 | /* Set default port clock if not overwritten by the encoder. Needs to be |
12375 | * done afterwards in case the encoder adjusts the mode. */ | |
12376 | if (!pipe_config->port_clock) | |
2d112de7 | 12377 | pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock |
241bfc38 | 12378 | * pipe_config->pixel_multiplier; |
ff9a6750 | 12379 | |
a43f6e0f | 12380 | ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config); |
e29c22c0 | 12381 | if (ret < 0) { |
7758a113 DV |
12382 | DRM_DEBUG_KMS("CRTC fixup failed\n"); |
12383 | goto fail; | |
ee7b9f93 | 12384 | } |
e29c22c0 DV |
12385 | |
12386 | if (ret == RETRY) { | |
12387 | if (WARN(!retry, "loop in pipe configuration computation\n")) { | |
12388 | ret = -EINVAL; | |
12389 | goto fail; | |
12390 | } | |
12391 | ||
12392 | DRM_DEBUG_KMS("CRTC bw constrained, retrying\n"); | |
12393 | retry = false; | |
12394 | goto encoder_retry; | |
12395 | } | |
12396 | ||
e8fa4270 DV |
12397 | /* Dithering seems to not pass-through bits correctly when it should, so |
12398 | * only enable it on 6bpc panels. */ | |
12399 | pipe_config->dither = pipe_config->pipe_bpp == 6*3; | |
62f0ace5 | 12400 | DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n", |
d328c9d7 | 12401 | base_bpp, pipe_config->pipe_bpp, pipe_config->dither); |
4e53c2e0 | 12402 | |
7758a113 | 12403 | fail: |
548ee15b | 12404 | return ret; |
ee7b9f93 | 12405 | } |
47f1c6c9 | 12406 | |
ea9d758d | 12407 | static void |
4740b0f2 | 12408 | intel_modeset_update_crtc_state(struct drm_atomic_state *state) |
ea9d758d | 12409 | { |
0a9ab303 ACO |
12410 | struct drm_crtc *crtc; |
12411 | struct drm_crtc_state *crtc_state; | |
8a75d157 | 12412 | int i; |
ea9d758d | 12413 | |
7668851f | 12414 | /* Double check state. */ |
8a75d157 | 12415 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
3cb480bc | 12416 | to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state); |
fc467a22 ML |
12417 | |
12418 | /* Update hwmode for vblank functions */ | |
12419 | if (crtc->state->active) | |
12420 | crtc->hwmode = crtc->state->adjusted_mode; | |
12421 | else | |
12422 | crtc->hwmode.crtc_clock = 0; | |
61067a5e ML |
12423 | |
12424 | /* | |
12425 | * Update legacy state to satisfy fbc code. This can | |
12426 | * be removed when fbc uses the atomic state. | |
12427 | */ | |
12428 | if (drm_atomic_get_existing_plane_state(state, crtc->primary)) { | |
12429 | struct drm_plane_state *plane_state = crtc->primary->state; | |
12430 | ||
12431 | crtc->primary->fb = plane_state->fb; | |
12432 | crtc->x = plane_state->src_x >> 16; | |
12433 | crtc->y = plane_state->src_y >> 16; | |
12434 | } | |
ea9d758d | 12435 | } |
ea9d758d DV |
12436 | } |
12437 | ||
3bd26263 | 12438 | static bool intel_fuzzy_clock_check(int clock1, int clock2) |
f1f644dc | 12439 | { |
3bd26263 | 12440 | int diff; |
f1f644dc JB |
12441 | |
12442 | if (clock1 == clock2) | |
12443 | return true; | |
12444 | ||
12445 | if (!clock1 || !clock2) | |
12446 | return false; | |
12447 | ||
12448 | diff = abs(clock1 - clock2); | |
12449 | ||
12450 | if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105) | |
12451 | return true; | |
12452 | ||
12453 | return false; | |
12454 | } | |
12455 | ||
25c5b266 DV |
12456 | #define for_each_intel_crtc_masked(dev, mask, intel_crtc) \ |
12457 | list_for_each_entry((intel_crtc), \ | |
12458 | &(dev)->mode_config.crtc_list, \ | |
12459 | base.head) \ | |
95150bdf | 12460 | for_each_if (mask & (1 <<(intel_crtc)->pipe)) |
25c5b266 | 12461 | |
cfb23ed6 ML |
12462 | static bool |
12463 | intel_compare_m_n(unsigned int m, unsigned int n, | |
12464 | unsigned int m2, unsigned int n2, | |
12465 | bool exact) | |
12466 | { | |
12467 | if (m == m2 && n == n2) | |
12468 | return true; | |
12469 | ||
12470 | if (exact || !m || !n || !m2 || !n2) | |
12471 | return false; | |
12472 | ||
12473 | BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX); | |
12474 | ||
31d10b57 ML |
12475 | if (n > n2) { |
12476 | while (n > n2) { | |
cfb23ed6 ML |
12477 | m2 <<= 1; |
12478 | n2 <<= 1; | |
12479 | } | |
31d10b57 ML |
12480 | } else if (n < n2) { |
12481 | while (n < n2) { | |
cfb23ed6 ML |
12482 | m <<= 1; |
12483 | n <<= 1; | |
12484 | } | |
12485 | } | |
12486 | ||
31d10b57 ML |
12487 | if (n != n2) |
12488 | return false; | |
12489 | ||
12490 | return intel_fuzzy_clock_check(m, m2); | |
cfb23ed6 ML |
12491 | } |
12492 | ||
12493 | static bool | |
12494 | intel_compare_link_m_n(const struct intel_link_m_n *m_n, | |
12495 | struct intel_link_m_n *m2_n2, | |
12496 | bool adjust) | |
12497 | { | |
12498 | if (m_n->tu == m2_n2->tu && | |
12499 | intel_compare_m_n(m_n->gmch_m, m_n->gmch_n, | |
12500 | m2_n2->gmch_m, m2_n2->gmch_n, !adjust) && | |
12501 | intel_compare_m_n(m_n->link_m, m_n->link_n, | |
12502 | m2_n2->link_m, m2_n2->link_n, !adjust)) { | |
12503 | if (adjust) | |
12504 | *m2_n2 = *m_n; | |
12505 | ||
12506 | return true; | |
12507 | } | |
12508 | ||
12509 | return false; | |
12510 | } | |
12511 | ||
0e8ffe1b | 12512 | static bool |
2fa2fe9a | 12513 | intel_pipe_config_compare(struct drm_device *dev, |
5cec258b | 12514 | struct intel_crtc_state *current_config, |
cfb23ed6 ML |
12515 | struct intel_crtc_state *pipe_config, |
12516 | bool adjust) | |
0e8ffe1b | 12517 | { |
cfb23ed6 ML |
12518 | bool ret = true; |
12519 | ||
12520 | #define INTEL_ERR_OR_DBG_KMS(fmt, ...) \ | |
12521 | do { \ | |
12522 | if (!adjust) \ | |
12523 | DRM_ERROR(fmt, ##__VA_ARGS__); \ | |
12524 | else \ | |
12525 | DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \ | |
12526 | } while (0) | |
12527 | ||
66e985c0 DV |
12528 | #define PIPE_CONF_CHECK_X(name) \ |
12529 | if (current_config->name != pipe_config->name) { \ | |
cfb23ed6 | 12530 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ |
66e985c0 DV |
12531 | "(expected 0x%08x, found 0x%08x)\n", \ |
12532 | current_config->name, \ | |
12533 | pipe_config->name); \ | |
cfb23ed6 | 12534 | ret = false; \ |
66e985c0 DV |
12535 | } |
12536 | ||
08a24034 DV |
12537 | #define PIPE_CONF_CHECK_I(name) \ |
12538 | if (current_config->name != pipe_config->name) { \ | |
cfb23ed6 | 12539 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ |
08a24034 DV |
12540 | "(expected %i, found %i)\n", \ |
12541 | current_config->name, \ | |
12542 | pipe_config->name); \ | |
cfb23ed6 ML |
12543 | ret = false; \ |
12544 | } | |
12545 | ||
8106ddbd ACO |
12546 | #define PIPE_CONF_CHECK_P(name) \ |
12547 | if (current_config->name != pipe_config->name) { \ | |
12548 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ | |
12549 | "(expected %p, found %p)\n", \ | |
12550 | current_config->name, \ | |
12551 | pipe_config->name); \ | |
12552 | ret = false; \ | |
12553 | } | |
12554 | ||
cfb23ed6 ML |
12555 | #define PIPE_CONF_CHECK_M_N(name) \ |
12556 | if (!intel_compare_link_m_n(¤t_config->name, \ | |
12557 | &pipe_config->name,\ | |
12558 | adjust)) { \ | |
12559 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ | |
12560 | "(expected tu %i gmch %i/%i link %i/%i, " \ | |
12561 | "found tu %i, gmch %i/%i link %i/%i)\n", \ | |
12562 | current_config->name.tu, \ | |
12563 | current_config->name.gmch_m, \ | |
12564 | current_config->name.gmch_n, \ | |
12565 | current_config->name.link_m, \ | |
12566 | current_config->name.link_n, \ | |
12567 | pipe_config->name.tu, \ | |
12568 | pipe_config->name.gmch_m, \ | |
12569 | pipe_config->name.gmch_n, \ | |
12570 | pipe_config->name.link_m, \ | |
12571 | pipe_config->name.link_n); \ | |
12572 | ret = false; \ | |
12573 | } | |
12574 | ||
55c561a7 DV |
12575 | /* This is required for BDW+ where there is only one set of registers for |
12576 | * switching between high and low RR. | |
12577 | * This macro can be used whenever a comparison has to be made between one | |
12578 | * hw state and multiple sw state variables. | |
12579 | */ | |
cfb23ed6 ML |
12580 | #define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \ |
12581 | if (!intel_compare_link_m_n(¤t_config->name, \ | |
12582 | &pipe_config->name, adjust) && \ | |
12583 | !intel_compare_link_m_n(¤t_config->alt_name, \ | |
12584 | &pipe_config->name, adjust)) { \ | |
12585 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ | |
12586 | "(expected tu %i gmch %i/%i link %i/%i, " \ | |
12587 | "or tu %i gmch %i/%i link %i/%i, " \ | |
12588 | "found tu %i, gmch %i/%i link %i/%i)\n", \ | |
12589 | current_config->name.tu, \ | |
12590 | current_config->name.gmch_m, \ | |
12591 | current_config->name.gmch_n, \ | |
12592 | current_config->name.link_m, \ | |
12593 | current_config->name.link_n, \ | |
12594 | current_config->alt_name.tu, \ | |
12595 | current_config->alt_name.gmch_m, \ | |
12596 | current_config->alt_name.gmch_n, \ | |
12597 | current_config->alt_name.link_m, \ | |
12598 | current_config->alt_name.link_n, \ | |
12599 | pipe_config->name.tu, \ | |
12600 | pipe_config->name.gmch_m, \ | |
12601 | pipe_config->name.gmch_n, \ | |
12602 | pipe_config->name.link_m, \ | |
12603 | pipe_config->name.link_n); \ | |
12604 | ret = false; \ | |
88adfff1 DV |
12605 | } |
12606 | ||
1bd1bd80 DV |
12607 | #define PIPE_CONF_CHECK_FLAGS(name, mask) \ |
12608 | if ((current_config->name ^ pipe_config->name) & (mask)) { \ | |
cfb23ed6 | 12609 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \ |
1bd1bd80 DV |
12610 | "(expected %i, found %i)\n", \ |
12611 | current_config->name & (mask), \ | |
12612 | pipe_config->name & (mask)); \ | |
cfb23ed6 | 12613 | ret = false; \ |
1bd1bd80 DV |
12614 | } |
12615 | ||
5e550656 VS |
12616 | #define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \ |
12617 | if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \ | |
cfb23ed6 | 12618 | INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \ |
5e550656 VS |
12619 | "(expected %i, found %i)\n", \ |
12620 | current_config->name, \ | |
12621 | pipe_config->name); \ | |
cfb23ed6 | 12622 | ret = false; \ |
5e550656 VS |
12623 | } |
12624 | ||
bb760063 DV |
12625 | #define PIPE_CONF_QUIRK(quirk) \ |
12626 | ((current_config->quirks | pipe_config->quirks) & (quirk)) | |
12627 | ||
eccb140b DV |
12628 | PIPE_CONF_CHECK_I(cpu_transcoder); |
12629 | ||
08a24034 DV |
12630 | PIPE_CONF_CHECK_I(has_pch_encoder); |
12631 | PIPE_CONF_CHECK_I(fdi_lanes); | |
cfb23ed6 | 12632 | PIPE_CONF_CHECK_M_N(fdi_m_n); |
08a24034 | 12633 | |
eb14cb74 | 12634 | PIPE_CONF_CHECK_I(has_dp_encoder); |
90a6b7b0 | 12635 | PIPE_CONF_CHECK_I(lane_count); |
b95af8be VK |
12636 | |
12637 | if (INTEL_INFO(dev)->gen < 8) { | |
cfb23ed6 ML |
12638 | PIPE_CONF_CHECK_M_N(dp_m_n); |
12639 | ||
cfb23ed6 ML |
12640 | if (current_config->has_drrs) |
12641 | PIPE_CONF_CHECK_M_N(dp_m2_n2); | |
12642 | } else | |
12643 | PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2); | |
eb14cb74 | 12644 | |
a65347ba JN |
12645 | PIPE_CONF_CHECK_I(has_dsi_encoder); |
12646 | ||
2d112de7 ACO |
12647 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay); |
12648 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal); | |
12649 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start); | |
12650 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end); | |
12651 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start); | |
12652 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end); | |
1bd1bd80 | 12653 | |
2d112de7 ACO |
12654 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay); |
12655 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal); | |
12656 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start); | |
12657 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end); | |
12658 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start); | |
12659 | PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end); | |
1bd1bd80 | 12660 | |
c93f54cf | 12661 | PIPE_CONF_CHECK_I(pixel_multiplier); |
6897b4b5 | 12662 | PIPE_CONF_CHECK_I(has_hdmi_sink); |
b5a9fa09 | 12663 | if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) || |
666a4537 | 12664 | IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) |
b5a9fa09 | 12665 | PIPE_CONF_CHECK_I(limited_color_range); |
e43823ec | 12666 | PIPE_CONF_CHECK_I(has_infoframe); |
6c49f241 | 12667 | |
9ed109a7 DV |
12668 | PIPE_CONF_CHECK_I(has_audio); |
12669 | ||
2d112de7 | 12670 | PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags, |
1bd1bd80 DV |
12671 | DRM_MODE_FLAG_INTERLACE); |
12672 | ||
bb760063 | 12673 | if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) { |
2d112de7 | 12674 | PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags, |
bb760063 | 12675 | DRM_MODE_FLAG_PHSYNC); |
2d112de7 | 12676 | PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags, |
bb760063 | 12677 | DRM_MODE_FLAG_NHSYNC); |
2d112de7 | 12678 | PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags, |
bb760063 | 12679 | DRM_MODE_FLAG_PVSYNC); |
2d112de7 | 12680 | PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags, |
bb760063 DV |
12681 | DRM_MODE_FLAG_NVSYNC); |
12682 | } | |
045ac3b5 | 12683 | |
333b8ca8 | 12684 | PIPE_CONF_CHECK_X(gmch_pfit.control); |
e2ff2d4a DV |
12685 | /* pfit ratios are autocomputed by the hw on gen4+ */ |
12686 | if (INTEL_INFO(dev)->gen < 4) | |
12687 | PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios); | |
333b8ca8 | 12688 | PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits); |
9953599b | 12689 | |
bfd16b2a ML |
12690 | if (!adjust) { |
12691 | PIPE_CONF_CHECK_I(pipe_src_w); | |
12692 | PIPE_CONF_CHECK_I(pipe_src_h); | |
12693 | ||
12694 | PIPE_CONF_CHECK_I(pch_pfit.enabled); | |
12695 | if (current_config->pch_pfit.enabled) { | |
12696 | PIPE_CONF_CHECK_X(pch_pfit.pos); | |
12697 | PIPE_CONF_CHECK_X(pch_pfit.size); | |
12698 | } | |
2fa2fe9a | 12699 | |
7aefe2b5 ML |
12700 | PIPE_CONF_CHECK_I(scaler_state.scaler_id); |
12701 | } | |
a1b2278e | 12702 | |
e59150dc JB |
12703 | /* BDW+ don't expose a synchronous way to read the state */ |
12704 | if (IS_HASWELL(dev)) | |
12705 | PIPE_CONF_CHECK_I(ips_enabled); | |
42db64ef | 12706 | |
282740f7 VS |
12707 | PIPE_CONF_CHECK_I(double_wide); |
12708 | ||
26804afd DV |
12709 | PIPE_CONF_CHECK_X(ddi_pll_sel); |
12710 | ||
8106ddbd | 12711 | PIPE_CONF_CHECK_P(shared_dpll); |
66e985c0 | 12712 | PIPE_CONF_CHECK_X(dpll_hw_state.dpll); |
8bcc2795 | 12713 | PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md); |
66e985c0 DV |
12714 | PIPE_CONF_CHECK_X(dpll_hw_state.fp0); |
12715 | PIPE_CONF_CHECK_X(dpll_hw_state.fp1); | |
d452c5b6 | 12716 | PIPE_CONF_CHECK_X(dpll_hw_state.wrpll); |
00490c22 | 12717 | PIPE_CONF_CHECK_X(dpll_hw_state.spll); |
3f4cd19f DL |
12718 | PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1); |
12719 | PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1); | |
12720 | PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2); | |
c0d43d62 | 12721 | |
42571aef VS |
12722 | if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) |
12723 | PIPE_CONF_CHECK_I(pipe_bpp); | |
12724 | ||
2d112de7 | 12725 | PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock); |
a9a7e98a | 12726 | PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock); |
5e550656 | 12727 | |
66e985c0 | 12728 | #undef PIPE_CONF_CHECK_X |
08a24034 | 12729 | #undef PIPE_CONF_CHECK_I |
8106ddbd | 12730 | #undef PIPE_CONF_CHECK_P |
1bd1bd80 | 12731 | #undef PIPE_CONF_CHECK_FLAGS |
5e550656 | 12732 | #undef PIPE_CONF_CHECK_CLOCK_FUZZY |
bb760063 | 12733 | #undef PIPE_CONF_QUIRK |
cfb23ed6 | 12734 | #undef INTEL_ERR_OR_DBG_KMS |
88adfff1 | 12735 | |
cfb23ed6 | 12736 | return ret; |
0e8ffe1b DV |
12737 | } |
12738 | ||
e3b247da VS |
12739 | static void intel_pipe_config_sanity_check(struct drm_i915_private *dev_priv, |
12740 | const struct intel_crtc_state *pipe_config) | |
12741 | { | |
12742 | if (pipe_config->has_pch_encoder) { | |
21a727b3 | 12743 | int fdi_dotclock = intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config), |
e3b247da VS |
12744 | &pipe_config->fdi_m_n); |
12745 | int dotclock = pipe_config->base.adjusted_mode.crtc_clock; | |
12746 | ||
12747 | /* | |
12748 | * FDI already provided one idea for the dotclock. | |
12749 | * Yell if the encoder disagrees. | |
12750 | */ | |
12751 | WARN(!intel_fuzzy_clock_check(fdi_dotclock, dotclock), | |
12752 | "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n", | |
12753 | fdi_dotclock, dotclock); | |
12754 | } | |
12755 | } | |
12756 | ||
08db6652 DL |
12757 | static void check_wm_state(struct drm_device *dev) |
12758 | { | |
12759 | struct drm_i915_private *dev_priv = dev->dev_private; | |
12760 | struct skl_ddb_allocation hw_ddb, *sw_ddb; | |
12761 | struct intel_crtc *intel_crtc; | |
12762 | int plane; | |
12763 | ||
12764 | if (INTEL_INFO(dev)->gen < 9) | |
12765 | return; | |
12766 | ||
12767 | skl_ddb_get_hw_state(dev_priv, &hw_ddb); | |
12768 | sw_ddb = &dev_priv->wm.skl_hw.ddb; | |
12769 | ||
12770 | for_each_intel_crtc(dev, intel_crtc) { | |
12771 | struct skl_ddb_entry *hw_entry, *sw_entry; | |
12772 | const enum pipe pipe = intel_crtc->pipe; | |
12773 | ||
12774 | if (!intel_crtc->active) | |
12775 | continue; | |
12776 | ||
12777 | /* planes */ | |
dd740780 | 12778 | for_each_plane(dev_priv, pipe, plane) { |
08db6652 DL |
12779 | hw_entry = &hw_ddb.plane[pipe][plane]; |
12780 | sw_entry = &sw_ddb->plane[pipe][plane]; | |
12781 | ||
12782 | if (skl_ddb_entry_equal(hw_entry, sw_entry)) | |
12783 | continue; | |
12784 | ||
12785 | DRM_ERROR("mismatch in DDB state pipe %c plane %d " | |
12786 | "(expected (%u,%u), found (%u,%u))\n", | |
12787 | pipe_name(pipe), plane + 1, | |
12788 | sw_entry->start, sw_entry->end, | |
12789 | hw_entry->start, hw_entry->end); | |
12790 | } | |
12791 | ||
12792 | /* cursor */ | |
4969d33e MR |
12793 | hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR]; |
12794 | sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR]; | |
08db6652 DL |
12795 | |
12796 | if (skl_ddb_entry_equal(hw_entry, sw_entry)) | |
12797 | continue; | |
12798 | ||
12799 | DRM_ERROR("mismatch in DDB state pipe %c cursor " | |
12800 | "(expected (%u,%u), found (%u,%u))\n", | |
12801 | pipe_name(pipe), | |
12802 | sw_entry->start, sw_entry->end, | |
12803 | hw_entry->start, hw_entry->end); | |
12804 | } | |
12805 | } | |
12806 | ||
91d1b4bd | 12807 | static void |
35dd3c64 ML |
12808 | check_connector_state(struct drm_device *dev, |
12809 | struct drm_atomic_state *old_state) | |
8af6cf88 | 12810 | { |
35dd3c64 ML |
12811 | struct drm_connector_state *old_conn_state; |
12812 | struct drm_connector *connector; | |
12813 | int i; | |
8af6cf88 | 12814 | |
35dd3c64 ML |
12815 | for_each_connector_in_state(old_state, connector, old_conn_state, i) { |
12816 | struct drm_encoder *encoder = connector->encoder; | |
12817 | struct drm_connector_state *state = connector->state; | |
ad3c558f | 12818 | |
8af6cf88 DV |
12819 | /* This also checks the encoder/connector hw state with the |
12820 | * ->get_hw_state callbacks. */ | |
35dd3c64 | 12821 | intel_connector_check_state(to_intel_connector(connector)); |
8af6cf88 | 12822 | |
ad3c558f | 12823 | I915_STATE_WARN(state->best_encoder != encoder, |
35dd3c64 | 12824 | "connector's atomic encoder doesn't match legacy encoder\n"); |
8af6cf88 | 12825 | } |
91d1b4bd DV |
12826 | } |
12827 | ||
12828 | static void | |
12829 | check_encoder_state(struct drm_device *dev) | |
12830 | { | |
12831 | struct intel_encoder *encoder; | |
12832 | struct intel_connector *connector; | |
8af6cf88 | 12833 | |
b2784e15 | 12834 | for_each_intel_encoder(dev, encoder) { |
8af6cf88 | 12835 | bool enabled = false; |
4d20cd86 | 12836 | enum pipe pipe; |
8af6cf88 DV |
12837 | |
12838 | DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", | |
12839 | encoder->base.base.id, | |
8e329a03 | 12840 | encoder->base.name); |
8af6cf88 | 12841 | |
3a3371ff | 12842 | for_each_intel_connector(dev, connector) { |
4d20cd86 | 12843 | if (connector->base.state->best_encoder != &encoder->base) |
8af6cf88 DV |
12844 | continue; |
12845 | enabled = true; | |
ad3c558f ML |
12846 | |
12847 | I915_STATE_WARN(connector->base.state->crtc != | |
12848 | encoder->base.crtc, | |
12849 | "connector's crtc doesn't match encoder crtc\n"); | |
8af6cf88 | 12850 | } |
0e32b39c | 12851 | |
e2c719b7 | 12852 | I915_STATE_WARN(!!encoder->base.crtc != enabled, |
8af6cf88 DV |
12853 | "encoder's enabled state mismatch " |
12854 | "(expected %i, found %i)\n", | |
12855 | !!encoder->base.crtc, enabled); | |
7c60d198 ML |
12856 | |
12857 | if (!encoder->base.crtc) { | |
4d20cd86 | 12858 | bool active; |
7c60d198 | 12859 | |
4d20cd86 ML |
12860 | active = encoder->get_hw_state(encoder, &pipe); |
12861 | I915_STATE_WARN(active, | |
12862 | "encoder detached but still enabled on pipe %c.\n", | |
12863 | pipe_name(pipe)); | |
7c60d198 | 12864 | } |
8af6cf88 | 12865 | } |
91d1b4bd DV |
12866 | } |
12867 | ||
12868 | static void | |
4d20cd86 | 12869 | check_crtc_state(struct drm_device *dev, struct drm_atomic_state *old_state) |
91d1b4bd | 12870 | { |
fbee40df | 12871 | struct drm_i915_private *dev_priv = dev->dev_private; |
91d1b4bd | 12872 | struct intel_encoder *encoder; |
4d20cd86 ML |
12873 | struct drm_crtc_state *old_crtc_state; |
12874 | struct drm_crtc *crtc; | |
12875 | int i; | |
8af6cf88 | 12876 | |
4d20cd86 ML |
12877 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
12878 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
12879 | struct intel_crtc_state *pipe_config, *sw_config; | |
7b89b8de | 12880 | bool active; |
8af6cf88 | 12881 | |
bfd16b2a ML |
12882 | if (!needs_modeset(crtc->state) && |
12883 | !to_intel_crtc_state(crtc->state)->update_pipe) | |
4d20cd86 | 12884 | continue; |
045ac3b5 | 12885 | |
4d20cd86 ML |
12886 | __drm_atomic_helper_crtc_destroy_state(crtc, old_crtc_state); |
12887 | pipe_config = to_intel_crtc_state(old_crtc_state); | |
12888 | memset(pipe_config, 0, sizeof(*pipe_config)); | |
12889 | pipe_config->base.crtc = crtc; | |
12890 | pipe_config->base.state = old_state; | |
8af6cf88 | 12891 | |
4d20cd86 ML |
12892 | DRM_DEBUG_KMS("[CRTC:%d]\n", |
12893 | crtc->base.id); | |
8af6cf88 | 12894 | |
4d20cd86 ML |
12895 | active = dev_priv->display.get_pipe_config(intel_crtc, |
12896 | pipe_config); | |
d62cf62a | 12897 | |
b6b5d049 | 12898 | /* hw state is inconsistent with the pipe quirk */ |
4d20cd86 ML |
12899 | if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) || |
12900 | (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)) | |
12901 | active = crtc->state->active; | |
6c49f241 | 12902 | |
4d20cd86 | 12903 | I915_STATE_WARN(crtc->state->active != active, |
0e8ffe1b | 12904 | "crtc active state doesn't match with hw state " |
4d20cd86 | 12905 | "(expected %i, found %i)\n", crtc->state->active, active); |
0e8ffe1b | 12906 | |
4d20cd86 | 12907 | I915_STATE_WARN(intel_crtc->active != crtc->state->active, |
53d9f4e9 | 12908 | "transitional active state does not match atomic hw state " |
4d20cd86 ML |
12909 | "(expected %i, found %i)\n", crtc->state->active, intel_crtc->active); |
12910 | ||
12911 | for_each_encoder_on_crtc(dev, crtc, encoder) { | |
12912 | enum pipe pipe; | |
12913 | ||
12914 | active = encoder->get_hw_state(encoder, &pipe); | |
12915 | I915_STATE_WARN(active != crtc->state->active, | |
12916 | "[ENCODER:%i] active %i with crtc active %i\n", | |
12917 | encoder->base.base.id, active, crtc->state->active); | |
12918 | ||
12919 | I915_STATE_WARN(active && intel_crtc->pipe != pipe, | |
12920 | "Encoder connected to wrong pipe %c\n", | |
12921 | pipe_name(pipe)); | |
12922 | ||
12923 | if (active) | |
12924 | encoder->get_config(encoder, pipe_config); | |
12925 | } | |
53d9f4e9 | 12926 | |
4d20cd86 | 12927 | if (!crtc->state->active) |
cfb23ed6 ML |
12928 | continue; |
12929 | ||
e3b247da VS |
12930 | intel_pipe_config_sanity_check(dev_priv, pipe_config); |
12931 | ||
4d20cd86 ML |
12932 | sw_config = to_intel_crtc_state(crtc->state); |
12933 | if (!intel_pipe_config_compare(dev, sw_config, | |
12934 | pipe_config, false)) { | |
e2c719b7 | 12935 | I915_STATE_WARN(1, "pipe state doesn't match!\n"); |
4d20cd86 | 12936 | intel_dump_pipe_config(intel_crtc, pipe_config, |
c0b03411 | 12937 | "[hw state]"); |
4d20cd86 | 12938 | intel_dump_pipe_config(intel_crtc, sw_config, |
c0b03411 DV |
12939 | "[sw state]"); |
12940 | } | |
8af6cf88 DV |
12941 | } |
12942 | } | |
12943 | ||
91d1b4bd DV |
12944 | static void |
12945 | check_shared_dpll_state(struct drm_device *dev) | |
12946 | { | |
fbee40df | 12947 | struct drm_i915_private *dev_priv = dev->dev_private; |
91d1b4bd DV |
12948 | struct intel_crtc *crtc; |
12949 | struct intel_dpll_hw_state dpll_hw_state; | |
12950 | int i; | |
5358901f DV |
12951 | |
12952 | for (i = 0; i < dev_priv->num_shared_dpll; i++) { | |
8106ddbd ACO |
12953 | struct intel_shared_dpll *pll = |
12954 | intel_get_shared_dpll_by_id(dev_priv, i); | |
2dd66ebd | 12955 | unsigned enabled_crtcs = 0, active_crtcs = 0; |
5358901f DV |
12956 | bool active; |
12957 | ||
12958 | memset(&dpll_hw_state, 0, sizeof(dpll_hw_state)); | |
12959 | ||
12960 | DRM_DEBUG_KMS("%s\n", pll->name); | |
12961 | ||
2edd6443 | 12962 | active = pll->funcs.get_hw_state(dev_priv, pll, &dpll_hw_state); |
5358901f | 12963 | |
2dd66ebd ML |
12964 | I915_STATE_WARN(pll->active_mask & ~pll->config.crtc_mask, |
12965 | "more active pll users than references: %x vs %x\n", | |
12966 | pll->active_mask, pll->config.crtc_mask); | |
9d16da65 ACO |
12967 | |
12968 | if (!(pll->flags & INTEL_DPLL_ALWAYS_ON)) { | |
2dd66ebd ML |
12969 | I915_STATE_WARN(!pll->on && pll->active_mask, |
12970 | "pll in active use but not on in sw tracking\n"); | |
12971 | I915_STATE_WARN(pll->on && !pll->active_mask, | |
12972 | "pll is on but not used by any active crtc\n"); | |
9d16da65 ACO |
12973 | I915_STATE_WARN(pll->on != active, |
12974 | "pll on state mismatch (expected %i, found %i)\n", | |
12975 | pll->on, active); | |
12976 | } | |
5358901f | 12977 | |
d3fcc808 | 12978 | for_each_intel_crtc(dev, crtc) { |
8106ddbd | 12979 | if (crtc->base.state->enable && crtc->config->shared_dpll == pll) |
2dd66ebd ML |
12980 | enabled_crtcs |= 1 << drm_crtc_index(&crtc->base); |
12981 | if (crtc->base.state->active && crtc->config->shared_dpll == pll) | |
12982 | active_crtcs |= 1 << drm_crtc_index(&crtc->base); | |
5358901f | 12983 | } |
2dd66ebd ML |
12984 | |
12985 | I915_STATE_WARN(pll->active_mask != active_crtcs, | |
12986 | "pll active crtcs mismatch (expected %x, found %x)\n", | |
12987 | pll->active_mask, active_crtcs); | |
12988 | I915_STATE_WARN(pll->config.crtc_mask != enabled_crtcs, | |
12989 | "pll enabled crtcs mismatch (expected %x, found %x)\n", | |
12990 | pll->config.crtc_mask, enabled_crtcs); | |
66e985c0 | 12991 | |
e2c719b7 | 12992 | I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state, |
66e985c0 DV |
12993 | sizeof(dpll_hw_state)), |
12994 | "pll hw state mismatch\n"); | |
5358901f | 12995 | } |
8af6cf88 DV |
12996 | } |
12997 | ||
ee165b1a ML |
12998 | static void |
12999 | intel_modeset_check_state(struct drm_device *dev, | |
13000 | struct drm_atomic_state *old_state) | |
91d1b4bd | 13001 | { |
08db6652 | 13002 | check_wm_state(dev); |
35dd3c64 | 13003 | check_connector_state(dev, old_state); |
91d1b4bd | 13004 | check_encoder_state(dev); |
4d20cd86 | 13005 | check_crtc_state(dev, old_state); |
91d1b4bd DV |
13006 | check_shared_dpll_state(dev); |
13007 | } | |
13008 | ||
80715b2f VS |
13009 | static void update_scanline_offset(struct intel_crtc *crtc) |
13010 | { | |
13011 | struct drm_device *dev = crtc->base.dev; | |
13012 | ||
13013 | /* | |
13014 | * The scanline counter increments at the leading edge of hsync. | |
13015 | * | |
13016 | * On most platforms it starts counting from vtotal-1 on the | |
13017 | * first active line. That means the scanline counter value is | |
13018 | * always one less than what we would expect. Ie. just after | |
13019 | * start of vblank, which also occurs at start of hsync (on the | |
13020 | * last active line), the scanline counter will read vblank_start-1. | |
13021 | * | |
13022 | * On gen2 the scanline counter starts counting from 1 instead | |
13023 | * of vtotal-1, so we have to subtract one (or rather add vtotal-1 | |
13024 | * to keep the value positive), instead of adding one. | |
13025 | * | |
13026 | * On HSW+ the behaviour of the scanline counter depends on the output | |
13027 | * type. For DP ports it behaves like most other platforms, but on HDMI | |
13028 | * there's an extra 1 line difference. So we need to add two instead of | |
13029 | * one to the value. | |
13030 | */ | |
13031 | if (IS_GEN2(dev)) { | |
124abe07 | 13032 | const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode; |
80715b2f VS |
13033 | int vtotal; |
13034 | ||
124abe07 VS |
13035 | vtotal = adjusted_mode->crtc_vtotal; |
13036 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) | |
80715b2f VS |
13037 | vtotal /= 2; |
13038 | ||
13039 | crtc->scanline_offset = vtotal - 1; | |
13040 | } else if (HAS_DDI(dev) && | |
409ee761 | 13041 | intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) { |
80715b2f VS |
13042 | crtc->scanline_offset = 2; |
13043 | } else | |
13044 | crtc->scanline_offset = 1; | |
13045 | } | |
13046 | ||
ad421372 | 13047 | static void intel_modeset_clear_plls(struct drm_atomic_state *state) |
ed6739ef | 13048 | { |
225da59b | 13049 | struct drm_device *dev = state->dev; |
ed6739ef | 13050 | struct drm_i915_private *dev_priv = to_i915(dev); |
ad421372 | 13051 | struct intel_shared_dpll_config *shared_dpll = NULL; |
0a9ab303 ACO |
13052 | struct drm_crtc *crtc; |
13053 | struct drm_crtc_state *crtc_state; | |
0a9ab303 | 13054 | int i; |
ed6739ef ACO |
13055 | |
13056 | if (!dev_priv->display.crtc_compute_clock) | |
ad421372 | 13057 | return; |
ed6739ef | 13058 | |
0a9ab303 | 13059 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
fb1a38a9 | 13060 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
8106ddbd ACO |
13061 | struct intel_shared_dpll *old_dpll = |
13062 | to_intel_crtc_state(crtc->state)->shared_dpll; | |
0a9ab303 | 13063 | |
fb1a38a9 | 13064 | if (!needs_modeset(crtc_state)) |
225da59b ACO |
13065 | continue; |
13066 | ||
8106ddbd | 13067 | to_intel_crtc_state(crtc_state)->shared_dpll = NULL; |
fb1a38a9 | 13068 | |
8106ddbd | 13069 | if (!old_dpll) |
fb1a38a9 | 13070 | continue; |
0a9ab303 | 13071 | |
ad421372 ML |
13072 | if (!shared_dpll) |
13073 | shared_dpll = intel_atomic_get_shared_dpll_state(state); | |
ed6739ef | 13074 | |
8106ddbd | 13075 | intel_shared_dpll_config_put(shared_dpll, old_dpll, intel_crtc); |
ad421372 | 13076 | } |
ed6739ef ACO |
13077 | } |
13078 | ||
99d736a2 ML |
13079 | /* |
13080 | * This implements the workaround described in the "notes" section of the mode | |
13081 | * set sequence documentation. When going from no pipes or single pipe to | |
13082 | * multiple pipes, and planes are enabled after the pipe, we need to wait at | |
13083 | * least 2 vblanks on the first pipe before enabling planes on the second pipe. | |
13084 | */ | |
13085 | static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state) | |
13086 | { | |
13087 | struct drm_crtc_state *crtc_state; | |
13088 | struct intel_crtc *intel_crtc; | |
13089 | struct drm_crtc *crtc; | |
13090 | struct intel_crtc_state *first_crtc_state = NULL; | |
13091 | struct intel_crtc_state *other_crtc_state = NULL; | |
13092 | enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE; | |
13093 | int i; | |
13094 | ||
13095 | /* look at all crtc's that are going to be enabled in during modeset */ | |
13096 | for_each_crtc_in_state(state, crtc, crtc_state, i) { | |
13097 | intel_crtc = to_intel_crtc(crtc); | |
13098 | ||
13099 | if (!crtc_state->active || !needs_modeset(crtc_state)) | |
13100 | continue; | |
13101 | ||
13102 | if (first_crtc_state) { | |
13103 | other_crtc_state = to_intel_crtc_state(crtc_state); | |
13104 | break; | |
13105 | } else { | |
13106 | first_crtc_state = to_intel_crtc_state(crtc_state); | |
13107 | first_pipe = intel_crtc->pipe; | |
13108 | } | |
13109 | } | |
13110 | ||
13111 | /* No workaround needed? */ | |
13112 | if (!first_crtc_state) | |
13113 | return 0; | |
13114 | ||
13115 | /* w/a possibly needed, check how many crtc's are already enabled. */ | |
13116 | for_each_intel_crtc(state->dev, intel_crtc) { | |
13117 | struct intel_crtc_state *pipe_config; | |
13118 | ||
13119 | pipe_config = intel_atomic_get_crtc_state(state, intel_crtc); | |
13120 | if (IS_ERR(pipe_config)) | |
13121 | return PTR_ERR(pipe_config); | |
13122 | ||
13123 | pipe_config->hsw_workaround_pipe = INVALID_PIPE; | |
13124 | ||
13125 | if (!pipe_config->base.active || | |
13126 | needs_modeset(&pipe_config->base)) | |
13127 | continue; | |
13128 | ||
13129 | /* 2 or more enabled crtcs means no need for w/a */ | |
13130 | if (enabled_pipe != INVALID_PIPE) | |
13131 | return 0; | |
13132 | ||
13133 | enabled_pipe = intel_crtc->pipe; | |
13134 | } | |
13135 | ||
13136 | if (enabled_pipe != INVALID_PIPE) | |
13137 | first_crtc_state->hsw_workaround_pipe = enabled_pipe; | |
13138 | else if (other_crtc_state) | |
13139 | other_crtc_state->hsw_workaround_pipe = first_pipe; | |
13140 | ||
13141 | return 0; | |
13142 | } | |
13143 | ||
27c329ed ML |
13144 | static int intel_modeset_all_pipes(struct drm_atomic_state *state) |
13145 | { | |
13146 | struct drm_crtc *crtc; | |
13147 | struct drm_crtc_state *crtc_state; | |
13148 | int ret = 0; | |
13149 | ||
13150 | /* add all active pipes to the state */ | |
13151 | for_each_crtc(state->dev, crtc) { | |
13152 | crtc_state = drm_atomic_get_crtc_state(state, crtc); | |
13153 | if (IS_ERR(crtc_state)) | |
13154 | return PTR_ERR(crtc_state); | |
13155 | ||
13156 | if (!crtc_state->active || needs_modeset(crtc_state)) | |
13157 | continue; | |
13158 | ||
13159 | crtc_state->mode_changed = true; | |
13160 | ||
13161 | ret = drm_atomic_add_affected_connectors(state, crtc); | |
13162 | if (ret) | |
13163 | break; | |
13164 | ||
13165 | ret = drm_atomic_add_affected_planes(state, crtc); | |
13166 | if (ret) | |
13167 | break; | |
13168 | } | |
13169 | ||
13170 | return ret; | |
13171 | } | |
13172 | ||
c347a676 | 13173 | static int intel_modeset_checks(struct drm_atomic_state *state) |
054518dd | 13174 | { |
565602d7 ML |
13175 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
13176 | struct drm_i915_private *dev_priv = state->dev->dev_private; | |
13177 | struct drm_crtc *crtc; | |
13178 | struct drm_crtc_state *crtc_state; | |
13179 | int ret = 0, i; | |
054518dd | 13180 | |
b359283a ML |
13181 | if (!check_digital_port_conflicts(state)) { |
13182 | DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n"); | |
13183 | return -EINVAL; | |
13184 | } | |
13185 | ||
565602d7 ML |
13186 | intel_state->modeset = true; |
13187 | intel_state->active_crtcs = dev_priv->active_crtcs; | |
13188 | ||
13189 | for_each_crtc_in_state(state, crtc, crtc_state, i) { | |
13190 | if (crtc_state->active) | |
13191 | intel_state->active_crtcs |= 1 << i; | |
13192 | else | |
13193 | intel_state->active_crtcs &= ~(1 << i); | |
13194 | } | |
13195 | ||
054518dd ACO |
13196 | /* |
13197 | * See if the config requires any additional preparation, e.g. | |
13198 | * to adjust global state with pipes off. We need to do this | |
13199 | * here so we can get the modeset_pipe updated config for the new | |
13200 | * mode set on this crtc. For other crtcs we need to use the | |
13201 | * adjusted_mode bits in the crtc directly. | |
13202 | */ | |
27c329ed | 13203 | if (dev_priv->display.modeset_calc_cdclk) { |
27c329ed ML |
13204 | ret = dev_priv->display.modeset_calc_cdclk(state); |
13205 | ||
1a617b77 | 13206 | if (!ret && intel_state->dev_cdclk != dev_priv->cdclk_freq) |
27c329ed ML |
13207 | ret = intel_modeset_all_pipes(state); |
13208 | ||
13209 | if (ret < 0) | |
054518dd | 13210 | return ret; |
e8788cbc ML |
13211 | |
13212 | DRM_DEBUG_KMS("New cdclk calculated to be atomic %u, actual %u\n", | |
13213 | intel_state->cdclk, intel_state->dev_cdclk); | |
27c329ed | 13214 | } else |
1a617b77 | 13215 | to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq; |
054518dd | 13216 | |
ad421372 | 13217 | intel_modeset_clear_plls(state); |
054518dd | 13218 | |
565602d7 | 13219 | if (IS_HASWELL(dev_priv)) |
ad421372 | 13220 | return haswell_mode_set_planes_workaround(state); |
99d736a2 | 13221 | |
ad421372 | 13222 | return 0; |
c347a676 ACO |
13223 | } |
13224 | ||
aa363136 MR |
13225 | /* |
13226 | * Handle calculation of various watermark data at the end of the atomic check | |
13227 | * phase. The code here should be run after the per-crtc and per-plane 'check' | |
13228 | * handlers to ensure that all derived state has been updated. | |
13229 | */ | |
13230 | static void calc_watermark_data(struct drm_atomic_state *state) | |
13231 | { | |
13232 | struct drm_device *dev = state->dev; | |
13233 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); | |
13234 | struct drm_crtc *crtc; | |
13235 | struct drm_crtc_state *cstate; | |
13236 | struct drm_plane *plane; | |
13237 | struct drm_plane_state *pstate; | |
13238 | ||
13239 | /* | |
13240 | * Calculate watermark configuration details now that derived | |
13241 | * plane/crtc state is all properly updated. | |
13242 | */ | |
13243 | drm_for_each_crtc(crtc, dev) { | |
13244 | cstate = drm_atomic_get_existing_crtc_state(state, crtc) ?: | |
13245 | crtc->state; | |
13246 | ||
13247 | if (cstate->active) | |
13248 | intel_state->wm_config.num_pipes_active++; | |
13249 | } | |
13250 | drm_for_each_legacy_plane(plane, dev) { | |
13251 | pstate = drm_atomic_get_existing_plane_state(state, plane) ?: | |
13252 | plane->state; | |
13253 | ||
13254 | if (!to_intel_plane_state(pstate)->visible) | |
13255 | continue; | |
13256 | ||
13257 | intel_state->wm_config.sprites_enabled = true; | |
13258 | if (pstate->crtc_w != pstate->src_w >> 16 || | |
13259 | pstate->crtc_h != pstate->src_h >> 16) | |
13260 | intel_state->wm_config.sprites_scaled = true; | |
13261 | } | |
13262 | } | |
13263 | ||
74c090b1 ML |
13264 | /** |
13265 | * intel_atomic_check - validate state object | |
13266 | * @dev: drm device | |
13267 | * @state: state to validate | |
13268 | */ | |
13269 | static int intel_atomic_check(struct drm_device *dev, | |
13270 | struct drm_atomic_state *state) | |
c347a676 | 13271 | { |
dd8b3bdb | 13272 | struct drm_i915_private *dev_priv = to_i915(dev); |
aa363136 | 13273 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
c347a676 ACO |
13274 | struct drm_crtc *crtc; |
13275 | struct drm_crtc_state *crtc_state; | |
13276 | int ret, i; | |
61333b60 | 13277 | bool any_ms = false; |
c347a676 | 13278 | |
74c090b1 | 13279 | ret = drm_atomic_helper_check_modeset(dev, state); |
054518dd ACO |
13280 | if (ret) |
13281 | return ret; | |
13282 | ||
c347a676 | 13283 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
cfb23ed6 ML |
13284 | struct intel_crtc_state *pipe_config = |
13285 | to_intel_crtc_state(crtc_state); | |
1ed51de9 DV |
13286 | |
13287 | /* Catch I915_MODE_FLAG_INHERITED */ | |
13288 | if (crtc_state->mode.private_flags != crtc->state->mode.private_flags) | |
13289 | crtc_state->mode_changed = true; | |
cfb23ed6 | 13290 | |
61333b60 ML |
13291 | if (!crtc_state->enable) { |
13292 | if (needs_modeset(crtc_state)) | |
13293 | any_ms = true; | |
c347a676 | 13294 | continue; |
61333b60 | 13295 | } |
c347a676 | 13296 | |
26495481 | 13297 | if (!needs_modeset(crtc_state)) |
cfb23ed6 ML |
13298 | continue; |
13299 | ||
26495481 DV |
13300 | /* FIXME: For only active_changed we shouldn't need to do any |
13301 | * state recomputation at all. */ | |
13302 | ||
1ed51de9 DV |
13303 | ret = drm_atomic_add_affected_connectors(state, crtc); |
13304 | if (ret) | |
13305 | return ret; | |
b359283a | 13306 | |
cfb23ed6 | 13307 | ret = intel_modeset_pipe_config(crtc, pipe_config); |
c347a676 ACO |
13308 | if (ret) |
13309 | return ret; | |
13310 | ||
73831236 | 13311 | if (i915.fastboot && |
dd8b3bdb | 13312 | intel_pipe_config_compare(dev, |
cfb23ed6 | 13313 | to_intel_crtc_state(crtc->state), |
1ed51de9 | 13314 | pipe_config, true)) { |
26495481 | 13315 | crtc_state->mode_changed = false; |
bfd16b2a | 13316 | to_intel_crtc_state(crtc_state)->update_pipe = true; |
26495481 DV |
13317 | } |
13318 | ||
13319 | if (needs_modeset(crtc_state)) { | |
13320 | any_ms = true; | |
cfb23ed6 ML |
13321 | |
13322 | ret = drm_atomic_add_affected_planes(state, crtc); | |
13323 | if (ret) | |
13324 | return ret; | |
13325 | } | |
61333b60 | 13326 | |
26495481 DV |
13327 | intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config, |
13328 | needs_modeset(crtc_state) ? | |
13329 | "[modeset]" : "[fastset]"); | |
c347a676 ACO |
13330 | } |
13331 | ||
61333b60 ML |
13332 | if (any_ms) { |
13333 | ret = intel_modeset_checks(state); | |
13334 | ||
13335 | if (ret) | |
13336 | return ret; | |
27c329ed | 13337 | } else |
dd8b3bdb | 13338 | intel_state->cdclk = dev_priv->cdclk_freq; |
76305b1a | 13339 | |
dd8b3bdb | 13340 | ret = drm_atomic_helper_check_planes(dev, state); |
aa363136 MR |
13341 | if (ret) |
13342 | return ret; | |
13343 | ||
f51be2e0 | 13344 | intel_fbc_choose_crtc(dev_priv, state); |
aa363136 MR |
13345 | calc_watermark_data(state); |
13346 | ||
13347 | return 0; | |
054518dd ACO |
13348 | } |
13349 | ||
5008e874 ML |
13350 | static int intel_atomic_prepare_commit(struct drm_device *dev, |
13351 | struct drm_atomic_state *state, | |
13352 | bool async) | |
13353 | { | |
7580d774 ML |
13354 | struct drm_i915_private *dev_priv = dev->dev_private; |
13355 | struct drm_plane_state *plane_state; | |
5008e874 | 13356 | struct drm_crtc_state *crtc_state; |
7580d774 | 13357 | struct drm_plane *plane; |
5008e874 ML |
13358 | struct drm_crtc *crtc; |
13359 | int i, ret; | |
13360 | ||
13361 | if (async) { | |
13362 | DRM_DEBUG_KMS("i915 does not yet support async commit\n"); | |
13363 | return -EINVAL; | |
13364 | } | |
13365 | ||
13366 | for_each_crtc_in_state(state, crtc, crtc_state, i) { | |
13367 | ret = intel_crtc_wait_for_pending_flips(crtc); | |
13368 | if (ret) | |
13369 | return ret; | |
7580d774 ML |
13370 | |
13371 | if (atomic_read(&to_intel_crtc(crtc)->unpin_work_count) >= 2) | |
13372 | flush_workqueue(dev_priv->wq); | |
5008e874 ML |
13373 | } |
13374 | ||
f935675f ML |
13375 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
13376 | if (ret) | |
13377 | return ret; | |
13378 | ||
5008e874 | 13379 | ret = drm_atomic_helper_prepare_planes(dev, state); |
7580d774 ML |
13380 | if (!ret && !async && !i915_reset_in_progress(&dev_priv->gpu_error)) { |
13381 | u32 reset_counter; | |
13382 | ||
13383 | reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter); | |
13384 | mutex_unlock(&dev->struct_mutex); | |
13385 | ||
13386 | for_each_plane_in_state(state, plane, plane_state, i) { | |
13387 | struct intel_plane_state *intel_plane_state = | |
13388 | to_intel_plane_state(plane_state); | |
13389 | ||
13390 | if (!intel_plane_state->wait_req) | |
13391 | continue; | |
13392 | ||
13393 | ret = __i915_wait_request(intel_plane_state->wait_req, | |
13394 | reset_counter, true, | |
13395 | NULL, NULL); | |
13396 | ||
13397 | /* Swallow -EIO errors to allow updates during hw lockup. */ | |
13398 | if (ret == -EIO) | |
13399 | ret = 0; | |
13400 | ||
13401 | if (ret) | |
13402 | break; | |
13403 | } | |
13404 | ||
13405 | if (!ret) | |
13406 | return 0; | |
13407 | ||
13408 | mutex_lock(&dev->struct_mutex); | |
13409 | drm_atomic_helper_cleanup_planes(dev, state); | |
13410 | } | |
5008e874 | 13411 | |
f935675f | 13412 | mutex_unlock(&dev->struct_mutex); |
5008e874 ML |
13413 | return ret; |
13414 | } | |
13415 | ||
e8861675 ML |
13416 | static void intel_atomic_wait_for_vblanks(struct drm_device *dev, |
13417 | struct drm_i915_private *dev_priv, | |
13418 | unsigned crtc_mask) | |
13419 | { | |
13420 | unsigned last_vblank_count[I915_MAX_PIPES]; | |
13421 | enum pipe pipe; | |
13422 | int ret; | |
13423 | ||
13424 | if (!crtc_mask) | |
13425 | return; | |
13426 | ||
13427 | for_each_pipe(dev_priv, pipe) { | |
13428 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; | |
13429 | ||
13430 | if (!((1 << pipe) & crtc_mask)) | |
13431 | continue; | |
13432 | ||
13433 | ret = drm_crtc_vblank_get(crtc); | |
13434 | if (WARN_ON(ret != 0)) { | |
13435 | crtc_mask &= ~(1 << pipe); | |
13436 | continue; | |
13437 | } | |
13438 | ||
13439 | last_vblank_count[pipe] = drm_crtc_vblank_count(crtc); | |
13440 | } | |
13441 | ||
13442 | for_each_pipe(dev_priv, pipe) { | |
13443 | struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe]; | |
13444 | long lret; | |
13445 | ||
13446 | if (!((1 << pipe) & crtc_mask)) | |
13447 | continue; | |
13448 | ||
13449 | lret = wait_event_timeout(dev->vblank[pipe].queue, | |
13450 | last_vblank_count[pipe] != | |
13451 | drm_crtc_vblank_count(crtc), | |
13452 | msecs_to_jiffies(50)); | |
13453 | ||
13454 | WARN_ON(!lret); | |
13455 | ||
13456 | drm_crtc_vblank_put(crtc); | |
13457 | } | |
13458 | } | |
13459 | ||
13460 | static bool needs_vblank_wait(struct intel_crtc_state *crtc_state) | |
13461 | { | |
13462 | /* fb updated, need to unpin old fb */ | |
13463 | if (crtc_state->fb_changed) | |
13464 | return true; | |
13465 | ||
13466 | /* wm changes, need vblank before final wm's */ | |
caed361d | 13467 | if (crtc_state->update_wm_post) |
e8861675 ML |
13468 | return true; |
13469 | ||
13470 | /* | |
13471 | * cxsr is re-enabled after vblank. | |
caed361d | 13472 | * This is already handled by crtc_state->update_wm_post, |
e8861675 ML |
13473 | * but added for clarity. |
13474 | */ | |
13475 | if (crtc_state->disable_cxsr) | |
13476 | return true; | |
13477 | ||
13478 | return false; | |
13479 | } | |
13480 | ||
74c090b1 ML |
13481 | /** |
13482 | * intel_atomic_commit - commit validated state object | |
13483 | * @dev: DRM device | |
13484 | * @state: the top-level driver state object | |
13485 | * @async: asynchronous commit | |
13486 | * | |
13487 | * This function commits a top-level state object that has been validated | |
13488 | * with drm_atomic_helper_check(). | |
13489 | * | |
13490 | * FIXME: Atomic modeset support for i915 is not yet complete. At the moment | |
13491 | * we can only handle plane-related operations and do not yet support | |
13492 | * asynchronous commit. | |
13493 | * | |
13494 | * RETURNS | |
13495 | * Zero for success or -errno. | |
13496 | */ | |
13497 | static int intel_atomic_commit(struct drm_device *dev, | |
13498 | struct drm_atomic_state *state, | |
13499 | bool async) | |
a6778b3c | 13500 | { |
565602d7 | 13501 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
fbee40df | 13502 | struct drm_i915_private *dev_priv = dev->dev_private; |
29ceb0e6 | 13503 | struct drm_crtc_state *old_crtc_state; |
7580d774 | 13504 | struct drm_crtc *crtc; |
ed4a6a7c | 13505 | struct intel_crtc_state *intel_cstate; |
565602d7 ML |
13506 | int ret = 0, i; |
13507 | bool hw_check = intel_state->modeset; | |
33c8df89 | 13508 | unsigned long put_domains[I915_MAX_PIPES] = {}; |
e8861675 | 13509 | unsigned crtc_vblank_mask = 0; |
a6778b3c | 13510 | |
5008e874 | 13511 | ret = intel_atomic_prepare_commit(dev, state, async); |
7580d774 ML |
13512 | if (ret) { |
13513 | DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret); | |
d4afb8cc | 13514 | return ret; |
7580d774 | 13515 | } |
d4afb8cc | 13516 | |
1c5e19f8 | 13517 | drm_atomic_helper_swap_state(dev, state); |
a1475e77 ML |
13518 | dev_priv->wm.config = intel_state->wm_config; |
13519 | intel_shared_dpll_commit(state); | |
1c5e19f8 | 13520 | |
565602d7 ML |
13521 | if (intel_state->modeset) { |
13522 | memcpy(dev_priv->min_pixclk, intel_state->min_pixclk, | |
13523 | sizeof(intel_state->min_pixclk)); | |
13524 | dev_priv->active_crtcs = intel_state->active_crtcs; | |
1a617b77 | 13525 | dev_priv->atomic_cdclk_freq = intel_state->cdclk; |
33c8df89 ML |
13526 | |
13527 | intel_display_power_get(dev_priv, POWER_DOMAIN_MODESET); | |
565602d7 ML |
13528 | } |
13529 | ||
29ceb0e6 | 13530 | for_each_crtc_in_state(state, crtc, old_crtc_state, i) { |
a539205a ML |
13531 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
13532 | ||
33c8df89 ML |
13533 | if (needs_modeset(crtc->state) || |
13534 | to_intel_crtc_state(crtc->state)->update_pipe) { | |
13535 | hw_check = true; | |
13536 | ||
13537 | put_domains[to_intel_crtc(crtc)->pipe] = | |
13538 | modeset_get_crtc_power_domains(crtc, | |
13539 | to_intel_crtc_state(crtc->state)); | |
13540 | } | |
13541 | ||
61333b60 ML |
13542 | if (!needs_modeset(crtc->state)) |
13543 | continue; | |
13544 | ||
29ceb0e6 | 13545 | intel_pre_plane_update(to_intel_crtc_state(old_crtc_state)); |
460da916 | 13546 | |
29ceb0e6 VS |
13547 | if (old_crtc_state->active) { |
13548 | intel_crtc_disable_planes(crtc, old_crtc_state->plane_mask); | |
a539205a | 13549 | dev_priv->display.crtc_disable(crtc); |
eddfcbcd | 13550 | intel_crtc->active = false; |
58f9c0bc | 13551 | intel_fbc_disable(intel_crtc); |
eddfcbcd | 13552 | intel_disable_shared_dpll(intel_crtc); |
9bbc8258 VS |
13553 | |
13554 | /* | |
13555 | * Underruns don't always raise | |
13556 | * interrupts, so check manually. | |
13557 | */ | |
13558 | intel_check_cpu_fifo_underruns(dev_priv); | |
13559 | intel_check_pch_fifo_underruns(dev_priv); | |
b9001114 ML |
13560 | |
13561 | if (!crtc->state->active) | |
13562 | intel_update_watermarks(crtc); | |
a539205a | 13563 | } |
b8cecdf5 | 13564 | } |
7758a113 | 13565 | |
ea9d758d DV |
13566 | /* Only after disabling all output pipelines that will be changed can we |
13567 | * update the the output configuration. */ | |
4740b0f2 | 13568 | intel_modeset_update_crtc_state(state); |
f6e5b160 | 13569 | |
565602d7 | 13570 | if (intel_state->modeset) { |
4740b0f2 | 13571 | drm_atomic_helper_update_legacy_modeset_state(state->dev, state); |
33c8df89 ML |
13572 | |
13573 | if (dev_priv->display.modeset_commit_cdclk && | |
13574 | intel_state->dev_cdclk != dev_priv->cdclk_freq) | |
13575 | dev_priv->display.modeset_commit_cdclk(state); | |
4740b0f2 | 13576 | } |
47fab737 | 13577 | |
a6778b3c | 13578 | /* Now enable the clocks, plane, pipe, and connectors that we set up. */ |
29ceb0e6 | 13579 | for_each_crtc_in_state(state, crtc, old_crtc_state, i) { |
f6ac4b2a ML |
13580 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
13581 | bool modeset = needs_modeset(crtc->state); | |
e8861675 ML |
13582 | struct intel_crtc_state *pipe_config = |
13583 | to_intel_crtc_state(crtc->state); | |
13584 | bool update_pipe = !modeset && pipe_config->update_pipe; | |
9f836f90 | 13585 | |
f6ac4b2a | 13586 | if (modeset && crtc->state->active) { |
a539205a ML |
13587 | update_scanline_offset(to_intel_crtc(crtc)); |
13588 | dev_priv->display.crtc_enable(crtc); | |
13589 | } | |
80715b2f | 13590 | |
f6ac4b2a | 13591 | if (!modeset) |
29ceb0e6 | 13592 | intel_pre_plane_update(to_intel_crtc_state(old_crtc_state)); |
f6ac4b2a | 13593 | |
31ae71fc ML |
13594 | if (crtc->state->active && |
13595 | drm_atomic_get_existing_plane_state(state, crtc->primary)) | |
49227c4a PZ |
13596 | intel_fbc_enable(intel_crtc); |
13597 | ||
6173ee28 ML |
13598 | if (crtc->state->active && |
13599 | (crtc->state->planes_changed || update_pipe)) | |
29ceb0e6 | 13600 | drm_atomic_helper_commit_planes_on_crtc(old_crtc_state); |
bfd16b2a | 13601 | |
e8861675 ML |
13602 | if (pipe_config->base.active && needs_vblank_wait(pipe_config)) |
13603 | crtc_vblank_mask |= 1 << i; | |
80715b2f | 13604 | } |
a6778b3c | 13605 | |
a6778b3c | 13606 | /* FIXME: add subpixel order */ |
83a57153 | 13607 | |
e8861675 ML |
13608 | if (!state->legacy_cursor_update) |
13609 | intel_atomic_wait_for_vblanks(dev, dev_priv, crtc_vblank_mask); | |
f935675f | 13610 | |
ed4a6a7c MR |
13611 | /* |
13612 | * Now that the vblank has passed, we can go ahead and program the | |
13613 | * optimal watermarks on platforms that need two-step watermark | |
13614 | * programming. | |
13615 | * | |
13616 | * TODO: Move this (and other cleanup) to an async worker eventually. | |
13617 | */ | |
29ceb0e6 | 13618 | for_each_crtc_in_state(state, crtc, old_crtc_state, i) { |
ed4a6a7c MR |
13619 | intel_cstate = to_intel_crtc_state(crtc->state); |
13620 | ||
13621 | if (dev_priv->display.optimize_watermarks) | |
13622 | dev_priv->display.optimize_watermarks(intel_cstate); | |
13623 | } | |
13624 | ||
177246a8 MR |
13625 | for_each_crtc_in_state(state, crtc, old_crtc_state, i) { |
13626 | intel_post_plane_update(to_intel_crtc_state(old_crtc_state)); | |
13627 | ||
13628 | if (put_domains[i]) | |
13629 | modeset_put_power_domains(dev_priv, put_domains[i]); | |
13630 | } | |
13631 | ||
13632 | if (intel_state->modeset) | |
13633 | intel_display_power_put(dev_priv, POWER_DOMAIN_MODESET); | |
13634 | ||
f935675f | 13635 | mutex_lock(&dev->struct_mutex); |
d4afb8cc | 13636 | drm_atomic_helper_cleanup_planes(dev, state); |
f935675f | 13637 | mutex_unlock(&dev->struct_mutex); |
2bfb4627 | 13638 | |
565602d7 | 13639 | if (hw_check) |
ee165b1a ML |
13640 | intel_modeset_check_state(dev, state); |
13641 | ||
13642 | drm_atomic_state_free(state); | |
f30da187 | 13643 | |
75714940 MK |
13644 | /* As one of the primary mmio accessors, KMS has a high likelihood |
13645 | * of triggering bugs in unclaimed access. After we finish | |
13646 | * modesetting, see if an error has been flagged, and if so | |
13647 | * enable debugging for the next modeset - and hope we catch | |
13648 | * the culprit. | |
13649 | * | |
13650 | * XXX note that we assume display power is on at this point. | |
13651 | * This might hold true now but we need to add pm helper to check | |
13652 | * unclaimed only when the hardware is on, as atomic commits | |
13653 | * can happen also when the device is completely off. | |
13654 | */ | |
13655 | intel_uncore_arm_unclaimed_mmio_detection(dev_priv); | |
13656 | ||
74c090b1 | 13657 | return 0; |
7f27126e JB |
13658 | } |
13659 | ||
c0c36b94 CW |
13660 | void intel_crtc_restore_mode(struct drm_crtc *crtc) |
13661 | { | |
83a57153 ACO |
13662 | struct drm_device *dev = crtc->dev; |
13663 | struct drm_atomic_state *state; | |
e694eb02 | 13664 | struct drm_crtc_state *crtc_state; |
2bfb4627 | 13665 | int ret; |
83a57153 ACO |
13666 | |
13667 | state = drm_atomic_state_alloc(dev); | |
13668 | if (!state) { | |
e694eb02 | 13669 | DRM_DEBUG_KMS("[CRTC:%d] crtc restore failed, out of memory", |
83a57153 ACO |
13670 | crtc->base.id); |
13671 | return; | |
13672 | } | |
13673 | ||
e694eb02 | 13674 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); |
83a57153 | 13675 | |
e694eb02 ML |
13676 | retry: |
13677 | crtc_state = drm_atomic_get_crtc_state(state, crtc); | |
13678 | ret = PTR_ERR_OR_ZERO(crtc_state); | |
13679 | if (!ret) { | |
13680 | if (!crtc_state->active) | |
13681 | goto out; | |
83a57153 | 13682 | |
e694eb02 | 13683 | crtc_state->mode_changed = true; |
74c090b1 | 13684 | ret = drm_atomic_commit(state); |
83a57153 ACO |
13685 | } |
13686 | ||
e694eb02 ML |
13687 | if (ret == -EDEADLK) { |
13688 | drm_atomic_state_clear(state); | |
13689 | drm_modeset_backoff(state->acquire_ctx); | |
13690 | goto retry; | |
4ed9fb37 | 13691 | } |
4be07317 | 13692 | |
2bfb4627 | 13693 | if (ret) |
e694eb02 | 13694 | out: |
2bfb4627 | 13695 | drm_atomic_state_free(state); |
c0c36b94 CW |
13696 | } |
13697 | ||
25c5b266 DV |
13698 | #undef for_each_intel_crtc_masked |
13699 | ||
f6e5b160 | 13700 | static const struct drm_crtc_funcs intel_crtc_funcs = { |
82cf435b | 13701 | .gamma_set = drm_atomic_helper_legacy_gamma_set, |
74c090b1 | 13702 | .set_config = drm_atomic_helper_set_config, |
82cf435b | 13703 | .set_property = drm_atomic_helper_crtc_set_property, |
f6e5b160 CW |
13704 | .destroy = intel_crtc_destroy, |
13705 | .page_flip = intel_crtc_page_flip, | |
1356837e MR |
13706 | .atomic_duplicate_state = intel_crtc_duplicate_state, |
13707 | .atomic_destroy_state = intel_crtc_destroy_state, | |
f6e5b160 CW |
13708 | }; |
13709 | ||
6beb8c23 MR |
13710 | /** |
13711 | * intel_prepare_plane_fb - Prepare fb for usage on plane | |
13712 | * @plane: drm plane to prepare for | |
13713 | * @fb: framebuffer to prepare for presentation | |
13714 | * | |
13715 | * Prepares a framebuffer for usage on a display plane. Generally this | |
13716 | * involves pinning the underlying object and updating the frontbuffer tracking | |
13717 | * bits. Some older platforms need special physical address handling for | |
13718 | * cursor planes. | |
13719 | * | |
f935675f ML |
13720 | * Must be called with struct_mutex held. |
13721 | * | |
6beb8c23 MR |
13722 | * Returns 0 on success, negative error code on failure. |
13723 | */ | |
13724 | int | |
13725 | intel_prepare_plane_fb(struct drm_plane *plane, | |
d136dfee | 13726 | const struct drm_plane_state *new_state) |
465c120c MR |
13727 | { |
13728 | struct drm_device *dev = plane->dev; | |
844f9111 | 13729 | struct drm_framebuffer *fb = new_state->fb; |
6beb8c23 | 13730 | struct intel_plane *intel_plane = to_intel_plane(plane); |
6beb8c23 | 13731 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
1ee49399 | 13732 | struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb); |
6beb8c23 | 13733 | int ret = 0; |
465c120c | 13734 | |
1ee49399 | 13735 | if (!obj && !old_obj) |
465c120c MR |
13736 | return 0; |
13737 | ||
5008e874 ML |
13738 | if (old_obj) { |
13739 | struct drm_crtc_state *crtc_state = | |
13740 | drm_atomic_get_existing_crtc_state(new_state->state, plane->state->crtc); | |
13741 | ||
13742 | /* Big Hammer, we also need to ensure that any pending | |
13743 | * MI_WAIT_FOR_EVENT inside a user batch buffer on the | |
13744 | * current scanout is retired before unpinning the old | |
13745 | * framebuffer. Note that we rely on userspace rendering | |
13746 | * into the buffer attached to the pipe they are waiting | |
13747 | * on. If not, userspace generates a GPU hang with IPEHR | |
13748 | * point to the MI_WAIT_FOR_EVENT. | |
13749 | * | |
13750 | * This should only fail upon a hung GPU, in which case we | |
13751 | * can safely continue. | |
13752 | */ | |
13753 | if (needs_modeset(crtc_state)) | |
13754 | ret = i915_gem_object_wait_rendering(old_obj, true); | |
13755 | ||
13756 | /* Swallow -EIO errors to allow updates during hw lockup. */ | |
13757 | if (ret && ret != -EIO) | |
f935675f | 13758 | return ret; |
5008e874 ML |
13759 | } |
13760 | ||
3c28ff22 AG |
13761 | /* For framebuffer backed by dmabuf, wait for fence */ |
13762 | if (obj && obj->base.dma_buf) { | |
bcf8be27 ML |
13763 | long lret; |
13764 | ||
13765 | lret = reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv, | |
13766 | false, true, | |
13767 | MAX_SCHEDULE_TIMEOUT); | |
13768 | if (lret == -ERESTARTSYS) | |
13769 | return lret; | |
3c28ff22 | 13770 | |
bcf8be27 | 13771 | WARN(lret < 0, "waiting returns %li\n", lret); |
3c28ff22 AG |
13772 | } |
13773 | ||
1ee49399 ML |
13774 | if (!obj) { |
13775 | ret = 0; | |
13776 | } else if (plane->type == DRM_PLANE_TYPE_CURSOR && | |
6beb8c23 MR |
13777 | INTEL_INFO(dev)->cursor_needs_physical) { |
13778 | int align = IS_I830(dev) ? 16 * 1024 : 256; | |
13779 | ret = i915_gem_object_attach_phys(obj, align); | |
13780 | if (ret) | |
13781 | DRM_DEBUG_KMS("failed to attach phys object\n"); | |
13782 | } else { | |
3465c580 | 13783 | ret = intel_pin_and_fence_fb_obj(fb, new_state->rotation); |
6beb8c23 | 13784 | } |
465c120c | 13785 | |
7580d774 ML |
13786 | if (ret == 0) { |
13787 | if (obj) { | |
13788 | struct intel_plane_state *plane_state = | |
13789 | to_intel_plane_state(new_state); | |
13790 | ||
13791 | i915_gem_request_assign(&plane_state->wait_req, | |
13792 | obj->last_write_req); | |
13793 | } | |
13794 | ||
a9ff8714 | 13795 | i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit); |
7580d774 | 13796 | } |
fdd508a6 | 13797 | |
6beb8c23 MR |
13798 | return ret; |
13799 | } | |
13800 | ||
38f3ce3a MR |
13801 | /** |
13802 | * intel_cleanup_plane_fb - Cleans up an fb after plane use | |
13803 | * @plane: drm plane to clean up for | |
13804 | * @fb: old framebuffer that was on plane | |
13805 | * | |
13806 | * Cleans up a framebuffer that has just been removed from a plane. | |
f935675f ML |
13807 | * |
13808 | * Must be called with struct_mutex held. | |
38f3ce3a MR |
13809 | */ |
13810 | void | |
13811 | intel_cleanup_plane_fb(struct drm_plane *plane, | |
d136dfee | 13812 | const struct drm_plane_state *old_state) |
38f3ce3a MR |
13813 | { |
13814 | struct drm_device *dev = plane->dev; | |
1ee49399 | 13815 | struct intel_plane *intel_plane = to_intel_plane(plane); |
7580d774 | 13816 | struct intel_plane_state *old_intel_state; |
1ee49399 ML |
13817 | struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb); |
13818 | struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb); | |
38f3ce3a | 13819 | |
7580d774 ML |
13820 | old_intel_state = to_intel_plane_state(old_state); |
13821 | ||
1ee49399 | 13822 | if (!obj && !old_obj) |
38f3ce3a MR |
13823 | return; |
13824 | ||
1ee49399 ML |
13825 | if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR || |
13826 | !INTEL_INFO(dev)->cursor_needs_physical)) | |
3465c580 | 13827 | intel_unpin_fb_obj(old_state->fb, old_state->rotation); |
1ee49399 ML |
13828 | |
13829 | /* prepare_fb aborted? */ | |
13830 | if ((old_obj && (old_obj->frontbuffer_bits & intel_plane->frontbuffer_bit)) || | |
13831 | (obj && !(obj->frontbuffer_bits & intel_plane->frontbuffer_bit))) | |
13832 | i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit); | |
7580d774 ML |
13833 | |
13834 | i915_gem_request_assign(&old_intel_state->wait_req, NULL); | |
465c120c MR |
13835 | } |
13836 | ||
6156a456 CK |
13837 | int |
13838 | skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state) | |
13839 | { | |
13840 | int max_scale; | |
13841 | struct drm_device *dev; | |
13842 | struct drm_i915_private *dev_priv; | |
13843 | int crtc_clock, cdclk; | |
13844 | ||
bf8a0af0 | 13845 | if (!intel_crtc || !crtc_state->base.enable) |
6156a456 CK |
13846 | return DRM_PLANE_HELPER_NO_SCALING; |
13847 | ||
13848 | dev = intel_crtc->base.dev; | |
13849 | dev_priv = dev->dev_private; | |
13850 | crtc_clock = crtc_state->base.adjusted_mode.crtc_clock; | |
27c329ed | 13851 | cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk; |
6156a456 | 13852 | |
54bf1ce6 | 13853 | if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock)) |
6156a456 CK |
13854 | return DRM_PLANE_HELPER_NO_SCALING; |
13855 | ||
13856 | /* | |
13857 | * skl max scale is lower of: | |
13858 | * close to 3 but not 3, -1 is for that purpose | |
13859 | * or | |
13860 | * cdclk/crtc_clock | |
13861 | */ | |
13862 | max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock)); | |
13863 | ||
13864 | return max_scale; | |
13865 | } | |
13866 | ||
465c120c | 13867 | static int |
3c692a41 | 13868 | intel_check_primary_plane(struct drm_plane *plane, |
061e4b8d | 13869 | struct intel_crtc_state *crtc_state, |
3c692a41 GP |
13870 | struct intel_plane_state *state) |
13871 | { | |
2b875c22 MR |
13872 | struct drm_crtc *crtc = state->base.crtc; |
13873 | struct drm_framebuffer *fb = state->base.fb; | |
6156a456 | 13874 | int min_scale = DRM_PLANE_HELPER_NO_SCALING; |
061e4b8d ML |
13875 | int max_scale = DRM_PLANE_HELPER_NO_SCALING; |
13876 | bool can_position = false; | |
465c120c | 13877 | |
693bdc28 VS |
13878 | if (INTEL_INFO(plane->dev)->gen >= 9) { |
13879 | /* use scaler when colorkey is not required */ | |
13880 | if (state->ckey.flags == I915_SET_COLORKEY_NONE) { | |
13881 | min_scale = 1; | |
13882 | max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state); | |
13883 | } | |
d8106366 | 13884 | can_position = true; |
6156a456 | 13885 | } |
d8106366 | 13886 | |
061e4b8d ML |
13887 | return drm_plane_helper_check_update(plane, crtc, fb, &state->src, |
13888 | &state->dst, &state->clip, | |
da20eabd ML |
13889 | min_scale, max_scale, |
13890 | can_position, true, | |
13891 | &state->visible); | |
14af293f GP |
13892 | } |
13893 | ||
613d2b27 ML |
13894 | static void intel_begin_crtc_commit(struct drm_crtc *crtc, |
13895 | struct drm_crtc_state *old_crtc_state) | |
3c692a41 | 13896 | { |
32b7eeec | 13897 | struct drm_device *dev = crtc->dev; |
3c692a41 | 13898 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
bfd16b2a ML |
13899 | struct intel_crtc_state *old_intel_state = |
13900 | to_intel_crtc_state(old_crtc_state); | |
13901 | bool modeset = needs_modeset(crtc->state); | |
3c692a41 | 13902 | |
c34c9ee4 | 13903 | /* Perform vblank evasion around commit operation */ |
62852622 | 13904 | intel_pipe_update_start(intel_crtc); |
0583236e | 13905 | |
bfd16b2a ML |
13906 | if (modeset) |
13907 | return; | |
13908 | ||
20a34e78 ML |
13909 | if (crtc->state->color_mgmt_changed || to_intel_crtc_state(crtc->state)->update_pipe) { |
13910 | intel_color_set_csc(crtc->state); | |
13911 | intel_color_load_luts(crtc->state); | |
13912 | } | |
13913 | ||
bfd16b2a ML |
13914 | if (to_intel_crtc_state(crtc->state)->update_pipe) |
13915 | intel_update_pipe_config(intel_crtc, old_intel_state); | |
13916 | else if (INTEL_INFO(dev)->gen >= 9) | |
0583236e | 13917 | skl_detach_scalers(intel_crtc); |
32b7eeec MR |
13918 | } |
13919 | ||
613d2b27 ML |
13920 | static void intel_finish_crtc_commit(struct drm_crtc *crtc, |
13921 | struct drm_crtc_state *old_crtc_state) | |
32b7eeec | 13922 | { |
32b7eeec | 13923 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
32b7eeec | 13924 | |
62852622 | 13925 | intel_pipe_update_end(intel_crtc); |
3c692a41 GP |
13926 | } |
13927 | ||
cf4c7c12 | 13928 | /** |
4a3b8769 MR |
13929 | * intel_plane_destroy - destroy a plane |
13930 | * @plane: plane to destroy | |
cf4c7c12 | 13931 | * |
4a3b8769 MR |
13932 | * Common destruction function for all types of planes (primary, cursor, |
13933 | * sprite). | |
cf4c7c12 | 13934 | */ |
4a3b8769 | 13935 | void intel_plane_destroy(struct drm_plane *plane) |
465c120c MR |
13936 | { |
13937 | struct intel_plane *intel_plane = to_intel_plane(plane); | |
13938 | drm_plane_cleanup(plane); | |
13939 | kfree(intel_plane); | |
13940 | } | |
13941 | ||
65a3fea0 | 13942 | const struct drm_plane_funcs intel_plane_funcs = { |
70a101f8 MR |
13943 | .update_plane = drm_atomic_helper_update_plane, |
13944 | .disable_plane = drm_atomic_helper_disable_plane, | |
3d7d6510 | 13945 | .destroy = intel_plane_destroy, |
c196e1d6 | 13946 | .set_property = drm_atomic_helper_plane_set_property, |
a98b3431 MR |
13947 | .atomic_get_property = intel_plane_atomic_get_property, |
13948 | .atomic_set_property = intel_plane_atomic_set_property, | |
ea2c67bb MR |
13949 | .atomic_duplicate_state = intel_plane_duplicate_state, |
13950 | .atomic_destroy_state = intel_plane_destroy_state, | |
13951 | ||
465c120c MR |
13952 | }; |
13953 | ||
13954 | static struct drm_plane *intel_primary_plane_create(struct drm_device *dev, | |
13955 | int pipe) | |
13956 | { | |
fca0ce2a VS |
13957 | struct intel_plane *primary = NULL; |
13958 | struct intel_plane_state *state = NULL; | |
465c120c | 13959 | const uint32_t *intel_primary_formats; |
45e3743a | 13960 | unsigned int num_formats; |
fca0ce2a | 13961 | int ret; |
465c120c MR |
13962 | |
13963 | primary = kzalloc(sizeof(*primary), GFP_KERNEL); | |
fca0ce2a VS |
13964 | if (!primary) |
13965 | goto fail; | |
465c120c | 13966 | |
8e7d688b | 13967 | state = intel_create_plane_state(&primary->base); |
fca0ce2a VS |
13968 | if (!state) |
13969 | goto fail; | |
8e7d688b | 13970 | primary->base.state = &state->base; |
ea2c67bb | 13971 | |
465c120c MR |
13972 | primary->can_scale = false; |
13973 | primary->max_downscale = 1; | |
6156a456 CK |
13974 | if (INTEL_INFO(dev)->gen >= 9) { |
13975 | primary->can_scale = true; | |
af99ceda | 13976 | state->scaler_id = -1; |
6156a456 | 13977 | } |
465c120c MR |
13978 | primary->pipe = pipe; |
13979 | primary->plane = pipe; | |
a9ff8714 | 13980 | primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe); |
c59cb179 | 13981 | primary->check_plane = intel_check_primary_plane; |
465c120c MR |
13982 | if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) |
13983 | primary->plane = !pipe; | |
13984 | ||
6c0fd451 DL |
13985 | if (INTEL_INFO(dev)->gen >= 9) { |
13986 | intel_primary_formats = skl_primary_formats; | |
13987 | num_formats = ARRAY_SIZE(skl_primary_formats); | |
a8d201af ML |
13988 | |
13989 | primary->update_plane = skylake_update_primary_plane; | |
13990 | primary->disable_plane = skylake_disable_primary_plane; | |
13991 | } else if (HAS_PCH_SPLIT(dev)) { | |
13992 | intel_primary_formats = i965_primary_formats; | |
13993 | num_formats = ARRAY_SIZE(i965_primary_formats); | |
13994 | ||
13995 | primary->update_plane = ironlake_update_primary_plane; | |
13996 | primary->disable_plane = i9xx_disable_primary_plane; | |
6c0fd451 | 13997 | } else if (INTEL_INFO(dev)->gen >= 4) { |
568db4f2 DL |
13998 | intel_primary_formats = i965_primary_formats; |
13999 | num_formats = ARRAY_SIZE(i965_primary_formats); | |
a8d201af ML |
14000 | |
14001 | primary->update_plane = i9xx_update_primary_plane; | |
14002 | primary->disable_plane = i9xx_disable_primary_plane; | |
6c0fd451 DL |
14003 | } else { |
14004 | intel_primary_formats = i8xx_primary_formats; | |
14005 | num_formats = ARRAY_SIZE(i8xx_primary_formats); | |
a8d201af ML |
14006 | |
14007 | primary->update_plane = i9xx_update_primary_plane; | |
14008 | primary->disable_plane = i9xx_disable_primary_plane; | |
465c120c MR |
14009 | } |
14010 | ||
fca0ce2a VS |
14011 | ret = drm_universal_plane_init(dev, &primary->base, 0, |
14012 | &intel_plane_funcs, | |
14013 | intel_primary_formats, num_formats, | |
14014 | DRM_PLANE_TYPE_PRIMARY, NULL); | |
14015 | if (ret) | |
14016 | goto fail; | |
48404c1e | 14017 | |
3b7a5119 SJ |
14018 | if (INTEL_INFO(dev)->gen >= 4) |
14019 | intel_create_rotation_property(dev, primary); | |
48404c1e | 14020 | |
ea2c67bb MR |
14021 | drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs); |
14022 | ||
465c120c | 14023 | return &primary->base; |
fca0ce2a VS |
14024 | |
14025 | fail: | |
14026 | kfree(state); | |
14027 | kfree(primary); | |
14028 | ||
14029 | return NULL; | |
465c120c MR |
14030 | } |
14031 | ||
3b7a5119 SJ |
14032 | void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane) |
14033 | { | |
14034 | if (!dev->mode_config.rotation_property) { | |
14035 | unsigned long flags = BIT(DRM_ROTATE_0) | | |
14036 | BIT(DRM_ROTATE_180); | |
14037 | ||
14038 | if (INTEL_INFO(dev)->gen >= 9) | |
14039 | flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270); | |
14040 | ||
14041 | dev->mode_config.rotation_property = | |
14042 | drm_mode_create_rotation_property(dev, flags); | |
14043 | } | |
14044 | if (dev->mode_config.rotation_property) | |
14045 | drm_object_attach_property(&plane->base.base, | |
14046 | dev->mode_config.rotation_property, | |
14047 | plane->base.state->rotation); | |
14048 | } | |
14049 | ||
3d7d6510 | 14050 | static int |
852e787c | 14051 | intel_check_cursor_plane(struct drm_plane *plane, |
061e4b8d | 14052 | struct intel_crtc_state *crtc_state, |
852e787c | 14053 | struct intel_plane_state *state) |
3d7d6510 | 14054 | { |
061e4b8d | 14055 | struct drm_crtc *crtc = crtc_state->base.crtc; |
2b875c22 | 14056 | struct drm_framebuffer *fb = state->base.fb; |
757f9a3e | 14057 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
b29ec92c | 14058 | enum pipe pipe = to_intel_plane(plane)->pipe; |
757f9a3e GP |
14059 | unsigned stride; |
14060 | int ret; | |
3d7d6510 | 14061 | |
061e4b8d ML |
14062 | ret = drm_plane_helper_check_update(plane, crtc, fb, &state->src, |
14063 | &state->dst, &state->clip, | |
3d7d6510 MR |
14064 | DRM_PLANE_HELPER_NO_SCALING, |
14065 | DRM_PLANE_HELPER_NO_SCALING, | |
852e787c | 14066 | true, true, &state->visible); |
757f9a3e GP |
14067 | if (ret) |
14068 | return ret; | |
14069 | ||
757f9a3e GP |
14070 | /* if we want to turn off the cursor ignore width and height */ |
14071 | if (!obj) | |
da20eabd | 14072 | return 0; |
757f9a3e | 14073 | |
757f9a3e | 14074 | /* Check for which cursor types we support */ |
061e4b8d | 14075 | if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) { |
ea2c67bb MR |
14076 | DRM_DEBUG("Cursor dimension %dx%d not supported\n", |
14077 | state->base.crtc_w, state->base.crtc_h); | |
757f9a3e GP |
14078 | return -EINVAL; |
14079 | } | |
14080 | ||
ea2c67bb MR |
14081 | stride = roundup_pow_of_two(state->base.crtc_w) * 4; |
14082 | if (obj->base.size < stride * state->base.crtc_h) { | |
757f9a3e GP |
14083 | DRM_DEBUG_KMS("buffer is too small\n"); |
14084 | return -ENOMEM; | |
14085 | } | |
14086 | ||
3a656b54 | 14087 | if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) { |
757f9a3e | 14088 | DRM_DEBUG_KMS("cursor cannot be tiled\n"); |
da20eabd | 14089 | return -EINVAL; |
32b7eeec MR |
14090 | } |
14091 | ||
b29ec92c VS |
14092 | /* |
14093 | * There's something wrong with the cursor on CHV pipe C. | |
14094 | * If it straddles the left edge of the screen then | |
14095 | * moving it away from the edge or disabling it often | |
14096 | * results in a pipe underrun, and often that can lead to | |
14097 | * dead pipe (constant underrun reported, and it scans | |
14098 | * out just a solid color). To recover from that, the | |
14099 | * display power well must be turned off and on again. | |
14100 | * Refuse the put the cursor into that compromised position. | |
14101 | */ | |
14102 | if (IS_CHERRYVIEW(plane->dev) && pipe == PIPE_C && | |
14103 | state->visible && state->base.crtc_x < 0) { | |
14104 | DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n"); | |
14105 | return -EINVAL; | |
14106 | } | |
14107 | ||
da20eabd | 14108 | return 0; |
852e787c | 14109 | } |
3d7d6510 | 14110 | |
a8ad0d8e ML |
14111 | static void |
14112 | intel_disable_cursor_plane(struct drm_plane *plane, | |
7fabf5ef | 14113 | struct drm_crtc *crtc) |
a8ad0d8e | 14114 | { |
f2858021 ML |
14115 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
14116 | ||
14117 | intel_crtc->cursor_addr = 0; | |
55a08b3f | 14118 | intel_crtc_update_cursor(crtc, NULL); |
a8ad0d8e ML |
14119 | } |
14120 | ||
f4a2cf29 | 14121 | static void |
55a08b3f ML |
14122 | intel_update_cursor_plane(struct drm_plane *plane, |
14123 | const struct intel_crtc_state *crtc_state, | |
14124 | const struct intel_plane_state *state) | |
852e787c | 14125 | { |
55a08b3f ML |
14126 | struct drm_crtc *crtc = crtc_state->base.crtc; |
14127 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); | |
ea2c67bb | 14128 | struct drm_device *dev = plane->dev; |
2b875c22 | 14129 | struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb); |
a912f12f | 14130 | uint32_t addr; |
852e787c | 14131 | |
f4a2cf29 | 14132 | if (!obj) |
a912f12f | 14133 | addr = 0; |
f4a2cf29 | 14134 | else if (!INTEL_INFO(dev)->cursor_needs_physical) |
a912f12f | 14135 | addr = i915_gem_obj_ggtt_offset(obj); |
f4a2cf29 | 14136 | else |
a912f12f | 14137 | addr = obj->phys_handle->busaddr; |
852e787c | 14138 | |
a912f12f | 14139 | intel_crtc->cursor_addr = addr; |
55a08b3f | 14140 | intel_crtc_update_cursor(crtc, state); |
852e787c GP |
14141 | } |
14142 | ||
3d7d6510 MR |
14143 | static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev, |
14144 | int pipe) | |
14145 | { | |
fca0ce2a VS |
14146 | struct intel_plane *cursor = NULL; |
14147 | struct intel_plane_state *state = NULL; | |
14148 | int ret; | |
3d7d6510 MR |
14149 | |
14150 | cursor = kzalloc(sizeof(*cursor), GFP_KERNEL); | |
fca0ce2a VS |
14151 | if (!cursor) |
14152 | goto fail; | |
3d7d6510 | 14153 | |
8e7d688b | 14154 | state = intel_create_plane_state(&cursor->base); |
fca0ce2a VS |
14155 | if (!state) |
14156 | goto fail; | |
8e7d688b | 14157 | cursor->base.state = &state->base; |
ea2c67bb | 14158 | |
3d7d6510 MR |
14159 | cursor->can_scale = false; |
14160 | cursor->max_downscale = 1; | |
14161 | cursor->pipe = pipe; | |
14162 | cursor->plane = pipe; | |
a9ff8714 | 14163 | cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe); |
c59cb179 | 14164 | cursor->check_plane = intel_check_cursor_plane; |
55a08b3f | 14165 | cursor->update_plane = intel_update_cursor_plane; |
a8ad0d8e | 14166 | cursor->disable_plane = intel_disable_cursor_plane; |
3d7d6510 | 14167 | |
fca0ce2a VS |
14168 | ret = drm_universal_plane_init(dev, &cursor->base, 0, |
14169 | &intel_plane_funcs, | |
14170 | intel_cursor_formats, | |
14171 | ARRAY_SIZE(intel_cursor_formats), | |
14172 | DRM_PLANE_TYPE_CURSOR, NULL); | |
14173 | if (ret) | |
14174 | goto fail; | |
4398ad45 VS |
14175 | |
14176 | if (INTEL_INFO(dev)->gen >= 4) { | |
14177 | if (!dev->mode_config.rotation_property) | |
14178 | dev->mode_config.rotation_property = | |
14179 | drm_mode_create_rotation_property(dev, | |
14180 | BIT(DRM_ROTATE_0) | | |
14181 | BIT(DRM_ROTATE_180)); | |
14182 | if (dev->mode_config.rotation_property) | |
14183 | drm_object_attach_property(&cursor->base.base, | |
14184 | dev->mode_config.rotation_property, | |
8e7d688b | 14185 | state->base.rotation); |
4398ad45 VS |
14186 | } |
14187 | ||
af99ceda CK |
14188 | if (INTEL_INFO(dev)->gen >=9) |
14189 | state->scaler_id = -1; | |
14190 | ||
ea2c67bb MR |
14191 | drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs); |
14192 | ||
3d7d6510 | 14193 | return &cursor->base; |
fca0ce2a VS |
14194 | |
14195 | fail: | |
14196 | kfree(state); | |
14197 | kfree(cursor); | |
14198 | ||
14199 | return NULL; | |
3d7d6510 MR |
14200 | } |
14201 | ||
549e2bfb CK |
14202 | static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc, |
14203 | struct intel_crtc_state *crtc_state) | |
14204 | { | |
14205 | int i; | |
14206 | struct intel_scaler *intel_scaler; | |
14207 | struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state; | |
14208 | ||
14209 | for (i = 0; i < intel_crtc->num_scalers; i++) { | |
14210 | intel_scaler = &scaler_state->scalers[i]; | |
14211 | intel_scaler->in_use = 0; | |
549e2bfb CK |
14212 | intel_scaler->mode = PS_SCALER_MODE_DYN; |
14213 | } | |
14214 | ||
14215 | scaler_state->scaler_id = -1; | |
14216 | } | |
14217 | ||
b358d0a6 | 14218 | static void intel_crtc_init(struct drm_device *dev, int pipe) |
79e53945 | 14219 | { |
fbee40df | 14220 | struct drm_i915_private *dev_priv = dev->dev_private; |
79e53945 | 14221 | struct intel_crtc *intel_crtc; |
f5de6e07 | 14222 | struct intel_crtc_state *crtc_state = NULL; |
3d7d6510 MR |
14223 | struct drm_plane *primary = NULL; |
14224 | struct drm_plane *cursor = NULL; | |
8563b1e8 | 14225 | int ret; |
79e53945 | 14226 | |
955382f3 | 14227 | intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL); |
79e53945 JB |
14228 | if (intel_crtc == NULL) |
14229 | return; | |
14230 | ||
f5de6e07 ACO |
14231 | crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL); |
14232 | if (!crtc_state) | |
14233 | goto fail; | |
550acefd ACO |
14234 | intel_crtc->config = crtc_state; |
14235 | intel_crtc->base.state = &crtc_state->base; | |
07878248 | 14236 | crtc_state->base.crtc = &intel_crtc->base; |
f5de6e07 | 14237 | |
549e2bfb CK |
14238 | /* initialize shared scalers */ |
14239 | if (INTEL_INFO(dev)->gen >= 9) { | |
14240 | if (pipe == PIPE_C) | |
14241 | intel_crtc->num_scalers = 1; | |
14242 | else | |
14243 | intel_crtc->num_scalers = SKL_NUM_SCALERS; | |
14244 | ||
14245 | skl_init_scalers(dev, intel_crtc, crtc_state); | |
14246 | } | |
14247 | ||
465c120c | 14248 | primary = intel_primary_plane_create(dev, pipe); |
3d7d6510 MR |
14249 | if (!primary) |
14250 | goto fail; | |
14251 | ||
14252 | cursor = intel_cursor_plane_create(dev, pipe); | |
14253 | if (!cursor) | |
14254 | goto fail; | |
14255 | ||
465c120c | 14256 | ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary, |
f9882876 | 14257 | cursor, &intel_crtc_funcs, NULL); |
3d7d6510 MR |
14258 | if (ret) |
14259 | goto fail; | |
79e53945 | 14260 | |
1f1c2e24 VS |
14261 | /* |
14262 | * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port | |
8c0f92e1 | 14263 | * is hooked to pipe B. Hence we want plane A feeding pipe B. |
1f1c2e24 | 14264 | */ |
80824003 JB |
14265 | intel_crtc->pipe = pipe; |
14266 | intel_crtc->plane = pipe; | |
3a77c4c4 | 14267 | if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) { |
28c97730 | 14268 | DRM_DEBUG_KMS("swapping pipes & planes for FBC\n"); |
e2e767ab | 14269 | intel_crtc->plane = !pipe; |
80824003 JB |
14270 | } |
14271 | ||
4b0e333e CW |
14272 | intel_crtc->cursor_base = ~0; |
14273 | intel_crtc->cursor_cntl = ~0; | |
dc41c154 | 14274 | intel_crtc->cursor_size = ~0; |
8d7849db | 14275 | |
852eb00d VS |
14276 | intel_crtc->wm.cxsr_allowed = true; |
14277 | ||
22fd0fab JB |
14278 | BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) || |
14279 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL); | |
14280 | dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base; | |
14281 | dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base; | |
14282 | ||
79e53945 | 14283 | drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs); |
87b6b101 | 14284 | |
8563b1e8 LL |
14285 | intel_color_init(&intel_crtc->base); |
14286 | ||
87b6b101 | 14287 | WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe); |
3d7d6510 MR |
14288 | return; |
14289 | ||
14290 | fail: | |
14291 | if (primary) | |
14292 | drm_plane_cleanup(primary); | |
14293 | if (cursor) | |
14294 | drm_plane_cleanup(cursor); | |
f5de6e07 | 14295 | kfree(crtc_state); |
3d7d6510 | 14296 | kfree(intel_crtc); |
79e53945 JB |
14297 | } |
14298 | ||
752aa88a JB |
14299 | enum pipe intel_get_pipe_from_connector(struct intel_connector *connector) |
14300 | { | |
14301 | struct drm_encoder *encoder = connector->base.encoder; | |
6e9f798d | 14302 | struct drm_device *dev = connector->base.dev; |
752aa88a | 14303 | |
51fd371b | 14304 | WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex)); |
752aa88a | 14305 | |
d3babd3f | 14306 | if (!encoder || WARN_ON(!encoder->crtc)) |
752aa88a JB |
14307 | return INVALID_PIPE; |
14308 | ||
14309 | return to_intel_crtc(encoder->crtc)->pipe; | |
14310 | } | |
14311 | ||
08d7b3d1 | 14312 | int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data, |
05394f39 | 14313 | struct drm_file *file) |
08d7b3d1 | 14314 | { |
08d7b3d1 | 14315 | struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data; |
7707e653 | 14316 | struct drm_crtc *drmmode_crtc; |
c05422d5 | 14317 | struct intel_crtc *crtc; |
08d7b3d1 | 14318 | |
7707e653 | 14319 | drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id); |
08d7b3d1 | 14320 | |
7707e653 | 14321 | if (!drmmode_crtc) { |
08d7b3d1 | 14322 | DRM_ERROR("no such CRTC id\n"); |
3f2c2057 | 14323 | return -ENOENT; |
08d7b3d1 CW |
14324 | } |
14325 | ||
7707e653 | 14326 | crtc = to_intel_crtc(drmmode_crtc); |
c05422d5 | 14327 | pipe_from_crtc_id->pipe = crtc->pipe; |
08d7b3d1 | 14328 | |
c05422d5 | 14329 | return 0; |
08d7b3d1 CW |
14330 | } |
14331 | ||
66a9278e | 14332 | static int intel_encoder_clones(struct intel_encoder *encoder) |
79e53945 | 14333 | { |
66a9278e DV |
14334 | struct drm_device *dev = encoder->base.dev; |
14335 | struct intel_encoder *source_encoder; | |
79e53945 | 14336 | int index_mask = 0; |
79e53945 JB |
14337 | int entry = 0; |
14338 | ||
b2784e15 | 14339 | for_each_intel_encoder(dev, source_encoder) { |
bc079e8b | 14340 | if (encoders_cloneable(encoder, source_encoder)) |
66a9278e DV |
14341 | index_mask |= (1 << entry); |
14342 | ||
79e53945 JB |
14343 | entry++; |
14344 | } | |
4ef69c7a | 14345 | |
79e53945 JB |
14346 | return index_mask; |
14347 | } | |
14348 | ||
4d302442 CW |
14349 | static bool has_edp_a(struct drm_device *dev) |
14350 | { | |
14351 | struct drm_i915_private *dev_priv = dev->dev_private; | |
14352 | ||
14353 | if (!IS_MOBILE(dev)) | |
14354 | return false; | |
14355 | ||
14356 | if ((I915_READ(DP_A) & DP_DETECTED) == 0) | |
14357 | return false; | |
14358 | ||
e3589908 | 14359 | if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE)) |
4d302442 CW |
14360 | return false; |
14361 | ||
14362 | return true; | |
14363 | } | |
14364 | ||
84b4e042 JB |
14365 | static bool intel_crt_present(struct drm_device *dev) |
14366 | { | |
14367 | struct drm_i915_private *dev_priv = dev->dev_private; | |
14368 | ||
884497ed DL |
14369 | if (INTEL_INFO(dev)->gen >= 9) |
14370 | return false; | |
14371 | ||
cf404ce4 | 14372 | if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev)) |
84b4e042 JB |
14373 | return false; |
14374 | ||
14375 | if (IS_CHERRYVIEW(dev)) | |
14376 | return false; | |
14377 | ||
65e472e4 VS |
14378 | if (HAS_PCH_LPT_H(dev) && I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED) |
14379 | return false; | |
14380 | ||
70ac54d0 VS |
14381 | /* DDI E can't be used if DDI A requires 4 lanes */ |
14382 | if (HAS_DDI(dev) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES) | |
14383 | return false; | |
14384 | ||
e4abb733 | 14385 | if (!dev_priv->vbt.int_crt_support) |
84b4e042 JB |
14386 | return false; |
14387 | ||
14388 | return true; | |
14389 | } | |
14390 | ||
79e53945 JB |
14391 | static void intel_setup_outputs(struct drm_device *dev) |
14392 | { | |
725e30ad | 14393 | struct drm_i915_private *dev_priv = dev->dev_private; |
4ef69c7a | 14394 | struct intel_encoder *encoder; |
cb0953d7 | 14395 | bool dpd_is_edp = false; |
79e53945 | 14396 | |
c9093354 | 14397 | intel_lvds_init(dev); |
79e53945 | 14398 | |
84b4e042 | 14399 | if (intel_crt_present(dev)) |
79935fca | 14400 | intel_crt_init(dev); |
cb0953d7 | 14401 | |
c776eb2e VK |
14402 | if (IS_BROXTON(dev)) { |
14403 | /* | |
14404 | * FIXME: Broxton doesn't support port detection via the | |
14405 | * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to | |
14406 | * detect the ports. | |
14407 | */ | |
14408 | intel_ddi_init(dev, PORT_A); | |
14409 | intel_ddi_init(dev, PORT_B); | |
14410 | intel_ddi_init(dev, PORT_C); | |
c6c794a2 SS |
14411 | |
14412 | intel_dsi_init(dev); | |
c776eb2e | 14413 | } else if (HAS_DDI(dev)) { |
0e72a5b5 ED |
14414 | int found; |
14415 | ||
de31facd JB |
14416 | /* |
14417 | * Haswell uses DDI functions to detect digital outputs. | |
14418 | * On SKL pre-D0 the strap isn't connected, so we assume | |
14419 | * it's there. | |
14420 | */ | |
77179400 | 14421 | found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED; |
de31facd | 14422 | /* WaIgnoreDDIAStrap: skl */ |
ef11bdb3 | 14423 | if (found || IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) |
0e72a5b5 ED |
14424 | intel_ddi_init(dev, PORT_A); |
14425 | ||
14426 | /* DDI B, C and D detection is indicated by the SFUSE_STRAP | |
14427 | * register */ | |
14428 | found = I915_READ(SFUSE_STRAP); | |
14429 | ||
14430 | if (found & SFUSE_STRAP_DDIB_DETECTED) | |
14431 | intel_ddi_init(dev, PORT_B); | |
14432 | if (found & SFUSE_STRAP_DDIC_DETECTED) | |
14433 | intel_ddi_init(dev, PORT_C); | |
14434 | if (found & SFUSE_STRAP_DDID_DETECTED) | |
14435 | intel_ddi_init(dev, PORT_D); | |
2800e4c2 RV |
14436 | /* |
14437 | * On SKL we don't have a way to detect DDI-E so we rely on VBT. | |
14438 | */ | |
ef11bdb3 | 14439 | if ((IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) && |
2800e4c2 RV |
14440 | (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp || |
14441 | dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi || | |
14442 | dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi)) | |
14443 | intel_ddi_init(dev, PORT_E); | |
14444 | ||
0e72a5b5 | 14445 | } else if (HAS_PCH_SPLIT(dev)) { |
cb0953d7 | 14446 | int found; |
5d8a7752 | 14447 | dpd_is_edp = intel_dp_is_edp(dev, PORT_D); |
270b3042 DV |
14448 | |
14449 | if (has_edp_a(dev)) | |
14450 | intel_dp_init(dev, DP_A, PORT_A); | |
cb0953d7 | 14451 | |
dc0fa718 | 14452 | if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) { |
461ed3ca | 14453 | /* PCH SDVOB multiplex with HDMIB */ |
2a5c0832 | 14454 | found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B); |
30ad48b7 | 14455 | if (!found) |
e2debe91 | 14456 | intel_hdmi_init(dev, PCH_HDMIB, PORT_B); |
5eb08b69 | 14457 | if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED)) |
ab9d7c30 | 14458 | intel_dp_init(dev, PCH_DP_B, PORT_B); |
30ad48b7 ZW |
14459 | } |
14460 | ||
dc0fa718 | 14461 | if (I915_READ(PCH_HDMIC) & SDVO_DETECTED) |
e2debe91 | 14462 | intel_hdmi_init(dev, PCH_HDMIC, PORT_C); |
30ad48b7 | 14463 | |
dc0fa718 | 14464 | if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED) |
e2debe91 | 14465 | intel_hdmi_init(dev, PCH_HDMID, PORT_D); |
30ad48b7 | 14466 | |
5eb08b69 | 14467 | if (I915_READ(PCH_DP_C) & DP_DETECTED) |
ab9d7c30 | 14468 | intel_dp_init(dev, PCH_DP_C, PORT_C); |
5eb08b69 | 14469 | |
270b3042 | 14470 | if (I915_READ(PCH_DP_D) & DP_DETECTED) |
ab9d7c30 | 14471 | intel_dp_init(dev, PCH_DP_D, PORT_D); |
666a4537 | 14472 | } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { |
e17ac6db VS |
14473 | /* |
14474 | * The DP_DETECTED bit is the latched state of the DDC | |
14475 | * SDA pin at boot. However since eDP doesn't require DDC | |
14476 | * (no way to plug in a DP->HDMI dongle) the DDC pins for | |
14477 | * eDP ports may have been muxed to an alternate function. | |
14478 | * Thus we can't rely on the DP_DETECTED bit alone to detect | |
14479 | * eDP ports. Consult the VBT as well as DP_DETECTED to | |
14480 | * detect eDP ports. | |
14481 | */ | |
e66eb81d | 14482 | if (I915_READ(VLV_HDMIB) & SDVO_DETECTED && |
d2182a66 | 14483 | !intel_dp_is_edp(dev, PORT_B)) |
e66eb81d VS |
14484 | intel_hdmi_init(dev, VLV_HDMIB, PORT_B); |
14485 | if (I915_READ(VLV_DP_B) & DP_DETECTED || | |
e17ac6db | 14486 | intel_dp_is_edp(dev, PORT_B)) |
e66eb81d | 14487 | intel_dp_init(dev, VLV_DP_B, PORT_B); |
585a94b8 | 14488 | |
e66eb81d | 14489 | if (I915_READ(VLV_HDMIC) & SDVO_DETECTED && |
d2182a66 | 14490 | !intel_dp_is_edp(dev, PORT_C)) |
e66eb81d VS |
14491 | intel_hdmi_init(dev, VLV_HDMIC, PORT_C); |
14492 | if (I915_READ(VLV_DP_C) & DP_DETECTED || | |
e17ac6db | 14493 | intel_dp_is_edp(dev, PORT_C)) |
e66eb81d | 14494 | intel_dp_init(dev, VLV_DP_C, PORT_C); |
19c03924 | 14495 | |
9418c1f1 | 14496 | if (IS_CHERRYVIEW(dev)) { |
e17ac6db | 14497 | /* eDP not supported on port D, so don't check VBT */ |
e66eb81d VS |
14498 | if (I915_READ(CHV_HDMID) & SDVO_DETECTED) |
14499 | intel_hdmi_init(dev, CHV_HDMID, PORT_D); | |
14500 | if (I915_READ(CHV_DP_D) & DP_DETECTED) | |
14501 | intel_dp_init(dev, CHV_DP_D, PORT_D); | |
9418c1f1 VS |
14502 | } |
14503 | ||
3cfca973 | 14504 | intel_dsi_init(dev); |
09da55dc | 14505 | } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) { |
27185ae1 | 14506 | bool found = false; |
7d57382e | 14507 | |
e2debe91 | 14508 | if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) { |
b01f2c3a | 14509 | DRM_DEBUG_KMS("probing SDVOB\n"); |
2a5c0832 | 14510 | found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B); |
3fec3d2f | 14511 | if (!found && IS_G4X(dev)) { |
b01f2c3a | 14512 | DRM_DEBUG_KMS("probing HDMI on SDVOB\n"); |
e2debe91 | 14513 | intel_hdmi_init(dev, GEN4_HDMIB, PORT_B); |
b01f2c3a | 14514 | } |
27185ae1 | 14515 | |
3fec3d2f | 14516 | if (!found && IS_G4X(dev)) |
ab9d7c30 | 14517 | intel_dp_init(dev, DP_B, PORT_B); |
725e30ad | 14518 | } |
13520b05 KH |
14519 | |
14520 | /* Before G4X SDVOC doesn't have its own detect register */ | |
13520b05 | 14521 | |
e2debe91 | 14522 | if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) { |
b01f2c3a | 14523 | DRM_DEBUG_KMS("probing SDVOC\n"); |
2a5c0832 | 14524 | found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C); |
b01f2c3a | 14525 | } |
27185ae1 | 14526 | |
e2debe91 | 14527 | if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) { |
27185ae1 | 14528 | |
3fec3d2f | 14529 | if (IS_G4X(dev)) { |
b01f2c3a | 14530 | DRM_DEBUG_KMS("probing HDMI on SDVOC\n"); |
e2debe91 | 14531 | intel_hdmi_init(dev, GEN4_HDMIC, PORT_C); |
b01f2c3a | 14532 | } |
3fec3d2f | 14533 | if (IS_G4X(dev)) |
ab9d7c30 | 14534 | intel_dp_init(dev, DP_C, PORT_C); |
725e30ad | 14535 | } |
27185ae1 | 14536 | |
3fec3d2f | 14537 | if (IS_G4X(dev) && |
e7281eab | 14538 | (I915_READ(DP_D) & DP_DETECTED)) |
ab9d7c30 | 14539 | intel_dp_init(dev, DP_D, PORT_D); |
bad720ff | 14540 | } else if (IS_GEN2(dev)) |
79e53945 JB |
14541 | intel_dvo_init(dev); |
14542 | ||
103a196f | 14543 | if (SUPPORTS_TV(dev)) |
79e53945 JB |
14544 | intel_tv_init(dev); |
14545 | ||
0bc12bcb | 14546 | intel_psr_init(dev); |
7c8f8a70 | 14547 | |
b2784e15 | 14548 | for_each_intel_encoder(dev, encoder) { |
4ef69c7a CW |
14549 | encoder->base.possible_crtcs = encoder->crtc_mask; |
14550 | encoder->base.possible_clones = | |
66a9278e | 14551 | intel_encoder_clones(encoder); |
79e53945 | 14552 | } |
47356eb6 | 14553 | |
dde86e2d | 14554 | intel_init_pch_refclk(dev); |
270b3042 DV |
14555 | |
14556 | drm_helper_move_panel_connectors_to_head(dev); | |
79e53945 JB |
14557 | } |
14558 | ||
14559 | static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb) | |
14560 | { | |
60a5ca01 | 14561 | struct drm_device *dev = fb->dev; |
79e53945 | 14562 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); |
79e53945 | 14563 | |
ef2d633e | 14564 | drm_framebuffer_cleanup(fb); |
60a5ca01 | 14565 | mutex_lock(&dev->struct_mutex); |
ef2d633e | 14566 | WARN_ON(!intel_fb->obj->framebuffer_references--); |
60a5ca01 VS |
14567 | drm_gem_object_unreference(&intel_fb->obj->base); |
14568 | mutex_unlock(&dev->struct_mutex); | |
79e53945 JB |
14569 | kfree(intel_fb); |
14570 | } | |
14571 | ||
14572 | static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb, | |
05394f39 | 14573 | struct drm_file *file, |
79e53945 JB |
14574 | unsigned int *handle) |
14575 | { | |
14576 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); | |
05394f39 | 14577 | struct drm_i915_gem_object *obj = intel_fb->obj; |
79e53945 | 14578 | |
cc917ab4 CW |
14579 | if (obj->userptr.mm) { |
14580 | DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n"); | |
14581 | return -EINVAL; | |
14582 | } | |
14583 | ||
05394f39 | 14584 | return drm_gem_handle_create(file, &obj->base, handle); |
79e53945 JB |
14585 | } |
14586 | ||
86c98588 RV |
14587 | static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb, |
14588 | struct drm_file *file, | |
14589 | unsigned flags, unsigned color, | |
14590 | struct drm_clip_rect *clips, | |
14591 | unsigned num_clips) | |
14592 | { | |
14593 | struct drm_device *dev = fb->dev; | |
14594 | struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb); | |
14595 | struct drm_i915_gem_object *obj = intel_fb->obj; | |
14596 | ||
14597 | mutex_lock(&dev->struct_mutex); | |
74b4ea1e | 14598 | intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB); |
86c98588 RV |
14599 | mutex_unlock(&dev->struct_mutex); |
14600 | ||
14601 | return 0; | |
14602 | } | |
14603 | ||
79e53945 JB |
14604 | static const struct drm_framebuffer_funcs intel_fb_funcs = { |
14605 | .destroy = intel_user_framebuffer_destroy, | |
14606 | .create_handle = intel_user_framebuffer_create_handle, | |
86c98588 | 14607 | .dirty = intel_user_framebuffer_dirty, |
79e53945 JB |
14608 | }; |
14609 | ||
b321803d DL |
14610 | static |
14611 | u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier, | |
14612 | uint32_t pixel_format) | |
14613 | { | |
14614 | u32 gen = INTEL_INFO(dev)->gen; | |
14615 | ||
14616 | if (gen >= 9) { | |
ac484963 VS |
14617 | int cpp = drm_format_plane_cpp(pixel_format, 0); |
14618 | ||
b321803d DL |
14619 | /* "The stride in bytes must not exceed the of the size of 8K |
14620 | * pixels and 32K bytes." | |
14621 | */ | |
ac484963 | 14622 | return min(8192 * cpp, 32768); |
666a4537 | 14623 | } else if (gen >= 5 && !IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) { |
b321803d DL |
14624 | return 32*1024; |
14625 | } else if (gen >= 4) { | |
14626 | if (fb_modifier == I915_FORMAT_MOD_X_TILED) | |
14627 | return 16*1024; | |
14628 | else | |
14629 | return 32*1024; | |
14630 | } else if (gen >= 3) { | |
14631 | if (fb_modifier == I915_FORMAT_MOD_X_TILED) | |
14632 | return 8*1024; | |
14633 | else | |
14634 | return 16*1024; | |
14635 | } else { | |
14636 | /* XXX DSPC is limited to 4k tiled */ | |
14637 | return 8*1024; | |
14638 | } | |
14639 | } | |
14640 | ||
b5ea642a DV |
14641 | static int intel_framebuffer_init(struct drm_device *dev, |
14642 | struct intel_framebuffer *intel_fb, | |
14643 | struct drm_mode_fb_cmd2 *mode_cmd, | |
14644 | struct drm_i915_gem_object *obj) | |
79e53945 | 14645 | { |
7b49f948 | 14646 | struct drm_i915_private *dev_priv = to_i915(dev); |
6761dd31 | 14647 | unsigned int aligned_height; |
79e53945 | 14648 | int ret; |
b321803d | 14649 | u32 pitch_limit, stride_alignment; |
79e53945 | 14650 | |
dd4916c5 DV |
14651 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
14652 | ||
2a80eada DV |
14653 | if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) { |
14654 | /* Enforce that fb modifier and tiling mode match, but only for | |
14655 | * X-tiled. This is needed for FBC. */ | |
14656 | if (!!(obj->tiling_mode == I915_TILING_X) != | |
14657 | !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) { | |
14658 | DRM_DEBUG("tiling_mode doesn't match fb modifier\n"); | |
14659 | return -EINVAL; | |
14660 | } | |
14661 | } else { | |
14662 | if (obj->tiling_mode == I915_TILING_X) | |
14663 | mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED; | |
14664 | else if (obj->tiling_mode == I915_TILING_Y) { | |
14665 | DRM_DEBUG("No Y tiling for legacy addfb\n"); | |
14666 | return -EINVAL; | |
14667 | } | |
14668 | } | |
14669 | ||
9a8f0a12 TU |
14670 | /* Passed in modifier sanity checking. */ |
14671 | switch (mode_cmd->modifier[0]) { | |
14672 | case I915_FORMAT_MOD_Y_TILED: | |
14673 | case I915_FORMAT_MOD_Yf_TILED: | |
14674 | if (INTEL_INFO(dev)->gen < 9) { | |
14675 | DRM_DEBUG("Unsupported tiling 0x%llx!\n", | |
14676 | mode_cmd->modifier[0]); | |
14677 | return -EINVAL; | |
14678 | } | |
14679 | case DRM_FORMAT_MOD_NONE: | |
14680 | case I915_FORMAT_MOD_X_TILED: | |
14681 | break; | |
14682 | default: | |
c0f40428 JB |
14683 | DRM_DEBUG("Unsupported fb modifier 0x%llx!\n", |
14684 | mode_cmd->modifier[0]); | |
57cd6508 | 14685 | return -EINVAL; |
c16ed4be | 14686 | } |
57cd6508 | 14687 | |
7b49f948 VS |
14688 | stride_alignment = intel_fb_stride_alignment(dev_priv, |
14689 | mode_cmd->modifier[0], | |
b321803d DL |
14690 | mode_cmd->pixel_format); |
14691 | if (mode_cmd->pitches[0] & (stride_alignment - 1)) { | |
14692 | DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n", | |
14693 | mode_cmd->pitches[0], stride_alignment); | |
57cd6508 | 14694 | return -EINVAL; |
c16ed4be | 14695 | } |
57cd6508 | 14696 | |
b321803d DL |
14697 | pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0], |
14698 | mode_cmd->pixel_format); | |
a35cdaa0 | 14699 | if (mode_cmd->pitches[0] > pitch_limit) { |
b321803d DL |
14700 | DRM_DEBUG("%s pitch (%u) must be at less than %d\n", |
14701 | mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ? | |
2a80eada | 14702 | "tiled" : "linear", |
a35cdaa0 | 14703 | mode_cmd->pitches[0], pitch_limit); |
5d7bd705 | 14704 | return -EINVAL; |
c16ed4be | 14705 | } |
5d7bd705 | 14706 | |
2a80eada | 14707 | if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED && |
c16ed4be CW |
14708 | mode_cmd->pitches[0] != obj->stride) { |
14709 | DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n", | |
14710 | mode_cmd->pitches[0], obj->stride); | |
5d7bd705 | 14711 | return -EINVAL; |
c16ed4be | 14712 | } |
5d7bd705 | 14713 | |
57779d06 | 14714 | /* Reject formats not supported by any plane early. */ |
308e5bcb | 14715 | switch (mode_cmd->pixel_format) { |
57779d06 | 14716 | case DRM_FORMAT_C8: |
04b3924d VS |
14717 | case DRM_FORMAT_RGB565: |
14718 | case DRM_FORMAT_XRGB8888: | |
14719 | case DRM_FORMAT_ARGB8888: | |
57779d06 VS |
14720 | break; |
14721 | case DRM_FORMAT_XRGB1555: | |
c16ed4be | 14722 | if (INTEL_INFO(dev)->gen > 3) { |
4ee62c76 VS |
14723 | DRM_DEBUG("unsupported pixel format: %s\n", |
14724 | drm_get_format_name(mode_cmd->pixel_format)); | |
57779d06 | 14725 | return -EINVAL; |
c16ed4be | 14726 | } |
57779d06 | 14727 | break; |
57779d06 | 14728 | case DRM_FORMAT_ABGR8888: |
666a4537 WB |
14729 | if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) && |
14730 | INTEL_INFO(dev)->gen < 9) { | |
6c0fd451 DL |
14731 | DRM_DEBUG("unsupported pixel format: %s\n", |
14732 | drm_get_format_name(mode_cmd->pixel_format)); | |
14733 | return -EINVAL; | |
14734 | } | |
14735 | break; | |
14736 | case DRM_FORMAT_XBGR8888: | |
04b3924d | 14737 | case DRM_FORMAT_XRGB2101010: |
57779d06 | 14738 | case DRM_FORMAT_XBGR2101010: |
c16ed4be | 14739 | if (INTEL_INFO(dev)->gen < 4) { |
4ee62c76 VS |
14740 | DRM_DEBUG("unsupported pixel format: %s\n", |
14741 | drm_get_format_name(mode_cmd->pixel_format)); | |
57779d06 | 14742 | return -EINVAL; |
c16ed4be | 14743 | } |
b5626747 | 14744 | break; |
7531208b | 14745 | case DRM_FORMAT_ABGR2101010: |
666a4537 | 14746 | if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) { |
7531208b DL |
14747 | DRM_DEBUG("unsupported pixel format: %s\n", |
14748 | drm_get_format_name(mode_cmd->pixel_format)); | |
14749 | return -EINVAL; | |
14750 | } | |
14751 | break; | |
04b3924d VS |
14752 | case DRM_FORMAT_YUYV: |
14753 | case DRM_FORMAT_UYVY: | |
14754 | case DRM_FORMAT_YVYU: | |
14755 | case DRM_FORMAT_VYUY: | |
c16ed4be | 14756 | if (INTEL_INFO(dev)->gen < 5) { |
4ee62c76 VS |
14757 | DRM_DEBUG("unsupported pixel format: %s\n", |
14758 | drm_get_format_name(mode_cmd->pixel_format)); | |
57779d06 | 14759 | return -EINVAL; |
c16ed4be | 14760 | } |
57cd6508 CW |
14761 | break; |
14762 | default: | |
4ee62c76 VS |
14763 | DRM_DEBUG("unsupported pixel format: %s\n", |
14764 | drm_get_format_name(mode_cmd->pixel_format)); | |
57cd6508 CW |
14765 | return -EINVAL; |
14766 | } | |
14767 | ||
90f9a336 VS |
14768 | /* FIXME need to adjust LINOFF/TILEOFF accordingly. */ |
14769 | if (mode_cmd->offsets[0] != 0) | |
14770 | return -EINVAL; | |
14771 | ||
ec2c981e | 14772 | aligned_height = intel_fb_align_height(dev, mode_cmd->height, |
091df6cb DV |
14773 | mode_cmd->pixel_format, |
14774 | mode_cmd->modifier[0]); | |
53155c0a DV |
14775 | /* FIXME drm helper for size checks (especially planar formats)? */ |
14776 | if (obj->base.size < aligned_height * mode_cmd->pitches[0]) | |
14777 | return -EINVAL; | |
14778 | ||
c7d73f6a DV |
14779 | drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd); |
14780 | intel_fb->obj = obj; | |
14781 | ||
2d7a215f VS |
14782 | intel_fill_fb_info(dev_priv, &intel_fb->base); |
14783 | ||
79e53945 JB |
14784 | ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs); |
14785 | if (ret) { | |
14786 | DRM_ERROR("framebuffer init failed %d\n", ret); | |
14787 | return ret; | |
14788 | } | |
14789 | ||
0b05e1e0 VS |
14790 | intel_fb->obj->framebuffer_references++; |
14791 | ||
79e53945 JB |
14792 | return 0; |
14793 | } | |
14794 | ||
79e53945 JB |
14795 | static struct drm_framebuffer * |
14796 | intel_user_framebuffer_create(struct drm_device *dev, | |
14797 | struct drm_file *filp, | |
1eb83451 | 14798 | const struct drm_mode_fb_cmd2 *user_mode_cmd) |
79e53945 | 14799 | { |
dcb1394e | 14800 | struct drm_framebuffer *fb; |
05394f39 | 14801 | struct drm_i915_gem_object *obj; |
76dc3769 | 14802 | struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd; |
79e53945 | 14803 | |
308e5bcb | 14804 | obj = to_intel_bo(drm_gem_object_lookup(dev, filp, |
76dc3769 | 14805 | mode_cmd.handles[0])); |
c8725226 | 14806 | if (&obj->base == NULL) |
cce13ff7 | 14807 | return ERR_PTR(-ENOENT); |
79e53945 | 14808 | |
92907cbb | 14809 | fb = intel_framebuffer_create(dev, &mode_cmd, obj); |
dcb1394e LW |
14810 | if (IS_ERR(fb)) |
14811 | drm_gem_object_unreference_unlocked(&obj->base); | |
14812 | ||
14813 | return fb; | |
79e53945 JB |
14814 | } |
14815 | ||
0695726e | 14816 | #ifndef CONFIG_DRM_FBDEV_EMULATION |
0632fef6 | 14817 | static inline void intel_fbdev_output_poll_changed(struct drm_device *dev) |
4520f53a DV |
14818 | { |
14819 | } | |
14820 | #endif | |
14821 | ||
79e53945 | 14822 | static const struct drm_mode_config_funcs intel_mode_funcs = { |
79e53945 | 14823 | .fb_create = intel_user_framebuffer_create, |
0632fef6 | 14824 | .output_poll_changed = intel_fbdev_output_poll_changed, |
5ee67f1c MR |
14825 | .atomic_check = intel_atomic_check, |
14826 | .atomic_commit = intel_atomic_commit, | |
de419ab6 ML |
14827 | .atomic_state_alloc = intel_atomic_state_alloc, |
14828 | .atomic_state_clear = intel_atomic_state_clear, | |
79e53945 JB |
14829 | }; |
14830 | ||
88212941 ID |
14831 | /** |
14832 | * intel_init_display_hooks - initialize the display modesetting hooks | |
14833 | * @dev_priv: device private | |
14834 | */ | |
14835 | void intel_init_display_hooks(struct drm_i915_private *dev_priv) | |
e70236a8 | 14836 | { |
88212941 | 14837 | if (INTEL_INFO(dev_priv)->gen >= 9) { |
bc8d7dff | 14838 | dev_priv->display.get_pipe_config = haswell_get_pipe_config; |
5724dbd1 DL |
14839 | dev_priv->display.get_initial_plane_config = |
14840 | skylake_get_initial_plane_config; | |
bc8d7dff DL |
14841 | dev_priv->display.crtc_compute_clock = |
14842 | haswell_crtc_compute_clock; | |
14843 | dev_priv->display.crtc_enable = haswell_crtc_enable; | |
14844 | dev_priv->display.crtc_disable = haswell_crtc_disable; | |
88212941 | 14845 | } else if (HAS_DDI(dev_priv)) { |
0e8ffe1b | 14846 | dev_priv->display.get_pipe_config = haswell_get_pipe_config; |
5724dbd1 DL |
14847 | dev_priv->display.get_initial_plane_config = |
14848 | ironlake_get_initial_plane_config; | |
797d0259 ACO |
14849 | dev_priv->display.crtc_compute_clock = |
14850 | haswell_crtc_compute_clock; | |
4f771f10 PZ |
14851 | dev_priv->display.crtc_enable = haswell_crtc_enable; |
14852 | dev_priv->display.crtc_disable = haswell_crtc_disable; | |
88212941 | 14853 | } else if (HAS_PCH_SPLIT(dev_priv)) { |
0e8ffe1b | 14854 | dev_priv->display.get_pipe_config = ironlake_get_pipe_config; |
5724dbd1 DL |
14855 | dev_priv->display.get_initial_plane_config = |
14856 | ironlake_get_initial_plane_config; | |
3fb37703 ACO |
14857 | dev_priv->display.crtc_compute_clock = |
14858 | ironlake_crtc_compute_clock; | |
76e5a89c DV |
14859 | dev_priv->display.crtc_enable = ironlake_crtc_enable; |
14860 | dev_priv->display.crtc_disable = ironlake_crtc_disable; | |
65b3d6a9 | 14861 | } else if (IS_CHERRYVIEW(dev_priv)) { |
89b667f8 | 14862 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; |
5724dbd1 DL |
14863 | dev_priv->display.get_initial_plane_config = |
14864 | i9xx_get_initial_plane_config; | |
65b3d6a9 ACO |
14865 | dev_priv->display.crtc_compute_clock = chv_crtc_compute_clock; |
14866 | dev_priv->display.crtc_enable = valleyview_crtc_enable; | |
14867 | dev_priv->display.crtc_disable = i9xx_crtc_disable; | |
14868 | } else if (IS_VALLEYVIEW(dev_priv)) { | |
14869 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; | |
14870 | dev_priv->display.get_initial_plane_config = | |
14871 | i9xx_get_initial_plane_config; | |
14872 | dev_priv->display.crtc_compute_clock = vlv_crtc_compute_clock; | |
89b667f8 JB |
14873 | dev_priv->display.crtc_enable = valleyview_crtc_enable; |
14874 | dev_priv->display.crtc_disable = i9xx_crtc_disable; | |
19ec6693 ACO |
14875 | } else if (IS_G4X(dev_priv)) { |
14876 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; | |
14877 | dev_priv->display.get_initial_plane_config = | |
14878 | i9xx_get_initial_plane_config; | |
14879 | dev_priv->display.crtc_compute_clock = g4x_crtc_compute_clock; | |
14880 | dev_priv->display.crtc_enable = i9xx_crtc_enable; | |
14881 | dev_priv->display.crtc_disable = i9xx_crtc_disable; | |
70e8aa21 ACO |
14882 | } else if (IS_PINEVIEW(dev_priv)) { |
14883 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; | |
14884 | dev_priv->display.get_initial_plane_config = | |
14885 | i9xx_get_initial_plane_config; | |
14886 | dev_priv->display.crtc_compute_clock = pnv_crtc_compute_clock; | |
14887 | dev_priv->display.crtc_enable = i9xx_crtc_enable; | |
14888 | dev_priv->display.crtc_disable = i9xx_crtc_disable; | |
81c97f52 | 14889 | } else if (!IS_GEN2(dev_priv)) { |
0e8ffe1b | 14890 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; |
5724dbd1 DL |
14891 | dev_priv->display.get_initial_plane_config = |
14892 | i9xx_get_initial_plane_config; | |
d6dfee7a | 14893 | dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock; |
76e5a89c DV |
14894 | dev_priv->display.crtc_enable = i9xx_crtc_enable; |
14895 | dev_priv->display.crtc_disable = i9xx_crtc_disable; | |
81c97f52 ACO |
14896 | } else { |
14897 | dev_priv->display.get_pipe_config = i9xx_get_pipe_config; | |
14898 | dev_priv->display.get_initial_plane_config = | |
14899 | i9xx_get_initial_plane_config; | |
14900 | dev_priv->display.crtc_compute_clock = i8xx_crtc_compute_clock; | |
14901 | dev_priv->display.crtc_enable = i9xx_crtc_enable; | |
14902 | dev_priv->display.crtc_disable = i9xx_crtc_disable; | |
f564048e | 14903 | } |
e70236a8 | 14904 | |
e70236a8 | 14905 | /* Returns the core display clock speed */ |
88212941 | 14906 | if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) |
1652d19e VS |
14907 | dev_priv->display.get_display_clock_speed = |
14908 | skylake_get_display_clock_speed; | |
88212941 | 14909 | else if (IS_BROXTON(dev_priv)) |
acd3f3d3 BP |
14910 | dev_priv->display.get_display_clock_speed = |
14911 | broxton_get_display_clock_speed; | |
88212941 | 14912 | else if (IS_BROADWELL(dev_priv)) |
1652d19e VS |
14913 | dev_priv->display.get_display_clock_speed = |
14914 | broadwell_get_display_clock_speed; | |
88212941 | 14915 | else if (IS_HASWELL(dev_priv)) |
1652d19e VS |
14916 | dev_priv->display.get_display_clock_speed = |
14917 | haswell_get_display_clock_speed; | |
88212941 | 14918 | else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
25eb05fc JB |
14919 | dev_priv->display.get_display_clock_speed = |
14920 | valleyview_get_display_clock_speed; | |
88212941 | 14921 | else if (IS_GEN5(dev_priv)) |
b37a6434 VS |
14922 | dev_priv->display.get_display_clock_speed = |
14923 | ilk_get_display_clock_speed; | |
88212941 ID |
14924 | else if (IS_I945G(dev_priv) || IS_BROADWATER(dev_priv) || |
14925 | IS_GEN6(dev_priv) || IS_IVYBRIDGE(dev_priv)) | |
e70236a8 JB |
14926 | dev_priv->display.get_display_clock_speed = |
14927 | i945_get_display_clock_speed; | |
88212941 | 14928 | else if (IS_GM45(dev_priv)) |
34edce2f VS |
14929 | dev_priv->display.get_display_clock_speed = |
14930 | gm45_get_display_clock_speed; | |
88212941 | 14931 | else if (IS_CRESTLINE(dev_priv)) |
34edce2f VS |
14932 | dev_priv->display.get_display_clock_speed = |
14933 | i965gm_get_display_clock_speed; | |
88212941 | 14934 | else if (IS_PINEVIEW(dev_priv)) |
34edce2f VS |
14935 | dev_priv->display.get_display_clock_speed = |
14936 | pnv_get_display_clock_speed; | |
88212941 | 14937 | else if (IS_G33(dev_priv) || IS_G4X(dev_priv)) |
34edce2f VS |
14938 | dev_priv->display.get_display_clock_speed = |
14939 | g33_get_display_clock_speed; | |
88212941 | 14940 | else if (IS_I915G(dev_priv)) |
e70236a8 JB |
14941 | dev_priv->display.get_display_clock_speed = |
14942 | i915_get_display_clock_speed; | |
88212941 | 14943 | else if (IS_I945GM(dev_priv) || IS_845G(dev_priv)) |
e70236a8 JB |
14944 | dev_priv->display.get_display_clock_speed = |
14945 | i9xx_misc_get_display_clock_speed; | |
88212941 | 14946 | else if (IS_I915GM(dev_priv)) |
e70236a8 JB |
14947 | dev_priv->display.get_display_clock_speed = |
14948 | i915gm_get_display_clock_speed; | |
88212941 | 14949 | else if (IS_I865G(dev_priv)) |
e70236a8 JB |
14950 | dev_priv->display.get_display_clock_speed = |
14951 | i865_get_display_clock_speed; | |
88212941 | 14952 | else if (IS_I85X(dev_priv)) |
e70236a8 | 14953 | dev_priv->display.get_display_clock_speed = |
1b1d2716 | 14954 | i85x_get_display_clock_speed; |
623e01e5 | 14955 | else { /* 830 */ |
88212941 | 14956 | WARN(!IS_I830(dev_priv), "Unknown platform. Assuming 133 MHz CDCLK\n"); |
e70236a8 JB |
14957 | dev_priv->display.get_display_clock_speed = |
14958 | i830_get_display_clock_speed; | |
623e01e5 | 14959 | } |
e70236a8 | 14960 | |
88212941 | 14961 | if (IS_GEN5(dev_priv)) { |
3bb11b53 | 14962 | dev_priv->display.fdi_link_train = ironlake_fdi_link_train; |
88212941 | 14963 | } else if (IS_GEN6(dev_priv)) { |
3bb11b53 | 14964 | dev_priv->display.fdi_link_train = gen6_fdi_link_train; |
88212941 | 14965 | } else if (IS_IVYBRIDGE(dev_priv)) { |
3bb11b53 SJ |
14966 | /* FIXME: detect B0+ stepping and use auto training */ |
14967 | dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train; | |
88212941 | 14968 | } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) { |
3bb11b53 | 14969 | dev_priv->display.fdi_link_train = hsw_fdi_link_train; |
88212941 | 14970 | if (IS_BROADWELL(dev_priv)) { |
27c329ed ML |
14971 | dev_priv->display.modeset_commit_cdclk = |
14972 | broadwell_modeset_commit_cdclk; | |
14973 | dev_priv->display.modeset_calc_cdclk = | |
14974 | broadwell_modeset_calc_cdclk; | |
14975 | } | |
88212941 | 14976 | } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
27c329ed ML |
14977 | dev_priv->display.modeset_commit_cdclk = |
14978 | valleyview_modeset_commit_cdclk; | |
14979 | dev_priv->display.modeset_calc_cdclk = | |
14980 | valleyview_modeset_calc_cdclk; | |
88212941 | 14981 | } else if (IS_BROXTON(dev_priv)) { |
27c329ed ML |
14982 | dev_priv->display.modeset_commit_cdclk = |
14983 | broxton_modeset_commit_cdclk; | |
14984 | dev_priv->display.modeset_calc_cdclk = | |
14985 | broxton_modeset_calc_cdclk; | |
e70236a8 | 14986 | } |
8c9f3aaf | 14987 | |
88212941 | 14988 | switch (INTEL_INFO(dev_priv)->gen) { |
8c9f3aaf JB |
14989 | case 2: |
14990 | dev_priv->display.queue_flip = intel_gen2_queue_flip; | |
14991 | break; | |
14992 | ||
14993 | case 3: | |
14994 | dev_priv->display.queue_flip = intel_gen3_queue_flip; | |
14995 | break; | |
14996 | ||
14997 | case 4: | |
14998 | case 5: | |
14999 | dev_priv->display.queue_flip = intel_gen4_queue_flip; | |
15000 | break; | |
15001 | ||
15002 | case 6: | |
15003 | dev_priv->display.queue_flip = intel_gen6_queue_flip; | |
15004 | break; | |
7c9017e5 | 15005 | case 7: |
4e0bbc31 | 15006 | case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */ |
7c9017e5 JB |
15007 | dev_priv->display.queue_flip = intel_gen7_queue_flip; |
15008 | break; | |
830c81db | 15009 | case 9: |
ba343e02 TU |
15010 | /* Drop through - unsupported since execlist only. */ |
15011 | default: | |
15012 | /* Default just returns -ENODEV to indicate unsupported */ | |
15013 | dev_priv->display.queue_flip = intel_default_queue_flip; | |
8c9f3aaf | 15014 | } |
e70236a8 JB |
15015 | } |
15016 | ||
b690e96c JB |
15017 | /* |
15018 | * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend, | |
15019 | * resume, or other times. This quirk makes sure that's the case for | |
15020 | * affected systems. | |
15021 | */ | |
0206e353 | 15022 | static void quirk_pipea_force(struct drm_device *dev) |
b690e96c JB |
15023 | { |
15024 | struct drm_i915_private *dev_priv = dev->dev_private; | |
15025 | ||
15026 | dev_priv->quirks |= QUIRK_PIPEA_FORCE; | |
bc0daf48 | 15027 | DRM_INFO("applying pipe a force quirk\n"); |
b690e96c JB |
15028 | } |
15029 | ||
b6b5d049 VS |
15030 | static void quirk_pipeb_force(struct drm_device *dev) |
15031 | { | |
15032 | struct drm_i915_private *dev_priv = dev->dev_private; | |
15033 | ||
15034 | dev_priv->quirks |= QUIRK_PIPEB_FORCE; | |
15035 | DRM_INFO("applying pipe b force quirk\n"); | |
15036 | } | |
15037 | ||
435793df KP |
15038 | /* |
15039 | * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason | |
15040 | */ | |
15041 | static void quirk_ssc_force_disable(struct drm_device *dev) | |
15042 | { | |
15043 | struct drm_i915_private *dev_priv = dev->dev_private; | |
15044 | dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE; | |
bc0daf48 | 15045 | DRM_INFO("applying lvds SSC disable quirk\n"); |
435793df KP |
15046 | } |
15047 | ||
4dca20ef | 15048 | /* |
5a15ab5b CE |
15049 | * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight |
15050 | * brightness value | |
4dca20ef CE |
15051 | */ |
15052 | static void quirk_invert_brightness(struct drm_device *dev) | |
15053 | { | |
15054 | struct drm_i915_private *dev_priv = dev->dev_private; | |
15055 | dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS; | |
bc0daf48 | 15056 | DRM_INFO("applying inverted panel brightness quirk\n"); |
435793df KP |
15057 | } |
15058 | ||
9c72cc6f SD |
15059 | /* Some VBT's incorrectly indicate no backlight is present */ |
15060 | static void quirk_backlight_present(struct drm_device *dev) | |
15061 | { | |
15062 | struct drm_i915_private *dev_priv = dev->dev_private; | |
15063 | dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT; | |
15064 | DRM_INFO("applying backlight present quirk\n"); | |
15065 | } | |
15066 | ||
b690e96c JB |
15067 | struct intel_quirk { |
15068 | int device; | |
15069 | int subsystem_vendor; | |
15070 | int subsystem_device; | |
15071 | void (*hook)(struct drm_device *dev); | |
15072 | }; | |
15073 | ||
5f85f176 EE |
15074 | /* For systems that don't have a meaningful PCI subdevice/subvendor ID */ |
15075 | struct intel_dmi_quirk { | |
15076 | void (*hook)(struct drm_device *dev); | |
15077 | const struct dmi_system_id (*dmi_id_list)[]; | |
15078 | }; | |
15079 | ||
15080 | static int intel_dmi_reverse_brightness(const struct dmi_system_id *id) | |
15081 | { | |
15082 | DRM_INFO("Backlight polarity reversed on %s\n", id->ident); | |
15083 | return 1; | |
15084 | } | |
15085 | ||
15086 | static const struct intel_dmi_quirk intel_dmi_quirks[] = { | |
15087 | { | |
15088 | .dmi_id_list = &(const struct dmi_system_id[]) { | |
15089 | { | |
15090 | .callback = intel_dmi_reverse_brightness, | |
15091 | .ident = "NCR Corporation", | |
15092 | .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"), | |
15093 | DMI_MATCH(DMI_PRODUCT_NAME, ""), | |
15094 | }, | |
15095 | }, | |
15096 | { } /* terminating entry */ | |
15097 | }, | |
15098 | .hook = quirk_invert_brightness, | |
15099 | }, | |
15100 | }; | |
15101 | ||
c43b5634 | 15102 | static struct intel_quirk intel_quirks[] = { |
b690e96c JB |
15103 | /* Toshiba Protege R-205, S-209 needs pipe A force quirk */ |
15104 | { 0x2592, 0x1179, 0x0001, quirk_pipea_force }, | |
15105 | ||
b690e96c JB |
15106 | /* ThinkPad T60 needs pipe A force quirk (bug #16494) */ |
15107 | { 0x2782, 0x17aa, 0x201a, quirk_pipea_force }, | |
15108 | ||
5f080c0f VS |
15109 | /* 830 needs to leave pipe A & dpll A up */ |
15110 | { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force }, | |
15111 | ||
b6b5d049 VS |
15112 | /* 830 needs to leave pipe B & dpll B up */ |
15113 | { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force }, | |
15114 | ||
435793df KP |
15115 | /* Lenovo U160 cannot use SSC on LVDS */ |
15116 | { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable }, | |
070d329a MAS |
15117 | |
15118 | /* Sony Vaio Y cannot use SSC on LVDS */ | |
15119 | { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable }, | |
5a15ab5b | 15120 | |
be505f64 AH |
15121 | /* Acer Aspire 5734Z must invert backlight brightness */ |
15122 | { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness }, | |
15123 | ||
15124 | /* Acer/eMachines G725 */ | |
15125 | { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness }, | |
15126 | ||
15127 | /* Acer/eMachines e725 */ | |
15128 | { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness }, | |
15129 | ||
15130 | /* Acer/Packard Bell NCL20 */ | |
15131 | { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness }, | |
15132 | ||
15133 | /* Acer Aspire 4736Z */ | |
15134 | { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness }, | |
0f540c3a JN |
15135 | |
15136 | /* Acer Aspire 5336 */ | |
15137 | { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness }, | |
2e93a1aa SD |
15138 | |
15139 | /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */ | |
15140 | { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present }, | |
d4967d8c | 15141 | |
dfb3d47b SD |
15142 | /* Acer C720 Chromebook (Core i3 4005U) */ |
15143 | { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present }, | |
15144 | ||
b2a9601c | 15145 | /* Apple Macbook 2,1 (Core 2 T7400) */ |
15146 | { 0x27a2, 0x8086, 0x7270, quirk_backlight_present }, | |
15147 | ||
1b9448b0 JN |
15148 | /* Apple Macbook 4,1 */ |
15149 | { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present }, | |
15150 | ||
d4967d8c SD |
15151 | /* Toshiba CB35 Chromebook (Celeron 2955U) */ |
15152 | { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present }, | |
724cb06f SD |
15153 | |
15154 | /* HP Chromebook 14 (Celeron 2955U) */ | |
15155 | { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present }, | |
cf6f0af9 JN |
15156 | |
15157 | /* Dell Chromebook 11 */ | |
15158 | { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present }, | |
9be64eee JN |
15159 | |
15160 | /* Dell Chromebook 11 (2015 version) */ | |
15161 | { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present }, | |
b690e96c JB |
15162 | }; |
15163 | ||
15164 | static void intel_init_quirks(struct drm_device *dev) | |
15165 | { | |
15166 | struct pci_dev *d = dev->pdev; | |
15167 | int i; | |
15168 | ||
15169 | for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) { | |
15170 | struct intel_quirk *q = &intel_quirks[i]; | |
15171 | ||
15172 | if (d->device == q->device && | |
15173 | (d->subsystem_vendor == q->subsystem_vendor || | |
15174 | q->subsystem_vendor == PCI_ANY_ID) && | |
15175 | (d->subsystem_device == q->subsystem_device || | |
15176 | q->subsystem_device == PCI_ANY_ID)) | |
15177 | q->hook(dev); | |
15178 | } | |
5f85f176 EE |
15179 | for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) { |
15180 | if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0) | |
15181 | intel_dmi_quirks[i].hook(dev); | |
15182 | } | |
b690e96c JB |
15183 | } |
15184 | ||
9cce37f4 JB |
15185 | /* Disable the VGA plane that we never use */ |
15186 | static void i915_disable_vga(struct drm_device *dev) | |
15187 | { | |
15188 | struct drm_i915_private *dev_priv = dev->dev_private; | |
15189 | u8 sr1; | |
f0f59a00 | 15190 | i915_reg_t vga_reg = i915_vgacntrl_reg(dev); |
9cce37f4 | 15191 | |
2b37c616 | 15192 | /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */ |
9cce37f4 | 15193 | vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO); |
3fdcf431 | 15194 | outb(SR01, VGA_SR_INDEX); |
9cce37f4 JB |
15195 | sr1 = inb(VGA_SR_DATA); |
15196 | outb(sr1 | 1<<5, VGA_SR_DATA); | |
15197 | vga_put(dev->pdev, VGA_RSRC_LEGACY_IO); | |
15198 | udelay(300); | |
15199 | ||
01f5a626 | 15200 | I915_WRITE(vga_reg, VGA_DISP_DISABLE); |
9cce37f4 JB |
15201 | POSTING_READ(vga_reg); |
15202 | } | |
15203 | ||
f817586c DV |
15204 | void intel_modeset_init_hw(struct drm_device *dev) |
15205 | { | |
1a617b77 ML |
15206 | struct drm_i915_private *dev_priv = dev->dev_private; |
15207 | ||
b6283055 | 15208 | intel_update_cdclk(dev); |
1a617b77 ML |
15209 | |
15210 | dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq; | |
15211 | ||
f817586c | 15212 | intel_init_clock_gating(dev); |
8090c6b9 | 15213 | intel_enable_gt_powersave(dev); |
f817586c DV |
15214 | } |
15215 | ||
d93c0372 MR |
15216 | /* |
15217 | * Calculate what we think the watermarks should be for the state we've read | |
15218 | * out of the hardware and then immediately program those watermarks so that | |
15219 | * we ensure the hardware settings match our internal state. | |
15220 | * | |
15221 | * We can calculate what we think WM's should be by creating a duplicate of the | |
15222 | * current state (which was constructed during hardware readout) and running it | |
15223 | * through the atomic check code to calculate new watermark values in the | |
15224 | * state object. | |
15225 | */ | |
15226 | static void sanitize_watermarks(struct drm_device *dev) | |
15227 | { | |
15228 | struct drm_i915_private *dev_priv = to_i915(dev); | |
15229 | struct drm_atomic_state *state; | |
15230 | struct drm_crtc *crtc; | |
15231 | struct drm_crtc_state *cstate; | |
15232 | struct drm_modeset_acquire_ctx ctx; | |
15233 | int ret; | |
15234 | int i; | |
15235 | ||
15236 | /* Only supported on platforms that use atomic watermark design */ | |
ed4a6a7c | 15237 | if (!dev_priv->display.optimize_watermarks) |
d93c0372 MR |
15238 | return; |
15239 | ||
15240 | /* | |
15241 | * We need to hold connection_mutex before calling duplicate_state so | |
15242 | * that the connector loop is protected. | |
15243 | */ | |
15244 | drm_modeset_acquire_init(&ctx, 0); | |
15245 | retry: | |
0cd1262d | 15246 | ret = drm_modeset_lock_all_ctx(dev, &ctx); |
d93c0372 MR |
15247 | if (ret == -EDEADLK) { |
15248 | drm_modeset_backoff(&ctx); | |
15249 | goto retry; | |
15250 | } else if (WARN_ON(ret)) { | |
0cd1262d | 15251 | goto fail; |
d93c0372 MR |
15252 | } |
15253 | ||
15254 | state = drm_atomic_helper_duplicate_state(dev, &ctx); | |
15255 | if (WARN_ON(IS_ERR(state))) | |
0cd1262d | 15256 | goto fail; |
d93c0372 | 15257 | |
ed4a6a7c MR |
15258 | /* |
15259 | * Hardware readout is the only time we don't want to calculate | |
15260 | * intermediate watermarks (since we don't trust the current | |
15261 | * watermarks). | |
15262 | */ | |
15263 | to_intel_atomic_state(state)->skip_intermediate_wm = true; | |
15264 | ||
d93c0372 MR |
15265 | ret = intel_atomic_check(dev, state); |
15266 | if (ret) { | |
15267 | /* | |
15268 | * If we fail here, it means that the hardware appears to be | |
15269 | * programmed in a way that shouldn't be possible, given our | |
15270 | * understanding of watermark requirements. This might mean a | |
15271 | * mistake in the hardware readout code or a mistake in the | |
15272 | * watermark calculations for a given platform. Raise a WARN | |
15273 | * so that this is noticeable. | |
15274 | * | |
15275 | * If this actually happens, we'll have to just leave the | |
15276 | * BIOS-programmed watermarks untouched and hope for the best. | |
15277 | */ | |
15278 | WARN(true, "Could not determine valid watermarks for inherited state\n"); | |
0cd1262d | 15279 | goto fail; |
d93c0372 MR |
15280 | } |
15281 | ||
15282 | /* Write calculated watermark values back */ | |
15283 | to_i915(dev)->wm.config = to_intel_atomic_state(state)->wm_config; | |
15284 | for_each_crtc_in_state(state, crtc, cstate, i) { | |
15285 | struct intel_crtc_state *cs = to_intel_crtc_state(cstate); | |
15286 | ||
ed4a6a7c MR |
15287 | cs->wm.need_postvbl_update = true; |
15288 | dev_priv->display.optimize_watermarks(cs); | |
d93c0372 MR |
15289 | } |
15290 | ||
15291 | drm_atomic_state_free(state); | |
0cd1262d | 15292 | fail: |
d93c0372 MR |
15293 | drm_modeset_drop_locks(&ctx); |
15294 | drm_modeset_acquire_fini(&ctx); | |
15295 | } | |
15296 | ||
79e53945 JB |
15297 | void intel_modeset_init(struct drm_device *dev) |
15298 | { | |
72e96d64 JL |
15299 | struct drm_i915_private *dev_priv = to_i915(dev); |
15300 | struct i915_ggtt *ggtt = &dev_priv->ggtt; | |
1fe47785 | 15301 | int sprite, ret; |
8cc87b75 | 15302 | enum pipe pipe; |
46f297fb | 15303 | struct intel_crtc *crtc; |
79e53945 JB |
15304 | |
15305 | drm_mode_config_init(dev); | |
15306 | ||
15307 | dev->mode_config.min_width = 0; | |
15308 | dev->mode_config.min_height = 0; | |
15309 | ||
019d96cb DA |
15310 | dev->mode_config.preferred_depth = 24; |
15311 | dev->mode_config.prefer_shadow = 1; | |
15312 | ||
25bab385 TU |
15313 | dev->mode_config.allow_fb_modifiers = true; |
15314 | ||
e6ecefaa | 15315 | dev->mode_config.funcs = &intel_mode_funcs; |
79e53945 | 15316 | |
b690e96c JB |
15317 | intel_init_quirks(dev); |
15318 | ||
1fa61106 ED |
15319 | intel_init_pm(dev); |
15320 | ||
e3c74757 BW |
15321 | if (INTEL_INFO(dev)->num_pipes == 0) |
15322 | return; | |
15323 | ||
69f92f67 LW |
15324 | /* |
15325 | * There may be no VBT; and if the BIOS enabled SSC we can | |
15326 | * just keep using it to avoid unnecessary flicker. Whereas if the | |
15327 | * BIOS isn't using it, don't assume it will work even if the VBT | |
15328 | * indicates as much. | |
15329 | */ | |
15330 | if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) { | |
15331 | bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) & | |
15332 | DREF_SSC1_ENABLE); | |
15333 | ||
15334 | if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) { | |
15335 | DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n", | |
15336 | bios_lvds_use_ssc ? "en" : "dis", | |
15337 | dev_priv->vbt.lvds_use_ssc ? "en" : "dis"); | |
15338 | dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc; | |
15339 | } | |
15340 | } | |
15341 | ||
a6c45cf0 CW |
15342 | if (IS_GEN2(dev)) { |
15343 | dev->mode_config.max_width = 2048; | |
15344 | dev->mode_config.max_height = 2048; | |
15345 | } else if (IS_GEN3(dev)) { | |
5e4d6fa7 KP |
15346 | dev->mode_config.max_width = 4096; |
15347 | dev->mode_config.max_height = 4096; | |
79e53945 | 15348 | } else { |
a6c45cf0 CW |
15349 | dev->mode_config.max_width = 8192; |
15350 | dev->mode_config.max_height = 8192; | |
79e53945 | 15351 | } |
068be561 | 15352 | |
dc41c154 VS |
15353 | if (IS_845G(dev) || IS_I865G(dev)) { |
15354 | dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512; | |
15355 | dev->mode_config.cursor_height = 1023; | |
15356 | } else if (IS_GEN2(dev)) { | |
068be561 DL |
15357 | dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH; |
15358 | dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT; | |
15359 | } else { | |
15360 | dev->mode_config.cursor_width = MAX_CURSOR_WIDTH; | |
15361 | dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT; | |
15362 | } | |
15363 | ||
72e96d64 | 15364 | dev->mode_config.fb_base = ggtt->mappable_base; |
79e53945 | 15365 | |
28c97730 | 15366 | DRM_DEBUG_KMS("%d display pipe%s available.\n", |
7eb552ae BW |
15367 | INTEL_INFO(dev)->num_pipes, |
15368 | INTEL_INFO(dev)->num_pipes > 1 ? "s" : ""); | |
79e53945 | 15369 | |
055e393f | 15370 | for_each_pipe(dev_priv, pipe) { |
8cc87b75 | 15371 | intel_crtc_init(dev, pipe); |
3bdcfc0c | 15372 | for_each_sprite(dev_priv, pipe, sprite) { |
1fe47785 | 15373 | ret = intel_plane_init(dev, pipe, sprite); |
7f1f3851 | 15374 | if (ret) |
06da8da2 | 15375 | DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n", |
1fe47785 | 15376 | pipe_name(pipe), sprite_name(pipe, sprite), ret); |
7f1f3851 | 15377 | } |
79e53945 JB |
15378 | } |
15379 | ||
bfa7df01 | 15380 | intel_update_czclk(dev_priv); |
e7dc33f3 | 15381 | intel_update_rawclk(dev_priv); |
bfa7df01 VS |
15382 | intel_update_cdclk(dev); |
15383 | ||
e72f9fbf | 15384 | intel_shared_dpll_init(dev); |
ee7b9f93 | 15385 | |
9cce37f4 JB |
15386 | /* Just disable it once at startup */ |
15387 | i915_disable_vga(dev); | |
79e53945 | 15388 | intel_setup_outputs(dev); |
11be49eb | 15389 | |
6e9f798d | 15390 | drm_modeset_lock_all(dev); |
043e9bda | 15391 | intel_modeset_setup_hw_state(dev); |
6e9f798d | 15392 | drm_modeset_unlock_all(dev); |
46f297fb | 15393 | |
d3fcc808 | 15394 | for_each_intel_crtc(dev, crtc) { |
eeebeac5 ML |
15395 | struct intel_initial_plane_config plane_config = {}; |
15396 | ||
46f297fb JB |
15397 | if (!crtc->active) |
15398 | continue; | |
15399 | ||
46f297fb | 15400 | /* |
46f297fb JB |
15401 | * Note that reserving the BIOS fb up front prevents us |
15402 | * from stuffing other stolen allocations like the ring | |
15403 | * on top. This prevents some ugliness at boot time, and | |
15404 | * can even allow for smooth boot transitions if the BIOS | |
15405 | * fb is large enough for the active pipe configuration. | |
15406 | */ | |
eeebeac5 ML |
15407 | dev_priv->display.get_initial_plane_config(crtc, |
15408 | &plane_config); | |
15409 | ||
15410 | /* | |
15411 | * If the fb is shared between multiple heads, we'll | |
15412 | * just get the first one. | |
15413 | */ | |
15414 | intel_find_initial_plane_obj(crtc, &plane_config); | |
46f297fb | 15415 | } |
d93c0372 MR |
15416 | |
15417 | /* | |
15418 | * Make sure hardware watermarks really match the state we read out. | |
15419 | * Note that we need to do this after reconstructing the BIOS fb's | |
15420 | * since the watermark calculation done here will use pstate->fb. | |
15421 | */ | |
15422 | sanitize_watermarks(dev); | |
2c7111db CW |
15423 | } |
15424 | ||
7fad798e DV |
15425 | static void intel_enable_pipe_a(struct drm_device *dev) |
15426 | { | |
15427 | struct intel_connector *connector; | |
15428 | struct drm_connector *crt = NULL; | |
15429 | struct intel_load_detect_pipe load_detect_temp; | |
208bf9fd | 15430 | struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx; |
7fad798e DV |
15431 | |
15432 | /* We can't just switch on the pipe A, we need to set things up with a | |
15433 | * proper mode and output configuration. As a gross hack, enable pipe A | |
15434 | * by enabling the load detect pipe once. */ | |
3a3371ff | 15435 | for_each_intel_connector(dev, connector) { |
7fad798e DV |
15436 | if (connector->encoder->type == INTEL_OUTPUT_ANALOG) { |
15437 | crt = &connector->base; | |
15438 | break; | |
15439 | } | |
15440 | } | |
15441 | ||
15442 | if (!crt) | |
15443 | return; | |
15444 | ||
208bf9fd | 15445 | if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx)) |
49172fee | 15446 | intel_release_load_detect_pipe(crt, &load_detect_temp, ctx); |
7fad798e DV |
15447 | } |
15448 | ||
fa555837 DV |
15449 | static bool |
15450 | intel_check_plane_mapping(struct intel_crtc *crtc) | |
15451 | { | |
7eb552ae BW |
15452 | struct drm_device *dev = crtc->base.dev; |
15453 | struct drm_i915_private *dev_priv = dev->dev_private; | |
649636ef | 15454 | u32 val; |
fa555837 | 15455 | |
7eb552ae | 15456 | if (INTEL_INFO(dev)->num_pipes == 1) |
fa555837 DV |
15457 | return true; |
15458 | ||
649636ef | 15459 | val = I915_READ(DSPCNTR(!crtc->plane)); |
fa555837 DV |
15460 | |
15461 | if ((val & DISPLAY_PLANE_ENABLE) && | |
15462 | (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe)) | |
15463 | return false; | |
15464 | ||
15465 | return true; | |
15466 | } | |
15467 | ||
02e93c35 VS |
15468 | static bool intel_crtc_has_encoders(struct intel_crtc *crtc) |
15469 | { | |
15470 | struct drm_device *dev = crtc->base.dev; | |
15471 | struct intel_encoder *encoder; | |
15472 | ||
15473 | for_each_encoder_on_crtc(dev, &crtc->base, encoder) | |
15474 | return true; | |
15475 | ||
15476 | return false; | |
15477 | } | |
15478 | ||
dd756198 VS |
15479 | static bool intel_encoder_has_connectors(struct intel_encoder *encoder) |
15480 | { | |
15481 | struct drm_device *dev = encoder->base.dev; | |
15482 | struct intel_connector *connector; | |
15483 | ||
15484 | for_each_connector_on_encoder(dev, &encoder->base, connector) | |
15485 | return true; | |
15486 | ||
15487 | return false; | |
15488 | } | |
15489 | ||
24929352 DV |
15490 | static void intel_sanitize_crtc(struct intel_crtc *crtc) |
15491 | { | |
15492 | struct drm_device *dev = crtc->base.dev; | |
15493 | struct drm_i915_private *dev_priv = dev->dev_private; | |
4d1de975 | 15494 | enum transcoder cpu_transcoder = crtc->config->cpu_transcoder; |
24929352 | 15495 | |
24929352 | 15496 | /* Clear any frame start delays used for debugging left by the BIOS */ |
4d1de975 JN |
15497 | if (!transcoder_is_dsi(cpu_transcoder)) { |
15498 | i915_reg_t reg = PIPECONF(cpu_transcoder); | |
15499 | ||
15500 | I915_WRITE(reg, | |
15501 | I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK); | |
15502 | } | |
24929352 | 15503 | |
d3eaf884 | 15504 | /* restore vblank interrupts to correct state */ |
9625604c | 15505 | drm_crtc_vblank_reset(&crtc->base); |
d297e103 | 15506 | if (crtc->active) { |
f9cd7b88 VS |
15507 | struct intel_plane *plane; |
15508 | ||
9625604c | 15509 | drm_crtc_vblank_on(&crtc->base); |
f9cd7b88 VS |
15510 | |
15511 | /* Disable everything but the primary plane */ | |
15512 | for_each_intel_plane_on_crtc(dev, crtc, plane) { | |
15513 | if (plane->base.type == DRM_PLANE_TYPE_PRIMARY) | |
15514 | continue; | |
15515 | ||
15516 | plane->disable_plane(&plane->base, &crtc->base); | |
15517 | } | |
9625604c | 15518 | } |
d3eaf884 | 15519 | |
24929352 | 15520 | /* We need to sanitize the plane -> pipe mapping first because this will |
fa555837 DV |
15521 | * disable the crtc (and hence change the state) if it is wrong. Note |
15522 | * that gen4+ has a fixed plane -> pipe mapping. */ | |
15523 | if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) { | |
24929352 DV |
15524 | bool plane; |
15525 | ||
24929352 DV |
15526 | DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n", |
15527 | crtc->base.base.id); | |
15528 | ||
15529 | /* Pipe has the wrong plane attached and the plane is active. | |
15530 | * Temporarily change the plane mapping and disable everything | |
15531 | * ... */ | |
15532 | plane = crtc->plane; | |
b70709a6 | 15533 | to_intel_plane_state(crtc->base.primary->state)->visible = true; |
24929352 | 15534 | crtc->plane = !plane; |
b17d48e2 | 15535 | intel_crtc_disable_noatomic(&crtc->base); |
24929352 | 15536 | crtc->plane = plane; |
24929352 | 15537 | } |
24929352 | 15538 | |
7fad798e DV |
15539 | if (dev_priv->quirks & QUIRK_PIPEA_FORCE && |
15540 | crtc->pipe == PIPE_A && !crtc->active) { | |
15541 | /* BIOS forgot to enable pipe A, this mostly happens after | |
15542 | * resume. Force-enable the pipe to fix this, the update_dpms | |
15543 | * call below we restore the pipe to the right state, but leave | |
15544 | * the required bits on. */ | |
15545 | intel_enable_pipe_a(dev); | |
15546 | } | |
15547 | ||
24929352 DV |
15548 | /* Adjust the state of the output pipe according to whether we |
15549 | * have active connectors/encoders. */ | |
842e0307 | 15550 | if (crtc->active && !intel_crtc_has_encoders(crtc)) |
b17d48e2 | 15551 | intel_crtc_disable_noatomic(&crtc->base); |
24929352 | 15552 | |
a3ed6aad | 15553 | if (crtc->active || HAS_GMCH_DISPLAY(dev)) { |
4cc31489 DV |
15554 | /* |
15555 | * We start out with underrun reporting disabled to avoid races. | |
15556 | * For correct bookkeeping mark this on active crtcs. | |
15557 | * | |
c5ab3bc0 DV |
15558 | * Also on gmch platforms we dont have any hardware bits to |
15559 | * disable the underrun reporting. Which means we need to start | |
15560 | * out with underrun reporting disabled also on inactive pipes, | |
15561 | * since otherwise we'll complain about the garbage we read when | |
15562 | * e.g. coming up after runtime pm. | |
15563 | * | |
4cc31489 DV |
15564 | * No protection against concurrent access is required - at |
15565 | * worst a fifo underrun happens which also sets this to false. | |
15566 | */ | |
15567 | crtc->cpu_fifo_underrun_disabled = true; | |
15568 | crtc->pch_fifo_underrun_disabled = true; | |
15569 | } | |
24929352 DV |
15570 | } |
15571 | ||
15572 | static void intel_sanitize_encoder(struct intel_encoder *encoder) | |
15573 | { | |
15574 | struct intel_connector *connector; | |
15575 | struct drm_device *dev = encoder->base.dev; | |
15576 | ||
15577 | /* We need to check both for a crtc link (meaning that the | |
15578 | * encoder is active and trying to read from a pipe) and the | |
15579 | * pipe itself being active. */ | |
15580 | bool has_active_crtc = encoder->base.crtc && | |
15581 | to_intel_crtc(encoder->base.crtc)->active; | |
15582 | ||
dd756198 | 15583 | if (intel_encoder_has_connectors(encoder) && !has_active_crtc) { |
24929352 DV |
15584 | DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n", |
15585 | encoder->base.base.id, | |
8e329a03 | 15586 | encoder->base.name); |
24929352 DV |
15587 | |
15588 | /* Connector is active, but has no active pipe. This is | |
15589 | * fallout from our resume register restoring. Disable | |
15590 | * the encoder manually again. */ | |
15591 | if (encoder->base.crtc) { | |
15592 | DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n", | |
15593 | encoder->base.base.id, | |
8e329a03 | 15594 | encoder->base.name); |
24929352 | 15595 | encoder->disable(encoder); |
a62d1497 VS |
15596 | if (encoder->post_disable) |
15597 | encoder->post_disable(encoder); | |
24929352 | 15598 | } |
7f1950fb | 15599 | encoder->base.crtc = NULL; |
24929352 DV |
15600 | |
15601 | /* Inconsistent output/port/pipe state happens presumably due to | |
15602 | * a bug in one of the get_hw_state functions. Or someplace else | |
15603 | * in our code, like the register restore mess on resume. Clamp | |
15604 | * things to off as a safer default. */ | |
3a3371ff | 15605 | for_each_intel_connector(dev, connector) { |
24929352 DV |
15606 | if (connector->encoder != encoder) |
15607 | continue; | |
7f1950fb EE |
15608 | connector->base.dpms = DRM_MODE_DPMS_OFF; |
15609 | connector->base.encoder = NULL; | |
24929352 DV |
15610 | } |
15611 | } | |
15612 | /* Enabled encoders without active connectors will be fixed in | |
15613 | * the crtc fixup. */ | |
15614 | } | |
15615 | ||
04098753 | 15616 | void i915_redisable_vga_power_on(struct drm_device *dev) |
0fde901f KM |
15617 | { |
15618 | struct drm_i915_private *dev_priv = dev->dev_private; | |
f0f59a00 | 15619 | i915_reg_t vga_reg = i915_vgacntrl_reg(dev); |
0fde901f | 15620 | |
04098753 ID |
15621 | if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) { |
15622 | DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n"); | |
15623 | i915_disable_vga(dev); | |
15624 | } | |
15625 | } | |
15626 | ||
15627 | void i915_redisable_vga(struct drm_device *dev) | |
15628 | { | |
15629 | struct drm_i915_private *dev_priv = dev->dev_private; | |
15630 | ||
8dc8a27c PZ |
15631 | /* This function can be called both from intel_modeset_setup_hw_state or |
15632 | * at a very early point in our resume sequence, where the power well | |
15633 | * structures are not yet restored. Since this function is at a very | |
15634 | * paranoid "someone might have enabled VGA while we were not looking" | |
15635 | * level, just check if the power well is enabled instead of trying to | |
15636 | * follow the "don't touch the power well if we don't need it" policy | |
15637 | * the rest of the driver uses. */ | |
6392f847 | 15638 | if (!intel_display_power_get_if_enabled(dev_priv, POWER_DOMAIN_VGA)) |
8dc8a27c PZ |
15639 | return; |
15640 | ||
04098753 | 15641 | i915_redisable_vga_power_on(dev); |
6392f847 ID |
15642 | |
15643 | intel_display_power_put(dev_priv, POWER_DOMAIN_VGA); | |
0fde901f KM |
15644 | } |
15645 | ||
f9cd7b88 | 15646 | static bool primary_get_hw_state(struct intel_plane *plane) |
98ec7739 | 15647 | { |
f9cd7b88 | 15648 | struct drm_i915_private *dev_priv = to_i915(plane->base.dev); |
98ec7739 | 15649 | |
f9cd7b88 | 15650 | return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE; |
d032ffa0 ML |
15651 | } |
15652 | ||
f9cd7b88 VS |
15653 | /* FIXME read out full plane state for all planes */ |
15654 | static void readout_plane_state(struct intel_crtc *crtc) | |
d032ffa0 | 15655 | { |
b26d3ea3 | 15656 | struct drm_plane *primary = crtc->base.primary; |
f9cd7b88 | 15657 | struct intel_plane_state *plane_state = |
b26d3ea3 | 15658 | to_intel_plane_state(primary->state); |
d032ffa0 | 15659 | |
19b8d387 | 15660 | plane_state->visible = crtc->active && |
b26d3ea3 ML |
15661 | primary_get_hw_state(to_intel_plane(primary)); |
15662 | ||
15663 | if (plane_state->visible) | |
15664 | crtc->base.state->plane_mask |= 1 << drm_plane_index(primary); | |
98ec7739 VS |
15665 | } |
15666 | ||
30e984df | 15667 | static void intel_modeset_readout_hw_state(struct drm_device *dev) |
24929352 DV |
15668 | { |
15669 | struct drm_i915_private *dev_priv = dev->dev_private; | |
15670 | enum pipe pipe; | |
24929352 DV |
15671 | struct intel_crtc *crtc; |
15672 | struct intel_encoder *encoder; | |
15673 | struct intel_connector *connector; | |
5358901f | 15674 | int i; |
24929352 | 15675 | |
565602d7 ML |
15676 | dev_priv->active_crtcs = 0; |
15677 | ||
d3fcc808 | 15678 | for_each_intel_crtc(dev, crtc) { |
565602d7 ML |
15679 | struct intel_crtc_state *crtc_state = crtc->config; |
15680 | int pixclk = 0; | |
3b117c8f | 15681 | |
565602d7 ML |
15682 | __drm_atomic_helper_crtc_destroy_state(&crtc->base, &crtc_state->base); |
15683 | memset(crtc_state, 0, sizeof(*crtc_state)); | |
15684 | crtc_state->base.crtc = &crtc->base; | |
24929352 | 15685 | |
565602d7 ML |
15686 | crtc_state->base.active = crtc_state->base.enable = |
15687 | dev_priv->display.get_pipe_config(crtc, crtc_state); | |
15688 | ||
15689 | crtc->base.enabled = crtc_state->base.enable; | |
15690 | crtc->active = crtc_state->base.active; | |
15691 | ||
15692 | if (crtc_state->base.active) { | |
15693 | dev_priv->active_crtcs |= 1 << crtc->pipe; | |
15694 | ||
15695 | if (IS_BROADWELL(dev_priv)) { | |
15696 | pixclk = ilk_pipe_pixel_rate(crtc_state); | |
15697 | ||
15698 | /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */ | |
15699 | if (crtc_state->ips_enabled) | |
15700 | pixclk = DIV_ROUND_UP(pixclk * 100, 95); | |
15701 | } else if (IS_VALLEYVIEW(dev_priv) || | |
15702 | IS_CHERRYVIEW(dev_priv) || | |
15703 | IS_BROXTON(dev_priv)) | |
15704 | pixclk = crtc_state->base.adjusted_mode.crtc_clock; | |
15705 | else | |
15706 | WARN_ON(dev_priv->display.modeset_calc_cdclk); | |
15707 | } | |
15708 | ||
15709 | dev_priv->min_pixclk[crtc->pipe] = pixclk; | |
b70709a6 | 15710 | |
f9cd7b88 | 15711 | readout_plane_state(crtc); |
24929352 DV |
15712 | |
15713 | DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n", | |
15714 | crtc->base.base.id, | |
15715 | crtc->active ? "enabled" : "disabled"); | |
15716 | } | |
15717 | ||
5358901f DV |
15718 | for (i = 0; i < dev_priv->num_shared_dpll; i++) { |
15719 | struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i]; | |
15720 | ||
2edd6443 ACO |
15721 | pll->on = pll->funcs.get_hw_state(dev_priv, pll, |
15722 | &pll->config.hw_state); | |
3e369b76 | 15723 | pll->config.crtc_mask = 0; |
d3fcc808 | 15724 | for_each_intel_crtc(dev, crtc) { |
2dd66ebd | 15725 | if (crtc->active && crtc->config->shared_dpll == pll) |
3e369b76 | 15726 | pll->config.crtc_mask |= 1 << crtc->pipe; |
5358901f | 15727 | } |
2dd66ebd | 15728 | pll->active_mask = pll->config.crtc_mask; |
5358901f | 15729 | |
1e6f2ddc | 15730 | DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n", |
3e369b76 | 15731 | pll->name, pll->config.crtc_mask, pll->on); |
5358901f DV |
15732 | } |
15733 | ||
b2784e15 | 15734 | for_each_intel_encoder(dev, encoder) { |
24929352 DV |
15735 | pipe = 0; |
15736 | ||
15737 | if (encoder->get_hw_state(encoder, &pipe)) { | |
045ac3b5 JB |
15738 | crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); |
15739 | encoder->base.crtc = &crtc->base; | |
6e3c9717 | 15740 | encoder->get_config(encoder, crtc->config); |
24929352 DV |
15741 | } else { |
15742 | encoder->base.crtc = NULL; | |
15743 | } | |
15744 | ||
6f2bcceb | 15745 | DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n", |
24929352 | 15746 | encoder->base.base.id, |
8e329a03 | 15747 | encoder->base.name, |
24929352 | 15748 | encoder->base.crtc ? "enabled" : "disabled", |
6f2bcceb | 15749 | pipe_name(pipe)); |
24929352 DV |
15750 | } |
15751 | ||
3a3371ff | 15752 | for_each_intel_connector(dev, connector) { |
24929352 DV |
15753 | if (connector->get_hw_state(connector)) { |
15754 | connector->base.dpms = DRM_MODE_DPMS_ON; | |
2aa974c9 ML |
15755 | |
15756 | encoder = connector->encoder; | |
15757 | connector->base.encoder = &encoder->base; | |
15758 | ||
15759 | if (encoder->base.crtc && | |
15760 | encoder->base.crtc->state->active) { | |
15761 | /* | |
15762 | * This has to be done during hardware readout | |
15763 | * because anything calling .crtc_disable may | |
15764 | * rely on the connector_mask being accurate. | |
15765 | */ | |
15766 | encoder->base.crtc->state->connector_mask |= | |
15767 | 1 << drm_connector_index(&connector->base); | |
e87a52b3 ML |
15768 | encoder->base.crtc->state->encoder_mask |= |
15769 | 1 << drm_encoder_index(&encoder->base); | |
2aa974c9 ML |
15770 | } |
15771 | ||
24929352 DV |
15772 | } else { |
15773 | connector->base.dpms = DRM_MODE_DPMS_OFF; | |
15774 | connector->base.encoder = NULL; | |
15775 | } | |
15776 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n", | |
15777 | connector->base.base.id, | |
c23cc417 | 15778 | connector->base.name, |
24929352 DV |
15779 | connector->base.encoder ? "enabled" : "disabled"); |
15780 | } | |
7f4c6284 VS |
15781 | |
15782 | for_each_intel_crtc(dev, crtc) { | |
15783 | crtc->base.hwmode = crtc->config->base.adjusted_mode; | |
15784 | ||
15785 | memset(&crtc->base.mode, 0, sizeof(crtc->base.mode)); | |
15786 | if (crtc->base.state->active) { | |
15787 | intel_mode_from_pipe_config(&crtc->base.mode, crtc->config); | |
15788 | intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config); | |
15789 | WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode)); | |
15790 | ||
15791 | /* | |
15792 | * The initial mode needs to be set in order to keep | |
15793 | * the atomic core happy. It wants a valid mode if the | |
15794 | * crtc's enabled, so we do the above call. | |
15795 | * | |
15796 | * At this point some state updated by the connectors | |
15797 | * in their ->detect() callback has not run yet, so | |
15798 | * no recalculation can be done yet. | |
15799 | * | |
15800 | * Even if we could do a recalculation and modeset | |
15801 | * right now it would cause a double modeset if | |
15802 | * fbdev or userspace chooses a different initial mode. | |
15803 | * | |
15804 | * If that happens, someone indicated they wanted a | |
15805 | * mode change, which means it's safe to do a full | |
15806 | * recalculation. | |
15807 | */ | |
15808 | crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED; | |
9eca6832 VS |
15809 | |
15810 | drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode); | |
15811 | update_scanline_offset(crtc); | |
7f4c6284 | 15812 | } |
e3b247da VS |
15813 | |
15814 | intel_pipe_config_sanity_check(dev_priv, crtc->config); | |
7f4c6284 | 15815 | } |
30e984df DV |
15816 | } |
15817 | ||
043e9bda ML |
15818 | /* Scan out the current hw modeset state, |
15819 | * and sanitizes it to the current state | |
15820 | */ | |
15821 | static void | |
15822 | intel_modeset_setup_hw_state(struct drm_device *dev) | |
30e984df DV |
15823 | { |
15824 | struct drm_i915_private *dev_priv = dev->dev_private; | |
15825 | enum pipe pipe; | |
30e984df DV |
15826 | struct intel_crtc *crtc; |
15827 | struct intel_encoder *encoder; | |
35c95375 | 15828 | int i; |
30e984df DV |
15829 | |
15830 | intel_modeset_readout_hw_state(dev); | |
24929352 DV |
15831 | |
15832 | /* HW state is read out, now we need to sanitize this mess. */ | |
b2784e15 | 15833 | for_each_intel_encoder(dev, encoder) { |
24929352 DV |
15834 | intel_sanitize_encoder(encoder); |
15835 | } | |
15836 | ||
055e393f | 15837 | for_each_pipe(dev_priv, pipe) { |
24929352 DV |
15838 | crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); |
15839 | intel_sanitize_crtc(crtc); | |
6e3c9717 ACO |
15840 | intel_dump_pipe_config(crtc, crtc->config, |
15841 | "[setup_hw_state]"); | |
24929352 | 15842 | } |
9a935856 | 15843 | |
d29b2f9d ACO |
15844 | intel_modeset_update_connector_atomic_state(dev); |
15845 | ||
35c95375 DV |
15846 | for (i = 0; i < dev_priv->num_shared_dpll; i++) { |
15847 | struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i]; | |
15848 | ||
2dd66ebd | 15849 | if (!pll->on || pll->active_mask) |
35c95375 DV |
15850 | continue; |
15851 | ||
15852 | DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name); | |
15853 | ||
2edd6443 | 15854 | pll->funcs.disable(dev_priv, pll); |
35c95375 DV |
15855 | pll->on = false; |
15856 | } | |
15857 | ||
666a4537 | 15858 | if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) |
6eb1a681 VS |
15859 | vlv_wm_get_hw_state(dev); |
15860 | else if (IS_GEN9(dev)) | |
3078999f PB |
15861 | skl_wm_get_hw_state(dev); |
15862 | else if (HAS_PCH_SPLIT(dev)) | |
243e6a44 | 15863 | ilk_wm_get_hw_state(dev); |
292b990e ML |
15864 | |
15865 | for_each_intel_crtc(dev, crtc) { | |
15866 | unsigned long put_domains; | |
15867 | ||
74bff5f9 | 15868 | put_domains = modeset_get_crtc_power_domains(&crtc->base, crtc->config); |
292b990e ML |
15869 | if (WARN_ON(put_domains)) |
15870 | modeset_put_power_domains(dev_priv, put_domains); | |
15871 | } | |
15872 | intel_display_set_init_power(dev_priv, false); | |
010cf73d PZ |
15873 | |
15874 | intel_fbc_init_pipe_state(dev_priv); | |
043e9bda | 15875 | } |
7d0bc1ea | 15876 | |
043e9bda ML |
15877 | void intel_display_resume(struct drm_device *dev) |
15878 | { | |
e2c8b870 ML |
15879 | struct drm_i915_private *dev_priv = to_i915(dev); |
15880 | struct drm_atomic_state *state = dev_priv->modeset_restore_state; | |
15881 | struct drm_modeset_acquire_ctx ctx; | |
043e9bda | 15882 | int ret; |
e2c8b870 | 15883 | bool setup = false; |
f30da187 | 15884 | |
e2c8b870 | 15885 | dev_priv->modeset_restore_state = NULL; |
043e9bda | 15886 | |
ea49c9ac ML |
15887 | /* |
15888 | * This is a cludge because with real atomic modeset mode_config.mutex | |
15889 | * won't be taken. Unfortunately some probed state like | |
15890 | * audio_codec_enable is still protected by mode_config.mutex, so lock | |
15891 | * it here for now. | |
15892 | */ | |
15893 | mutex_lock(&dev->mode_config.mutex); | |
e2c8b870 | 15894 | drm_modeset_acquire_init(&ctx, 0); |
043e9bda | 15895 | |
e2c8b870 ML |
15896 | retry: |
15897 | ret = drm_modeset_lock_all_ctx(dev, &ctx); | |
043e9bda | 15898 | |
e2c8b870 ML |
15899 | if (ret == 0 && !setup) { |
15900 | setup = true; | |
043e9bda | 15901 | |
e2c8b870 ML |
15902 | intel_modeset_setup_hw_state(dev); |
15903 | i915_redisable_vga(dev); | |
45e2b5f6 | 15904 | } |
8af6cf88 | 15905 | |
e2c8b870 ML |
15906 | if (ret == 0 && state) { |
15907 | struct drm_crtc_state *crtc_state; | |
15908 | struct drm_crtc *crtc; | |
15909 | int i; | |
043e9bda | 15910 | |
e2c8b870 ML |
15911 | state->acquire_ctx = &ctx; |
15912 | ||
15913 | for_each_crtc_in_state(state, crtc, crtc_state, i) { | |
15914 | /* | |
15915 | * Force recalculation even if we restore | |
15916 | * current state. With fast modeset this may not result | |
15917 | * in a modeset when the state is compatible. | |
15918 | */ | |
15919 | crtc_state->mode_changed = true; | |
15920 | } | |
15921 | ||
15922 | ret = drm_atomic_commit(state); | |
043e9bda ML |
15923 | } |
15924 | ||
e2c8b870 ML |
15925 | if (ret == -EDEADLK) { |
15926 | drm_modeset_backoff(&ctx); | |
15927 | goto retry; | |
15928 | } | |
043e9bda | 15929 | |
e2c8b870 ML |
15930 | drm_modeset_drop_locks(&ctx); |
15931 | drm_modeset_acquire_fini(&ctx); | |
ea49c9ac | 15932 | mutex_unlock(&dev->mode_config.mutex); |
043e9bda | 15933 | |
e2c8b870 ML |
15934 | if (ret) { |
15935 | DRM_ERROR("Restoring old state failed with %i\n", ret); | |
15936 | drm_atomic_state_free(state); | |
15937 | } | |
2c7111db CW |
15938 | } |
15939 | ||
15940 | void intel_modeset_gem_init(struct drm_device *dev) | |
15941 | { | |
484b41dd | 15942 | struct drm_crtc *c; |
2ff8fde1 | 15943 | struct drm_i915_gem_object *obj; |
e0d6149b | 15944 | int ret; |
484b41dd | 15945 | |
ae48434c | 15946 | intel_init_gt_powersave(dev); |
ae48434c | 15947 | |
1833b134 | 15948 | intel_modeset_init_hw(dev); |
02e792fb DV |
15949 | |
15950 | intel_setup_overlay(dev); | |
484b41dd JB |
15951 | |
15952 | /* | |
15953 | * Make sure any fbs we allocated at startup are properly | |
15954 | * pinned & fenced. When we do the allocation it's too early | |
15955 | * for this. | |
15956 | */ | |
70e1e0ec | 15957 | for_each_crtc(dev, c) { |
2ff8fde1 MR |
15958 | obj = intel_fb_obj(c->primary->fb); |
15959 | if (obj == NULL) | |
484b41dd JB |
15960 | continue; |
15961 | ||
e0d6149b | 15962 | mutex_lock(&dev->struct_mutex); |
3465c580 VS |
15963 | ret = intel_pin_and_fence_fb_obj(c->primary->fb, |
15964 | c->primary->state->rotation); | |
e0d6149b TU |
15965 | mutex_unlock(&dev->struct_mutex); |
15966 | if (ret) { | |
484b41dd JB |
15967 | DRM_ERROR("failed to pin boot fb on pipe %d\n", |
15968 | to_intel_crtc(c)->pipe); | |
66e514c1 DA |
15969 | drm_framebuffer_unreference(c->primary->fb); |
15970 | c->primary->fb = NULL; | |
36750f28 | 15971 | c->primary->crtc = c->primary->state->crtc = NULL; |
afd65eb4 | 15972 | update_state_fb(c->primary); |
36750f28 | 15973 | c->state->plane_mask &= ~(1 << drm_plane_index(c->primary)); |
484b41dd JB |
15974 | } |
15975 | } | |
0962c3c9 VS |
15976 | |
15977 | intel_backlight_register(dev); | |
79e53945 JB |
15978 | } |
15979 | ||
4932e2c3 ID |
15980 | void intel_connector_unregister(struct intel_connector *intel_connector) |
15981 | { | |
15982 | struct drm_connector *connector = &intel_connector->base; | |
15983 | ||
15984 | intel_panel_destroy_backlight(connector); | |
34ea3d38 | 15985 | drm_connector_unregister(connector); |
4932e2c3 ID |
15986 | } |
15987 | ||
79e53945 JB |
15988 | void intel_modeset_cleanup(struct drm_device *dev) |
15989 | { | |
652c393a | 15990 | struct drm_i915_private *dev_priv = dev->dev_private; |
19c8054c | 15991 | struct intel_connector *connector; |
652c393a | 15992 | |
2eb5252e ID |
15993 | intel_disable_gt_powersave(dev); |
15994 | ||
0962c3c9 VS |
15995 | intel_backlight_unregister(dev); |
15996 | ||
fd0c0642 DV |
15997 | /* |
15998 | * Interrupts and polling as the first thing to avoid creating havoc. | |
2eb5252e | 15999 | * Too much stuff here (turning of connectors, ...) would |
fd0c0642 DV |
16000 | * experience fancy races otherwise. |
16001 | */ | |
2aeb7d3a | 16002 | intel_irq_uninstall(dev_priv); |
eb21b92b | 16003 | |
fd0c0642 DV |
16004 | /* |
16005 | * Due to the hpd irq storm handling the hotplug work can re-arm the | |
16006 | * poll handlers. Hence disable polling after hpd handling is shut down. | |
16007 | */ | |
f87ea761 | 16008 | drm_kms_helper_poll_fini(dev); |
fd0c0642 | 16009 | |
723bfd70 JB |
16010 | intel_unregister_dsm_handler(); |
16011 | ||
c937ab3e | 16012 | intel_fbc_global_disable(dev_priv); |
69341a5e | 16013 | |
1630fe75 CW |
16014 | /* flush any delayed tasks or pending work */ |
16015 | flush_scheduled_work(); | |
16016 | ||
db31af1d | 16017 | /* destroy the backlight and sysfs files before encoders/connectors */ |
19c8054c JN |
16018 | for_each_intel_connector(dev, connector) |
16019 | connector->unregister(connector); | |
d9255d57 | 16020 | |
79e53945 | 16021 | drm_mode_config_cleanup(dev); |
4d7bb011 DV |
16022 | |
16023 | intel_cleanup_overlay(dev); | |
ae48434c | 16024 | |
ae48434c | 16025 | intel_cleanup_gt_powersave(dev); |
f5949141 DV |
16026 | |
16027 | intel_teardown_gmbus(dev); | |
79e53945 JB |
16028 | } |
16029 | ||
f1c79df3 ZW |
16030 | /* |
16031 | * Return which encoder is currently attached for connector. | |
16032 | */ | |
df0e9248 | 16033 | struct drm_encoder *intel_best_encoder(struct drm_connector *connector) |
79e53945 | 16034 | { |
df0e9248 CW |
16035 | return &intel_attached_encoder(connector)->base; |
16036 | } | |
f1c79df3 | 16037 | |
df0e9248 CW |
16038 | void intel_connector_attach_encoder(struct intel_connector *connector, |
16039 | struct intel_encoder *encoder) | |
16040 | { | |
16041 | connector->encoder = encoder; | |
16042 | drm_mode_connector_attach_encoder(&connector->base, | |
16043 | &encoder->base); | |
79e53945 | 16044 | } |
28d52043 DA |
16045 | |
16046 | /* | |
16047 | * set vga decode state - true == enable VGA decode | |
16048 | */ | |
16049 | int intel_modeset_vga_set_state(struct drm_device *dev, bool state) | |
16050 | { | |
16051 | struct drm_i915_private *dev_priv = dev->dev_private; | |
a885b3cc | 16052 | unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL; |
28d52043 DA |
16053 | u16 gmch_ctrl; |
16054 | ||
75fa041d CW |
16055 | if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) { |
16056 | DRM_ERROR("failed to read control word\n"); | |
16057 | return -EIO; | |
16058 | } | |
16059 | ||
c0cc8a55 CW |
16060 | if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state) |
16061 | return 0; | |
16062 | ||
28d52043 DA |
16063 | if (state) |
16064 | gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE; | |
16065 | else | |
16066 | gmch_ctrl |= INTEL_GMCH_VGA_DISABLE; | |
75fa041d CW |
16067 | |
16068 | if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) { | |
16069 | DRM_ERROR("failed to write control word\n"); | |
16070 | return -EIO; | |
16071 | } | |
16072 | ||
28d52043 DA |
16073 | return 0; |
16074 | } | |
c4a1d9e4 | 16075 | |
c4a1d9e4 | 16076 | struct intel_display_error_state { |
ff57f1b0 PZ |
16077 | |
16078 | u32 power_well_driver; | |
16079 | ||
63b66e5b CW |
16080 | int num_transcoders; |
16081 | ||
c4a1d9e4 CW |
16082 | struct intel_cursor_error_state { |
16083 | u32 control; | |
16084 | u32 position; | |
16085 | u32 base; | |
16086 | u32 size; | |
52331309 | 16087 | } cursor[I915_MAX_PIPES]; |
c4a1d9e4 CW |
16088 | |
16089 | struct intel_pipe_error_state { | |
ddf9c536 | 16090 | bool power_domain_on; |
c4a1d9e4 | 16091 | u32 source; |
f301b1e1 | 16092 | u32 stat; |
52331309 | 16093 | } pipe[I915_MAX_PIPES]; |
c4a1d9e4 CW |
16094 | |
16095 | struct intel_plane_error_state { | |
16096 | u32 control; | |
16097 | u32 stride; | |
16098 | u32 size; | |
16099 | u32 pos; | |
16100 | u32 addr; | |
16101 | u32 surface; | |
16102 | u32 tile_offset; | |
52331309 | 16103 | } plane[I915_MAX_PIPES]; |
63b66e5b CW |
16104 | |
16105 | struct intel_transcoder_error_state { | |
ddf9c536 | 16106 | bool power_domain_on; |
63b66e5b CW |
16107 | enum transcoder cpu_transcoder; |
16108 | ||
16109 | u32 conf; | |
16110 | ||
16111 | u32 htotal; | |
16112 | u32 hblank; | |
16113 | u32 hsync; | |
16114 | u32 vtotal; | |
16115 | u32 vblank; | |
16116 | u32 vsync; | |
16117 | } transcoder[4]; | |
c4a1d9e4 CW |
16118 | }; |
16119 | ||
16120 | struct intel_display_error_state * | |
16121 | intel_display_capture_error_state(struct drm_device *dev) | |
16122 | { | |
fbee40df | 16123 | struct drm_i915_private *dev_priv = dev->dev_private; |
c4a1d9e4 | 16124 | struct intel_display_error_state *error; |
63b66e5b CW |
16125 | int transcoders[] = { |
16126 | TRANSCODER_A, | |
16127 | TRANSCODER_B, | |
16128 | TRANSCODER_C, | |
16129 | TRANSCODER_EDP, | |
16130 | }; | |
c4a1d9e4 CW |
16131 | int i; |
16132 | ||
63b66e5b CW |
16133 | if (INTEL_INFO(dev)->num_pipes == 0) |
16134 | return NULL; | |
16135 | ||
9d1cb914 | 16136 | error = kzalloc(sizeof(*error), GFP_ATOMIC); |
c4a1d9e4 CW |
16137 | if (error == NULL) |
16138 | return NULL; | |
16139 | ||
190be112 | 16140 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
ff57f1b0 PZ |
16141 | error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER); |
16142 | ||
055e393f | 16143 | for_each_pipe(dev_priv, i) { |
ddf9c536 | 16144 | error->pipe[i].power_domain_on = |
f458ebbc DV |
16145 | __intel_display_power_is_enabled(dev_priv, |
16146 | POWER_DOMAIN_PIPE(i)); | |
ddf9c536 | 16147 | if (!error->pipe[i].power_domain_on) |
9d1cb914 PZ |
16148 | continue; |
16149 | ||
5efb3e28 VS |
16150 | error->cursor[i].control = I915_READ(CURCNTR(i)); |
16151 | error->cursor[i].position = I915_READ(CURPOS(i)); | |
16152 | error->cursor[i].base = I915_READ(CURBASE(i)); | |
c4a1d9e4 CW |
16153 | |
16154 | error->plane[i].control = I915_READ(DSPCNTR(i)); | |
16155 | error->plane[i].stride = I915_READ(DSPSTRIDE(i)); | |
80ca378b | 16156 | if (INTEL_INFO(dev)->gen <= 3) { |
51889b35 | 16157 | error->plane[i].size = I915_READ(DSPSIZE(i)); |
80ca378b PZ |
16158 | error->plane[i].pos = I915_READ(DSPPOS(i)); |
16159 | } | |
ca291363 PZ |
16160 | if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev)) |
16161 | error->plane[i].addr = I915_READ(DSPADDR(i)); | |
c4a1d9e4 CW |
16162 | if (INTEL_INFO(dev)->gen >= 4) { |
16163 | error->plane[i].surface = I915_READ(DSPSURF(i)); | |
16164 | error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i)); | |
16165 | } | |
16166 | ||
c4a1d9e4 | 16167 | error->pipe[i].source = I915_READ(PIPESRC(i)); |
f301b1e1 | 16168 | |
3abfce77 | 16169 | if (HAS_GMCH_DISPLAY(dev)) |
f301b1e1 | 16170 | error->pipe[i].stat = I915_READ(PIPESTAT(i)); |
63b66e5b CW |
16171 | } |
16172 | ||
4d1de975 | 16173 | /* Note: this does not include DSI transcoders. */ |
63b66e5b CW |
16174 | error->num_transcoders = INTEL_INFO(dev)->num_pipes; |
16175 | if (HAS_DDI(dev_priv->dev)) | |
16176 | error->num_transcoders++; /* Account for eDP. */ | |
16177 | ||
16178 | for (i = 0; i < error->num_transcoders; i++) { | |
16179 | enum transcoder cpu_transcoder = transcoders[i]; | |
16180 | ||
ddf9c536 | 16181 | error->transcoder[i].power_domain_on = |
f458ebbc | 16182 | __intel_display_power_is_enabled(dev_priv, |
38cc1daf | 16183 | POWER_DOMAIN_TRANSCODER(cpu_transcoder)); |
ddf9c536 | 16184 | if (!error->transcoder[i].power_domain_on) |
9d1cb914 PZ |
16185 | continue; |
16186 | ||
63b66e5b CW |
16187 | error->transcoder[i].cpu_transcoder = cpu_transcoder; |
16188 | ||
16189 | error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder)); | |
16190 | error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder)); | |
16191 | error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder)); | |
16192 | error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder)); | |
16193 | error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder)); | |
16194 | error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder)); | |
16195 | error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder)); | |
c4a1d9e4 CW |
16196 | } |
16197 | ||
16198 | return error; | |
16199 | } | |
16200 | ||
edc3d884 MK |
16201 | #define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__) |
16202 | ||
c4a1d9e4 | 16203 | void |
edc3d884 | 16204 | intel_display_print_error_state(struct drm_i915_error_state_buf *m, |
c4a1d9e4 CW |
16205 | struct drm_device *dev, |
16206 | struct intel_display_error_state *error) | |
16207 | { | |
055e393f | 16208 | struct drm_i915_private *dev_priv = dev->dev_private; |
c4a1d9e4 CW |
16209 | int i; |
16210 | ||
63b66e5b CW |
16211 | if (!error) |
16212 | return; | |
16213 | ||
edc3d884 | 16214 | err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes); |
190be112 | 16215 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
edc3d884 | 16216 | err_printf(m, "PWR_WELL_CTL2: %08x\n", |
ff57f1b0 | 16217 | error->power_well_driver); |
055e393f | 16218 | for_each_pipe(dev_priv, i) { |
edc3d884 | 16219 | err_printf(m, "Pipe [%d]:\n", i); |
ddf9c536 | 16220 | err_printf(m, " Power: %s\n", |
87ad3212 | 16221 | onoff(error->pipe[i].power_domain_on)); |
edc3d884 | 16222 | err_printf(m, " SRC: %08x\n", error->pipe[i].source); |
f301b1e1 | 16223 | err_printf(m, " STAT: %08x\n", error->pipe[i].stat); |
edc3d884 MK |
16224 | |
16225 | err_printf(m, "Plane [%d]:\n", i); | |
16226 | err_printf(m, " CNTR: %08x\n", error->plane[i].control); | |
16227 | err_printf(m, " STRIDE: %08x\n", error->plane[i].stride); | |
80ca378b | 16228 | if (INTEL_INFO(dev)->gen <= 3) { |
edc3d884 MK |
16229 | err_printf(m, " SIZE: %08x\n", error->plane[i].size); |
16230 | err_printf(m, " POS: %08x\n", error->plane[i].pos); | |
80ca378b | 16231 | } |
4b71a570 | 16232 | if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev)) |
edc3d884 | 16233 | err_printf(m, " ADDR: %08x\n", error->plane[i].addr); |
c4a1d9e4 | 16234 | if (INTEL_INFO(dev)->gen >= 4) { |
edc3d884 MK |
16235 | err_printf(m, " SURF: %08x\n", error->plane[i].surface); |
16236 | err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset); | |
c4a1d9e4 CW |
16237 | } |
16238 | ||
edc3d884 MK |
16239 | err_printf(m, "Cursor [%d]:\n", i); |
16240 | err_printf(m, " CNTR: %08x\n", error->cursor[i].control); | |
16241 | err_printf(m, " POS: %08x\n", error->cursor[i].position); | |
16242 | err_printf(m, " BASE: %08x\n", error->cursor[i].base); | |
c4a1d9e4 | 16243 | } |
63b66e5b CW |
16244 | |
16245 | for (i = 0; i < error->num_transcoders; i++) { | |
da205630 | 16246 | err_printf(m, "CPU transcoder: %s\n", |
63b66e5b | 16247 | transcoder_name(error->transcoder[i].cpu_transcoder)); |
ddf9c536 | 16248 | err_printf(m, " Power: %s\n", |
87ad3212 | 16249 | onoff(error->transcoder[i].power_domain_on)); |
63b66e5b CW |
16250 | err_printf(m, " CONF: %08x\n", error->transcoder[i].conf); |
16251 | err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal); | |
16252 | err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank); | |
16253 | err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync); | |
16254 | err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal); | |
16255 | err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank); | |
16256 | err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync); | |
16257 | } | |
c4a1d9e4 | 16258 | } |