blob: 797b8825c133cf214a7fbcf28789c5a7169ec9e3 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
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
Daniel Vetter618563e2012-04-01 13:38:50 +020027#include <linux/dmi.h>
Jesse Barnesc1c7af62009-09-10 15:28:03 -070028#include <linux/module.h>
29#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080031#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Jesse Barnes9cce37f2010-08-13 15:11:26 -070033#include <linux/vgaarb.h>
Wu Fengguange0dac652011-09-05 14:25:34 +080034#include <drm/drm_edid.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drmP.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070039#include "i915_trace.h"
Xi Ruoyao319c1d42015-03-12 20:16:32 +080040#include <drm/drm_atomic.h>
Matt Roperc196e1d2015-01-21 16:35:48 -080041#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010042#include <drm/drm_dp_helper.h>
43#include <drm/drm_crtc_helper.h>
Matt Roper465c1202014-05-29 08:06:54 -070044#include <drm/drm_plane_helper.h>
45#include <drm/drm_rect.h>
Keith Packardc0f372b32011-11-16 22:24:52 -080046#include <linux/dma_remapping.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080047
Matt Roper465c1202014-05-29 08:06:54 -070048/* Primary plane formats for gen <= 3 */
Damien Lespiau568db4f2015-05-12 16:13:18 +010049static const uint32_t i8xx_primary_formats[] = {
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010050 DRM_FORMAT_C8,
51 DRM_FORMAT_RGB565,
Matt Roper465c1202014-05-29 08:06:54 -070052 DRM_FORMAT_XRGB1555,
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010053 DRM_FORMAT_XRGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070054};
55
56/* Primary plane formats for gen >= 4 */
Damien Lespiau568db4f2015-05-12 16:13:18 +010057static const uint32_t i965_primary_formats[] = {
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010058 DRM_FORMAT_C8,
59 DRM_FORMAT_RGB565,
60 DRM_FORMAT_XRGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070061 DRM_FORMAT_XBGR8888,
Damien Lespiau6c0fd452015-05-19 12:29:16 +010062 DRM_FORMAT_XRGB2101010,
63 DRM_FORMAT_XBGR2101010,
64};
65
66static const uint32_t skl_primary_formats[] = {
67 DRM_FORMAT_C8,
68 DRM_FORMAT_RGB565,
69 DRM_FORMAT_XRGB8888,
70 DRM_FORMAT_XBGR8888,
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010071 DRM_FORMAT_ARGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070072 DRM_FORMAT_ABGR8888,
73 DRM_FORMAT_XRGB2101010,
Matt Roper465c1202014-05-29 08:06:54 -070074 DRM_FORMAT_XBGR2101010,
Kumar, Maheshea916ea2015-09-03 16:17:09 +053075 DRM_FORMAT_YUYV,
76 DRM_FORMAT_YVYU,
77 DRM_FORMAT_UYVY,
78 DRM_FORMAT_VYUY,
Matt Roper465c1202014-05-29 08:06:54 -070079};
80
Matt Roper3d7d6512014-06-10 08:28:13 -070081/* Cursor formats */
82static const uint32_t intel_cursor_formats[] = {
83 DRM_FORMAT_ARGB8888,
84};
85
Chris Wilson6b383a72010-09-13 13:54:26 +010086static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080087
Jesse Barnesf1f644d2013-06-27 00:39:25 +030088static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020089 struct intel_crtc_state *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030090static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020091 struct intel_crtc_state *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030092
Jesse Barneseb1bfe82014-02-12 12:26:25 -080093static int intel_framebuffer_init(struct drm_device *dev,
94 struct intel_framebuffer *ifb,
95 struct drm_mode_fb_cmd2 *mode_cmd,
96 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +020097static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
98static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +020099static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -0700100 struct intel_link_m_n *m_n,
101 struct intel_link_m_n *m2_n2);
Daniel Vetter29407aa2014-04-24 23:55:08 +0200102static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +0200103static void haswell_set_pipeconf(struct drm_crtc *crtc);
104static void intel_set_pipe_csc(struct drm_crtc *crtc);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200105static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200106 const struct intel_crtc_state *pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200107static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200108 const struct intel_crtc_state *pipe_config);
Maarten Lankhorst613d2b22015-07-21 13:28:58 +0200109static void intel_begin_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
110static void intel_finish_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
Chandra Konduru549e2bf2015-04-07 15:28:38 -0700111static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
112 struct intel_crtc_state *crtc_state);
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200113static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
114 int num_connectors);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +0200115static void skylake_pfit_enable(struct intel_crtc *crtc);
116static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force);
117static void ironlake_pfit_enable(struct intel_crtc *crtc);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +0200118static void intel_modeset_setup_hw_state(struct drm_device *dev);
Damien Lespiaue7457a92013-08-08 22:28:59 +0100119
Jesse Barnes79e53942008-11-07 14:24:08 -0800120typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400121 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -0800122} intel_range_t;
123
124typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400125 int dot_limit;
126 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800127} intel_p2_t;
128
Ma Lingd4906092009-03-18 20:13:27 +0800129typedef struct intel_limit intel_limit_t;
130struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -0400131 intel_range_t dot, vco, n, m, m1, m2, p, p1;
132 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +0800133};
Jesse Barnes79e53942008-11-07 14:24:08 -0800134
Ville Syrjäläbfa7df02015-09-24 23:29:18 +0300135/* returns HPLL frequency in kHz */
136static int valleyview_get_vco(struct drm_i915_private *dev_priv)
137{
138 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
139
140 /* Obtain SKU information */
141 mutex_lock(&dev_priv->sb_lock);
142 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
143 CCK_FUSE_HPLL_FREQ_MASK;
144 mutex_unlock(&dev_priv->sb_lock);
145
146 return vco_freq[hpll_freq] * 1000;
147}
148
149static int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
150 const char *name, u32 reg)
151{
152 u32 val;
153 int divider;
154
155 if (dev_priv->hpll_freq == 0)
156 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
157
158 mutex_lock(&dev_priv->sb_lock);
159 val = vlv_cck_read(dev_priv, reg);
160 mutex_unlock(&dev_priv->sb_lock);
161
162 divider = val & CCK_FREQUENCY_VALUES;
163
164 WARN((val & CCK_FREQUENCY_STATUS) !=
165 (divider << CCK_FREQUENCY_STATUS_SHIFT),
166 "%s change in progress\n", name);
167
168 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
169}
170
Daniel Vetterd2acd212012-10-20 20:57:43 +0200171int
172intel_pch_rawclk(struct drm_device *dev)
173{
174 struct drm_i915_private *dev_priv = dev->dev_private;
175
176 WARN_ON(!HAS_PCH_SPLIT(dev));
177
178 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
179}
180
Jani Nikula79e50a42015-08-26 10:58:20 +0300181/* hrawclock is 1/4 the FSB frequency */
182int intel_hrawclk(struct drm_device *dev)
183{
184 struct drm_i915_private *dev_priv = dev->dev_private;
185 uint32_t clkcfg;
186
187 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
188 if (IS_VALLEYVIEW(dev))
189 return 200;
190
191 clkcfg = I915_READ(CLKCFG);
192 switch (clkcfg & CLKCFG_FSB_MASK) {
193 case CLKCFG_FSB_400:
194 return 100;
195 case CLKCFG_FSB_533:
196 return 133;
197 case CLKCFG_FSB_667:
198 return 166;
199 case CLKCFG_FSB_800:
200 return 200;
201 case CLKCFG_FSB_1067:
202 return 266;
203 case CLKCFG_FSB_1333:
204 return 333;
205 /* these two are just a guess; one of them might be right */
206 case CLKCFG_FSB_1600:
207 case CLKCFG_FSB_1600_ALT:
208 return 400;
209 default:
210 return 133;
211 }
212}
213
Ville Syrjäläbfa7df02015-09-24 23:29:18 +0300214static void intel_update_czclk(struct drm_i915_private *dev_priv)
215{
216 if (!IS_VALLEYVIEW(dev_priv))
217 return;
218
219 dev_priv->czclk_freq = vlv_get_cck_clock_hpll(dev_priv, "czclk",
220 CCK_CZ_CLOCK_CONTROL);
221
222 DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv->czclk_freq);
223}
224
Chris Wilson021357a2010-09-07 20:54:59 +0100225static inline u32 /* units of 100MHz */
226intel_fdi_link_freq(struct drm_device *dev)
227{
Chris Wilson8b99e682010-10-13 09:59:17 +0100228 if (IS_GEN5(dev)) {
229 struct drm_i915_private *dev_priv = dev->dev_private;
230 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
231 } else
232 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100233}
234
Daniel Vetter5d536e22013-07-06 12:52:06 +0200235static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400236 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200237 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200238 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400239 .m = { .min = 96, .max = 140 },
240 .m1 = { .min = 18, .max = 26 },
241 .m2 = { .min = 6, .max = 16 },
242 .p = { .min = 4, .max = 128 },
243 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700244 .p2 = { .dot_limit = 165000,
245 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700246};
247
Daniel Vetter5d536e22013-07-06 12:52:06 +0200248static const intel_limit_t intel_limits_i8xx_dvo = {
249 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200250 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200251 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200252 .m = { .min = 96, .max = 140 },
253 .m1 = { .min = 18, .max = 26 },
254 .m2 = { .min = 6, .max = 16 },
255 .p = { .min = 4, .max = 128 },
256 .p1 = { .min = 2, .max = 33 },
257 .p2 = { .dot_limit = 165000,
258 .p2_slow = 4, .p2_fast = 4 },
259};
260
Keith Packarde4b36692009-06-05 19:22:17 -0700261static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400262 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200263 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200264 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400265 .m = { .min = 96, .max = 140 },
266 .m1 = { .min = 18, .max = 26 },
267 .m2 = { .min = 6, .max = 16 },
268 .p = { .min = 4, .max = 128 },
269 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700270 .p2 = { .dot_limit = 165000,
271 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700272};
Eric Anholt273e27c2011-03-30 13:01:10 -0700273
Keith Packarde4b36692009-06-05 19:22:17 -0700274static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400275 .dot = { .min = 20000, .max = 400000 },
276 .vco = { .min = 1400000, .max = 2800000 },
277 .n = { .min = 1, .max = 6 },
278 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100279 .m1 = { .min = 8, .max = 18 },
280 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400281 .p = { .min = 5, .max = 80 },
282 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700283 .p2 = { .dot_limit = 200000,
284 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700285};
286
287static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400288 .dot = { .min = 20000, .max = 400000 },
289 .vco = { .min = 1400000, .max = 2800000 },
290 .n = { .min = 1, .max = 6 },
291 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100292 .m1 = { .min = 8, .max = 18 },
293 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400294 .p = { .min = 7, .max = 98 },
295 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700296 .p2 = { .dot_limit = 112000,
297 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700298};
299
Eric Anholt273e27c2011-03-30 13:01:10 -0700300
Keith Packarde4b36692009-06-05 19:22:17 -0700301static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700302 .dot = { .min = 25000, .max = 270000 },
303 .vco = { .min = 1750000, .max = 3500000},
304 .n = { .min = 1, .max = 4 },
305 .m = { .min = 104, .max = 138 },
306 .m1 = { .min = 17, .max = 23 },
307 .m2 = { .min = 5, .max = 11 },
308 .p = { .min = 10, .max = 30 },
309 .p1 = { .min = 1, .max = 3},
310 .p2 = { .dot_limit = 270000,
311 .p2_slow = 10,
312 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800313 },
Keith Packarde4b36692009-06-05 19:22:17 -0700314};
315
316static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700317 .dot = { .min = 22000, .max = 400000 },
318 .vco = { .min = 1750000, .max = 3500000},
319 .n = { .min = 1, .max = 4 },
320 .m = { .min = 104, .max = 138 },
321 .m1 = { .min = 16, .max = 23 },
322 .m2 = { .min = 5, .max = 11 },
323 .p = { .min = 5, .max = 80 },
324 .p1 = { .min = 1, .max = 8},
325 .p2 = { .dot_limit = 165000,
326 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700327};
328
329static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700330 .dot = { .min = 20000, .max = 115000 },
331 .vco = { .min = 1750000, .max = 3500000 },
332 .n = { .min = 1, .max = 3 },
333 .m = { .min = 104, .max = 138 },
334 .m1 = { .min = 17, .max = 23 },
335 .m2 = { .min = 5, .max = 11 },
336 .p = { .min = 28, .max = 112 },
337 .p1 = { .min = 2, .max = 8 },
338 .p2 = { .dot_limit = 0,
339 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800340 },
Keith Packarde4b36692009-06-05 19:22:17 -0700341};
342
343static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700344 .dot = { .min = 80000, .max = 224000 },
345 .vco = { .min = 1750000, .max = 3500000 },
346 .n = { .min = 1, .max = 3 },
347 .m = { .min = 104, .max = 138 },
348 .m1 = { .min = 17, .max = 23 },
349 .m2 = { .min = 5, .max = 11 },
350 .p = { .min = 14, .max = 42 },
351 .p1 = { .min = 2, .max = 6 },
352 .p2 = { .dot_limit = 0,
353 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800354 },
Keith Packarde4b36692009-06-05 19:22:17 -0700355};
356
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500357static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400358 .dot = { .min = 20000, .max = 400000},
359 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700360 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400361 .n = { .min = 3, .max = 6 },
362 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700363 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400364 .m1 = { .min = 0, .max = 0 },
365 .m2 = { .min = 0, .max = 254 },
366 .p = { .min = 5, .max = 80 },
367 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700368 .p2 = { .dot_limit = 200000,
369 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700370};
371
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500372static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400373 .dot = { .min = 20000, .max = 400000 },
374 .vco = { .min = 1700000, .max = 3500000 },
375 .n = { .min = 3, .max = 6 },
376 .m = { .min = 2, .max = 256 },
377 .m1 = { .min = 0, .max = 0 },
378 .m2 = { .min = 0, .max = 254 },
379 .p = { .min = 7, .max = 112 },
380 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700381 .p2 = { .dot_limit = 112000,
382 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700383};
384
Eric Anholt273e27c2011-03-30 13:01:10 -0700385/* Ironlake / Sandybridge
386 *
387 * We calculate clock using (register_value + 2) for N/M1/M2, so here
388 * the range value for them is (actual_value - 2).
389 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800390static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700391 .dot = { .min = 25000, .max = 350000 },
392 .vco = { .min = 1760000, .max = 3510000 },
393 .n = { .min = 1, .max = 5 },
394 .m = { .min = 79, .max = 127 },
395 .m1 = { .min = 12, .max = 22 },
396 .m2 = { .min = 5, .max = 9 },
397 .p = { .min = 5, .max = 80 },
398 .p1 = { .min = 1, .max = 8 },
399 .p2 = { .dot_limit = 225000,
400 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700401};
402
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800403static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700404 .dot = { .min = 25000, .max = 350000 },
405 .vco = { .min = 1760000, .max = 3510000 },
406 .n = { .min = 1, .max = 3 },
407 .m = { .min = 79, .max = 118 },
408 .m1 = { .min = 12, .max = 22 },
409 .m2 = { .min = 5, .max = 9 },
410 .p = { .min = 28, .max = 112 },
411 .p1 = { .min = 2, .max = 8 },
412 .p2 = { .dot_limit = 225000,
413 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800414};
415
416static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700417 .dot = { .min = 25000, .max = 350000 },
418 .vco = { .min = 1760000, .max = 3510000 },
419 .n = { .min = 1, .max = 3 },
420 .m = { .min = 79, .max = 127 },
421 .m1 = { .min = 12, .max = 22 },
422 .m2 = { .min = 5, .max = 9 },
423 .p = { .min = 14, .max = 56 },
424 .p1 = { .min = 2, .max = 8 },
425 .p2 = { .dot_limit = 225000,
426 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800427};
428
Eric Anholt273e27c2011-03-30 13:01:10 -0700429/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800430static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700431 .dot = { .min = 25000, .max = 350000 },
432 .vco = { .min = 1760000, .max = 3510000 },
433 .n = { .min = 1, .max = 2 },
434 .m = { .min = 79, .max = 126 },
435 .m1 = { .min = 12, .max = 22 },
436 .m2 = { .min = 5, .max = 9 },
437 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400438 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700439 .p2 = { .dot_limit = 225000,
440 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800441};
442
443static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700444 .dot = { .min = 25000, .max = 350000 },
445 .vco = { .min = 1760000, .max = 3510000 },
446 .n = { .min = 1, .max = 3 },
447 .m = { .min = 79, .max = 126 },
448 .m1 = { .min = 12, .max = 22 },
449 .m2 = { .min = 5, .max = 9 },
450 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400451 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700452 .p2 = { .dot_limit = 225000,
453 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800454};
455
Ville Syrjälädc730512013-09-24 21:26:30 +0300456static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300457 /*
458 * These are the data rate limits (measured in fast clocks)
459 * since those are the strictest limits we have. The fast
460 * clock and actual rate limits are more relaxed, so checking
461 * them would make no difference.
462 */
463 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200464 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700465 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700466 .m1 = { .min = 2, .max = 3 },
467 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300468 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300469 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700470};
471
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300472static const intel_limit_t intel_limits_chv = {
473 /*
474 * These are the data rate limits (measured in fast clocks)
475 * since those are the strictest limits we have. The fast
476 * clock and actual rate limits are more relaxed, so checking
477 * them would make no difference.
478 */
479 .dot = { .min = 25000 * 5, .max = 540000 * 5},
Ville Syrjälä17fe1022015-02-26 21:01:52 +0200480 .vco = { .min = 4800000, .max = 6480000 },
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300481 .n = { .min = 1, .max = 1 },
482 .m1 = { .min = 2, .max = 2 },
483 .m2 = { .min = 24 << 22, .max = 175 << 22 },
484 .p1 = { .min = 2, .max = 4 },
485 .p2 = { .p2_slow = 1, .p2_fast = 14 },
486};
487
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200488static const intel_limit_t intel_limits_bxt = {
489 /* FIXME: find real dot limits */
490 .dot = { .min = 0, .max = INT_MAX },
Vandana Kannane6292552015-07-01 17:02:57 +0530491 .vco = { .min = 4800000, .max = 6700000 },
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200492 .n = { .min = 1, .max = 1 },
493 .m1 = { .min = 2, .max = 2 },
494 /* FIXME: find real m2 limits */
495 .m2 = { .min = 2 << 22, .max = 255 << 22 },
496 .p1 = { .min = 2, .max = 4 },
497 .p2 = { .p2_slow = 1, .p2_fast = 20 },
498};
499
Ander Conselvan de Oliveiracdba9542015-06-01 12:49:51 +0200500static bool
501needs_modeset(struct drm_crtc_state *state)
502{
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200503 return drm_atomic_crtc_needs_modeset(state);
Ander Conselvan de Oliveiracdba9542015-06-01 12:49:51 +0200504}
505
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300506/**
507 * Returns whether any output on the specified pipe is of the specified type
508 */
Damien Lespiau40935612014-10-29 11:16:59 +0000509bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300510{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300511 struct drm_device *dev = crtc->base.dev;
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300512 struct intel_encoder *encoder;
513
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300514 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300515 if (encoder->type == type)
516 return true;
517
518 return false;
519}
520
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200521/**
522 * Returns whether any output on the specified pipe will have the specified
523 * type after a staged modeset is complete, i.e., the same as
524 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
525 * encoder->crtc.
526 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200527static bool intel_pipe_will_have_type(const struct intel_crtc_state *crtc_state,
528 int type)
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200529{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200530 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +0300531 struct drm_connector *connector;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200532 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200533 struct intel_encoder *encoder;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200534 int i, num_connectors = 0;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200535
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +0300536 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200537 if (connector_state->crtc != crtc_state->base.crtc)
538 continue;
539
540 num_connectors++;
541
542 encoder = to_intel_encoder(connector_state->best_encoder);
543 if (encoder->type == type)
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200544 return true;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200545 }
546
547 WARN_ON(num_connectors == 0);
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200548
549 return false;
550}
551
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200552static const intel_limit_t *
553intel_ironlake_limit(struct intel_crtc_state *crtc_state, int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800554{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200555 struct drm_device *dev = crtc_state->base.crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800556 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800557
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200558 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100559 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000560 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800561 limit = &intel_limits_ironlake_dual_lvds_100m;
562 else
563 limit = &intel_limits_ironlake_dual_lvds;
564 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000565 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800566 limit = &intel_limits_ironlake_single_lvds_100m;
567 else
568 limit = &intel_limits_ironlake_single_lvds;
569 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200570 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800571 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800572
573 return limit;
574}
575
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200576static const intel_limit_t *
577intel_g4x_limit(struct intel_crtc_state *crtc_state)
Ma Ling044c7c42009-03-18 20:13:23 +0800578{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200579 struct drm_device *dev = crtc_state->base.crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800580 const intel_limit_t *limit;
581
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200582 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100583 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700584 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800585 else
Keith Packarde4b36692009-06-05 19:22:17 -0700586 limit = &intel_limits_g4x_single_channel_lvds;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200587 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI) ||
588 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700589 limit = &intel_limits_g4x_hdmi;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200590 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700591 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800592 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700593 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800594
595 return limit;
596}
597
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200598static const intel_limit_t *
599intel_limit(struct intel_crtc_state *crtc_state, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800600{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200601 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800602 const intel_limit_t *limit;
603
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200604 if (IS_BROXTON(dev))
605 limit = &intel_limits_bxt;
606 else if (HAS_PCH_SPLIT(dev))
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200607 limit = intel_ironlake_limit(crtc_state, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800608 else if (IS_G4X(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200609 limit = intel_g4x_limit(crtc_state);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500610 } else if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200611 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500612 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800613 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500614 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300615 } else if (IS_CHERRYVIEW(dev)) {
616 limit = &intel_limits_chv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700617 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300618 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100619 } else if (!IS_GEN2(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200620 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100621 limit = &intel_limits_i9xx_lvds;
622 else
623 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800624 } else {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200625 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700626 limit = &intel_limits_i8xx_lvds;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200627 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700628 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200629 else
630 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800631 }
632 return limit;
633}
634
Imre Deakdccbea32015-06-22 23:35:51 +0300635/*
636 * Platform specific helpers to calculate the port PLL loopback- (clock.m),
637 * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast
638 * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic.
639 * The helpers' return value is the rate of the clock that is fed to the
640 * display engine's pipe which can be the above fast dot clock rate or a
641 * divided-down version of it.
642 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500643/* m1 is reserved as 0 in Pineview, n is a ring counter */
Imre Deakdccbea32015-06-22 23:35:51 +0300644static int pnv_calc_dpll_params(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800645{
Shaohua Li21778322009-02-23 15:19:16 +0800646 clock->m = clock->m2 + 2;
647 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200648 if (WARN_ON(clock->n == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300649 return 0;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300650 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
651 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300652
653 return clock->dot;
Shaohua Li21778322009-02-23 15:19:16 +0800654}
655
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200656static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
657{
658 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
659}
660
Imre Deakdccbea32015-06-22 23:35:51 +0300661static int i9xx_calc_dpll_params(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800662{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200663 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800664 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200665 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300666 return 0;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300667 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
668 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300669
670 return clock->dot;
Jesse Barnes79e53942008-11-07 14:24:08 -0800671}
672
Imre Deakdccbea32015-06-22 23:35:51 +0300673static int vlv_calc_dpll_params(int refclk, intel_clock_t *clock)
Imre Deak589eca62015-06-22 23:35:50 +0300674{
675 clock->m = clock->m1 * clock->m2;
676 clock->p = clock->p1 * clock->p2;
677 if (WARN_ON(clock->n == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300678 return 0;
Imre Deak589eca62015-06-22 23:35:50 +0300679 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
680 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300681
682 return clock->dot / 5;
Imre Deak589eca62015-06-22 23:35:50 +0300683}
684
Imre Deakdccbea32015-06-22 23:35:51 +0300685int chv_calc_dpll_params(int refclk, intel_clock_t *clock)
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300686{
687 clock->m = clock->m1 * clock->m2;
688 clock->p = clock->p1 * clock->p2;
689 if (WARN_ON(clock->n == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300690 return 0;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300691 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
692 clock->n << 22);
693 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300694
695 return clock->dot / 5;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300696}
697
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800698#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800699/**
700 * Returns whether the given set of divisors are valid for a given refclk with
701 * the given connectors.
702 */
703
Chris Wilson1b894b52010-12-14 20:04:54 +0000704static bool intel_PLL_is_valid(struct drm_device *dev,
705 const intel_limit_t *limit,
706 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800707{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300708 if (clock->n < limit->n.min || limit->n.max < clock->n)
709 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800710 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400711 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800712 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400713 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800714 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400715 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300716
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200717 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) && !IS_BROXTON(dev))
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300718 if (clock->m1 <= clock->m2)
719 INTELPllInvalid("m1 <= m2\n");
720
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200721 if (!IS_VALLEYVIEW(dev) && !IS_BROXTON(dev)) {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300722 if (clock->p < limit->p.min || limit->p.max < clock->p)
723 INTELPllInvalid("p out of range\n");
724 if (clock->m < limit->m.min || limit->m.max < clock->m)
725 INTELPllInvalid("m out of range\n");
726 }
727
Jesse Barnes79e53942008-11-07 14:24:08 -0800728 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400729 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800730 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
731 * connector, etc., rather than just a single range.
732 */
733 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400734 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800735
736 return true;
737}
738
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300739static int
740i9xx_select_p2_div(const intel_limit_t *limit,
741 const struct intel_crtc_state *crtc_state,
742 int target)
Jesse Barnes79e53942008-11-07 14:24:08 -0800743{
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300744 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800745
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200746 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800747 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100748 * For LVDS just rely on its current settings for dual-channel.
749 * We haven't figured out how to reliably set up different
750 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800751 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100752 if (intel_is_dual_link_lvds(dev))
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300753 return limit->p2.p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800754 else
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300755 return limit->p2.p2_slow;
Jesse Barnes79e53942008-11-07 14:24:08 -0800756 } else {
757 if (target < limit->p2.dot_limit)
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300758 return limit->p2.p2_slow;
Jesse Barnes79e53942008-11-07 14:24:08 -0800759 else
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300760 return limit->p2.p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800761 }
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300762}
763
764static bool
765i9xx_find_best_dpll(const intel_limit_t *limit,
766 struct intel_crtc_state *crtc_state,
767 int target, int refclk, intel_clock_t *match_clock,
768 intel_clock_t *best_clock)
769{
770 struct drm_device *dev = crtc_state->base.crtc->dev;
771 intel_clock_t clock;
772 int err = target;
Jesse Barnes79e53942008-11-07 14:24:08 -0800773
Akshay Joshi0206e352011-08-16 15:34:10 -0400774 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800775
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300776 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
777
Zhao Yakui42158662009-11-20 11:24:18 +0800778 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
779 clock.m1++) {
780 for (clock.m2 = limit->m2.min;
781 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200782 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800783 break;
784 for (clock.n = limit->n.min;
785 clock.n <= limit->n.max; clock.n++) {
786 for (clock.p1 = limit->p1.min;
787 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800788 int this_err;
789
Imre Deakdccbea32015-06-22 23:35:51 +0300790 i9xx_calc_dpll_params(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000791 if (!intel_PLL_is_valid(dev, limit,
792 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800793 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800794 if (match_clock &&
795 clock.p != match_clock->p)
796 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800797
798 this_err = abs(clock.dot - target);
799 if (this_err < err) {
800 *best_clock = clock;
801 err = this_err;
802 }
803 }
804 }
805 }
806 }
807
808 return (err != target);
809}
810
Ma Lingd4906092009-03-18 20:13:27 +0800811static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200812pnv_find_best_dpll(const intel_limit_t *limit,
813 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200814 int target, int refclk, intel_clock_t *match_clock,
815 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200816{
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300817 struct drm_device *dev = crtc_state->base.crtc->dev;
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200818 intel_clock_t clock;
819 int err = target;
820
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200821 memset(best_clock, 0, sizeof(*best_clock));
822
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300823 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
824
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200825 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
826 clock.m1++) {
827 for (clock.m2 = limit->m2.min;
828 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200829 for (clock.n = limit->n.min;
830 clock.n <= limit->n.max; clock.n++) {
831 for (clock.p1 = limit->p1.min;
832 clock.p1 <= limit->p1.max; clock.p1++) {
833 int this_err;
834
Imre Deakdccbea32015-06-22 23:35:51 +0300835 pnv_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800836 if (!intel_PLL_is_valid(dev, limit,
837 &clock))
838 continue;
839 if (match_clock &&
840 clock.p != match_clock->p)
841 continue;
842
843 this_err = abs(clock.dot - target);
844 if (this_err < err) {
845 *best_clock = clock;
846 err = this_err;
847 }
848 }
849 }
850 }
851 }
852
853 return (err != target);
854}
855
Ma Lingd4906092009-03-18 20:13:27 +0800856static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200857g4x_find_best_dpll(const intel_limit_t *limit,
858 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200859 int target, int refclk, intel_clock_t *match_clock,
860 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800861{
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300862 struct drm_device *dev = crtc_state->base.crtc->dev;
Ma Lingd4906092009-03-18 20:13:27 +0800863 intel_clock_t clock;
864 int max_n;
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300865 bool found = false;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400866 /* approximately equals target * 0.00585 */
867 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800868
869 memset(best_clock, 0, sizeof(*best_clock));
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300870
871 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
872
Ma Lingd4906092009-03-18 20:13:27 +0800873 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200874 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800875 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200876 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800877 for (clock.m1 = limit->m1.max;
878 clock.m1 >= limit->m1.min; clock.m1--) {
879 for (clock.m2 = limit->m2.max;
880 clock.m2 >= limit->m2.min; clock.m2--) {
881 for (clock.p1 = limit->p1.max;
882 clock.p1 >= limit->p1.min; clock.p1--) {
883 int this_err;
884
Imre Deakdccbea32015-06-22 23:35:51 +0300885 i9xx_calc_dpll_params(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000886 if (!intel_PLL_is_valid(dev, limit,
887 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800888 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000889
890 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800891 if (this_err < err_most) {
892 *best_clock = clock;
893 err_most = this_err;
894 max_n = clock.n;
895 found = true;
896 }
897 }
898 }
899 }
900 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800901 return found;
902}
Ma Lingd4906092009-03-18 20:13:27 +0800903
Imre Deakd5dd62b2015-03-17 11:40:03 +0200904/*
905 * Check if the calculated PLL configuration is more optimal compared to the
906 * best configuration and error found so far. Return the calculated error.
907 */
908static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
909 const intel_clock_t *calculated_clock,
910 const intel_clock_t *best_clock,
911 unsigned int best_error_ppm,
912 unsigned int *error_ppm)
913{
Imre Deak9ca3ba02015-03-17 11:40:05 +0200914 /*
915 * For CHV ignore the error and consider only the P value.
916 * Prefer a bigger P value based on HW requirements.
917 */
918 if (IS_CHERRYVIEW(dev)) {
919 *error_ppm = 0;
920
921 return calculated_clock->p > best_clock->p;
922 }
923
Imre Deak24be4e42015-03-17 11:40:04 +0200924 if (WARN_ON_ONCE(!target_freq))
925 return false;
926
Imre Deakd5dd62b2015-03-17 11:40:03 +0200927 *error_ppm = div_u64(1000000ULL *
928 abs(target_freq - calculated_clock->dot),
929 target_freq);
930 /*
931 * Prefer a better P value over a better (smaller) error if the error
932 * is small. Ensure this preference for future configurations too by
933 * setting the error to 0.
934 */
935 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
936 *error_ppm = 0;
937
938 return true;
939 }
940
941 return *error_ppm + 10 < best_error_ppm;
942}
943
Zhenyu Wang2c072452009-06-05 15:38:42 +0800944static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200945vlv_find_best_dpll(const intel_limit_t *limit,
946 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200947 int target, int refclk, intel_clock_t *match_clock,
948 intel_clock_t *best_clock)
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700949{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200950 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300951 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300952 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300953 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300954 /* min update 19.2 MHz */
955 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300956 bool found = false;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700957
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300958 target *= 5; /* fast clock */
959
960 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700961
962 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300963 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300964 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300965 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300966 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300967 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700968 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300969 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Imre Deakd5dd62b2015-03-17 11:40:03 +0200970 unsigned int ppm;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300971
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300972 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
973 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300974
Imre Deakdccbea32015-06-22 23:35:51 +0300975 vlv_calc_dpll_params(refclk, &clock);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300976
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300977 if (!intel_PLL_is_valid(dev, limit,
978 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300979 continue;
980
Imre Deakd5dd62b2015-03-17 11:40:03 +0200981 if (!vlv_PLL_is_optimal(dev, target,
982 &clock,
983 best_clock,
984 bestppm, &ppm))
985 continue;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300986
Imre Deakd5dd62b2015-03-17 11:40:03 +0200987 *best_clock = clock;
988 bestppm = ppm;
989 found = true;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700990 }
991 }
992 }
993 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700994
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300995 return found;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700996}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700997
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300998static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200999chv_find_best_dpll(const intel_limit_t *limit,
1000 struct intel_crtc_state *crtc_state,
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001001 int target, int refclk, intel_clock_t *match_clock,
1002 intel_clock_t *best_clock)
1003{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02001004 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03001005 struct drm_device *dev = crtc->base.dev;
Imre Deak9ca3ba02015-03-17 11:40:05 +02001006 unsigned int best_error_ppm;
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001007 intel_clock_t clock;
1008 uint64_t m2;
1009 int found = false;
1010
1011 memset(best_clock, 0, sizeof(*best_clock));
Imre Deak9ca3ba02015-03-17 11:40:05 +02001012 best_error_ppm = 1000000;
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001013
1014 /*
1015 * Based on hardware doc, the n always set to 1, and m1 always
1016 * set to 2. If requires to support 200Mhz refclk, we need to
1017 * revisit this because n may not 1 anymore.
1018 */
1019 clock.n = 1, clock.m1 = 2;
1020 target *= 5; /* fast clock */
1021
1022 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
1023 for (clock.p2 = limit->p2.p2_fast;
1024 clock.p2 >= limit->p2.p2_slow;
1025 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Imre Deak9ca3ba02015-03-17 11:40:05 +02001026 unsigned int error_ppm;
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001027
1028 clock.p = clock.p1 * clock.p2;
1029
1030 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
1031 clock.n) << 22, refclk * clock.m1);
1032
1033 if (m2 > INT_MAX/clock.m1)
1034 continue;
1035
1036 clock.m2 = m2;
1037
Imre Deakdccbea32015-06-22 23:35:51 +03001038 chv_calc_dpll_params(refclk, &clock);
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001039
1040 if (!intel_PLL_is_valid(dev, limit, &clock))
1041 continue;
1042
Imre Deak9ca3ba02015-03-17 11:40:05 +02001043 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
1044 best_error_ppm, &error_ppm))
1045 continue;
1046
1047 *best_clock = clock;
1048 best_error_ppm = error_ppm;
1049 found = true;
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001050 }
1051 }
1052
1053 return found;
1054}
1055
Imre Deak5ab7b0b2015-03-06 03:29:25 +02001056bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
1057 intel_clock_t *best_clock)
1058{
1059 int refclk = i9xx_get_refclk(crtc_state, 0);
1060
1061 return chv_find_best_dpll(intel_limit(crtc_state, refclk), crtc_state,
1062 target_clock, refclk, NULL, best_clock);
1063}
1064
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001065bool intel_crtc_active(struct drm_crtc *crtc)
1066{
1067 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1068
1069 /* Be paranoid as we can arrive here with only partial
1070 * state retrieved from the hardware during setup.
1071 *
Damien Lespiau241bfc32013-09-25 16:45:37 +01001072 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001073 * as Haswell has gained clock readout/fastboot support.
1074 *
Dave Airlie66e514c2014-04-03 07:51:54 +10001075 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001076 * properly reconstruct framebuffers.
Matt Roperc3d1f432015-03-09 10:19:23 -07001077 *
1078 * FIXME: The intel_crtc->active here should be switched to
1079 * crtc->state->active once we have proper CRTC states wired up
1080 * for atomic.
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001081 */
Matt Roperc3d1f432015-03-09 10:19:23 -07001082 return intel_crtc->active && crtc->primary->state->fb &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001083 intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001084}
1085
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001086enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1087 enum pipe pipe)
1088{
1089 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1090 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1091
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001092 return intel_crtc->config->cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001093}
1094
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001095static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1096{
1097 struct drm_i915_private *dev_priv = dev->dev_private;
1098 u32 reg = PIPEDSL(pipe);
1099 u32 line1, line2;
1100 u32 line_mask;
1101
1102 if (IS_GEN2(dev))
1103 line_mask = DSL_LINEMASK_GEN2;
1104 else
1105 line_mask = DSL_LINEMASK_GEN3;
1106
1107 line1 = I915_READ(reg) & line_mask;
Daniel Vetter6adfb1e2015-07-07 09:10:40 +02001108 msleep(5);
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001109 line2 = I915_READ(reg) & line_mask;
1110
1111 return line1 == line2;
1112}
1113
Keith Packardab7ad7f2010-10-03 00:33:06 -07001114/*
1115 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001116 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001117 *
1118 * After disabling a pipe, we can't wait for vblank in the usual way,
1119 * spinning on the vblank interrupt status bit, since we won't actually
1120 * see an interrupt when the pipe is disabled.
1121 *
Keith Packardab7ad7f2010-10-03 00:33:06 -07001122 * On Gen4 and above:
1123 * wait for the pipe register state bit to turn off
1124 *
1125 * Otherwise:
1126 * wait for the display line value to settle (it usually
1127 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +01001128 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001129 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001130static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001131{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001132 struct drm_device *dev = crtc->base.dev;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001133 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001134 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001135 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001136
Keith Packardab7ad7f2010-10-03 00:33:06 -07001137 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001138 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001139
Keith Packardab7ad7f2010-10-03 00:33:06 -07001140 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +01001141 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1142 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001143 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001144 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -07001145 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001146 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001147 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001148 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001149}
1150
Jesse Barnesb24e7172011-01-04 15:09:30 -08001151static const char *state_string(bool enabled)
1152{
1153 return enabled ? "on" : "off";
1154}
1155
1156/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001157void assert_pll(struct drm_i915_private *dev_priv,
1158 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001159{
1160 int reg;
1161 u32 val;
1162 bool cur_state;
1163
1164 reg = DPLL(pipe);
1165 val = I915_READ(reg);
1166 cur_state = !!(val & DPLL_VCO_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001167 I915_STATE_WARN(cur_state != state,
Jesse Barnesb24e7172011-01-04 15:09:30 -08001168 "PLL state assertion failure (expected %s, current %s)\n",
1169 state_string(state), state_string(cur_state));
1170}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001171
Jani Nikula23538ef2013-08-27 15:12:22 +03001172/* XXX: the dsi pll is shared between MIPI DSI ports */
1173static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1174{
1175 u32 val;
1176 bool cur_state;
1177
Ville Syrjäläa5805162015-05-26 20:42:30 +03001178 mutex_lock(&dev_priv->sb_lock);
Jani Nikula23538ef2013-08-27 15:12:22 +03001179 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001180 mutex_unlock(&dev_priv->sb_lock);
Jani Nikula23538ef2013-08-27 15:12:22 +03001181
1182 cur_state = val & DSI_PLL_VCO_EN;
Rob Clarke2c719b2014-12-15 13:56:32 -05001183 I915_STATE_WARN(cur_state != state,
Jani Nikula23538ef2013-08-27 15:12:22 +03001184 "DSI PLL state assertion failure (expected %s, current %s)\n",
1185 state_string(state), state_string(cur_state));
1186}
1187#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1188#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1189
Daniel Vetter55607e82013-06-16 21:42:39 +02001190struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001191intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001192{
Daniel Vettere2b78262013-06-07 23:10:03 +02001193 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1194
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001195 if (crtc->config->shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001196 return NULL;
1197
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001198 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001199}
1200
Jesse Barnesb24e7172011-01-04 15:09:30 -08001201/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001202void assert_shared_dpll(struct drm_i915_private *dev_priv,
1203 struct intel_shared_dpll *pll,
1204 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001205{
Jesse Barnes040484a2011-01-03 12:14:26 -08001206 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001207 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001208
Chris Wilson92b27b02012-05-20 18:10:50 +01001209 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001210 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001211 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001212
Daniel Vetter53589012013-06-05 13:34:16 +02001213 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Rob Clarke2c719b2014-12-15 13:56:32 -05001214 I915_STATE_WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001215 "%s assertion failure (expected %s, current %s)\n",
1216 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001217}
Jesse Barnes040484a2011-01-03 12:14:26 -08001218
1219static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1220 enum pipe pipe, bool state)
1221{
1222 int reg;
1223 u32 val;
1224 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001225 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1226 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001227
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001228 if (HAS_DDI(dev_priv->dev)) {
1229 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001230 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001231 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001232 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001233 } else {
1234 reg = FDI_TX_CTL(pipe);
1235 val = I915_READ(reg);
1236 cur_state = !!(val & FDI_TX_ENABLE);
1237 }
Rob Clarke2c719b2014-12-15 13:56:32 -05001238 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001239 "FDI TX state assertion failure (expected %s, current %s)\n",
1240 state_string(state), state_string(cur_state));
1241}
1242#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1243#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1244
1245static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1246 enum pipe pipe, bool state)
1247{
1248 int reg;
1249 u32 val;
1250 bool cur_state;
1251
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001252 reg = FDI_RX_CTL(pipe);
1253 val = I915_READ(reg);
1254 cur_state = !!(val & FDI_RX_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001255 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001256 "FDI RX state assertion failure (expected %s, current %s)\n",
1257 state_string(state), state_string(cur_state));
1258}
1259#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1260#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1261
1262static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1263 enum pipe pipe)
1264{
1265 int reg;
1266 u32 val;
1267
1268 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001269 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001270 return;
1271
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001272 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001273 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001274 return;
1275
Jesse Barnes040484a2011-01-03 12:14:26 -08001276 reg = FDI_TX_CTL(pipe);
1277 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001278 I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
Jesse Barnes040484a2011-01-03 12:14:26 -08001279}
1280
Daniel Vetter55607e82013-06-16 21:42:39 +02001281void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1282 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001283{
1284 int reg;
1285 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001286 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001287
1288 reg = FDI_RX_CTL(pipe);
1289 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001290 cur_state = !!(val & FDI_RX_PLL_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001291 I915_STATE_WARN(cur_state != state,
Daniel Vetter55607e82013-06-16 21:42:39 +02001292 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1293 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001294}
1295
Daniel Vetterb680c372014-09-19 18:27:27 +02001296void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1297 enum pipe pipe)
Jesse Barnesea0760c2011-01-04 15:09:32 -08001298{
Jani Nikulabedd4db2014-08-22 15:04:13 +03001299 struct drm_device *dev = dev_priv->dev;
1300 int pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001301 u32 val;
1302 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001303 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001304
Jani Nikulabedd4db2014-08-22 15:04:13 +03001305 if (WARN_ON(HAS_DDI(dev)))
1306 return;
1307
1308 if (HAS_PCH_SPLIT(dev)) {
1309 u32 port_sel;
1310
Jesse Barnesea0760c2011-01-04 15:09:32 -08001311 pp_reg = PCH_PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001312 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1313
1314 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1315 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1316 panel_pipe = PIPE_B;
1317 /* XXX: else fix for eDP */
1318 } else if (IS_VALLEYVIEW(dev)) {
1319 /* presumably write lock depends on pipe, not port select */
1320 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1321 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001322 } else {
1323 pp_reg = PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001324 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1325 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001326 }
1327
1328 val = I915_READ(pp_reg);
1329 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001330 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001331 locked = false;
1332
Rob Clarke2c719b2014-12-15 13:56:32 -05001333 I915_STATE_WARN(panel_pipe == pipe && locked,
Jesse Barnesea0760c2011-01-04 15:09:32 -08001334 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001335 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001336}
1337
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001338static void assert_cursor(struct drm_i915_private *dev_priv,
1339 enum pipe pipe, bool state)
1340{
1341 struct drm_device *dev = dev_priv->dev;
1342 bool cur_state;
1343
Paulo Zanonid9d82082014-02-27 16:30:56 -03001344 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä0b87c242015-09-22 19:47:51 +03001345 cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001346 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001347 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001348
Rob Clarke2c719b2014-12-15 13:56:32 -05001349 I915_STATE_WARN(cur_state != state,
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001350 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1351 pipe_name(pipe), state_string(state), state_string(cur_state));
1352}
1353#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1354#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1355
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001356void assert_pipe(struct drm_i915_private *dev_priv,
1357 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001358{
1359 int reg;
1360 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001361 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001362 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1363 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001364
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001365 /* if we need the pipe quirk it must be always on */
1366 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1367 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001368 state = true;
1369
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001370 if (!intel_display_power_is_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001371 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001372 cur_state = false;
1373 } else {
1374 reg = PIPECONF(cpu_transcoder);
1375 val = I915_READ(reg);
1376 cur_state = !!(val & PIPECONF_ENABLE);
1377 }
1378
Rob Clarke2c719b2014-12-15 13:56:32 -05001379 I915_STATE_WARN(cur_state != state,
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001380 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001381 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001382}
1383
Chris Wilson931872f2012-01-16 23:01:13 +00001384static void assert_plane(struct drm_i915_private *dev_priv,
1385 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001386{
1387 int reg;
1388 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001389 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001390
1391 reg = DSPCNTR(plane);
1392 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001393 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001394 I915_STATE_WARN(cur_state != state,
Chris Wilson931872f2012-01-16 23:01:13 +00001395 "plane %c assertion failure (expected %s, current %s)\n",
1396 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001397}
1398
Chris Wilson931872f2012-01-16 23:01:13 +00001399#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1400#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1401
Jesse Barnesb24e7172011-01-04 15:09:30 -08001402static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1403 enum pipe pipe)
1404{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001405 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001406 int reg, i;
1407 u32 val;
1408 int cur_pipe;
1409
Ville Syrjälä653e1022013-06-04 13:49:05 +03001410 /* Primary planes are fixed to pipes on gen4+ */
1411 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001412 reg = DSPCNTR(pipe);
1413 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001414 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001415 "plane %c assertion failure, should be disabled but not\n",
1416 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001417 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001418 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001419
Jesse Barnesb24e7172011-01-04 15:09:30 -08001420 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001421 for_each_pipe(dev_priv, i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001422 reg = DSPCNTR(i);
1423 val = I915_READ(reg);
1424 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1425 DISPPLANE_SEL_PIPE_SHIFT;
Rob Clarke2c719b2014-12-15 13:56:32 -05001426 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001427 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1428 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001429 }
1430}
1431
Jesse Barnes19332d72013-03-28 09:55:38 -07001432static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1433 enum pipe pipe)
1434{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001435 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001436 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001437 u32 val;
1438
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001439 if (INTEL_INFO(dev)->gen >= 9) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001440 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001441 val = I915_READ(PLANE_CTL(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001442 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001443 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1444 sprite, pipe_name(pipe));
1445 }
1446 } else if (IS_VALLEYVIEW(dev)) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001447 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001448 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001449 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001450 I915_STATE_WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001451 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001452 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001453 }
1454 } else if (INTEL_INFO(dev)->gen >= 7) {
1455 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001456 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001457 I915_STATE_WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001458 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001459 plane_name(pipe), pipe_name(pipe));
1460 } else if (INTEL_INFO(dev)->gen >= 5) {
1461 reg = DVSCNTR(pipe);
1462 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001463 I915_STATE_WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001464 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1465 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001466 }
1467}
1468
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001469static void assert_vblank_disabled(struct drm_crtc *crtc)
1470{
Rob Clarke2c719b2014-12-15 13:56:32 -05001471 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001472 drm_crtc_vblank_put(crtc);
1473}
1474
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001475static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001476{
1477 u32 val;
1478 bool enabled;
1479
Rob Clarke2c719b2014-12-15 13:56:32 -05001480 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001481
Jesse Barnes92f25842011-01-04 15:09:34 -08001482 val = I915_READ(PCH_DREF_CONTROL);
1483 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1484 DREF_SUPERSPREAD_SOURCE_MASK));
Rob Clarke2c719b2014-12-15 13:56:32 -05001485 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
Jesse Barnes92f25842011-01-04 15:09:34 -08001486}
1487
Daniel Vetterab9412b2013-05-03 11:49:46 +02001488static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1489 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001490{
1491 int reg;
1492 u32 val;
1493 bool enabled;
1494
Daniel Vetterab9412b2013-05-03 11:49:46 +02001495 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001496 val = I915_READ(reg);
1497 enabled = !!(val & TRANS_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001498 I915_STATE_WARN(enabled,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001499 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1500 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001501}
1502
Keith Packard4e634382011-08-06 10:39:45 -07001503static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1504 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001505{
1506 if ((val & DP_PORT_EN) == 0)
1507 return false;
1508
1509 if (HAS_PCH_CPT(dev_priv->dev)) {
1510 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1511 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1512 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1513 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001514 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1515 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1516 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001517 } else {
1518 if ((val & DP_PIPE_MASK) != (pipe << 30))
1519 return false;
1520 }
1521 return true;
1522}
1523
Keith Packard1519b992011-08-06 10:35:34 -07001524static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1525 enum pipe pipe, u32 val)
1526{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001527 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001528 return false;
1529
1530 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001531 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001532 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001533 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1534 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1535 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001536 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001537 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001538 return false;
1539 }
1540 return true;
1541}
1542
1543static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1544 enum pipe pipe, u32 val)
1545{
1546 if ((val & LVDS_PORT_EN) == 0)
1547 return false;
1548
1549 if (HAS_PCH_CPT(dev_priv->dev)) {
1550 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1551 return false;
1552 } else {
1553 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1554 return false;
1555 }
1556 return true;
1557}
1558
1559static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1560 enum pipe pipe, u32 val)
1561{
1562 if ((val & ADPA_DAC_ENABLE) == 0)
1563 return false;
1564 if (HAS_PCH_CPT(dev_priv->dev)) {
1565 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1566 return false;
1567 } else {
1568 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1569 return false;
1570 }
1571 return true;
1572}
1573
Jesse Barnes291906f2011-02-02 12:28:03 -08001574static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001575 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001576{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001577 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001578 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001579 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001580 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001581
Rob Clarke2c719b2014-12-15 13:56:32 -05001582 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001583 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001584 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001585}
1586
1587static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1588 enum pipe pipe, int reg)
1589{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001590 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001591 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001592 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001593 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001594
Rob Clarke2c719b2014-12-15 13:56:32 -05001595 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001596 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001597 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001598}
1599
1600static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1601 enum pipe pipe)
1602{
1603 int reg;
1604 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001605
Keith Packardf0575e92011-07-25 22:12:43 -07001606 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1607 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1608 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001609
1610 reg = PCH_ADPA;
1611 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001612 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001613 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001614 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001615
1616 reg = PCH_LVDS;
1617 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001618 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001619 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001620 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001621
Paulo Zanonie2debe92013-02-18 19:00:27 -03001622 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1623 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1624 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001625}
1626
Ville Syrjäläd288f652014-10-28 13:20:22 +02001627static void vlv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001628 const struct intel_crtc_state *pipe_config)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001629{
Daniel Vetter426115c2013-07-11 22:13:42 +02001630 struct drm_device *dev = crtc->base.dev;
1631 struct drm_i915_private *dev_priv = dev->dev_private;
1632 int reg = DPLL(crtc->pipe);
Ville Syrjäläd288f652014-10-28 13:20:22 +02001633 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001634
Daniel Vetter426115c2013-07-11 22:13:42 +02001635 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001636
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001637 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001638 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1639
1640 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001641 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001642 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001643
Daniel Vetter426115c2013-07-11 22:13:42 +02001644 I915_WRITE(reg, dpll);
1645 POSTING_READ(reg);
1646 udelay(150);
1647
1648 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1649 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1650
Ville Syrjäläd288f652014-10-28 13:20:22 +02001651 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
Daniel Vetter426115c2013-07-11 22:13:42 +02001652 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001653
1654 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001655 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001656 POSTING_READ(reg);
1657 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001658 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001659 POSTING_READ(reg);
1660 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001661 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001662 POSTING_READ(reg);
1663 udelay(150); /* wait for warmup */
1664}
1665
Ville Syrjäläd288f652014-10-28 13:20:22 +02001666static void chv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001667 const struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001668{
1669 struct drm_device *dev = crtc->base.dev;
1670 struct drm_i915_private *dev_priv = dev->dev_private;
1671 int pipe = crtc->pipe;
1672 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001673 u32 tmp;
1674
1675 assert_pipe_disabled(dev_priv, crtc->pipe);
1676
1677 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1678
Ville Syrjäläa5805162015-05-26 20:42:30 +03001679 mutex_lock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001680
1681 /* Enable back the 10bit clock to display controller */
1682 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1683 tmp |= DPIO_DCLKP_EN;
1684 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1685
Ville Syrjälä54433e92015-05-26 20:42:31 +03001686 mutex_unlock(&dev_priv->sb_lock);
1687
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001688 /*
1689 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1690 */
1691 udelay(1);
1692
1693 /* Enable PLL */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001694 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001695
1696 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001697 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001698 DRM_ERROR("PLL %d failed to lock\n", pipe);
1699
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001700 /* not sure when this should be written */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001701 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001702 POSTING_READ(DPLL_MD(pipe));
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001703}
1704
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001705static int intel_num_dvo_pipes(struct drm_device *dev)
1706{
1707 struct intel_crtc *crtc;
1708 int count = 0;
1709
1710 for_each_intel_crtc(dev, crtc)
Maarten Lankhorst3538b9d2015-06-01 12:50:10 +02001711 count += crtc->base.state->active &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001712 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001713
1714 return count;
1715}
1716
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001717static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001718{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001719 struct drm_device *dev = crtc->base.dev;
1720 struct drm_i915_private *dev_priv = dev->dev_private;
1721 int reg = DPLL(crtc->pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001722 u32 dpll = crtc->config->dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001723
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001724 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001725
1726 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001727 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001728
1729 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001730 if (IS_MOBILE(dev) && !IS_I830(dev))
1731 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001732
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001733 /* Enable DVO 2x clock on both PLLs if necessary */
1734 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1735 /*
1736 * It appears to be important that we don't enable this
1737 * for the current pipe before otherwise configuring the
1738 * PLL. No idea how this should be handled if multiple
1739 * DVO outputs are enabled simultaneosly.
1740 */
1741 dpll |= DPLL_DVO_2X_MODE;
1742 I915_WRITE(DPLL(!crtc->pipe),
1743 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1744 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001745
1746 /* Wait for the clocks to stabilize. */
1747 POSTING_READ(reg);
1748 udelay(150);
1749
1750 if (INTEL_INFO(dev)->gen >= 4) {
1751 I915_WRITE(DPLL_MD(crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001752 crtc->config->dpll_hw_state.dpll_md);
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001753 } else {
1754 /* The pixel multiplier can only be updated once the
1755 * DPLL is enabled and the clocks are stable.
1756 *
1757 * So write it again.
1758 */
1759 I915_WRITE(reg, dpll);
1760 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001761
1762 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001763 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001764 POSTING_READ(reg);
1765 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001766 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001767 POSTING_READ(reg);
1768 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001769 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001770 POSTING_READ(reg);
1771 udelay(150); /* wait for warmup */
1772}
1773
1774/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001775 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001776 * @dev_priv: i915 private structure
1777 * @pipe: pipe PLL to disable
1778 *
1779 * Disable the PLL for @pipe, making sure the pipe is off first.
1780 *
1781 * Note! This is for pre-ILK only.
1782 */
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001783static void i9xx_disable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001784{
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001785 struct drm_device *dev = crtc->base.dev;
1786 struct drm_i915_private *dev_priv = dev->dev_private;
1787 enum pipe pipe = crtc->pipe;
1788
1789 /* Disable DVO 2x clock on both PLLs if necessary */
1790 if (IS_I830(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001791 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
Maarten Lankhorst3538b9d2015-06-01 12:50:10 +02001792 !intel_num_dvo_pipes(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001793 I915_WRITE(DPLL(PIPE_B),
1794 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1795 I915_WRITE(DPLL(PIPE_A),
1796 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1797 }
1798
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001799 /* Don't disable pipe or pipe PLLs if needed */
1800 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1801 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001802 return;
1803
1804 /* Make sure the pipe isn't still relying on us */
1805 assert_pipe_disabled(dev_priv, pipe);
1806
Ville Syrjäläb8afb912015-06-29 15:25:48 +03001807 I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS);
Daniel Vetter50b44a42013-06-05 13:34:33 +02001808 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001809}
1810
Jesse Barnesf6071162013-10-01 10:41:38 -07001811static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1812{
Ville Syrjäläb8afb912015-06-29 15:25:48 +03001813 u32 val;
Jesse Barnesf6071162013-10-01 10:41:38 -07001814
1815 /* Make sure the pipe isn't still relying on us */
1816 assert_pipe_disabled(dev_priv, pipe);
1817
Imre Deake5cbfbf2014-01-09 17:08:16 +02001818 /*
1819 * Leave integrated clock source and reference clock enabled for pipe B.
1820 * The latter is needed for VGA hotplug / manual detection.
1821 */
Ville Syrjäläb8afb912015-06-29 15:25:48 +03001822 val = DPLL_VGA_MODE_DIS;
Jesse Barnesf6071162013-10-01 10:41:38 -07001823 if (pipe == PIPE_B)
Ville Syrjälä60bfe442015-06-29 15:25:49 +03001824 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REF_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001825 I915_WRITE(DPLL(pipe), val);
1826 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001827
1828}
1829
1830static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1831{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001832 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001833 u32 val;
1834
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001835 /* Make sure the pipe isn't still relying on us */
1836 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001837
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001838 /* Set PLL en = 0 */
Ville Syrjälä60bfe442015-06-29 15:25:49 +03001839 val = DPLL_SSC_REF_CLK_CHV |
1840 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001841 if (pipe != PIPE_A)
1842 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1843 I915_WRITE(DPLL(pipe), val);
1844 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001845
Ville Syrjäläa5805162015-05-26 20:42:30 +03001846 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläd7520482014-04-09 13:28:59 +03001847
1848 /* Disable 10bit clock to display controller */
1849 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1850 val &= ~DPIO_DCLKP_EN;
1851 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1852
Ville Syrjäläa5805162015-05-26 20:42:30 +03001853 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001854}
1855
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001856void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001857 struct intel_digital_port *dport,
1858 unsigned int expected_mask)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001859{
1860 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001861 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001862
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001863 switch (dport->port) {
1864 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001865 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001866 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001867 break;
1868 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001869 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001870 dpll_reg = DPLL(0);
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001871 expected_mask <<= 4;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001872 break;
1873 case PORT_D:
1874 port_mask = DPLL_PORTD_READY_MASK;
1875 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001876 break;
1877 default:
1878 BUG();
1879 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001880
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001881 if (wait_for((I915_READ(dpll_reg) & port_mask) == expected_mask, 1000))
1882 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1883 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001884}
1885
Daniel Vetterb14b1052014-04-24 23:55:13 +02001886static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1887{
1888 struct drm_device *dev = crtc->base.dev;
1889 struct drm_i915_private *dev_priv = dev->dev_private;
1890 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1891
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001892 if (WARN_ON(pll == NULL))
1893 return;
1894
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001895 WARN_ON(!pll->config.crtc_mask);
Daniel Vetterb14b1052014-04-24 23:55:13 +02001896 if (pll->active == 0) {
1897 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1898 WARN_ON(pll->on);
1899 assert_shared_dpll_disabled(dev_priv, pll);
1900
1901 pll->mode_set(dev_priv, pll);
1902 }
1903}
1904
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001905/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001906 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001907 * @dev_priv: i915 private structure
1908 * @pipe: pipe PLL to enable
1909 *
1910 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1911 * drives the transcoder clock.
1912 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001913static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001914{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001915 struct drm_device *dev = crtc->base.dev;
1916 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001917 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001918
Daniel Vetter87a875b2013-06-05 13:34:19 +02001919 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001920 return;
1921
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001922 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001923 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001924
Damien Lespiau74dd6922014-07-29 18:06:17 +01001925 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001926 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001927 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001928
Daniel Vettercdbd2312013-06-05 13:34:03 +02001929 if (pll->active++) {
1930 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001931 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001932 return;
1933 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001934 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001935
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001936 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1937
Daniel Vetter46edb022013-06-05 13:34:12 +02001938 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001939 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001940 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001941}
1942
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001943static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001944{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001945 struct drm_device *dev = crtc->base.dev;
1946 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001947 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001948
Jesse Barnes92f25842011-01-04 15:09:34 -08001949 /* PCH only available on ILK+ */
Jesse Barnes80aa9312015-08-03 13:09:11 -07001950 if (INTEL_INFO(dev)->gen < 5)
1951 return;
1952
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +02001953 if (pll == NULL)
1954 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001955
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +02001956 if (WARN_ON(!(pll->config.crtc_mask & (1 << drm_crtc_index(&crtc->base)))))
Chris Wilson48da64a2012-05-13 20:16:12 +01001957 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001958
Daniel Vetter46edb022013-06-05 13:34:12 +02001959 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1960 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001961 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001962
Chris Wilson48da64a2012-05-13 20:16:12 +01001963 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001964 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001965 return;
1966 }
1967
Daniel Vettere9d69442013-06-05 13:34:15 +02001968 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001969 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001970 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001971 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001972
Daniel Vetter46edb022013-06-05 13:34:12 +02001973 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001974 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001975 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001976
1977 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001978}
1979
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001980static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1981 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001982{
Daniel Vetter23670b322012-11-01 09:15:30 +01001983 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001984 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001985 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001986 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001987
1988 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001989 BUG_ON(!HAS_PCH_SPLIT(dev));
Jesse Barnes040484a2011-01-03 12:14:26 -08001990
1991 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001992 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001993 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001994
1995 /* FDI must be feeding us bits for PCH ports */
1996 assert_fdi_tx_enabled(dev_priv, pipe);
1997 assert_fdi_rx_enabled(dev_priv, pipe);
1998
Daniel Vetter23670b322012-11-01 09:15:30 +01001999 if (HAS_PCH_CPT(dev)) {
2000 /* Workaround: Set the timing override bit before enabling the
2001 * pch transcoder. */
2002 reg = TRANS_CHICKEN2(pipe);
2003 val = I915_READ(reg);
2004 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
2005 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03002006 }
Daniel Vetter23670b322012-11-01 09:15:30 +01002007
Daniel Vetterab9412b2013-05-03 11:49:46 +02002008 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002009 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002010 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07002011
2012 if (HAS_PCH_IBX(dev_priv->dev)) {
2013 /*
Ville Syrjäläc5de7c62015-05-05 17:06:22 +03002014 * Make the BPC in transcoder be consistent with
2015 * that in pipeconf reg. For HDMI we must use 8bpc
2016 * here for both 8bpc and 12bpc.
Jesse Barnese9bcff52011-06-24 12:19:20 -07002017 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002018 val &= ~PIPECONF_BPC_MASK;
Ville Syrjäläc5de7c62015-05-05 17:06:22 +03002019 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_HDMI))
2020 val |= PIPECONF_8BPC;
2021 else
2022 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07002023 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002024
2025 val &= ~TRANS_INTERLACE_MASK;
2026 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02002027 if (HAS_PCH_IBX(dev_priv->dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002028 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02002029 val |= TRANS_LEGACY_INTERLACED_ILK;
2030 else
2031 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002032 else
2033 val |= TRANS_PROGRESSIVE;
2034
Jesse Barnes040484a2011-01-03 12:14:26 -08002035 I915_WRITE(reg, val | TRANS_ENABLE);
2036 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03002037 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08002038}
2039
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002040static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02002041 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08002042{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002043 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002044
2045 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03002046 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002047
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002048 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01002049 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02002050 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002051
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002052 /* Workaround: set timing override bit. */
2053 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01002054 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002055 I915_WRITE(_TRANSA_CHICKEN2, val);
2056
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02002057 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02002058 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002059
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02002060 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
2061 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02002062 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002063 else
2064 val |= TRANS_PROGRESSIVE;
2065
Daniel Vetterab9412b2013-05-03 11:49:46 +02002066 I915_WRITE(LPT_TRANSCONF, val);
2067 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02002068 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002069}
2070
Paulo Zanonib8a4f402012-10-31 18:12:42 -02002071static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
2072 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08002073{
Daniel Vetter23670b322012-11-01 09:15:30 +01002074 struct drm_device *dev = dev_priv->dev;
2075 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08002076
2077 /* FDI relies on the transcoder */
2078 assert_fdi_tx_disabled(dev_priv, pipe);
2079 assert_fdi_rx_disabled(dev_priv, pipe);
2080
Jesse Barnes291906f2011-02-02 12:28:03 -08002081 /* Ports must be off as well */
2082 assert_pch_ports_disabled(dev_priv, pipe);
2083
Daniel Vetterab9412b2013-05-03 11:49:46 +02002084 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002085 val = I915_READ(reg);
2086 val &= ~TRANS_ENABLE;
2087 I915_WRITE(reg, val);
2088 /* wait for PCH transcoder off, transcoder state */
2089 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03002090 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01002091
2092 if (!HAS_PCH_IBX(dev)) {
2093 /* Workaround: Clear the timing override chicken bit again. */
2094 reg = TRANS_CHICKEN2(pipe);
2095 val = I915_READ(reg);
2096 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
2097 I915_WRITE(reg, val);
2098 }
Jesse Barnes040484a2011-01-03 12:14:26 -08002099}
2100
Paulo Zanoniab4d9662012-10-31 18:12:55 -02002101static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002102{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002103 u32 val;
2104
Daniel Vetterab9412b2013-05-03 11:49:46 +02002105 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002106 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02002107 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002108 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02002109 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02002110 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002111
2112 /* Workaround: clear timing override bit. */
2113 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01002114 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002115 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08002116}
2117
2118/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002119 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02002120 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002121 *
Paulo Zanoni03722642014-01-17 13:51:09 -02002122 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002123 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002124 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02002125static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002126{
Paulo Zanoni03722642014-01-17 13:51:09 -02002127 struct drm_device *dev = crtc->base.dev;
2128 struct drm_i915_private *dev_priv = dev->dev_private;
2129 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002130 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2131 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002132 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002133 int reg;
2134 u32 val;
2135
Ville Syrjälä9e2ee2d2015-06-24 21:59:35 +03002136 DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe));
2137
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002138 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002139 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002140 assert_sprites_disabled(dev_priv, pipe);
2141
Paulo Zanoni681e5812012-12-06 11:12:38 -02002142 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002143 pch_transcoder = TRANSCODER_A;
2144 else
2145 pch_transcoder = pipe;
2146
Jesse Barnesb24e7172011-01-04 15:09:30 -08002147 /*
2148 * A pipe without a PLL won't actually be able to drive bits from
2149 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2150 * need the check.
2151 */
Imre Deak50360402015-01-16 00:55:16 -08002152 if (HAS_GMCH_DISPLAY(dev_priv->dev))
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002153 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002154 assert_dsi_pll_enabled(dev_priv);
2155 else
2156 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002157 else {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002158 if (crtc->config->has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002159 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002160 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002161 assert_fdi_tx_pll_enabled(dev_priv,
2162 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002163 }
2164 /* FIXME: assert CPU port conditions for SNB+ */
2165 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002166
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002167 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002168 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002169 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002170 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2171 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00002172 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002173 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002174
2175 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002176 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002177}
2178
2179/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002180 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002181 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002182 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002183 * Disable the pipe of @crtc, making sure that various hardware
2184 * specific requirements are met, if applicable, e.g. plane
2185 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002186 *
2187 * Will wait until the pipe has shut down before returning.
2188 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002189static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002190{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002191 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002192 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002193 enum pipe pipe = crtc->pipe;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002194 int reg;
2195 u32 val;
2196
Ville Syrjälä9e2ee2d2015-06-24 21:59:35 +03002197 DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe));
2198
Jesse Barnesb24e7172011-01-04 15:09:30 -08002199 /*
2200 * Make sure planes won't keep trying to pump pixels to us,
2201 * or we might hang the display.
2202 */
2203 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002204 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002205 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002206
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002207 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002208 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002209 if ((val & PIPECONF_ENABLE) == 0)
2210 return;
2211
Ville Syrjälä67adc642014-08-15 01:21:57 +03002212 /*
2213 * Double wide has implications for planes
2214 * so best keep it disabled when not needed.
2215 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002216 if (crtc->config->double_wide)
Ville Syrjälä67adc642014-08-15 01:21:57 +03002217 val &= ~PIPECONF_DOUBLE_WIDE;
2218
2219 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002220 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2221 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002222 val &= ~PIPECONF_ENABLE;
2223
2224 I915_WRITE(reg, val);
2225 if ((val & PIPECONF_ENABLE) == 0)
2226 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002227}
2228
Chris Wilson693db182013-03-05 14:52:39 +00002229static bool need_vtd_wa(struct drm_device *dev)
2230{
2231#ifdef CONFIG_INTEL_IOMMU
2232 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2233 return true;
2234#endif
2235 return false;
2236}
2237
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002238unsigned int
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002239intel_tile_height(struct drm_device *dev, uint32_t pixel_format,
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01002240 uint64_t fb_format_modifier, unsigned int plane)
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002241{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002242 unsigned int tile_height;
2243 uint32_t pixel_bytes;
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002244
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002245 switch (fb_format_modifier) {
2246 case DRM_FORMAT_MOD_NONE:
2247 tile_height = 1;
2248 break;
2249 case I915_FORMAT_MOD_X_TILED:
2250 tile_height = IS_GEN2(dev) ? 16 : 8;
2251 break;
2252 case I915_FORMAT_MOD_Y_TILED:
2253 tile_height = 32;
2254 break;
2255 case I915_FORMAT_MOD_Yf_TILED:
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01002256 pixel_bytes = drm_format_plane_cpp(pixel_format, plane);
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002257 switch (pixel_bytes) {
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002258 default:
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002259 case 1:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002260 tile_height = 64;
2261 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002262 case 2:
2263 case 4:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002264 tile_height = 32;
2265 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002266 case 8:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002267 tile_height = 16;
2268 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002269 case 16:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002270 WARN_ONCE(1,
2271 "128-bit pixels are not supported for display!");
2272 tile_height = 16;
2273 break;
2274 }
2275 break;
2276 default:
2277 MISSING_CASE(fb_format_modifier);
2278 tile_height = 1;
2279 break;
2280 }
Daniel Vetter091df6c2015-02-10 17:16:10 +00002281
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002282 return tile_height;
2283}
2284
2285unsigned int
2286intel_fb_align_height(struct drm_device *dev, unsigned int height,
2287 uint32_t pixel_format, uint64_t fb_format_modifier)
2288{
2289 return ALIGN(height, intel_tile_height(dev, pixel_format,
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01002290 fb_format_modifier, 0));
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002291}
2292
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002293static int
2294intel_fill_fb_ggtt_view(struct i915_ggtt_view *view, struct drm_framebuffer *fb,
2295 const struct drm_plane_state *plane_state)
2296{
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002297 struct intel_rotation_info *info = &view->rotation_info;
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01002298 unsigned int tile_height, tile_pitch;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002299
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002300 *view = i915_ggtt_view_normal;
2301
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002302 if (!plane_state)
2303 return 0;
2304
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002305 if (!intel_rotation_90_or_270(plane_state->rotation))
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002306 return 0;
2307
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002308 *view = i915_ggtt_view_rotated;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002309
2310 info->height = fb->height;
2311 info->pixel_format = fb->pixel_format;
2312 info->pitch = fb->pitches[0];
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01002313 info->uv_offset = fb->offsets[1];
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002314 info->fb_modifier = fb->modifier[0];
2315
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01002316 tile_height = intel_tile_height(fb->dev, fb->pixel_format,
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01002317 fb->modifier[0], 0);
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01002318 tile_pitch = PAGE_SIZE / tile_height;
2319 info->width_pages = DIV_ROUND_UP(fb->pitches[0], tile_pitch);
2320 info->height_pages = DIV_ROUND_UP(fb->height, tile_height);
2321 info->size = info->width_pages * info->height_pages * PAGE_SIZE;
2322
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01002323 if (info->pixel_format == DRM_FORMAT_NV12) {
2324 tile_height = intel_tile_height(fb->dev, fb->pixel_format,
2325 fb->modifier[0], 1);
2326 tile_pitch = PAGE_SIZE / tile_height;
2327 info->width_pages_uv = DIV_ROUND_UP(fb->pitches[0], tile_pitch);
2328 info->height_pages_uv = DIV_ROUND_UP(fb->height / 2,
2329 tile_height);
2330 info->size_uv = info->width_pages_uv * info->height_pages_uv *
2331 PAGE_SIZE;
2332 }
2333
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002334 return 0;
2335}
2336
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002337static unsigned int intel_linear_alignment(struct drm_i915_private *dev_priv)
2338{
2339 if (INTEL_INFO(dev_priv)->gen >= 9)
2340 return 256 * 1024;
Ville Syrjälä985b8bb2015-06-11 16:31:15 +03002341 else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) ||
2342 IS_VALLEYVIEW(dev_priv))
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002343 return 128 * 1024;
2344 else if (INTEL_INFO(dev_priv)->gen >= 4)
2345 return 4 * 1024;
2346 else
Ville Syrjälä44c59052015-06-11 16:31:16 +03002347 return 0;
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002348}
2349
Chris Wilson127bd2a2010-07-23 23:32:05 +01002350int
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002351intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2352 struct drm_framebuffer *fb,
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002353 const struct drm_plane_state *plane_state,
John Harrison91af1272015-06-18 13:14:56 +01002354 struct intel_engine_cs *pipelined,
2355 struct drm_i915_gem_request **pipelined_request)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002356{
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002357 struct drm_device *dev = fb->dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002358 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002359 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002360 struct i915_ggtt_view view;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002361 u32 alignment;
2362 int ret;
2363
Matt Roperebcdd392014-07-09 16:22:11 -07002364 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2365
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002366 switch (fb->modifier[0]) {
2367 case DRM_FORMAT_MOD_NONE:
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002368 alignment = intel_linear_alignment(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002369 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002370 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002371 if (INTEL_INFO(dev)->gen >= 9)
2372 alignment = 256 * 1024;
2373 else {
2374 /* pin() will align the object as required by fence */
2375 alignment = 0;
2376 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002377 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002378 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiau1327b9a2015-02-27 11:15:20 +00002379 case I915_FORMAT_MOD_Yf_TILED:
2380 if (WARN_ONCE(INTEL_INFO(dev)->gen < 9,
2381 "Y tiling bo slipped through, driver bug!\n"))
2382 return -EINVAL;
2383 alignment = 1 * 1024 * 1024;
2384 break;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002385 default:
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002386 MISSING_CASE(fb->modifier[0]);
2387 return -EINVAL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002388 }
2389
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002390 ret = intel_fill_fb_ggtt_view(&view, fb, plane_state);
2391 if (ret)
2392 return ret;
2393
Chris Wilson693db182013-03-05 14:52:39 +00002394 /* Note that the w/a also requires 64 PTE of padding following the
2395 * bo. We currently fill all unused PTE with the shadow page and so
2396 * we should always have valid PTE following the scanout preventing
2397 * the VT-d warning.
2398 */
2399 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2400 alignment = 256 * 1024;
2401
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002402 /*
2403 * Global gtt pte registers are special registers which actually forward
2404 * writes to a chunk of system memory. Which means that there is no risk
2405 * that the register values disappear as soon as we call
2406 * intel_runtime_pm_put(), so it is correct to wrap only the
2407 * pin/unpin/fence and not more.
2408 */
2409 intel_runtime_pm_get(dev_priv);
2410
Chris Wilsonce453d82011-02-21 14:43:56 +00002411 dev_priv->mm.interruptible = false;
Tvrtko Ursuline6617332015-03-23 11:10:33 +00002412 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined,
John Harrison91af1272015-06-18 13:14:56 +01002413 pipelined_request, &view);
Chris Wilson48b956c2010-09-14 12:50:34 +01002414 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002415 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002416
2417 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2418 * fence, whereas 965+ only requires a fence if using
2419 * framebuffer compression. For simplicity, we always install
2420 * a fence as the cost is not that onerous.
2421 */
Chris Wilson06d98132012-04-17 15:31:24 +01002422 ret = i915_gem_object_get_fence(obj);
Maarten Lankhorst842315e2015-08-05 12:37:11 +02002423 if (ret == -EDEADLK) {
2424 /*
2425 * -EDEADLK means there are no free fences
2426 * no pending flips.
2427 *
2428 * This is propagated to atomic, but it uses
2429 * -EDEADLK to force a locking recovery, so
2430 * change the returned error to -EBUSY.
2431 */
2432 ret = -EBUSY;
2433 goto err_unpin;
2434 } else if (ret)
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002435 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002436
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002437 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002438
Chris Wilsonce453d82011-02-21 14:43:56 +00002439 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002440 intel_runtime_pm_put(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002441 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002442
2443err_unpin:
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002444 i915_gem_object_unpin_from_display_plane(obj, &view);
Chris Wilsonce453d82011-02-21 14:43:56 +00002445err_interruptible:
2446 dev_priv->mm.interruptible = true;
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002447 intel_runtime_pm_put(dev_priv);
Chris Wilson48b956c2010-09-14 12:50:34 +01002448 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002449}
2450
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002451static void intel_unpin_fb_obj(struct drm_framebuffer *fb,
2452 const struct drm_plane_state *plane_state)
Chris Wilson1690e1e2011-12-14 13:57:08 +01002453{
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002454 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002455 struct i915_ggtt_view view;
2456 int ret;
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002457
Matt Roperebcdd392014-07-09 16:22:11 -07002458 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2459
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002460 ret = intel_fill_fb_ggtt_view(&view, fb, plane_state);
2461 WARN_ONCE(ret, "Couldn't get view from plane state!");
2462
Chris Wilson1690e1e2011-12-14 13:57:08 +01002463 i915_gem_object_unpin_fence(obj);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002464 i915_gem_object_unpin_from_display_plane(obj, &view);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002465}
2466
Daniel Vetterc2c75132012-07-05 12:17:30 +02002467/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2468 * is assumed to be a power-of-two. */
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002469unsigned long intel_gen4_compute_page_offset(struct drm_i915_private *dev_priv,
2470 int *x, int *y,
Chris Wilsonbc752862013-02-21 20:04:31 +00002471 unsigned int tiling_mode,
2472 unsigned int cpp,
2473 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002474{
Chris Wilsonbc752862013-02-21 20:04:31 +00002475 if (tiling_mode != I915_TILING_NONE) {
2476 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002477
Chris Wilsonbc752862013-02-21 20:04:31 +00002478 tile_rows = *y / 8;
2479 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002480
Chris Wilsonbc752862013-02-21 20:04:31 +00002481 tiles = *x / (512/cpp);
2482 *x %= 512/cpp;
2483
2484 return tile_rows * pitch * 8 + tiles * 4096;
2485 } else {
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002486 unsigned int alignment = intel_linear_alignment(dev_priv) - 1;
Chris Wilsonbc752862013-02-21 20:04:31 +00002487 unsigned int offset;
2488
2489 offset = *y * pitch + *x * cpp;
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002490 *y = (offset & alignment) / pitch;
2491 *x = ((offset & alignment) - *y * pitch) / cpp;
2492 return offset & ~alignment;
Chris Wilsonbc752862013-02-21 20:04:31 +00002493 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002494}
2495
Damien Lespiaub35d63f2015-01-20 12:51:50 +00002496static int i9xx_format_to_fourcc(int format)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002497{
2498 switch (format) {
2499 case DISPPLANE_8BPP:
2500 return DRM_FORMAT_C8;
2501 case DISPPLANE_BGRX555:
2502 return DRM_FORMAT_XRGB1555;
2503 case DISPPLANE_BGRX565:
2504 return DRM_FORMAT_RGB565;
2505 default:
2506 case DISPPLANE_BGRX888:
2507 return DRM_FORMAT_XRGB8888;
2508 case DISPPLANE_RGBX888:
2509 return DRM_FORMAT_XBGR8888;
2510 case DISPPLANE_BGRX101010:
2511 return DRM_FORMAT_XRGB2101010;
2512 case DISPPLANE_RGBX101010:
2513 return DRM_FORMAT_XBGR2101010;
2514 }
2515}
2516
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00002517static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2518{
2519 switch (format) {
2520 case PLANE_CTL_FORMAT_RGB_565:
2521 return DRM_FORMAT_RGB565;
2522 default:
2523 case PLANE_CTL_FORMAT_XRGB_8888:
2524 if (rgb_order) {
2525 if (alpha)
2526 return DRM_FORMAT_ABGR8888;
2527 else
2528 return DRM_FORMAT_XBGR8888;
2529 } else {
2530 if (alpha)
2531 return DRM_FORMAT_ARGB8888;
2532 else
2533 return DRM_FORMAT_XRGB8888;
2534 }
2535 case PLANE_CTL_FORMAT_XRGB_2101010:
2536 if (rgb_order)
2537 return DRM_FORMAT_XBGR2101010;
2538 else
2539 return DRM_FORMAT_XRGB2101010;
2540 }
2541}
2542
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002543static bool
Daniel Vetterf6936e22015-03-26 12:17:05 +01002544intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2545 struct intel_initial_plane_config *plane_config)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002546{
2547 struct drm_device *dev = crtc->base.dev;
2548 struct drm_i915_gem_object *obj = NULL;
2549 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Damien Lespiau2d140302015-02-05 17:22:18 +00002550 struct drm_framebuffer *fb = &plane_config->fb->base;
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002551 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2552 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2553 PAGE_SIZE);
2554
2555 size_aligned -= base_aligned;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002556
Chris Wilsonff2652e2014-03-10 08:07:02 +00002557 if (plane_config->size == 0)
2558 return false;
2559
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002560 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2561 base_aligned,
2562 base_aligned,
2563 size_aligned);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002564 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002565 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002566
Damien Lespiau49af4492015-01-20 12:51:44 +00002567 obj->tiling_mode = plane_config->tiling;
2568 if (obj->tiling_mode == I915_TILING_X)
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002569 obj->stride = fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002570
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002571 mode_cmd.pixel_format = fb->pixel_format;
2572 mode_cmd.width = fb->width;
2573 mode_cmd.height = fb->height;
2574 mode_cmd.pitches[0] = fb->pitches[0];
Daniel Vetter18c52472015-02-10 17:16:09 +00002575 mode_cmd.modifier[0] = fb->modifier[0];
2576 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002577
2578 mutex_lock(&dev->struct_mutex);
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002579 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002580 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002581 DRM_DEBUG_KMS("intel fb init failed\n");
2582 goto out_unref_obj;
2583 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002584 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002585
Daniel Vetterf6936e22015-03-26 12:17:05 +01002586 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002587 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002588
2589out_unref_obj:
2590 drm_gem_object_unreference(&obj->base);
2591 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002592 return false;
2593}
2594
Matt Roperafd65eb2015-02-03 13:10:04 -08002595/* Update plane->state->fb to match plane->fb after driver-internal updates */
2596static void
2597update_state_fb(struct drm_plane *plane)
2598{
2599 if (plane->fb == plane->state->fb)
2600 return;
2601
2602 if (plane->state->fb)
2603 drm_framebuffer_unreference(plane->state->fb);
2604 plane->state->fb = plane->fb;
2605 if (plane->state->fb)
2606 drm_framebuffer_reference(plane->state->fb);
2607}
2608
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002609static void
Daniel Vetterf6936e22015-03-26 12:17:05 +01002610intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2611 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002612{
2613 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002614 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002615 struct drm_crtc *c;
2616 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002617 struct drm_i915_gem_object *obj;
Daniel Vetter88595ac2015-03-26 12:42:24 +01002618 struct drm_plane *primary = intel_crtc->base.primary;
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002619 struct drm_plane_state *plane_state = primary->state;
Daniel Vetter88595ac2015-03-26 12:42:24 +01002620 struct drm_framebuffer *fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002621
Damien Lespiau2d140302015-02-05 17:22:18 +00002622 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002623 return;
2624
Daniel Vetterf6936e22015-03-26 12:17:05 +01002625 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002626 fb = &plane_config->fb->base;
2627 goto valid_fb;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002628 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002629
Damien Lespiau2d140302015-02-05 17:22:18 +00002630 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002631
2632 /*
2633 * Failed to alloc the obj, check to see if we should share
2634 * an fb with another CRTC instead
2635 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002636 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002637 i = to_intel_crtc(c);
2638
2639 if (c == &intel_crtc->base)
2640 continue;
2641
Matt Roper2ff8fde2014-07-08 07:50:07 -07002642 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002643 continue;
2644
Daniel Vetter88595ac2015-03-26 12:42:24 +01002645 fb = c->primary->fb;
2646 if (!fb)
Matt Roper2ff8fde2014-07-08 07:50:07 -07002647 continue;
2648
Daniel Vetter88595ac2015-03-26 12:42:24 +01002649 obj = intel_fb_obj(fb);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002650 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002651 drm_framebuffer_reference(fb);
2652 goto valid_fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002653 }
2654 }
Daniel Vetter88595ac2015-03-26 12:42:24 +01002655
2656 return;
2657
2658valid_fb:
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002659 plane_state->src_x = plane_state->src_y = 0;
2660 plane_state->src_w = fb->width << 16;
2661 plane_state->src_h = fb->height << 16;
2662
2663 plane_state->crtc_x = plane_state->src_y = 0;
2664 plane_state->crtc_w = fb->width;
2665 plane_state->crtc_h = fb->height;
2666
Daniel Vetter88595ac2015-03-26 12:42:24 +01002667 obj = intel_fb_obj(fb);
2668 if (obj->tiling_mode != I915_TILING_NONE)
2669 dev_priv->preserve_bios_swizzle = true;
2670
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002671 drm_framebuffer_reference(fb);
2672 primary->fb = primary->state->fb = fb;
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002673 primary->crtc = primary->state->crtc = &intel_crtc->base;
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002674 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
Ville Syrjäläa9ff8712015-06-24 21:59:34 +03002675 obj->frontbuffer_bits |= to_intel_plane(primary)->frontbuffer_bit;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002676}
2677
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002678static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2679 struct drm_framebuffer *fb,
2680 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002681{
2682 struct drm_device *dev = crtc->dev;
2683 struct drm_i915_private *dev_priv = dev->dev_private;
2684 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002685 struct drm_plane *primary = crtc->primary;
2686 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002687 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002688 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002689 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002690 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002691 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302692 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002693
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002694 if (!visible || !fb) {
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002695 I915_WRITE(reg, 0);
2696 if (INTEL_INFO(dev)->gen >= 4)
2697 I915_WRITE(DSPSURF(plane), 0);
2698 else
2699 I915_WRITE(DSPADDR(plane), 0);
2700 POSTING_READ(reg);
2701 return;
2702 }
2703
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002704 obj = intel_fb_obj(fb);
2705 if (WARN_ON(obj == NULL))
2706 return;
2707
2708 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2709
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002710 dspcntr = DISPPLANE_GAMMA_ENABLE;
2711
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002712 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002713
2714 if (INTEL_INFO(dev)->gen < 4) {
2715 if (intel_crtc->pipe == PIPE_B)
2716 dspcntr |= DISPPLANE_SEL_PIPE_B;
2717
2718 /* pipesrc and dspsize control the size that is scaled from,
2719 * which should always be the user's requested size.
2720 */
2721 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002722 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2723 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002724 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002725 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2726 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002727 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2728 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002729 I915_WRITE(PRIMPOS(plane), 0);
2730 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002731 }
2732
Ville Syrjälä57779d02012-10-31 17:50:14 +02002733 switch (fb->pixel_format) {
2734 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002735 dspcntr |= DISPPLANE_8BPP;
2736 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002737 case DRM_FORMAT_XRGB1555:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002738 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002739 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002740 case DRM_FORMAT_RGB565:
2741 dspcntr |= DISPPLANE_BGRX565;
2742 break;
2743 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002744 dspcntr |= DISPPLANE_BGRX888;
2745 break;
2746 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002747 dspcntr |= DISPPLANE_RGBX888;
2748 break;
2749 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002750 dspcntr |= DISPPLANE_BGRX101010;
2751 break;
2752 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002753 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002754 break;
2755 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002756 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002757 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002758
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002759 if (INTEL_INFO(dev)->gen >= 4 &&
2760 obj->tiling_mode != I915_TILING_NONE)
2761 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002762
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002763 if (IS_G4X(dev))
2764 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2765
Ville Syrjäläb98971272014-08-27 16:51:22 +03002766 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002767
Daniel Vetterc2c75132012-07-05 12:17:30 +02002768 if (INTEL_INFO(dev)->gen >= 4) {
2769 intel_crtc->dspaddr_offset =
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002770 intel_gen4_compute_page_offset(dev_priv,
2771 &x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002772 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002773 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002774 linear_offset -= intel_crtc->dspaddr_offset;
2775 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002776 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002777 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002778
Matt Roper8e7d6882015-01-21 16:35:41 -08002779 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302780 dspcntr |= DISPPLANE_ROTATE_180;
2781
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002782 x += (intel_crtc->config->pipe_src_w - 1);
2783 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302784
2785 /* Finding the last pixel of the last line of the display
2786 data and adding to linear_offset*/
2787 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002788 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2789 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302790 }
2791
Paulo Zanoni2db33662015-09-14 15:20:03 -03002792 intel_crtc->adjusted_x = x;
2793 intel_crtc->adjusted_y = y;
2794
Sonika Jindal48404c12014-08-22 14:06:04 +05302795 I915_WRITE(reg, dspcntr);
2796
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002797 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002798 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002799 I915_WRITE(DSPSURF(plane),
2800 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002801 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002802 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002803 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002804 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002805 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002806}
2807
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002808static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2809 struct drm_framebuffer *fb,
2810 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002811{
2812 struct drm_device *dev = crtc->dev;
2813 struct drm_i915_private *dev_priv = dev->dev_private;
2814 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002815 struct drm_plane *primary = crtc->primary;
2816 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002817 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002818 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002819 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002820 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002821 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302822 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002823
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002824 if (!visible || !fb) {
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002825 I915_WRITE(reg, 0);
2826 I915_WRITE(DSPSURF(plane), 0);
2827 POSTING_READ(reg);
2828 return;
2829 }
2830
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002831 obj = intel_fb_obj(fb);
2832 if (WARN_ON(obj == NULL))
2833 return;
2834
2835 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2836
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002837 dspcntr = DISPPLANE_GAMMA_ENABLE;
2838
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002839 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002840
2841 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2842 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2843
Ville Syrjälä57779d02012-10-31 17:50:14 +02002844 switch (fb->pixel_format) {
2845 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002846 dspcntr |= DISPPLANE_8BPP;
2847 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002848 case DRM_FORMAT_RGB565:
2849 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002850 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002851 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002852 dspcntr |= DISPPLANE_BGRX888;
2853 break;
2854 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002855 dspcntr |= DISPPLANE_RGBX888;
2856 break;
2857 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002858 dspcntr |= DISPPLANE_BGRX101010;
2859 break;
2860 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002861 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002862 break;
2863 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002864 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002865 }
2866
2867 if (obj->tiling_mode != I915_TILING_NONE)
2868 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002869
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002870 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002871 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002872
Ville Syrjäläb98971272014-08-27 16:51:22 +03002873 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002874 intel_crtc->dspaddr_offset =
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002875 intel_gen4_compute_page_offset(dev_priv,
2876 &x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002877 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002878 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002879 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002880 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302881 dspcntr |= DISPPLANE_ROTATE_180;
2882
2883 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002884 x += (intel_crtc->config->pipe_src_w - 1);
2885 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302886
2887 /* Finding the last pixel of the last line of the display
2888 data and adding to linear_offset*/
2889 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002890 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2891 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302892 }
2893 }
2894
Paulo Zanoni2db33662015-09-14 15:20:03 -03002895 intel_crtc->adjusted_x = x;
2896 intel_crtc->adjusted_y = y;
2897
Sonika Jindal48404c12014-08-22 14:06:04 +05302898 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002899
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002900 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002901 I915_WRITE(DSPSURF(plane),
2902 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002903 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002904 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2905 } else {
2906 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2907 I915_WRITE(DSPLINOFF(plane), linear_offset);
2908 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002909 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002910}
2911
Damien Lespiaub3218032015-02-27 11:15:18 +00002912u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2913 uint32_t pixel_format)
2914{
2915 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2916
2917 /*
2918 * The stride is either expressed as a multiple of 64 bytes
2919 * chunks for linear buffers or in number of tiles for tiled
2920 * buffers.
2921 */
2922 switch (fb_modifier) {
2923 case DRM_FORMAT_MOD_NONE:
2924 return 64;
2925 case I915_FORMAT_MOD_X_TILED:
2926 if (INTEL_INFO(dev)->gen == 2)
2927 return 128;
2928 return 512;
2929 case I915_FORMAT_MOD_Y_TILED:
2930 /* No need to check for old gens and Y tiling since this is
2931 * about the display engine and those will be blocked before
2932 * we get here.
2933 */
2934 return 128;
2935 case I915_FORMAT_MOD_Yf_TILED:
2936 if (bits_per_pixel == 8)
2937 return 64;
2938 else
2939 return 128;
2940 default:
2941 MISSING_CASE(fb_modifier);
2942 return 64;
2943 }
2944}
2945
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002946unsigned long intel_plane_obj_offset(struct intel_plane *intel_plane,
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002947 struct drm_i915_gem_object *obj,
2948 unsigned int plane)
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002949{
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002950 const struct i915_ggtt_view *view = &i915_ggtt_view_normal;
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002951 struct i915_vma *vma;
2952 unsigned char *offset;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002953
2954 if (intel_rotation_90_or_270(intel_plane->base.state->rotation))
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002955 view = &i915_ggtt_view_rotated;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002956
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002957 vma = i915_gem_obj_to_ggtt_view(obj, view);
2958 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
2959 view->type))
2960 return -1;
2961
2962 offset = (unsigned char *)vma->node.start;
2963
2964 if (plane == 1) {
2965 offset += vma->ggtt_view.rotation_info.uv_start_page *
2966 PAGE_SIZE;
2967 }
2968
2969 return (unsigned long)offset;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002970}
2971
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02002972static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
2973{
2974 struct drm_device *dev = intel_crtc->base.dev;
2975 struct drm_i915_private *dev_priv = dev->dev_private;
2976
2977 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
2978 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
2979 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02002980}
2981
Chandra Kondurua1b22782015-04-07 15:28:45 -07002982/*
2983 * This function detaches (aka. unbinds) unused scalers in hardware
2984 */
Maarten Lankhorst05832362015-06-15 12:33:48 +02002985static void skl_detach_scalers(struct intel_crtc *intel_crtc)
Chandra Kondurua1b22782015-04-07 15:28:45 -07002986{
Chandra Kondurua1b22782015-04-07 15:28:45 -07002987 struct intel_crtc_scaler_state *scaler_state;
2988 int i;
2989
Chandra Kondurua1b22782015-04-07 15:28:45 -07002990 scaler_state = &intel_crtc->config->scaler_state;
2991
2992 /* loop through and disable scalers that aren't in use */
2993 for (i = 0; i < intel_crtc->num_scalers; i++) {
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02002994 if (!scaler_state->scalers[i].in_use)
2995 skl_detach_scaler(intel_crtc, i);
Chandra Kondurua1b22782015-04-07 15:28:45 -07002996 }
2997}
2998
Chandra Konduru6156a452015-04-27 13:48:39 -07002999u32 skl_plane_ctl_format(uint32_t pixel_format)
3000{
Chandra Konduru6156a452015-04-27 13:48:39 -07003001 switch (pixel_format) {
Damien Lespiaud161cf72015-05-12 16:13:17 +01003002 case DRM_FORMAT_C8:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003003 return PLANE_CTL_FORMAT_INDEXED;
Chandra Konduru6156a452015-04-27 13:48:39 -07003004 case DRM_FORMAT_RGB565:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003005 return PLANE_CTL_FORMAT_RGB_565;
Chandra Konduru6156a452015-04-27 13:48:39 -07003006 case DRM_FORMAT_XBGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003007 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
Chandra Konduru6156a452015-04-27 13:48:39 -07003008 case DRM_FORMAT_XRGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003009 return PLANE_CTL_FORMAT_XRGB_8888;
Chandra Konduru6156a452015-04-27 13:48:39 -07003010 /*
3011 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
3012 * to be already pre-multiplied. We need to add a knob (or a different
3013 * DRM_FORMAT) for user-space to configure that.
3014 */
3015 case DRM_FORMAT_ABGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003016 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
Chandra Konduru6156a452015-04-27 13:48:39 -07003017 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003018 case DRM_FORMAT_ARGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003019 return PLANE_CTL_FORMAT_XRGB_8888 |
Chandra Konduru6156a452015-04-27 13:48:39 -07003020 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003021 case DRM_FORMAT_XRGB2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003022 return PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07003023 case DRM_FORMAT_XBGR2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003024 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07003025 case DRM_FORMAT_YUYV:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003026 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
Chandra Konduru6156a452015-04-27 13:48:39 -07003027 case DRM_FORMAT_YVYU:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003028 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
Chandra Konduru6156a452015-04-27 13:48:39 -07003029 case DRM_FORMAT_UYVY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003030 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003031 case DRM_FORMAT_VYUY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003032 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003033 default:
Damien Lespiau4249eee2015-05-12 16:13:16 +01003034 MISSING_CASE(pixel_format);
Chandra Konduru6156a452015-04-27 13:48:39 -07003035 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003036
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003037 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003038}
3039
3040u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
3041{
Chandra Konduru6156a452015-04-27 13:48:39 -07003042 switch (fb_modifier) {
3043 case DRM_FORMAT_MOD_NONE:
3044 break;
3045 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003046 return PLANE_CTL_TILED_X;
Chandra Konduru6156a452015-04-27 13:48:39 -07003047 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003048 return PLANE_CTL_TILED_Y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003049 case I915_FORMAT_MOD_Yf_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003050 return PLANE_CTL_TILED_YF;
Chandra Konduru6156a452015-04-27 13:48:39 -07003051 default:
3052 MISSING_CASE(fb_modifier);
3053 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003054
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003055 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003056}
3057
3058u32 skl_plane_ctl_rotation(unsigned int rotation)
3059{
Chandra Konduru6156a452015-04-27 13:48:39 -07003060 switch (rotation) {
3061 case BIT(DRM_ROTATE_0):
3062 break;
Sonika Jindal1e8df162015-05-20 13:40:48 +05303063 /*
3064 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
3065 * while i915 HW rotation is clockwise, thats why this swapping.
3066 */
Chandra Konduru6156a452015-04-27 13:48:39 -07003067 case BIT(DRM_ROTATE_90):
Sonika Jindal1e8df162015-05-20 13:40:48 +05303068 return PLANE_CTL_ROTATE_270;
Chandra Konduru6156a452015-04-27 13:48:39 -07003069 case BIT(DRM_ROTATE_180):
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003070 return PLANE_CTL_ROTATE_180;
Chandra Konduru6156a452015-04-27 13:48:39 -07003071 case BIT(DRM_ROTATE_270):
Sonika Jindal1e8df162015-05-20 13:40:48 +05303072 return PLANE_CTL_ROTATE_90;
Chandra Konduru6156a452015-04-27 13:48:39 -07003073 default:
3074 MISSING_CASE(rotation);
3075 }
3076
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003077 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003078}
3079
Damien Lespiau70d21f02013-07-03 21:06:04 +01003080static void skylake_update_primary_plane(struct drm_crtc *crtc,
3081 struct drm_framebuffer *fb,
3082 int x, int y)
3083{
3084 struct drm_device *dev = crtc->dev;
3085 struct drm_i915_private *dev_priv = dev->dev_private;
3086 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003087 struct drm_plane *plane = crtc->primary;
3088 bool visible = to_intel_plane_state(plane->state)->visible;
Damien Lespiau70d21f02013-07-03 21:06:04 +01003089 struct drm_i915_gem_object *obj;
3090 int pipe = intel_crtc->pipe;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303091 u32 plane_ctl, stride_div, stride;
3092 u32 tile_height, plane_offset, plane_size;
3093 unsigned int rotation;
3094 int x_offset, y_offset;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003095 unsigned long surf_addr;
Chandra Konduru6156a452015-04-27 13:48:39 -07003096 struct intel_crtc_state *crtc_state = intel_crtc->config;
3097 struct intel_plane_state *plane_state;
3098 int src_x = 0, src_y = 0, src_w = 0, src_h = 0;
3099 int dst_x = 0, dst_y = 0, dst_w = 0, dst_h = 0;
3100 int scaler_id = -1;
3101
Chandra Konduru6156a452015-04-27 13:48:39 -07003102 plane_state = to_intel_plane_state(plane->state);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003103
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003104 if (!visible || !fb) {
Damien Lespiau70d21f02013-07-03 21:06:04 +01003105 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3106 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3107 POSTING_READ(PLANE_CTL(pipe, 0));
3108 return;
3109 }
3110
3111 plane_ctl = PLANE_CTL_ENABLE |
3112 PLANE_CTL_PIPE_GAMMA_ENABLE |
3113 PLANE_CTL_PIPE_CSC_ENABLE;
3114
Chandra Konduru6156a452015-04-27 13:48:39 -07003115 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3116 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003117 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303118
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303119 rotation = plane->state->rotation;
Chandra Konduru6156a452015-04-27 13:48:39 -07003120 plane_ctl |= skl_plane_ctl_rotation(rotation);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003121
Damien Lespiaub3218032015-02-27 11:15:18 +00003122 obj = intel_fb_obj(fb);
3123 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
3124 fb->pixel_format);
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01003125 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303126
Chandra Konduru6156a452015-04-27 13:48:39 -07003127 /*
3128 * FIXME: intel_plane_state->src, dst aren't set when transitional
3129 * update_plane helpers are called from legacy paths.
3130 * Once full atomic crtc is available, below check can be avoided.
3131 */
3132 if (drm_rect_width(&plane_state->src)) {
3133 scaler_id = plane_state->scaler_id;
3134 src_x = plane_state->src.x1 >> 16;
3135 src_y = plane_state->src.y1 >> 16;
3136 src_w = drm_rect_width(&plane_state->src) >> 16;
3137 src_h = drm_rect_height(&plane_state->src) >> 16;
3138 dst_x = plane_state->dst.x1;
3139 dst_y = plane_state->dst.y1;
3140 dst_w = drm_rect_width(&plane_state->dst);
3141 dst_h = drm_rect_height(&plane_state->dst);
3142
3143 WARN_ON(x != src_x || y != src_y);
3144 } else {
3145 src_w = intel_crtc->config->pipe_src_w;
3146 src_h = intel_crtc->config->pipe_src_h;
3147 }
3148
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303149 if (intel_rotation_90_or_270(rotation)) {
3150 /* stride = Surface height in tiles */
Chandra Konduru2614f172015-05-08 20:22:46 -07003151 tile_height = intel_tile_height(dev, fb->pixel_format,
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01003152 fb->modifier[0], 0);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303153 stride = DIV_ROUND_UP(fb->height, tile_height);
Chandra Konduru6156a452015-04-27 13:48:39 -07003154 x_offset = stride * tile_height - y - src_h;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303155 y_offset = x;
Chandra Konduru6156a452015-04-27 13:48:39 -07003156 plane_size = (src_w - 1) << 16 | (src_h - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303157 } else {
3158 stride = fb->pitches[0] / stride_div;
3159 x_offset = x;
3160 y_offset = y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003161 plane_size = (src_h - 1) << 16 | (src_w - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303162 }
3163 plane_offset = y_offset << 16 | x_offset;
Damien Lespiaub3218032015-02-27 11:15:18 +00003164
Paulo Zanoni2db33662015-09-14 15:20:03 -03003165 intel_crtc->adjusted_x = x_offset;
3166 intel_crtc->adjusted_y = y_offset;
3167
Damien Lespiau70d21f02013-07-03 21:06:04 +01003168 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303169 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3170 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3171 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
Chandra Konduru6156a452015-04-27 13:48:39 -07003172
3173 if (scaler_id >= 0) {
3174 uint32_t ps_ctrl = 0;
3175
3176 WARN_ON(!dst_w || !dst_h);
3177 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3178 crtc_state->scaler_state.scalers[scaler_id].mode;
3179 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3180 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3181 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3182 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3183 I915_WRITE(PLANE_POS(pipe, 0), 0);
3184 } else {
3185 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3186 }
3187
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003188 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003189
3190 POSTING_READ(PLANE_SURF(pipe, 0));
3191}
3192
Jesse Barnes17638cd2011-06-24 12:19:23 -07003193/* Assume fb object is pinned & idle & fenced and just update base pointers */
3194static int
3195intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3196 int x, int y, enum mode_set_atomic state)
3197{
3198 struct drm_device *dev = crtc->dev;
3199 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003200
Paulo Zanoniff2a3112015-07-07 15:26:03 -03003201 if (dev_priv->fbc.disable_fbc)
Paulo Zanoni7733b492015-07-07 15:26:04 -03003202 dev_priv->fbc.disable_fbc(dev_priv);
Jesse Barnes81255562010-08-02 12:07:50 -07003203
Daniel Vetter29b9bde2014-04-24 23:55:01 +02003204 dev_priv->display.update_primary_plane(crtc, fb, x, y);
3205
3206 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07003207}
3208
Ville Syrjälä75147472014-11-24 18:28:11 +02003209static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02003210{
Ville Syrjälä96a02912013-02-18 19:08:49 +02003211 struct drm_crtc *crtc;
3212
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003213 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02003214 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3215 enum plane plane = intel_crtc->plane;
3216
3217 intel_prepare_page_flip(dev, plane);
3218 intel_finish_page_flip_plane(dev, plane);
3219 }
Ville Syrjälä75147472014-11-24 18:28:11 +02003220}
3221
3222static void intel_update_primary_planes(struct drm_device *dev)
3223{
Ville Syrjälä75147472014-11-24 18:28:11 +02003224 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003225
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003226 for_each_crtc(dev, crtc) {
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003227 struct intel_plane *plane = to_intel_plane(crtc->primary);
3228 struct intel_plane_state *plane_state;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003229
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003230 drm_modeset_lock_crtc(crtc, &plane->base);
3231
3232 plane_state = to_intel_plane_state(plane->base.state);
3233
3234 if (plane_state->base.fb)
3235 plane->commit_plane(&plane->base, plane_state);
3236
3237 drm_modeset_unlock_crtc(crtc);
Ville Syrjälä96a02912013-02-18 19:08:49 +02003238 }
3239}
3240
Ville Syrjälä75147472014-11-24 18:28:11 +02003241void intel_prepare_reset(struct drm_device *dev)
3242{
3243 /* no reset support for gen2 */
3244 if (IS_GEN2(dev))
3245 return;
3246
3247 /* reset doesn't touch the display */
3248 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
3249 return;
3250
3251 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003252 /*
3253 * Disabling the crtcs gracefully seems nicer. Also the
3254 * g33 docs say we should at least disable all the planes.
3255 */
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02003256 intel_display_suspend(dev);
Ville Syrjälä75147472014-11-24 18:28:11 +02003257}
3258
3259void intel_finish_reset(struct drm_device *dev)
3260{
3261 struct drm_i915_private *dev_priv = to_i915(dev);
3262
3263 /*
3264 * Flips in the rings will be nuked by the reset,
3265 * so complete all pending flips so that user space
3266 * will get its events and not get stuck.
3267 */
3268 intel_complete_page_flips(dev);
3269
3270 /* no reset support for gen2 */
3271 if (IS_GEN2(dev))
3272 return;
3273
3274 /* reset doesn't touch the display */
3275 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
3276 /*
3277 * Flips in the rings have been nuked by the reset,
3278 * so update the base address of all primary
3279 * planes to the the last fb to make sure we're
3280 * showing the correct fb after a reset.
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003281 *
3282 * FIXME: Atomic will make this obsolete since we won't schedule
3283 * CS-based flips (which might get lost in gpu resets) any more.
Ville Syrjälä75147472014-11-24 18:28:11 +02003284 */
3285 intel_update_primary_planes(dev);
3286 return;
3287 }
3288
3289 /*
3290 * The display has been reset as well,
3291 * so need a full re-initialization.
3292 */
3293 intel_runtime_pm_disable_interrupts(dev_priv);
3294 intel_runtime_pm_enable_interrupts(dev_priv);
3295
3296 intel_modeset_init_hw(dev);
3297
3298 spin_lock_irq(&dev_priv->irq_lock);
3299 if (dev_priv->display.hpd_irq_setup)
3300 dev_priv->display.hpd_irq_setup(dev);
3301 spin_unlock_irq(&dev_priv->irq_lock);
3302
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +02003303 intel_display_resume(dev);
Ville Syrjälä75147472014-11-24 18:28:11 +02003304
3305 intel_hpd_init(dev_priv);
3306
3307 drm_modeset_unlock_all(dev);
3308}
3309
Chris Wilson2e2f3512015-04-27 13:41:14 +01003310static void
Chris Wilson14667a42012-04-03 17:58:35 +01003311intel_finish_fb(struct drm_framebuffer *old_fb)
3312{
Matt Roper2ff8fde2014-07-08 07:50:07 -07003313 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson2e2f3512015-04-27 13:41:14 +01003314 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson14667a42012-04-03 17:58:35 +01003315 bool was_interruptible = dev_priv->mm.interruptible;
3316 int ret;
3317
Chris Wilson14667a42012-04-03 17:58:35 +01003318 /* Big Hammer, we also need to ensure that any pending
3319 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
3320 * current scanout is retired before unpinning the old
Chris Wilson2e2f3512015-04-27 13:41:14 +01003321 * framebuffer. Note that we rely on userspace rendering
3322 * into the buffer attached to the pipe they are waiting
3323 * on. If not, userspace generates a GPU hang with IPEHR
3324 * point to the MI_WAIT_FOR_EVENT.
Chris Wilson14667a42012-04-03 17:58:35 +01003325 *
3326 * This should only fail upon a hung GPU, in which case we
3327 * can safely continue.
3328 */
3329 dev_priv->mm.interruptible = false;
Chris Wilson2e2f3512015-04-27 13:41:14 +01003330 ret = i915_gem_object_wait_rendering(obj, true);
Chris Wilson14667a42012-04-03 17:58:35 +01003331 dev_priv->mm.interruptible = was_interruptible;
3332
Chris Wilson2e2f3512015-04-27 13:41:14 +01003333 WARN_ON(ret);
Chris Wilson14667a42012-04-03 17:58:35 +01003334}
3335
Chris Wilson7d5e3792014-03-04 13:15:08 +00003336static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3337{
3338 struct drm_device *dev = crtc->dev;
3339 struct drm_i915_private *dev_priv = dev->dev_private;
3340 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003341 bool pending;
3342
3343 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3344 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3345 return false;
3346
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003347 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003348 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003349 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003350
3351 return pending;
3352}
3353
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003354static void intel_update_pipe_config(struct intel_crtc *crtc,
3355 struct intel_crtc_state *old_crtc_state)
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003356{
3357 struct drm_device *dev = crtc->base.dev;
3358 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003359 struct intel_crtc_state *pipe_config =
3360 to_intel_crtc_state(crtc->base.state);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003361
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003362 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3363 crtc->base.mode = crtc->base.state->mode;
3364
3365 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3366 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3367 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003368
Maarten Lankhorst44522d82015-08-27 15:44:02 +02003369 if (HAS_DDI(dev))
3370 intel_set_pipe_csc(&crtc->base);
3371
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003372 /*
3373 * Update pipe size and adjust fitter if needed: the reason for this is
3374 * that in compute_mode_changes we check the native mode (not the pfit
3375 * mode) to see if we can flip rather than do a full mode set. In the
3376 * fastboot case, we'll flip, but if we don't update the pipesrc and
3377 * pfit state, we'll end up with a big fb scanned out into the wrong
3378 * sized surface.
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003379 */
3380
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003381 I915_WRITE(PIPESRC(crtc->pipe),
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003382 ((pipe_config->pipe_src_w - 1) << 16) |
3383 (pipe_config->pipe_src_h - 1));
3384
3385 /* on skylake this is done by detaching scalers */
3386 if (INTEL_INFO(dev)->gen >= 9) {
3387 skl_detach_scalers(crtc);
3388
3389 if (pipe_config->pch_pfit.enabled)
3390 skylake_pfit_enable(crtc);
3391 } else if (HAS_PCH_SPLIT(dev)) {
3392 if (pipe_config->pch_pfit.enabled)
3393 ironlake_pfit_enable(crtc);
3394 else if (old_crtc_state->pch_pfit.enabled)
3395 ironlake_pfit_disable(crtc, true);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003396 }
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003397}
3398
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003399static void intel_fdi_normal_train(struct drm_crtc *crtc)
3400{
3401 struct drm_device *dev = crtc->dev;
3402 struct drm_i915_private *dev_priv = dev->dev_private;
3403 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3404 int pipe = intel_crtc->pipe;
3405 u32 reg, temp;
3406
3407 /* enable normal train */
3408 reg = FDI_TX_CTL(pipe);
3409 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003410 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003411 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3412 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003413 } else {
3414 temp &= ~FDI_LINK_TRAIN_NONE;
3415 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003416 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003417 I915_WRITE(reg, temp);
3418
3419 reg = FDI_RX_CTL(pipe);
3420 temp = I915_READ(reg);
3421 if (HAS_PCH_CPT(dev)) {
3422 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3423 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3424 } else {
3425 temp &= ~FDI_LINK_TRAIN_NONE;
3426 temp |= FDI_LINK_TRAIN_NONE;
3427 }
3428 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3429
3430 /* wait one idle pattern time */
3431 POSTING_READ(reg);
3432 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003433
3434 /* IVB wants error correction enabled */
3435 if (IS_IVYBRIDGE(dev))
3436 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3437 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003438}
3439
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003440/* The FDI link training functions for ILK/Ibexpeak. */
3441static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3442{
3443 struct drm_device *dev = crtc->dev;
3444 struct drm_i915_private *dev_priv = dev->dev_private;
3445 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3446 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003447 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003448
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003449 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003450 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003451
Adam Jacksone1a44742010-06-25 15:32:14 -04003452 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3453 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003454 reg = FDI_RX_IMR(pipe);
3455 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003456 temp &= ~FDI_RX_SYMBOL_LOCK;
3457 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003458 I915_WRITE(reg, temp);
3459 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003460 udelay(150);
3461
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003462 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003463 reg = FDI_TX_CTL(pipe);
3464 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003465 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003466 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003467 temp &= ~FDI_LINK_TRAIN_NONE;
3468 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003469 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003470
Chris Wilson5eddb702010-09-11 13:48:45 +01003471 reg = FDI_RX_CTL(pipe);
3472 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003473 temp &= ~FDI_LINK_TRAIN_NONE;
3474 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003475 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3476
3477 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003478 udelay(150);
3479
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003480 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003481 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3482 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3483 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003484
Chris Wilson5eddb702010-09-11 13:48:45 +01003485 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003486 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003487 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003488 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3489
3490 if ((temp & FDI_RX_BIT_LOCK)) {
3491 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003492 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003493 break;
3494 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003495 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003496 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003497 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003498
3499 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003500 reg = FDI_TX_CTL(pipe);
3501 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003502 temp &= ~FDI_LINK_TRAIN_NONE;
3503 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003504 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003505
Chris Wilson5eddb702010-09-11 13:48:45 +01003506 reg = FDI_RX_CTL(pipe);
3507 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003508 temp &= ~FDI_LINK_TRAIN_NONE;
3509 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003510 I915_WRITE(reg, temp);
3511
3512 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003513 udelay(150);
3514
Chris Wilson5eddb702010-09-11 13:48:45 +01003515 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003516 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003517 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003518 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3519
3520 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003521 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003522 DRM_DEBUG_KMS("FDI train 2 done.\n");
3523 break;
3524 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003525 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003526 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003527 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003528
3529 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003530
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003531}
3532
Akshay Joshi0206e352011-08-16 15:34:10 -04003533static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003534 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3535 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3536 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3537 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3538};
3539
3540/* The FDI link training functions for SNB/Cougarpoint. */
3541static void gen6_fdi_link_train(struct drm_crtc *crtc)
3542{
3543 struct drm_device *dev = crtc->dev;
3544 struct drm_i915_private *dev_priv = dev->dev_private;
3545 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3546 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003547 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003548
Adam Jacksone1a44742010-06-25 15:32:14 -04003549 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3550 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003551 reg = FDI_RX_IMR(pipe);
3552 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003553 temp &= ~FDI_RX_SYMBOL_LOCK;
3554 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003555 I915_WRITE(reg, temp);
3556
3557 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003558 udelay(150);
3559
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003560 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003561 reg = FDI_TX_CTL(pipe);
3562 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003563 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003564 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003565 temp &= ~FDI_LINK_TRAIN_NONE;
3566 temp |= FDI_LINK_TRAIN_PATTERN_1;
3567 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3568 /* SNB-B */
3569 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003570 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003571
Daniel Vetterd74cf322012-10-26 10:58:13 +02003572 I915_WRITE(FDI_RX_MISC(pipe),
3573 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3574
Chris Wilson5eddb702010-09-11 13:48:45 +01003575 reg = FDI_RX_CTL(pipe);
3576 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003577 if (HAS_PCH_CPT(dev)) {
3578 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3579 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3580 } else {
3581 temp &= ~FDI_LINK_TRAIN_NONE;
3582 temp |= FDI_LINK_TRAIN_PATTERN_1;
3583 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003584 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3585
3586 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003587 udelay(150);
3588
Akshay Joshi0206e352011-08-16 15:34:10 -04003589 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003590 reg = FDI_TX_CTL(pipe);
3591 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003592 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3593 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003594 I915_WRITE(reg, temp);
3595
3596 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003597 udelay(500);
3598
Sean Paulfa37d392012-03-02 12:53:39 -05003599 for (retry = 0; retry < 5; retry++) {
3600 reg = FDI_RX_IIR(pipe);
3601 temp = I915_READ(reg);
3602 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3603 if (temp & FDI_RX_BIT_LOCK) {
3604 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3605 DRM_DEBUG_KMS("FDI train 1 done.\n");
3606 break;
3607 }
3608 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003609 }
Sean Paulfa37d392012-03-02 12:53:39 -05003610 if (retry < 5)
3611 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003612 }
3613 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003614 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003615
3616 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003617 reg = FDI_TX_CTL(pipe);
3618 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003619 temp &= ~FDI_LINK_TRAIN_NONE;
3620 temp |= FDI_LINK_TRAIN_PATTERN_2;
3621 if (IS_GEN6(dev)) {
3622 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3623 /* SNB-B */
3624 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3625 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003626 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003627
Chris Wilson5eddb702010-09-11 13:48:45 +01003628 reg = FDI_RX_CTL(pipe);
3629 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003630 if (HAS_PCH_CPT(dev)) {
3631 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3632 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3633 } else {
3634 temp &= ~FDI_LINK_TRAIN_NONE;
3635 temp |= FDI_LINK_TRAIN_PATTERN_2;
3636 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003637 I915_WRITE(reg, temp);
3638
3639 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003640 udelay(150);
3641
Akshay Joshi0206e352011-08-16 15:34:10 -04003642 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003643 reg = FDI_TX_CTL(pipe);
3644 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003645 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3646 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003647 I915_WRITE(reg, temp);
3648
3649 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003650 udelay(500);
3651
Sean Paulfa37d392012-03-02 12:53:39 -05003652 for (retry = 0; retry < 5; retry++) {
3653 reg = FDI_RX_IIR(pipe);
3654 temp = I915_READ(reg);
3655 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3656 if (temp & FDI_RX_SYMBOL_LOCK) {
3657 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3658 DRM_DEBUG_KMS("FDI train 2 done.\n");
3659 break;
3660 }
3661 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003662 }
Sean Paulfa37d392012-03-02 12:53:39 -05003663 if (retry < 5)
3664 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003665 }
3666 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003667 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003668
3669 DRM_DEBUG_KMS("FDI train done.\n");
3670}
3671
Jesse Barnes357555c2011-04-28 15:09:55 -07003672/* Manual link training for Ivy Bridge A0 parts */
3673static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3674{
3675 struct drm_device *dev = crtc->dev;
3676 struct drm_i915_private *dev_priv = dev->dev_private;
3677 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3678 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003679 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003680
3681 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3682 for train result */
3683 reg = FDI_RX_IMR(pipe);
3684 temp = I915_READ(reg);
3685 temp &= ~FDI_RX_SYMBOL_LOCK;
3686 temp &= ~FDI_RX_BIT_LOCK;
3687 I915_WRITE(reg, temp);
3688
3689 POSTING_READ(reg);
3690 udelay(150);
3691
Daniel Vetter01a415f2012-10-27 15:58:40 +02003692 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3693 I915_READ(FDI_RX_IIR(pipe)));
3694
Jesse Barnes139ccd32013-08-19 11:04:55 -07003695 /* Try each vswing and preemphasis setting twice before moving on */
3696 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3697 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003698 reg = FDI_TX_CTL(pipe);
3699 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003700 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3701 temp &= ~FDI_TX_ENABLE;
3702 I915_WRITE(reg, temp);
3703
3704 reg = FDI_RX_CTL(pipe);
3705 temp = I915_READ(reg);
3706 temp &= ~FDI_LINK_TRAIN_AUTO;
3707 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3708 temp &= ~FDI_RX_ENABLE;
3709 I915_WRITE(reg, temp);
3710
3711 /* enable CPU FDI TX and PCH FDI RX */
3712 reg = FDI_TX_CTL(pipe);
3713 temp = I915_READ(reg);
3714 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003715 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003716 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003717 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003718 temp |= snb_b_fdi_train_param[j/2];
3719 temp |= FDI_COMPOSITE_SYNC;
3720 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3721
3722 I915_WRITE(FDI_RX_MISC(pipe),
3723 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3724
3725 reg = FDI_RX_CTL(pipe);
3726 temp = I915_READ(reg);
3727 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3728 temp |= FDI_COMPOSITE_SYNC;
3729 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3730
3731 POSTING_READ(reg);
3732 udelay(1); /* should be 0.5us */
3733
3734 for (i = 0; i < 4; i++) {
3735 reg = FDI_RX_IIR(pipe);
3736 temp = I915_READ(reg);
3737 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3738
3739 if (temp & FDI_RX_BIT_LOCK ||
3740 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3741 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3742 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3743 i);
3744 break;
3745 }
3746 udelay(1); /* should be 0.5us */
3747 }
3748 if (i == 4) {
3749 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3750 continue;
3751 }
3752
3753 /* Train 2 */
3754 reg = FDI_TX_CTL(pipe);
3755 temp = I915_READ(reg);
3756 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3757 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3758 I915_WRITE(reg, temp);
3759
3760 reg = FDI_RX_CTL(pipe);
3761 temp = I915_READ(reg);
3762 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3763 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003764 I915_WRITE(reg, temp);
3765
3766 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003767 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003768
Jesse Barnes139ccd32013-08-19 11:04:55 -07003769 for (i = 0; i < 4; i++) {
3770 reg = FDI_RX_IIR(pipe);
3771 temp = I915_READ(reg);
3772 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003773
Jesse Barnes139ccd32013-08-19 11:04:55 -07003774 if (temp & FDI_RX_SYMBOL_LOCK ||
3775 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3776 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3777 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3778 i);
3779 goto train_done;
3780 }
3781 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003782 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003783 if (i == 4)
3784 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003785 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003786
Jesse Barnes139ccd32013-08-19 11:04:55 -07003787train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003788 DRM_DEBUG_KMS("FDI train done.\n");
3789}
3790
Daniel Vetter88cefb62012-08-12 19:27:14 +02003791static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003792{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003793 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003794 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003795 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003796 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003797
Jesse Barnesc64e3112010-09-10 11:27:03 -07003798
Jesse Barnes0e23b992010-09-10 11:10:00 -07003799 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003800 reg = FDI_RX_CTL(pipe);
3801 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003802 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003803 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003804 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003805 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3806
3807 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003808 udelay(200);
3809
3810 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003811 temp = I915_READ(reg);
3812 I915_WRITE(reg, temp | FDI_PCDCLK);
3813
3814 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003815 udelay(200);
3816
Paulo Zanoni20749732012-11-23 15:30:38 -02003817 /* Enable CPU FDI TX PLL, always on for Ironlake */
3818 reg = FDI_TX_CTL(pipe);
3819 temp = I915_READ(reg);
3820 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3821 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003822
Paulo Zanoni20749732012-11-23 15:30:38 -02003823 POSTING_READ(reg);
3824 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003825 }
3826}
3827
Daniel Vetter88cefb62012-08-12 19:27:14 +02003828static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3829{
3830 struct drm_device *dev = intel_crtc->base.dev;
3831 struct drm_i915_private *dev_priv = dev->dev_private;
3832 int pipe = intel_crtc->pipe;
3833 u32 reg, temp;
3834
3835 /* Switch from PCDclk to Rawclk */
3836 reg = FDI_RX_CTL(pipe);
3837 temp = I915_READ(reg);
3838 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3839
3840 /* Disable CPU FDI TX PLL */
3841 reg = FDI_TX_CTL(pipe);
3842 temp = I915_READ(reg);
3843 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3844
3845 POSTING_READ(reg);
3846 udelay(100);
3847
3848 reg = FDI_RX_CTL(pipe);
3849 temp = I915_READ(reg);
3850 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3851
3852 /* Wait for the clocks to turn off. */
3853 POSTING_READ(reg);
3854 udelay(100);
3855}
3856
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003857static void ironlake_fdi_disable(struct drm_crtc *crtc)
3858{
3859 struct drm_device *dev = crtc->dev;
3860 struct drm_i915_private *dev_priv = dev->dev_private;
3861 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3862 int pipe = intel_crtc->pipe;
3863 u32 reg, temp;
3864
3865 /* disable CPU FDI tx and PCH FDI rx */
3866 reg = FDI_TX_CTL(pipe);
3867 temp = I915_READ(reg);
3868 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3869 POSTING_READ(reg);
3870
3871 reg = FDI_RX_CTL(pipe);
3872 temp = I915_READ(reg);
3873 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003874 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003875 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3876
3877 POSTING_READ(reg);
3878 udelay(100);
3879
3880 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003881 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003882 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003883
3884 /* still set train pattern 1 */
3885 reg = FDI_TX_CTL(pipe);
3886 temp = I915_READ(reg);
3887 temp &= ~FDI_LINK_TRAIN_NONE;
3888 temp |= FDI_LINK_TRAIN_PATTERN_1;
3889 I915_WRITE(reg, temp);
3890
3891 reg = FDI_RX_CTL(pipe);
3892 temp = I915_READ(reg);
3893 if (HAS_PCH_CPT(dev)) {
3894 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3895 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3896 } else {
3897 temp &= ~FDI_LINK_TRAIN_NONE;
3898 temp |= FDI_LINK_TRAIN_PATTERN_1;
3899 }
3900 /* BPC in FDI rx is consistent with that in PIPECONF */
3901 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003902 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003903 I915_WRITE(reg, temp);
3904
3905 POSTING_READ(reg);
3906 udelay(100);
3907}
3908
Chris Wilson5dce5b932014-01-20 10:17:36 +00003909bool intel_has_pending_fb_unpin(struct drm_device *dev)
3910{
3911 struct intel_crtc *crtc;
3912
3913 /* Note that we don't need to be called with mode_config.lock here
3914 * as our list of CRTC objects is static for the lifetime of the
3915 * device and so cannot disappear as we iterate. Similarly, we can
3916 * happily treat the predicates as racy, atomic checks as userspace
3917 * cannot claim and pin a new fb without at least acquring the
3918 * struct_mutex and so serialising with us.
3919 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003920 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003921 if (atomic_read(&crtc->unpin_work_count) == 0)
3922 continue;
3923
3924 if (crtc->unpin_work)
3925 intel_wait_for_vblank(dev, crtc->pipe);
3926
3927 return true;
3928 }
3929
3930 return false;
3931}
3932
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003933static void page_flip_completed(struct intel_crtc *intel_crtc)
3934{
3935 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3936 struct intel_unpin_work *work = intel_crtc->unpin_work;
3937
3938 /* ensure that the unpin work is consistent wrt ->pending. */
3939 smp_rmb();
3940 intel_crtc->unpin_work = NULL;
3941
3942 if (work->event)
3943 drm_send_vblank_event(intel_crtc->base.dev,
3944 intel_crtc->pipe,
3945 work->event);
3946
3947 drm_crtc_vblank_put(&intel_crtc->base);
3948
3949 wake_up_all(&dev_priv->pending_flip_queue);
3950 queue_work(dev_priv->wq, &work->work);
3951
3952 trace_i915_flip_complete(intel_crtc->plane,
3953 work->pending_flip_obj);
3954}
3955
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003956void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003957{
Chris Wilson0f911282012-04-17 10:05:38 +01003958 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003959 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003960
Daniel Vetter2c10d572012-12-20 21:24:07 +01003961 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Chris Wilson9c787942014-09-05 07:13:25 +01003962 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3963 !intel_crtc_has_pending_flip(crtc),
3964 60*HZ) == 0)) {
3965 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003966
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003967 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003968 if (intel_crtc->unpin_work) {
3969 WARN_ONCE(1, "Removing stuck page flip\n");
3970 page_flip_completed(intel_crtc);
3971 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003972 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003973 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003974
Chris Wilson975d5682014-08-20 13:13:34 +01003975 if (crtc->primary->fb) {
3976 mutex_lock(&dev->struct_mutex);
3977 intel_finish_fb(crtc->primary->fb);
3978 mutex_unlock(&dev->struct_mutex);
3979 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003980}
3981
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003982/* Program iCLKIP clock to the desired frequency */
3983static void lpt_program_iclkip(struct drm_crtc *crtc)
3984{
3985 struct drm_device *dev = crtc->dev;
3986 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003987 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003988 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3989 u32 temp;
3990
Ville Syrjäläa5805162015-05-26 20:42:30 +03003991 mutex_lock(&dev_priv->sb_lock);
Daniel Vetter09153002012-12-12 14:06:44 +01003992
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003993 /* It is necessary to ungate the pixclk gate prior to programming
3994 * the divisors, and gate it back when it is done.
3995 */
3996 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3997
3998 /* Disable SSCCTL */
3999 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004000 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
4001 SBI_SSCCTL_DISABLE,
4002 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004003
4004 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03004005 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004006 auxdiv = 1;
4007 divsel = 0x41;
4008 phaseinc = 0x20;
4009 } else {
4010 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01004011 * but the adjusted_mode->crtc_clock in in KHz. To get the
4012 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004013 * convert the virtual clock precision to KHz here for higher
4014 * precision.
4015 */
4016 u32 iclk_virtual_root_freq = 172800 * 1000;
4017 u32 iclk_pi_range = 64;
4018 u32 desired_divisor, msb_divisor_value, pi_value;
4019
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03004020 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004021 msb_divisor_value = desired_divisor / iclk_pi_range;
4022 pi_value = desired_divisor % iclk_pi_range;
4023
4024 auxdiv = 0;
4025 divsel = msb_divisor_value - 2;
4026 phaseinc = pi_value;
4027 }
4028
4029 /* This should not happen with any sane values */
4030 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
4031 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
4032 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
4033 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
4034
4035 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03004036 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004037 auxdiv,
4038 divsel,
4039 phasedir,
4040 phaseinc);
4041
4042 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004043 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004044 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
4045 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
4046 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
4047 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
4048 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
4049 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004050 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004051
4052 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004053 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004054 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4055 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004056 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004057
4058 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004059 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004060 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004061 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004062
4063 /* Wait for initialization time */
4064 udelay(24);
4065
4066 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01004067
Ville Syrjäläa5805162015-05-26 20:42:30 +03004068 mutex_unlock(&dev_priv->sb_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004069}
4070
Daniel Vetter275f01b22013-05-03 11:49:47 +02004071static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4072 enum pipe pch_transcoder)
4073{
4074 struct drm_device *dev = crtc->base.dev;
4075 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004076 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02004077
4078 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4079 I915_READ(HTOTAL(cpu_transcoder)));
4080 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4081 I915_READ(HBLANK(cpu_transcoder)));
4082 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4083 I915_READ(HSYNC(cpu_transcoder)));
4084
4085 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4086 I915_READ(VTOTAL(cpu_transcoder)));
4087 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4088 I915_READ(VBLANK(cpu_transcoder)));
4089 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4090 I915_READ(VSYNC(cpu_transcoder)));
4091 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4092 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4093}
4094
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004095static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004096{
4097 struct drm_i915_private *dev_priv = dev->dev_private;
4098 uint32_t temp;
4099
4100 temp = I915_READ(SOUTH_CHICKEN1);
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004101 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004102 return;
4103
4104 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4105 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4106
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004107 temp &= ~FDI_BC_BIFURCATION_SELECT;
4108 if (enable)
4109 temp |= FDI_BC_BIFURCATION_SELECT;
4110
4111 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004112 I915_WRITE(SOUTH_CHICKEN1, temp);
4113 POSTING_READ(SOUTH_CHICKEN1);
4114}
4115
4116static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4117{
4118 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004119
4120 switch (intel_crtc->pipe) {
4121 case PIPE_A:
4122 break;
4123 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004124 if (intel_crtc->config->fdi_lanes > 2)
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004125 cpt_set_fdi_bc_bifurcation(dev, false);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004126 else
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004127 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004128
4129 break;
4130 case PIPE_C:
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004131 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004132
4133 break;
4134 default:
4135 BUG();
4136 }
4137}
4138
Jesse Barnesf67a5592011-01-05 10:31:48 -08004139/*
4140 * Enable PCH resources required for PCH ports:
4141 * - PCH PLLs
4142 * - FDI training & RX/TX
4143 * - update transcoder timings
4144 * - DP transcoding bits
4145 * - transcoder
4146 */
4147static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08004148{
4149 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004150 struct drm_i915_private *dev_priv = dev->dev_private;
4151 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4152 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004153 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004154
Daniel Vetterab9412b2013-05-03 11:49:46 +02004155 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01004156
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004157 if (IS_IVYBRIDGE(dev))
4158 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4159
Daniel Vettercd986ab2012-10-26 10:58:12 +02004160 /* Write the TU size bits before fdi link training, so that error
4161 * detection works. */
4162 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4163 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4164
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004165 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07004166 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004167
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004168 /* We need to program the right clock selection before writing the pixel
4169 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004170 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004171 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004172
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004173 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004174 temp |= TRANS_DPLL_ENABLE(pipe);
4175 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004176 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004177 temp |= sel;
4178 else
4179 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004180 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004181 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004182
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004183 /* XXX: pch pll's can be enabled any time before we enable the PCH
4184 * transcoder, and we actually should do this to not upset any PCH
4185 * transcoder that already use the clock when we share it.
4186 *
4187 * Note that enable_shared_dpll tries to do the right thing, but
4188 * get_shared_dpll unconditionally resets the pll - we need that to have
4189 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02004190 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004191
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08004192 /* set transcoder timing, panel must allow it */
4193 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02004194 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004195
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004196 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08004197
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004198 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004199 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01004200 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01004201 reg = TRANS_DP_CTL(pipe);
4202 temp = I915_READ(reg);
4203 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08004204 TRANS_DP_SYNC_MASK |
4205 TRANS_DP_BPC_MASK);
Ville Syrjäläe3ef4472015-05-05 17:17:31 +03004206 temp |= TRANS_DP_OUTPUT_ENABLE;
Jesse Barnes9325c9f2011-06-24 12:19:21 -07004207 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004208
4209 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004210 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004211 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004212 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004213
4214 switch (intel_trans_dp_port_sel(crtc)) {
4215 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01004216 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004217 break;
4218 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01004219 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004220 break;
4221 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01004222 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004223 break;
4224 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02004225 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004226 }
4227
Chris Wilson5eddb702010-09-11 13:48:45 +01004228 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004229 }
4230
Paulo Zanonib8a4f402012-10-31 18:12:42 -02004231 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004232}
4233
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004234static void lpt_pch_enable(struct drm_crtc *crtc)
4235{
4236 struct drm_device *dev = crtc->dev;
4237 struct drm_i915_private *dev_priv = dev->dev_private;
4238 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004239 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004240
Daniel Vetterab9412b2013-05-03 11:49:46 +02004241 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004242
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02004243 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004244
Paulo Zanoni0540e482012-10-31 18:12:40 -02004245 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02004246 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004247
Paulo Zanoni937bb612012-10-31 18:12:47 -02004248 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004249}
4250
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004251struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
4252 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004253{
Daniel Vettere2b78262013-06-07 23:10:03 +02004254 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004255 struct intel_shared_dpll *pll;
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004256 struct intel_shared_dpll_config *shared_dpll;
Daniel Vettere2b78262013-06-07 23:10:03 +02004257 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004258
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004259 shared_dpll = intel_atomic_get_shared_dpll_state(crtc_state->base.state);
4260
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004261 if (HAS_PCH_IBX(dev_priv->dev)) {
4262 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02004263 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004264 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004265
Daniel Vetter46edb022013-06-05 13:34:12 +02004266 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4267 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004268
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004269 WARN_ON(shared_dpll[i].crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004270
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004271 goto found;
4272 }
4273
Satheeshakrishna Mbcddf6102014-08-22 09:49:10 +05304274 if (IS_BROXTON(dev_priv->dev)) {
4275 /* PLL is attached to port in bxt */
4276 struct intel_encoder *encoder;
4277 struct intel_digital_port *intel_dig_port;
4278
4279 encoder = intel_ddi_get_crtc_new_encoder(crtc_state);
4280 if (WARN_ON(!encoder))
4281 return NULL;
4282
4283 intel_dig_port = enc_to_dig_port(&encoder->base);
4284 /* 1:1 mapping between ports and PLLs */
4285 i = (enum intel_dpll_id)intel_dig_port->port;
4286 pll = &dev_priv->shared_dplls[i];
4287 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4288 crtc->base.base.id, pll->name);
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004289 WARN_ON(shared_dpll[i].crtc_mask);
Satheeshakrishna Mbcddf6102014-08-22 09:49:10 +05304290
4291 goto found;
4292 }
4293
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004294 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4295 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004296
4297 /* Only want to check enabled timings first */
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004298 if (shared_dpll[i].crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004299 continue;
4300
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004301 if (memcmp(&crtc_state->dpll_hw_state,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004302 &shared_dpll[i].hw_state,
4303 sizeof(crtc_state->dpll_hw_state)) == 0) {
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004304 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004305 crtc->base.base.id, pll->name,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004306 shared_dpll[i].crtc_mask,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004307 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004308 goto found;
4309 }
4310 }
4311
4312 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004313 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4314 pll = &dev_priv->shared_dplls[i];
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004315 if (shared_dpll[i].crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02004316 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4317 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004318 goto found;
4319 }
4320 }
4321
4322 return NULL;
4323
4324found:
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004325 if (shared_dpll[i].crtc_mask == 0)
4326 shared_dpll[i].hw_state =
4327 crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004328
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004329 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02004330 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4331 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02004332
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004333 shared_dpll[i].crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004334
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004335 return pll;
4336}
4337
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004338static void intel_shared_dpll_commit(struct drm_atomic_state *state)
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004339{
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004340 struct drm_i915_private *dev_priv = to_i915(state->dev);
4341 struct intel_shared_dpll_config *shared_dpll;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004342 struct intel_shared_dpll *pll;
4343 enum intel_dpll_id i;
4344
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004345 if (!to_intel_atomic_state(state)->dpll_set)
4346 return;
4347
4348 shared_dpll = to_intel_atomic_state(state)->shared_dpll;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004349 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4350 pll = &dev_priv->shared_dplls[i];
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004351 pll->config = shared_dpll[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004352 }
4353}
4354
Daniel Vettera1520312013-05-03 11:49:50 +02004355static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004356{
4357 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01004358 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004359 u32 temp;
4360
4361 temp = I915_READ(dslreg);
4362 udelay(500);
4363 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004364 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004365 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004366 }
4367}
4368
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004369static int
4370skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4371 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4372 int src_w, int src_h, int dst_w, int dst_h)
Chandra Kondurua1b22782015-04-07 15:28:45 -07004373{
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004374 struct intel_crtc_scaler_state *scaler_state =
4375 &crtc_state->scaler_state;
4376 struct intel_crtc *intel_crtc =
4377 to_intel_crtc(crtc_state->base.crtc);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004378 int need_scaling;
Chandra Konduru6156a452015-04-27 13:48:39 -07004379
4380 need_scaling = intel_rotation_90_or_270(rotation) ?
4381 (src_h != dst_w || src_w != dst_h):
4382 (src_w != dst_w || src_h != dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004383
4384 /*
4385 * if plane is being disabled or scaler is no more required or force detach
4386 * - free scaler binded to this plane/crtc
4387 * - in order to do this, update crtc->scaler_usage
4388 *
4389 * Here scaler state in crtc_state is set free so that
4390 * scaler can be assigned to other user. Actual register
4391 * update to free the scaler is done in plane/panel-fit programming.
4392 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4393 */
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004394 if (force_detach || !need_scaling) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004395 if (*scaler_id >= 0) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004396 scaler_state->scaler_users &= ~(1 << scaler_user);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004397 scaler_state->scalers[*scaler_id].in_use = 0;
4398
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004399 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4400 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4401 intel_crtc->pipe, scaler_user, *scaler_id,
Chandra Kondurua1b22782015-04-07 15:28:45 -07004402 scaler_state->scaler_users);
4403 *scaler_id = -1;
4404 }
4405 return 0;
4406 }
4407
4408 /* range checks */
4409 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4410 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4411
4412 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4413 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004414 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
Chandra Kondurua1b22782015-04-07 15:28:45 -07004415 "size is out of scaler range\n",
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004416 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004417 return -EINVAL;
4418 }
4419
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004420 /* mark this plane as a scaler user in crtc_state */
4421 scaler_state->scaler_users |= (1 << scaler_user);
4422 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4423 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4424 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4425 scaler_state->scaler_users);
4426
4427 return 0;
4428}
4429
4430/**
4431 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4432 *
4433 * @state: crtc's scaler state
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004434 *
4435 * Return
4436 * 0 - scaler_usage updated successfully
4437 * error - requested scaling cannot be supported or other error condition
4438 */
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004439int skl_update_scaler_crtc(struct intel_crtc_state *state)
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004440{
4441 struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03004442 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004443
4444 DRM_DEBUG_KMS("Updating scaler for [CRTC:%i] scaler_user index %u.%u\n",
4445 intel_crtc->base.base.id, intel_crtc->pipe, SKL_CRTC_INDEX);
4446
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004447 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004448 &state->scaler_state.scaler_id, DRM_ROTATE_0,
4449 state->pipe_src_w, state->pipe_src_h,
Ville Syrjäläaad941d2015-09-25 16:38:56 +03004450 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004451}
4452
4453/**
4454 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4455 *
4456 * @state: crtc's scaler state
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004457 * @plane_state: atomic plane state to update
4458 *
4459 * Return
4460 * 0 - scaler_usage updated successfully
4461 * error - requested scaling cannot be supported or other error condition
4462 */
Maarten Lankhorstda20eab2015-06-15 12:33:44 +02004463static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4464 struct intel_plane_state *plane_state)
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004465{
4466
4467 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Maarten Lankhorstda20eab2015-06-15 12:33:44 +02004468 struct intel_plane *intel_plane =
4469 to_intel_plane(plane_state->base.plane);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004470 struct drm_framebuffer *fb = plane_state->base.fb;
4471 int ret;
4472
4473 bool force_detach = !fb || !plane_state->visible;
4474
4475 DRM_DEBUG_KMS("Updating scaler for [PLANE:%d] scaler_user index %u.%u\n",
4476 intel_plane->base.base.id, intel_crtc->pipe,
4477 drm_plane_index(&intel_plane->base));
4478
4479 ret = skl_update_scaler(crtc_state, force_detach,
4480 drm_plane_index(&intel_plane->base),
4481 &plane_state->scaler_id,
4482 plane_state->base.rotation,
4483 drm_rect_width(&plane_state->src) >> 16,
4484 drm_rect_height(&plane_state->src) >> 16,
4485 drm_rect_width(&plane_state->dst),
4486 drm_rect_height(&plane_state->dst));
4487
4488 if (ret || plane_state->scaler_id < 0)
4489 return ret;
4490
Chandra Kondurua1b22782015-04-07 15:28:45 -07004491 /* check colorkey */
Maarten Lankhorst818ed962015-06-15 12:33:54 +02004492 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004493 DRM_DEBUG_KMS("[PLANE:%d] scaling with color key not allowed",
Maarten Lankhorst818ed962015-06-15 12:33:54 +02004494 intel_plane->base.base.id);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004495 return -EINVAL;
4496 }
4497
4498 /* Check src format */
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004499 switch (fb->pixel_format) {
4500 case DRM_FORMAT_RGB565:
4501 case DRM_FORMAT_XBGR8888:
4502 case DRM_FORMAT_XRGB8888:
4503 case DRM_FORMAT_ABGR8888:
4504 case DRM_FORMAT_ARGB8888:
4505 case DRM_FORMAT_XRGB2101010:
4506 case DRM_FORMAT_XBGR2101010:
4507 case DRM_FORMAT_YUYV:
4508 case DRM_FORMAT_YVYU:
4509 case DRM_FORMAT_UYVY:
4510 case DRM_FORMAT_VYUY:
4511 break;
4512 default:
4513 DRM_DEBUG_KMS("[PLANE:%d] FB:%d unsupported scaling format 0x%x\n",
4514 intel_plane->base.base.id, fb->base.id, fb->pixel_format);
4515 return -EINVAL;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004516 }
4517
Chandra Kondurua1b22782015-04-07 15:28:45 -07004518 return 0;
4519}
4520
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004521static void skylake_scaler_disable(struct intel_crtc *crtc)
4522{
4523 int i;
4524
4525 for (i = 0; i < crtc->num_scalers; i++)
4526 skl_detach_scaler(crtc, i);
4527}
4528
4529static void skylake_pfit_enable(struct intel_crtc *crtc)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004530{
4531 struct drm_device *dev = crtc->base.dev;
4532 struct drm_i915_private *dev_priv = dev->dev_private;
4533 int pipe = crtc->pipe;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004534 struct intel_crtc_scaler_state *scaler_state =
4535 &crtc->config->scaler_state;
4536
4537 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4538
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004539 if (crtc->config->pch_pfit.enabled) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004540 int id;
4541
4542 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4543 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4544 return;
4545 }
4546
4547 id = scaler_state->scaler_id;
4548 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4549 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4550 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4551 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4552
4553 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004554 }
4555}
4556
Jesse Barnesb074cec2013-04-25 12:55:02 -07004557static void ironlake_pfit_enable(struct intel_crtc *crtc)
4558{
4559 struct drm_device *dev = crtc->base.dev;
4560 struct drm_i915_private *dev_priv = dev->dev_private;
4561 int pipe = crtc->pipe;
4562
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004563 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004564 /* Force use of hard-coded filter coefficients
4565 * as some pre-programmed values are broken,
4566 * e.g. x201.
4567 */
4568 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4569 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4570 PF_PIPE_SEL_IVB(pipe));
4571 else
4572 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004573 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4574 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004575 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004576}
4577
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004578void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004579{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004580 struct drm_device *dev = crtc->base.dev;
4581 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004582
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004583 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004584 return;
4585
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004586 /* We can only enable IPS after we enable a plane and wait for a vblank */
4587 intel_wait_for_vblank(dev, crtc->pipe);
4588
Paulo Zanonid77e4532013-09-24 13:52:55 -03004589 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004590 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004591 mutex_lock(&dev_priv->rps.hw_lock);
4592 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4593 mutex_unlock(&dev_priv->rps.hw_lock);
4594 /* Quoting Art Runyan: "its not safe to expect any particular
4595 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004596 * mailbox." Moreover, the mailbox may return a bogus state,
4597 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004598 */
4599 } else {
4600 I915_WRITE(IPS_CTL, IPS_ENABLE);
4601 /* The bit only becomes 1 in the next vblank, so this wait here
4602 * is essentially intel_wait_for_vblank. If we don't have this
4603 * and don't wait for vblanks until the end of crtc_enable, then
4604 * the HW state readout code will complain that the expected
4605 * IPS_CTL value is not the one we read. */
4606 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4607 DRM_ERROR("Timed out waiting for IPS enable\n");
4608 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004609}
4610
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004611void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004612{
4613 struct drm_device *dev = crtc->base.dev;
4614 struct drm_i915_private *dev_priv = dev->dev_private;
4615
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004616 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004617 return;
4618
4619 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004620 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004621 mutex_lock(&dev_priv->rps.hw_lock);
4622 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4623 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004624 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4625 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4626 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004627 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004628 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004629 POSTING_READ(IPS_CTL);
4630 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004631
4632 /* We need to wait for a vblank before we can disable the plane. */
4633 intel_wait_for_vblank(dev, crtc->pipe);
4634}
4635
4636/** Loads the palette/gamma unit for the CRTC with the prepared values */
4637static void intel_crtc_load_lut(struct drm_crtc *crtc)
4638{
4639 struct drm_device *dev = crtc->dev;
4640 struct drm_i915_private *dev_priv = dev->dev_private;
4641 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4642 enum pipe pipe = intel_crtc->pipe;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004643 int i;
4644 bool reenable_ips = false;
4645
4646 /* The clocks have to be on to load the palette. */
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004647 if (!crtc->state->active)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004648 return;
4649
Imre Deak50360402015-01-16 00:55:16 -08004650 if (HAS_GMCH_DISPLAY(dev_priv->dev)) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03004651 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004652 assert_dsi_pll_enabled(dev_priv);
4653 else
4654 assert_pll_enabled(dev_priv, pipe);
4655 }
4656
Paulo Zanonid77e4532013-09-24 13:52:55 -03004657 /* Workaround : Do not read or write the pipe palette/gamma data while
4658 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4659 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004660 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004661 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4662 GAMMA_MODE_MODE_SPLIT)) {
4663 hsw_disable_ips(intel_crtc);
4664 reenable_ips = true;
4665 }
4666
4667 for (i = 0; i < 256; i++) {
Ville Syrjäläf65a9c52015-09-18 20:03:28 +03004668 u32 palreg;
4669
4670 if (HAS_GMCH_DISPLAY(dev))
4671 palreg = PALETTE(pipe, i);
4672 else
4673 palreg = LGC_PALETTE(pipe, i);
4674
4675 I915_WRITE(palreg,
Paulo Zanonid77e4532013-09-24 13:52:55 -03004676 (intel_crtc->lut_r[i] << 16) |
4677 (intel_crtc->lut_g[i] << 8) |
4678 intel_crtc->lut_b[i]);
4679 }
4680
4681 if (reenable_ips)
4682 hsw_enable_ips(intel_crtc);
4683}
4684
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004685static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004686{
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004687 if (intel_crtc->overlay) {
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004688 struct drm_device *dev = intel_crtc->base.dev;
4689 struct drm_i915_private *dev_priv = dev->dev_private;
4690
4691 mutex_lock(&dev->struct_mutex);
4692 dev_priv->mm.interruptible = false;
4693 (void) intel_overlay_switch_off(intel_crtc->overlay);
4694 dev_priv->mm.interruptible = true;
4695 mutex_unlock(&dev->struct_mutex);
4696 }
4697
4698 /* Let userspace switch the overlay on again. In most cases userspace
4699 * has to recompute where to put it anyway.
4700 */
4701}
4702
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004703/**
4704 * intel_post_enable_primary - Perform operations after enabling primary plane
4705 * @crtc: the CRTC whose primary plane was just enabled
4706 *
4707 * Performs potentially sleeping operations that must be done after the primary
4708 * plane is enabled, such as updating FBC and IPS. Note that this may be
4709 * called due to an explicit primary plane update, or due to an implicit
4710 * re-enable that is caused when a sprite plane is updated to no longer
4711 * completely hide the primary plane.
4712 */
4713static void
4714intel_post_enable_primary(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004715{
4716 struct drm_device *dev = crtc->dev;
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004717 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004718 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4719 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004720
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004721 /*
4722 * BDW signals flip done immediately if the plane
4723 * is disabled, even if the plane enable is already
4724 * armed to occur at the next vblank :(
4725 */
4726 if (IS_BROADWELL(dev))
4727 intel_wait_for_vblank(dev, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004728
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004729 /*
4730 * FIXME IPS should be fine as long as one plane is
4731 * enabled, but in practice it seems to have problems
4732 * when going from primary only to sprite only and vice
4733 * versa.
4734 */
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004735 hsw_enable_ips(intel_crtc);
4736
Daniel Vetterf99d7062014-06-19 16:01:59 +02004737 /*
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004738 * Gen2 reports pipe underruns whenever all planes are disabled.
4739 * So don't enable underrun reporting before at least some planes
4740 * are enabled.
4741 * FIXME: Need to fix the logic to work when we turn off all planes
4742 * but leave the pipe running.
Daniel Vetterf99d7062014-06-19 16:01:59 +02004743 */
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004744 if (IS_GEN2(dev))
4745 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4746
4747 /* Underruns don't raise interrupts, so check manually. */
4748 if (HAS_GMCH_DISPLAY(dev))
4749 i9xx_check_fifo_underruns(dev_priv);
4750}
4751
4752/**
4753 * intel_pre_disable_primary - Perform operations before disabling primary plane
4754 * @crtc: the CRTC whose primary plane is to be disabled
4755 *
4756 * Performs potentially sleeping operations that must be done before the
4757 * primary plane is disabled, such as updating FBC and IPS. Note that this may
4758 * be called due to an explicit primary plane update, or due to an implicit
4759 * disable that is caused when a sprite plane completely hides the primary
4760 * plane.
4761 */
4762static void
4763intel_pre_disable_primary(struct drm_crtc *crtc)
4764{
4765 struct drm_device *dev = crtc->dev;
4766 struct drm_i915_private *dev_priv = dev->dev_private;
4767 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4768 int pipe = intel_crtc->pipe;
4769
4770 /*
4771 * Gen2 reports pipe underruns whenever all planes are disabled.
4772 * So diasble underrun reporting before all the planes get disabled.
4773 * FIXME: Need to fix the logic to work when we turn off all planes
4774 * but leave the pipe running.
4775 */
4776 if (IS_GEN2(dev))
4777 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4778
4779 /*
4780 * Vblank time updates from the shadow to live plane control register
4781 * are blocked if the memory self-refresh mode is active at that
4782 * moment. So to make sure the plane gets truly disabled, disable
4783 * first the self-refresh mode. The self-refresh enable bit in turn
4784 * will be checked/applied by the HW only at the next frame start
4785 * event which is after the vblank start event, so we need to have a
4786 * wait-for-vblank between disabling the plane and the pipe.
4787 */
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03004788 if (HAS_GMCH_DISPLAY(dev)) {
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004789 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03004790 dev_priv->wm.vlv.cxsr = false;
4791 intel_wait_for_vblank(dev, pipe);
4792 }
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004793
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004794 /*
4795 * FIXME IPS should be fine as long as one plane is
4796 * enabled, but in practice it seems to have problems
4797 * when going from primary only to sprite only and vice
4798 * versa.
4799 */
4800 hsw_disable_ips(intel_crtc);
4801}
4802
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004803static void intel_post_plane_update(struct intel_crtc *crtc)
4804{
4805 struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
4806 struct drm_device *dev = crtc->base.dev;
Paulo Zanoni7733b492015-07-07 15:26:04 -03004807 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004808 struct drm_plane *plane;
4809
4810 if (atomic->wait_vblank)
4811 intel_wait_for_vblank(dev, crtc->pipe);
4812
4813 intel_frontbuffer_flip(dev, atomic->fb_bits);
4814
Ville Syrjälä852eb002015-06-24 22:00:07 +03004815 if (atomic->disable_cxsr)
4816 crtc->wm.cxsr_allowed = true;
4817
Ville Syrjäläf015c552015-06-24 22:00:02 +03004818 if (crtc->atomic.update_wm_post)
4819 intel_update_watermarks(&crtc->base);
4820
Paulo Zanonic80ac852015-07-02 19:25:13 -03004821 if (atomic->update_fbc)
Paulo Zanoni7733b492015-07-07 15:26:04 -03004822 intel_fbc_update(dev_priv);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004823
4824 if (atomic->post_enable_primary)
4825 intel_post_enable_primary(&crtc->base);
4826
4827 drm_for_each_plane_mask(plane, dev, atomic->update_sprite_watermarks)
4828 intel_update_sprite_watermarks(plane, &crtc->base,
4829 0, 0, 0, false, false);
4830
4831 memset(atomic, 0, sizeof(*atomic));
4832}
4833
4834static void intel_pre_plane_update(struct intel_crtc *crtc)
4835{
4836 struct drm_device *dev = crtc->base.dev;
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +02004837 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004838 struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
4839 struct drm_plane *p;
4840
4841 /* Track fb's for any planes being disabled */
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004842 drm_for_each_plane_mask(p, dev, atomic->disabled_planes) {
4843 struct intel_plane *plane = to_intel_plane(p);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004844
4845 mutex_lock(&dev->struct_mutex);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +03004846 i915_gem_track_fb(intel_fb_obj(plane->base.fb), NULL,
4847 plane->frontbuffer_bit);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004848 mutex_unlock(&dev->struct_mutex);
4849 }
4850
4851 if (atomic->wait_for_flips)
4852 intel_crtc_wait_for_pending_flips(&crtc->base);
4853
Paulo Zanonic80ac852015-07-02 19:25:13 -03004854 if (atomic->disable_fbc)
Paulo Zanoni25ad93f2015-07-02 19:25:10 -03004855 intel_fbc_disable_crtc(crtc);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004856
Rodrigo Vivi066cf55b2015-06-26 13:55:54 -07004857 if (crtc->atomic.disable_ips)
4858 hsw_disable_ips(crtc);
4859
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004860 if (atomic->pre_disable_primary)
4861 intel_pre_disable_primary(&crtc->base);
Ville Syrjälä852eb002015-06-24 22:00:07 +03004862
4863 if (atomic->disable_cxsr) {
4864 crtc->wm.cxsr_allowed = false;
4865 intel_set_memory_cxsr(dev_priv, false);
4866 }
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004867}
4868
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004869static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004870{
4871 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004872 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004873 struct drm_plane *p;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004874 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004875
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004876 intel_crtc_dpms_overlay_disable(intel_crtc);
Maarten Lankhorst27321ae2015-04-21 17:12:52 +03004877
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004878 drm_for_each_plane_mask(p, dev, plane_mask)
4879 to_intel_plane(p)->disable_plane(p, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004880
Daniel Vetterf99d7062014-06-19 16:01:59 +02004881 /*
4882 * FIXME: Once we grow proper nuclear flip support out of this we need
4883 * to compute the mask of flip planes precisely. For the time being
4884 * consider this a flip to a NULL plane.
4885 */
4886 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004887}
4888
Jesse Barnesf67a5592011-01-05 10:31:48 -08004889static void ironlake_crtc_enable(struct drm_crtc *crtc)
4890{
4891 struct drm_device *dev = crtc->dev;
4892 struct drm_i915_private *dev_priv = dev->dev_private;
4893 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004894 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004895 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004896
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004897 if (WARN_ON(intel_crtc->active))
Jesse Barnesf67a5592011-01-05 10:31:48 -08004898 return;
4899
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004900 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004901 intel_prepare_shared_dpll(intel_crtc);
4902
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004903 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05304904 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004905
4906 intel_set_pipe_timings(intel_crtc);
4907
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004908 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004909 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004910 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004911 }
4912
4913 ironlake_set_pipeconf(crtc);
4914
Jesse Barnesf67a5592011-01-05 10:31:48 -08004915 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004916
Daniel Vettera72e4c92014-09-30 10:56:47 +02004917 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4918 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004919
Daniel Vetterf6736a12013-06-05 13:34:30 +02004920 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004921 if (encoder->pre_enable)
4922 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004923
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004924 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004925 /* Note: FDI PLL enabling _must_ be done before we enable the
4926 * cpu pipes, hence this is separate from all the other fdi/pch
4927 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004928 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004929 } else {
4930 assert_fdi_tx_disabled(dev_priv, pipe);
4931 assert_fdi_rx_disabled(dev_priv, pipe);
4932 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004933
Jesse Barnesb074cec2013-04-25 12:55:02 -07004934 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004935
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004936 /*
4937 * On ILK+ LUT must be loaded before the pipe is running but with
4938 * clocks enabled
4939 */
4940 intel_crtc_load_lut(crtc);
4941
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004942 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004943 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004944
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004945 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004946 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004947
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004948 assert_vblank_disabled(crtc);
4949 drm_crtc_vblank_on(crtc);
4950
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004951 for_each_encoder_on_crtc(dev, crtc, encoder)
4952 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004953
4954 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004955 cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004956}
4957
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004958/* IPS only exists on ULT machines and is tied to pipe A. */
4959static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4960{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004961 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004962}
4963
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004964static void haswell_crtc_enable(struct drm_crtc *crtc)
4965{
4966 struct drm_device *dev = crtc->dev;
4967 struct drm_i915_private *dev_priv = dev->dev_private;
4968 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4969 struct intel_encoder *encoder;
Maarten Lankhorst99d736a2015-06-01 12:50:09 +02004970 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
4971 struct intel_crtc_state *pipe_config =
4972 to_intel_crtc_state(crtc->state);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004973
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004974 if (WARN_ON(intel_crtc->active))
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004975 return;
4976
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004977 if (intel_crtc_to_shared_dpll(intel_crtc))
4978 intel_enable_shared_dpll(intel_crtc);
4979
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004980 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05304981 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter229fca92014-04-24 23:55:09 +02004982
4983 intel_set_pipe_timings(intel_crtc);
4984
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004985 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4986 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4987 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07004988 }
4989
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004990 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02004991 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004992 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004993 }
4994
4995 haswell_set_pipeconf(crtc);
4996
4997 intel_set_pipe_csc(crtc);
4998
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004999 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03005000
Daniel Vettera72e4c92014-09-30 10:56:47 +02005001 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005002 for_each_encoder_on_crtc(dev, crtc, encoder)
5003 if (encoder->pre_enable)
5004 encoder->pre_enable(encoder);
5005
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005006 if (intel_crtc->config->has_pch_encoder) {
Daniel Vettera72e4c92014-09-30 10:56:47 +02005007 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5008 true);
Imre Deak4fe94672014-06-25 22:01:49 +03005009 dev_priv->display.fdi_link_train(crtc);
5010 }
5011
Paulo Zanoni1f544382012-10-24 11:32:00 -02005012 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005013
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005014 if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02005015 skylake_pfit_enable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005016 else
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005017 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005018
5019 /*
5020 * On ILK+ LUT must be loaded before the pipe is running but with
5021 * clocks enabled
5022 */
5023 intel_crtc_load_lut(crtc);
5024
Paulo Zanoni1f544382012-10-24 11:32:00 -02005025 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00005026 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005027
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005028 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005029 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005030
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005031 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02005032 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005033
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005034 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10005035 intel_ddi_set_vc_payload_alloc(crtc, true);
5036
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005037 assert_vblank_disabled(crtc);
5038 drm_crtc_vblank_on(crtc);
5039
Jani Nikula8807e552013-08-30 19:40:32 +03005040 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005041 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005042 intel_opregion_notify_encoder(encoder, true);
5043 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005044
Paulo Zanonie4916942013-09-20 16:21:19 -03005045 /* If we change the relative order between pipe/planes enabling, we need
5046 * to change the workaround. */
Maarten Lankhorst99d736a2015-06-01 12:50:09 +02005047 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
5048 if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) {
5049 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5050 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5051 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005052}
5053
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005054static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005055{
5056 struct drm_device *dev = crtc->base.dev;
5057 struct drm_i915_private *dev_priv = dev->dev_private;
5058 int pipe = crtc->pipe;
5059
5060 /* To avoid upsetting the power well on haswell only disable the pfit if
5061 * it's in use. The hw state code will make sure we get this right. */
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005062 if (force || crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005063 I915_WRITE(PF_CTL(pipe), 0);
5064 I915_WRITE(PF_WIN_POS(pipe), 0);
5065 I915_WRITE(PF_WIN_SZ(pipe), 0);
5066 }
5067}
5068
Jesse Barnes6be4a602010-09-10 10:26:01 -07005069static void ironlake_crtc_disable(struct drm_crtc *crtc)
5070{
5071 struct drm_device *dev = crtc->dev;
5072 struct drm_i915_private *dev_priv = dev->dev_private;
5073 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005074 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005075 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01005076 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005077
Daniel Vetterea9d7582012-07-10 10:42:52 +02005078 for_each_encoder_on_crtc(dev, crtc, encoder)
5079 encoder->disable(encoder);
5080
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005081 drm_crtc_vblank_off(crtc);
5082 assert_vblank_disabled(crtc);
5083
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005084 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02005085 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
Daniel Vetterd925c592013-06-05 13:34:04 +02005086
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005087 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005088
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005089 ironlake_pfit_disable(intel_crtc, false);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005090
Ville Syrjälä5a74f702015-05-05 17:17:38 +03005091 if (intel_crtc->config->has_pch_encoder)
5092 ironlake_fdi_disable(crtc);
5093
Daniel Vetterbf49ec82012-09-06 22:15:40 +02005094 for_each_encoder_on_crtc(dev, crtc, encoder)
5095 if (encoder->post_disable)
5096 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005097
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005098 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02005099 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005100
Daniel Vetterd925c592013-06-05 13:34:04 +02005101 if (HAS_PCH_CPT(dev)) {
5102 /* disable TRANS_DP_CTL */
5103 reg = TRANS_DP_CTL(pipe);
5104 temp = I915_READ(reg);
5105 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5106 TRANS_DP_PORT_SEL_MASK);
5107 temp |= TRANS_DP_PORT_SEL_NONE;
5108 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005109
Daniel Vetterd925c592013-06-05 13:34:04 +02005110 /* disable DPLL_SEL */
5111 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02005112 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02005113 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005114 }
Daniel Vetterd925c592013-06-05 13:34:04 +02005115
Daniel Vetterd925c592013-06-05 13:34:04 +02005116 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005117 }
Patrik Jakobssone4ca0612015-07-08 15:31:52 +02005118
5119 intel_crtc->active = false;
5120 intel_update_watermarks(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005121}
5122
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005123static void haswell_crtc_disable(struct drm_crtc *crtc)
5124{
5125 struct drm_device *dev = crtc->dev;
5126 struct drm_i915_private *dev_priv = dev->dev_private;
5127 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5128 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005129 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005130
Jani Nikula8807e552013-08-30 19:40:32 +03005131 for_each_encoder_on_crtc(dev, crtc, encoder) {
5132 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005133 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005134 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005135
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005136 drm_crtc_vblank_off(crtc);
5137 assert_vblank_disabled(crtc);
5138
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005139 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02005140 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5141 false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005142 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005143
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005144 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03005145 intel_ddi_set_vc_payload_alloc(crtc, false);
5146
Paulo Zanoniad80a812012-10-24 16:06:19 -02005147 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005148
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005149 if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02005150 skylake_scaler_disable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005151 else
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005152 ironlake_pfit_disable(intel_crtc, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005153
Paulo Zanoni1f544382012-10-24 11:32:00 -02005154 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005155
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005156 if (intel_crtc->config->has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02005157 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02005158 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02005159 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005160
Imre Deak97b040a2014-06-25 22:01:50 +03005161 for_each_encoder_on_crtc(dev, crtc, encoder)
5162 if (encoder->post_disable)
5163 encoder->post_disable(encoder);
Patrik Jakobssone4ca0612015-07-08 15:31:52 +02005164
5165 intel_crtc->active = false;
5166 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005167}
5168
Jesse Barnes2dd24552013-04-25 12:55:01 -07005169static void i9xx_pfit_enable(struct intel_crtc *crtc)
5170{
5171 struct drm_device *dev = crtc->base.dev;
5172 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005173 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07005174
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02005175 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07005176 return;
5177
Daniel Vetterc0b03412013-05-28 12:05:54 +02005178 /*
5179 * The panel fitter should only be adjusted whilst the pipe is disabled,
5180 * according to register description and PRM.
5181 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07005182 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5183 assert_pipe_disabled(dev_priv, crtc->pipe);
5184
Jesse Barnesb074cec2013-04-25 12:55:02 -07005185 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5186 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02005187
5188 /* Border color in case we don't scale up to the full screen. Black by
5189 * default, change to something else for debugging. */
5190 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07005191}
5192
Dave Airlied05410f2014-06-05 13:22:59 +10005193static enum intel_display_power_domain port_to_power_domain(enum port port)
5194{
5195 switch (port) {
5196 case PORT_A:
5197 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
5198 case PORT_B:
5199 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
5200 case PORT_C:
5201 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
5202 case PORT_D:
5203 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
Xiong Zhangd8e19f92015-08-13 18:00:12 +08005204 case PORT_E:
5205 return POWER_DOMAIN_PORT_DDI_E_2_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005206 default:
5207 WARN_ON_ONCE(1);
5208 return POWER_DOMAIN_PORT_OTHER;
5209 }
5210}
5211
Imre Deak77d22dc2014-03-05 16:20:52 +02005212#define for_each_power_domain(domain, mask) \
5213 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
5214 if ((1 << (domain)) & (mask))
5215
Imre Deak319be8a2014-03-04 19:22:57 +02005216enum intel_display_power_domain
5217intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02005218{
Imre Deak319be8a2014-03-04 19:22:57 +02005219 struct drm_device *dev = intel_encoder->base.dev;
5220 struct intel_digital_port *intel_dig_port;
5221
5222 switch (intel_encoder->type) {
5223 case INTEL_OUTPUT_UNKNOWN:
5224 /* Only DDI platforms should ever use this output type */
5225 WARN_ON_ONCE(!HAS_DDI(dev));
5226 case INTEL_OUTPUT_DISPLAYPORT:
5227 case INTEL_OUTPUT_HDMI:
5228 case INTEL_OUTPUT_EDP:
5229 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10005230 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10005231 case INTEL_OUTPUT_DP_MST:
5232 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5233 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02005234 case INTEL_OUTPUT_ANALOG:
5235 return POWER_DOMAIN_PORT_CRT;
5236 case INTEL_OUTPUT_DSI:
5237 return POWER_DOMAIN_PORT_DSI;
5238 default:
5239 return POWER_DOMAIN_PORT_OTHER;
5240 }
5241}
5242
5243static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
5244{
5245 struct drm_device *dev = crtc->dev;
5246 struct intel_encoder *intel_encoder;
5247 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5248 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02005249 unsigned long mask;
5250 enum transcoder transcoder;
5251
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005252 if (!crtc->state->active)
5253 return 0;
5254
Imre Deak77d22dc2014-03-05 16:20:52 +02005255 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
5256
5257 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5258 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005259 if (intel_crtc->config->pch_pfit.enabled ||
5260 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02005261 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5262
Imre Deak319be8a2014-03-04 19:22:57 +02005263 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5264 mask |= BIT(intel_display_port_power_domain(intel_encoder));
5265
Imre Deak77d22dc2014-03-05 16:20:52 +02005266 return mask;
5267}
5268
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005269static unsigned long modeset_get_crtc_power_domains(struct drm_crtc *crtc)
5270{
5271 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5272 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5273 enum intel_display_power_domain domain;
5274 unsigned long domains, new_domains, old_domains;
5275
5276 old_domains = intel_crtc->enabled_power_domains;
5277 intel_crtc->enabled_power_domains = new_domains = get_crtc_power_domains(crtc);
5278
5279 domains = new_domains & ~old_domains;
5280
5281 for_each_power_domain(domain, domains)
5282 intel_display_power_get(dev_priv, domain);
5283
5284 return old_domains & ~new_domains;
5285}
5286
5287static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5288 unsigned long domains)
5289{
5290 enum intel_display_power_domain domain;
5291
5292 for_each_power_domain(domain, domains)
5293 intel_display_power_put(dev_priv, domain);
5294}
5295
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005296static void modeset_update_crtc_power_domains(struct drm_atomic_state *state)
Imre Deak77d22dc2014-03-05 16:20:52 +02005297{
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005298 struct drm_device *dev = state->dev;
Imre Deak77d22dc2014-03-05 16:20:52 +02005299 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005300 unsigned long put_domains[I915_MAX_PIPES] = {};
5301 struct drm_crtc_state *crtc_state;
5302 struct drm_crtc *crtc;
5303 int i;
Imre Deak77d22dc2014-03-05 16:20:52 +02005304
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005305 for_each_crtc_in_state(state, crtc, crtc_state, i) {
5306 if (needs_modeset(crtc->state))
5307 put_domains[to_intel_crtc(crtc)->pipe] =
5308 modeset_get_crtc_power_domains(crtc);
Imre Deak77d22dc2014-03-05 16:20:52 +02005309 }
5310
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005311 if (dev_priv->display.modeset_commit_cdclk) {
5312 unsigned int cdclk = to_intel_atomic_state(state)->cdclk;
5313
5314 if (cdclk != dev_priv->cdclk_freq &&
5315 !WARN_ON(!state->allow_modeset))
5316 dev_priv->display.modeset_commit_cdclk(state);
5317 }
Ville Syrjälä50f6e502014-11-06 14:49:12 +02005318
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005319 for (i = 0; i < I915_MAX_PIPES; i++)
5320 if (put_domains[i])
5321 modeset_put_power_domains(dev_priv, put_domains[i]);
Imre Deak77d22dc2014-03-05 16:20:52 +02005322}
5323
Mika Kaholaadafdc62015-08-18 14:36:59 +03005324static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5325{
5326 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5327
5328 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5329 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5330 return max_cdclk_freq;
5331 else if (IS_CHERRYVIEW(dev_priv))
5332 return max_cdclk_freq*95/100;
5333 else if (INTEL_INFO(dev_priv)->gen < 4)
5334 return 2*max_cdclk_freq*90/100;
5335 else
5336 return max_cdclk_freq*90/100;
5337}
5338
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005339static void intel_update_max_cdclk(struct drm_device *dev)
5340{
5341 struct drm_i915_private *dev_priv = dev->dev_private;
5342
5343 if (IS_SKYLAKE(dev)) {
5344 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
5345
5346 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
5347 dev_priv->max_cdclk_freq = 675000;
5348 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
5349 dev_priv->max_cdclk_freq = 540000;
5350 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
5351 dev_priv->max_cdclk_freq = 450000;
5352 else
5353 dev_priv->max_cdclk_freq = 337500;
5354 } else if (IS_BROADWELL(dev)) {
5355 /*
5356 * FIXME with extra cooling we can allow
5357 * 540 MHz for ULX and 675 Mhz for ULT.
5358 * How can we know if extra cooling is
5359 * available? PCI ID, VTB, something else?
5360 */
5361 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5362 dev_priv->max_cdclk_freq = 450000;
5363 else if (IS_BDW_ULX(dev))
5364 dev_priv->max_cdclk_freq = 450000;
5365 else if (IS_BDW_ULT(dev))
5366 dev_priv->max_cdclk_freq = 540000;
5367 else
5368 dev_priv->max_cdclk_freq = 675000;
Mika Kahola0904dea2015-06-12 10:11:32 +03005369 } else if (IS_CHERRYVIEW(dev)) {
5370 dev_priv->max_cdclk_freq = 320000;
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005371 } else if (IS_VALLEYVIEW(dev)) {
5372 dev_priv->max_cdclk_freq = 400000;
5373 } else {
5374 /* otherwise assume cdclk is fixed */
5375 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5376 }
5377
Mika Kaholaadafdc62015-08-18 14:36:59 +03005378 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5379
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005380 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5381 dev_priv->max_cdclk_freq);
Mika Kaholaadafdc62015-08-18 14:36:59 +03005382
5383 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5384 dev_priv->max_dotclk_freq);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005385}
5386
5387static void intel_update_cdclk(struct drm_device *dev)
5388{
5389 struct drm_i915_private *dev_priv = dev->dev_private;
5390
5391 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
5392 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5393 dev_priv->cdclk_freq);
5394
5395 /*
5396 * Program the gmbus_freq based on the cdclk frequency.
5397 * BSpec erroneously claims we should aim for 4MHz, but
5398 * in fact 1MHz is the correct frequency.
5399 */
5400 if (IS_VALLEYVIEW(dev)) {
5401 /*
5402 * Program the gmbus_freq based on the cdclk frequency.
5403 * BSpec erroneously claims we should aim for 4MHz, but
5404 * in fact 1MHz is the correct frequency.
5405 */
5406 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
5407 }
5408
5409 if (dev_priv->max_cdclk_freq == 0)
5410 intel_update_max_cdclk(dev);
5411}
5412
Damien Lespiau70d0c572015-06-04 18:21:29 +01005413static void broxton_set_cdclk(struct drm_device *dev, int frequency)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305414{
5415 struct drm_i915_private *dev_priv = dev->dev_private;
5416 uint32_t divider;
5417 uint32_t ratio;
5418 uint32_t current_freq;
5419 int ret;
5420
5421 /* frequency = 19.2MHz * ratio / 2 / div{1,1.5,2,4} */
5422 switch (frequency) {
5423 case 144000:
5424 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
5425 ratio = BXT_DE_PLL_RATIO(60);
5426 break;
5427 case 288000:
5428 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
5429 ratio = BXT_DE_PLL_RATIO(60);
5430 break;
5431 case 384000:
5432 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
5433 ratio = BXT_DE_PLL_RATIO(60);
5434 break;
5435 case 576000:
5436 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5437 ratio = BXT_DE_PLL_RATIO(60);
5438 break;
5439 case 624000:
5440 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5441 ratio = BXT_DE_PLL_RATIO(65);
5442 break;
5443 case 19200:
5444 /*
5445 * Bypass frequency with DE PLL disabled. Init ratio, divider
5446 * to suppress GCC warning.
5447 */
5448 ratio = 0;
5449 divider = 0;
5450 break;
5451 default:
5452 DRM_ERROR("unsupported CDCLK freq %d", frequency);
5453
5454 return;
5455 }
5456
5457 mutex_lock(&dev_priv->rps.hw_lock);
5458 /* Inform power controller of upcoming frequency change */
5459 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5460 0x80000000);
5461 mutex_unlock(&dev_priv->rps.hw_lock);
5462
5463 if (ret) {
5464 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
5465 ret, frequency);
5466 return;
5467 }
5468
5469 current_freq = I915_READ(CDCLK_CTL) & CDCLK_FREQ_DECIMAL_MASK;
5470 /* convert from .1 fixpoint MHz with -1MHz offset to kHz */
5471 current_freq = current_freq * 500 + 1000;
5472
5473 /*
5474 * DE PLL has to be disabled when
5475 * - setting to 19.2MHz (bypass, PLL isn't used)
5476 * - before setting to 624MHz (PLL needs toggling)
5477 * - before setting to any frequency from 624MHz (PLL needs toggling)
5478 */
5479 if (frequency == 19200 || frequency == 624000 ||
5480 current_freq == 624000) {
5481 I915_WRITE(BXT_DE_PLL_ENABLE, ~BXT_DE_PLL_PLL_ENABLE);
5482 /* Timeout 200us */
5483 if (wait_for(!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK),
5484 1))
5485 DRM_ERROR("timout waiting for DE PLL unlock\n");
5486 }
5487
5488 if (frequency != 19200) {
5489 uint32_t val;
5490
5491 val = I915_READ(BXT_DE_PLL_CTL);
5492 val &= ~BXT_DE_PLL_RATIO_MASK;
5493 val |= ratio;
5494 I915_WRITE(BXT_DE_PLL_CTL, val);
5495
5496 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5497 /* Timeout 200us */
5498 if (wait_for(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK, 1))
5499 DRM_ERROR("timeout waiting for DE PLL lock\n");
5500
5501 val = I915_READ(CDCLK_CTL);
5502 val &= ~BXT_CDCLK_CD2X_DIV_SEL_MASK;
5503 val |= divider;
5504 /*
5505 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5506 * enable otherwise.
5507 */
5508 val &= ~BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5509 if (frequency >= 500000)
5510 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5511
5512 val &= ~CDCLK_FREQ_DECIMAL_MASK;
5513 /* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5514 val |= (frequency - 1000) / 500;
5515 I915_WRITE(CDCLK_CTL, val);
5516 }
5517
5518 mutex_lock(&dev_priv->rps.hw_lock);
5519 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5520 DIV_ROUND_UP(frequency, 25000));
5521 mutex_unlock(&dev_priv->rps.hw_lock);
5522
5523 if (ret) {
5524 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
5525 ret, frequency);
5526 return;
5527 }
5528
Damien Lespiaua47871b2015-06-04 18:21:34 +01005529 intel_update_cdclk(dev);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305530}
5531
5532void broxton_init_cdclk(struct drm_device *dev)
5533{
5534 struct drm_i915_private *dev_priv = dev->dev_private;
5535 uint32_t val;
5536
5537 /*
5538 * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT
5539 * or else the reset will hang because there is no PCH to respond.
5540 * Move the handshake programming to initialization sequence.
5541 * Previously was left up to BIOS.
5542 */
5543 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5544 val &= ~RESET_PCH_HANDSHAKE_ENABLE;
5545 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
5546
5547 /* Enable PG1 for cdclk */
5548 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5549
5550 /* check if cd clock is enabled */
5551 if (I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_PLL_ENABLE) {
5552 DRM_DEBUG_KMS("Display already initialized\n");
5553 return;
5554 }
5555
5556 /*
5557 * FIXME:
5558 * - The initial CDCLK needs to be read from VBT.
5559 * Need to make this change after VBT has changes for BXT.
5560 * - check if setting the max (or any) cdclk freq is really necessary
5561 * here, it belongs to modeset time
5562 */
5563 broxton_set_cdclk(dev, 624000);
5564
5565 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005566 POSTING_READ(DBUF_CTL);
5567
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305568 udelay(10);
5569
5570 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5571 DRM_ERROR("DBuf power enable timeout!\n");
5572}
5573
5574void broxton_uninit_cdclk(struct drm_device *dev)
5575{
5576 struct drm_i915_private *dev_priv = dev->dev_private;
5577
5578 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005579 POSTING_READ(DBUF_CTL);
5580
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305581 udelay(10);
5582
5583 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5584 DRM_ERROR("DBuf power disable timeout!\n");
5585
5586 /* Set minimum (bypass) frequency, in effect turning off the DE PLL */
5587 broxton_set_cdclk(dev, 19200);
5588
5589 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5590}
5591
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005592static const struct skl_cdclk_entry {
5593 unsigned int freq;
5594 unsigned int vco;
5595} skl_cdclk_frequencies[] = {
5596 { .freq = 308570, .vco = 8640 },
5597 { .freq = 337500, .vco = 8100 },
5598 { .freq = 432000, .vco = 8640 },
5599 { .freq = 450000, .vco = 8100 },
5600 { .freq = 540000, .vco = 8100 },
5601 { .freq = 617140, .vco = 8640 },
5602 { .freq = 675000, .vco = 8100 },
5603};
5604
5605static unsigned int skl_cdclk_decimal(unsigned int freq)
5606{
5607 return (freq - 1000) / 500;
5608}
5609
5610static unsigned int skl_cdclk_get_vco(unsigned int freq)
5611{
5612 unsigned int i;
5613
5614 for (i = 0; i < ARRAY_SIZE(skl_cdclk_frequencies); i++) {
5615 const struct skl_cdclk_entry *e = &skl_cdclk_frequencies[i];
5616
5617 if (e->freq == freq)
5618 return e->vco;
5619 }
5620
5621 return 8100;
5622}
5623
5624static void
5625skl_dpll0_enable(struct drm_i915_private *dev_priv, unsigned int required_vco)
5626{
5627 unsigned int min_freq;
5628 u32 val;
5629
5630 /* select the minimum CDCLK before enabling DPLL 0 */
5631 val = I915_READ(CDCLK_CTL);
5632 val &= ~CDCLK_FREQ_SEL_MASK | ~CDCLK_FREQ_DECIMAL_MASK;
5633 val |= CDCLK_FREQ_337_308;
5634
5635 if (required_vco == 8640)
5636 min_freq = 308570;
5637 else
5638 min_freq = 337500;
5639
5640 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_freq);
5641
5642 I915_WRITE(CDCLK_CTL, val);
5643 POSTING_READ(CDCLK_CTL);
5644
5645 /*
5646 * We always enable DPLL0 with the lowest link rate possible, but still
5647 * taking into account the VCO required to operate the eDP panel at the
5648 * desired frequency. The usual DP link rates operate with a VCO of
5649 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
5650 * The modeset code is responsible for the selection of the exact link
5651 * rate later on, with the constraint of choosing a frequency that
5652 * works with required_vco.
5653 */
5654 val = I915_READ(DPLL_CTRL1);
5655
5656 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
5657 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
5658 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
5659 if (required_vco == 8640)
5660 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
5661 SKL_DPLL0);
5662 else
5663 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
5664 SKL_DPLL0);
5665
5666 I915_WRITE(DPLL_CTRL1, val);
5667 POSTING_READ(DPLL_CTRL1);
5668
5669 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
5670
5671 if (wait_for(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK, 5))
5672 DRM_ERROR("DPLL0 not locked\n");
5673}
5674
5675static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
5676{
5677 int ret;
5678 u32 val;
5679
5680 /* inform PCU we want to change CDCLK */
5681 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
5682 mutex_lock(&dev_priv->rps.hw_lock);
5683 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
5684 mutex_unlock(&dev_priv->rps.hw_lock);
5685
5686 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
5687}
5688
5689static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
5690{
5691 unsigned int i;
5692
5693 for (i = 0; i < 15; i++) {
5694 if (skl_cdclk_pcu_ready(dev_priv))
5695 return true;
5696 udelay(10);
5697 }
5698
5699 return false;
5700}
5701
5702static void skl_set_cdclk(struct drm_i915_private *dev_priv, unsigned int freq)
5703{
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005704 struct drm_device *dev = dev_priv->dev;
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005705 u32 freq_select, pcu_ack;
5706
5707 DRM_DEBUG_DRIVER("Changing CDCLK to %dKHz\n", freq);
5708
5709 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
5710 DRM_ERROR("failed to inform PCU about cdclk change\n");
5711 return;
5712 }
5713
5714 /* set CDCLK_CTL */
5715 switch(freq) {
5716 case 450000:
5717 case 432000:
5718 freq_select = CDCLK_FREQ_450_432;
5719 pcu_ack = 1;
5720 break;
5721 case 540000:
5722 freq_select = CDCLK_FREQ_540;
5723 pcu_ack = 2;
5724 break;
5725 case 308570:
5726 case 337500:
5727 default:
5728 freq_select = CDCLK_FREQ_337_308;
5729 pcu_ack = 0;
5730 break;
5731 case 617140:
5732 case 675000:
5733 freq_select = CDCLK_FREQ_675_617;
5734 pcu_ack = 3;
5735 break;
5736 }
5737
5738 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(freq));
5739 POSTING_READ(CDCLK_CTL);
5740
5741 /* inform PCU of the change */
5742 mutex_lock(&dev_priv->rps.hw_lock);
5743 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
5744 mutex_unlock(&dev_priv->rps.hw_lock);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005745
5746 intel_update_cdclk(dev);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005747}
5748
5749void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
5750{
5751 /* disable DBUF power */
5752 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
5753 POSTING_READ(DBUF_CTL);
5754
5755 udelay(10);
5756
5757 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5758 DRM_ERROR("DBuf power disable timeout\n");
5759
Animesh Manna4e961e42015-08-26 01:36:08 +05305760 /*
5761 * DMC assumes ownership of LCPLL and will get confused if we touch it.
5762 */
5763 if (dev_priv->csr.dmc_payload) {
5764 /* disable DPLL0 */
5765 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) &
5766 ~LCPLL_PLL_ENABLE);
5767 if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1))
5768 DRM_ERROR("Couldn't disable DPLL0\n");
5769 }
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005770
5771 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5772}
5773
5774void skl_init_cdclk(struct drm_i915_private *dev_priv)
5775{
5776 u32 val;
5777 unsigned int required_vco;
5778
5779 /* enable PCH reset handshake */
5780 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5781 I915_WRITE(HSW_NDE_RSTWRN_OPT, val | RESET_PCH_HANDSHAKE_ENABLE);
5782
5783 /* enable PG1 and Misc I/O */
5784 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5785
Gary Wang39d9b852015-08-28 16:40:34 +08005786 /* DPLL0 not enabled (happens on early BIOS versions) */
5787 if (!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_ENABLE)) {
5788 /* enable DPLL0 */
5789 required_vco = skl_cdclk_get_vco(dev_priv->skl_boot_cdclk);
5790 skl_dpll0_enable(dev_priv, required_vco);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005791 }
5792
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005793 /* set CDCLK to the frequency the BIOS chose */
5794 skl_set_cdclk(dev_priv, dev_priv->skl_boot_cdclk);
5795
5796 /* enable DBUF power */
5797 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
5798 POSTING_READ(DBUF_CTL);
5799
5800 udelay(10);
5801
5802 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5803 DRM_ERROR("DBuf power enable timeout\n");
5804}
5805
Jesse Barnes30a970c2013-11-04 13:48:12 -08005806/* Adjust CDclk dividers to allow high res or save power if possible */
5807static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5808{
5809 struct drm_i915_private *dev_priv = dev->dev_private;
5810 u32 val, cmd;
5811
Vandana Kannan164dfd22014-11-24 13:37:41 +05305812 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5813 != dev_priv->cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02005814
Ville Syrjälädfcab172014-06-13 13:37:47 +03005815 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08005816 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03005817 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005818 cmd = 1;
5819 else
5820 cmd = 0;
5821
5822 mutex_lock(&dev_priv->rps.hw_lock);
5823 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5824 val &= ~DSPFREQGUAR_MASK;
5825 val |= (cmd << DSPFREQGUAR_SHIFT);
5826 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5827 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5828 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5829 50)) {
5830 DRM_ERROR("timed out waiting for CDclk change\n");
5831 }
5832 mutex_unlock(&dev_priv->rps.hw_lock);
5833
Ville Syrjälä54433e92015-05-26 20:42:31 +03005834 mutex_lock(&dev_priv->sb_lock);
5835
Ville Syrjälädfcab172014-06-13 13:37:47 +03005836 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005837 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005838
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005839 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005840
Jesse Barnes30a970c2013-11-04 13:48:12 -08005841 /* adjust cdclk divider */
5842 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Vandana Kannan87d5d252015-09-24 23:29:17 +03005843 val &= ~CCK_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005844 val |= divider;
5845 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03005846
5847 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
Vandana Kannan87d5d252015-09-24 23:29:17 +03005848 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
Ville Syrjäläa877e802014-06-13 13:37:52 +03005849 50))
5850 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08005851 }
5852
Jesse Barnes30a970c2013-11-04 13:48:12 -08005853 /* adjust self-refresh exit latency value */
5854 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5855 val &= ~0x7f;
5856
5857 /*
5858 * For high bandwidth configs, we set a higher latency in the bunit
5859 * so that the core display fetch happens in time to avoid underruns.
5860 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03005861 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005862 val |= 4500 / 250; /* 4.5 usec */
5863 else
5864 val |= 3000 / 250; /* 3.0 usec */
5865 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
Ville Syrjälä54433e92015-05-26 20:42:31 +03005866
Ville Syrjäläa5805162015-05-26 20:42:30 +03005867 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005868
Ville Syrjäläb6283052015-06-03 15:45:07 +03005869 intel_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005870}
5871
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005872static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5873{
5874 struct drm_i915_private *dev_priv = dev->dev_private;
5875 u32 val, cmd;
5876
Vandana Kannan164dfd22014-11-24 13:37:41 +05305877 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5878 != dev_priv->cdclk_freq);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005879
5880 switch (cdclk) {
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005881 case 333333:
5882 case 320000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005883 case 266667:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005884 case 200000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005885 break;
5886 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01005887 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005888 return;
5889 }
5890
Ville Syrjälä9d0d3fd2015-03-02 20:07:17 +02005891 /*
5892 * Specs are full of misinformation, but testing on actual
5893 * hardware has shown that we just need to write the desired
5894 * CCK divider into the Punit register.
5895 */
5896 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5897
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005898 mutex_lock(&dev_priv->rps.hw_lock);
5899 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5900 val &= ~DSPFREQGUAR_MASK_CHV;
5901 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
5902 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5903 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5904 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
5905 50)) {
5906 DRM_ERROR("timed out waiting for CDclk change\n");
5907 }
5908 mutex_unlock(&dev_priv->rps.hw_lock);
5909
Ville Syrjäläb6283052015-06-03 15:45:07 +03005910 intel_update_cdclk(dev);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005911}
5912
Jesse Barnes30a970c2013-11-04 13:48:12 -08005913static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
5914 int max_pixclk)
5915{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005916 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005917 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005918
Jesse Barnes30a970c2013-11-04 13:48:12 -08005919 /*
5920 * Really only a few cases to deal with, as only 4 CDclks are supported:
5921 * 200MHz
5922 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005923 * 320/333MHz (depends on HPLL freq)
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005924 * 400MHz (VLV only)
5925 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
5926 * of the lower bin and adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005927 *
5928 * We seem to get an unstable or solid color picture at 200MHz.
5929 * Not sure what's wrong. For now use 200MHz only when all pipes
5930 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08005931 */
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005932 if (!IS_CHERRYVIEW(dev_priv) &&
5933 max_pixclk > freq_320*limit/100)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005934 return 400000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005935 else if (max_pixclk > 266667*limit/100)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005936 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005937 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005938 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005939 else
5940 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005941}
5942
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305943static int broxton_calc_cdclk(struct drm_i915_private *dev_priv,
5944 int max_pixclk)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005945{
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305946 /*
5947 * FIXME:
5948 * - remove the guardband, it's not needed on BXT
5949 * - set 19.2MHz bypass frequency if there are no active pipes
5950 */
5951 if (max_pixclk > 576000*9/10)
5952 return 624000;
5953 else if (max_pixclk > 384000*9/10)
5954 return 576000;
5955 else if (max_pixclk > 288000*9/10)
5956 return 384000;
5957 else if (max_pixclk > 144000*9/10)
5958 return 288000;
5959 else
5960 return 144000;
5961}
5962
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005963/* Compute the max pixel clock for new configuration. Uses atomic state if
5964 * that's non-NULL, look at current state otherwise. */
5965static int intel_mode_max_pixclk(struct drm_device *dev,
5966 struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005967{
Jesse Barnes30a970c2013-11-04 13:48:12 -08005968 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005969 struct intel_crtc_state *crtc_state;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005970 int max_pixclk = 0;
5971
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005972 for_each_intel_crtc(dev, intel_crtc) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005973 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005974 if (IS_ERR(crtc_state))
5975 return PTR_ERR(crtc_state);
5976
5977 if (!crtc_state->base.enable)
5978 continue;
5979
5980 max_pixclk = max(max_pixclk,
5981 crtc_state->base.adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005982 }
5983
5984 return max_pixclk;
5985}
5986
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005987static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005988{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005989 struct drm_device *dev = state->dev;
5990 struct drm_i915_private *dev_priv = dev->dev_private;
5991 int max_pixclk = intel_mode_max_pixclk(dev, state);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005992
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005993 if (max_pixclk < 0)
5994 return max_pixclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005995
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005996 to_intel_atomic_state(state)->cdclk =
5997 valleyview_calc_cdclk(dev_priv, max_pixclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305998
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005999 return 0;
6000}
Jesse Barnes30a970c2013-11-04 13:48:12 -08006001
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006002static int broxton_modeset_calc_cdclk(struct drm_atomic_state *state)
6003{
6004 struct drm_device *dev = state->dev;
6005 struct drm_i915_private *dev_priv = dev->dev_private;
6006 int max_pixclk = intel_mode_max_pixclk(dev, state);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006007
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006008 if (max_pixclk < 0)
6009 return max_pixclk;
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006010
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006011 to_intel_atomic_state(state)->cdclk =
6012 broxton_calc_cdclk(dev_priv, max_pixclk);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006013
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006014 return 0;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006015}
6016
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006017static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
6018{
6019 unsigned int credits, default_credits;
6020
6021 if (IS_CHERRYVIEW(dev_priv))
6022 default_credits = PFI_CREDIT(12);
6023 else
6024 default_credits = PFI_CREDIT(8);
6025
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03006026 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006027 /* CHV suggested value is 31 or 63 */
6028 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjäläfcc00082015-05-26 20:22:40 +03006029 credits = PFI_CREDIT_63;
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006030 else
6031 credits = PFI_CREDIT(15);
6032 } else {
6033 credits = default_credits;
6034 }
6035
6036 /*
6037 * WA - write default credits before re-programming
6038 * FIXME: should we also set the resend bit here?
6039 */
6040 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6041 default_credits);
6042
6043 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6044 credits | PFI_CREDIT_RESEND);
6045
6046 /*
6047 * FIXME is this guaranteed to clear
6048 * immediately or should we poll for it?
6049 */
6050 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6051}
6052
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006053static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006054{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03006055 struct drm_device *dev = old_state->dev;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006056 unsigned int req_cdclk = to_intel_atomic_state(old_state)->cdclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006057 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006058
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006059 /*
6060 * FIXME: We can end up here with all power domains off, yet
6061 * with a CDCLK frequency other than the minimum. To account
6062 * for this take the PIPE-A power domain, which covers the HW
6063 * blocks needed for the following programming. This can be
6064 * removed once it's guaranteed that we get here either with
6065 * the minimum CDCLK set, or the required power domains
6066 * enabled.
6067 */
6068 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006069
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006070 if (IS_CHERRYVIEW(dev))
6071 cherryview_set_cdclk(dev, req_cdclk);
6072 else
6073 valleyview_set_cdclk(dev, req_cdclk);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006074
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006075 vlv_program_pfi_credits(dev_priv);
Imre Deak738c05c2014-11-19 16:25:37 +02006076
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006077 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006078}
6079
Jesse Barnes89b667f2013-04-18 14:51:36 -07006080static void valleyview_crtc_enable(struct drm_crtc *crtc)
6081{
6082 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006083 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006084 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6085 struct intel_encoder *encoder;
6086 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03006087 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006088
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006089 if (WARN_ON(intel_crtc->active))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006090 return;
6091
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006092 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Shobhit Kumar8525a232014-06-25 12:20:39 +05306093
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006094 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05306095 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006096
6097 intel_set_pipe_timings(intel_crtc);
6098
Ville Syrjäläc14b0482014-10-16 20:52:34 +03006099 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
6100 struct drm_i915_private *dev_priv = dev->dev_private;
6101
6102 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6103 I915_WRITE(CHV_CANVAS(pipe), 0);
6104 }
6105
Daniel Vetter5b18e572014-04-24 23:55:06 +02006106 i9xx_set_pipeconf(intel_crtc);
6107
Jesse Barnes89b667f2013-04-18 14:51:36 -07006108 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006109
Daniel Vettera72e4c92014-09-30 10:56:47 +02006110 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006111
Jesse Barnes89b667f2013-04-18 14:51:36 -07006112 for_each_encoder_on_crtc(dev, crtc, encoder)
6113 if (encoder->pre_pll_enable)
6114 encoder->pre_pll_enable(encoder);
6115
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006116 if (!is_dsi) {
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006117 if (IS_CHERRYVIEW(dev)) {
6118 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006119 chv_enable_pll(intel_crtc, intel_crtc->config);
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006120 } else {
6121 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006122 vlv_enable_pll(intel_crtc, intel_crtc->config);
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006123 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006124 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07006125
6126 for_each_encoder_on_crtc(dev, crtc, encoder)
6127 if (encoder->pre_enable)
6128 encoder->pre_enable(encoder);
6129
Jesse Barnes2dd24552013-04-25 12:55:01 -07006130 i9xx_pfit_enable(intel_crtc);
6131
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006132 intel_crtc_load_lut(crtc);
6133
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006134 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006135
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006136 assert_vblank_disabled(crtc);
6137 drm_crtc_vblank_on(crtc);
6138
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006139 for_each_encoder_on_crtc(dev, crtc, encoder)
6140 encoder->enable(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006141}
6142
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006143static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6144{
6145 struct drm_device *dev = crtc->base.dev;
6146 struct drm_i915_private *dev_priv = dev->dev_private;
6147
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006148 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6149 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006150}
6151
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006152static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08006153{
6154 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006155 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006156 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006157 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006158 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08006159
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006160 if (WARN_ON(intel_crtc->active))
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006161 return;
6162
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006163 i9xx_set_pll_dividers(intel_crtc);
6164
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006165 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05306166 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006167
6168 intel_set_pipe_timings(intel_crtc);
6169
Daniel Vetter5b18e572014-04-24 23:55:06 +02006170 i9xx_set_pipeconf(intel_crtc);
6171
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006172 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01006173
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006174 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006175 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006176
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02006177 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02006178 if (encoder->pre_enable)
6179 encoder->pre_enable(encoder);
6180
Daniel Vetterf6736a12013-06-05 13:34:30 +02006181 i9xx_enable_pll(intel_crtc);
6182
Jesse Barnes2dd24552013-04-25 12:55:01 -07006183 i9xx_pfit_enable(intel_crtc);
6184
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006185 intel_crtc_load_lut(crtc);
6186
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03006187 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006188 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006189
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006190 assert_vblank_disabled(crtc);
6191 drm_crtc_vblank_on(crtc);
6192
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006193 for_each_encoder_on_crtc(dev, crtc, encoder)
6194 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006195}
6196
Daniel Vetter87476d62013-04-11 16:29:06 +02006197static void i9xx_pfit_disable(struct intel_crtc *crtc)
6198{
6199 struct drm_device *dev = crtc->base.dev;
6200 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02006201
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006202 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02006203 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02006204
6205 assert_pipe_disabled(dev_priv, crtc->pipe);
6206
Daniel Vetter328d8e82013-05-08 10:36:31 +02006207 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6208 I915_READ(PFIT_CONTROL));
6209 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02006210}
6211
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006212static void i9xx_crtc_disable(struct drm_crtc *crtc)
6213{
6214 struct drm_device *dev = crtc->dev;
6215 struct drm_i915_private *dev_priv = dev->dev_private;
6216 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006217 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006218 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006219
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006220 /*
6221 * On gen2 planes are double buffered but the pipe isn't, so we must
6222 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03006223 * We also need to wait on all gmch platforms because of the
6224 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006225 */
Imre Deak564ed192014-06-13 14:54:21 +03006226 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006227
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006228 for_each_encoder_on_crtc(dev, crtc, encoder)
6229 encoder->disable(encoder);
6230
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006231 drm_crtc_vblank_off(crtc);
6232 assert_vblank_disabled(crtc);
6233
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03006234 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006235
Daniel Vetter87476d62013-04-11 16:29:06 +02006236 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006237
Jesse Barnes89b667f2013-04-18 14:51:36 -07006238 for_each_encoder_on_crtc(dev, crtc, encoder)
6239 if (encoder->post_disable)
6240 encoder->post_disable(encoder);
6241
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006242 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006243 if (IS_CHERRYVIEW(dev))
6244 chv_disable_pll(dev_priv, pipe);
6245 else if (IS_VALLEYVIEW(dev))
6246 vlv_disable_pll(dev_priv, pipe);
6247 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006248 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006249 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006250
Ville Syrjäläd6db9952015-07-08 23:45:49 +03006251 for_each_encoder_on_crtc(dev, crtc, encoder)
6252 if (encoder->post_pll_disable)
6253 encoder->post_pll_disable(encoder);
6254
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006255 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006256 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Patrik Jakobssone4ca0612015-07-08 15:31:52 +02006257
6258 intel_crtc->active = false;
6259 intel_update_watermarks(crtc);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006260}
6261
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006262static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006263{
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006264 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006265 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006266 enum intel_display_power_domain domain;
6267 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02006268
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006269 if (!intel_crtc->active)
6270 return;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006271
Maarten Lankhorsta5392052015-06-15 12:33:52 +02006272 if (to_intel_plane_state(crtc->primary->state)->visible) {
6273 intel_crtc_wait_for_pending_flips(crtc);
6274 intel_pre_disable_primary(crtc);
6275 }
6276
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02006277 intel_crtc_disable_planes(crtc, crtc->state->plane_mask);
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006278 dev_priv->display.crtc_disable(crtc);
Maarten Lankhorst1f7457b2015-07-13 11:55:05 +02006279 intel_disable_shared_dpll(intel_crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006280
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006281 domains = intel_crtc->enabled_power_domains;
6282 for_each_power_domain(domain, domains)
6283 intel_display_power_put(dev_priv, domain);
6284 intel_crtc->enabled_power_domains = 0;
6285}
6286
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006287/*
6288 * turn all crtc's off, but do not adjust state
6289 * This has to be paired with a call to intel_modeset_setup_hw_state.
6290 */
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006291int intel_display_suspend(struct drm_device *dev)
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006292{
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006293 struct drm_mode_config *config = &dev->mode_config;
6294 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
6295 struct drm_atomic_state *state;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006296 struct drm_crtc *crtc;
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006297 unsigned crtc_mask = 0;
6298 int ret = 0;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006299
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006300 if (WARN_ON(!ctx))
6301 return 0;
6302
6303 lockdep_assert_held(&ctx->ww_ctx);
6304 state = drm_atomic_state_alloc(dev);
6305 if (WARN_ON(!state))
6306 return -ENOMEM;
6307
6308 state->acquire_ctx = ctx;
6309 state->allow_modeset = true;
6310
6311 for_each_crtc(dev, crtc) {
6312 struct drm_crtc_state *crtc_state =
6313 drm_atomic_get_crtc_state(state, crtc);
6314
6315 ret = PTR_ERR_OR_ZERO(crtc_state);
6316 if (ret)
6317 goto free;
6318
6319 if (!crtc_state->active)
6320 continue;
6321
6322 crtc_state->active = false;
6323 crtc_mask |= 1 << drm_crtc_index(crtc);
6324 }
6325
6326 if (crtc_mask) {
Maarten Lankhorst74c090b2015-07-13 16:30:30 +02006327 ret = drm_atomic_commit(state);
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006328
6329 if (!ret) {
6330 for_each_crtc(dev, crtc)
6331 if (crtc_mask & (1 << drm_crtc_index(crtc)))
6332 crtc->state->active = true;
6333
6334 return ret;
6335 }
6336 }
6337
6338free:
6339 if (ret)
6340 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
6341 drm_atomic_state_free(state);
6342 return ret;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006343}
6344
Chris Wilsonea5b2132010-08-04 13:50:23 +01006345void intel_encoder_destroy(struct drm_encoder *encoder)
6346{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006347 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01006348
Chris Wilsonea5b2132010-08-04 13:50:23 +01006349 drm_encoder_cleanup(encoder);
6350 kfree(intel_encoder);
6351}
6352
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006353/* Cross check the actual hw state with our own modeset state tracking (and it's
6354 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02006355static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006356{
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006357 struct drm_crtc *crtc = connector->base.state->crtc;
6358
6359 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6360 connector->base.base.id,
6361 connector->base.name);
6362
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006363 if (connector->get_hw_state(connector)) {
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006364 struct intel_encoder *encoder = connector->encoder;
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006365 struct drm_connector_state *conn_state = connector->base.state;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006366
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006367 I915_STATE_WARN(!crtc,
6368 "connector enabled without attached crtc\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006369
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006370 if (!crtc)
6371 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006372
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006373 I915_STATE_WARN(!crtc->state->active,
6374 "connector is active, but attached crtc isn't\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006375
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006376 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006377 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006378
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006379 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006380 "atomic encoder doesn't match attached encoder\n");
Dave Airlie36cd7442014-05-02 13:44:18 +10006381
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006382 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006383 "attached encoder crtc differs from connector crtc\n");
6384 } else {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02006385 I915_STATE_WARN(crtc && crtc->state->active,
6386 "attached crtc is active, but connector isn't\n");
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006387 I915_STATE_WARN(!crtc && connector->base.state->best_encoder,
6388 "best encoder set without crtc!\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006389 }
6390}
6391
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006392int intel_connector_init(struct intel_connector *connector)
6393{
6394 struct drm_connector_state *connector_state;
6395
6396 connector_state = kzalloc(sizeof *connector_state, GFP_KERNEL);
6397 if (!connector_state)
6398 return -ENOMEM;
6399
6400 connector->base.state = connector_state;
6401 return 0;
6402}
6403
6404struct intel_connector *intel_connector_alloc(void)
6405{
6406 struct intel_connector *connector;
6407
6408 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6409 if (!connector)
6410 return NULL;
6411
6412 if (intel_connector_init(connector) < 0) {
6413 kfree(connector);
6414 return NULL;
6415 }
6416
6417 return connector;
6418}
6419
Daniel Vetterf0947c32012-07-02 13:10:34 +02006420/* Simple connector->get_hw_state implementation for encoders that support only
6421 * one connector and no cloning and hence the encoder state determines the state
6422 * of the connector. */
6423bool intel_connector_get_hw_state(struct intel_connector *connector)
6424{
Daniel Vetter24929352012-07-02 20:28:59 +02006425 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02006426 struct intel_encoder *encoder = connector->encoder;
6427
6428 return encoder->get_hw_state(encoder, &pipe);
6429}
6430
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006431static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006432{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006433 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6434 return crtc_state->fdi_lanes;
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006435
6436 return 0;
6437}
6438
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006439static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006440 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006441{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006442 struct drm_atomic_state *state = pipe_config->base.state;
6443 struct intel_crtc *other_crtc;
6444 struct intel_crtc_state *other_crtc_state;
6445
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006446 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6447 pipe_name(pipe), pipe_config->fdi_lanes);
6448 if (pipe_config->fdi_lanes > 4) {
6449 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6450 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006451 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006452 }
6453
Paulo Zanonibafb6552013-11-02 21:07:44 -07006454 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006455 if (pipe_config->fdi_lanes > 2) {
6456 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6457 pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006458 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006459 } else {
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006460 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006461 }
6462 }
6463
6464 if (INTEL_INFO(dev)->num_pipes == 2)
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006465 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006466
6467 /* Ivybridge 3 pipe is really complicated */
6468 switch (pipe) {
6469 case PIPE_A:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006470 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006471 case PIPE_B:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006472 if (pipe_config->fdi_lanes <= 2)
6473 return 0;
6474
6475 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6476 other_crtc_state =
6477 intel_atomic_get_crtc_state(state, other_crtc);
6478 if (IS_ERR(other_crtc_state))
6479 return PTR_ERR(other_crtc_state);
6480
6481 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006482 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6483 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006484 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006485 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006486 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006487 case PIPE_C:
Ville Syrjälä251cc672015-03-11 18:52:30 +02006488 if (pipe_config->fdi_lanes > 2) {
6489 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6490 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006491 return -EINVAL;
Ville Syrjälä251cc672015-03-11 18:52:30 +02006492 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006493
6494 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6495 other_crtc_state =
6496 intel_atomic_get_crtc_state(state, other_crtc);
6497 if (IS_ERR(other_crtc_state))
6498 return PTR_ERR(other_crtc_state);
6499
6500 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006501 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006502 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006503 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006504 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006505 default:
6506 BUG();
6507 }
6508}
6509
Daniel Vettere29c22c2013-02-21 00:00:16 +01006510#define RETRY 1
6511static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006512 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02006513{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006514 struct drm_device *dev = intel_crtc->base.dev;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03006515 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006516 int lane, link_bw, fdi_dotclock, ret;
6517 bool needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006518
Daniel Vettere29c22c2013-02-21 00:00:16 +01006519retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02006520 /* FDI is a binary signal running at ~2.7GHz, encoding
6521 * each output octet as 10 bits. The actual frequency
6522 * is stored as a divider into a 100MHz clock, and the
6523 * mode pixel clock is stored in units of 1KHz.
6524 * Hence the bw of each lane in terms of the mode signal
6525 * is:
6526 */
6527 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
6528
Damien Lespiau241bfc32013-09-25 16:45:37 +01006529 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006530
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006531 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006532 pipe_config->pipe_bpp);
6533
6534 pipe_config->fdi_lanes = lane;
6535
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006536 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006537 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006538
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006539 ret = ironlake_check_fdi_lanes(intel_crtc->base.dev,
6540 intel_crtc->pipe, pipe_config);
6541 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01006542 pipe_config->pipe_bpp -= 2*3;
6543 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6544 pipe_config->pipe_bpp);
6545 needs_recompute = true;
6546 pipe_config->bw_constrained = true;
6547
6548 goto retry;
6549 }
6550
6551 if (needs_recompute)
6552 return RETRY;
6553
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006554 return ret;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006555}
6556
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006557static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
6558 struct intel_crtc_state *pipe_config)
6559{
6560 if (pipe_config->pipe_bpp > 24)
6561 return false;
6562
6563 /* HSW can handle pixel rate up to cdclk? */
6564 if (IS_HASWELL(dev_priv->dev))
6565 return true;
6566
6567 /*
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03006568 * We compare against max which means we must take
6569 * the increased cdclk requirement into account when
6570 * calculating the new cdclk.
6571 *
6572 * Should measure whether using a lower cdclk w/o IPS
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006573 */
6574 return ilk_pipe_pixel_rate(pipe_config) <=
6575 dev_priv->max_cdclk_freq * 95 / 100;
6576}
6577
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006578static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006579 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006580{
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006581 struct drm_device *dev = crtc->base.dev;
6582 struct drm_i915_private *dev_priv = dev->dev_private;
6583
Jani Nikulad330a952014-01-21 11:24:25 +02006584 pipe_config->ips_enabled = i915.enable_ips &&
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006585 hsw_crtc_supports_ips(crtc) &&
6586 pipe_config_supports_ips(dev_priv, pipe_config);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006587}
6588
Daniel Vettera43f6e02013-06-07 23:10:32 +02006589static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006590 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08006591{
Daniel Vettera43f6e02013-06-07 23:10:32 +02006592 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02006593 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03006594 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01006595
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006596 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006597 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä44913152015-06-03 15:45:10 +03006598 int clock_limit = dev_priv->max_cdclk_freq;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006599
6600 /*
6601 * Enable pixel doubling when the dot clock
6602 * is > 90% of the (display) core speed.
6603 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03006604 * GDG double wide on either pipe,
6605 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006606 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03006607 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01006608 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006609 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006610 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006611 }
6612
Damien Lespiau241bfc32013-09-25 16:45:37 +01006613 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006614 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006615 }
Chris Wilson89749352010-09-12 18:25:19 +01006616
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006617 /*
6618 * Pipe horizontal size must be even in:
6619 * - DVO ganged mode
6620 * - LVDS dual channel mode
6621 * - Double wide pipe
6622 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006623 if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006624 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6625 pipe_config->pipe_src_w &= ~1;
6626
Damien Lespiau8693a822013-05-03 18:48:11 +01006627 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6628 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03006629 */
6630 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
Ville Syrjäläaad941d2015-09-25 16:38:56 +03006631 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006632 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03006633
Damien Lespiauf5adf942013-06-24 18:29:34 +01006634 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02006635 hsw_compute_ips_config(crtc, pipe_config);
6636
Daniel Vetter877d48d2013-04-19 11:24:43 +02006637 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02006638 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02006639
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +02006640 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006641}
6642
Ville Syrjälä1652d192015-03-31 14:12:01 +03006643static int skylake_get_display_clock_speed(struct drm_device *dev)
6644{
6645 struct drm_i915_private *dev_priv = to_i915(dev);
6646 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
6647 uint32_t cdctl = I915_READ(CDCLK_CTL);
6648 uint32_t linkrate;
6649
Damien Lespiau414355a2015-06-04 18:21:31 +01006650 if (!(lcpll1 & LCPLL_PLL_ENABLE))
Ville Syrjälä1652d192015-03-31 14:12:01 +03006651 return 24000; /* 24MHz is the cd freq with NSSC ref */
Ville Syrjälä1652d192015-03-31 14:12:01 +03006652
6653 if ((cdctl & CDCLK_FREQ_SEL_MASK) == CDCLK_FREQ_540)
6654 return 540000;
6655
6656 linkrate = (I915_READ(DPLL_CTRL1) &
Damien Lespiau71cd8422015-04-30 16:39:17 +01006657 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) >> 1;
Ville Syrjälä1652d192015-03-31 14:12:01 +03006658
Damien Lespiau71cd8422015-04-30 16:39:17 +01006659 if (linkrate == DPLL_CTRL1_LINK_RATE_2160 ||
6660 linkrate == DPLL_CTRL1_LINK_RATE_1080) {
Ville Syrjälä1652d192015-03-31 14:12:01 +03006661 /* vco 8640 */
6662 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6663 case CDCLK_FREQ_450_432:
6664 return 432000;
6665 case CDCLK_FREQ_337_308:
6666 return 308570;
6667 case CDCLK_FREQ_675_617:
6668 return 617140;
6669 default:
6670 WARN(1, "Unknown cd freq selection\n");
6671 }
6672 } else {
6673 /* vco 8100 */
6674 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6675 case CDCLK_FREQ_450_432:
6676 return 450000;
6677 case CDCLK_FREQ_337_308:
6678 return 337500;
6679 case CDCLK_FREQ_675_617:
6680 return 675000;
6681 default:
6682 WARN(1, "Unknown cd freq selection\n");
6683 }
6684 }
6685
6686 /* error case, do as if DPLL0 isn't enabled */
6687 return 24000;
6688}
6689
Bob Paauweacd3f3d2015-06-23 14:14:26 -07006690static int broxton_get_display_clock_speed(struct drm_device *dev)
6691{
6692 struct drm_i915_private *dev_priv = to_i915(dev);
6693 uint32_t cdctl = I915_READ(CDCLK_CTL);
6694 uint32_t pll_ratio = I915_READ(BXT_DE_PLL_CTL) & BXT_DE_PLL_RATIO_MASK;
6695 uint32_t pll_enab = I915_READ(BXT_DE_PLL_ENABLE);
6696 int cdclk;
6697
6698 if (!(pll_enab & BXT_DE_PLL_PLL_ENABLE))
6699 return 19200;
6700
6701 cdclk = 19200 * pll_ratio / 2;
6702
6703 switch (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) {
6704 case BXT_CDCLK_CD2X_DIV_SEL_1:
6705 return cdclk; /* 576MHz or 624MHz */
6706 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
6707 return cdclk * 2 / 3; /* 384MHz */
6708 case BXT_CDCLK_CD2X_DIV_SEL_2:
6709 return cdclk / 2; /* 288MHz */
6710 case BXT_CDCLK_CD2X_DIV_SEL_4:
6711 return cdclk / 4; /* 144MHz */
6712 }
6713
6714 /* error case, do as if DE PLL isn't enabled */
6715 return 19200;
6716}
6717
Ville Syrjälä1652d192015-03-31 14:12:01 +03006718static int broadwell_get_display_clock_speed(struct drm_device *dev)
6719{
6720 struct drm_i915_private *dev_priv = dev->dev_private;
6721 uint32_t lcpll = I915_READ(LCPLL_CTL);
6722 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6723
6724 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6725 return 800000;
6726 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6727 return 450000;
6728 else if (freq == LCPLL_CLK_FREQ_450)
6729 return 450000;
6730 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6731 return 540000;
6732 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6733 return 337500;
6734 else
6735 return 675000;
6736}
6737
6738static int haswell_get_display_clock_speed(struct drm_device *dev)
6739{
6740 struct drm_i915_private *dev_priv = dev->dev_private;
6741 uint32_t lcpll = I915_READ(LCPLL_CTL);
6742 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6743
6744 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6745 return 800000;
6746 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6747 return 450000;
6748 else if (freq == LCPLL_CLK_FREQ_450)
6749 return 450000;
6750 else if (IS_HSW_ULT(dev))
6751 return 337500;
6752 else
6753 return 540000;
Jesse Barnes79e53942008-11-07 14:24:08 -08006754}
6755
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006756static int valleyview_get_display_clock_speed(struct drm_device *dev)
6757{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03006758 return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk",
6759 CCK_DISPLAY_CLOCK_CONTROL);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006760}
6761
Ville Syrjäläb37a6432015-03-31 14:11:54 +03006762static int ilk_get_display_clock_speed(struct drm_device *dev)
6763{
6764 return 450000;
6765}
6766
Jesse Barnese70236a2009-09-21 10:42:27 -07006767static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08006768{
Jesse Barnese70236a2009-09-21 10:42:27 -07006769 return 400000;
6770}
Jesse Barnes79e53942008-11-07 14:24:08 -08006771
Jesse Barnese70236a2009-09-21 10:42:27 -07006772static int i915_get_display_clock_speed(struct drm_device *dev)
6773{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006774 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006775}
Jesse Barnes79e53942008-11-07 14:24:08 -08006776
Jesse Barnese70236a2009-09-21 10:42:27 -07006777static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6778{
6779 return 200000;
6780}
Jesse Barnes79e53942008-11-07 14:24:08 -08006781
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006782static int pnv_get_display_clock_speed(struct drm_device *dev)
6783{
6784 u16 gcfgc = 0;
6785
6786 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6787
6788 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6789 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006790 return 266667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006791 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006792 return 333333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006793 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006794 return 444444;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006795 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6796 return 200000;
6797 default:
6798 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6799 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006800 return 133333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006801 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006802 return 166667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006803 }
6804}
6805
Jesse Barnese70236a2009-09-21 10:42:27 -07006806static int i915gm_get_display_clock_speed(struct drm_device *dev)
6807{
6808 u16 gcfgc = 0;
6809
6810 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6811
6812 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Ville Syrjäläe907f172015-03-31 14:09:47 +03006813 return 133333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006814 else {
6815 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6816 case GC_DISPLAY_CLOCK_333_MHZ:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006817 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006818 default:
6819 case GC_DISPLAY_CLOCK_190_200_MHZ:
6820 return 190000;
6821 }
6822 }
6823}
Jesse Barnes79e53942008-11-07 14:24:08 -08006824
Jesse Barnese70236a2009-09-21 10:42:27 -07006825static int i865_get_display_clock_speed(struct drm_device *dev)
6826{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006827 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07006828}
6829
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006830static int i85x_get_display_clock_speed(struct drm_device *dev)
Jesse Barnese70236a2009-09-21 10:42:27 -07006831{
6832 u16 hpllcc = 0;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006833
Ville Syrjälä65cd2b32015-05-22 11:22:32 +03006834 /*
6835 * 852GM/852GMV only supports 133 MHz and the HPLLCC
6836 * encoding is different :(
6837 * FIXME is this the right way to detect 852GM/852GMV?
6838 */
6839 if (dev->pdev->revision == 0x1)
6840 return 133333;
6841
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006842 pci_bus_read_config_word(dev->pdev->bus,
6843 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
6844
Jesse Barnese70236a2009-09-21 10:42:27 -07006845 /* Assume that the hardware is in the high speed state. This
6846 * should be the default.
6847 */
6848 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
6849 case GC_CLOCK_133_200:
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006850 case GC_CLOCK_133_200_2:
Jesse Barnese70236a2009-09-21 10:42:27 -07006851 case GC_CLOCK_100_200:
6852 return 200000;
6853 case GC_CLOCK_166_250:
6854 return 250000;
6855 case GC_CLOCK_100_133:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006856 return 133333;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006857 case GC_CLOCK_133_266:
6858 case GC_CLOCK_133_266_2:
6859 case GC_CLOCK_166_266:
6860 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07006861 }
6862
6863 /* Shouldn't happen */
6864 return 0;
6865}
6866
6867static int i830_get_display_clock_speed(struct drm_device *dev)
6868{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006869 return 133333;
Jesse Barnes79e53942008-11-07 14:24:08 -08006870}
6871
Ville Syrjälä34edce22015-05-22 11:22:33 +03006872static unsigned int intel_hpll_vco(struct drm_device *dev)
6873{
6874 struct drm_i915_private *dev_priv = dev->dev_private;
6875 static const unsigned int blb_vco[8] = {
6876 [0] = 3200000,
6877 [1] = 4000000,
6878 [2] = 5333333,
6879 [3] = 4800000,
6880 [4] = 6400000,
6881 };
6882 static const unsigned int pnv_vco[8] = {
6883 [0] = 3200000,
6884 [1] = 4000000,
6885 [2] = 5333333,
6886 [3] = 4800000,
6887 [4] = 2666667,
6888 };
6889 static const unsigned int cl_vco[8] = {
6890 [0] = 3200000,
6891 [1] = 4000000,
6892 [2] = 5333333,
6893 [3] = 6400000,
6894 [4] = 3333333,
6895 [5] = 3566667,
6896 [6] = 4266667,
6897 };
6898 static const unsigned int elk_vco[8] = {
6899 [0] = 3200000,
6900 [1] = 4000000,
6901 [2] = 5333333,
6902 [3] = 4800000,
6903 };
6904 static const unsigned int ctg_vco[8] = {
6905 [0] = 3200000,
6906 [1] = 4000000,
6907 [2] = 5333333,
6908 [3] = 6400000,
6909 [4] = 2666667,
6910 [5] = 4266667,
6911 };
6912 const unsigned int *vco_table;
6913 unsigned int vco;
6914 uint8_t tmp = 0;
6915
6916 /* FIXME other chipsets? */
6917 if (IS_GM45(dev))
6918 vco_table = ctg_vco;
6919 else if (IS_G4X(dev))
6920 vco_table = elk_vco;
6921 else if (IS_CRESTLINE(dev))
6922 vco_table = cl_vco;
6923 else if (IS_PINEVIEW(dev))
6924 vco_table = pnv_vco;
6925 else if (IS_G33(dev))
6926 vco_table = blb_vco;
6927 else
6928 return 0;
6929
6930 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
6931
6932 vco = vco_table[tmp & 0x7];
6933 if (vco == 0)
6934 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
6935 else
6936 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
6937
6938 return vco;
6939}
6940
6941static int gm45_get_display_clock_speed(struct drm_device *dev)
6942{
6943 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6944 uint16_t tmp = 0;
6945
6946 pci_read_config_word(dev->pdev, GCFGC, &tmp);
6947
6948 cdclk_sel = (tmp >> 12) & 0x1;
6949
6950 switch (vco) {
6951 case 2666667:
6952 case 4000000:
6953 case 5333333:
6954 return cdclk_sel ? 333333 : 222222;
6955 case 3200000:
6956 return cdclk_sel ? 320000 : 228571;
6957 default:
6958 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
6959 return 222222;
6960 }
6961}
6962
6963static int i965gm_get_display_clock_speed(struct drm_device *dev)
6964{
6965 static const uint8_t div_3200[] = { 16, 10, 8 };
6966 static const uint8_t div_4000[] = { 20, 12, 10 };
6967 static const uint8_t div_5333[] = { 24, 16, 14 };
6968 const uint8_t *div_table;
6969 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6970 uint16_t tmp = 0;
6971
6972 pci_read_config_word(dev->pdev, GCFGC, &tmp);
6973
6974 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
6975
6976 if (cdclk_sel >= ARRAY_SIZE(div_3200))
6977 goto fail;
6978
6979 switch (vco) {
6980 case 3200000:
6981 div_table = div_3200;
6982 break;
6983 case 4000000:
6984 div_table = div_4000;
6985 break;
6986 case 5333333:
6987 div_table = div_5333;
6988 break;
6989 default:
6990 goto fail;
6991 }
6992
6993 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
6994
Damien Lespiaucaf4e252015-06-04 16:56:18 +01006995fail:
Ville Syrjälä34edce22015-05-22 11:22:33 +03006996 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
6997 return 200000;
6998}
6999
7000static int g33_get_display_clock_speed(struct drm_device *dev)
7001{
7002 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
7003 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
7004 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
7005 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
7006 const uint8_t *div_table;
7007 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7008 uint16_t tmp = 0;
7009
7010 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7011
7012 cdclk_sel = (tmp >> 4) & 0x7;
7013
7014 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7015 goto fail;
7016
7017 switch (vco) {
7018 case 3200000:
7019 div_table = div_3200;
7020 break;
7021 case 4000000:
7022 div_table = div_4000;
7023 break;
7024 case 4800000:
7025 div_table = div_4800;
7026 break;
7027 case 5333333:
7028 div_table = div_5333;
7029 break;
7030 default:
7031 goto fail;
7032 }
7033
7034 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7035
Damien Lespiaucaf4e252015-06-04 16:56:18 +01007036fail:
Ville Syrjälä34edce22015-05-22 11:22:33 +03007037 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7038 return 190476;
7039}
7040
Zhenyu Wang2c072452009-06-05 15:38:42 +08007041static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007042intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007043{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007044 while (*num > DATA_LINK_M_N_MASK ||
7045 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08007046 *num >>= 1;
7047 *den >>= 1;
7048 }
7049}
7050
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007051static void compute_m_n(unsigned int m, unsigned int n,
7052 uint32_t *ret_m, uint32_t *ret_n)
7053{
7054 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7055 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7056 intel_reduce_m_n_ratio(ret_m, ret_n);
7057}
7058
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007059void
7060intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7061 int pixel_clock, int link_clock,
7062 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007063{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007064 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007065
7066 compute_m_n(bits_per_pixel * pixel_clock,
7067 link_clock * nlanes * 8,
7068 &m_n->gmch_m, &m_n->gmch_n);
7069
7070 compute_m_n(pixel_clock, link_clock,
7071 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08007072}
7073
Chris Wilsona7615032011-01-12 17:04:08 +00007074static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7075{
Jani Nikulad330a952014-01-21 11:24:25 +02007076 if (i915.panel_use_ssc >= 0)
7077 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007078 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07007079 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00007080}
7081
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007082static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
7083 int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007084{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007085 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007086 struct drm_i915_private *dev_priv = dev->dev_private;
7087 int refclk;
7088
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007089 WARN_ON(!crtc_state->base.state);
7090
Imre Deak5ab7b0b2015-03-06 03:29:25 +02007091 if (IS_VALLEYVIEW(dev) || IS_BROXTON(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02007092 refclk = 100000;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007093 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007094 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007095 refclk = dev_priv->vbt.lvds_ssc_freq;
7096 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007097 } else if (!IS_GEN2(dev)) {
7098 refclk = 96000;
7099 } else {
7100 refclk = 48000;
7101 }
7102
7103 return refclk;
7104}
7105
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007106static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007107{
Daniel Vetter7df00d72013-05-21 21:54:55 +02007108 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007109}
Daniel Vetterf47709a2013-03-28 10:42:02 +01007110
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007111static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7112{
7113 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007114}
7115
Daniel Vetterf47709a2013-03-28 10:42:02 +01007116static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007117 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08007118 intel_clock_t *reduced_clock)
7119{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007120 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007121 u32 fp, fp2 = 0;
7122
7123 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007124 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007125 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007126 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007127 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007128 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007129 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007130 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007131 }
7132
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007133 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007134
Daniel Vetterf47709a2013-03-28 10:42:02 +01007135 crtc->lowfreq_avail = false;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007136 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Rodrigo Viviab585de2015-03-24 12:40:09 -07007137 reduced_clock) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007138 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007139 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007140 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007141 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007142 }
7143}
7144
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007145static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7146 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07007147{
7148 u32 reg_val;
7149
7150 /*
7151 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7152 * and set it to a reasonable value instead.
7153 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007154 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007155 reg_val &= 0xffffff00;
7156 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007157 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007158
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007159 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007160 reg_val &= 0x8cffffff;
7161 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007162 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007163
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007164 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007165 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007166 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007167
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007168 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007169 reg_val &= 0x00ffffff;
7170 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007171 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007172}
7173
Daniel Vetterb5518422013-05-03 11:49:48 +02007174static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7175 struct intel_link_m_n *m_n)
7176{
7177 struct drm_device *dev = crtc->base.dev;
7178 struct drm_i915_private *dev_priv = dev->dev_private;
7179 int pipe = crtc->pipe;
7180
Daniel Vettere3b95f12013-05-03 11:49:49 +02007181 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7182 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7183 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7184 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007185}
7186
7187static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07007188 struct intel_link_m_n *m_n,
7189 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02007190{
7191 struct drm_device *dev = crtc->base.dev;
7192 struct drm_i915_private *dev_priv = dev->dev_private;
7193 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007194 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02007195
7196 if (INTEL_INFO(dev)->gen >= 5) {
7197 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7198 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7199 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7200 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07007201 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7202 * for gen < 8) and if DRRS is supported (to make sure the
7203 * registers are not unnecessarily accessed).
7204 */
Durgadoss R44395bf2015-02-13 15:33:02 +05307205 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007206 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07007207 I915_WRITE(PIPE_DATA_M2(transcoder),
7208 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7209 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7210 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7211 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7212 }
Daniel Vetterb5518422013-05-03 11:49:48 +02007213 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02007214 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7215 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7216 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7217 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007218 }
7219}
7220
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307221void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007222{
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307223 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7224
7225 if (m_n == M1_N1) {
7226 dp_m_n = &crtc->config->dp_m_n;
7227 dp_m2_n2 = &crtc->config->dp_m2_n2;
7228 } else if (m_n == M2_N2) {
7229
7230 /*
7231 * M2_N2 registers are not supported. Hence m2_n2 divider value
7232 * needs to be programmed into M1_N1.
7233 */
7234 dp_m_n = &crtc->config->dp_m2_n2;
7235 } else {
7236 DRM_ERROR("Unsupported divider value\n");
7237 return;
7238 }
7239
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007240 if (crtc->config->has_pch_encoder)
7241 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007242 else
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307243 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007244}
7245
Daniel Vetter251ac862015-06-18 10:30:24 +02007246static void vlv_compute_dpll(struct intel_crtc *crtc,
7247 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007248{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007249 u32 dpll, dpll_md;
7250
7251 /*
7252 * Enable DPIO clock input. We should never disable the reference
7253 * clock for pipe B, since VGA hotplug / manual detection depends
7254 * on it.
7255 */
Ville Syrjälä60bfe442015-06-29 15:25:49 +03007256 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REF_CLK_ENABLE_VLV |
7257 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_REF_CLK_VLV;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007258 /* We should never disable this, set it here for state tracking */
7259 if (crtc->pipe == PIPE_B)
7260 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7261 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02007262 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007263
Ville Syrjäläd288f652014-10-28 13:20:22 +02007264 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007265 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02007266 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007267}
7268
Ville Syrjäläd288f652014-10-28 13:20:22 +02007269static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007270 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007271{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007272 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007273 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007274 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007275 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007276 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007277 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007278
Ville Syrjäläa5805162015-05-26 20:42:30 +03007279 mutex_lock(&dev_priv->sb_lock);
Daniel Vetter09153002012-12-12 14:06:44 +01007280
Ville Syrjäläd288f652014-10-28 13:20:22 +02007281 bestn = pipe_config->dpll.n;
7282 bestm1 = pipe_config->dpll.m1;
7283 bestm2 = pipe_config->dpll.m2;
7284 bestp1 = pipe_config->dpll.p1;
7285 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007286
Jesse Barnes89b667f2013-04-18 14:51:36 -07007287 /* See eDP HDMI DPIO driver vbios notes doc */
7288
7289 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007290 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007291 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007292
7293 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007294 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007295
7296 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007297 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007298 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007299 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007300
7301 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007302 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007303
7304 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007305 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7306 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7307 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007308 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07007309
7310 /*
7311 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7312 * but we don't support that).
7313 * Note: don't use the DAC post divider as it seems unstable.
7314 */
7315 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007316 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007317
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007318 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007319 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007320
Jesse Barnes89b667f2013-04-18 14:51:36 -07007321 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02007322 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007323 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
7324 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007325 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b01202013-07-05 19:21:38 +03007326 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007327 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007328 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007329 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007330
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02007331 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07007332 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007333 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007334 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007335 0x0df40000);
7336 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007337 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007338 0x0df70000);
7339 } else { /* HDMI or VGA */
7340 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007341 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007342 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007343 0x0df70000);
7344 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007345 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007346 0x0df40000);
7347 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007348
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007349 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007350 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007351 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
7352 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07007353 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007354 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007355
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007356 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007357 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007358}
7359
Daniel Vetter251ac862015-06-18 10:30:24 +02007360static void chv_compute_dpll(struct intel_crtc *crtc,
7361 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007362{
Ville Syrjälä60bfe442015-06-29 15:25:49 +03007363 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
7364 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007365 DPLL_VCO_ENABLE;
7366 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02007367 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007368
Ville Syrjäläd288f652014-10-28 13:20:22 +02007369 pipe_config->dpll_hw_state.dpll_md =
7370 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007371}
7372
Ville Syrjäläd288f652014-10-28 13:20:22 +02007373static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007374 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007375{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007376 struct drm_device *dev = crtc->base.dev;
7377 struct drm_i915_private *dev_priv = dev->dev_private;
7378 int pipe = crtc->pipe;
7379 int dpll_reg = DPLL(crtc->pipe);
7380 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307381 u32 loopfilter, tribuf_calcntr;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007382 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307383 u32 dpio_val;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307384 int vco;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007385
Ville Syrjäläd288f652014-10-28 13:20:22 +02007386 bestn = pipe_config->dpll.n;
7387 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7388 bestm1 = pipe_config->dpll.m1;
7389 bestm2 = pipe_config->dpll.m2 >> 22;
7390 bestp1 = pipe_config->dpll.p1;
7391 bestp2 = pipe_config->dpll.p2;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307392 vco = pipe_config->dpll.vco;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307393 dpio_val = 0;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307394 loopfilter = 0;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007395
7396 /*
7397 * Enable Refclk and SSC
7398 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007399 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007400 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007401
Ville Syrjäläa5805162015-05-26 20:42:30 +03007402 mutex_lock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007403
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007404 /* p1 and p2 divider */
7405 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7406 5 << DPIO_CHV_S1_DIV_SHIFT |
7407 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7408 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7409 1 << DPIO_CHV_K_DIV_SHIFT);
7410
7411 /* Feedback post-divider - m2 */
7412 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7413
7414 /* Feedback refclk divider - n and m1 */
7415 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7416 DPIO_CHV_M1_DIV_BY_2 |
7417 1 << DPIO_CHV_N_DIV_SHIFT);
7418
7419 /* M2 fraction division */
Ville Syrjälä25a25df2015-07-08 23:45:47 +03007420 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007421
7422 /* M2 fraction division enable */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307423 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7424 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7425 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7426 if (bestm2_frac)
7427 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7428 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007429
Vijay Purushothamande3a0fd2015-03-05 19:32:06 +05307430 /* Program digital lock detect threshold */
7431 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7432 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7433 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7434 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7435 if (!bestm2_frac)
7436 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7437 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7438
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007439 /* Loop filter */
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307440 if (vco == 5400000) {
7441 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7442 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7443 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7444 tribuf_calcntr = 0x9;
7445 } else if (vco <= 6200000) {
7446 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7447 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7448 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7449 tribuf_calcntr = 0x9;
7450 } else if (vco <= 6480000) {
7451 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7452 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7453 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7454 tribuf_calcntr = 0x8;
7455 } else {
7456 /* Not supported. Apply the same limits as in the max case */
7457 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7458 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7459 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7460 tribuf_calcntr = 0;
7461 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007462 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7463
Ville Syrjälä968040b2015-03-11 22:52:08 +02007464 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307465 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7466 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7467 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7468
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007469 /* AFC Recal */
7470 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7471 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7472 DPIO_AFC_RECAL);
7473
Ville Syrjäläa5805162015-05-26 20:42:30 +03007474 mutex_unlock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007475}
7476
Ville Syrjäläd288f652014-10-28 13:20:22 +02007477/**
7478 * vlv_force_pll_on - forcibly enable just the PLL
7479 * @dev_priv: i915 private structure
7480 * @pipe: pipe PLL to enable
7481 * @dpll: PLL configuration
7482 *
7483 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7484 * in cases where we need the PLL enabled even when @pipe is not going to
7485 * be enabled.
7486 */
7487void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7488 const struct dpll *dpll)
7489{
7490 struct intel_crtc *crtc =
7491 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007492 struct intel_crtc_state pipe_config = {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007493 .base.crtc = &crtc->base,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007494 .pixel_multiplier = 1,
7495 .dpll = *dpll,
7496 };
7497
7498 if (IS_CHERRYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02007499 chv_compute_dpll(crtc, &pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +02007500 chv_prepare_pll(crtc, &pipe_config);
7501 chv_enable_pll(crtc, &pipe_config);
7502 } else {
Daniel Vetter251ac862015-06-18 10:30:24 +02007503 vlv_compute_dpll(crtc, &pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +02007504 vlv_prepare_pll(crtc, &pipe_config);
7505 vlv_enable_pll(crtc, &pipe_config);
7506 }
7507}
7508
7509/**
7510 * vlv_force_pll_off - forcibly disable just the PLL
7511 * @dev_priv: i915 private structure
7512 * @pipe: pipe PLL to disable
7513 *
7514 * Disable the PLL for @pipe. To be used in cases where we need
7515 * the PLL enabled even when @pipe is not going to be enabled.
7516 */
7517void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7518{
7519 if (IS_CHERRYVIEW(dev))
7520 chv_disable_pll(to_i915(dev), pipe);
7521 else
7522 vlv_disable_pll(to_i915(dev), pipe);
7523}
7524
Daniel Vetter251ac862015-06-18 10:30:24 +02007525static void i9xx_compute_dpll(struct intel_crtc *crtc,
7526 struct intel_crtc_state *crtc_state,
7527 intel_clock_t *reduced_clock,
7528 int num_connectors)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007529{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007530 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007531 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007532 u32 dpll;
7533 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007534 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007535
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007536 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307537
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007538 is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7539 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007540
7541 dpll = DPLL_VGA_MODE_DIS;
7542
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007543 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007544 dpll |= DPLLB_MODE_LVDS;
7545 else
7546 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007547
Daniel Vetteref1b4602013-06-01 17:17:04 +02007548 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007549 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02007550 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007551 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02007552
7553 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007554 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007555
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007556 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007557 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007558
7559 /* compute bitmask from p1 value */
7560 if (IS_PINEVIEW(dev))
7561 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7562 else {
7563 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7564 if (IS_G4X(dev) && reduced_clock)
7565 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7566 }
7567 switch (clock->p2) {
7568 case 5:
7569 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7570 break;
7571 case 7:
7572 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7573 break;
7574 case 10:
7575 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7576 break;
7577 case 14:
7578 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7579 break;
7580 }
7581 if (INTEL_INFO(dev)->gen >= 4)
7582 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7583
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007584 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007585 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007586 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007587 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7588 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7589 else
7590 dpll |= PLL_REF_INPUT_DREFCLK;
7591
7592 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007593 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007594
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007595 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007596 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007597 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007598 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007599 }
7600}
7601
Daniel Vetter251ac862015-06-18 10:30:24 +02007602static void i8xx_compute_dpll(struct intel_crtc *crtc,
7603 struct intel_crtc_state *crtc_state,
7604 intel_clock_t *reduced_clock,
7605 int num_connectors)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007606{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007607 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007608 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007609 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007610 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007611
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007612 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307613
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007614 dpll = DPLL_VGA_MODE_DIS;
7615
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007616 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007617 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7618 } else {
7619 if (clock->p1 == 2)
7620 dpll |= PLL_P1_DIVIDE_BY_TWO;
7621 else
7622 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7623 if (clock->p2 == 4)
7624 dpll |= PLL_P2_DIVIDE_BY_4;
7625 }
7626
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007627 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02007628 dpll |= DPLL_DVO_2X_MODE;
7629
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007630 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007631 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7632 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7633 else
7634 dpll |= PLL_REF_INPUT_DREFCLK;
7635
7636 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007637 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007638}
7639
Daniel Vetter8a654f32013-06-01 17:16:22 +02007640static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007641{
7642 struct drm_device *dev = intel_crtc->base.dev;
7643 struct drm_i915_private *dev_priv = dev->dev_private;
7644 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007645 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03007646 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007647 uint32_t crtc_vtotal, crtc_vblank_end;
7648 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007649
7650 /* We need to be careful not to changed the adjusted mode, for otherwise
7651 * the hw state checker will get angry at the mismatch. */
7652 crtc_vtotal = adjusted_mode->crtc_vtotal;
7653 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007654
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007655 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007656 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007657 crtc_vtotal -= 1;
7658 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007659
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007660 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007661 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7662 else
7663 vsyncshift = adjusted_mode->crtc_hsync_start -
7664 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007665 if (vsyncshift < 0)
7666 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007667 }
7668
7669 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007670 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007671
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007672 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007673 (adjusted_mode->crtc_hdisplay - 1) |
7674 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007675 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007676 (adjusted_mode->crtc_hblank_start - 1) |
7677 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007678 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007679 (adjusted_mode->crtc_hsync_start - 1) |
7680 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7681
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007682 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007683 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007684 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007685 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007686 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007687 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007688 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007689 (adjusted_mode->crtc_vsync_start - 1) |
7690 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7691
Paulo Zanonib5e508d2012-10-24 11:34:43 -02007692 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7693 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7694 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7695 * bits. */
7696 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7697 (pipe == PIPE_B || pipe == PIPE_C))
7698 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7699
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007700 /* pipesrc controls the size that is scaled from, which should
7701 * always be the user's requested size.
7702 */
7703 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007704 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7705 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007706}
7707
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007708static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007709 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007710{
7711 struct drm_device *dev = crtc->base.dev;
7712 struct drm_i915_private *dev_priv = dev->dev_private;
7713 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7714 uint32_t tmp;
7715
7716 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007717 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7718 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007719 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007720 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7721 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007722 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007723 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7724 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007725
7726 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007727 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7728 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007729 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007730 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7731 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007732 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007733 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7734 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007735
7736 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007737 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7738 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7739 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007740 }
7741
7742 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03007743 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7744 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7745
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007746 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7747 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007748}
7749
Daniel Vetterf6a83282014-02-11 15:28:57 -08007750void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007751 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03007752{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007753 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7754 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7755 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7756 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007757
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007758 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7759 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7760 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7761 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007762
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007763 mode->flags = pipe_config->base.adjusted_mode.flags;
Maarten Lankhorstcd13f5a2015-07-14 14:12:02 +02007764 mode->type = DRM_MODE_TYPE_DRIVER;
Jesse Barnesbabea612013-06-26 18:57:38 +03007765
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007766 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7767 mode->flags |= pipe_config->base.adjusted_mode.flags;
Maarten Lankhorstcd13f5a2015-07-14 14:12:02 +02007768
7769 mode->hsync = drm_mode_hsync(mode);
7770 mode->vrefresh = drm_mode_vrefresh(mode);
7771 drm_mode_set_name(mode);
Jesse Barnesbabea612013-06-26 18:57:38 +03007772}
7773
Daniel Vetter84b046f2013-02-19 18:48:54 +01007774static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7775{
7776 struct drm_device *dev = intel_crtc->base.dev;
7777 struct drm_i915_private *dev_priv = dev->dev_private;
7778 uint32_t pipeconf;
7779
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007780 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007781
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03007782 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7783 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7784 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02007785
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007786 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007787 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007788
Daniel Vetterff9ce462013-04-24 14:57:17 +02007789 /* only g4x and later have fancy bpc/dither controls */
7790 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007791 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007792 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02007793 pipeconf |= PIPECONF_DITHER_EN |
7794 PIPECONF_DITHER_TYPE_SP;
7795
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007796 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007797 case 18:
7798 pipeconf |= PIPECONF_6BPC;
7799 break;
7800 case 24:
7801 pipeconf |= PIPECONF_8BPC;
7802 break;
7803 case 30:
7804 pipeconf |= PIPECONF_10BPC;
7805 break;
7806 default:
7807 /* Case prevented by intel_choose_pipe_bpp_dither. */
7808 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01007809 }
7810 }
7811
7812 if (HAS_PIPE_CXSR(dev)) {
7813 if (intel_crtc->lowfreq_avail) {
7814 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7815 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7816 } else {
7817 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01007818 }
7819 }
7820
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007821 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007822 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007823 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007824 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7825 else
7826 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7827 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01007828 pipeconf |= PIPECONF_PROGRESSIVE;
7829
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007830 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007831 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03007832
Daniel Vetter84b046f2013-02-19 18:48:54 +01007833 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7834 POSTING_READ(PIPECONF(intel_crtc->pipe));
7835}
7836
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007837static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
7838 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007839{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007840 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007841 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07007842 int refclk, num_connectors = 0;
Daniel Vetterc329a4e2015-06-18 10:30:23 +02007843 intel_clock_t clock;
7844 bool ok;
7845 bool is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01007846 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08007847 const intel_limit_t *limit;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007848 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03007849 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007850 struct drm_connector_state *connector_state;
7851 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -08007852
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03007853 memset(&crtc_state->dpll_hw_state, 0,
7854 sizeof(crtc_state->dpll_hw_state));
7855
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03007856 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007857 if (connector_state->crtc != &crtc->base)
7858 continue;
7859
7860 encoder = to_intel_encoder(connector_state->best_encoder);
7861
Chris Wilson5eddb702010-09-11 13:48:45 +01007862 switch (encoder->type) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007863 case INTEL_OUTPUT_DSI:
7864 is_dsi = true;
7865 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007866 default:
7867 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007868 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007869
Eric Anholtc751ce42010-03-25 11:48:48 -07007870 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08007871 }
7872
Jani Nikulaf2335332013-09-13 11:03:09 +03007873 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02007874 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007875
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007876 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007877 refclk = i9xx_get_refclk(crtc_state, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03007878
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007879 /*
7880 * Returns a set of divisors for the desired target clock with
7881 * the given refclk, or FALSE. The returned values represent
7882 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
7883 * 2) / p1 / p2.
7884 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007885 limit = intel_limit(crtc_state, refclk);
7886 ok = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007887 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007888 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03007889 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007890 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7891 return -EINVAL;
7892 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007893
Jani Nikulaf2335332013-09-13 11:03:09 +03007894 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007895 crtc_state->dpll.n = clock.n;
7896 crtc_state->dpll.m1 = clock.m1;
7897 crtc_state->dpll.m2 = clock.m2;
7898 crtc_state->dpll.p1 = clock.p1;
7899 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007900 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007901
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007902 if (IS_GEN2(dev)) {
Daniel Vetterc329a4e2015-06-18 10:30:23 +02007903 i8xx_compute_dpll(crtc, crtc_state, NULL,
Daniel Vetter251ac862015-06-18 10:30:24 +02007904 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007905 } else if (IS_CHERRYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02007906 chv_compute_dpll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007907 } else if (IS_VALLEYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02007908 vlv_compute_dpll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007909 } else {
Daniel Vetterc329a4e2015-06-18 10:30:23 +02007910 i9xx_compute_dpll(crtc, crtc_state, NULL,
Daniel Vetter251ac862015-06-18 10:30:24 +02007911 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007912 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007913
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007914 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07007915}
7916
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007917static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007918 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007919{
7920 struct drm_device *dev = crtc->base.dev;
7921 struct drm_i915_private *dev_priv = dev->dev_private;
7922 uint32_t tmp;
7923
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02007924 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
7925 return;
7926
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007927 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02007928 if (!(tmp & PFIT_ENABLE))
7929 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007930
Daniel Vetter06922822013-07-11 13:35:40 +02007931 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007932 if (INTEL_INFO(dev)->gen < 4) {
7933 if (crtc->pipe != PIPE_B)
7934 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007935 } else {
7936 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
7937 return;
7938 }
7939
Daniel Vetter06922822013-07-11 13:35:40 +02007940 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007941 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
7942 if (INTEL_INFO(dev)->gen < 5)
7943 pipe_config->gmch_pfit.lvds_border_bits =
7944 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
7945}
7946
Jesse Barnesacbec812013-09-20 11:29:32 -07007947static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007948 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07007949{
7950 struct drm_device *dev = crtc->base.dev;
7951 struct drm_i915_private *dev_priv = dev->dev_private;
7952 int pipe = pipe_config->cpu_transcoder;
7953 intel_clock_t clock;
7954 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07007955 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07007956
Shobhit Kumarf573de52014-07-30 20:32:37 +05307957 /* In case of MIPI DPLL will not even be used */
7958 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
7959 return;
7960
Ville Syrjäläa5805162015-05-26 20:42:30 +03007961 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007962 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Ville Syrjäläa5805162015-05-26 20:42:30 +03007963 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesacbec812013-09-20 11:29:32 -07007964
7965 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
7966 clock.m2 = mdiv & DPIO_M2DIV_MASK;
7967 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
7968 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
7969 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
7970
Imre Deakdccbea32015-06-22 23:35:51 +03007971 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07007972}
7973
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007974static void
7975i9xx_get_initial_plane_config(struct intel_crtc *crtc,
7976 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007977{
7978 struct drm_device *dev = crtc->base.dev;
7979 struct drm_i915_private *dev_priv = dev->dev_private;
7980 u32 val, base, offset;
7981 int pipe = crtc->pipe, plane = crtc->plane;
7982 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00007983 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007984 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007985 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007986
Damien Lespiau42a7b082015-02-05 19:35:13 +00007987 val = I915_READ(DSPCNTR(plane));
7988 if (!(val & DISPLAY_PLANE_ENABLE))
7989 return;
7990
Damien Lespiaud9806c92015-01-21 14:07:19 +00007991 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007992 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007993 DRM_DEBUG_KMS("failed to alloc fb\n");
7994 return;
7995 }
7996
Damien Lespiau1b842c82015-01-21 13:50:54 +00007997 fb = &intel_fb->base;
7998
Daniel Vetter18c52472015-02-10 17:16:09 +00007999 if (INTEL_INFO(dev)->gen >= 4) {
8000 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008001 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00008002 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8003 }
8004 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008005
8006 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00008007 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008008 fb->pixel_format = fourcc;
8009 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008010
8011 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008012 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008013 offset = I915_READ(DSPTILEOFF(plane));
8014 else
8015 offset = I915_READ(DSPLINOFF(plane));
8016 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8017 } else {
8018 base = I915_READ(DSPADDR(plane));
8019 }
8020 plane_config->base = base;
8021
8022 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008023 fb->width = ((val >> 16) & 0xfff) + 1;
8024 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008025
8026 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008027 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008028
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008029 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00008030 fb->pixel_format,
8031 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008032
Daniel Vetterf37b5c22015-02-10 23:12:27 +01008033 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008034
Damien Lespiau2844a922015-01-20 12:51:48 +00008035 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8036 pipe_name(pipe), plane, fb->width, fb->height,
8037 fb->bits_per_pixel, base, fb->pitches[0],
8038 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008039
Damien Lespiau2d140302015-02-05 17:22:18 +00008040 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008041}
8042
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008043static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008044 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008045{
8046 struct drm_device *dev = crtc->base.dev;
8047 struct drm_i915_private *dev_priv = dev->dev_private;
8048 int pipe = pipe_config->cpu_transcoder;
8049 enum dpio_channel port = vlv_pipe_to_channel(pipe);
8050 intel_clock_t clock;
Imre Deak0d7b6b12015-07-02 14:29:58 +03008051 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008052 int refclk = 100000;
8053
Ville Syrjäläa5805162015-05-26 20:42:30 +03008054 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008055 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8056 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8057 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8058 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
Imre Deak0d7b6b12015-07-02 14:29:58 +03008059 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
Ville Syrjäläa5805162015-05-26 20:42:30 +03008060 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008061
8062 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
Imre Deak0d7b6b12015-07-02 14:29:58 +03008063 clock.m2 = (pll_dw0 & 0xff) << 22;
8064 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8065 clock.m2 |= pll_dw2 & 0x3fffff;
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008066 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8067 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8068 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8069
Imre Deakdccbea32015-06-22 23:35:51 +03008070 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008071}
8072
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008073static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008074 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008075{
8076 struct drm_device *dev = crtc->base.dev;
8077 struct drm_i915_private *dev_priv = dev->dev_private;
8078 uint32_t tmp;
8079
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008080 if (!intel_display_power_is_enabled(dev_priv,
8081 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02008082 return false;
8083
Daniel Vettere143a212013-07-04 12:01:15 +02008084 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008085 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02008086
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008087 tmp = I915_READ(PIPECONF(crtc->pipe));
8088 if (!(tmp & PIPECONF_ENABLE))
8089 return false;
8090
Ville Syrjälä42571ae2013-09-06 23:29:00 +03008091 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
8092 switch (tmp & PIPECONF_BPC_MASK) {
8093 case PIPECONF_6BPC:
8094 pipe_config->pipe_bpp = 18;
8095 break;
8096 case PIPECONF_8BPC:
8097 pipe_config->pipe_bpp = 24;
8098 break;
8099 case PIPECONF_10BPC:
8100 pipe_config->pipe_bpp = 30;
8101 break;
8102 default:
8103 break;
8104 }
8105 }
8106
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02008107 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
8108 pipe_config->limited_color_range = true;
8109
Ville Syrjälä282740f2013-09-04 18:30:03 +03008110 if (INTEL_INFO(dev)->gen < 4)
8111 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8112
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008113 intel_get_pipe_timings(crtc, pipe_config);
8114
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008115 i9xx_get_pfit_config(crtc, pipe_config);
8116
Daniel Vetter6c49f242013-06-06 12:45:25 +02008117 if (INTEL_INFO(dev)->gen >= 4) {
8118 tmp = I915_READ(DPLL_MD(crtc->pipe));
8119 pipe_config->pixel_multiplier =
8120 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8121 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008122 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02008123 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
8124 tmp = I915_READ(DPLL(crtc->pipe));
8125 pipe_config->pixel_multiplier =
8126 ((tmp & SDVO_MULTIPLIER_MASK)
8127 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8128 } else {
8129 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8130 * port and will be fixed up in the encoder->get_config
8131 * function. */
8132 pipe_config->pixel_multiplier = 1;
8133 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008134 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
8135 if (!IS_VALLEYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03008136 /*
8137 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8138 * on 830. Filter it out here so that we don't
8139 * report errors due to that.
8140 */
8141 if (IS_I830(dev))
8142 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8143
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008144 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8145 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03008146 } else {
8147 /* Mask out read-only status bits. */
8148 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8149 DPLL_PORTC_READY_MASK |
8150 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008151 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008152
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008153 if (IS_CHERRYVIEW(dev))
8154 chv_crtc_clock_get(crtc, pipe_config);
8155 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07008156 vlv_crtc_clock_get(crtc, pipe_config);
8157 else
8158 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03008159
Ville Syrjälä0f646142015-08-26 19:39:18 +03008160 /*
8161 * Normally the dotclock is filled in by the encoder .get_config()
8162 * but in case the pipe is enabled w/o any ports we need a sane
8163 * default.
8164 */
8165 pipe_config->base.adjusted_mode.crtc_clock =
8166 pipe_config->port_clock / pipe_config->pixel_multiplier;
8167
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008168 return true;
8169}
8170
Paulo Zanonidde86e22012-12-01 12:04:25 -02008171static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07008172{
8173 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008174 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008175 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008176 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008177 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008178 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07008179 bool has_ck505 = false;
8180 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008181
8182 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01008183 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07008184 switch (encoder->type) {
8185 case INTEL_OUTPUT_LVDS:
8186 has_panel = true;
8187 has_lvds = true;
8188 break;
8189 case INTEL_OUTPUT_EDP:
8190 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03008191 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07008192 has_cpu_edp = true;
8193 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008194 default:
8195 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008196 }
8197 }
8198
Keith Packard99eb6a02011-09-26 14:29:12 -07008199 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008200 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07008201 can_ssc = has_ck505;
8202 } else {
8203 has_ck505 = false;
8204 can_ssc = true;
8205 }
8206
Imre Deak2de69052013-05-08 13:14:04 +03008207 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
8208 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008209
8210 /* Ironlake: try to setup display ref clock before DPLL
8211 * enabling. This is only under driver's control after
8212 * PCH B stepping, previous chipset stepping should be
8213 * ignoring this setting.
8214 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008215 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008216
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008217 /* As we must carefully and slowly disable/enable each source in turn,
8218 * compute the final state we want first and check if we need to
8219 * make any changes at all.
8220 */
8221 final = val;
8222 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07008223 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008224 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07008225 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008226 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8227
8228 final &= ~DREF_SSC_SOURCE_MASK;
8229 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
8230 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008231
Keith Packard199e5d72011-09-22 12:01:57 -07008232 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008233 final |= DREF_SSC_SOURCE_ENABLE;
8234
8235 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8236 final |= DREF_SSC1_ENABLE;
8237
8238 if (has_cpu_edp) {
8239 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8240 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
8241 else
8242 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
8243 } else
8244 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8245 } else {
8246 final |= DREF_SSC_SOURCE_DISABLE;
8247 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8248 }
8249
8250 if (final == val)
8251 return;
8252
8253 /* Always enable nonspread source */
8254 val &= ~DREF_NONSPREAD_SOURCE_MASK;
8255
8256 if (has_ck505)
8257 val |= DREF_NONSPREAD_CK505_ENABLE;
8258 else
8259 val |= DREF_NONSPREAD_SOURCE_ENABLE;
8260
8261 if (has_panel) {
8262 val &= ~DREF_SSC_SOURCE_MASK;
8263 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008264
Keith Packard199e5d72011-09-22 12:01:57 -07008265 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07008266 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07008267 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008268 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02008269 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008270 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008271
8272 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008273 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008274 POSTING_READ(PCH_DREF_CONTROL);
8275 udelay(200);
8276
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008277 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008278
8279 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07008280 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07008281 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07008282 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008283 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02008284 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008285 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07008286 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008287 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008288
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008289 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008290 POSTING_READ(PCH_DREF_CONTROL);
8291 udelay(200);
8292 } else {
8293 DRM_DEBUG_KMS("Disabling SSC entirely\n");
8294
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008295 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07008296
8297 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008298 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008299
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008300 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008301 POSTING_READ(PCH_DREF_CONTROL);
8302 udelay(200);
8303
8304 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008305 val &= ~DREF_SSC_SOURCE_MASK;
8306 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008307
8308 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008309 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008310
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008311 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008312 POSTING_READ(PCH_DREF_CONTROL);
8313 udelay(200);
8314 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008315
8316 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008317}
8318
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008319static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02008320{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008321 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02008322
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008323 tmp = I915_READ(SOUTH_CHICKEN2);
8324 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
8325 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008326
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008327 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
8328 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
8329 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02008330
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008331 tmp = I915_READ(SOUTH_CHICKEN2);
8332 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
8333 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008334
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008335 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
8336 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
8337 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008338}
8339
8340/* WaMPhyProgramming:hsw */
8341static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
8342{
8343 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02008344
8345 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
8346 tmp &= ~(0xFF << 24);
8347 tmp |= (0x12 << 24);
8348 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
8349
Paulo Zanonidde86e22012-12-01 12:04:25 -02008350 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
8351 tmp |= (1 << 11);
8352 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
8353
8354 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
8355 tmp |= (1 << 11);
8356 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
8357
Paulo Zanonidde86e22012-12-01 12:04:25 -02008358 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
8359 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8360 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
8361
8362 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
8363 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8364 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
8365
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008366 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
8367 tmp &= ~(7 << 13);
8368 tmp |= (5 << 13);
8369 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008370
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008371 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8372 tmp &= ~(7 << 13);
8373 tmp |= (5 << 13);
8374 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008375
8376 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8377 tmp &= ~0xFF;
8378 tmp |= 0x1C;
8379 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8380
8381 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8382 tmp &= ~0xFF;
8383 tmp |= 0x1C;
8384 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8385
8386 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8387 tmp &= ~(0xFF << 16);
8388 tmp |= (0x1C << 16);
8389 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8390
8391 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8392 tmp &= ~(0xFF << 16);
8393 tmp |= (0x1C << 16);
8394 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8395
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008396 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8397 tmp |= (1 << 27);
8398 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008399
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008400 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8401 tmp |= (1 << 27);
8402 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008403
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008404 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
8405 tmp &= ~(0xF << 28);
8406 tmp |= (4 << 28);
8407 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008408
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008409 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8410 tmp &= ~(0xF << 28);
8411 tmp |= (4 << 28);
8412 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008413}
8414
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008415/* Implements 3 different sequences from BSpec chapter "Display iCLK
8416 * Programming" based on the parameters passed:
8417 * - Sequence to enable CLKOUT_DP
8418 * - Sequence to enable CLKOUT_DP without spread
8419 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8420 */
8421static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8422 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008423{
8424 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008425 uint32_t reg, tmp;
8426
8427 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8428 with_spread = true;
Ville Syrjäläc2699522015-08-27 23:55:59 +03008429 if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n"))
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008430 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008431
Ville Syrjäläa5805162015-05-26 20:42:30 +03008432 mutex_lock(&dev_priv->sb_lock);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008433
8434 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8435 tmp &= ~SBI_SSCCTL_DISABLE;
8436 tmp |= SBI_SSCCTL_PATHALT;
8437 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8438
8439 udelay(24);
8440
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008441 if (with_spread) {
8442 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8443 tmp &= ~SBI_SSCCTL_PATHALT;
8444 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008445
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008446 if (with_fdi) {
8447 lpt_reset_fdi_mphy(dev_priv);
8448 lpt_program_fdi_mphy(dev_priv);
8449 }
8450 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02008451
Ville Syrjäläc2699522015-08-27 23:55:59 +03008452 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008453 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8454 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8455 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01008456
Ville Syrjäläa5805162015-05-26 20:42:30 +03008457 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008458}
8459
Paulo Zanoni47701c32013-07-23 11:19:25 -03008460/* Sequence to disable CLKOUT_DP */
8461static void lpt_disable_clkout_dp(struct drm_device *dev)
8462{
8463 struct drm_i915_private *dev_priv = dev->dev_private;
8464 uint32_t reg, tmp;
8465
Ville Syrjäläa5805162015-05-26 20:42:30 +03008466 mutex_lock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008467
Ville Syrjäläc2699522015-08-27 23:55:59 +03008468 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
Paulo Zanoni47701c32013-07-23 11:19:25 -03008469 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8470 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8471 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8472
8473 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8474 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8475 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8476 tmp |= SBI_SSCCTL_PATHALT;
8477 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8478 udelay(32);
8479 }
8480 tmp |= SBI_SSCCTL_DISABLE;
8481 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8482 }
8483
Ville Syrjäläa5805162015-05-26 20:42:30 +03008484 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008485}
8486
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008487static void lpt_init_pch_refclk(struct drm_device *dev)
8488{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008489 struct intel_encoder *encoder;
8490 bool has_vga = false;
8491
Damien Lespiaub2784e12014-08-05 11:29:37 +01008492 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008493 switch (encoder->type) {
8494 case INTEL_OUTPUT_ANALOG:
8495 has_vga = true;
8496 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008497 default:
8498 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008499 }
8500 }
8501
Paulo Zanoni47701c32013-07-23 11:19:25 -03008502 if (has_vga)
8503 lpt_enable_clkout_dp(dev, true, true);
8504 else
8505 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008506}
8507
Paulo Zanonidde86e22012-12-01 12:04:25 -02008508/*
8509 * Initialize reference clocks when the driver loads
8510 */
8511void intel_init_pch_refclk(struct drm_device *dev)
8512{
8513 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8514 ironlake_init_pch_refclk(dev);
8515 else if (HAS_PCH_LPT(dev))
8516 lpt_init_pch_refclk(dev);
8517}
8518
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008519static int ironlake_get_refclk(struct intel_crtc_state *crtc_state)
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008520{
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008521 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008522 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008523 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008524 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008525 struct drm_connector_state *connector_state;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008526 struct intel_encoder *encoder;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008527 int num_connectors = 0, i;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008528 bool is_lvds = false;
8529
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008530 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008531 if (connector_state->crtc != crtc_state->base.crtc)
8532 continue;
8533
8534 encoder = to_intel_encoder(connector_state->best_encoder);
8535
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008536 switch (encoder->type) {
8537 case INTEL_OUTPUT_LVDS:
8538 is_lvds = true;
8539 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008540 default:
8541 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008542 }
8543 num_connectors++;
8544 }
8545
8546 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008547 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008548 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008549 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008550 }
8551
8552 return 120000;
8553}
8554
Daniel Vetter6ff93602013-04-19 11:24:36 +02008555static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03008556{
8557 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
8558 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8559 int pipe = intel_crtc->pipe;
8560 uint32_t val;
8561
Daniel Vetter78114072013-06-13 00:54:57 +02008562 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03008563
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008564 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03008565 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008566 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008567 break;
8568 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008569 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008570 break;
8571 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008572 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008573 break;
8574 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008575 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008576 break;
8577 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03008578 /* Case prevented by intel_choose_pipe_bpp_dither. */
8579 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03008580 }
8581
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008582 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03008583 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8584
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008585 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03008586 val |= PIPECONF_INTERLACED_ILK;
8587 else
8588 val |= PIPECONF_PROGRESSIVE;
8589
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008590 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008591 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008592
Paulo Zanonic8203562012-09-12 10:06:29 -03008593 I915_WRITE(PIPECONF(pipe), val);
8594 POSTING_READ(PIPECONF(pipe));
8595}
8596
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008597/*
8598 * Set up the pipe CSC unit.
8599 *
8600 * Currently only full range RGB to limited range RGB conversion
8601 * is supported, but eventually this should handle various
8602 * RGB<->YCbCr scenarios as well.
8603 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01008604static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008605{
8606 struct drm_device *dev = crtc->dev;
8607 struct drm_i915_private *dev_priv = dev->dev_private;
8608 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8609 int pipe = intel_crtc->pipe;
8610 uint16_t coeff = 0x7800; /* 1.0 */
8611
8612 /*
8613 * TODO: Check what kind of values actually come out of the pipe
8614 * with these coeff/postoff values and adjust to get the best
8615 * accuracy. Perhaps we even need to take the bpc value into
8616 * consideration.
8617 */
8618
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008619 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008620 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
8621
8622 /*
8623 * GY/GU and RY/RU should be the other way around according
8624 * to BSpec, but reality doesn't agree. Just set them up in
8625 * a way that results in the correct picture.
8626 */
8627 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
8628 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
8629
8630 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
8631 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
8632
8633 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
8634 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
8635
8636 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
8637 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
8638 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
8639
8640 if (INTEL_INFO(dev)->gen > 6) {
8641 uint16_t postoff = 0;
8642
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008643 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02008644 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008645
8646 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
8647 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
8648 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
8649
8650 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
8651 } else {
8652 uint32_t mode = CSC_MODE_YUV_TO_RGB;
8653
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008654 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008655 mode |= CSC_BLACK_SCREEN_OFFSET;
8656
8657 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
8658 }
8659}
8660
Daniel Vetter6ff93602013-04-19 11:24:36 +02008661static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008662{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008663 struct drm_device *dev = crtc->dev;
8664 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008665 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008666 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008667 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008668 uint32_t val;
8669
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008670 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008671
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008672 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008673 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8674
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008675 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008676 val |= PIPECONF_INTERLACED_ILK;
8677 else
8678 val |= PIPECONF_PROGRESSIVE;
8679
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008680 I915_WRITE(PIPECONF(cpu_transcoder), val);
8681 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008682
8683 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
8684 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008685
Satheeshakrishna M3cdf122c2014-04-08 15:46:53 +05308686 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008687 val = 0;
8688
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008689 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008690 case 18:
8691 val |= PIPEMISC_DITHER_6_BPC;
8692 break;
8693 case 24:
8694 val |= PIPEMISC_DITHER_8_BPC;
8695 break;
8696 case 30:
8697 val |= PIPEMISC_DITHER_10_BPC;
8698 break;
8699 case 36:
8700 val |= PIPEMISC_DITHER_12_BPC;
8701 break;
8702 default:
8703 /* Case prevented by pipe_config_set_bpp. */
8704 BUG();
8705 }
8706
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008707 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008708 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8709
8710 I915_WRITE(PIPEMISC(pipe), val);
8711 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008712}
8713
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008714static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008715 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008716 intel_clock_t *clock,
8717 bool *has_reduced_clock,
8718 intel_clock_t *reduced_clock)
8719{
8720 struct drm_device *dev = crtc->dev;
8721 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008722 int refclk;
8723 const intel_limit_t *limit;
Daniel Vetterc329a4e2015-06-18 10:30:23 +02008724 bool ret;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008725
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008726 refclk = ironlake_get_refclk(crtc_state);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008727
8728 /*
8729 * Returns a set of divisors for the desired target clock with the given
8730 * refclk, or FALSE. The returned values represent the clock equation:
8731 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
8732 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008733 limit = intel_limit(crtc_state, refclk);
8734 ret = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008735 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02008736 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008737 if (!ret)
8738 return false;
8739
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008740 return true;
8741}
8742
Paulo Zanonid4b19312012-11-29 11:29:32 -02008743int 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;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02008751 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02008752}
8753
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008754static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02008755{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008756 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03008757}
8758
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008759static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008760 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008761 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008762 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008763{
8764 struct drm_crtc *crtc = &intel_crtc->base;
8765 struct drm_device *dev = crtc->dev;
8766 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008767 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008768 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008769 struct drm_connector_state *connector_state;
8770 struct intel_encoder *encoder;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008771 uint32_t dpll;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008772 int factor, num_connectors = 0, i;
Daniel Vetter09ede542013-04-30 14:01:45 +02008773 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008774
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008775 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008776 if (connector_state->crtc != crtc_state->base.crtc)
8777 continue;
8778
8779 encoder = to_intel_encoder(connector_state->best_encoder);
8780
8781 switch (encoder->type) {
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008782 case INTEL_OUTPUT_LVDS:
8783 is_lvds = true;
8784 break;
8785 case INTEL_OUTPUT_SDVO:
8786 case INTEL_OUTPUT_HDMI:
8787 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008788 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008789 default:
8790 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008791 }
8792
8793 num_connectors++;
8794 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008795
Chris Wilsonc1858122010-12-03 21:35:48 +00008796 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07008797 factor = 21;
8798 if (is_lvds) {
8799 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008800 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02008801 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07008802 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008803 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07008804 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00008805
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008806 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02008807 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00008808
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008809 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
8810 *fp2 |= FP_CB_TUNE;
8811
Chris Wilson5eddb702010-09-11 13:48:45 +01008812 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08008813
Eric Anholta07d6782011-03-30 13:01:08 -07008814 if (is_lvds)
8815 dpll |= DPLLB_MODE_LVDS;
8816 else
8817 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02008818
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008819 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02008820 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02008821
8822 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02008823 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008824 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02008825 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08008826
Eric Anholta07d6782011-03-30 13:01:08 -07008827 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008828 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07008829 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008830 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07008831
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008832 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07008833 case 5:
8834 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
8835 break;
8836 case 7:
8837 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
8838 break;
8839 case 10:
8840 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
8841 break;
8842 case 14:
8843 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
8844 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008845 }
8846
Daniel Vetterb4c09f32013-04-30 14:01:42 +02008847 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05008848 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08008849 else
8850 dpll |= PLL_REF_INPUT_DREFCLK;
8851
Daniel Vetter959e16d2013-06-05 13:34:21 +02008852 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008853}
8854
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008855static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
8856 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08008857{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008858 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008859 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008860 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03008861 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01008862 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02008863 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008864
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03008865 memset(&crtc_state->dpll_hw_state, 0,
8866 sizeof(crtc_state->dpll_hw_state));
8867
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03008868 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08008869
Paulo Zanoni5dc52982012-10-05 12:05:56 -03008870 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
8871 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
8872
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008873 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008874 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008875 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008876 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8877 return -EINVAL;
8878 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01008879 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008880 if (!crtc_state->clock_set) {
8881 crtc_state->dpll.n = clock.n;
8882 crtc_state->dpll.m1 = clock.m1;
8883 crtc_state->dpll.m2 = clock.m2;
8884 crtc_state->dpll.p1 = clock.p1;
8885 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01008886 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008887
Paulo Zanoni5dc52982012-10-05 12:05:56 -03008888 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008889 if (crtc_state->has_pch_encoder) {
8890 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008891 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008892 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008893
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008894 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008895 &fp, &reduced_clock,
8896 has_reduced_clock ? &fp2 : NULL);
8897
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008898 crtc_state->dpll_hw_state.dpll = dpll;
8899 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008900 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008901 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008902 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008903 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008904
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008905 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008906 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03008907 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008908 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07008909 return -EINVAL;
8910 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02008911 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008912
Rodrigo Viviab585de2015-03-24 12:40:09 -07008913 if (is_lvds && has_reduced_clock)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008914 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02008915 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008916 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02008917
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008918 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008919}
8920
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008921static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
8922 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02008923{
8924 struct drm_device *dev = crtc->base.dev;
8925 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008926 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02008927
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008928 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
8929 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
8930 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
8931 & ~TU_SIZE_MASK;
8932 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
8933 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
8934 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8935}
8936
8937static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
8938 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008939 struct intel_link_m_n *m_n,
8940 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008941{
8942 struct drm_device *dev = crtc->base.dev;
8943 struct drm_i915_private *dev_priv = dev->dev_private;
8944 enum pipe pipe = crtc->pipe;
8945
8946 if (INTEL_INFO(dev)->gen >= 5) {
8947 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
8948 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
8949 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
8950 & ~TU_SIZE_MASK;
8951 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
8952 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
8953 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008954 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
8955 * gen < 8) and if DRRS is supported (to make sure the
8956 * registers are not unnecessarily read).
8957 */
8958 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008959 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008960 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
8961 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
8962 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
8963 & ~TU_SIZE_MASK;
8964 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
8965 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
8966 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8967 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008968 } else {
8969 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
8970 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
8971 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
8972 & ~TU_SIZE_MASK;
8973 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
8974 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
8975 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8976 }
8977}
8978
8979void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008980 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008981{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02008982 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008983 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
8984 else
8985 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008986 &pipe_config->dp_m_n,
8987 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008988}
8989
Daniel Vetter72419202013-04-04 13:28:53 +02008990static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008991 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02008992{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008993 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008994 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02008995}
8996
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008997static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008998 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008999{
9000 struct drm_device *dev = crtc->base.dev;
9001 struct drm_i915_private *dev_priv = dev->dev_private;
Chandra Kondurua1b22782015-04-07 15:28:45 -07009002 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9003 uint32_t ps_ctrl = 0;
9004 int id = -1;
9005 int i;
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009006
Chandra Kondurua1b22782015-04-07 15:28:45 -07009007 /* find scaler attached to this pipe */
9008 for (i = 0; i < crtc->num_scalers; i++) {
9009 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9010 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9011 id = i;
9012 pipe_config->pch_pfit.enabled = true;
9013 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9014 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9015 break;
9016 }
9017 }
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009018
Chandra Kondurua1b22782015-04-07 15:28:45 -07009019 scaler_state->scaler_id = id;
9020 if (id >= 0) {
9021 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9022 } else {
9023 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009024 }
9025}
9026
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009027static void
9028skylake_get_initial_plane_config(struct intel_crtc *crtc,
9029 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009030{
9031 struct drm_device *dev = crtc->base.dev;
9032 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau40f46282015-02-27 11:15:21 +00009033 u32 val, base, offset, stride_mult, tiling;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009034 int pipe = crtc->pipe;
9035 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009036 unsigned int aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009037 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009038 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009039
Damien Lespiaud9806c92015-01-21 14:07:19 +00009040 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009041 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009042 DRM_DEBUG_KMS("failed to alloc fb\n");
9043 return;
9044 }
9045
Damien Lespiau1b842c82015-01-21 13:50:54 +00009046 fb = &intel_fb->base;
9047
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009048 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00009049 if (!(val & PLANE_CTL_ENABLE))
9050 goto error;
9051
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009052 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9053 fourcc = skl_format_to_fourcc(pixel_format,
9054 val & PLANE_CTL_ORDER_RGBX,
9055 val & PLANE_CTL_ALPHA_MASK);
9056 fb->pixel_format = fourcc;
9057 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9058
Damien Lespiau40f46282015-02-27 11:15:21 +00009059 tiling = val & PLANE_CTL_TILED_MASK;
9060 switch (tiling) {
9061 case PLANE_CTL_TILED_LINEAR:
9062 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9063 break;
9064 case PLANE_CTL_TILED_X:
9065 plane_config->tiling = I915_TILING_X;
9066 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9067 break;
9068 case PLANE_CTL_TILED_Y:
9069 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9070 break;
9071 case PLANE_CTL_TILED_YF:
9072 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9073 break;
9074 default:
9075 MISSING_CASE(tiling);
9076 goto error;
9077 }
9078
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009079 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9080 plane_config->base = base;
9081
9082 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9083
9084 val = I915_READ(PLANE_SIZE(pipe, 0));
9085 fb->height = ((val >> 16) & 0xfff) + 1;
9086 fb->width = ((val >> 0) & 0x1fff) + 1;
9087
9088 val = I915_READ(PLANE_STRIDE(pipe, 0));
Damien Lespiau40f46282015-02-27 11:15:21 +00009089 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
9090 fb->pixel_format);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009091 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9092
9093 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009094 fb->pixel_format,
9095 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009096
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009097 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009098
9099 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9100 pipe_name(pipe), fb->width, fb->height,
9101 fb->bits_per_pixel, base, fb->pitches[0],
9102 plane_config->size);
9103
Damien Lespiau2d140302015-02-05 17:22:18 +00009104 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009105 return;
9106
9107error:
9108 kfree(fb);
9109}
9110
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009111static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009112 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009113{
9114 struct drm_device *dev = crtc->base.dev;
9115 struct drm_i915_private *dev_priv = dev->dev_private;
9116 uint32_t tmp;
9117
9118 tmp = I915_READ(PF_CTL(crtc->pipe));
9119
9120 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009121 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009122 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9123 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02009124
9125 /* We currently do not free assignements of panel fitters on
9126 * ivb/hsw (since we don't use the higher upscaling modes which
9127 * differentiates them) so just WARN about this case for now. */
9128 if (IS_GEN7(dev)) {
9129 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9130 PF_PIPE_SEL_IVB(crtc->pipe));
9131 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009132 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009133}
9134
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009135static void
9136ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9137 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009138{
9139 struct drm_device *dev = crtc->base.dev;
9140 struct drm_i915_private *dev_priv = dev->dev_private;
9141 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009142 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009143 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009144 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009145 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009146 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009147
Damien Lespiau42a7b082015-02-05 19:35:13 +00009148 val = I915_READ(DSPCNTR(pipe));
9149 if (!(val & DISPLAY_PLANE_ENABLE))
9150 return;
9151
Damien Lespiaud9806c92015-01-21 14:07:19 +00009152 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009153 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009154 DRM_DEBUG_KMS("failed to alloc fb\n");
9155 return;
9156 }
9157
Damien Lespiau1b842c82015-01-21 13:50:54 +00009158 fb = &intel_fb->base;
9159
Daniel Vetter18c52472015-02-10 17:16:09 +00009160 if (INTEL_INFO(dev)->gen >= 4) {
9161 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00009162 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00009163 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9164 }
9165 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009166
9167 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00009168 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009169 fb->pixel_format = fourcc;
9170 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009171
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009172 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009173 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009174 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009175 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00009176 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009177 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009178 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009179 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009180 }
9181 plane_config->base = base;
9182
9183 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009184 fb->width = ((val >> 16) & 0xfff) + 1;
9185 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009186
9187 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009188 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009189
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009190 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009191 fb->pixel_format,
9192 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009193
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009194 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009195
Damien Lespiau2844a922015-01-20 12:51:48 +00009196 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9197 pipe_name(pipe), fb->width, fb->height,
9198 fb->bits_per_pixel, base, fb->pitches[0],
9199 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009200
Damien Lespiau2d140302015-02-05 17:22:18 +00009201 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009202}
9203
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009204static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009205 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009206{
9207 struct drm_device *dev = crtc->base.dev;
9208 struct drm_i915_private *dev_priv = dev->dev_private;
9209 uint32_t tmp;
9210
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009211 if (!intel_display_power_is_enabled(dev_priv,
9212 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03009213 return false;
9214
Daniel Vettere143a212013-07-04 12:01:15 +02009215 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009216 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02009217
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009218 tmp = I915_READ(PIPECONF(crtc->pipe));
9219 if (!(tmp & PIPECONF_ENABLE))
9220 return false;
9221
Ville Syrjälä42571ae2013-09-06 23:29:00 +03009222 switch (tmp & PIPECONF_BPC_MASK) {
9223 case PIPECONF_6BPC:
9224 pipe_config->pipe_bpp = 18;
9225 break;
9226 case PIPECONF_8BPC:
9227 pipe_config->pipe_bpp = 24;
9228 break;
9229 case PIPECONF_10BPC:
9230 pipe_config->pipe_bpp = 30;
9231 break;
9232 case PIPECONF_12BPC:
9233 pipe_config->pipe_bpp = 36;
9234 break;
9235 default:
9236 break;
9237 }
9238
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009239 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9240 pipe_config->limited_color_range = true;
9241
Daniel Vetterab9412b2013-05-03 11:49:46 +02009242 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02009243 struct intel_shared_dpll *pll;
9244
Daniel Vetter88adfff2013-03-28 10:42:01 +01009245 pipe_config->has_pch_encoder = true;
9246
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009247 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9248 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9249 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02009250
9251 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009252
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009253 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02009254 pipe_config->shared_dpll =
9255 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009256 } else {
9257 tmp = I915_READ(PCH_DPLL_SEL);
9258 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
9259 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
9260 else
9261 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
9262 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02009263
9264 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9265
9266 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9267 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009268
9269 tmp = pipe_config->dpll_hw_state.dpll;
9270 pipe_config->pixel_multiplier =
9271 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9272 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03009273
9274 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009275 } else {
9276 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009277 }
9278
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009279 intel_get_pipe_timings(crtc, pipe_config);
9280
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009281 ironlake_get_pfit_config(crtc, pipe_config);
9282
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009283 return true;
9284}
9285
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009286static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9287{
9288 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009289 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009290
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009291 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05009292 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009293 pipe_name(crtc->pipe));
9294
Rob Clarke2c719b2014-12-15 13:56:32 -05009295 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
9296 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
9297 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
9298 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
9299 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
9300 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009301 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03009302 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05009303 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03009304 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009305 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009306 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009307 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009308 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009309 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009310
Paulo Zanoni9926ada2014-04-01 19:39:47 -03009311 /*
9312 * In theory we can still leave IRQs enabled, as long as only the HPD
9313 * interrupts remain enabled. We used to check for that, but since it's
9314 * gen-specific and since we only disable LCPLL after we fully disable
9315 * the interrupts, the check below should be enough.
9316 */
Rob Clarke2c719b2014-12-15 13:56:32 -05009317 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009318}
9319
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009320static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
9321{
9322 struct drm_device *dev = dev_priv->dev;
9323
9324 if (IS_HASWELL(dev))
9325 return I915_READ(D_COMP_HSW);
9326 else
9327 return I915_READ(D_COMP_BDW);
9328}
9329
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009330static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
9331{
9332 struct drm_device *dev = dev_priv->dev;
9333
9334 if (IS_HASWELL(dev)) {
9335 mutex_lock(&dev_priv->rps.hw_lock);
9336 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
9337 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03009338 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009339 mutex_unlock(&dev_priv->rps.hw_lock);
9340 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009341 I915_WRITE(D_COMP_BDW, val);
9342 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009343 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009344}
9345
9346/*
9347 * This function implements pieces of two sequences from BSpec:
9348 * - Sequence for display software to disable LCPLL
9349 * - Sequence for display software to allow package C8+
9350 * The steps implemented here are just the steps that actually touch the LCPLL
9351 * register. Callers should take care of disabling all the display engine
9352 * functions, doing the mode unset, fixing interrupts, etc.
9353 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009354static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9355 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009356{
9357 uint32_t val;
9358
9359 assert_can_disable_lcpll(dev_priv);
9360
9361 val = I915_READ(LCPLL_CTL);
9362
9363 if (switch_to_fclk) {
9364 val |= LCPLL_CD_SOURCE_FCLK;
9365 I915_WRITE(LCPLL_CTL, val);
9366
9367 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9368 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9369 DRM_ERROR("Switching to FCLK failed\n");
9370
9371 val = I915_READ(LCPLL_CTL);
9372 }
9373
9374 val |= LCPLL_PLL_DISABLE;
9375 I915_WRITE(LCPLL_CTL, val);
9376 POSTING_READ(LCPLL_CTL);
9377
9378 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
9379 DRM_ERROR("LCPLL still locked\n");
9380
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009381 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009382 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009383 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009384 ndelay(100);
9385
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009386 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9387 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009388 DRM_ERROR("D_COMP RCOMP still in progress\n");
9389
9390 if (allow_power_down) {
9391 val = I915_READ(LCPLL_CTL);
9392 val |= LCPLL_POWER_DOWN_ALLOW;
9393 I915_WRITE(LCPLL_CTL, val);
9394 POSTING_READ(LCPLL_CTL);
9395 }
9396}
9397
9398/*
9399 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9400 * source.
9401 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009402static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009403{
9404 uint32_t val;
9405
9406 val = I915_READ(LCPLL_CTL);
9407
9408 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9409 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9410 return;
9411
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009412 /*
9413 * Make sure we're not on PC8 state before disabling PC8, otherwise
9414 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009415 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02009416 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03009417
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009418 if (val & LCPLL_POWER_DOWN_ALLOW) {
9419 val &= ~LCPLL_POWER_DOWN_ALLOW;
9420 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02009421 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009422 }
9423
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009424 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009425 val |= D_COMP_COMP_FORCE;
9426 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009427 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009428
9429 val = I915_READ(LCPLL_CTL);
9430 val &= ~LCPLL_PLL_DISABLE;
9431 I915_WRITE(LCPLL_CTL, val);
9432
9433 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
9434 DRM_ERROR("LCPLL not locked yet\n");
9435
9436 if (val & LCPLL_CD_SOURCE_FCLK) {
9437 val = I915_READ(LCPLL_CTL);
9438 val &= ~LCPLL_CD_SOURCE_FCLK;
9439 I915_WRITE(LCPLL_CTL, val);
9440
9441 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9442 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9443 DRM_ERROR("Switching back to LCPLL failed\n");
9444 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03009445
Mika Kuoppala59bad942015-01-16 11:34:40 +02009446 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ville Syrjäläb6283052015-06-03 15:45:07 +03009447 intel_update_cdclk(dev_priv->dev);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009448}
9449
Paulo Zanoni765dab672014-03-07 20:08:18 -03009450/*
9451 * Package states C8 and deeper are really deep PC states that can only be
9452 * reached when all the devices on the system allow it, so even if the graphics
9453 * device allows PC8+, it doesn't mean the system will actually get to these
9454 * states. Our driver only allows PC8+ when going into runtime PM.
9455 *
9456 * The requirements for PC8+ are that all the outputs are disabled, the power
9457 * well is disabled and most interrupts are disabled, and these are also
9458 * requirements for runtime PM. When these conditions are met, we manually do
9459 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9460 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9461 * hang the machine.
9462 *
9463 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9464 * the state of some registers, so when we come back from PC8+ we need to
9465 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9466 * need to take care of the registers kept by RC6. Notice that this happens even
9467 * if we don't put the device in PCI D3 state (which is what currently happens
9468 * because of the runtime PM support).
9469 *
9470 * For more, read "Display Sequences for Package C8" on the hardware
9471 * documentation.
9472 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009473void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009474{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009475 struct drm_device *dev = dev_priv->dev;
9476 uint32_t val;
9477
Paulo Zanonic67a4702013-08-19 13:18:09 -03009478 DRM_DEBUG_KMS("Enabling package C8+\n");
9479
Ville Syrjäläc2699522015-08-27 23:55:59 +03009480 if (HAS_PCH_LPT_LP(dev)) {
Paulo Zanonic67a4702013-08-19 13:18:09 -03009481 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9482 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9483 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9484 }
9485
9486 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009487 hsw_disable_lcpll(dev_priv, true, true);
9488}
9489
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009490void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009491{
9492 struct drm_device *dev = dev_priv->dev;
9493 uint32_t val;
9494
Paulo Zanonic67a4702013-08-19 13:18:09 -03009495 DRM_DEBUG_KMS("Disabling package C8+\n");
9496
9497 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009498 lpt_init_pch_refclk(dev);
9499
Ville Syrjäläc2699522015-08-27 23:55:59 +03009500 if (HAS_PCH_LPT_LP(dev)) {
Paulo Zanonic67a4702013-08-19 13:18:09 -03009501 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 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009507}
9508
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009509static void broxton_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309510{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03009511 struct drm_device *dev = old_state->dev;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009512 unsigned int req_cdclk = to_intel_atomic_state(old_state)->cdclk;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309513
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009514 broxton_set_cdclk(dev, req_cdclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309515}
9516
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009517/* compute the max rate for new configuration */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009518static int ilk_max_pixel_rate(struct drm_atomic_state *state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009519{
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009520 struct intel_crtc *intel_crtc;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009521 struct intel_crtc_state *crtc_state;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009522 int max_pixel_rate = 0;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009523
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009524 for_each_intel_crtc(state->dev, intel_crtc) {
9525 int pixel_rate;
9526
9527 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
9528 if (IS_ERR(crtc_state))
9529 return PTR_ERR(crtc_state);
9530
9531 if (!crtc_state->base.enable)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009532 continue;
9533
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009534 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009535
9536 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009537 if (IS_BROADWELL(state->dev) && crtc_state->ips_enabled)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009538 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
9539
9540 max_pixel_rate = max(max_pixel_rate, pixel_rate);
9541 }
9542
9543 return max_pixel_rate;
9544}
9545
9546static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
9547{
9548 struct drm_i915_private *dev_priv = dev->dev_private;
9549 uint32_t val, data;
9550 int ret;
9551
9552 if (WARN((I915_READ(LCPLL_CTL) &
9553 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
9554 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
9555 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
9556 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
9557 "trying to change cdclk frequency with cdclk not enabled\n"))
9558 return;
9559
9560 mutex_lock(&dev_priv->rps.hw_lock);
9561 ret = sandybridge_pcode_write(dev_priv,
9562 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
9563 mutex_unlock(&dev_priv->rps.hw_lock);
9564 if (ret) {
9565 DRM_ERROR("failed to inform pcode about cdclk change\n");
9566 return;
9567 }
9568
9569 val = I915_READ(LCPLL_CTL);
9570 val |= LCPLL_CD_SOURCE_FCLK;
9571 I915_WRITE(LCPLL_CTL, val);
9572
9573 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9574 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9575 DRM_ERROR("Switching to FCLK failed\n");
9576
9577 val = I915_READ(LCPLL_CTL);
9578 val &= ~LCPLL_CLK_FREQ_MASK;
9579
9580 switch (cdclk) {
9581 case 450000:
9582 val |= LCPLL_CLK_FREQ_450;
9583 data = 0;
9584 break;
9585 case 540000:
9586 val |= LCPLL_CLK_FREQ_54O_BDW;
9587 data = 1;
9588 break;
9589 case 337500:
9590 val |= LCPLL_CLK_FREQ_337_5_BDW;
9591 data = 2;
9592 break;
9593 case 675000:
9594 val |= LCPLL_CLK_FREQ_675_BDW;
9595 data = 3;
9596 break;
9597 default:
9598 WARN(1, "invalid cdclk frequency\n");
9599 return;
9600 }
9601
9602 I915_WRITE(LCPLL_CTL, val);
9603
9604 val = I915_READ(LCPLL_CTL);
9605 val &= ~LCPLL_CD_SOURCE_FCLK;
9606 I915_WRITE(LCPLL_CTL, val);
9607
9608 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9609 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9610 DRM_ERROR("Switching back to LCPLL failed\n");
9611
9612 mutex_lock(&dev_priv->rps.hw_lock);
9613 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
9614 mutex_unlock(&dev_priv->rps.hw_lock);
9615
9616 intel_update_cdclk(dev);
9617
9618 WARN(cdclk != dev_priv->cdclk_freq,
9619 "cdclk requested %d kHz but got %d kHz\n",
9620 cdclk, dev_priv->cdclk_freq);
9621}
9622
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009623static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009624{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009625 struct drm_i915_private *dev_priv = to_i915(state->dev);
9626 int max_pixclk = ilk_max_pixel_rate(state);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009627 int cdclk;
9628
9629 /*
9630 * FIXME should also account for plane ratio
9631 * once 64bpp pixel formats are supported.
9632 */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009633 if (max_pixclk > 540000)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009634 cdclk = 675000;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009635 else if (max_pixclk > 450000)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009636 cdclk = 540000;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009637 else if (max_pixclk > 337500)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009638 cdclk = 450000;
9639 else
9640 cdclk = 337500;
9641
9642 /*
9643 * FIXME move the cdclk caclulation to
9644 * compute_config() so we can fail gracegully.
9645 */
9646 if (cdclk > dev_priv->max_cdclk_freq) {
9647 DRM_ERROR("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9648 cdclk, dev_priv->max_cdclk_freq);
9649 cdclk = dev_priv->max_cdclk_freq;
9650 }
9651
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009652 to_intel_atomic_state(state)->cdclk = cdclk;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009653
9654 return 0;
9655}
9656
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009657static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009658{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009659 struct drm_device *dev = old_state->dev;
9660 unsigned int req_cdclk = to_intel_atomic_state(old_state)->cdclk;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009661
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009662 broadwell_set_cdclk(dev, req_cdclk);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009663}
9664
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009665static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9666 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03009667{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009668 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03009669 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03009670
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009671 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02009672
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02009673 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009674}
9675
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309676static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9677 enum port port,
9678 struct intel_crtc_state *pipe_config)
9679{
9680 switch (port) {
9681 case PORT_A:
9682 pipe_config->ddi_pll_sel = SKL_DPLL0;
9683 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9684 break;
9685 case PORT_B:
9686 pipe_config->ddi_pll_sel = SKL_DPLL1;
9687 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9688 break;
9689 case PORT_C:
9690 pipe_config->ddi_pll_sel = SKL_DPLL2;
9691 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9692 break;
9693 default:
9694 DRM_ERROR("Incorrect port type\n");
9695 }
9696}
9697
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009698static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9699 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009700 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009701{
Damien Lespiau3148ade2014-11-21 16:14:56 +00009702 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009703
9704 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9705 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9706
9707 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00009708 case SKL_DPLL0:
9709 /*
9710 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
9711 * of the shared DPLL framework and thus needs to be read out
9712 * separately
9713 */
9714 dpll_ctl1 = I915_READ(DPLL_CTRL1);
9715 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
9716 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009717 case SKL_DPLL1:
9718 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9719 break;
9720 case SKL_DPLL2:
9721 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9722 break;
9723 case SKL_DPLL3:
9724 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9725 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009726 }
9727}
9728
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009729static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9730 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009731 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009732{
9733 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9734
9735 switch (pipe_config->ddi_pll_sel) {
9736 case PORT_CLK_SEL_WRPLL1:
9737 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
9738 break;
9739 case PORT_CLK_SEL_WRPLL2:
9740 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
9741 break;
9742 }
9743}
9744
Daniel Vetter26804af2014-06-25 22:01:55 +03009745static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009746 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03009747{
9748 struct drm_device *dev = crtc->base.dev;
9749 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009750 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03009751 enum port port;
9752 uint32_t tmp;
9753
9754 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
9755
9756 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
9757
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009758 if (IS_SKYLAKE(dev))
9759 skylake_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309760 else if (IS_BROXTON(dev))
9761 bxt_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009762 else
9763 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03009764
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009765 if (pipe_config->shared_dpll >= 0) {
9766 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9767
9768 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9769 &pipe_config->dpll_hw_state));
9770 }
9771
Daniel Vetter26804af2014-06-25 22:01:55 +03009772 /*
9773 * Haswell has only FDI/PCH transcoder A. It is which is connected to
9774 * DDI E. So just check whether this pipe is wired to DDI E and whether
9775 * the PCH transcoder is on.
9776 */
Damien Lespiauca370452013-12-03 13:56:24 +00009777 if (INTEL_INFO(dev)->gen < 9 &&
9778 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03009779 pipe_config->has_pch_encoder = true;
9780
9781 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
9782 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9783 FDI_DP_PORT_WIDTH_SHIFT) + 1;
9784
9785 ironlake_get_fdi_m_n_config(crtc, pipe_config);
9786 }
9787}
9788
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009789static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009790 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009791{
9792 struct drm_device *dev = crtc->base.dev;
9793 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009794 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009795 uint32_t tmp;
9796
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009797 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02009798 POWER_DOMAIN_PIPE(crtc->pipe)))
9799 return false;
9800
Daniel Vettere143a212013-07-04 12:01:15 +02009801 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009802 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
9803
Daniel Vettereccb1402013-05-22 00:50:22 +02009804 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
9805 if (tmp & TRANS_DDI_FUNC_ENABLE) {
9806 enum pipe trans_edp_pipe;
9807 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
9808 default:
9809 WARN(1, "unknown pipe linked to edp transcoder\n");
9810 case TRANS_DDI_EDP_INPUT_A_ONOFF:
9811 case TRANS_DDI_EDP_INPUT_A_ON:
9812 trans_edp_pipe = PIPE_A;
9813 break;
9814 case TRANS_DDI_EDP_INPUT_B_ONOFF:
9815 trans_edp_pipe = PIPE_B;
9816 break;
9817 case TRANS_DDI_EDP_INPUT_C_ONOFF:
9818 trans_edp_pipe = PIPE_C;
9819 break;
9820 }
9821
9822 if (trans_edp_pipe == crtc->pipe)
9823 pipe_config->cpu_transcoder = TRANSCODER_EDP;
9824 }
9825
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009826 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02009827 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03009828 return false;
9829
Daniel Vettereccb1402013-05-22 00:50:22 +02009830 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009831 if (!(tmp & PIPECONF_ENABLE))
9832 return false;
9833
Daniel Vetter26804af2014-06-25 22:01:55 +03009834 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009835
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009836 intel_get_pipe_timings(crtc, pipe_config);
9837
Chandra Kondurua1b22782015-04-07 15:28:45 -07009838 if (INTEL_INFO(dev)->gen >= 9) {
9839 skl_init_scalers(dev, crtc, pipe_config);
9840 }
9841
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009842 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Chandra Konduruaf99ceda2015-05-11 14:35:47 -07009843
9844 if (INTEL_INFO(dev)->gen >= 9) {
9845 pipe_config->scaler_state.scaler_id = -1;
9846 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
9847 }
9848
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009849 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07009850 if (INTEL_INFO(dev)->gen >= 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009851 skylake_get_pfit_config(crtc, pipe_config);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08009852 else
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07009853 ironlake_get_pfit_config(crtc, pipe_config);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009854 }
Daniel Vetter88adfff2013-03-28 10:42:01 +01009855
Jesse Barnese59150d2014-01-07 13:30:45 -08009856 if (IS_HASWELL(dev))
9857 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
9858 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009859
Clint Taylorebb69c92014-09-30 10:30:22 -07009860 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
9861 pipe_config->pixel_multiplier =
9862 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
9863 } else {
9864 pipe_config->pixel_multiplier = 1;
9865 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02009866
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009867 return true;
9868}
9869
Chris Wilson560b85b2010-08-07 11:01:38 +01009870static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
9871{
9872 struct drm_device *dev = crtc->dev;
9873 struct drm_i915_private *dev_priv = dev->dev_private;
9874 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03009875 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01009876
Ville Syrjälädc41c152014-08-13 11:57:05 +03009877 if (base) {
Matt Roper3dd512f2015-02-27 10:12:00 -08009878 unsigned int width = intel_crtc->base.cursor->state->crtc_w;
9879 unsigned int height = intel_crtc->base.cursor->state->crtc_h;
Ville Syrjälädc41c152014-08-13 11:57:05 +03009880 unsigned int stride = roundup_pow_of_two(width) * 4;
9881
9882 switch (stride) {
9883 default:
9884 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
9885 width, stride);
9886 stride = 256;
9887 /* fallthrough */
9888 case 256:
9889 case 512:
9890 case 1024:
9891 case 2048:
9892 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009893 }
9894
Ville Syrjälädc41c152014-08-13 11:57:05 +03009895 cntl |= CURSOR_ENABLE |
9896 CURSOR_GAMMA_ENABLE |
9897 CURSOR_FORMAT_ARGB |
9898 CURSOR_STRIDE(stride);
9899
9900 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009901 }
Chris Wilson560b85b2010-08-07 11:01:38 +01009902
Ville Syrjälädc41c152014-08-13 11:57:05 +03009903 if (intel_crtc->cursor_cntl != 0 &&
9904 (intel_crtc->cursor_base != base ||
9905 intel_crtc->cursor_size != size ||
9906 intel_crtc->cursor_cntl != cntl)) {
9907 /* On these chipsets we can only modify the base/size/stride
9908 * whilst the cursor is disabled.
9909 */
Ville Syrjälä0b87c242015-09-22 19:47:51 +03009910 I915_WRITE(CURCNTR(PIPE_A), 0);
9911 POSTING_READ(CURCNTR(PIPE_A));
Ville Syrjälädc41c152014-08-13 11:57:05 +03009912 intel_crtc->cursor_cntl = 0;
9913 }
9914
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009915 if (intel_crtc->cursor_base != base) {
Ville Syrjälä0b87c242015-09-22 19:47:51 +03009916 I915_WRITE(CURBASE(PIPE_A), base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009917 intel_crtc->cursor_base = base;
9918 }
Ville Syrjälädc41c152014-08-13 11:57:05 +03009919
9920 if (intel_crtc->cursor_size != size) {
9921 I915_WRITE(CURSIZE, size);
9922 intel_crtc->cursor_size = size;
9923 }
9924
Chris Wilson4b0e3332014-05-30 16:35:26 +03009925 if (intel_crtc->cursor_cntl != cntl) {
Ville Syrjälä0b87c242015-09-22 19:47:51 +03009926 I915_WRITE(CURCNTR(PIPE_A), cntl);
9927 POSTING_READ(CURCNTR(PIPE_A));
Chris Wilson4b0e3332014-05-30 16:35:26 +03009928 intel_crtc->cursor_cntl = cntl;
9929 }
Chris Wilson560b85b2010-08-07 11:01:38 +01009930}
9931
9932static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
9933{
9934 struct drm_device *dev = crtc->dev;
9935 struct drm_i915_private *dev_priv = dev->dev_private;
9936 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9937 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009938 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01009939
Chris Wilson4b0e3332014-05-30 16:35:26 +03009940 cntl = 0;
9941 if (base) {
9942 cntl = MCURSOR_GAMMA_ENABLE;
Matt Roper3dd512f2015-02-27 10:12:00 -08009943 switch (intel_crtc->base.cursor->state->crtc_w) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05309944 case 64:
9945 cntl |= CURSOR_MODE_64_ARGB_AX;
9946 break;
9947 case 128:
9948 cntl |= CURSOR_MODE_128_ARGB_AX;
9949 break;
9950 case 256:
9951 cntl |= CURSOR_MODE_256_ARGB_AX;
9952 break;
9953 default:
Matt Roper3dd512f2015-02-27 10:12:00 -08009954 MISSING_CASE(intel_crtc->base.cursor->state->crtc_w);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05309955 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01009956 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03009957 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +03009958
9959 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
9960 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +01009961 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03009962
Matt Roper8e7d6882015-01-21 16:35:41 -08009963 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -07009964 cntl |= CURSOR_ROTATE_180;
9965
Chris Wilson4b0e3332014-05-30 16:35:26 +03009966 if (intel_crtc->cursor_cntl != cntl) {
9967 I915_WRITE(CURCNTR(pipe), cntl);
9968 POSTING_READ(CURCNTR(pipe));
9969 intel_crtc->cursor_cntl = cntl;
9970 }
9971
Jesse Barnes65a21cd2011-10-12 11:10:21 -07009972 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03009973 I915_WRITE(CURBASE(pipe), base);
9974 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009975
9976 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07009977}
9978
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009979/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01009980static void intel_crtc_update_cursor(struct drm_crtc *crtc,
9981 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009982{
9983 struct drm_device *dev = crtc->dev;
9984 struct drm_i915_private *dev_priv = dev->dev_private;
9985 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9986 int pipe = intel_crtc->pipe;
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +02009987 struct drm_plane_state *cursor_state = crtc->cursor->state;
9988 int x = cursor_state->crtc_x;
9989 int y = cursor_state->crtc_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009990 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009991
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009992 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009993 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009994
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009995 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009996 base = 0;
9997
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009998 if (y >= intel_crtc->config->pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009999 base = 0;
10000
10001 if (x < 0) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010002 if (x + cursor_state->crtc_w <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010003 base = 0;
10004
10005 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10006 x = -x;
10007 }
10008 pos |= x << CURSOR_X_SHIFT;
10009
10010 if (y < 0) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010011 if (y + cursor_state->crtc_h <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010012 base = 0;
10013
10014 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10015 y = -y;
10016 }
10017 pos |= y << CURSOR_Y_SHIFT;
10018
Chris Wilson4b0e3332014-05-30 16:35:26 +030010019 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010020 return;
10021
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010022 I915_WRITE(CURPOS(pipe), pos);
10023
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010024 /* ILK+ do this automagically */
10025 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -080010026 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010027 base += (cursor_state->crtc_h *
10028 cursor_state->crtc_w - 1) * 4;
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010029 }
10030
Ville Syrjälä8ac54662014-08-12 19:39:54 +030010031 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010032 i845_update_cursor(crtc, base);
10033 else
10034 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010035}
10036
Ville Syrjälädc41c152014-08-13 11:57:05 +030010037static bool cursor_size_ok(struct drm_device *dev,
10038 uint32_t width, uint32_t height)
10039{
10040 if (width == 0 || height == 0)
10041 return false;
10042
10043 /*
10044 * 845g/865g are special in that they are only limited by
10045 * the width of their cursors, the height is arbitrary up to
10046 * the precision of the register. Everything else requires
10047 * square cursors, limited to a few power-of-two sizes.
10048 */
10049 if (IS_845G(dev) || IS_I865G(dev)) {
10050 if ((width & 63) != 0)
10051 return false;
10052
10053 if (width > (IS_845G(dev) ? 64 : 512))
10054 return false;
10055
10056 if (height > 1023)
10057 return false;
10058 } else {
10059 switch (width | height) {
10060 case 256:
10061 case 128:
10062 if (IS_GEN2(dev))
10063 return false;
10064 case 64:
10065 break;
10066 default:
10067 return false;
10068 }
10069 }
10070
10071 return true;
10072}
10073
Jesse Barnes79e53942008-11-07 14:24:08 -080010074static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +010010075 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -080010076{
James Simmons72034252010-08-03 01:33:19 +010010077 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -080010078 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080010079
James Simmons72034252010-08-03 01:33:19 +010010080 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -080010081 intel_crtc->lut_r[i] = red[i] >> 8;
10082 intel_crtc->lut_g[i] = green[i] >> 8;
10083 intel_crtc->lut_b[i] = blue[i] >> 8;
10084 }
10085
10086 intel_crtc_load_lut(crtc);
10087}
10088
Jesse Barnes79e53942008-11-07 14:24:08 -080010089/* VESA 640x480x72Hz mode to set on the pipe */
10090static struct drm_display_mode load_detect_mode = {
10091 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10092 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10093};
10094
Daniel Vettera8bb6812014-02-10 18:00:39 +010010095struct drm_framebuffer *
10096__intel_framebuffer_create(struct drm_device *dev,
10097 struct drm_mode_fb_cmd2 *mode_cmd,
10098 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +010010099{
10100 struct intel_framebuffer *intel_fb;
10101 int ret;
10102
10103 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
10104 if (!intel_fb) {
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +030010105 drm_gem_object_unreference(&obj->base);
Chris Wilsond2dff872011-04-19 08:36:26 +010010106 return ERR_PTR(-ENOMEM);
10107 }
10108
10109 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010110 if (ret)
10111 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +010010112
10113 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010114err:
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +030010115 drm_gem_object_unreference(&obj->base);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010116 kfree(intel_fb);
10117
10118 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +010010119}
10120
Daniel Vetterb5ea6422014-03-02 21:18:00 +010010121static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +010010122intel_framebuffer_create(struct drm_device *dev,
10123 struct drm_mode_fb_cmd2 *mode_cmd,
10124 struct drm_i915_gem_object *obj)
10125{
10126 struct drm_framebuffer *fb;
10127 int ret;
10128
10129 ret = i915_mutex_lock_interruptible(dev);
10130 if (ret)
10131 return ERR_PTR(ret);
10132 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10133 mutex_unlock(&dev->struct_mutex);
10134
10135 return fb;
10136}
10137
Chris Wilsond2dff872011-04-19 08:36:26 +010010138static u32
10139intel_framebuffer_pitch_for_width(int width, int bpp)
10140{
10141 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10142 return ALIGN(pitch, 64);
10143}
10144
10145static u32
10146intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10147{
10148 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +020010149 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +010010150}
10151
10152static struct drm_framebuffer *
10153intel_framebuffer_create_for_mode(struct drm_device *dev,
10154 struct drm_display_mode *mode,
10155 int depth, int bpp)
10156{
10157 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +000010158 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +010010159
10160 obj = i915_gem_alloc_object(dev,
10161 intel_framebuffer_size_for_mode(mode, bpp));
10162 if (obj == NULL)
10163 return ERR_PTR(-ENOMEM);
10164
10165 mode_cmd.width = mode->hdisplay;
10166 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -080010167 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
10168 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +000010169 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +010010170
10171 return intel_framebuffer_create(dev, &mode_cmd, obj);
10172}
10173
10174static struct drm_framebuffer *
10175mode_fits_in_fbdev(struct drm_device *dev,
10176 struct drm_display_mode *mode)
10177{
Daniel Vetter06957262015-08-10 13:34:08 +020010178#ifdef CONFIG_DRM_FBDEV_EMULATION
Chris Wilsond2dff872011-04-19 08:36:26 +010010179 struct drm_i915_private *dev_priv = dev->dev_private;
10180 struct drm_i915_gem_object *obj;
10181 struct drm_framebuffer *fb;
10182
Daniel Vetter4c0e5522014-02-14 16:35:54 +010010183 if (!dev_priv->fbdev)
10184 return NULL;
10185
10186 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +010010187 return NULL;
10188
Jesse Barnes8bcd4552014-02-07 12:10:38 -080010189 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +010010190 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +010010191
Jesse Barnes8bcd4552014-02-07 12:10:38 -080010192 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010193 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
10194 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +010010195 return NULL;
10196
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010197 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +010010198 return NULL;
10199
10200 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +020010201#else
10202 return NULL;
10203#endif
Chris Wilsond2dff872011-04-19 08:36:26 +010010204}
10205
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010206static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
10207 struct drm_crtc *crtc,
10208 struct drm_display_mode *mode,
10209 struct drm_framebuffer *fb,
10210 int x, int y)
10211{
10212 struct drm_plane_state *plane_state;
10213 int hdisplay, vdisplay;
10214 int ret;
10215
10216 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
10217 if (IS_ERR(plane_state))
10218 return PTR_ERR(plane_state);
10219
10220 if (mode)
10221 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
10222 else
10223 hdisplay = vdisplay = 0;
10224
10225 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
10226 if (ret)
10227 return ret;
10228 drm_atomic_set_fb_for_plane(plane_state, fb);
10229 plane_state->crtc_x = 0;
10230 plane_state->crtc_y = 0;
10231 plane_state->crtc_w = hdisplay;
10232 plane_state->crtc_h = vdisplay;
10233 plane_state->src_x = x << 16;
10234 plane_state->src_y = y << 16;
10235 plane_state->src_w = hdisplay << 16;
10236 plane_state->src_h = vdisplay << 16;
10237
10238 return 0;
10239}
10240
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010241bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +010010242 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -050010243 struct intel_load_detect_pipe *old,
10244 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080010245{
10246 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010247 struct intel_encoder *intel_encoder =
10248 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -080010249 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +010010250 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -080010251 struct drm_crtc *crtc = NULL;
10252 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +020010253 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -050010254 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010255 struct drm_atomic_state *state = NULL;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010256 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010257 struct intel_crtc_state *crtc_state;
Rob Clark51fd3712013-11-19 12:10:12 -050010258 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -080010259
Chris Wilsond2dff872011-04-19 08:36:26 +010010260 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030010261 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030010262 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010010263
Rob Clark51fd3712013-11-19 12:10:12 -050010264retry:
10265 ret = drm_modeset_lock(&config->connection_mutex, ctx);
10266 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010267 goto fail;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020010268
Jesse Barnes79e53942008-11-07 14:24:08 -080010269 /*
10270 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +010010271 *
Jesse Barnes79e53942008-11-07 14:24:08 -080010272 * - if the connector already has an assigned crtc, use it (but make
10273 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +010010274 *
Jesse Barnes79e53942008-11-07 14:24:08 -080010275 * - try to find the first unused crtc that can drive this connector,
10276 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -080010277 */
10278
10279 /* See if we already have a CRTC for this connector */
10280 if (encoder->crtc) {
10281 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +010010282
Rob Clark51fd3712013-11-19 12:10:12 -050010283 ret = drm_modeset_lock(&crtc->mutex, ctx);
10284 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010285 goto fail;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +010010286 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10287 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010288 goto fail;
Daniel Vetter7b240562012-12-12 00:35:33 +010010289
Daniel Vetter24218aa2012-08-12 19:27:11 +020010290 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +010010291 old->load_detect_temp = false;
10292
10293 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +020010294 if (connector->dpms != DRM_MODE_DPMS_ON)
10295 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +010010296
Chris Wilson71731882011-04-19 23:10:58 +010010297 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -080010298 }
10299
10300 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010301 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -080010302 i++;
10303 if (!(encoder->possible_crtcs & (1 << i)))
10304 continue;
Matt Roper83d65732015-02-25 13:12:16 -080010305 if (possible_crtc->state->enable)
Ville Syrjäläa4592492014-08-11 13:15:36 +030010306 continue;
Ville Syrjäläa4592492014-08-11 13:15:36 +030010307
10308 crtc = possible_crtc;
10309 break;
Jesse Barnes79e53942008-11-07 14:24:08 -080010310 }
10311
10312 /*
10313 * If we didn't find an unused CRTC, don't use any.
10314 */
10315 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +010010316 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010317 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010318 }
10319
Rob Clark51fd3712013-11-19 12:10:12 -050010320 ret = drm_modeset_lock(&crtc->mutex, ctx);
10321 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010322 goto fail;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +010010323 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10324 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010325 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010326
10327 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter24218aa2012-08-12 19:27:11 +020010328 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +010010329 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +010010330 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -080010331
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010332 state = drm_atomic_state_alloc(dev);
10333 if (!state)
10334 return false;
10335
10336 state->acquire_ctx = ctx;
10337
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010338 connector_state = drm_atomic_get_connector_state(state, connector);
10339 if (IS_ERR(connector_state)) {
10340 ret = PTR_ERR(connector_state);
10341 goto fail;
10342 }
10343
10344 connector_state->crtc = crtc;
10345 connector_state->best_encoder = &intel_encoder->base;
10346
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010347 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10348 if (IS_ERR(crtc_state)) {
10349 ret = PTR_ERR(crtc_state);
10350 goto fail;
10351 }
10352
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020010353 crtc_state->base.active = crtc_state->base.enable = true;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010354
Chris Wilson64927112011-04-20 07:25:26 +010010355 if (!mode)
10356 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -080010357
Chris Wilsond2dff872011-04-19 08:36:26 +010010358 /* We need a framebuffer large enough to accommodate all accesses
10359 * that the plane may generate whilst we perform load detection.
10360 * We can not rely on the fbcon either being present (we get called
10361 * during its initialisation to detect all boot displays, or it may
10362 * not even exist) or that it is large enough to satisfy the
10363 * requested mode.
10364 */
Daniel Vetter94352cf2012-07-05 22:51:56 +020010365 fb = mode_fits_in_fbdev(dev, mode);
10366 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +010010367 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020010368 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
10369 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +010010370 } else
10371 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020010372 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +010010373 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010374 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010375 }
Chris Wilsond2dff872011-04-19 08:36:26 +010010376
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010377 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
10378 if (ret)
10379 goto fail;
10380
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030010381 drm_mode_copy(&crtc_state->base.mode, mode);
10382
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020010383 if (drm_atomic_commit(state)) {
Chris Wilson64927112011-04-20 07:25:26 +010010384 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +010010385 if (old->release_fb)
10386 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010387 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010388 }
Daniel Vetter9128b042015-03-03 17:31:21 +010010389 crtc->primary->crtc = crtc;
Chris Wilson71731882011-04-19 23:10:58 +010010390
Jesse Barnes79e53942008-11-07 14:24:08 -080010391 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -070010392 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +010010393 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010394
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010395fail:
Ander Conselvan de Oliveirae5d958e2015-04-21 17:12:57 +030010396 drm_atomic_state_free(state);
10397 state = NULL;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010398
Rob Clark51fd3712013-11-19 12:10:12 -050010399 if (ret == -EDEADLK) {
10400 drm_modeset_backoff(ctx);
10401 goto retry;
10402 }
10403
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010404 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -080010405}
10406
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010407void intel_release_load_detect_pipe(struct drm_connector *connector,
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020010408 struct intel_load_detect_pipe *old,
10409 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080010410{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010411 struct drm_device *dev = connector->dev;
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010412 struct intel_encoder *intel_encoder =
10413 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +010010414 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +010010415 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010416 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010417 struct drm_atomic_state *state;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010418 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010419 struct intel_crtc_state *crtc_state;
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010420 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080010421
Chris Wilsond2dff872011-04-19 08:36:26 +010010422 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030010423 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030010424 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010010425
Chris Wilson8261b192011-04-19 23:18:09 +010010426 if (old->load_detect_temp) {
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010427 state = drm_atomic_state_alloc(dev);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010428 if (!state)
10429 goto fail;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010430
10431 state->acquire_ctx = ctx;
10432
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010433 connector_state = drm_atomic_get_connector_state(state, connector);
10434 if (IS_ERR(connector_state))
10435 goto fail;
10436
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010437 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10438 if (IS_ERR(crtc_state))
10439 goto fail;
10440
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010441 connector_state->best_encoder = NULL;
10442 connector_state->crtc = NULL;
10443
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020010444 crtc_state->base.enable = crtc_state->base.active = false;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010445
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010446 ret = intel_modeset_setup_plane_state(state, crtc, NULL, NULL,
10447 0, 0);
10448 if (ret)
10449 goto fail;
10450
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020010451 ret = drm_atomic_commit(state);
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030010452 if (ret)
10453 goto fail;
Chris Wilsond2dff872011-04-19 08:36:26 +010010454
Daniel Vetter36206362012-12-10 20:42:17 +010010455 if (old->release_fb) {
10456 drm_framebuffer_unregister_private(old->release_fb);
10457 drm_framebuffer_unreference(old->release_fb);
10458 }
Chris Wilsond2dff872011-04-19 08:36:26 +010010459
Chris Wilson0622a532011-04-21 09:32:11 +010010460 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080010461 }
10462
Eric Anholtc751ce42010-03-25 11:48:48 -070010463 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +020010464 if (old->dpms_mode != DRM_MODE_DPMS_ON)
10465 connector->funcs->dpms(connector, old->dpms_mode);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010466
10467 return;
10468fail:
10469 DRM_DEBUG_KMS("Couldn't release load detect pipe.\n");
10470 drm_atomic_state_free(state);
Jesse Barnes79e53942008-11-07 14:24:08 -080010471}
10472
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010473static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010474 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010475{
10476 struct drm_i915_private *dev_priv = dev->dev_private;
10477 u32 dpll = pipe_config->dpll_hw_state.dpll;
10478
10479 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +020010480 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010481 else if (HAS_PCH_SPLIT(dev))
10482 return 120000;
10483 else if (!IS_GEN2(dev))
10484 return 96000;
10485 else
10486 return 48000;
10487}
10488
Jesse Barnes79e53942008-11-07 14:24:08 -080010489/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010490static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010491 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -080010492{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010493 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080010494 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010495 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010496 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -080010497 u32 fp;
10498 intel_clock_t clock;
Imre Deakdccbea32015-06-22 23:35:51 +030010499 int port_clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010500 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -080010501
10502 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +030010503 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010504 else
Ville Syrjälä293623f2013-09-13 16:18:46 +030010505 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -080010506
10507 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010508 if (IS_PINEVIEW(dev)) {
10509 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
10510 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +080010511 } else {
10512 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
10513 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
10514 }
10515
Chris Wilsona6c45cf2010-09-17 00:32:17 +010010516 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010517 if (IS_PINEVIEW(dev))
10518 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
10519 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +080010520 else
10521 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -080010522 DPLL_FPA01_P1_POST_DIV_SHIFT);
10523
10524 switch (dpll & DPLL_MODE_MASK) {
10525 case DPLLB_MODE_DAC_SERIAL:
10526 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
10527 5 : 10;
10528 break;
10529 case DPLLB_MODE_LVDS:
10530 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
10531 7 : 14;
10532 break;
10533 default:
Zhao Yakui28c97732009-10-09 11:39:41 +080010534 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -080010535 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010536 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080010537 }
10538
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010539 if (IS_PINEVIEW(dev))
Imre Deakdccbea32015-06-22 23:35:51 +030010540 port_clock = pnv_calc_dpll_params(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010541 else
Imre Deakdccbea32015-06-22 23:35:51 +030010542 port_clock = i9xx_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010543 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +020010544 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010545 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -080010546
10547 if (is_lvds) {
10548 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10549 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010550
10551 if (lvds & LVDS_CLKB_POWER_UP)
10552 clock.p2 = 7;
10553 else
10554 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -080010555 } else {
10556 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10557 clock.p1 = 2;
10558 else {
10559 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10560 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10561 }
10562 if (dpll & PLL_P2_DIVIDE_BY_4)
10563 clock.p2 = 4;
10564 else
10565 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -080010566 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010567
Imre Deakdccbea32015-06-22 23:35:51 +030010568 port_clock = i9xx_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010569 }
10570
Ville Syrjälä18442d02013-09-13 16:00:08 +030010571 /*
10572 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +010010573 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +030010574 * encoder's get_config() function.
10575 */
Imre Deakdccbea32015-06-22 23:35:51 +030010576 pipe_config->port_clock = port_clock;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010577}
10578
Ville Syrjälä6878da02013-09-13 15:59:11 +030010579int intel_dotclock_calculate(int link_freq,
10580 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010581{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010582 /*
10583 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010584 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010585 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010586 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010587 *
10588 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010589 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -080010590 */
10591
Ville Syrjälä6878da02013-09-13 15:59:11 +030010592 if (!m_n->link_n)
10593 return 0;
10594
10595 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10596}
10597
Ville Syrjälä18442d02013-09-13 16:00:08 +030010598static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010599 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +030010600{
10601 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +030010602
10603 /* read out port_clock from the DPLL */
10604 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +030010605
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010606 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +030010607 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +010010608 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +030010609 * agree once we know their relationship in the encoder's
10610 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010611 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010612 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +030010613 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
10614 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -080010615}
10616
10617/** Returns the currently programmed mode of the given pipe. */
10618struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10619 struct drm_crtc *crtc)
10620{
Jesse Barnes548f2452011-02-17 10:40:53 -080010621 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010622 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010623 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010624 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010625 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -020010626 int htot = I915_READ(HTOTAL(cpu_transcoder));
10627 int hsync = I915_READ(HSYNC(cpu_transcoder));
10628 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10629 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +030010630 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -080010631
10632 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10633 if (!mode)
10634 return NULL;
10635
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010636 /*
10637 * Construct a pipe_config sufficient for getting the clock info
10638 * back out of crtc_clock_get.
10639 *
10640 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10641 * to use a real value here instead.
10642 */
Ville Syrjälä293623f2013-09-13 16:18:46 +030010643 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010644 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010645 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10646 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10647 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010648 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
10649
Ville Syrjälä773ae032013-09-23 17:48:20 +030010650 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -080010651 mode->hdisplay = (htot & 0xffff) + 1;
10652 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10653 mode->hsync_start = (hsync & 0xffff) + 1;
10654 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10655 mode->vdisplay = (vtot & 0xffff) + 1;
10656 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10657 mode->vsync_start = (vsync & 0xffff) + 1;
10658 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10659
10660 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -080010661
10662 return mode;
10663}
10664
Chris Wilsonf047e392012-07-21 12:31:41 +010010665void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -070010666{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010667 struct drm_i915_private *dev_priv = dev->dev_private;
10668
Chris Wilsonf62a0072014-02-21 17:55:39 +000010669 if (dev_priv->mm.busy)
10670 return;
10671
Paulo Zanoni43694d62014-03-07 20:08:08 -030010672 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -030010673 i915_update_gfx_val(dev_priv);
Chris Wilson43cf3bf2015-03-18 09:48:22 +000010674 if (INTEL_INFO(dev)->gen >= 6)
10675 gen6_rps_busy(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +000010676 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +010010677}
10678
10679void intel_mark_idle(struct drm_device *dev)
10680{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010681 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +000010682
Chris Wilsonf62a0072014-02-21 17:55:39 +000010683 if (!dev_priv->mm.busy)
10684 return;
10685
10686 dev_priv->mm.busy = false;
10687
Damien Lespiau3d13ef22014-02-07 19:12:47 +000010688 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +010010689 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -030010690
Paulo Zanoni43694d62014-03-07 20:08:08 -030010691 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +010010692}
10693
Jesse Barnes79e53942008-11-07 14:24:08 -080010694static void intel_crtc_destroy(struct drm_crtc *crtc)
10695{
10696 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010697 struct drm_device *dev = crtc->dev;
10698 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +020010699
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010700 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010701 work = intel_crtc->unpin_work;
10702 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010703 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010704
10705 if (work) {
10706 cancel_work_sync(&work->work);
10707 kfree(work);
10708 }
Jesse Barnes79e53942008-11-07 14:24:08 -080010709
10710 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010711
Jesse Barnes79e53942008-11-07 14:24:08 -080010712 kfree(intel_crtc);
10713}
10714
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010715static void intel_unpin_work_fn(struct work_struct *__work)
10716{
10717 struct intel_unpin_work *work =
10718 container_of(__work, struct intel_unpin_work, work);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010719 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
10720 struct drm_device *dev = crtc->base.dev;
10721 struct drm_plane *primary = crtc->base.primary;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010722
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010723 mutex_lock(&dev->struct_mutex);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010724 intel_unpin_fb_obj(work->old_fb, primary->state);
Chris Wilson05394f32010-11-08 19:18:58 +000010725 drm_gem_object_unreference(&work->pending_flip_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +000010726
John Harrisonf06cc1b2014-11-24 18:49:37 +000010727 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +000010728 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010729 mutex_unlock(&dev->struct_mutex);
10730
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010731 intel_frontbuffer_flip_complete(dev, to_intel_plane(primary)->frontbuffer_bit);
Chris Wilson89ed88b2015-02-16 14:31:49 +000010732 drm_framebuffer_unreference(work->old_fb);
Daniel Vetterf99d7062014-06-19 16:01:59 +020010733
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010734 BUG_ON(atomic_read(&crtc->unpin_work_count) == 0);
10735 atomic_dec(&crtc->unpin_work_count);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010736
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010737 kfree(work);
10738}
10739
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010740static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +010010741 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010742{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010743 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10744 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010745 unsigned long flags;
10746
10747 /* Ignore early vblank irqs */
10748 if (intel_crtc == NULL)
10749 return;
10750
Daniel Vetterf3260382014-09-15 14:55:23 +020010751 /*
10752 * This is called both by irq handlers and the reset code (to complete
10753 * lost pageflips) so needs the full irqsave spinlocks.
10754 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010755 spin_lock_irqsave(&dev->event_lock, flags);
10756 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +000010757
10758 /* Ensure we don't miss a work->pending update ... */
10759 smp_rmb();
10760
10761 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010762 spin_unlock_irqrestore(&dev->event_lock, flags);
10763 return;
10764 }
10765
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010766 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +010010767
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010768 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010769}
10770
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010771void intel_finish_page_flip(struct drm_device *dev, int pipe)
10772{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010773 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010774 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10775
Mario Kleiner49b14a52010-12-09 07:00:07 +010010776 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010777}
10778
10779void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
10780{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010781 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010782 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
10783
Mario Kleiner49b14a52010-12-09 07:00:07 +010010784 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010785}
10786
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010787/* Is 'a' after or equal to 'b'? */
10788static bool g4x_flip_count_after_eq(u32 a, u32 b)
10789{
10790 return !((a - b) & 0x80000000);
10791}
10792
10793static bool page_flip_finished(struct intel_crtc *crtc)
10794{
10795 struct drm_device *dev = crtc->base.dev;
10796 struct drm_i915_private *dev_priv = dev->dev_private;
10797
Ville Syrjäläbdfa7542014-05-27 21:33:09 +030010798 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
10799 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
10800 return true;
10801
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010802 /*
10803 * The relevant registers doen't exist on pre-ctg.
10804 * As the flip done interrupt doesn't trigger for mmio
10805 * flips on gmch platforms, a flip count check isn't
10806 * really needed there. But since ctg has the registers,
10807 * include it in the check anyway.
10808 */
10809 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
10810 return true;
10811
10812 /*
10813 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
10814 * used the same base address. In that case the mmio flip might
10815 * have completed, but the CS hasn't even executed the flip yet.
10816 *
10817 * A flip count check isn't enough as the CS might have updated
10818 * the base address just after start of vblank, but before we
10819 * managed to process the interrupt. This means we'd complete the
10820 * CS flip too soon.
10821 *
10822 * Combining both checks should get us a good enough result. It may
10823 * still happen that the CS flip has been executed, but has not
10824 * yet actually completed. But in case the base address is the same
10825 * anyway, we don't really care.
10826 */
10827 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
10828 crtc->unpin_work->gtt_offset &&
10829 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
10830 crtc->unpin_work->flip_count);
10831}
10832
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010833void intel_prepare_page_flip(struct drm_device *dev, int plane)
10834{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010835 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010836 struct intel_crtc *intel_crtc =
10837 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
10838 unsigned long flags;
10839
Daniel Vetterf3260382014-09-15 14:55:23 +020010840
10841 /*
10842 * This is called both by irq handlers and the reset code (to complete
10843 * lost pageflips) so needs the full irqsave spinlocks.
10844 *
10845 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +000010846 * generate a page-flip completion irq, i.e. every modeset
10847 * is also accompanied by a spurious intel_prepare_page_flip().
10848 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010849 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010850 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +000010851 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010852 spin_unlock_irqrestore(&dev->event_lock, flags);
10853}
10854
Robin Schroereba905b2014-05-18 02:24:50 +020010855static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +000010856{
10857 /* Ensure that the work item is consistent when activating it ... */
10858 smp_wmb();
10859 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
10860 /* and that it is marked active as soon as the irq could fire. */
10861 smp_wmb();
10862}
10863
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010864static int intel_gen2_queue_flip(struct drm_device *dev,
10865 struct drm_crtc *crtc,
10866 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010867 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010010868 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070010869 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010870{
John Harrison6258fbe2015-05-29 17:43:48 +010010871 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010872 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010873 u32 flip_mask;
10874 int ret;
10875
John Harrison5fb9de12015-05-29 17:44:07 +010010876 ret = intel_ring_begin(req, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010877 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010878 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010879
10880 /* Can't queue multiple flips, so wait for the previous
10881 * one to finish before executing the next.
10882 */
10883 if (intel_crtc->plane)
10884 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
10885 else
10886 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010887 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
10888 intel_ring_emit(ring, MI_NOOP);
10889 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10890 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10891 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010892 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020010893 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +000010894
10895 intel_mark_page_flip_active(intel_crtc);
Chris Wilson83d40922012-04-17 19:35:53 +010010896 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010897}
10898
10899static int intel_gen3_queue_flip(struct drm_device *dev,
10900 struct drm_crtc *crtc,
10901 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010902 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010010903 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070010904 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010905{
John Harrison6258fbe2015-05-29 17:43:48 +010010906 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010907 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010908 u32 flip_mask;
10909 int ret;
10910
John Harrison5fb9de12015-05-29 17:44:07 +010010911 ret = intel_ring_begin(req, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010912 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010913 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010914
10915 if (intel_crtc->plane)
10916 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
10917 else
10918 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010919 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
10920 intel_ring_emit(ring, MI_NOOP);
10921 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
10922 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10923 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010924 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020010925 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010926
Chris Wilsone7d841c2012-12-03 11:36:30 +000010927 intel_mark_page_flip_active(intel_crtc);
Chris Wilson83d40922012-04-17 19:35:53 +010010928 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010929}
10930
10931static int intel_gen4_queue_flip(struct drm_device *dev,
10932 struct drm_crtc *crtc,
10933 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010934 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010010935 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070010936 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010937{
John Harrison6258fbe2015-05-29 17:43:48 +010010938 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010939 struct drm_i915_private *dev_priv = dev->dev_private;
10940 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10941 uint32_t pf, pipesrc;
10942 int ret;
10943
John Harrison5fb9de12015-05-29 17:44:07 +010010944 ret = intel_ring_begin(req, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010945 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010946 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010947
10948 /* i965+ uses the linear or tiled offsets from the
10949 * Display Registers (which do not change across a page-flip)
10950 * so we need only reprogram the base address.
10951 */
Daniel Vetter6d90c952012-04-26 23:28:05 +020010952 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10953 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10954 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010955 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +020010956 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010957
10958 /* XXX Enabling the panel-fitter across page-flip is so far
10959 * untested on non-native modes, so ignore it for now.
10960 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
10961 */
10962 pf = 0;
10963 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010964 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000010965
10966 intel_mark_page_flip_active(intel_crtc);
Chris Wilson83d40922012-04-17 19:35:53 +010010967 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010968}
10969
10970static int intel_gen6_queue_flip(struct drm_device *dev,
10971 struct drm_crtc *crtc,
10972 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010973 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010010974 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070010975 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010976{
John Harrison6258fbe2015-05-29 17:43:48 +010010977 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010978 struct drm_i915_private *dev_priv = dev->dev_private;
10979 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10980 uint32_t pf, pipesrc;
10981 int ret;
10982
John Harrison5fb9de12015-05-29 17:44:07 +010010983 ret = intel_ring_begin(req, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010984 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010985 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010986
Daniel Vetter6d90c952012-04-26 23:28:05 +020010987 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10988 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10989 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010990 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010991
Chris Wilson99d9acd2012-04-17 20:37:00 +010010992 /* Contrary to the suggestions in the documentation,
10993 * "Enable Panel Fitter" does not seem to be required when page
10994 * flipping with a non-native mode, and worse causes a normal
10995 * modeset to fail.
10996 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
10997 */
10998 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010999 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011000 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000011001
11002 intel_mark_page_flip_active(intel_crtc);
Chris Wilson83d40922012-04-17 19:35:53 +010011003 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011004}
11005
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011006static int intel_gen7_queue_flip(struct drm_device *dev,
11007 struct drm_crtc *crtc,
11008 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011009 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011010 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011011 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011012{
John Harrison6258fbe2015-05-29 17:43:48 +010011013 struct intel_engine_cs *ring = req->ring;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011014 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011015 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +010011016 int len, ret;
11017
Robin Schroereba905b2014-05-18 02:24:50 +020011018 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011019 case PLANE_A:
11020 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11021 break;
11022 case PLANE_B:
11023 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11024 break;
11025 case PLANE_C:
11026 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11027 break;
11028 default:
11029 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011030 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011031 }
11032
Chris Wilsonffe74d72013-08-26 20:58:12 +010011033 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +010011034 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +010011035 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +010011036 /*
11037 * On Gen 8, SRM is now taking an extra dword to accommodate
11038 * 48bits addresses, and we need a NOOP for the batch size to
11039 * stay even.
11040 */
11041 if (IS_GEN8(dev))
11042 len += 2;
11043 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010011044
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011045 /*
11046 * BSpec MI_DISPLAY_FLIP for IVB:
11047 * "The full packet must be contained within the same cache line."
11048 *
11049 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11050 * cacheline, if we ever start emitting more commands before
11051 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11052 * then do the cacheline alignment, and finally emit the
11053 * MI_DISPLAY_FLIP.
11054 */
John Harrisonbba09b12015-05-29 17:44:06 +010011055 ret = intel_ring_cacheline_align(req);
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011056 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011057 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011058
John Harrison5fb9de12015-05-29 17:44:07 +010011059 ret = intel_ring_begin(req, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011060 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011061 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011062
Chris Wilsonffe74d72013-08-26 20:58:12 +010011063 /* Unmask the flip-done completion message. Note that the bspec says that
11064 * we should do this for both the BCS and RCS, and that we must not unmask
11065 * more than one flip event at any time (or ensure that one flip message
11066 * can be sent by waiting for flip-done prior to queueing new flips).
11067 * Experimentation says that BCS works despite DERRMR masking all
11068 * flip-done completion events and that unmasking all planes at once
11069 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11070 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11071 */
11072 if (ring->id == RCS) {
11073 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
11074 intel_ring_emit(ring, DERRMR);
11075 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
11076 DERRMR_PIPEB_PRI_FLIP_DONE |
11077 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +010011078 if (IS_GEN8(dev))
Arun Siluveryf1afe242015-08-04 16:22:20 +010011079 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8 |
Damien Lespiauf4768282014-04-07 20:24:34 +010011080 MI_SRM_LRM_GLOBAL_GTT);
11081 else
Arun Siluveryf1afe242015-08-04 16:22:20 +010011082 intel_ring_emit(ring, MI_STORE_REGISTER_MEM |
Damien Lespiauf4768282014-04-07 20:24:34 +010011083 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +010011084 intel_ring_emit(ring, DERRMR);
11085 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +010011086 if (IS_GEN8(dev)) {
11087 intel_ring_emit(ring, 0);
11088 intel_ring_emit(ring, MI_NOOP);
11089 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010011090 }
11091
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011092 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +020011093 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011094 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011095 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +000011096
11097 intel_mark_page_flip_active(intel_crtc);
Chris Wilson83d40922012-04-17 19:35:53 +010011098 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011099}
11100
Sourab Gupta84c33a62014-06-02 16:47:17 +053011101static bool use_mmio_flip(struct intel_engine_cs *ring,
11102 struct drm_i915_gem_object *obj)
11103{
11104 /*
11105 * This is not being used for older platforms, because
11106 * non-availability of flip done interrupt forces us to use
11107 * CS flips. Older platforms derive flip done using some clever
11108 * tricks involving the flip_pending status bits and vblank irqs.
11109 * So using MMIO flips there would disrupt this mechanism.
11110 */
11111
Chris Wilson8e09bf82014-07-08 10:40:30 +010011112 if (ring == NULL)
11113 return true;
11114
Sourab Gupta84c33a62014-06-02 16:47:17 +053011115 if (INTEL_INFO(ring->dev)->gen < 5)
11116 return false;
11117
11118 if (i915.use_mmio_flip < 0)
11119 return false;
11120 else if (i915.use_mmio_flip > 0)
11121 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +010011122 else if (i915.enable_execlists)
11123 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011124 else
Chris Wilsonb4716182015-04-27 13:41:17 +010011125 return ring != i915_gem_request_get_ring(obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011126}
11127
Damien Lespiauff944562014-11-20 14:58:16 +000011128static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
11129{
11130 struct drm_device *dev = intel_crtc->base.dev;
11131 struct drm_i915_private *dev_priv = dev->dev_private;
11132 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
Damien Lespiauff944562014-11-20 14:58:16 +000011133 const enum pipe pipe = intel_crtc->pipe;
11134 u32 ctl, stride;
11135
11136 ctl = I915_READ(PLANE_CTL(pipe, 0));
11137 ctl &= ~PLANE_CTL_TILED_MASK;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011138 switch (fb->modifier[0]) {
11139 case DRM_FORMAT_MOD_NONE:
11140 break;
11141 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauff944562014-11-20 14:58:16 +000011142 ctl |= PLANE_CTL_TILED_X;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011143 break;
11144 case I915_FORMAT_MOD_Y_TILED:
11145 ctl |= PLANE_CTL_TILED_Y;
11146 break;
11147 case I915_FORMAT_MOD_Yf_TILED:
11148 ctl |= PLANE_CTL_TILED_YF;
11149 break;
11150 default:
11151 MISSING_CASE(fb->modifier[0]);
11152 }
Damien Lespiauff944562014-11-20 14:58:16 +000011153
11154 /*
11155 * The stride is either expressed as a multiple of 64 bytes chunks for
11156 * linear buffers or in number of tiles for tiled buffers.
11157 */
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011158 stride = fb->pitches[0] /
11159 intel_fb_stride_alignment(dev, fb->modifier[0],
11160 fb->pixel_format);
Damien Lespiauff944562014-11-20 14:58:16 +000011161
11162 /*
11163 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
11164 * PLANE_SURF updates, the update is then guaranteed to be atomic.
11165 */
11166 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
11167 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
11168
11169 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
11170 POSTING_READ(PLANE_SURF(pipe, 0));
11171}
11172
11173static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011174{
11175 struct drm_device *dev = intel_crtc->base.dev;
11176 struct drm_i915_private *dev_priv = dev->dev_private;
11177 struct intel_framebuffer *intel_fb =
11178 to_intel_framebuffer(intel_crtc->base.primary->fb);
11179 struct drm_i915_gem_object *obj = intel_fb->obj;
11180 u32 dspcntr;
11181 u32 reg;
11182
Sourab Gupta84c33a62014-06-02 16:47:17 +053011183 reg = DSPCNTR(intel_crtc->plane);
11184 dspcntr = I915_READ(reg);
11185
Damien Lespiauc5d97472014-10-25 00:11:11 +010011186 if (obj->tiling_mode != I915_TILING_NONE)
11187 dspcntr |= DISPPLANE_TILED;
11188 else
11189 dspcntr &= ~DISPPLANE_TILED;
11190
Sourab Gupta84c33a62014-06-02 16:47:17 +053011191 I915_WRITE(reg, dspcntr);
11192
11193 I915_WRITE(DSPSURF(intel_crtc->plane),
11194 intel_crtc->unpin_work->gtt_offset);
11195 POSTING_READ(DSPSURF(intel_crtc->plane));
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020011196
Damien Lespiauff944562014-11-20 14:58:16 +000011197}
11198
11199/*
11200 * XXX: This is the temporary way to update the plane registers until we get
11201 * around to using the usual plane update functions for MMIO flips
11202 */
11203static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
11204{
11205 struct drm_device *dev = intel_crtc->base.dev;
Damien Lespiauff944562014-11-20 14:58:16 +000011206
11207 intel_mark_page_flip_active(intel_crtc);
11208
Maarten Lankhorst34e0adb2015-08-31 13:04:25 +020011209 intel_pipe_update_start(intel_crtc);
Damien Lespiauff944562014-11-20 14:58:16 +000011210
11211 if (INTEL_INFO(dev)->gen >= 9)
11212 skl_do_mmio_flip(intel_crtc);
11213 else
11214 /* use_mmio_flip() retricts MMIO flips to ilk+ */
11215 ilk_do_mmio_flip(intel_crtc);
11216
Maarten Lankhorst34e0adb2015-08-31 13:04:25 +020011217 intel_pipe_update_end(intel_crtc);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011218}
11219
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020011220static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011221{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011222 struct intel_mmio_flip *mmio_flip =
11223 container_of(work, struct intel_mmio_flip, work);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011224
Daniel Vettereed29a52015-05-21 14:21:25 +020011225 if (mmio_flip->req)
11226 WARN_ON(__i915_wait_request(mmio_flip->req,
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011227 mmio_flip->crtc->reset_counter,
Chris Wilsonbcafc4e2015-04-27 13:41:21 +010011228 false, NULL,
11229 &mmio_flip->i915->rps.mmioflips));
Sourab Gupta84c33a62014-06-02 16:47:17 +053011230
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011231 intel_do_mmio_flip(mmio_flip->crtc);
11232
Daniel Vettereed29a52015-05-21 14:21:25 +020011233 i915_gem_request_unreference__unlocked(mmio_flip->req);
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011234 kfree(mmio_flip);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011235}
11236
11237static int intel_queue_mmio_flip(struct drm_device *dev,
11238 struct drm_crtc *crtc,
11239 struct drm_framebuffer *fb,
11240 struct drm_i915_gem_object *obj,
11241 struct intel_engine_cs *ring,
11242 uint32_t flags)
11243{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011244 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011245
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011246 mmio_flip = kmalloc(sizeof(*mmio_flip), GFP_KERNEL);
11247 if (mmio_flip == NULL)
11248 return -ENOMEM;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011249
Chris Wilsonbcafc4e2015-04-27 13:41:21 +010011250 mmio_flip->i915 = to_i915(dev);
Daniel Vettereed29a52015-05-21 14:21:25 +020011251 mmio_flip->req = i915_gem_request_reference(obj->last_write_req);
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011252 mmio_flip->crtc = to_intel_crtc(crtc);
11253
11254 INIT_WORK(&mmio_flip->work, intel_mmio_flip_work_func);
11255 schedule_work(&mmio_flip->work);
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +020011256
Sourab Gupta84c33a62014-06-02 16:47:17 +053011257 return 0;
11258}
11259
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011260static int intel_default_queue_flip(struct drm_device *dev,
11261 struct drm_crtc *crtc,
11262 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011263 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011264 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011265 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011266{
11267 return -ENODEV;
11268}
11269
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011270static bool __intel_pageflip_stall_check(struct drm_device *dev,
11271 struct drm_crtc *crtc)
11272{
11273 struct drm_i915_private *dev_priv = dev->dev_private;
11274 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11275 struct intel_unpin_work *work = intel_crtc->unpin_work;
11276 u32 addr;
11277
11278 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
11279 return true;
11280
Chris Wilson908565c2015-08-12 13:08:22 +010011281 if (atomic_read(&work->pending) < INTEL_FLIP_PENDING)
11282 return false;
11283
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011284 if (!work->enable_stall_check)
11285 return false;
11286
11287 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +010011288 if (work->flip_queued_req &&
11289 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011290 return false;
11291
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011292 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011293 }
11294
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011295 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011296 return false;
11297
11298 /* Potential stall - if we see that the flip has happened,
11299 * assume a missed interrupt. */
11300 if (INTEL_INFO(dev)->gen >= 4)
11301 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
11302 else
11303 addr = I915_READ(DSPADDR(intel_crtc->plane));
11304
11305 /* There is a potential issue here with a false positive after a flip
11306 * to the same address. We could address this by checking for a
11307 * non-incrementing frame counter.
11308 */
11309 return addr == work->gtt_offset;
11310}
11311
11312void intel_check_page_flip(struct drm_device *dev, int pipe)
11313{
11314 struct drm_i915_private *dev_priv = dev->dev_private;
11315 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11316 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011317 struct intel_unpin_work *work;
Daniel Vetterf3260382014-09-15 14:55:23 +020011318
Dave Gordon6c51d462015-03-06 15:34:26 +000011319 WARN_ON(!in_interrupt());
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011320
11321 if (crtc == NULL)
11322 return;
11323
Daniel Vetterf3260382014-09-15 14:55:23 +020011324 spin_lock(&dev->event_lock);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011325 work = intel_crtc->unpin_work;
11326 if (work != NULL && __intel_pageflip_stall_check(dev, crtc)) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011327 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
Chris Wilson6ad790c2015-04-07 16:20:31 +010011328 work->flip_queued_vblank, drm_vblank_count(dev, pipe));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011329 page_flip_completed(intel_crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011330 work = NULL;
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011331 }
Chris Wilson6ad790c2015-04-07 16:20:31 +010011332 if (work != NULL &&
11333 drm_vblank_count(dev, pipe) - work->flip_queued_vblank > 1)
11334 intel_queue_rps_boost_for_request(dev, work->flip_queued_req);
Daniel Vetterf3260382014-09-15 14:55:23 +020011335 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011336}
11337
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011338static int intel_crtc_page_flip(struct drm_crtc *crtc,
11339 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011340 struct drm_pending_vblank_event *event,
11341 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011342{
11343 struct drm_device *dev = crtc->dev;
11344 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -070011345 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -070011346 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011347 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080011348 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +020011349 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011350 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +010011351 struct intel_engine_cs *ring;
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011352 bool mmio_flip;
John Harrison91af1272015-06-18 13:14:56 +010011353 struct drm_i915_gem_request *request = NULL;
Chris Wilson52e68632010-08-08 10:15:59 +010011354 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011355
Matt Roper2ff8fde2014-07-08 07:50:07 -070011356 /*
11357 * drm_mode_page_flip_ioctl() should already catch this, but double
11358 * check to be safe. In the future we may enable pageflipping from
11359 * a disabled primary plane.
11360 */
11361 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
11362 return -EBUSY;
11363
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011364 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -070011365 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011366 return -EINVAL;
11367
11368 /*
11369 * TILEOFF/LINOFF registers can't be changed via MI display flips.
11370 * Note that pitch changes could also affect these register.
11371 */
11372 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -070011373 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
11374 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011375 return -EINVAL;
11376
Chris Wilsonf900db42014-02-20 09:26:13 +000011377 if (i915_terminally_wedged(&dev_priv->gpu_error))
11378 goto out_hang;
11379
Daniel Vetterb14c5672013-09-19 12:18:32 +020011380 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011381 if (work == NULL)
11382 return -ENOMEM;
11383
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011384 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011385 work->crtc = crtc;
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011386 work->old_fb = old_fb;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011387 INIT_WORK(&work->work, intel_unpin_work_fn);
11388
Daniel Vetter87b6b102014-05-15 15:33:46 +020011389 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011390 if (ret)
11391 goto free_work;
11392
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011393 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011394 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011395 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011396 /* Before declaring the flip queue wedged, check if
11397 * the hardware completed the operation behind our backs.
11398 */
11399 if (__intel_pageflip_stall_check(dev, crtc)) {
11400 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
11401 page_flip_completed(intel_crtc);
11402 } else {
11403 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011404 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +010011405
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011406 drm_crtc_vblank_put(crtc);
11407 kfree(work);
11408 return -EBUSY;
11409 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011410 }
11411 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011412 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011413
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011414 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
11415 flush_workqueue(dev_priv->wq);
11416
Jesse Barnes75dfca82010-02-10 15:09:44 -080011417 /* Reference the objects for the scheduled work. */
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011418 drm_framebuffer_reference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +000011419 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011420
Matt Roperf4510a22014-04-01 15:22:40 -070011421 crtc->primary->fb = fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011422 update_state_fb(crtc->primary);
Matt Roper1ed1f962015-01-30 16:22:36 -080011423
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011424 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011425
Chris Wilson89ed88b2015-02-16 14:31:49 +000011426 ret = i915_mutex_lock_interruptible(dev);
11427 if (ret)
11428 goto cleanup;
11429
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011430 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +020011431 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011432
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011433 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +020011434 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011435
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011436 if (IS_VALLEYVIEW(dev)) {
11437 ring = &dev_priv->ring[BCS];
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011438 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
Chris Wilson8e09bf82014-07-08 10:40:30 +010011439 /* vlv: DISPLAY_FLIP fails to change tiling */
11440 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +000011441 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +010011442 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011443 } else if (INTEL_INFO(dev)->gen >= 7) {
Chris Wilsonb4716182015-04-27 13:41:17 +010011444 ring = i915_gem_request_get_ring(obj->last_write_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011445 if (ring == NULL || ring->id != RCS)
11446 ring = &dev_priv->ring[BCS];
11447 } else {
11448 ring = &dev_priv->ring[RCS];
11449 }
11450
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011451 mmio_flip = use_mmio_flip(ring, obj);
11452
11453 /* When using CS flips, we want to emit semaphores between rings.
11454 * However, when using mmio flips we will create a task to do the
11455 * synchronisation, so all we want here is to pin the framebuffer
11456 * into the display plane and skip any waits.
11457 */
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011458 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb,
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011459 crtc->primary->state,
John Harrison91af1272015-06-18 13:14:56 +010011460 mmio_flip ? i915_gem_request_get_ring(obj->last_write_req) : ring, &request);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011461 if (ret)
11462 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011463
Tvrtko Ursulindedf2782015-09-21 10:45:35 +010011464 work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary),
11465 obj, 0);
11466 work->gtt_offset += intel_crtc->dspaddr_offset;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011467
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011468 if (mmio_flip) {
Sourab Gupta84c33a62014-06-02 16:47:17 +053011469 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
11470 page_flip_flags);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011471 if (ret)
11472 goto cleanup_unpin;
11473
John Harrisonf06cc1b2014-11-24 18:49:37 +000011474 i915_gem_request_assign(&work->flip_queued_req,
11475 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011476 } else {
John Harrison6258fbe2015-05-29 17:43:48 +010011477 if (!request) {
11478 ret = i915_gem_request_alloc(ring, ring->default_context, &request);
11479 if (ret)
11480 goto cleanup_unpin;
11481 }
11482
11483 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request,
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011484 page_flip_flags);
11485 if (ret)
11486 goto cleanup_unpin;
11487
John Harrison6258fbe2015-05-29 17:43:48 +010011488 i915_gem_request_assign(&work->flip_queued_req, request);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011489 }
11490
John Harrison91af1272015-06-18 13:14:56 +010011491 if (request)
John Harrison75289872015-05-29 17:43:49 +010011492 i915_add_request_no_flush(request);
John Harrison91af1272015-06-18 13:14:56 +010011493
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011494 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011495 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011496
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011497 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011498 to_intel_plane(primary)->frontbuffer_bit);
Paulo Zanonic80ac852015-07-02 19:25:13 -030011499 mutex_unlock(&dev->struct_mutex);
Daniel Vettera071fa02014-06-18 23:28:09 +020011500
Paulo Zanoni4e1e26f2015-07-14 16:29:13 -030011501 intel_fbc_disable_crtc(intel_crtc);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011502 intel_frontbuffer_flip_prepare(dev,
11503 to_intel_plane(primary)->frontbuffer_bit);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011504
Jesse Barnese5510fa2010-07-01 16:48:37 -070011505 trace_i915_flip_request(intel_crtc->plane, obj);
11506
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011507 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +010011508
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011509cleanup_unpin:
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011510 intel_unpin_fb_obj(fb, crtc->primary->state);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011511cleanup_pending:
John Harrison91af1272015-06-18 13:14:56 +010011512 if (request)
11513 i915_gem_request_cancel(request);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011514 atomic_dec(&intel_crtc->unpin_work_count);
Chris Wilson89ed88b2015-02-16 14:31:49 +000011515 mutex_unlock(&dev->struct_mutex);
11516cleanup:
Matt Roperf4510a22014-04-01 15:22:40 -070011517 crtc->primary->fb = old_fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011518 update_state_fb(crtc->primary);
Chris Wilson96b099f2010-06-07 14:03:04 +010011519
Chris Wilson89ed88b2015-02-16 14:31:49 +000011520 drm_gem_object_unreference_unlocked(&obj->base);
11521 drm_framebuffer_unreference(work->old_fb);
11522
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011523 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011524 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011525 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011526
Daniel Vetter87b6b102014-05-15 15:33:46 +020011527 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011528free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +010011529 kfree(work);
11530
Chris Wilsonf900db42014-02-20 09:26:13 +000011531 if (ret == -EIO) {
Maarten Lankhorst02e0efb2015-06-12 11:15:40 +020011532 struct drm_atomic_state *state;
11533 struct drm_plane_state *plane_state;
11534
Chris Wilsonf900db42014-02-20 09:26:13 +000011535out_hang:
Maarten Lankhorst02e0efb2015-06-12 11:15:40 +020011536 state = drm_atomic_state_alloc(dev);
11537 if (!state)
11538 return -ENOMEM;
11539 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
11540
11541retry:
11542 plane_state = drm_atomic_get_plane_state(state, primary);
11543 ret = PTR_ERR_OR_ZERO(plane_state);
11544 if (!ret) {
11545 drm_atomic_set_fb_for_plane(plane_state, fb);
11546
11547 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
11548 if (!ret)
11549 ret = drm_atomic_commit(state);
11550 }
11551
11552 if (ret == -EDEADLK) {
11553 drm_modeset_backoff(state->acquire_ctx);
11554 drm_atomic_state_clear(state);
11555 goto retry;
11556 }
11557
11558 if (ret)
11559 drm_atomic_state_free(state);
11560
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011561 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011562 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +020011563 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011564 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011565 }
Chris Wilsonf900db42014-02-20 09:26:13 +000011566 }
Chris Wilson96b099f2010-06-07 14:03:04 +010011567 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011568}
11569
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011570
11571/**
11572 * intel_wm_need_update - Check whether watermarks need updating
11573 * @plane: drm plane
11574 * @state: new plane state
11575 *
11576 * Check current plane state versus the new one to determine whether
11577 * watermarks need to be recalculated.
11578 *
11579 * Returns true or false.
11580 */
11581static bool intel_wm_need_update(struct drm_plane *plane,
11582 struct drm_plane_state *state)
11583{
11584 /* Update watermarks on tiling changes. */
11585 if (!plane->state->fb || !state->fb ||
11586 plane->state->fb->modifier[0] != state->fb->modifier[0] ||
11587 plane->state->rotation != state->rotation)
11588 return true;
11589
11590 if (plane->state->crtc_w != state->crtc_w)
11591 return true;
11592
11593 return false;
11594}
11595
11596int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
11597 struct drm_plane_state *plane_state)
11598{
11599 struct drm_crtc *crtc = crtc_state->crtc;
11600 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11601 struct drm_plane *plane = plane_state->plane;
11602 struct drm_device *dev = crtc->dev;
11603 struct drm_i915_private *dev_priv = dev->dev_private;
11604 struct intel_plane_state *old_plane_state =
11605 to_intel_plane_state(plane->state);
11606 int idx = intel_crtc->base.base.id, ret;
11607 int i = drm_plane_index(plane);
11608 bool mode_changed = needs_modeset(crtc_state);
11609 bool was_crtc_enabled = crtc->state->active;
11610 bool is_crtc_enabled = crtc_state->active;
11611
11612 bool turn_off, turn_on, visible, was_visible;
11613 struct drm_framebuffer *fb = plane_state->fb;
11614
11615 if (crtc_state && INTEL_INFO(dev)->gen >= 9 &&
11616 plane->type != DRM_PLANE_TYPE_CURSOR) {
11617 ret = skl_update_scaler_plane(
11618 to_intel_crtc_state(crtc_state),
11619 to_intel_plane_state(plane_state));
11620 if (ret)
11621 return ret;
11622 }
11623
11624 /*
11625 * Disabling a plane is always okay; we just need to update
11626 * fb tracking in a special way since cleanup_fb() won't
11627 * get called by the plane helpers.
11628 */
11629 if (old_plane_state->base.fb && !fb)
11630 intel_crtc->atomic.disabled_planes |= 1 << i;
11631
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011632 was_visible = old_plane_state->visible;
11633 visible = to_intel_plane_state(plane_state)->visible;
11634
11635 if (!was_crtc_enabled && WARN_ON(was_visible))
11636 was_visible = false;
11637
11638 if (!is_crtc_enabled && WARN_ON(visible))
11639 visible = false;
11640
11641 if (!was_visible && !visible)
11642 return 0;
11643
11644 turn_off = was_visible && (!visible || mode_changed);
11645 turn_on = visible && (!was_visible || mode_changed);
11646
11647 DRM_DEBUG_ATOMIC("[CRTC:%i] has [PLANE:%i] with fb %i\n", idx,
11648 plane->base.id, fb ? fb->base.id : -1);
11649
11650 DRM_DEBUG_ATOMIC("[PLANE:%i] visible %i -> %i, off %i, on %i, ms %i\n",
11651 plane->base.id, was_visible, visible,
11652 turn_off, turn_on, mode_changed);
11653
Ville Syrjälä852eb002015-06-24 22:00:07 +030011654 if (turn_on) {
Ville Syrjäläf015c552015-06-24 22:00:02 +030011655 intel_crtc->atomic.update_wm_pre = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +030011656 /* must disable cxsr around plane enable/disable */
11657 if (plane->type != DRM_PLANE_TYPE_CURSOR) {
11658 intel_crtc->atomic.disable_cxsr = true;
11659 /* to potentially re-enable cxsr */
11660 intel_crtc->atomic.wait_vblank = true;
11661 intel_crtc->atomic.update_wm_post = true;
11662 }
11663 } else if (turn_off) {
Ville Syrjäläf015c552015-06-24 22:00:02 +030011664 intel_crtc->atomic.update_wm_post = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +030011665 /* must disable cxsr around plane enable/disable */
11666 if (plane->type != DRM_PLANE_TYPE_CURSOR) {
11667 if (is_crtc_enabled)
11668 intel_crtc->atomic.wait_vblank = true;
11669 intel_crtc->atomic.disable_cxsr = true;
11670 }
11671 } else if (intel_wm_need_update(plane, plane_state)) {
Ville Syrjäläf015c552015-06-24 22:00:02 +030011672 intel_crtc->atomic.update_wm_pre = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +030011673 }
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011674
Rodrigo Vivi8be6ca82015-08-24 16:38:23 -070011675 if (visible || was_visible)
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011676 intel_crtc->atomic.fb_bits |=
11677 to_intel_plane(plane)->frontbuffer_bit;
11678
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011679 switch (plane->type) {
11680 case DRM_PLANE_TYPE_PRIMARY:
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011681 intel_crtc->atomic.wait_for_flips = true;
11682 intel_crtc->atomic.pre_disable_primary = turn_off;
11683 intel_crtc->atomic.post_enable_primary = turn_on;
11684
Rodrigo Vivi066cf55b2015-06-26 13:55:54 -070011685 if (turn_off) {
11686 /*
11687 * FIXME: Actually if we will still have any other
11688 * plane enabled on the pipe we could let IPS enabled
11689 * still, but for now lets consider that when we make
11690 * primary invisible by setting DSPCNTR to 0 on
11691 * update_primary_plane function IPS needs to be
11692 * disable.
11693 */
11694 intel_crtc->atomic.disable_ips = true;
11695
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011696 intel_crtc->atomic.disable_fbc = true;
Rodrigo Vivi066cf55b2015-06-26 13:55:54 -070011697 }
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011698
11699 /*
11700 * FBC does not work on some platforms for rotated
11701 * planes, so disable it when rotation is not 0 and
11702 * update it when rotation is set back to 0.
11703 *
11704 * FIXME: This is redundant with the fbc update done in
11705 * the primary plane enable function except that that
11706 * one is done too late. We eventually need to unify
11707 * this.
11708 */
11709
11710 if (visible &&
11711 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11712 dev_priv->fbc.crtc == intel_crtc &&
11713 plane_state->rotation != BIT(DRM_ROTATE_0))
11714 intel_crtc->atomic.disable_fbc = true;
11715
11716 /*
11717 * BDW signals flip done immediately if the plane
11718 * is disabled, even if the plane enable is already
11719 * armed to occur at the next vblank :(
11720 */
11721 if (turn_on && IS_BROADWELL(dev))
11722 intel_crtc->atomic.wait_vblank = true;
11723
11724 intel_crtc->atomic.update_fbc |= visible || mode_changed;
11725 break;
11726 case DRM_PLANE_TYPE_CURSOR:
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011727 break;
11728 case DRM_PLANE_TYPE_OVERLAY:
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020011729 if (turn_off && !mode_changed) {
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011730 intel_crtc->atomic.wait_vblank = true;
11731 intel_crtc->atomic.update_sprite_watermarks |=
11732 1 << i;
11733 }
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011734 }
11735 return 0;
11736}
11737
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011738static bool encoders_cloneable(const struct intel_encoder *a,
11739 const struct intel_encoder *b)
11740{
11741 /* masks could be asymmetric, so check both ways */
11742 return a == b || (a->cloneable & (1 << b->type) &&
11743 b->cloneable & (1 << a->type));
11744}
11745
11746static bool check_single_encoder_cloning(struct drm_atomic_state *state,
11747 struct intel_crtc *crtc,
11748 struct intel_encoder *encoder)
11749{
11750 struct intel_encoder *source_encoder;
11751 struct drm_connector *connector;
11752 struct drm_connector_state *connector_state;
11753 int i;
11754
11755 for_each_connector_in_state(state, connector, connector_state, i) {
11756 if (connector_state->crtc != &crtc->base)
11757 continue;
11758
11759 source_encoder =
11760 to_intel_encoder(connector_state->best_encoder);
11761 if (!encoders_cloneable(encoder, source_encoder))
11762 return false;
11763 }
11764
11765 return true;
11766}
11767
11768static bool check_encoder_cloning(struct drm_atomic_state *state,
11769 struct intel_crtc *crtc)
11770{
11771 struct intel_encoder *encoder;
11772 struct drm_connector *connector;
11773 struct drm_connector_state *connector_state;
11774 int i;
11775
11776 for_each_connector_in_state(state, connector, connector_state, i) {
11777 if (connector_state->crtc != &crtc->base)
11778 continue;
11779
11780 encoder = to_intel_encoder(connector_state->best_encoder);
11781 if (!check_single_encoder_cloning(state, crtc, encoder))
11782 return false;
11783 }
11784
11785 return true;
11786}
11787
11788static int intel_crtc_atomic_check(struct drm_crtc *crtc,
11789 struct drm_crtc_state *crtc_state)
11790{
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +020011791 struct drm_device *dev = crtc->dev;
Maarten Lankhorstad421372015-06-15 12:33:42 +020011792 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011793 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +020011794 struct intel_crtc_state *pipe_config =
11795 to_intel_crtc_state(crtc_state);
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011796 struct drm_atomic_state *state = crtc_state->state;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020011797 int ret;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011798 bool mode_changed = needs_modeset(crtc_state);
11799
11800 if (mode_changed && !check_encoder_cloning(state, intel_crtc)) {
11801 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
11802 return -EINVAL;
11803 }
11804
Ville Syrjälä852eb002015-06-24 22:00:07 +030011805 if (mode_changed && !crtc_state->active)
11806 intel_crtc->atomic.update_wm_post = true;
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +020011807
Maarten Lankhorstad421372015-06-15 12:33:42 +020011808 if (mode_changed && crtc_state->enable &&
11809 dev_priv->display.crtc_compute_clock &&
11810 !WARN_ON(pipe_config->shared_dpll != DPLL_ID_PRIVATE)) {
11811 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
11812 pipe_config);
11813 if (ret)
11814 return ret;
11815 }
11816
Maarten Lankhorste435d6e2015-07-13 16:30:15 +020011817 ret = 0;
11818 if (INTEL_INFO(dev)->gen >= 9) {
11819 if (mode_changed)
11820 ret = skl_update_scaler_crtc(pipe_config);
11821
11822 if (!ret)
11823 ret = intel_atomic_setup_scalers(dev, intel_crtc,
11824 pipe_config);
11825 }
11826
11827 return ret;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011828}
11829
Jani Nikula65b38e02015-04-13 11:26:56 +030011830static const struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011831 .mode_set_base_atomic = intel_pipe_set_base_atomic,
11832 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -080011833 .atomic_begin = intel_begin_crtc_commit,
11834 .atomic_flush = intel_finish_crtc_commit,
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011835 .atomic_check = intel_crtc_atomic_check,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011836};
11837
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020011838static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
11839{
11840 struct intel_connector *connector;
11841
11842 for_each_intel_connector(dev, connector) {
11843 if (connector->base.encoder) {
11844 connector->base.state->best_encoder =
11845 connector->base.encoder;
11846 connector->base.state->crtc =
11847 connector->base.encoder->crtc;
11848 } else {
11849 connector->base.state->best_encoder = NULL;
11850 connector->base.state->crtc = NULL;
11851 }
11852 }
11853}
11854
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011855static void
Robin Schroereba905b2014-05-18 02:24:50 +020011856connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011857 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011858{
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011859 int bpp = pipe_config->pipe_bpp;
11860
11861 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
11862 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011863 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011864
11865 /* Don't use an invalid EDID bpc value */
11866 if (connector->base.display_info.bpc &&
11867 connector->base.display_info.bpc * 3 < bpp) {
11868 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
11869 bpp, connector->base.display_info.bpc*3);
11870 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
11871 }
11872
11873 /* Clamp bpp to 8 on screens without EDID 1.4 */
11874 if (connector->base.display_info.bpc == 0 && bpp > 24) {
11875 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
11876 bpp);
11877 pipe_config->pipe_bpp = 24;
11878 }
11879}
11880
11881static int
11882compute_baseline_pipe_bpp(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011883 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011884{
11885 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011886 struct drm_atomic_state *state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011887 struct drm_connector *connector;
11888 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011889 int bpp, i;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011890
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011891 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)))
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011892 bpp = 10*3;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011893 else if (INTEL_INFO(dev)->gen >= 5)
11894 bpp = 12*3;
11895 else
11896 bpp = 8*3;
11897
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011898
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011899 pipe_config->pipe_bpp = bpp;
11900
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011901 state = pipe_config->base.state;
11902
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011903 /* Clamp display bpp to EDID value */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011904 for_each_connector_in_state(state, connector, connector_state, i) {
11905 if (connector_state->crtc != &crtc->base)
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011906 continue;
11907
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011908 connected_sink_compute_bpp(to_intel_connector(connector),
11909 pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011910 }
11911
11912 return bpp;
11913}
11914
Daniel Vetter644db712013-09-19 14:53:58 +020011915static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
11916{
11917 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
11918 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010011919 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020011920 mode->crtc_hdisplay, mode->crtc_hsync_start,
11921 mode->crtc_hsync_end, mode->crtc_htotal,
11922 mode->crtc_vdisplay, mode->crtc_vsync_start,
11923 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
11924}
11925
Daniel Vetterc0b03412013-05-28 12:05:54 +020011926static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011927 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020011928 const char *context)
11929{
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011930 struct drm_device *dev = crtc->base.dev;
11931 struct drm_plane *plane;
11932 struct intel_plane *intel_plane;
11933 struct intel_plane_state *state;
11934 struct drm_framebuffer *fb;
11935
11936 DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id,
11937 context, pipe_config, pipe_name(crtc->pipe));
Daniel Vetterc0b03412013-05-28 12:05:54 +020011938
11939 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
11940 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
11941 pipe_config->pipe_bpp, pipe_config->dither);
11942 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
11943 pipe_config->has_pch_encoder,
11944 pipe_config->fdi_lanes,
11945 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
11946 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
11947 pipe_config->fdi_m_n.tu);
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030011948 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030011949 pipe_config->has_dp_encoder,
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030011950 pipe_config->lane_count,
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030011951 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
11952 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
11953 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011954
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030011955 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011956 pipe_config->has_dp_encoder,
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030011957 pipe_config->lane_count,
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011958 pipe_config->dp_m2_n2.gmch_m,
11959 pipe_config->dp_m2_n2.gmch_n,
11960 pipe_config->dp_m2_n2.link_m,
11961 pipe_config->dp_m2_n2.link_n,
11962 pipe_config->dp_m2_n2.tu);
11963
Daniel Vetter55072d12014-11-20 16:10:28 +010011964 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
11965 pipe_config->has_audio,
11966 pipe_config->has_infoframe);
11967
Daniel Vetterc0b03412013-05-28 12:05:54 +020011968 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011969 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020011970 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011971 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
11972 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030011973 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030011974 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
11975 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Tvrtko Ursulin0ec463d2015-05-13 16:51:08 +010011976 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
11977 crtc->num_scalers,
11978 pipe_config->scaler_state.scaler_users,
11979 pipe_config->scaler_state.scaler_id);
Daniel Vetterc0b03412013-05-28 12:05:54 +020011980 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
11981 pipe_config->gmch_pfit.control,
11982 pipe_config->gmch_pfit.pgm_ratios,
11983 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010011984 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020011985 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010011986 pipe_config->pch_pfit.size,
11987 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030011988 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030011989 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011990
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010011991 if (IS_BROXTON(dev)) {
Imre Deak05712c12015-06-18 17:25:54 +030011992 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010011993 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
Imre Deakc8453332015-06-18 17:25:55 +030011994 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010011995 pipe_config->ddi_pll_sel,
11996 pipe_config->dpll_hw_state.ebb0,
Imre Deak05712c12015-06-18 17:25:54 +030011997 pipe_config->dpll_hw_state.ebb4,
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010011998 pipe_config->dpll_hw_state.pll0,
11999 pipe_config->dpll_hw_state.pll1,
12000 pipe_config->dpll_hw_state.pll2,
12001 pipe_config->dpll_hw_state.pll3,
12002 pipe_config->dpll_hw_state.pll6,
12003 pipe_config->dpll_hw_state.pll8,
Imre Deak05712c12015-06-18 17:25:54 +030012004 pipe_config->dpll_hw_state.pll9,
Imre Deakc8453332015-06-18 17:25:55 +030012005 pipe_config->dpll_hw_state.pll10,
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012006 pipe_config->dpll_hw_state.pcsdw12);
12007 } else if (IS_SKYLAKE(dev)) {
12008 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: "
12009 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
12010 pipe_config->ddi_pll_sel,
12011 pipe_config->dpll_hw_state.ctrl1,
12012 pipe_config->dpll_hw_state.cfgcr1,
12013 pipe_config->dpll_hw_state.cfgcr2);
12014 } else if (HAS_DDI(dev)) {
12015 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: wrpll: 0x%x\n",
12016 pipe_config->ddi_pll_sel,
12017 pipe_config->dpll_hw_state.wrpll);
12018 } else {
12019 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
12020 "fp0: 0x%x, fp1: 0x%x\n",
12021 pipe_config->dpll_hw_state.dpll,
12022 pipe_config->dpll_hw_state.dpll_md,
12023 pipe_config->dpll_hw_state.fp0,
12024 pipe_config->dpll_hw_state.fp1);
12025 }
12026
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012027 DRM_DEBUG_KMS("planes on this crtc\n");
12028 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
12029 intel_plane = to_intel_plane(plane);
12030 if (intel_plane->pipe != crtc->pipe)
12031 continue;
12032
12033 state = to_intel_plane_state(plane->state);
12034 fb = state->base.fb;
12035 if (!fb) {
12036 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d "
12037 "disabled, scaler_id = %d\n",
12038 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12039 plane->base.id, intel_plane->pipe,
12040 (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1,
12041 drm_plane_index(plane), state->scaler_id);
12042 continue;
12043 }
12044
12045 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled",
12046 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12047 plane->base.id, intel_plane->pipe,
12048 crtc->base.primary == plane ? 0 : intel_plane->plane + 1,
12049 drm_plane_index(plane));
12050 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x",
12051 fb->base.id, fb->width, fb->height, fb->pixel_format);
12052 DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n",
12053 state->scaler_id,
12054 state->src.x1 >> 16, state->src.y1 >> 16,
12055 drm_rect_width(&state->src) >> 16,
12056 drm_rect_height(&state->src) >> 16,
12057 state->dst.x1, state->dst.y1,
12058 drm_rect_width(&state->dst), drm_rect_height(&state->dst));
12059 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020012060}
12061
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012062static bool check_digital_port_conflicts(struct drm_atomic_state *state)
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012063{
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012064 struct drm_device *dev = state->dev;
12065 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012066 struct drm_connector *connector;
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012067 struct drm_connector_state *connector_state;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012068 unsigned int used_ports = 0;
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012069 int i;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012070
12071 /*
12072 * Walk the connector list instead of the encoder
12073 * list to detect the problem on ddi platforms
12074 * where there's just one encoder per digital port.
12075 */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012076 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012077 if (!connector_state->best_encoder)
12078 continue;
12079
12080 encoder = to_intel_encoder(connector_state->best_encoder);
12081
12082 WARN_ON(!connector_state->crtc);
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012083
12084 switch (encoder->type) {
12085 unsigned int port_mask;
12086 case INTEL_OUTPUT_UNKNOWN:
12087 if (WARN_ON(!HAS_DDI(dev)))
12088 break;
12089 case INTEL_OUTPUT_DISPLAYPORT:
12090 case INTEL_OUTPUT_HDMI:
12091 case INTEL_OUTPUT_EDP:
12092 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
12093
12094 /* the same port mustn't appear more than once */
12095 if (used_ports & port_mask)
12096 return false;
12097
12098 used_ports |= port_mask;
12099 default:
12100 break;
12101 }
12102 }
12103
12104 return true;
12105}
12106
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012107static void
12108clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12109{
12110 struct drm_crtc_state tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012111 struct intel_crtc_scaler_state scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012112 struct intel_dpll_hw_state dpll_hw_state;
12113 enum intel_dpll_id shared_dpll;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012114 uint32_t ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012115 bool force_thru;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012116
Ander Conselvan de Oliveira7546a382015-05-20 09:03:27 +030012117 /* FIXME: before the switch to atomic started, a new pipe_config was
12118 * kzalloc'd. Code that depends on any field being zero should be
12119 * fixed, so that the crtc_state can be safely duplicated. For now,
12120 * only fields that are know to not cause problems are preserved. */
12121
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012122 tmp_state = crtc_state->base;
Chandra Konduru663a3642015-04-07 15:28:41 -070012123 scaler_state = crtc_state->scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012124 shared_dpll = crtc_state->shared_dpll;
12125 dpll_hw_state = crtc_state->dpll_hw_state;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012126 ddi_pll_sel = crtc_state->ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012127 force_thru = crtc_state->pch_pfit.force_thru;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012128
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012129 memset(crtc_state, 0, sizeof *crtc_state);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012130
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012131 crtc_state->base = tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012132 crtc_state->scaler_state = scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012133 crtc_state->shared_dpll = shared_dpll;
12134 crtc_state->dpll_hw_state = dpll_hw_state;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012135 crtc_state->ddi_pll_sel = ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012136 crtc_state->pch_pfit.force_thru = force_thru;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012137}
12138
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012139static int
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012140intel_modeset_pipe_config(struct drm_crtc *crtc,
Maarten Lankhorstb3592832015-06-15 12:33:38 +020012141 struct intel_crtc_state *pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020012142{
Maarten Lankhorstb3592832015-06-15 12:33:38 +020012143 struct drm_atomic_state *state = pipe_config->base.state;
Daniel Vetter7758a112012-07-08 19:40:39 +020012144 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012145 struct drm_connector *connector;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012146 struct drm_connector_state *connector_state;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012147 int base_bpp, ret = -EINVAL;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012148 int i;
Daniel Vettere29c22c2013-02-21 00:00:16 +010012149 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020012150
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012151 clear_intel_crtc_state(pipe_config);
Daniel Vetter7758a112012-07-08 19:40:39 +020012152
Daniel Vettere143a212013-07-04 12:01:15 +020012153 pipe_config->cpu_transcoder =
12154 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012155
Imre Deak2960bc92013-07-30 13:36:32 +030012156 /*
12157 * Sanitize sync polarity flags based on requested ones. If neither
12158 * positive or negative polarity is requested, treat this as meaning
12159 * negative polarity.
12160 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012161 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012162 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012163 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012164
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012165 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012166 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012167 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012168
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012169 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
12170 pipe_config);
12171 if (base_bpp < 0)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012172 goto fail;
12173
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012174 /*
12175 * Determine the real pipe dimensions. Note that stereo modes can
12176 * increase the actual pipe size due to the frame doubling and
12177 * insertion of additional space for blanks between the frame. This
12178 * is stored in the crtc timings. We use the requested mode to do this
12179 * computation to clearly distinguish it from the adjusted mode, which
12180 * can be changed by the connectors in the below retry loop.
12181 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012182 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080012183 &pipe_config->pipe_src_w,
12184 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012185
Daniel Vettere29c22c2013-02-21 00:00:16 +010012186encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020012187 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020012188 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020012189 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020012190
Daniel Vetter135c81b2013-07-21 21:37:09 +020012191 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012192 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
12193 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020012194
Daniel Vetter7758a112012-07-08 19:40:39 +020012195 /* Pass our mode to the connectors and the CRTC to give them a chance to
12196 * adjust it according to limitations or connector properties, and also
12197 * a chance to reject the mode entirely.
12198 */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012199 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012200 if (connector_state->crtc != crtc)
12201 continue;
12202
12203 encoder = to_intel_encoder(connector_state->best_encoder);
12204
Daniel Vetterefea6e82013-07-21 21:36:59 +020012205 if (!(encoder->compute_config(encoder, pipe_config))) {
12206 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020012207 goto fail;
12208 }
12209 }
12210
Daniel Vetterff9a6752013-06-01 17:16:21 +020012211 /* Set default port clock if not overwritten by the encoder. Needs to be
12212 * done afterwards in case the encoder adjusts the mode. */
12213 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012214 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010012215 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020012216
Daniel Vettera43f6e02013-06-07 23:10:32 +020012217 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010012218 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020012219 DRM_DEBUG_KMS("CRTC fixup failed\n");
12220 goto fail;
12221 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010012222
12223 if (ret == RETRY) {
12224 if (WARN(!retry, "loop in pipe configuration computation\n")) {
12225 ret = -EINVAL;
12226 goto fail;
12227 }
12228
12229 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
12230 retry = false;
12231 goto encoder_retry;
12232 }
12233
Daniel Vettere8fa4272015-08-12 11:43:34 +020012234 /* Dithering seems to not pass-through bits correctly when it should, so
12235 * only enable it on 6bpc panels. */
12236 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
Daniel Vetter62f0ace2015-08-26 18:57:26 +020012237 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012238 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012239
Daniel Vetter7758a112012-07-08 19:40:39 +020012240fail:
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012241 return ret;
Daniel Vetter7758a112012-07-08 19:40:39 +020012242}
12243
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012244static void
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020012245intel_modeset_update_crtc_state(struct drm_atomic_state *state)
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012246{
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012247 struct drm_crtc *crtc;
12248 struct drm_crtc_state *crtc_state;
Maarten Lankhorst8a75d157c2015-07-13 16:30:14 +020012249 int i;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012250
Ville Syrjälä76688512014-01-10 11:28:06 +020012251 /* Double check state. */
Maarten Lankhorst8a75d157c2015-07-13 16:30:14 +020012252 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst3cb480b2015-06-01 12:49:49 +020012253 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +020012254
12255 /* Update hwmode for vblank functions */
12256 if (crtc->state->active)
12257 crtc->hwmode = crtc->state->adjusted_mode;
12258 else
12259 crtc->hwmode.crtc_clock = 0;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012260 }
Daniel Vetterea9d7582012-07-10 10:42:52 +020012261}
12262
Ville Syrjälä3bd26262013-09-06 23:29:02 +030012263static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030012264{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030012265 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030012266
12267 if (clock1 == clock2)
12268 return true;
12269
12270 if (!clock1 || !clock2)
12271 return false;
12272
12273 diff = abs(clock1 - clock2);
12274
12275 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
12276 return true;
12277
12278 return false;
12279}
12280
Daniel Vetter25c5b262012-07-08 22:08:04 +020012281#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
12282 list_for_each_entry((intel_crtc), \
12283 &(dev)->mode_config.crtc_list, \
12284 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020012285 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020012286
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012287static bool
12288intel_compare_m_n(unsigned int m, unsigned int n,
12289 unsigned int m2, unsigned int n2,
12290 bool exact)
12291{
12292 if (m == m2 && n == n2)
12293 return true;
12294
12295 if (exact || !m || !n || !m2 || !n2)
12296 return false;
12297
12298 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
12299
12300 if (m > m2) {
12301 while (m > m2) {
12302 m2 <<= 1;
12303 n2 <<= 1;
12304 }
12305 } else if (m < m2) {
12306 while (m < m2) {
12307 m <<= 1;
12308 n <<= 1;
12309 }
12310 }
12311
12312 return m == m2 && n == n2;
12313}
12314
12315static bool
12316intel_compare_link_m_n(const struct intel_link_m_n *m_n,
12317 struct intel_link_m_n *m2_n2,
12318 bool adjust)
12319{
12320 if (m_n->tu == m2_n2->tu &&
12321 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
12322 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
12323 intel_compare_m_n(m_n->link_m, m_n->link_n,
12324 m2_n2->link_m, m2_n2->link_n, !adjust)) {
12325 if (adjust)
12326 *m2_n2 = *m_n;
12327
12328 return true;
12329 }
12330
12331 return false;
12332}
12333
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012334static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020012335intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012336 struct intel_crtc_state *current_config,
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012337 struct intel_crtc_state *pipe_config,
12338 bool adjust)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012339{
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012340 bool ret = true;
12341
12342#define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
12343 do { \
12344 if (!adjust) \
12345 DRM_ERROR(fmt, ##__VA_ARGS__); \
12346 else \
12347 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
12348 } while (0)
12349
Daniel Vetter66e985c2013-06-05 13:34:20 +020012350#define PIPE_CONF_CHECK_X(name) \
12351 if (current_config->name != pipe_config->name) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012352 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Daniel Vetter66e985c2013-06-05 13:34:20 +020012353 "(expected 0x%08x, found 0x%08x)\n", \
12354 current_config->name, \
12355 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012356 ret = false; \
Daniel Vetter66e985c2013-06-05 13:34:20 +020012357 }
12358
Daniel Vetter08a24032013-04-19 11:25:34 +020012359#define PIPE_CONF_CHECK_I(name) \
12360 if (current_config->name != pipe_config->name) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012361 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Daniel Vetter08a24032013-04-19 11:25:34 +020012362 "(expected %i, found %i)\n", \
12363 current_config->name, \
12364 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012365 ret = false; \
12366 }
12367
12368#define PIPE_CONF_CHECK_M_N(name) \
12369 if (!intel_compare_link_m_n(&current_config->name, \
12370 &pipe_config->name,\
12371 adjust)) { \
12372 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12373 "(expected tu %i gmch %i/%i link %i/%i, " \
12374 "found tu %i, gmch %i/%i link %i/%i)\n", \
12375 current_config->name.tu, \
12376 current_config->name.gmch_m, \
12377 current_config->name.gmch_n, \
12378 current_config->name.link_m, \
12379 current_config->name.link_n, \
12380 pipe_config->name.tu, \
12381 pipe_config->name.gmch_m, \
12382 pipe_config->name.gmch_n, \
12383 pipe_config->name.link_m, \
12384 pipe_config->name.link_n); \
12385 ret = false; \
12386 }
12387
12388#define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
12389 if (!intel_compare_link_m_n(&current_config->name, \
12390 &pipe_config->name, adjust) && \
12391 !intel_compare_link_m_n(&current_config->alt_name, \
12392 &pipe_config->name, adjust)) { \
12393 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12394 "(expected tu %i gmch %i/%i link %i/%i, " \
12395 "or tu %i gmch %i/%i link %i/%i, " \
12396 "found tu %i, gmch %i/%i link %i/%i)\n", \
12397 current_config->name.tu, \
12398 current_config->name.gmch_m, \
12399 current_config->name.gmch_n, \
12400 current_config->name.link_m, \
12401 current_config->name.link_n, \
12402 current_config->alt_name.tu, \
12403 current_config->alt_name.gmch_m, \
12404 current_config->alt_name.gmch_n, \
12405 current_config->alt_name.link_m, \
12406 current_config->alt_name.link_n, \
12407 pipe_config->name.tu, \
12408 pipe_config->name.gmch_m, \
12409 pipe_config->name.gmch_n, \
12410 pipe_config->name.link_m, \
12411 pipe_config->name.link_n); \
12412 ret = false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010012413 }
12414
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012415/* This is required for BDW+ where there is only one set of registers for
12416 * switching between high and low RR.
12417 * This macro can be used whenever a comparison has to be made between one
12418 * hw state and multiple sw state variables.
12419 */
12420#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
12421 if ((current_config->name != pipe_config->name) && \
12422 (current_config->alt_name != pipe_config->name)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012423 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012424 "(expected %i or %i, found %i)\n", \
12425 current_config->name, \
12426 current_config->alt_name, \
12427 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012428 ret = false; \
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012429 }
12430
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012431#define PIPE_CONF_CHECK_FLAGS(name, mask) \
12432 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012433 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012434 "(expected %i, found %i)\n", \
12435 current_config->name & (mask), \
12436 pipe_config->name & (mask)); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012437 ret = false; \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012438 }
12439
Ville Syrjälä5e550652013-09-06 23:29:07 +030012440#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
12441 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012442 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Ville Syrjälä5e550652013-09-06 23:29:07 +030012443 "(expected %i, found %i)\n", \
12444 current_config->name, \
12445 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012446 ret = false; \
Ville Syrjälä5e550652013-09-06 23:29:07 +030012447 }
12448
Daniel Vetterbb760062013-06-06 14:55:52 +020012449#define PIPE_CONF_QUIRK(quirk) \
12450 ((current_config->quirks | pipe_config->quirks) & (quirk))
12451
Daniel Vettereccb1402013-05-22 00:50:22 +020012452 PIPE_CONF_CHECK_I(cpu_transcoder);
12453
Daniel Vetter08a24032013-04-19 11:25:34 +020012454 PIPE_CONF_CHECK_I(has_pch_encoder);
12455 PIPE_CONF_CHECK_I(fdi_lanes);
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012456 PIPE_CONF_CHECK_M_N(fdi_m_n);
Daniel Vetter08a24032013-04-19 11:25:34 +020012457
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012458 PIPE_CONF_CHECK_I(has_dp_encoder);
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012459 PIPE_CONF_CHECK_I(lane_count);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012460
12461 if (INTEL_INFO(dev)->gen < 8) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012462 PIPE_CONF_CHECK_M_N(dp_m_n);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012463
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012464 PIPE_CONF_CHECK_I(has_drrs);
12465 if (current_config->has_drrs)
12466 PIPE_CONF_CHECK_M_N(dp_m2_n2);
12467 } else
12468 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012469
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012470 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
12471 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
12472 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
12473 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
12474 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
12475 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012476
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012477 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
12478 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
12479 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
12480 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
12481 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
12482 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012483
Daniel Vetterc93f54c2013-06-27 19:47:19 +020012484 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b52014-04-24 23:54:47 +020012485 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020012486 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
12487 IS_VALLEYVIEW(dev))
12488 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080012489 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020012490
Daniel Vetter9ed109a2014-04-24 23:54:52 +020012491 PIPE_CONF_CHECK_I(has_audio);
12492
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012493 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012494 DRM_MODE_FLAG_INTERLACE);
12495
Daniel Vetterbb760062013-06-06 14:55:52 +020012496 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012497 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012498 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012499 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012500 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012501 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012502 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012503 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012504 DRM_MODE_FLAG_NVSYNC);
12505 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070012506
Ville Syrjälä333b8ca2015-09-03 21:50:16 +030012507 PIPE_CONF_CHECK_X(gmch_pfit.control);
Daniel Vettere2ff2d42015-07-15 14:15:50 +020012508 /* pfit ratios are autocomputed by the hw on gen4+ */
12509 if (INTEL_INFO(dev)->gen < 4)
12510 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
Ville Syrjälä333b8ca2015-09-03 21:50:16 +030012511 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
Daniel Vetter99535992014-04-13 12:00:33 +020012512
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020012513 if (!adjust) {
12514 PIPE_CONF_CHECK_I(pipe_src_w);
12515 PIPE_CONF_CHECK_I(pipe_src_h);
12516
12517 PIPE_CONF_CHECK_I(pch_pfit.enabled);
12518 if (current_config->pch_pfit.enabled) {
12519 PIPE_CONF_CHECK_X(pch_pfit.pos);
12520 PIPE_CONF_CHECK_X(pch_pfit.size);
12521 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020012522
Maarten Lankhorst7aefe2b2015-09-14 11:30:10 +020012523 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
12524 }
Chandra Kondurua1b22782015-04-07 15:28:45 -070012525
Jesse Barnese59150d2014-01-07 13:30:45 -080012526 /* BDW+ don't expose a synchronous way to read the state */
12527 if (IS_HASWELL(dev))
12528 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030012529
Ville Syrjälä282740f2013-09-04 18:30:03 +030012530 PIPE_CONF_CHECK_I(double_wide);
12531
Daniel Vetter26804af2014-06-25 22:01:55 +030012532 PIPE_CONF_CHECK_X(ddi_pll_sel);
12533
Daniel Vetterc0d43d62013-06-07 23:11:08 +020012534 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012535 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020012536 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012537 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
12538 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030012539 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000012540 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
12541 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
12542 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020012543
Ville Syrjälä42571ae2013-09-06 23:29:00 +030012544 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
12545 PIPE_CONF_CHECK_I(pipe_bpp);
12546
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012547 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080012548 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030012549
Daniel Vetter66e985c2013-06-05 13:34:20 +020012550#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020012551#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012552#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012553#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030012554#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020012555#undef PIPE_CONF_QUIRK
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012556#undef INTEL_ERR_OR_DBG_KMS
Daniel Vetter627eb5a2013-04-29 19:33:42 +020012557
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012558 return ret;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012559}
12560
Damien Lespiau08db6652014-11-04 17:06:52 +000012561static void check_wm_state(struct drm_device *dev)
12562{
12563 struct drm_i915_private *dev_priv = dev->dev_private;
12564 struct skl_ddb_allocation hw_ddb, *sw_ddb;
12565 struct intel_crtc *intel_crtc;
12566 int plane;
12567
12568 if (INTEL_INFO(dev)->gen < 9)
12569 return;
12570
12571 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
12572 sw_ddb = &dev_priv->wm.skl_hw.ddb;
12573
12574 for_each_intel_crtc(dev, intel_crtc) {
12575 struct skl_ddb_entry *hw_entry, *sw_entry;
12576 const enum pipe pipe = intel_crtc->pipe;
12577
12578 if (!intel_crtc->active)
12579 continue;
12580
12581 /* planes */
Damien Lespiaudd740782015-02-28 14:54:08 +000012582 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau08db6652014-11-04 17:06:52 +000012583 hw_entry = &hw_ddb.plane[pipe][plane];
12584 sw_entry = &sw_ddb->plane[pipe][plane];
12585
12586 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12587 continue;
12588
12589 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
12590 "(expected (%u,%u), found (%u,%u))\n",
12591 pipe_name(pipe), plane + 1,
12592 sw_entry->start, sw_entry->end,
12593 hw_entry->start, hw_entry->end);
12594 }
12595
12596 /* cursor */
12597 hw_entry = &hw_ddb.cursor[pipe];
12598 sw_entry = &sw_ddb->cursor[pipe];
12599
12600 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12601 continue;
12602
12603 DRM_ERROR("mismatch in DDB state pipe %c cursor "
12604 "(expected (%u,%u), found (%u,%u))\n",
12605 pipe_name(pipe),
12606 sw_entry->start, sw_entry->end,
12607 hw_entry->start, hw_entry->end);
12608 }
12609}
12610
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012611static void
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012612check_connector_state(struct drm_device *dev,
12613 struct drm_atomic_state *old_state)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012614{
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012615 struct drm_connector_state *old_conn_state;
12616 struct drm_connector *connector;
12617 int i;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012618
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012619 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
12620 struct drm_encoder *encoder = connector->encoder;
12621 struct drm_connector_state *state = connector->state;
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012622
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012623 /* This also checks the encoder/connector hw state with the
12624 * ->get_hw_state callbacks. */
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012625 intel_connector_check_state(to_intel_connector(connector));
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012626
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012627 I915_STATE_WARN(state->best_encoder != encoder,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012628 "connector's atomic encoder doesn't match legacy encoder\n");
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012629 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012630}
12631
12632static void
12633check_encoder_state(struct drm_device *dev)
12634{
12635 struct intel_encoder *encoder;
12636 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012637
Damien Lespiaub2784e12014-08-05 11:29:37 +010012638 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012639 bool enabled = false;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012640 enum pipe pipe;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012641
12642 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
12643 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030012644 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012645
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012646 for_each_intel_connector(dev, connector) {
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012647 if (connector->base.state->best_encoder != &encoder->base)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012648 continue;
12649 enabled = true;
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012650
12651 I915_STATE_WARN(connector->base.state->crtc !=
12652 encoder->base.crtc,
12653 "connector's crtc doesn't match encoder crtc\n");
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012654 }
Dave Airlie0e32b392014-05-02 14:02:48 +100012655
Rob Clarke2c719b2014-12-15 13:56:32 -050012656 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012657 "encoder's enabled state mismatch "
12658 "(expected %i, found %i)\n",
12659 !!encoder->base.crtc, enabled);
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012660
12661 if (!encoder->base.crtc) {
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012662 bool active;
12663
12664 active = encoder->get_hw_state(encoder, &pipe);
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012665 I915_STATE_WARN(active,
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012666 "encoder detached but still enabled on pipe %c.\n",
12667 pipe_name(pipe));
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012668 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012669 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012670}
12671
12672static void
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012673check_crtc_state(struct drm_device *dev, struct drm_atomic_state *old_state)
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012674{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012675 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012676 struct intel_encoder *encoder;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012677 struct drm_crtc_state *old_crtc_state;
12678 struct drm_crtc *crtc;
12679 int i;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012680
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012681 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
12682 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12683 struct intel_crtc_state *pipe_config, *sw_config;
Maarten Lankhorst7b89b8d2015-08-05 12:37:03 +020012684 bool active;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012685
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020012686 if (!needs_modeset(crtc->state) &&
12687 !to_intel_crtc_state(crtc->state)->update_pipe)
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012688 continue;
12689
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012690 __drm_atomic_helper_crtc_destroy_state(crtc, old_crtc_state);
12691 pipe_config = to_intel_crtc_state(old_crtc_state);
12692 memset(pipe_config, 0, sizeof(*pipe_config));
12693 pipe_config->base.crtc = crtc;
12694 pipe_config->base.state = old_state;
12695
12696 DRM_DEBUG_KMS("[CRTC:%d]\n",
12697 crtc->base.id);
12698
12699 active = dev_priv->display.get_pipe_config(intel_crtc,
12700 pipe_config);
12701
12702 /* hw state is inconsistent with the pipe quirk */
12703 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
12704 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
12705 active = crtc->state->active;
12706
12707 I915_STATE_WARN(crtc->state->active != active,
12708 "crtc active state doesn't match with hw state "
12709 "(expected %i, found %i)\n", crtc->state->active, active);
12710
12711 I915_STATE_WARN(intel_crtc->active != crtc->state->active,
12712 "transitional active state does not match atomic hw state "
12713 "(expected %i, found %i)\n", crtc->state->active, intel_crtc->active);
12714
12715 for_each_encoder_on_crtc(dev, crtc, encoder) {
12716 enum pipe pipe;
12717
12718 active = encoder->get_hw_state(encoder, &pipe);
12719 I915_STATE_WARN(active != crtc->state->active,
12720 "[ENCODER:%i] active %i with crtc active %i\n",
12721 encoder->base.base.id, active, crtc->state->active);
12722
12723 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
12724 "Encoder connected to wrong pipe %c\n",
12725 pipe_name(pipe));
12726
12727 if (active)
12728 encoder->get_config(encoder, pipe_config);
12729 }
12730
12731 if (!crtc->state->active)
12732 continue;
12733
12734 sw_config = to_intel_crtc_state(crtc->state);
12735 if (!intel_pipe_config_compare(dev, sw_config,
12736 pipe_config, false)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050012737 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012738 intel_dump_pipe_config(intel_crtc, pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020012739 "[hw state]");
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012740 intel_dump_pipe_config(intel_crtc, sw_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020012741 "[sw state]");
12742 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012743 }
12744}
12745
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012746static void
12747check_shared_dpll_state(struct drm_device *dev)
12748{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012749 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012750 struct intel_crtc *crtc;
12751 struct intel_dpll_hw_state dpll_hw_state;
12752 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020012753
12754 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12755 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12756 int enabled_crtcs = 0, active_crtcs = 0;
12757 bool active;
12758
12759 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
12760
12761 DRM_DEBUG_KMS("%s\n", pll->name);
12762
12763 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
12764
Rob Clarke2c719b2014-12-15 13:56:32 -050012765 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020012766 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012767 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050012768 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020012769 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050012770 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020012771 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050012772 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020012773 "pll on state mismatch (expected %i, found %i)\n",
12774 pll->on, active);
12775
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012776 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080012777 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
Daniel Vetter53589012013-06-05 13:34:16 +020012778 enabled_crtcs++;
12779 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
12780 active_crtcs++;
12781 }
Rob Clarke2c719b2014-12-15 13:56:32 -050012782 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020012783 "pll active crtcs mismatch (expected %i, found %i)\n",
12784 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050012785 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020012786 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012787 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012788
Rob Clarke2c719b2014-12-15 13:56:32 -050012789 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020012790 sizeof(dpll_hw_state)),
12791 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020012792 }
Daniel Vettere2e1ed42012-07-08 21:14:38 +020012793}
12794
Maarten Lankhorstee165b12015-08-05 12:37:00 +020012795static void
12796intel_modeset_check_state(struct drm_device *dev,
12797 struct drm_atomic_state *old_state)
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012798{
Damien Lespiau08db6652014-11-04 17:06:52 +000012799 check_wm_state(dev);
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012800 check_connector_state(dev, old_state);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012801 check_encoder_state(dev);
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012802 check_crtc_state(dev, old_state);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012803 check_shared_dpll_state(dev);
12804}
12805
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012806void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030012807 int dotclock)
12808{
12809 /*
12810 * FDI already provided one idea for the dotclock.
12811 * Yell if the encoder disagrees.
12812 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012813 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030012814 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012815 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030012816}
12817
Ville Syrjälä80715b22014-05-15 20:23:23 +030012818static void update_scanline_offset(struct intel_crtc *crtc)
12819{
12820 struct drm_device *dev = crtc->base.dev;
12821
12822 /*
12823 * The scanline counter increments at the leading edge of hsync.
12824 *
12825 * On most platforms it starts counting from vtotal-1 on the
12826 * first active line. That means the scanline counter value is
12827 * always one less than what we would expect. Ie. just after
12828 * start of vblank, which also occurs at start of hsync (on the
12829 * last active line), the scanline counter will read vblank_start-1.
12830 *
12831 * On gen2 the scanline counter starts counting from 1 instead
12832 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
12833 * to keep the value positive), instead of adding one.
12834 *
12835 * On HSW+ the behaviour of the scanline counter depends on the output
12836 * type. For DP ports it behaves like most other platforms, but on HDMI
12837 * there's an extra 1 line difference. So we need to add two instead of
12838 * one to the value.
12839 */
12840 if (IS_GEN2(dev)) {
Ville Syrjälä124abe02015-09-08 13:40:45 +030012841 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030012842 int vtotal;
12843
Ville Syrjälä124abe02015-09-08 13:40:45 +030012844 vtotal = adjusted_mode->crtc_vtotal;
12845 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
Ville Syrjälä80715b22014-05-15 20:23:23 +030012846 vtotal /= 2;
12847
12848 crtc->scanline_offset = vtotal - 1;
12849 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030012850 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030012851 crtc->scanline_offset = 2;
12852 } else
12853 crtc->scanline_offset = 1;
12854}
12855
Maarten Lankhorstad421372015-06-15 12:33:42 +020012856static void intel_modeset_clear_plls(struct drm_atomic_state *state)
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012857{
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012858 struct drm_device *dev = state->dev;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012859 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstad421372015-06-15 12:33:42 +020012860 struct intel_shared_dpll_config *shared_dpll = NULL;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012861 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012862 struct intel_crtc_state *intel_crtc_state;
12863 struct drm_crtc *crtc;
12864 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012865 int i;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012866
12867 if (!dev_priv->display.crtc_compute_clock)
Maarten Lankhorstad421372015-06-15 12:33:42 +020012868 return;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012869
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012870 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstad421372015-06-15 12:33:42 +020012871 int dpll;
12872
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012873 intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012874 intel_crtc_state = to_intel_crtc_state(crtc_state);
Maarten Lankhorstad421372015-06-15 12:33:42 +020012875 dpll = intel_crtc_state->shared_dpll;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012876
Maarten Lankhorstad421372015-06-15 12:33:42 +020012877 if (!needs_modeset(crtc_state) || dpll == DPLL_ID_PRIVATE)
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012878 continue;
12879
Maarten Lankhorstad421372015-06-15 12:33:42 +020012880 intel_crtc_state->shared_dpll = DPLL_ID_PRIVATE;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012881
Maarten Lankhorstad421372015-06-15 12:33:42 +020012882 if (!shared_dpll)
12883 shared_dpll = intel_atomic_get_shared_dpll_state(state);
12884
12885 shared_dpll[dpll].crtc_mask &= ~(1 << intel_crtc->pipe);
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012886 }
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012887}
12888
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020012889/*
12890 * This implements the workaround described in the "notes" section of the mode
12891 * set sequence documentation. When going from no pipes or single pipe to
12892 * multiple pipes, and planes are enabled after the pipe, we need to wait at
12893 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
12894 */
12895static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
12896{
12897 struct drm_crtc_state *crtc_state;
12898 struct intel_crtc *intel_crtc;
12899 struct drm_crtc *crtc;
12900 struct intel_crtc_state *first_crtc_state = NULL;
12901 struct intel_crtc_state *other_crtc_state = NULL;
12902 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
12903 int i;
12904
12905 /* look at all crtc's that are going to be enabled in during modeset */
12906 for_each_crtc_in_state(state, crtc, crtc_state, i) {
12907 intel_crtc = to_intel_crtc(crtc);
12908
12909 if (!crtc_state->active || !needs_modeset(crtc_state))
12910 continue;
12911
12912 if (first_crtc_state) {
12913 other_crtc_state = to_intel_crtc_state(crtc_state);
12914 break;
12915 } else {
12916 first_crtc_state = to_intel_crtc_state(crtc_state);
12917 first_pipe = intel_crtc->pipe;
12918 }
12919 }
12920
12921 /* No workaround needed? */
12922 if (!first_crtc_state)
12923 return 0;
12924
12925 /* w/a possibly needed, check how many crtc's are already enabled. */
12926 for_each_intel_crtc(state->dev, intel_crtc) {
12927 struct intel_crtc_state *pipe_config;
12928
12929 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
12930 if (IS_ERR(pipe_config))
12931 return PTR_ERR(pipe_config);
12932
12933 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
12934
12935 if (!pipe_config->base.active ||
12936 needs_modeset(&pipe_config->base))
12937 continue;
12938
12939 /* 2 or more enabled crtcs means no need for w/a */
12940 if (enabled_pipe != INVALID_PIPE)
12941 return 0;
12942
12943 enabled_pipe = intel_crtc->pipe;
12944 }
12945
12946 if (enabled_pipe != INVALID_PIPE)
12947 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
12948 else if (other_crtc_state)
12949 other_crtc_state->hsw_workaround_pipe = first_pipe;
12950
12951 return 0;
12952}
12953
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020012954static int intel_modeset_all_pipes(struct drm_atomic_state *state)
12955{
12956 struct drm_crtc *crtc;
12957 struct drm_crtc_state *crtc_state;
12958 int ret = 0;
12959
12960 /* add all active pipes to the state */
12961 for_each_crtc(state->dev, crtc) {
12962 crtc_state = drm_atomic_get_crtc_state(state, crtc);
12963 if (IS_ERR(crtc_state))
12964 return PTR_ERR(crtc_state);
12965
12966 if (!crtc_state->active || needs_modeset(crtc_state))
12967 continue;
12968
12969 crtc_state->mode_changed = true;
12970
12971 ret = drm_atomic_add_affected_connectors(state, crtc);
12972 if (ret)
12973 break;
12974
12975 ret = drm_atomic_add_affected_planes(state, crtc);
12976 if (ret)
12977 break;
12978 }
12979
12980 return ret;
12981}
12982
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020012983static int intel_modeset_checks(struct drm_atomic_state *state)
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030012984{
12985 struct drm_device *dev = state->dev;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020012986 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030012987 int ret;
12988
Maarten Lankhorstb3592832015-06-15 12:33:38 +020012989 if (!check_digital_port_conflicts(state)) {
12990 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
12991 return -EINVAL;
12992 }
12993
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030012994 /*
12995 * See if the config requires any additional preparation, e.g.
12996 * to adjust global state with pipes off. We need to do this
12997 * here so we can get the modeset_pipe updated config for the new
12998 * mode set on this crtc. For other crtcs we need to use the
12999 * adjusted_mode bits in the crtc directly.
13000 */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013001 if (dev_priv->display.modeset_calc_cdclk) {
13002 unsigned int cdclk;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030013003
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013004 ret = dev_priv->display.modeset_calc_cdclk(state);
13005
13006 cdclk = to_intel_atomic_state(state)->cdclk;
13007 if (!ret && cdclk != dev_priv->cdclk_freq)
13008 ret = intel_modeset_all_pipes(state);
13009
13010 if (ret < 0)
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013011 return ret;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013012 } else
13013 to_intel_atomic_state(state)->cdclk = dev_priv->cdclk_freq;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013014
Maarten Lankhorstad421372015-06-15 12:33:42 +020013015 intel_modeset_clear_plls(state);
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013016
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020013017 if (IS_HASWELL(dev))
Maarten Lankhorstad421372015-06-15 12:33:42 +020013018 return haswell_mode_set_planes_workaround(state);
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020013019
Maarten Lankhorstad421372015-06-15 12:33:42 +020013020 return 0;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013021}
13022
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013023/**
13024 * intel_atomic_check - validate state object
13025 * @dev: drm device
13026 * @state: state to validate
13027 */
13028static int intel_atomic_check(struct drm_device *dev,
13029 struct drm_atomic_state *state)
Daniel Vettera6778b32012-07-02 09:56:42 +020013030{
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013031 struct drm_crtc *crtc;
13032 struct drm_crtc_state *crtc_state;
13033 int ret, i;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013034 bool any_ms = false;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013035
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013036 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vettera6778b32012-07-02 09:56:42 +020013037 if (ret)
13038 return ret;
13039
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013040 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013041 struct intel_crtc_state *pipe_config =
13042 to_intel_crtc_state(crtc_state);
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013043
13044 /* Catch I915_MODE_FLAG_INHERITED */
13045 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
13046 crtc_state->mode_changed = true;
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013047
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013048 if (!crtc_state->enable) {
13049 if (needs_modeset(crtc_state))
13050 any_ms = true;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013051 continue;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013052 }
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013053
Daniel Vetter26495482015-07-15 14:15:52 +020013054 if (!needs_modeset(crtc_state))
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013055 continue;
13056
Daniel Vetter26495482015-07-15 14:15:52 +020013057 /* FIXME: For only active_changed we shouldn't need to do any
13058 * state recomputation at all. */
13059
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013060 ret = drm_atomic_add_affected_connectors(state, crtc);
13061 if (ret)
13062 return ret;
Maarten Lankhorstb3592832015-06-15 12:33:38 +020013063
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013064 ret = intel_modeset_pipe_config(crtc, pipe_config);
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013065 if (ret)
13066 return ret;
13067
Maarten Lankhorst6764e9f2015-08-27 15:44:06 +020013068 if (intel_pipe_config_compare(state->dev,
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013069 to_intel_crtc_state(crtc->state),
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013070 pipe_config, true)) {
Daniel Vetter26495482015-07-15 14:15:52 +020013071 crtc_state->mode_changed = false;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013072 to_intel_crtc_state(crtc_state)->update_pipe = true;
Daniel Vetter26495482015-07-15 14:15:52 +020013073 }
13074
13075 if (needs_modeset(crtc_state)) {
13076 any_ms = true;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013077
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013078 ret = drm_atomic_add_affected_planes(state, crtc);
13079 if (ret)
13080 return ret;
13081 }
13082
Daniel Vetter26495482015-07-15 14:15:52 +020013083 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
13084 needs_modeset(crtc_state) ?
13085 "[modeset]" : "[fastset]");
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013086 }
13087
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013088 if (any_ms) {
13089 ret = intel_modeset_checks(state);
13090
13091 if (ret)
13092 return ret;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013093 } else
13094 to_intel_atomic_state(state)->cdclk =
13095 to_i915(state->dev)->cdclk_freq;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013096
13097 return drm_atomic_helper_check_planes(state->dev, state);
Daniel Vettera6778b32012-07-02 09:56:42 +020013098}
13099
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013100/**
13101 * intel_atomic_commit - commit validated state object
13102 * @dev: DRM device
13103 * @state: the top-level driver state object
13104 * @async: asynchronous commit
13105 *
13106 * This function commits a top-level state object that has been validated
13107 * with drm_atomic_helper_check().
13108 *
13109 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
13110 * we can only handle plane-related operations and do not yet support
13111 * asynchronous commit.
13112 *
13113 * RETURNS
13114 * Zero for success or -errno.
13115 */
13116static int intel_atomic_commit(struct drm_device *dev,
13117 struct drm_atomic_state *state,
13118 bool async)
Daniel Vettera6778b32012-07-02 09:56:42 +020013119{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013120 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013121 struct drm_crtc *crtc;
13122 struct drm_crtc_state *crtc_state;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013123 int ret = 0;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013124 int i;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013125 bool any_ms = false;
Daniel Vettera6778b32012-07-02 09:56:42 +020013126
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013127 if (async) {
13128 DRM_DEBUG_KMS("i915 does not yet support async commit\n");
13129 return -EINVAL;
13130 }
13131
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030013132 ret = drm_atomic_helper_prepare_planes(dev, state);
13133 if (ret)
13134 return ret;
13135
Maarten Lankhorst1c5e19f2015-06-01 12:50:06 +020013136 drm_atomic_helper_swap_state(dev, state);
13137
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013138 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013139 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13140
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013141 if (!needs_modeset(crtc->state))
13142 continue;
13143
13144 any_ms = true;
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013145 intel_pre_plane_update(intel_crtc);
Daniel Vetter460da9162013-03-27 00:44:51 +010013146
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013147 if (crtc_state->active) {
13148 intel_crtc_disable_planes(crtc, crtc_state->plane_mask);
13149 dev_priv->display.crtc_disable(crtc);
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +020013150 intel_crtc->active = false;
13151 intel_disable_shared_dpll(intel_crtc);
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013152 }
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010013153 }
Daniel Vetter7758a112012-07-08 19:40:39 +020013154
Daniel Vetterea9d7582012-07-10 10:42:52 +020013155 /* Only after disabling all output pipelines that will be changed can we
13156 * update the the output configuration. */
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013157 intel_modeset_update_crtc_state(state);
Daniel Vetterea9d7582012-07-10 10:42:52 +020013158
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013159 if (any_ms) {
13160 intel_shared_dpll_commit(state);
13161
13162 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013163 modeset_update_crtc_power_domains(state);
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013164 }
Daniel Vetter47fab732012-10-26 10:58:18 +020013165
Daniel Vettera6778b32012-07-02 09:56:42 +020013166 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013167 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013168 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13169 bool modeset = needs_modeset(crtc->state);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013170 bool update_pipe = !modeset &&
13171 to_intel_crtc_state(crtc->state)->update_pipe;
13172 unsigned long put_domains = 0;
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013173
13174 if (modeset && crtc->state->active) {
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013175 update_scanline_offset(to_intel_crtc(crtc));
13176 dev_priv->display.crtc_enable(crtc);
13177 }
13178
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013179 if (update_pipe) {
13180 put_domains = modeset_get_crtc_power_domains(crtc);
13181
13182 /* make sure intel_modeset_check_state runs */
13183 any_ms = true;
13184 }
13185
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013186 if (!modeset)
13187 intel_pre_plane_update(intel_crtc);
13188
Maarten Lankhorst5ac1c4b2015-06-01 12:50:01 +020013189 drm_atomic_helper_commit_planes_on_crtc(crtc_state);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013190
13191 if (put_domains)
13192 modeset_put_power_domains(dev_priv, put_domains);
13193
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013194 intel_post_plane_update(intel_crtc);
Ville Syrjälä80715b22014-05-15 20:23:23 +030013195 }
Daniel Vettera6778b32012-07-02 09:56:42 +020013196
Daniel Vettera6778b32012-07-02 09:56:42 +020013197 /* FIXME: add subpixel order */
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013198
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013199 drm_atomic_helper_wait_for_vblanks(dev, state);
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030013200 drm_atomic_helper_cleanup_planes(dev, state);
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013201
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013202 if (any_ms)
Maarten Lankhorstee165b12015-08-05 12:37:00 +020013203 intel_modeset_check_state(dev, state);
13204
13205 drm_atomic_state_free(state);
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013206
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013207 return 0;
Daniel Vetterf30da182013-04-11 20:22:50 +020013208}
13209
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013210void intel_crtc_restore_mode(struct drm_crtc *crtc)
13211{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013212 struct drm_device *dev = crtc->dev;
13213 struct drm_atomic_state *state;
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013214 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013215 int ret;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013216
13217 state = drm_atomic_state_alloc(dev);
13218 if (!state) {
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013219 DRM_DEBUG_KMS("[CRTC:%d] crtc restore failed, out of memory",
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013220 crtc->base.id);
13221 return;
13222 }
13223
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013224 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013225
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013226retry:
13227 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13228 ret = PTR_ERR_OR_ZERO(crtc_state);
13229 if (!ret) {
13230 if (!crtc_state->active)
13231 goto out;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013232
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013233 crtc_state->mode_changed = true;
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013234 ret = drm_atomic_commit(state);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013235 }
13236
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013237 if (ret == -EDEADLK) {
13238 drm_atomic_state_clear(state);
13239 drm_modeset_backoff(state->acquire_ctx);
13240 goto retry;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030013241 }
13242
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013243 if (ret)
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013244out:
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013245 drm_atomic_state_free(state);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013246}
13247
Daniel Vetter25c5b262012-07-08 22:08:04 +020013248#undef for_each_intel_crtc_masked
13249
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013250static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013251 .gamma_set = intel_crtc_gamma_set,
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013252 .set_config = drm_atomic_helper_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013253 .destroy = intel_crtc_destroy,
13254 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080013255 .atomic_duplicate_state = intel_crtc_duplicate_state,
13256 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013257};
13258
Daniel Vetter53589012013-06-05 13:34:16 +020013259static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
13260 struct intel_shared_dpll *pll,
13261 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013262{
Daniel Vetter53589012013-06-05 13:34:16 +020013263 uint32_t val;
13264
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013265 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013266 return false;
13267
Daniel Vetter53589012013-06-05 13:34:16 +020013268 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020013269 hw_state->dpll = val;
13270 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
13271 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020013272
13273 return val & DPLL_VCO_ENABLE;
13274}
13275
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013276static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
13277 struct intel_shared_dpll *pll)
13278{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013279 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
13280 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013281}
13282
Daniel Vettere7b903d2013-06-05 13:34:14 +020013283static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
13284 struct intel_shared_dpll *pll)
13285{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013286 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020013287 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020013288
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013289 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013290
13291 /* Wait for the clocks to stabilize. */
13292 POSTING_READ(PCH_DPLL(pll->id));
13293 udelay(150);
13294
13295 /* The pixel multiplier can only be updated once the
13296 * DPLL is enabled and the clocks are stable.
13297 *
13298 * So write it again.
13299 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013300 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013301 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013302 udelay(200);
13303}
13304
13305static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
13306 struct intel_shared_dpll *pll)
13307{
13308 struct drm_device *dev = dev_priv->dev;
13309 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013310
13311 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013312 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020013313 if (intel_crtc_to_shared_dpll(crtc) == pll)
13314 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
13315 }
13316
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013317 I915_WRITE(PCH_DPLL(pll->id), 0);
13318 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013319 udelay(200);
13320}
13321
Daniel Vetter46edb022013-06-05 13:34:12 +020013322static char *ibx_pch_dpll_names[] = {
13323 "PCH DPLL A",
13324 "PCH DPLL B",
13325};
13326
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013327static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013328{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013329 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013330 int i;
13331
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013332 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013333
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013334 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020013335 dev_priv->shared_dplls[i].id = i;
13336 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013337 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013338 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
13339 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020013340 dev_priv->shared_dplls[i].get_hw_state =
13341 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013342 }
13343}
13344
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013345static void intel_shared_dpll_init(struct drm_device *dev)
13346{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013347 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013348
Daniel Vetter9cd86932014-06-25 22:01:57 +030013349 if (HAS_DDI(dev))
13350 intel_ddi_pll_init(dev);
13351 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013352 ibx_pch_dpll_init(dev);
13353 else
13354 dev_priv->num_shared_dpll = 0;
13355
13356 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013357}
13358
Matt Roper6beb8c232014-12-01 15:40:14 -080013359/**
13360 * intel_prepare_plane_fb - Prepare fb for usage on plane
13361 * @plane: drm plane to prepare for
13362 * @fb: framebuffer to prepare for presentation
13363 *
13364 * Prepares a framebuffer for usage on a display plane. Generally this
13365 * involves pinning the underlying object and updating the frontbuffer tracking
13366 * bits. Some older platforms need special physical address handling for
13367 * cursor planes.
13368 *
13369 * Returns 0 on success, negative error code on failure.
13370 */
13371int
13372intel_prepare_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013373 const struct drm_plane_state *new_state)
Matt Roper465c1202014-05-29 08:06:54 -070013374{
13375 struct drm_device *dev = plane->dev;
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013376 struct drm_framebuffer *fb = new_state->fb;
Matt Roper6beb8c232014-12-01 15:40:14 -080013377 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper6beb8c232014-12-01 15:40:14 -080013378 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
13379 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
Matt Roper6beb8c232014-12-01 15:40:14 -080013380 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070013381
Matt Roperea2c67b2014-12-23 10:41:52 -080013382 if (!obj)
Matt Roper465c1202014-05-29 08:06:54 -070013383 return 0;
13384
Matt Roper4c345742014-07-09 16:22:10 -070013385 mutex_lock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070013386
Matt Roper6beb8c232014-12-01 15:40:14 -080013387 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
13388 INTEL_INFO(dev)->cursor_needs_physical) {
13389 int align = IS_I830(dev) ? 16 * 1024 : 256;
13390 ret = i915_gem_object_attach_phys(obj, align);
13391 if (ret)
13392 DRM_DEBUG_KMS("failed to attach phys object\n");
13393 } else {
John Harrison91af1272015-06-18 13:14:56 +010013394 ret = intel_pin_and_fence_fb_obj(plane, fb, new_state, NULL, NULL);
Matt Roper6beb8c232014-12-01 15:40:14 -080013395 }
13396
13397 if (ret == 0)
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030013398 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
Matt Roper6beb8c232014-12-01 15:40:14 -080013399
13400 mutex_unlock(&dev->struct_mutex);
13401
13402 return ret;
13403}
13404
Matt Roper38f3ce32014-12-02 07:45:25 -080013405/**
13406 * intel_cleanup_plane_fb - Cleans up an fb after plane use
13407 * @plane: drm plane to clean up for
13408 * @fb: old framebuffer that was on plane
13409 *
13410 * Cleans up a framebuffer that has just been removed from a plane.
13411 */
13412void
13413intel_cleanup_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013414 const struct drm_plane_state *old_state)
Matt Roper38f3ce32014-12-02 07:45:25 -080013415{
13416 struct drm_device *dev = plane->dev;
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013417 struct drm_i915_gem_object *obj = intel_fb_obj(old_state->fb);
Matt Roper38f3ce32014-12-02 07:45:25 -080013418
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013419 if (!obj)
Matt Roper38f3ce32014-12-02 07:45:25 -080013420 return;
13421
13422 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
13423 !INTEL_INFO(dev)->cursor_needs_physical) {
13424 mutex_lock(&dev->struct_mutex);
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013425 intel_unpin_fb_obj(old_state->fb, old_state);
Matt Roper38f3ce32014-12-02 07:45:25 -080013426 mutex_unlock(&dev->struct_mutex);
13427 }
Matt Roper465c1202014-05-29 08:06:54 -070013428}
13429
Chandra Konduru6156a452015-04-27 13:48:39 -070013430int
13431skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
13432{
13433 int max_scale;
13434 struct drm_device *dev;
13435 struct drm_i915_private *dev_priv;
13436 int crtc_clock, cdclk;
13437
13438 if (!intel_crtc || !crtc_state)
13439 return DRM_PLANE_HELPER_NO_SCALING;
13440
13441 dev = intel_crtc->base.dev;
13442 dev_priv = dev->dev_private;
13443 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013444 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
Chandra Konduru6156a452015-04-27 13:48:39 -070013445
13446 if (!crtc_clock || !cdclk)
13447 return DRM_PLANE_HELPER_NO_SCALING;
13448
13449 /*
13450 * skl max scale is lower of:
13451 * close to 3 but not 3, -1 is for that purpose
13452 * or
13453 * cdclk/crtc_clock
13454 */
13455 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
13456
13457 return max_scale;
13458}
13459
Matt Roper465c1202014-05-29 08:06:54 -070013460static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013461intel_check_primary_plane(struct drm_plane *plane,
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013462 struct intel_crtc_state *crtc_state,
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013463 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070013464{
Matt Roper2b875c22014-12-01 15:40:13 -080013465 struct drm_crtc *crtc = state->base.crtc;
13466 struct drm_framebuffer *fb = state->base.fb;
Chandra Konduru6156a452015-04-27 13:48:39 -070013467 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013468 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
13469 bool can_position = false;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013470
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013471 /* use scaler when colorkey is not required */
13472 if (INTEL_INFO(plane->dev)->gen >= 9 &&
Maarten Lankhorst818ed962015-06-15 12:33:54 +020013473 state->ckey.flags == I915_SET_COLORKEY_NONE) {
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013474 min_scale = 1;
13475 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
Sonika Jindald8106362015-04-10 14:37:28 +053013476 can_position = true;
Chandra Konduru6156a452015-04-27 13:48:39 -070013477 }
Sonika Jindald8106362015-04-10 14:37:28 +053013478
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013479 return drm_plane_helper_check_update(plane, crtc, fb, &state->src,
13480 &state->dst, &state->clip,
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020013481 min_scale, max_scale,
13482 can_position, true,
13483 &state->visible);
Matt Roper465c1202014-05-29 08:06:54 -070013484}
13485
Gustavo Padovan14af2932014-10-24 14:51:31 +010013486static void
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013487intel_commit_primary_plane(struct drm_plane *plane,
13488 struct intel_plane_state *state)
13489{
Matt Roper2b875c22014-12-01 15:40:13 -080013490 struct drm_crtc *crtc = state->base.crtc;
13491 struct drm_framebuffer *fb = state->base.fb;
13492 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053013493 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperea2c67b2014-12-23 10:41:52 -080013494 struct intel_crtc *intel_crtc;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013495 struct drm_rect *src = &state->src;
Matt Ropercf4c7c12014-12-04 10:27:42 -080013496
Matt Roperea2c67b2014-12-23 10:41:52 -080013497 crtc = crtc ? crtc : plane->crtc;
13498 intel_crtc = to_intel_crtc(crtc);
13499
Matt Ropercf4c7c12014-12-04 10:27:42 -080013500 plane->fb = fb;
Matt Roper9dc806f2014-11-17 18:10:38 -080013501 crtc->x = src->x1 >> 16;
13502 crtc->y = src->y1 >> 16;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013503
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013504 if (!crtc->state->active)
Maarten Lankhorst302d19a2015-06-15 12:33:45 +020013505 return;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013506
Maarten Lankhorstd4b08632015-09-10 16:07:56 +020013507 dev_priv->display.update_primary_plane(crtc, fb,
13508 state->src.x1 >> 16,
13509 state->src.y1 >> 16);
Matt Roper32b7eee2014-12-24 07:59:06 -080013510}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013511
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013512static void
13513intel_disable_primary_plane(struct drm_plane *plane,
Maarten Lankhorst7fabf5e2015-06-15 12:33:47 +020013514 struct drm_crtc *crtc)
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013515{
13516 struct drm_device *dev = plane->dev;
13517 struct drm_i915_private *dev_priv = dev->dev_private;
13518
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013519 dev_priv->display.update_primary_plane(crtc, NULL, 0, 0);
13520}
13521
Maarten Lankhorst613d2b22015-07-21 13:28:58 +020013522static void intel_begin_crtc_commit(struct drm_crtc *crtc,
13523 struct drm_crtc_state *old_crtc_state)
Matt Roper32b7eee2014-12-24 07:59:06 -080013524{
13525 struct drm_device *dev = crtc->dev;
Matt Roper32b7eee2014-12-24 07:59:06 -080013526 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013527 struct intel_crtc_state *old_intel_state =
13528 to_intel_crtc_state(old_crtc_state);
13529 bool modeset = needs_modeset(crtc->state);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013530
Ville Syrjäläf015c552015-06-24 22:00:02 +030013531 if (intel_crtc->atomic.update_wm_pre)
Matt Roper32b7eee2014-12-24 07:59:06 -080013532 intel_update_watermarks(crtc);
13533
Matt Roperc34c9ee2014-12-23 10:41:50 -080013534 /* Perform vblank evasion around commit operation */
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013535 if (crtc->state->active)
Maarten Lankhorst34e0adb2015-08-31 13:04:25 +020013536 intel_pipe_update_start(intel_crtc);
Maarten Lankhorst05832362015-06-15 12:33:48 +020013537
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013538 if (modeset)
13539 return;
13540
13541 if (to_intel_crtc_state(crtc->state)->update_pipe)
13542 intel_update_pipe_config(intel_crtc, old_intel_state);
13543 else if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorst05832362015-06-15 12:33:48 +020013544 skl_detach_scalers(intel_crtc);
Matt Roper32b7eee2014-12-24 07:59:06 -080013545}
13546
Maarten Lankhorst613d2b22015-07-21 13:28:58 +020013547static void intel_finish_crtc_commit(struct drm_crtc *crtc,
13548 struct drm_crtc_state *old_crtc_state)
Matt Roper32b7eee2014-12-24 07:59:06 -080013549{
Matt Roper32b7eee2014-12-24 07:59:06 -080013550 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper32b7eee2014-12-24 07:59:06 -080013551
Maarten Lankhorst8f539a82015-07-13 16:30:32 +020013552 if (crtc->state->active)
Maarten Lankhorst34e0adb2015-08-31 13:04:25 +020013553 intel_pipe_update_end(intel_crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013554}
13555
Matt Ropercf4c7c12014-12-04 10:27:42 -080013556/**
Matt Roper4a3b8762014-12-23 10:41:51 -080013557 * intel_plane_destroy - destroy a plane
13558 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080013559 *
Matt Roper4a3b8762014-12-23 10:41:51 -080013560 * Common destruction function for all types of planes (primary, cursor,
13561 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080013562 */
Matt Roper4a3b8762014-12-23 10:41:51 -080013563void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070013564{
13565 struct intel_plane *intel_plane = to_intel_plane(plane);
13566 drm_plane_cleanup(plane);
13567 kfree(intel_plane);
13568}
13569
Matt Roper65a3fea2015-01-21 16:35:42 -080013570const struct drm_plane_funcs intel_plane_funcs = {
Matt Roper70a101f2015-04-08 18:56:53 -070013571 .update_plane = drm_atomic_helper_update_plane,
13572 .disable_plane = drm_atomic_helper_disable_plane,
Matt Roper3d7d6512014-06-10 08:28:13 -070013573 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080013574 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080013575 .atomic_get_property = intel_plane_atomic_get_property,
13576 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080013577 .atomic_duplicate_state = intel_plane_duplicate_state,
13578 .atomic_destroy_state = intel_plane_destroy_state,
13579
Matt Roper465c1202014-05-29 08:06:54 -070013580};
13581
13582static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
13583 int pipe)
13584{
13585 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080013586 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070013587 const uint32_t *intel_primary_formats;
Thierry Reding45e37432015-08-12 16:54:28 +020013588 unsigned int num_formats;
Matt Roper465c1202014-05-29 08:06:54 -070013589
13590 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
13591 if (primary == NULL)
13592 return NULL;
13593
Matt Roper8e7d6882015-01-21 16:35:41 -080013594 state = intel_create_plane_state(&primary->base);
13595 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080013596 kfree(primary);
13597 return NULL;
13598 }
Matt Roper8e7d6882015-01-21 16:35:41 -080013599 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080013600
Matt Roper465c1202014-05-29 08:06:54 -070013601 primary->can_scale = false;
13602 primary->max_downscale = 1;
Chandra Konduru6156a452015-04-27 13:48:39 -070013603 if (INTEL_INFO(dev)->gen >= 9) {
13604 primary->can_scale = true;
Chandra Konduruaf99ceda2015-05-11 14:35:47 -070013605 state->scaler_id = -1;
Chandra Konduru6156a452015-04-27 13:48:39 -070013606 }
Matt Roper465c1202014-05-29 08:06:54 -070013607 primary->pipe = pipe;
13608 primary->plane = pipe;
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030013609 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
Matt Roperc59cb172014-12-01 15:40:16 -080013610 primary->check_plane = intel_check_primary_plane;
13611 primary->commit_plane = intel_commit_primary_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013612 primary->disable_plane = intel_disable_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070013613 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
13614 primary->plane = !pipe;
13615
Damien Lespiau6c0fd452015-05-19 12:29:16 +010013616 if (INTEL_INFO(dev)->gen >= 9) {
13617 intel_primary_formats = skl_primary_formats;
13618 num_formats = ARRAY_SIZE(skl_primary_formats);
13619 } else if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau568db4f2015-05-12 16:13:18 +010013620 intel_primary_formats = i965_primary_formats;
13621 num_formats = ARRAY_SIZE(i965_primary_formats);
Damien Lespiau6c0fd452015-05-19 12:29:16 +010013622 } else {
13623 intel_primary_formats = i8xx_primary_formats;
13624 num_formats = ARRAY_SIZE(i8xx_primary_formats);
Matt Roper465c1202014-05-29 08:06:54 -070013625 }
13626
13627 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080013628 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070013629 intel_primary_formats, num_formats,
13630 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053013631
Sonika Jindal3b7a5112015-04-10 14:37:29 +053013632 if (INTEL_INFO(dev)->gen >= 4)
13633 intel_create_rotation_property(dev, primary);
Sonika Jindal48404c12014-08-22 14:06:04 +053013634
Matt Roperea2c67b2014-12-23 10:41:52 -080013635 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
13636
Matt Roper465c1202014-05-29 08:06:54 -070013637 return &primary->base;
13638}
13639
Sonika Jindal3b7a5112015-04-10 14:37:29 +053013640void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
13641{
13642 if (!dev->mode_config.rotation_property) {
13643 unsigned long flags = BIT(DRM_ROTATE_0) |
13644 BIT(DRM_ROTATE_180);
13645
13646 if (INTEL_INFO(dev)->gen >= 9)
13647 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
13648
13649 dev->mode_config.rotation_property =
13650 drm_mode_create_rotation_property(dev, flags);
13651 }
13652 if (dev->mode_config.rotation_property)
13653 drm_object_attach_property(&plane->base.base,
13654 dev->mode_config.rotation_property,
13655 plane->base.state->rotation);
13656}
13657
Matt Roper3d7d6512014-06-10 08:28:13 -070013658static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030013659intel_check_cursor_plane(struct drm_plane *plane,
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013660 struct intel_crtc_state *crtc_state,
Gustavo Padovan852e7872014-09-05 17:22:31 -030013661 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070013662{
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013663 struct drm_crtc *crtc = crtc_state->base.crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080013664 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013665 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013666 unsigned stride;
13667 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013668
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013669 ret = drm_plane_helper_check_update(plane, crtc, fb, &state->src,
13670 &state->dst, &state->clip,
Gustavo Padovan852e7872014-09-05 17:22:31 -030013671 DRM_PLANE_HELPER_NO_SCALING,
13672 DRM_PLANE_HELPER_NO_SCALING,
13673 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013674 if (ret)
13675 return ret;
13676
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013677 /* if we want to turn off the cursor ignore width and height */
13678 if (!obj)
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020013679 return 0;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013680
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013681 /* Check for which cursor types we support */
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013682 if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) {
Matt Roperea2c67b2014-12-23 10:41:52 -080013683 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
13684 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013685 return -EINVAL;
13686 }
13687
Matt Roperea2c67b2014-12-23 10:41:52 -080013688 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
13689 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013690 DRM_DEBUG_KMS("buffer is too small\n");
13691 return -ENOMEM;
13692 }
13693
Ville Syrjälä3a656b52015-03-09 21:08:37 +020013694 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013695 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020013696 return -EINVAL;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013697 }
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013698
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020013699 return 0;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013700}
13701
Matt Roperf4a2cf22014-12-01 15:40:12 -080013702static void
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013703intel_disable_cursor_plane(struct drm_plane *plane,
Maarten Lankhorst7fabf5e2015-06-15 12:33:47 +020013704 struct drm_crtc *crtc)
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013705{
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013706 intel_crtc_update_cursor(crtc, false);
13707}
13708
13709static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030013710intel_commit_cursor_plane(struct drm_plane *plane,
13711 struct intel_plane_state *state)
13712{
Matt Roper2b875c22014-12-01 15:40:13 -080013713 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080013714 struct drm_device *dev = plane->dev;
13715 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080013716 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080013717 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070013718
Matt Roperea2c67b2014-12-23 10:41:52 -080013719 crtc = crtc ? crtc : plane->crtc;
13720 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070013721
Gustavo Padovana912f122014-12-01 15:40:10 -080013722 if (intel_crtc->cursor_bo == obj)
13723 goto update;
13724
Matt Roperf4a2cf22014-12-01 15:40:12 -080013725 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080013726 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080013727 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080013728 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080013729 else
Gustavo Padovana912f122014-12-01 15:40:10 -080013730 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080013731
Gustavo Padovana912f122014-12-01 15:40:10 -080013732 intel_crtc->cursor_addr = addr;
13733 intel_crtc->cursor_bo = obj;
Gustavo Padovana912f122014-12-01 15:40:10 -080013734
Maarten Lankhorst302d19a2015-06-15 12:33:45 +020013735update:
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013736 if (crtc->state->active)
Gustavo Padovan852e7872014-09-05 17:22:31 -030013737 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070013738}
Gustavo Padovan852e7872014-09-05 17:22:31 -030013739
Matt Roper3d7d6512014-06-10 08:28:13 -070013740static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
13741 int pipe)
13742{
13743 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080013744 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070013745
13746 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
13747 if (cursor == NULL)
13748 return NULL;
13749
Matt Roper8e7d6882015-01-21 16:35:41 -080013750 state = intel_create_plane_state(&cursor->base);
13751 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080013752 kfree(cursor);
13753 return NULL;
13754 }
Matt Roper8e7d6882015-01-21 16:35:41 -080013755 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080013756
Matt Roper3d7d6512014-06-10 08:28:13 -070013757 cursor->can_scale = false;
13758 cursor->max_downscale = 1;
13759 cursor->pipe = pipe;
13760 cursor->plane = pipe;
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030013761 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
Matt Roperc59cb172014-12-01 15:40:16 -080013762 cursor->check_plane = intel_check_cursor_plane;
13763 cursor->commit_plane = intel_commit_cursor_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013764 cursor->disable_plane = intel_disable_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070013765
13766 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080013767 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070013768 intel_cursor_formats,
13769 ARRAY_SIZE(intel_cursor_formats),
13770 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070013771
13772 if (INTEL_INFO(dev)->gen >= 4) {
13773 if (!dev->mode_config.rotation_property)
13774 dev->mode_config.rotation_property =
13775 drm_mode_create_rotation_property(dev,
13776 BIT(DRM_ROTATE_0) |
13777 BIT(DRM_ROTATE_180));
13778 if (dev->mode_config.rotation_property)
13779 drm_object_attach_property(&cursor->base.base,
13780 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080013781 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070013782 }
13783
Chandra Konduruaf99ceda2015-05-11 14:35:47 -070013784 if (INTEL_INFO(dev)->gen >=9)
13785 state->scaler_id = -1;
13786
Matt Roperea2c67b2014-12-23 10:41:52 -080013787 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
13788
Matt Roper3d7d6512014-06-10 08:28:13 -070013789 return &cursor->base;
13790}
13791
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013792static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
13793 struct intel_crtc_state *crtc_state)
13794{
13795 int i;
13796 struct intel_scaler *intel_scaler;
13797 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
13798
13799 for (i = 0; i < intel_crtc->num_scalers; i++) {
13800 intel_scaler = &scaler_state->scalers[i];
13801 intel_scaler->in_use = 0;
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013802 intel_scaler->mode = PS_SCALER_MODE_DYN;
13803 }
13804
13805 scaler_state->scaler_id = -1;
13806}
13807
Hannes Ederb358d0a2008-12-18 21:18:47 +010013808static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080013809{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013810 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080013811 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013812 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070013813 struct drm_plane *primary = NULL;
13814 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070013815 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080013816
Daniel Vetter955382f2013-09-19 14:05:45 +020013817 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080013818 if (intel_crtc == NULL)
13819 return;
13820
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013821 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
13822 if (!crtc_state)
13823 goto fail;
Ander Conselvan de Oliveira550acef2015-04-21 17:13:24 +030013824 intel_crtc->config = crtc_state;
13825 intel_crtc->base.state = &crtc_state->base;
Matt Roper07878242015-02-25 11:43:26 -080013826 crtc_state->base.crtc = &intel_crtc->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013827
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013828 /* initialize shared scalers */
13829 if (INTEL_INFO(dev)->gen >= 9) {
13830 if (pipe == PIPE_C)
13831 intel_crtc->num_scalers = 1;
13832 else
13833 intel_crtc->num_scalers = SKL_NUM_SCALERS;
13834
13835 skl_init_scalers(dev, intel_crtc, crtc_state);
13836 }
13837
Matt Roper465c1202014-05-29 08:06:54 -070013838 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070013839 if (!primary)
13840 goto fail;
13841
13842 cursor = intel_cursor_plane_create(dev, pipe);
13843 if (!cursor)
13844 goto fail;
13845
Matt Roper465c1202014-05-29 08:06:54 -070013846 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070013847 cursor, &intel_crtc_funcs);
13848 if (ret)
13849 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080013850
13851 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080013852 for (i = 0; i < 256; i++) {
13853 intel_crtc->lut_r[i] = i;
13854 intel_crtc->lut_g[i] = i;
13855 intel_crtc->lut_b[i] = i;
13856 }
13857
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020013858 /*
13859 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020013860 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020013861 */
Jesse Barnes80824002009-09-10 15:28:06 -070013862 intel_crtc->pipe = pipe;
13863 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010013864 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080013865 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010013866 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070013867 }
13868
Chris Wilson4b0e3332014-05-30 16:35:26 +030013869 intel_crtc->cursor_base = ~0;
13870 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030013871 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030013872
Ville Syrjälä852eb002015-06-24 22:00:07 +030013873 intel_crtc->wm.cxsr_allowed = true;
13874
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080013875 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
13876 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
13877 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
13878 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
13879
Jesse Barnes79e53942008-11-07 14:24:08 -080013880 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020013881
13882 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070013883 return;
13884
13885fail:
13886 if (primary)
13887 drm_plane_cleanup(primary);
13888 if (cursor)
13889 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013890 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070013891 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080013892}
13893
Jesse Barnes752aa882013-10-31 18:55:49 +020013894enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
13895{
13896 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013897 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020013898
Rob Clark51fd3712013-11-19 12:10:12 -050013899 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020013900
Ville Syrjäläd3babd32014-11-07 11:16:01 +020013901 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020013902 return INVALID_PIPE;
13903
13904 return to_intel_crtc(encoder->crtc)->pipe;
13905}
13906
Carl Worth08d7b3d2009-04-29 14:43:54 -070013907int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000013908 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070013909{
Carl Worth08d7b3d2009-04-29 14:43:54 -070013910 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040013911 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020013912 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013913
Rob Clark7707e652014-07-17 23:30:04 -040013914 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070013915
Rob Clark7707e652014-07-17 23:30:04 -040013916 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070013917 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030013918 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013919 }
13920
Rob Clark7707e652014-07-17 23:30:04 -040013921 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020013922 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013923
Daniel Vetterc05422d2009-08-11 16:05:30 +020013924 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013925}
13926
Daniel Vetter66a92782012-07-12 20:08:18 +020013927static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080013928{
Daniel Vetter66a92782012-07-12 20:08:18 +020013929 struct drm_device *dev = encoder->base.dev;
13930 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080013931 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080013932 int entry = 0;
13933
Damien Lespiaub2784e12014-08-05 11:29:37 +010013934 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020013935 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020013936 index_mask |= (1 << entry);
13937
Jesse Barnes79e53942008-11-07 14:24:08 -080013938 entry++;
13939 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010013940
Jesse Barnes79e53942008-11-07 14:24:08 -080013941 return index_mask;
13942}
13943
Chris Wilson4d302442010-12-14 19:21:29 +000013944static bool has_edp_a(struct drm_device *dev)
13945{
13946 struct drm_i915_private *dev_priv = dev->dev_private;
13947
13948 if (!IS_MOBILE(dev))
13949 return false;
13950
13951 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
13952 return false;
13953
Damien Lespiaue3589902014-02-07 19:12:50 +000013954 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000013955 return false;
13956
13957 return true;
13958}
13959
Jesse Barnes84b4e042014-06-25 08:24:29 -070013960static bool intel_crt_present(struct drm_device *dev)
13961{
13962 struct drm_i915_private *dev_priv = dev->dev_private;
13963
Damien Lespiau884497e2013-12-03 13:56:23 +000013964 if (INTEL_INFO(dev)->gen >= 9)
13965 return false;
13966
Damien Lespiaucf404ce2014-10-01 20:04:15 +010013967 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070013968 return false;
13969
13970 if (IS_CHERRYVIEW(dev))
13971 return false;
13972
13973 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
13974 return false;
13975
13976 return true;
13977}
13978
Jesse Barnes79e53942008-11-07 14:24:08 -080013979static void intel_setup_outputs(struct drm_device *dev)
13980{
Eric Anholt725e30a2009-01-22 13:01:02 -080013981 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010013982 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040013983 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080013984
Daniel Vetterc9093352013-06-06 22:22:47 +020013985 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080013986
Jesse Barnes84b4e042014-06-25 08:24:29 -070013987 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020013988 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040013989
Vandana Kannanc776eb22014-08-19 12:05:01 +053013990 if (IS_BROXTON(dev)) {
13991 /*
13992 * FIXME: Broxton doesn't support port detection via the
13993 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
13994 * detect the ports.
13995 */
13996 intel_ddi_init(dev, PORT_A);
13997 intel_ddi_init(dev, PORT_B);
13998 intel_ddi_init(dev, PORT_C);
13999 } else if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014000 int found;
14001
Jesse Barnesde31fac2015-03-06 15:53:32 -080014002 /*
14003 * Haswell uses DDI functions to detect digital outputs.
14004 * On SKL pre-D0 the strap isn't connected, so we assume
14005 * it's there.
14006 */
Ville Syrjälä77179402015-09-18 20:03:35 +030014007 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
Jesse Barnesde31fac2015-03-06 15:53:32 -080014008 /* WaIgnoreDDIAStrap: skl */
Jani Nikula5a2376d2015-08-14 10:53:17 +030014009 if (found || IS_SKYLAKE(dev))
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014010 intel_ddi_init(dev, PORT_A);
14011
14012 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
14013 * register */
14014 found = I915_READ(SFUSE_STRAP);
14015
14016 if (found & SFUSE_STRAP_DDIB_DETECTED)
14017 intel_ddi_init(dev, PORT_B);
14018 if (found & SFUSE_STRAP_DDIC_DETECTED)
14019 intel_ddi_init(dev, PORT_C);
14020 if (found & SFUSE_STRAP_DDID_DETECTED)
14021 intel_ddi_init(dev, PORT_D);
Rodrigo Vivi2800e4c2015-08-07 17:35:21 -070014022 /*
14023 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
14024 */
14025 if (IS_SKYLAKE(dev) &&
14026 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
14027 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
14028 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
14029 intel_ddi_init(dev, PORT_E);
14030
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014031 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014032 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020014033 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020014034
14035 if (has_edp_a(dev))
14036 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014037
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014038 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080014039 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010014040 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014041 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014042 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014043 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014044 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014045 }
14046
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014047 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014048 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014049
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014050 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014051 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014052
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014053 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014054 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014055
Daniel Vetter270b3042012-10-27 15:52:05 +020014056 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014057 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070014058 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014059 /*
14060 * The DP_DETECTED bit is the latched state of the DDC
14061 * SDA pin at boot. However since eDP doesn't require DDC
14062 * (no way to plug in a DP->HDMI dongle) the DDC pins for
14063 * eDP ports may have been muxed to an alternate function.
14064 * Thus we can't rely on the DP_DETECTED bit alone to detect
14065 * eDP ports. Consult the VBT as well as DP_DETECTED to
14066 * detect eDP ports.
14067 */
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014068 if (I915_READ(VLV_HDMIB) & SDVO_DETECTED &&
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014069 !intel_dp_is_edp(dev, PORT_B))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014070 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
14071 if (I915_READ(VLV_DP_B) & DP_DETECTED ||
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014072 intel_dp_is_edp(dev, PORT_B))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014073 intel_dp_init(dev, VLV_DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030014074
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014075 if (I915_READ(VLV_HDMIC) & SDVO_DETECTED &&
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014076 !intel_dp_is_edp(dev, PORT_C))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014077 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
14078 if (I915_READ(VLV_DP_C) & DP_DETECTED ||
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014079 intel_dp_is_edp(dev, PORT_C))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014080 intel_dp_init(dev, VLV_DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053014081
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014082 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014083 /* eDP not supported on port D, so don't check VBT */
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014084 if (I915_READ(CHV_HDMID) & SDVO_DETECTED)
14085 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
14086 if (I915_READ(CHV_DP_D) & DP_DETECTED)
14087 intel_dp_init(dev, CHV_DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014088 }
14089
Jani Nikula3cfca972013-08-27 15:12:26 +030014090 intel_dsi_init(dev);
Daniel Vetter09da55d2015-07-07 11:44:32 +020014091 } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014092 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080014093
Paulo Zanonie2debe92013-02-18 19:00:27 -030014094 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014095 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014096 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014097 if (!found && IS_G4X(dev)) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014098 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014099 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014100 }
Ma Ling27185ae2009-08-24 13:50:23 +080014101
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014102 if (!found && IS_G4X(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014103 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080014104 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014105
14106 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014107
Paulo Zanonie2debe92013-02-18 19:00:27 -030014108 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014109 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014110 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014111 }
Ma Ling27185ae2009-08-24 13:50:23 +080014112
Paulo Zanonie2debe92013-02-18 19:00:27 -030014113 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014114
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014115 if (IS_G4X(dev)) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014116 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014117 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014118 }
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014119 if (IS_G4X(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014120 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080014121 }
Ma Ling27185ae2009-08-24 13:50:23 +080014122
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014123 if (IS_G4X(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030014124 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014125 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070014126 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014127 intel_dvo_init(dev);
14128
Zhenyu Wang103a1962009-11-27 11:44:36 +080014129 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014130 intel_tv_init(dev);
14131
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080014132 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070014133
Damien Lespiaub2784e12014-08-05 11:29:37 +010014134 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010014135 encoder->base.possible_crtcs = encoder->crtc_mask;
14136 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020014137 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080014138 }
Chris Wilson47356eb2011-01-11 17:06:04 +000014139
Paulo Zanonidde86e22012-12-01 12:04:25 -020014140 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020014141
14142 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014143}
14144
14145static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
14146{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014147 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080014148 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080014149
Daniel Vetteref2d6332014-02-10 18:00:38 +010014150 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014151 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010014152 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014153 drm_gem_object_unreference(&intel_fb->obj->base);
14154 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080014155 kfree(intel_fb);
14156}
14157
14158static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000014159 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080014160 unsigned int *handle)
14161{
14162 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000014163 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080014164
Chris Wilson05394f32010-11-08 19:18:58 +000014165 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080014166}
14167
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014168static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
14169 struct drm_file *file,
14170 unsigned flags, unsigned color,
14171 struct drm_clip_rect *clips,
14172 unsigned num_clips)
14173{
14174 struct drm_device *dev = fb->dev;
14175 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
14176 struct drm_i915_gem_object *obj = intel_fb->obj;
14177
14178 mutex_lock(&dev->struct_mutex);
Paulo Zanoni74b4ea12015-07-14 16:29:14 -030014179 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014180 mutex_unlock(&dev->struct_mutex);
14181
14182 return 0;
14183}
14184
Jesse Barnes79e53942008-11-07 14:24:08 -080014185static const struct drm_framebuffer_funcs intel_fb_funcs = {
14186 .destroy = intel_user_framebuffer_destroy,
14187 .create_handle = intel_user_framebuffer_create_handle,
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014188 .dirty = intel_user_framebuffer_dirty,
Jesse Barnes79e53942008-11-07 14:24:08 -080014189};
14190
Damien Lespiaub3218032015-02-27 11:15:18 +000014191static
14192u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
14193 uint32_t pixel_format)
14194{
14195 u32 gen = INTEL_INFO(dev)->gen;
14196
14197 if (gen >= 9) {
14198 /* "The stride in bytes must not exceed the of the size of 8K
14199 * pixels and 32K bytes."
14200 */
14201 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
14202 } else if (gen >= 5 && !IS_VALLEYVIEW(dev)) {
14203 return 32*1024;
14204 } else if (gen >= 4) {
14205 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14206 return 16*1024;
14207 else
14208 return 32*1024;
14209 } else if (gen >= 3) {
14210 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14211 return 8*1024;
14212 else
14213 return 16*1024;
14214 } else {
14215 /* XXX DSPC is limited to 4k tiled */
14216 return 8*1024;
14217 }
14218}
14219
Daniel Vetterb5ea6422014-03-02 21:18:00 +010014220static int intel_framebuffer_init(struct drm_device *dev,
14221 struct intel_framebuffer *intel_fb,
14222 struct drm_mode_fb_cmd2 *mode_cmd,
14223 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080014224{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +000014225 unsigned int aligned_height;
Jesse Barnes79e53942008-11-07 14:24:08 -080014226 int ret;
Damien Lespiaub3218032015-02-27 11:15:18 +000014227 u32 pitch_limit, stride_alignment;
Jesse Barnes79e53942008-11-07 14:24:08 -080014228
Daniel Vetterdd4916c2013-10-09 21:23:51 +020014229 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
14230
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014231 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
14232 /* Enforce that fb modifier and tiling mode match, but only for
14233 * X-tiled. This is needed for FBC. */
14234 if (!!(obj->tiling_mode == I915_TILING_X) !=
14235 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
14236 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
14237 return -EINVAL;
14238 }
14239 } else {
14240 if (obj->tiling_mode == I915_TILING_X)
14241 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
14242 else if (obj->tiling_mode == I915_TILING_Y) {
14243 DRM_DEBUG("No Y tiling for legacy addfb\n");
14244 return -EINVAL;
14245 }
14246 }
14247
Tvrtko Ursulin9a8f0a12015-02-27 11:15:24 +000014248 /* Passed in modifier sanity checking. */
14249 switch (mode_cmd->modifier[0]) {
14250 case I915_FORMAT_MOD_Y_TILED:
14251 case I915_FORMAT_MOD_Yf_TILED:
14252 if (INTEL_INFO(dev)->gen < 9) {
14253 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
14254 mode_cmd->modifier[0]);
14255 return -EINVAL;
14256 }
14257 case DRM_FORMAT_MOD_NONE:
14258 case I915_FORMAT_MOD_X_TILED:
14259 break;
14260 default:
Jesse Barnesc0f40422015-03-23 12:43:50 -070014261 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
14262 mode_cmd->modifier[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010014263 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014264 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014265
Damien Lespiaub3218032015-02-27 11:15:18 +000014266 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
14267 mode_cmd->pixel_format);
14268 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
14269 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
14270 mode_cmd->pitches[0], stride_alignment);
Chris Wilson57cd6502010-08-08 12:34:44 +010014271 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014272 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014273
Damien Lespiaub3218032015-02-27 11:15:18 +000014274 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
14275 mode_cmd->pixel_format);
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014276 if (mode_cmd->pitches[0] > pitch_limit) {
Damien Lespiaub3218032015-02-27 11:15:18 +000014277 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
14278 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014279 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014280 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014281 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014282 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014283
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014284 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014285 mode_cmd->pitches[0] != obj->stride) {
14286 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
14287 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014288 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014289 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014290
Ville Syrjälä57779d02012-10-31 17:50:14 +020014291 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014292 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020014293 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014294 case DRM_FORMAT_RGB565:
14295 case DRM_FORMAT_XRGB8888:
14296 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014297 break;
14298 case DRM_FORMAT_XRGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014299 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014300 DRM_DEBUG("unsupported pixel format: %s\n",
14301 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014302 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014303 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020014304 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +020014305 case DRM_FORMAT_ABGR8888:
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014306 if (!IS_VALLEYVIEW(dev) && INTEL_INFO(dev)->gen < 9) {
14307 DRM_DEBUG("unsupported pixel format: %s\n",
14308 drm_get_format_name(mode_cmd->pixel_format));
14309 return -EINVAL;
14310 }
14311 break;
14312 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014313 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014314 case DRM_FORMAT_XBGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014315 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014316 DRM_DEBUG("unsupported pixel format: %s\n",
14317 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014318 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014319 }
Jesse Barnesb5626742011-06-24 12:19:27 -070014320 break;
Damien Lespiau75312082015-05-15 19:06:01 +010014321 case DRM_FORMAT_ABGR2101010:
14322 if (!IS_VALLEYVIEW(dev)) {
14323 DRM_DEBUG("unsupported pixel format: %s\n",
14324 drm_get_format_name(mode_cmd->pixel_format));
14325 return -EINVAL;
14326 }
14327 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020014328 case DRM_FORMAT_YUYV:
14329 case DRM_FORMAT_UYVY:
14330 case DRM_FORMAT_YVYU:
14331 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014332 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014333 DRM_DEBUG("unsupported pixel format: %s\n",
14334 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014335 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014336 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014337 break;
14338 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014339 DRM_DEBUG("unsupported pixel format: %s\n",
14340 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010014341 return -EINVAL;
14342 }
14343
Ville Syrjälä90f9a332012-10-31 17:50:19 +020014344 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
14345 if (mode_cmd->offsets[0] != 0)
14346 return -EINVAL;
14347
Damien Lespiauec2c9812015-01-20 12:51:45 +000014348 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +000014349 mode_cmd->pixel_format,
14350 mode_cmd->modifier[0]);
Daniel Vetter53155c02013-10-09 21:55:33 +020014351 /* FIXME drm helper for size checks (especially planar formats)? */
14352 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
14353 return -EINVAL;
14354
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014355 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
14356 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020014357 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014358
Jesse Barnes79e53942008-11-07 14:24:08 -080014359 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
14360 if (ret) {
14361 DRM_ERROR("framebuffer init failed %d\n", ret);
14362 return ret;
14363 }
14364
Jesse Barnes79e53942008-11-07 14:24:08 -080014365 return 0;
14366}
14367
Jesse Barnes79e53942008-11-07 14:24:08 -080014368static struct drm_framebuffer *
14369intel_user_framebuffer_create(struct drm_device *dev,
14370 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014371 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080014372{
Chris Wilson05394f32010-11-08 19:18:58 +000014373 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080014374
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014375 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
14376 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000014377 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010014378 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080014379
Chris Wilsond2dff872011-04-19 08:36:26 +010014380 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080014381}
14382
Daniel Vetter06957262015-08-10 13:34:08 +020014383#ifndef CONFIG_DRM_FBDEV_EMULATION
Daniel Vetter0632fef2013-10-08 17:44:49 +020014384static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020014385{
14386}
14387#endif
14388
Jesse Barnes79e53942008-11-07 14:24:08 -080014389static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080014390 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020014391 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080014392 .atomic_check = intel_atomic_check,
14393 .atomic_commit = intel_atomic_commit,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +020014394 .atomic_state_alloc = intel_atomic_state_alloc,
14395 .atomic_state_clear = intel_atomic_state_clear,
Jesse Barnes79e53942008-11-07 14:24:08 -080014396};
14397
Jesse Barnese70236a2009-09-21 10:42:27 -070014398/* Set up chip specific display functions */
14399static void intel_init_display(struct drm_device *dev)
14400{
14401 struct drm_i915_private *dev_priv = dev->dev_private;
14402
Daniel Vetteree9300b2013-06-03 22:40:22 +020014403 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
14404 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030014405 else if (IS_CHERRYVIEW(dev))
14406 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020014407 else if (IS_VALLEYVIEW(dev))
14408 dev_priv->display.find_dpll = vlv_find_best_dpll;
14409 else if (IS_PINEVIEW(dev))
14410 dev_priv->display.find_dpll = pnv_find_best_dpll;
14411 else
14412 dev_priv->display.find_dpll = i9xx_find_best_dpll;
14413
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014414 if (INTEL_INFO(dev)->gen >= 9) {
14415 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014416 dev_priv->display.get_initial_plane_config =
14417 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014418 dev_priv->display.crtc_compute_clock =
14419 haswell_crtc_compute_clock;
14420 dev_priv->display.crtc_enable = haswell_crtc_enable;
14421 dev_priv->display.crtc_disable = haswell_crtc_disable;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014422 dev_priv->display.update_primary_plane =
14423 skylake_update_primary_plane;
14424 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014425 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014426 dev_priv->display.get_initial_plane_config =
14427 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020014428 dev_priv->display.crtc_compute_clock =
14429 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020014430 dev_priv->display.crtc_enable = haswell_crtc_enable;
14431 dev_priv->display.crtc_disable = haswell_crtc_disable;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014432 dev_priv->display.update_primary_plane =
14433 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030014434 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014435 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014436 dev_priv->display.get_initial_plane_config =
14437 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020014438 dev_priv->display.crtc_compute_clock =
14439 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014440 dev_priv->display.crtc_enable = ironlake_crtc_enable;
14441 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014442 dev_priv->display.update_primary_plane =
14443 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014444 } else if (IS_VALLEYVIEW(dev)) {
14445 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014446 dev_priv->display.get_initial_plane_config =
14447 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014448 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014449 dev_priv->display.crtc_enable = valleyview_crtc_enable;
14450 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014451 dev_priv->display.update_primary_plane =
14452 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014453 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014454 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014455 dev_priv->display.get_initial_plane_config =
14456 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014457 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014458 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14459 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014460 dev_priv->display.update_primary_plane =
14461 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014462 }
Jesse Barnese70236a2009-09-21 10:42:27 -070014463
Jesse Barnese70236a2009-09-21 10:42:27 -070014464 /* Returns the core display clock speed */
Ville Syrjälä1652d192015-03-31 14:12:01 +030014465 if (IS_SKYLAKE(dev))
14466 dev_priv->display.get_display_clock_speed =
14467 skylake_get_display_clock_speed;
Bob Paauweacd3f3d2015-06-23 14:14:26 -070014468 else if (IS_BROXTON(dev))
14469 dev_priv->display.get_display_clock_speed =
14470 broxton_get_display_clock_speed;
Ville Syrjälä1652d192015-03-31 14:12:01 +030014471 else if (IS_BROADWELL(dev))
14472 dev_priv->display.get_display_clock_speed =
14473 broadwell_get_display_clock_speed;
14474 else if (IS_HASWELL(dev))
14475 dev_priv->display.get_display_clock_speed =
14476 haswell_get_display_clock_speed;
14477 else if (IS_VALLEYVIEW(dev))
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070014478 dev_priv->display.get_display_clock_speed =
14479 valleyview_get_display_clock_speed;
Ville Syrjäläb37a6432015-03-31 14:11:54 +030014480 else if (IS_GEN5(dev))
14481 dev_priv->display.get_display_clock_speed =
14482 ilk_get_display_clock_speed;
Ville Syrjäläa7c66cd2015-03-31 14:11:56 +030014483 else if (IS_I945G(dev) || IS_BROADWATER(dev) ||
Ville Syrjälä34edce22015-05-22 11:22:33 +030014484 IS_GEN6(dev) || IS_IVYBRIDGE(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014485 dev_priv->display.get_display_clock_speed =
14486 i945_get_display_clock_speed;
Ville Syrjälä34edce22015-05-22 11:22:33 +030014487 else if (IS_GM45(dev))
14488 dev_priv->display.get_display_clock_speed =
14489 gm45_get_display_clock_speed;
14490 else if (IS_CRESTLINE(dev))
14491 dev_priv->display.get_display_clock_speed =
14492 i965gm_get_display_clock_speed;
14493 else if (IS_PINEVIEW(dev))
14494 dev_priv->display.get_display_clock_speed =
14495 pnv_get_display_clock_speed;
14496 else if (IS_G33(dev) || IS_G4X(dev))
14497 dev_priv->display.get_display_clock_speed =
14498 g33_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070014499 else if (IS_I915G(dev))
14500 dev_priv->display.get_display_clock_speed =
14501 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020014502 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014503 dev_priv->display.get_display_clock_speed =
14504 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020014505 else if (IS_PINEVIEW(dev))
14506 dev_priv->display.get_display_clock_speed =
14507 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070014508 else if (IS_I915GM(dev))
14509 dev_priv->display.get_display_clock_speed =
14510 i915gm_get_display_clock_speed;
14511 else if (IS_I865G(dev))
14512 dev_priv->display.get_display_clock_speed =
14513 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020014514 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014515 dev_priv->display.get_display_clock_speed =
Ville Syrjälä1b1d2712015-05-22 11:22:31 +030014516 i85x_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030014517 else { /* 830 */
14518 WARN(!IS_I830(dev), "Unknown platform. Assuming 133 MHz CDCLK\n");
Jesse Barnese70236a2009-09-21 10:42:27 -070014519 dev_priv->display.get_display_clock_speed =
14520 i830_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030014521 }
Jesse Barnese70236a2009-09-21 10:42:27 -070014522
Jani Nikula7c10a2b2014-10-27 16:26:43 +020014523 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014524 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014525 } else if (IS_GEN6(dev)) {
14526 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014527 } else if (IS_IVYBRIDGE(dev)) {
14528 /* FIXME: detect B0+ stepping and use auto training */
14529 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030014530 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014531 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020014532 if (IS_BROADWELL(dev)) {
14533 dev_priv->display.modeset_commit_cdclk =
14534 broadwell_modeset_commit_cdclk;
14535 dev_priv->display.modeset_calc_cdclk =
14536 broadwell_modeset_calc_cdclk;
14537 }
Jesse Barnes30a970c2013-11-04 13:48:12 -080014538 } else if (IS_VALLEYVIEW(dev)) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020014539 dev_priv->display.modeset_commit_cdclk =
14540 valleyview_modeset_commit_cdclk;
14541 dev_priv->display.modeset_calc_cdclk =
14542 valleyview_modeset_calc_cdclk;
Vandana Kannanf8437dd12014-11-24 13:37:39 +053014543 } else if (IS_BROXTON(dev)) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020014544 dev_priv->display.modeset_commit_cdclk =
14545 broxton_modeset_commit_cdclk;
14546 dev_priv->display.modeset_calc_cdclk =
14547 broxton_modeset_calc_cdclk;
Jesse Barnese70236a2009-09-21 10:42:27 -070014548 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014549
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014550 switch (INTEL_INFO(dev)->gen) {
14551 case 2:
14552 dev_priv->display.queue_flip = intel_gen2_queue_flip;
14553 break;
14554
14555 case 3:
14556 dev_priv->display.queue_flip = intel_gen3_queue_flip;
14557 break;
14558
14559 case 4:
14560 case 5:
14561 dev_priv->display.queue_flip = intel_gen4_queue_flip;
14562 break;
14563
14564 case 6:
14565 dev_priv->display.queue_flip = intel_gen6_queue_flip;
14566 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070014567 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070014568 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070014569 dev_priv->display.queue_flip = intel_gen7_queue_flip;
14570 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000014571 case 9:
Tvrtko Ursulinba343e02015-02-10 17:16:12 +000014572 /* Drop through - unsupported since execlist only. */
14573 default:
14574 /* Default just returns -ENODEV to indicate unsupported */
14575 dev_priv->display.queue_flip = intel_default_queue_flip;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014576 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020014577
14578 intel_panel_init_backlight_funcs(dev);
Ville Syrjäläe39b9992014-09-04 14:53:14 +030014579
14580 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070014581}
14582
Jesse Barnesb690e962010-07-19 13:53:12 -070014583/*
14584 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
14585 * resume, or other times. This quirk makes sure that's the case for
14586 * affected systems.
14587 */
Akshay Joshi0206e352011-08-16 15:34:10 -040014588static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070014589{
14590 struct drm_i915_private *dev_priv = dev->dev_private;
14591
14592 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014593 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070014594}
14595
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030014596static void quirk_pipeb_force(struct drm_device *dev)
14597{
14598 struct drm_i915_private *dev_priv = dev->dev_private;
14599
14600 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
14601 DRM_INFO("applying pipe b force quirk\n");
14602}
14603
Keith Packard435793d2011-07-12 14:56:22 -070014604/*
14605 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
14606 */
14607static void quirk_ssc_force_disable(struct drm_device *dev)
14608{
14609 struct drm_i915_private *dev_priv = dev->dev_private;
14610 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014611 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070014612}
14613
Carsten Emde4dca20e2012-03-15 15:56:26 +010014614/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010014615 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
14616 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010014617 */
14618static void quirk_invert_brightness(struct drm_device *dev)
14619{
14620 struct drm_i915_private *dev_priv = dev->dev_private;
14621 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014622 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070014623}
14624
Scot Doyle9c72cc62014-07-03 23:27:50 +000014625/* Some VBT's incorrectly indicate no backlight is present */
14626static void quirk_backlight_present(struct drm_device *dev)
14627{
14628 struct drm_i915_private *dev_priv = dev->dev_private;
14629 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
14630 DRM_INFO("applying backlight present quirk\n");
14631}
14632
Jesse Barnesb690e962010-07-19 13:53:12 -070014633struct intel_quirk {
14634 int device;
14635 int subsystem_vendor;
14636 int subsystem_device;
14637 void (*hook)(struct drm_device *dev);
14638};
14639
Egbert Eich5f85f172012-10-14 15:46:38 +020014640/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
14641struct intel_dmi_quirk {
14642 void (*hook)(struct drm_device *dev);
14643 const struct dmi_system_id (*dmi_id_list)[];
14644};
14645
14646static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
14647{
14648 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
14649 return 1;
14650}
14651
14652static const struct intel_dmi_quirk intel_dmi_quirks[] = {
14653 {
14654 .dmi_id_list = &(const struct dmi_system_id[]) {
14655 {
14656 .callback = intel_dmi_reverse_brightness,
14657 .ident = "NCR Corporation",
14658 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
14659 DMI_MATCH(DMI_PRODUCT_NAME, ""),
14660 },
14661 },
14662 { } /* terminating entry */
14663 },
14664 .hook = quirk_invert_brightness,
14665 },
14666};
14667
Ben Widawskyc43b5632012-04-16 14:07:40 -070014668static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070014669 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
14670 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
14671
Jesse Barnesb690e962010-07-19 13:53:12 -070014672 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
14673 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
14674
Ville Syrjälä5f080c02014-08-15 01:22:06 +030014675 /* 830 needs to leave pipe A & dpll A up */
14676 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
14677
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030014678 /* 830 needs to leave pipe B & dpll B up */
14679 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
14680
Keith Packard435793d2011-07-12 14:56:22 -070014681 /* Lenovo U160 cannot use SSC on LVDS */
14682 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020014683
14684 /* Sony Vaio Y cannot use SSC on LVDS */
14685 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010014686
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010014687 /* Acer Aspire 5734Z must invert backlight brightness */
14688 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
14689
14690 /* Acer/eMachines G725 */
14691 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
14692
14693 /* Acer/eMachines e725 */
14694 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
14695
14696 /* Acer/Packard Bell NCL20 */
14697 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
14698
14699 /* Acer Aspire 4736Z */
14700 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020014701
14702 /* Acer Aspire 5336 */
14703 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000014704
14705 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
14706 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000014707
Scot Doyledfb3d47b2014-08-21 16:08:02 +000014708 /* Acer C720 Chromebook (Core i3 4005U) */
14709 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
14710
jens steinb2a96012014-10-28 20:25:53 +010014711 /* Apple Macbook 2,1 (Core 2 T7400) */
14712 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
14713
Scot Doyled4967d82014-07-03 23:27:52 +000014714 /* Toshiba CB35 Chromebook (Celeron 2955U) */
14715 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000014716
14717 /* HP Chromebook 14 (Celeron 2955U) */
14718 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020014719
14720 /* Dell Chromebook 11 */
14721 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070014722};
14723
14724static void intel_init_quirks(struct drm_device *dev)
14725{
14726 struct pci_dev *d = dev->pdev;
14727 int i;
14728
14729 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
14730 struct intel_quirk *q = &intel_quirks[i];
14731
14732 if (d->device == q->device &&
14733 (d->subsystem_vendor == q->subsystem_vendor ||
14734 q->subsystem_vendor == PCI_ANY_ID) &&
14735 (d->subsystem_device == q->subsystem_device ||
14736 q->subsystem_device == PCI_ANY_ID))
14737 q->hook(dev);
14738 }
Egbert Eich5f85f172012-10-14 15:46:38 +020014739 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
14740 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
14741 intel_dmi_quirks[i].hook(dev);
14742 }
Jesse Barnesb690e962010-07-19 13:53:12 -070014743}
14744
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014745/* Disable the VGA plane that we never use */
14746static void i915_disable_vga(struct drm_device *dev)
14747{
14748 struct drm_i915_private *dev_priv = dev->dev_private;
14749 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020014750 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014751
Ville Syrjälä2b37c612014-01-22 21:32:38 +020014752 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014753 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070014754 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014755 sr1 = inb(VGA_SR_DATA);
14756 outb(sr1 | 1<<5, VGA_SR_DATA);
14757 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
14758 udelay(300);
14759
Ville Syrjälä01f5a622014-12-16 18:38:37 +020014760 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014761 POSTING_READ(vga_reg);
14762}
14763
Daniel Vetterf8175862012-04-10 15:50:11 +020014764void intel_modeset_init_hw(struct drm_device *dev)
14765{
Ville Syrjäläb6283052015-06-03 15:45:07 +030014766 intel_update_cdclk(dev);
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030014767 intel_prepare_ddi(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020014768 intel_init_clock_gating(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +020014769 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020014770}
14771
Jesse Barnes79e53942008-11-07 14:24:08 -080014772void intel_modeset_init(struct drm_device *dev)
14773{
Jesse Barnes652c3932009-08-17 13:31:43 -070014774 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000014775 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000014776 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080014777 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080014778
14779 drm_mode_config_init(dev);
14780
14781 dev->mode_config.min_width = 0;
14782 dev->mode_config.min_height = 0;
14783
Dave Airlie019d96c2011-09-29 16:20:42 +010014784 dev->mode_config.preferred_depth = 24;
14785 dev->mode_config.prefer_shadow = 1;
14786
Tvrtko Ursulin25bab382015-02-10 17:16:16 +000014787 dev->mode_config.allow_fb_modifiers = true;
14788
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020014789 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080014790
Jesse Barnesb690e962010-07-19 13:53:12 -070014791 intel_init_quirks(dev);
14792
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030014793 intel_init_pm(dev);
14794
Ben Widawskye3c74752013-04-05 13:12:39 -070014795 if (INTEL_INFO(dev)->num_pipes == 0)
14796 return;
14797
Lukas Wunner69f92f62015-07-15 13:57:35 +020014798 /*
14799 * There may be no VBT; and if the BIOS enabled SSC we can
14800 * just keep using it to avoid unnecessary flicker. Whereas if the
14801 * BIOS isn't using it, don't assume it will work even if the VBT
14802 * indicates as much.
14803 */
14804 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
14805 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
14806 DREF_SSC1_ENABLE);
14807
14808 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
14809 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
14810 bios_lvds_use_ssc ? "en" : "dis",
14811 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
14812 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
14813 }
14814 }
14815
Jesse Barnese70236a2009-09-21 10:42:27 -070014816 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020014817 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070014818
Chris Wilsona6c45cf2010-09-17 00:32:17 +010014819 if (IS_GEN2(dev)) {
14820 dev->mode_config.max_width = 2048;
14821 dev->mode_config.max_height = 2048;
14822 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070014823 dev->mode_config.max_width = 4096;
14824 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080014825 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010014826 dev->mode_config.max_width = 8192;
14827 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080014828 }
Damien Lespiau068be562014-03-28 14:17:49 +000014829
Ville Syrjälädc41c152014-08-13 11:57:05 +030014830 if (IS_845G(dev) || IS_I865G(dev)) {
14831 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
14832 dev->mode_config.cursor_height = 1023;
14833 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000014834 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
14835 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
14836 } else {
14837 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
14838 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
14839 }
14840
Ben Widawsky5d4545a2013-01-17 12:45:15 -080014841 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080014842
Zhao Yakui28c97732009-10-09 11:39:41 +080014843 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014844 INTEL_INFO(dev)->num_pipes,
14845 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080014846
Damien Lespiau055e3932014-08-18 13:49:10 +010014847 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000014848 intel_crtc_init(dev, pipe);
Damien Lespiau3bdcfc02015-02-28 14:54:09 +000014849 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +000014850 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070014851 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030014852 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000014853 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070014854 }
Jesse Barnes79e53942008-11-07 14:24:08 -080014855 }
14856
Ville Syrjäläbfa7df02015-09-24 23:29:18 +030014857 intel_update_czclk(dev_priv);
14858 intel_update_cdclk(dev);
14859
Daniel Vettere72f9fb2013-06-05 13:34:06 +020014860 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010014861
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014862 /* Just disable it once at startup */
14863 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014864 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000014865
14866 /* Just in case the BIOS is doing something questionable. */
Paulo Zanoni7733b492015-07-07 15:26:04 -030014867 intel_fbc_disable(dev_priv);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080014868
Daniel Vetter6e9f7982014-05-29 23:54:47 +020014869 drm_modeset_lock_all(dev);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020014870 intel_modeset_setup_hw_state(dev);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020014871 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080014872
Damien Lespiaud3fcc802014-05-13 23:32:22 +010014873 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorsteeebeac2015-07-14 12:33:29 +020014874 struct intel_initial_plane_config plane_config = {};
14875
Jesse Barnes46f297f2014-03-07 08:57:48 -080014876 if (!crtc->active)
14877 continue;
14878
Jesse Barnes46f297f2014-03-07 08:57:48 -080014879 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080014880 * Note that reserving the BIOS fb up front prevents us
14881 * from stuffing other stolen allocations like the ring
14882 * on top. This prevents some ugliness at boot time, and
14883 * can even allow for smooth boot transitions if the BIOS
14884 * fb is large enough for the active pipe configuration.
14885 */
Maarten Lankhorsteeebeac2015-07-14 12:33:29 +020014886 dev_priv->display.get_initial_plane_config(crtc,
14887 &plane_config);
14888
14889 /*
14890 * If the fb is shared between multiple heads, we'll
14891 * just get the first one.
14892 */
14893 intel_find_initial_plane_obj(crtc, &plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080014894 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010014895}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080014896
Daniel Vetter7fad7982012-07-04 17:51:47 +020014897static void intel_enable_pipe_a(struct drm_device *dev)
14898{
14899 struct intel_connector *connector;
14900 struct drm_connector *crt = NULL;
14901 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030014902 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020014903
14904 /* We can't just switch on the pipe A, we need to set things up with a
14905 * proper mode and output configuration. As a gross hack, enable pipe A
14906 * by enabling the load detect pipe once. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020014907 for_each_intel_connector(dev, connector) {
Daniel Vetter7fad7982012-07-04 17:51:47 +020014908 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
14909 crt = &connector->base;
14910 break;
14911 }
14912 }
14913
14914 if (!crt)
14915 return;
14916
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030014917 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020014918 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
Daniel Vetter7fad7982012-07-04 17:51:47 +020014919}
14920
Daniel Vetterfa555832012-10-10 23:14:00 +020014921static bool
14922intel_check_plane_mapping(struct intel_crtc *crtc)
14923{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014924 struct drm_device *dev = crtc->base.dev;
14925 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020014926 u32 reg, val;
14927
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014928 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020014929 return true;
14930
14931 reg = DSPCNTR(!crtc->plane);
14932 val = I915_READ(reg);
14933
14934 if ((val & DISPLAY_PLANE_ENABLE) &&
14935 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
14936 return false;
14937
14938 return true;
14939}
14940
Ville Syrjälä02e93c32015-08-26 19:39:19 +030014941static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
14942{
14943 struct drm_device *dev = crtc->base.dev;
14944 struct intel_encoder *encoder;
14945
14946 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
14947 return true;
14948
14949 return false;
14950}
14951
Daniel Vetter24929352012-07-02 20:28:59 +020014952static void intel_sanitize_crtc(struct intel_crtc *crtc)
14953{
14954 struct drm_device *dev = crtc->base.dev;
14955 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020014956 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020014957
Daniel Vetter24929352012-07-02 20:28:59 +020014958 /* Clear any frame start delays used for debugging left by the BIOS */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020014959 reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020014960 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
14961
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030014962 /* restore vblank interrupts to correct state */
Daniel Vetter96256042015-02-13 21:03:42 +010014963 drm_crtc_vblank_reset(&crtc->base);
Ville Syrjäläd297e102014-08-06 14:50:01 +030014964 if (crtc->active) {
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030014965 struct intel_plane *plane;
14966
Daniel Vetter96256042015-02-13 21:03:42 +010014967 drm_crtc_vblank_on(&crtc->base);
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030014968
14969 /* Disable everything but the primary plane */
14970 for_each_intel_plane_on_crtc(dev, crtc, plane) {
14971 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
14972 continue;
14973
14974 plane->disable_plane(&plane->base, &crtc->base);
14975 }
Daniel Vetter96256042015-02-13 21:03:42 +010014976 }
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030014977
Daniel Vetter24929352012-07-02 20:28:59 +020014978 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020014979 * disable the crtc (and hence change the state) if it is wrong. Note
14980 * that gen4+ has a fixed plane -> pipe mapping. */
14981 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020014982 bool plane;
14983
Daniel Vetter24929352012-07-02 20:28:59 +020014984 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
14985 crtc->base.base.id);
14986
14987 /* Pipe has the wrong plane attached and the plane is active.
14988 * Temporarily change the plane mapping and disable everything
14989 * ... */
14990 plane = crtc->plane;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030014991 to_intel_plane_state(crtc->base.primary->state)->visible = true;
Daniel Vetter24929352012-07-02 20:28:59 +020014992 crtc->plane = !plane;
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020014993 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020014994 crtc->plane = plane;
Daniel Vetter24929352012-07-02 20:28:59 +020014995 }
Daniel Vetter24929352012-07-02 20:28:59 +020014996
Daniel Vetter7fad7982012-07-04 17:51:47 +020014997 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
14998 crtc->pipe == PIPE_A && !crtc->active) {
14999 /* BIOS forgot to enable pipe A, this mostly happens after
15000 * resume. Force-enable the pipe to fix this, the update_dpms
15001 * call below we restore the pipe to the right state, but leave
15002 * the required bits on. */
15003 intel_enable_pipe_a(dev);
15004 }
15005
Daniel Vetter24929352012-07-02 20:28:59 +020015006 /* Adjust the state of the output pipe according to whether we
15007 * have active connectors/encoders. */
Ville Syrjälä02e93c32015-08-26 19:39:19 +030015008 if (!intel_crtc_has_encoders(crtc))
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015009 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020015010
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +020015011 if (crtc->active != crtc->base.state->active) {
Ville Syrjälä02e93c32015-08-26 19:39:19 +030015012 struct intel_encoder *encoder;
Daniel Vetter24929352012-07-02 20:28:59 +020015013
15014 /* This can happen either due to bugs in the get_hw_state
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015015 * functions or because of calls to intel_crtc_disable_noatomic,
15016 * or because the pipe is force-enabled due to the
Daniel Vetter24929352012-07-02 20:28:59 +020015017 * pipe A quirk. */
15018 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
15019 crtc->base.base.id,
Matt Roper83d65732015-02-25 13:12:16 -080015020 crtc->base.state->enable ? "enabled" : "disabled",
Daniel Vetter24929352012-07-02 20:28:59 +020015021 crtc->active ? "enabled" : "disabled");
15022
Maarten Lankhorst4be40c92015-07-14 13:45:32 +020015023 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, NULL) < 0);
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020015024 crtc->base.state->active = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020015025 crtc->base.enabled = crtc->active;
15026
15027 /* Because we only establish the connector -> encoder ->
15028 * crtc links if something is active, this means the
15029 * crtc is now deactivated. Break the links. connector
15030 * -> encoder links are only establish when things are
15031 * actually up, hence no need to break them. */
15032 WARN_ON(crtc->active);
15033
Maarten Lankhorst2d406bb2015-08-05 12:37:09 +020015034 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Daniel Vetter24929352012-07-02 20:28:59 +020015035 encoder->base.crtc = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015036 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020015037
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030015038 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010015039 /*
15040 * We start out with underrun reporting disabled to avoid races.
15041 * For correct bookkeeping mark this on active crtcs.
15042 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020015043 * Also on gmch platforms we dont have any hardware bits to
15044 * disable the underrun reporting. Which means we need to start
15045 * out with underrun reporting disabled also on inactive pipes,
15046 * since otherwise we'll complain about the garbage we read when
15047 * e.g. coming up after runtime pm.
15048 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010015049 * No protection against concurrent access is required - at
15050 * worst a fifo underrun happens which also sets this to false.
15051 */
15052 crtc->cpu_fifo_underrun_disabled = true;
15053 crtc->pch_fifo_underrun_disabled = true;
15054 }
Daniel Vetter24929352012-07-02 20:28:59 +020015055}
15056
15057static void intel_sanitize_encoder(struct intel_encoder *encoder)
15058{
15059 struct intel_connector *connector;
15060 struct drm_device *dev = encoder->base.dev;
Maarten Lankhorst873ffe62015-08-05 12:37:07 +020015061 bool active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020015062
15063 /* We need to check both for a crtc link (meaning that the
15064 * encoder is active and trying to read from a pipe) and the
15065 * pipe itself being active. */
15066 bool has_active_crtc = encoder->base.crtc &&
15067 to_intel_crtc(encoder->base.crtc)->active;
15068
Maarten Lankhorst873ffe62015-08-05 12:37:07 +020015069 for_each_intel_connector(dev, connector) {
15070 if (connector->base.encoder != &encoder->base)
15071 continue;
15072
15073 active = true;
15074 break;
15075 }
15076
15077 if (active && !has_active_crtc) {
Daniel Vetter24929352012-07-02 20:28:59 +020015078 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
15079 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015080 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020015081
15082 /* Connector is active, but has no active pipe. This is
15083 * fallout from our resume register restoring. Disable
15084 * the encoder manually again. */
15085 if (encoder->base.crtc) {
15086 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
15087 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015088 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020015089 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030015090 if (encoder->post_disable)
15091 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020015092 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020015093 encoder->base.crtc = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015094
15095 /* Inconsistent output/port/pipe state happens presumably due to
15096 * a bug in one of the get_hw_state functions. Or someplace else
15097 * in our code, like the register restore mess on resume. Clamp
15098 * things to off as a safer default. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015099 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020015100 if (connector->encoder != encoder)
15101 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020015102 connector->base.dpms = DRM_MODE_DPMS_OFF;
15103 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015104 }
15105 }
15106 /* Enabled encoders without active connectors will be fixed in
15107 * the crtc fixup. */
15108}
15109
Imre Deak04098752014-02-18 00:02:16 +020015110void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015111{
15112 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020015113 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015114
Imre Deak04098752014-02-18 00:02:16 +020015115 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
15116 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
15117 i915_disable_vga(dev);
15118 }
15119}
15120
15121void i915_redisable_vga(struct drm_device *dev)
15122{
15123 struct drm_i915_private *dev_priv = dev->dev_private;
15124
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030015125 /* This function can be called both from intel_modeset_setup_hw_state or
15126 * at a very early point in our resume sequence, where the power well
15127 * structures are not yet restored. Since this function is at a very
15128 * paranoid "someone might have enabled VGA while we were not looking"
15129 * level, just check if the power well is enabled instead of trying to
15130 * follow the "don't touch the power well if we don't need it" policy
15131 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015132 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030015133 return;
15134
Imre Deak04098752014-02-18 00:02:16 +020015135 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015136}
15137
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015138static bool primary_get_hw_state(struct intel_plane *plane)
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015139{
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015140 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015141
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015142 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015143}
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015144
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015145/* FIXME read out full plane state for all planes */
15146static void readout_plane_state(struct intel_crtc *crtc)
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015147{
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015148 struct drm_plane *primary = crtc->base.primary;
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015149 struct intel_plane_state *plane_state =
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015150 to_intel_plane_state(primary->state);
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015151
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015152 plane_state->visible =
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015153 primary_get_hw_state(to_intel_plane(primary));
15154
15155 if (plane_state->visible)
15156 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015157}
15158
Daniel Vetter30e984d2013-06-05 13:34:17 +020015159static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020015160{
15161 struct drm_i915_private *dev_priv = dev->dev_private;
15162 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020015163 struct intel_crtc *crtc;
15164 struct intel_encoder *encoder;
15165 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020015166 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020015167
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015168 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorstb06f8b02015-07-14 13:42:49 +020015169 __drm_atomic_helper_crtc_destroy_state(&crtc->base, crtc->base.state);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015170 memset(crtc->config, 0, sizeof(*crtc->config));
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015171 crtc->config->base.crtc = &crtc->base;
Daniel Vetter3b117c82013-04-17 20:15:07 +020015172
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010015173 crtc->active = dev_priv->display.get_pipe_config(crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015174 crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020015175
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020015176 crtc->base.state->active = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020015177 crtc->base.enabled = crtc->active;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030015178
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015179 readout_plane_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020015180
15181 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
15182 crtc->base.base.id,
15183 crtc->active ? "enabled" : "disabled");
15184 }
15185
Daniel Vetter53589012013-06-05 13:34:16 +020015186 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15187 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15188
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015189 pll->on = pll->get_hw_state(dev_priv, pll,
15190 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020015191 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015192 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015193 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015194 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020015195 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015196 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015197 }
Daniel Vetter53589012013-06-05 13:34:16 +020015198 }
Daniel Vetter53589012013-06-05 13:34:16 +020015199
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015200 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015201 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015202
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015203 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015204 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020015205 }
15206
Damien Lespiaub2784e12014-08-05 11:29:37 +010015207 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015208 pipe = 0;
15209
15210 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070015211 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15212 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015213 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020015214 } else {
15215 encoder->base.crtc = NULL;
15216 }
15217
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015218 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020015219 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015220 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020015221 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015222 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020015223 }
15224
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015225 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020015226 if (connector->get_hw_state(connector)) {
15227 connector->base.dpms = DRM_MODE_DPMS_ON;
Daniel Vetter24929352012-07-02 20:28:59 +020015228 connector->base.encoder = &connector->encoder->base;
15229 } else {
15230 connector->base.dpms = DRM_MODE_DPMS_OFF;
15231 connector->base.encoder = NULL;
15232 }
15233 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
15234 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030015235 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020015236 connector->base.encoder ? "enabled" : "disabled");
15237 }
Ville Syrjälä7f4c6282015-09-10 18:59:07 +030015238
15239 for_each_intel_crtc(dev, crtc) {
15240 crtc->base.hwmode = crtc->config->base.adjusted_mode;
15241
15242 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
15243 if (crtc->base.state->active) {
15244 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
15245 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
15246 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
15247
15248 /*
15249 * The initial mode needs to be set in order to keep
15250 * the atomic core happy. It wants a valid mode if the
15251 * crtc's enabled, so we do the above call.
15252 *
15253 * At this point some state updated by the connectors
15254 * in their ->detect() callback has not run yet, so
15255 * no recalculation can be done yet.
15256 *
15257 * Even if we could do a recalculation and modeset
15258 * right now it would cause a double modeset if
15259 * fbdev or userspace chooses a different initial mode.
15260 *
15261 * If that happens, someone indicated they wanted a
15262 * mode change, which means it's safe to do a full
15263 * recalculation.
15264 */
15265 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
Ville Syrjälä9eca68322015-09-10 18:59:10 +030015266
15267 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
15268 update_scanline_offset(crtc);
Ville Syrjälä7f4c6282015-09-10 18:59:07 +030015269 }
15270 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020015271}
15272
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015273/* Scan out the current hw modeset state,
15274 * and sanitizes it to the current state
15275 */
15276static void
15277intel_modeset_setup_hw_state(struct drm_device *dev)
Daniel Vetter30e984d2013-06-05 13:34:17 +020015278{
15279 struct drm_i915_private *dev_priv = dev->dev_private;
15280 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015281 struct intel_crtc *crtc;
15282 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020015283 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015284
15285 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020015286
15287 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010015288 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015289 intel_sanitize_encoder(encoder);
15290 }
15291
Damien Lespiau055e3932014-08-18 13:49:10 +010015292 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020015293 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15294 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015295 intel_dump_pipe_config(crtc, crtc->config,
15296 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020015297 }
Daniel Vetter9a935852012-07-05 22:34:27 +020015298
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020015299 intel_modeset_update_connector_atomic_state(dev);
15300
Daniel Vetter35c95372013-07-17 06:55:04 +020015301 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15302 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15303
15304 if (!pll->on || pll->active)
15305 continue;
15306
15307 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
15308
15309 pll->disable(dev_priv, pll);
15310 pll->on = false;
15311 }
15312
Ville Syrjälä26e1fe42015-06-24 22:00:06 +030015313 if (IS_VALLEYVIEW(dev))
Ville Syrjälä6eb1a682015-06-24 22:00:03 +030015314 vlv_wm_get_hw_state(dev);
15315 else if (IS_GEN9(dev))
Pradeep Bhat30789992014-11-04 17:06:45 +000015316 skl_wm_get_hw_state(dev);
15317 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030015318 ilk_wm_get_hw_state(dev);
Maarten Lankhorst292b9902015-07-13 16:30:27 +020015319
15320 for_each_intel_crtc(dev, crtc) {
15321 unsigned long put_domains;
15322
15323 put_domains = modeset_get_crtc_power_domains(&crtc->base);
15324 if (WARN_ON(put_domains))
15325 modeset_put_power_domains(dev_priv, put_domains);
15326 }
15327 intel_display_set_init_power(dev_priv, false);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015328}
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030015329
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015330void intel_display_resume(struct drm_device *dev)
15331{
15332 struct drm_atomic_state *state = drm_atomic_state_alloc(dev);
15333 struct intel_connector *conn;
15334 struct intel_plane *plane;
15335 struct drm_crtc *crtc;
15336 int ret;
Daniel Vetterf30da182013-04-11 20:22:50 +020015337
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015338 if (!state)
15339 return;
15340
15341 state->acquire_ctx = dev->mode_config.acquire_ctx;
15342
15343 /* preserve complete old state, including dpll */
15344 intel_atomic_get_shared_dpll_state(state);
15345
15346 for_each_crtc(dev, crtc) {
15347 struct drm_crtc_state *crtc_state =
15348 drm_atomic_get_crtc_state(state, crtc);
15349
15350 ret = PTR_ERR_OR_ZERO(crtc_state);
15351 if (ret)
15352 goto err;
15353
15354 /* force a restore */
15355 crtc_state->mode_changed = true;
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010015356 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020015357
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015358 for_each_intel_plane(dev, plane) {
15359 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(state, &plane->base));
15360 if (ret)
15361 goto err;
15362 }
15363
15364 for_each_intel_connector(dev, conn) {
15365 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(state, &conn->base));
15366 if (ret)
15367 goto err;
15368 }
15369
15370 intel_modeset_setup_hw_state(dev);
15371
15372 i915_redisable_vga(dev);
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020015373 ret = drm_atomic_commit(state);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015374 if (!ret)
15375 return;
15376
15377err:
15378 DRM_ERROR("Restoring old state failed with %i\n", ret);
15379 drm_atomic_state_free(state);
Chris Wilson2c7111d2011-03-29 10:40:27 +010015380}
15381
15382void intel_modeset_gem_init(struct drm_device *dev)
15383{
Jesse Barnes484b41d2014-03-07 08:57:55 -080015384 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070015385 struct drm_i915_gem_object *obj;
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015386 int ret;
Jesse Barnes484b41d2014-03-07 08:57:55 -080015387
Imre Deakae484342014-03-31 15:10:44 +030015388 mutex_lock(&dev->struct_mutex);
15389 intel_init_gt_powersave(dev);
15390 mutex_unlock(&dev->struct_mutex);
15391
Chris Wilson1833b132012-05-09 11:56:28 +010015392 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020015393
15394 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080015395
15396 /*
15397 * Make sure any fbs we allocated at startup are properly
15398 * pinned & fenced. When we do the allocation it's too early
15399 * for this.
15400 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010015401 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070015402 obj = intel_fb_obj(c->primary->fb);
15403 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080015404 continue;
15405
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015406 mutex_lock(&dev->struct_mutex);
15407 ret = intel_pin_and_fence_fb_obj(c->primary,
15408 c->primary->fb,
15409 c->primary->state,
John Harrison91af1272015-06-18 13:14:56 +010015410 NULL, NULL);
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015411 mutex_unlock(&dev->struct_mutex);
15412 if (ret) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080015413 DRM_ERROR("failed to pin boot fb on pipe %d\n",
15414 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100015415 drm_framebuffer_unreference(c->primary->fb);
15416 c->primary->fb = NULL;
Maarten Lankhorst36750f22015-06-01 12:49:54 +020015417 c->primary->crtc = c->primary->state->crtc = NULL;
Matt Roperafd65eb2015-02-03 13:10:04 -080015418 update_state_fb(c->primary);
Maarten Lankhorst36750f22015-06-01 12:49:54 +020015419 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
Jesse Barnes484b41d2014-03-07 08:57:55 -080015420 }
15421 }
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020015422
15423 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080015424}
15425
Imre Deak4932e2c2014-02-11 17:12:48 +020015426void intel_connector_unregister(struct intel_connector *intel_connector)
15427{
15428 struct drm_connector *connector = &intel_connector->base;
15429
15430 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010015431 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020015432}
15433
Jesse Barnes79e53942008-11-07 14:24:08 -080015434void intel_modeset_cleanup(struct drm_device *dev)
15435{
Jesse Barnes652c3932009-08-17 13:31:43 -070015436 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030015437 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070015438
Imre Deak2eb52522014-11-19 15:30:05 +020015439 intel_disable_gt_powersave(dev);
15440
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020015441 intel_backlight_unregister(dev);
15442
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015443 /*
15444 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020015445 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015446 * experience fancy races otherwise.
15447 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020015448 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070015449
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015450 /*
15451 * Due to the hpd irq storm handling the hotplug work can re-arm the
15452 * poll handlers. Hence disable polling after hpd handling is shut down.
15453 */
Keith Packardf87ea762010-10-03 19:36:26 -070015454 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015455
Jesse Barnes723bfd72010-10-07 16:01:13 -070015456 intel_unregister_dsm_handler();
15457
Paulo Zanoni7733b492015-07-07 15:26:04 -030015458 intel_fbc_disable(dev_priv);
Kristian Høgsberg69341a52009-11-11 12:19:17 -050015459
Chris Wilson1630fe72011-07-08 12:22:42 +010015460 /* flush any delayed tasks or pending work */
15461 flush_scheduled_work();
15462
Jani Nikuladb31af1d2013-11-08 16:48:53 +020015463 /* destroy the backlight and sysfs files before encoders/connectors */
15464 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020015465 struct intel_connector *intel_connector;
15466
15467 intel_connector = to_intel_connector(connector);
15468 intel_connector->unregister(intel_connector);
Jani Nikuladb31af1d2013-11-08 16:48:53 +020015469 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030015470
Jesse Barnes79e53942008-11-07 14:24:08 -080015471 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010015472
15473 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030015474
15475 mutex_lock(&dev->struct_mutex);
15476 intel_cleanup_gt_powersave(dev);
15477 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080015478}
15479
Dave Airlie28d52042009-09-21 14:33:58 +100015480/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080015481 * Return which encoder is currently attached for connector.
15482 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010015483struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080015484{
Chris Wilsondf0e9242010-09-09 16:20:55 +010015485 return &intel_attached_encoder(connector)->base;
15486}
Jesse Barnes79e53942008-11-07 14:24:08 -080015487
Chris Wilsondf0e9242010-09-09 16:20:55 +010015488void intel_connector_attach_encoder(struct intel_connector *connector,
15489 struct intel_encoder *encoder)
15490{
15491 connector->encoder = encoder;
15492 drm_mode_connector_attach_encoder(&connector->base,
15493 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080015494}
Dave Airlie28d52042009-09-21 14:33:58 +100015495
15496/*
15497 * set vga decode state - true == enable VGA decode
15498 */
15499int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
15500{
15501 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000015502 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100015503 u16 gmch_ctrl;
15504
Chris Wilson75fa0412014-02-07 18:37:02 -020015505 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
15506 DRM_ERROR("failed to read control word\n");
15507 return -EIO;
15508 }
15509
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020015510 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
15511 return 0;
15512
Dave Airlie28d52042009-09-21 14:33:58 +100015513 if (state)
15514 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
15515 else
15516 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020015517
15518 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
15519 DRM_ERROR("failed to write control word\n");
15520 return -EIO;
15521 }
15522
Dave Airlie28d52042009-09-21 14:33:58 +100015523 return 0;
15524}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015525
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015526struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015527
15528 u32 power_well_driver;
15529
Chris Wilson63b66e52013-08-08 15:12:06 +020015530 int num_transcoders;
15531
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015532 struct intel_cursor_error_state {
15533 u32 control;
15534 u32 position;
15535 u32 base;
15536 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010015537 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015538
15539 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020015540 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015541 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030015542 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010015543 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015544
15545 struct intel_plane_error_state {
15546 u32 control;
15547 u32 stride;
15548 u32 size;
15549 u32 pos;
15550 u32 addr;
15551 u32 surface;
15552 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010015553 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020015554
15555 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020015556 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020015557 enum transcoder cpu_transcoder;
15558
15559 u32 conf;
15560
15561 u32 htotal;
15562 u32 hblank;
15563 u32 hsync;
15564 u32 vtotal;
15565 u32 vblank;
15566 u32 vsync;
15567 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015568};
15569
15570struct intel_display_error_state *
15571intel_display_capture_error_state(struct drm_device *dev)
15572{
Jani Nikulafbee40d2014-03-31 14:27:18 +030015573 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015574 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020015575 int transcoders[] = {
15576 TRANSCODER_A,
15577 TRANSCODER_B,
15578 TRANSCODER_C,
15579 TRANSCODER_EDP,
15580 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015581 int i;
15582
Chris Wilson63b66e52013-08-08 15:12:06 +020015583 if (INTEL_INFO(dev)->num_pipes == 0)
15584 return NULL;
15585
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015586 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015587 if (error == NULL)
15588 return NULL;
15589
Imre Deak190be112013-11-25 17:15:31 +020015590 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015591 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
15592
Damien Lespiau055e3932014-08-18 13:49:10 +010015593 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020015594 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015595 __intel_display_power_is_enabled(dev_priv,
15596 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020015597 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015598 continue;
15599
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030015600 error->cursor[i].control = I915_READ(CURCNTR(i));
15601 error->cursor[i].position = I915_READ(CURPOS(i));
15602 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015603
15604 error->plane[i].control = I915_READ(DSPCNTR(i));
15605 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015606 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030015607 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015608 error->plane[i].pos = I915_READ(DSPPOS(i));
15609 }
Paulo Zanonica291362013-03-06 20:03:14 -030015610 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
15611 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015612 if (INTEL_INFO(dev)->gen >= 4) {
15613 error->plane[i].surface = I915_READ(DSPSURF(i));
15614 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
15615 }
15616
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015617 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030015618
Sonika Jindal3abfce72014-07-21 15:23:43 +053015619 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e2014-04-18 15:55:04 +030015620 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020015621 }
15622
15623 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
15624 if (HAS_DDI(dev_priv->dev))
15625 error->num_transcoders++; /* Account for eDP. */
15626
15627 for (i = 0; i < error->num_transcoders; i++) {
15628 enum transcoder cpu_transcoder = transcoders[i];
15629
Imre Deakddf9c532013-11-27 22:02:02 +020015630 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015631 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020015632 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020015633 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015634 continue;
15635
Chris Wilson63b66e52013-08-08 15:12:06 +020015636 error->transcoder[i].cpu_transcoder = cpu_transcoder;
15637
15638 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
15639 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
15640 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
15641 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
15642 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
15643 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
15644 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015645 }
15646
15647 return error;
15648}
15649
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015650#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
15651
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015652void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015653intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015654 struct drm_device *dev,
15655 struct intel_display_error_state *error)
15656{
Damien Lespiau055e3932014-08-18 13:49:10 +010015657 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015658 int i;
15659
Chris Wilson63b66e52013-08-08 15:12:06 +020015660 if (!error)
15661 return;
15662
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015663 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020015664 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015665 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015666 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010015667 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015668 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020015669 err_printf(m, " Power: %s\n",
15670 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015671 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030015672 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015673
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015674 err_printf(m, "Plane [%d]:\n", i);
15675 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
15676 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015677 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015678 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
15679 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015680 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030015681 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015682 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015683 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015684 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
15685 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015686 }
15687
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015688 err_printf(m, "Cursor [%d]:\n", i);
15689 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
15690 err_printf(m, " POS: %08x\n", error->cursor[i].position);
15691 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015692 }
Chris Wilson63b66e52013-08-08 15:12:06 +020015693
15694 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010015695 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020015696 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020015697 err_printf(m, " Power: %s\n",
15698 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020015699 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
15700 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
15701 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
15702 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
15703 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
15704 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
15705 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
15706 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015707}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015708
15709void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
15710{
15711 struct intel_crtc *crtc;
15712
15713 for_each_intel_crtc(dev, crtc) {
15714 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015715
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020015716 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015717
15718 work = crtc->unpin_work;
15719
15720 if (work && work->event &&
15721 work->event->base.file_priv == file) {
15722 kfree(work->event);
15723 work->event = NULL;
15724 }
15725
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020015726 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015727 }
15728}