blob: 6b3b65e3b36b3cf969e1703ff4731fdbe10f5147 [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. */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03002053 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
Daniel Vetter23670b322012-11-01 09:15:30 +01002054 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03002055 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002056
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. */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03002113 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
Daniel Vetter23670b322012-11-01 09:15:30 +01002114 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03002115 I915_WRITE(TRANS_CHICKEN2(PIPE_A), 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;
Paulo Zanoni3badb492015-09-23 12:52:23 -03002548 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002549 struct drm_i915_gem_object *obj = NULL;
2550 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Damien Lespiau2d140302015-02-05 17:22:18 +00002551 struct drm_framebuffer *fb = &plane_config->fb->base;
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002552 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2553 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2554 PAGE_SIZE);
2555
2556 size_aligned -= base_aligned;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002557
Chris Wilsonff2652e2014-03-10 08:07:02 +00002558 if (plane_config->size == 0)
2559 return false;
2560
Paulo Zanoni3badb492015-09-23 12:52:23 -03002561 /* If the FB is too big, just don't use it since fbdev is not very
2562 * important and we should probably use that space with FBC or other
2563 * features. */
2564 if (size_aligned * 2 > dev_priv->gtt.stolen_usable_size)
2565 return false;
2566
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002567 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2568 base_aligned,
2569 base_aligned,
2570 size_aligned);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002571 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002572 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002573
Damien Lespiau49af4492015-01-20 12:51:44 +00002574 obj->tiling_mode = plane_config->tiling;
2575 if (obj->tiling_mode == I915_TILING_X)
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002576 obj->stride = fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002577
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002578 mode_cmd.pixel_format = fb->pixel_format;
2579 mode_cmd.width = fb->width;
2580 mode_cmd.height = fb->height;
2581 mode_cmd.pitches[0] = fb->pitches[0];
Daniel Vetter18c52472015-02-10 17:16:09 +00002582 mode_cmd.modifier[0] = fb->modifier[0];
2583 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002584
2585 mutex_lock(&dev->struct_mutex);
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002586 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002587 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002588 DRM_DEBUG_KMS("intel fb init failed\n");
2589 goto out_unref_obj;
2590 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002591 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002592
Daniel Vetterf6936e22015-03-26 12:17:05 +01002593 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002594 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002595
2596out_unref_obj:
2597 drm_gem_object_unreference(&obj->base);
2598 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002599 return false;
2600}
2601
Matt Roperafd65eb2015-02-03 13:10:04 -08002602/* Update plane->state->fb to match plane->fb after driver-internal updates */
2603static void
2604update_state_fb(struct drm_plane *plane)
2605{
2606 if (plane->fb == plane->state->fb)
2607 return;
2608
2609 if (plane->state->fb)
2610 drm_framebuffer_unreference(plane->state->fb);
2611 plane->state->fb = plane->fb;
2612 if (plane->state->fb)
2613 drm_framebuffer_reference(plane->state->fb);
2614}
2615
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002616static void
Daniel Vetterf6936e22015-03-26 12:17:05 +01002617intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2618 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002619{
2620 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002621 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002622 struct drm_crtc *c;
2623 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002624 struct drm_i915_gem_object *obj;
Daniel Vetter88595ac2015-03-26 12:42:24 +01002625 struct drm_plane *primary = intel_crtc->base.primary;
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002626 struct drm_plane_state *plane_state = primary->state;
Daniel Vetter88595ac2015-03-26 12:42:24 +01002627 struct drm_framebuffer *fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002628
Damien Lespiau2d140302015-02-05 17:22:18 +00002629 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002630 return;
2631
Daniel Vetterf6936e22015-03-26 12:17:05 +01002632 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002633 fb = &plane_config->fb->base;
2634 goto valid_fb;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002635 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002636
Damien Lespiau2d140302015-02-05 17:22:18 +00002637 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002638
2639 /*
2640 * Failed to alloc the obj, check to see if we should share
2641 * an fb with another CRTC instead
2642 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002643 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002644 i = to_intel_crtc(c);
2645
2646 if (c == &intel_crtc->base)
2647 continue;
2648
Matt Roper2ff8fde2014-07-08 07:50:07 -07002649 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002650 continue;
2651
Daniel Vetter88595ac2015-03-26 12:42:24 +01002652 fb = c->primary->fb;
2653 if (!fb)
Matt Roper2ff8fde2014-07-08 07:50:07 -07002654 continue;
2655
Daniel Vetter88595ac2015-03-26 12:42:24 +01002656 obj = intel_fb_obj(fb);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002657 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002658 drm_framebuffer_reference(fb);
2659 goto valid_fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002660 }
2661 }
Daniel Vetter88595ac2015-03-26 12:42:24 +01002662
2663 return;
2664
2665valid_fb:
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002666 plane_state->src_x = plane_state->src_y = 0;
2667 plane_state->src_w = fb->width << 16;
2668 plane_state->src_h = fb->height << 16;
2669
2670 plane_state->crtc_x = plane_state->src_y = 0;
2671 plane_state->crtc_w = fb->width;
2672 plane_state->crtc_h = fb->height;
2673
Daniel Vetter88595ac2015-03-26 12:42:24 +01002674 obj = intel_fb_obj(fb);
2675 if (obj->tiling_mode != I915_TILING_NONE)
2676 dev_priv->preserve_bios_swizzle = true;
2677
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002678 drm_framebuffer_reference(fb);
2679 primary->fb = primary->state->fb = fb;
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002680 primary->crtc = primary->state->crtc = &intel_crtc->base;
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002681 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
Ville Syrjäläa9ff8712015-06-24 21:59:34 +03002682 obj->frontbuffer_bits |= to_intel_plane(primary)->frontbuffer_bit;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002683}
2684
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002685static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2686 struct drm_framebuffer *fb,
2687 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002688{
2689 struct drm_device *dev = crtc->dev;
2690 struct drm_i915_private *dev_priv = dev->dev_private;
2691 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002692 struct drm_plane *primary = crtc->primary;
2693 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002694 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002695 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002696 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002697 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002698 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302699 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002700
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002701 if (!visible || !fb) {
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002702 I915_WRITE(reg, 0);
2703 if (INTEL_INFO(dev)->gen >= 4)
2704 I915_WRITE(DSPSURF(plane), 0);
2705 else
2706 I915_WRITE(DSPADDR(plane), 0);
2707 POSTING_READ(reg);
2708 return;
2709 }
2710
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002711 obj = intel_fb_obj(fb);
2712 if (WARN_ON(obj == NULL))
2713 return;
2714
2715 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2716
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002717 dspcntr = DISPPLANE_GAMMA_ENABLE;
2718
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002719 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002720
2721 if (INTEL_INFO(dev)->gen < 4) {
2722 if (intel_crtc->pipe == PIPE_B)
2723 dspcntr |= DISPPLANE_SEL_PIPE_B;
2724
2725 /* pipesrc and dspsize control the size that is scaled from,
2726 * which should always be the user's requested size.
2727 */
2728 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002729 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2730 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002731 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002732 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2733 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002734 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2735 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002736 I915_WRITE(PRIMPOS(plane), 0);
2737 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002738 }
2739
Ville Syrjälä57779d02012-10-31 17:50:14 +02002740 switch (fb->pixel_format) {
2741 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002742 dspcntr |= DISPPLANE_8BPP;
2743 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002744 case DRM_FORMAT_XRGB1555:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002745 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002746 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002747 case DRM_FORMAT_RGB565:
2748 dspcntr |= DISPPLANE_BGRX565;
2749 break;
2750 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002751 dspcntr |= DISPPLANE_BGRX888;
2752 break;
2753 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002754 dspcntr |= DISPPLANE_RGBX888;
2755 break;
2756 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002757 dspcntr |= DISPPLANE_BGRX101010;
2758 break;
2759 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002760 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002761 break;
2762 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002763 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002764 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002765
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002766 if (INTEL_INFO(dev)->gen >= 4 &&
2767 obj->tiling_mode != I915_TILING_NONE)
2768 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002769
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002770 if (IS_G4X(dev))
2771 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2772
Ville Syrjäläb98971272014-08-27 16:51:22 +03002773 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002774
Daniel Vetterc2c75132012-07-05 12:17:30 +02002775 if (INTEL_INFO(dev)->gen >= 4) {
2776 intel_crtc->dspaddr_offset =
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002777 intel_gen4_compute_page_offset(dev_priv,
2778 &x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002779 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002780 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002781 linear_offset -= intel_crtc->dspaddr_offset;
2782 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002783 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002784 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002785
Matt Roper8e7d6882015-01-21 16:35:41 -08002786 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302787 dspcntr |= DISPPLANE_ROTATE_180;
2788
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002789 x += (intel_crtc->config->pipe_src_w - 1);
2790 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302791
2792 /* Finding the last pixel of the last line of the display
2793 data and adding to linear_offset*/
2794 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002795 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2796 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302797 }
2798
Paulo Zanoni2db33662015-09-14 15:20:03 -03002799 intel_crtc->adjusted_x = x;
2800 intel_crtc->adjusted_y = y;
2801
Sonika Jindal48404c12014-08-22 14:06:04 +05302802 I915_WRITE(reg, dspcntr);
2803
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002804 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002805 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002806 I915_WRITE(DSPSURF(plane),
2807 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002808 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002809 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002810 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002811 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002812 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002813}
2814
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002815static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2816 struct drm_framebuffer *fb,
2817 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002818{
2819 struct drm_device *dev = crtc->dev;
2820 struct drm_i915_private *dev_priv = dev->dev_private;
2821 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002822 struct drm_plane *primary = crtc->primary;
2823 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002824 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002825 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002826 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002827 u32 dspcntr;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002828 u32 reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302829 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002830
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002831 if (!visible || !fb) {
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002832 I915_WRITE(reg, 0);
2833 I915_WRITE(DSPSURF(plane), 0);
2834 POSTING_READ(reg);
2835 return;
2836 }
2837
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002838 obj = intel_fb_obj(fb);
2839 if (WARN_ON(obj == NULL))
2840 return;
2841
2842 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2843
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002844 dspcntr = DISPPLANE_GAMMA_ENABLE;
2845
Ville Syrjäläfdd508a2014-08-08 21:51:11 +03002846 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002847
2848 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2849 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2850
Ville Syrjälä57779d02012-10-31 17:50:14 +02002851 switch (fb->pixel_format) {
2852 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002853 dspcntr |= DISPPLANE_8BPP;
2854 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002855 case DRM_FORMAT_RGB565:
2856 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002857 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002858 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002859 dspcntr |= DISPPLANE_BGRX888;
2860 break;
2861 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002862 dspcntr |= DISPPLANE_RGBX888;
2863 break;
2864 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002865 dspcntr |= DISPPLANE_BGRX101010;
2866 break;
2867 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002868 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002869 break;
2870 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002871 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002872 }
2873
2874 if (obj->tiling_mode != I915_TILING_NONE)
2875 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002876
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002877 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002878 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002879
Ville Syrjäläb98971272014-08-27 16:51:22 +03002880 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002881 intel_crtc->dspaddr_offset =
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002882 intel_gen4_compute_page_offset(dev_priv,
2883 &x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002884 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002885 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002886 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002887 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302888 dspcntr |= DISPPLANE_ROTATE_180;
2889
2890 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002891 x += (intel_crtc->config->pipe_src_w - 1);
2892 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302893
2894 /* Finding the last pixel of the last line of the display
2895 data and adding to linear_offset*/
2896 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002897 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2898 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302899 }
2900 }
2901
Paulo Zanoni2db33662015-09-14 15:20:03 -03002902 intel_crtc->adjusted_x = x;
2903 intel_crtc->adjusted_y = y;
2904
Sonika Jindal48404c12014-08-22 14:06:04 +05302905 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002906
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002907 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002908 I915_WRITE(DSPSURF(plane),
2909 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002910 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002911 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2912 } else {
2913 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2914 I915_WRITE(DSPLINOFF(plane), linear_offset);
2915 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002916 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002917}
2918
Damien Lespiaub3218032015-02-27 11:15:18 +00002919u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2920 uint32_t pixel_format)
2921{
2922 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2923
2924 /*
2925 * The stride is either expressed as a multiple of 64 bytes
2926 * chunks for linear buffers or in number of tiles for tiled
2927 * buffers.
2928 */
2929 switch (fb_modifier) {
2930 case DRM_FORMAT_MOD_NONE:
2931 return 64;
2932 case I915_FORMAT_MOD_X_TILED:
2933 if (INTEL_INFO(dev)->gen == 2)
2934 return 128;
2935 return 512;
2936 case I915_FORMAT_MOD_Y_TILED:
2937 /* No need to check for old gens and Y tiling since this is
2938 * about the display engine and those will be blocked before
2939 * we get here.
2940 */
2941 return 128;
2942 case I915_FORMAT_MOD_Yf_TILED:
2943 if (bits_per_pixel == 8)
2944 return 64;
2945 else
2946 return 128;
2947 default:
2948 MISSING_CASE(fb_modifier);
2949 return 64;
2950 }
2951}
2952
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002953unsigned long intel_plane_obj_offset(struct intel_plane *intel_plane,
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002954 struct drm_i915_gem_object *obj,
2955 unsigned int plane)
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002956{
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002957 const struct i915_ggtt_view *view = &i915_ggtt_view_normal;
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002958 struct i915_vma *vma;
2959 unsigned char *offset;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002960
2961 if (intel_rotation_90_or_270(intel_plane->base.state->rotation))
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002962 view = &i915_ggtt_view_rotated;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002963
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002964 vma = i915_gem_obj_to_ggtt_view(obj, view);
2965 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
2966 view->type))
2967 return -1;
2968
2969 offset = (unsigned char *)vma->node.start;
2970
2971 if (plane == 1) {
2972 offset += vma->ggtt_view.rotation_info.uv_start_page *
2973 PAGE_SIZE;
2974 }
2975
2976 return (unsigned long)offset;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002977}
2978
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02002979static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
2980{
2981 struct drm_device *dev = intel_crtc->base.dev;
2982 struct drm_i915_private *dev_priv = dev->dev_private;
2983
2984 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
2985 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
2986 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02002987}
2988
Chandra Kondurua1b22782015-04-07 15:28:45 -07002989/*
2990 * This function detaches (aka. unbinds) unused scalers in hardware
2991 */
Maarten Lankhorst05832362015-06-15 12:33:48 +02002992static void skl_detach_scalers(struct intel_crtc *intel_crtc)
Chandra Kondurua1b22782015-04-07 15:28:45 -07002993{
Chandra Kondurua1b22782015-04-07 15:28:45 -07002994 struct intel_crtc_scaler_state *scaler_state;
2995 int i;
2996
Chandra Kondurua1b22782015-04-07 15:28:45 -07002997 scaler_state = &intel_crtc->config->scaler_state;
2998
2999 /* loop through and disable scalers that aren't in use */
3000 for (i = 0; i < intel_crtc->num_scalers; i++) {
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02003001 if (!scaler_state->scalers[i].in_use)
3002 skl_detach_scaler(intel_crtc, i);
Chandra Kondurua1b22782015-04-07 15:28:45 -07003003 }
3004}
3005
Chandra Konduru6156a452015-04-27 13:48:39 -07003006u32 skl_plane_ctl_format(uint32_t pixel_format)
3007{
Chandra Konduru6156a452015-04-27 13:48:39 -07003008 switch (pixel_format) {
Damien Lespiaud161cf72015-05-12 16:13:17 +01003009 case DRM_FORMAT_C8:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003010 return PLANE_CTL_FORMAT_INDEXED;
Chandra Konduru6156a452015-04-27 13:48:39 -07003011 case DRM_FORMAT_RGB565:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003012 return PLANE_CTL_FORMAT_RGB_565;
Chandra Konduru6156a452015-04-27 13:48:39 -07003013 case DRM_FORMAT_XBGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003014 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
Chandra Konduru6156a452015-04-27 13:48:39 -07003015 case DRM_FORMAT_XRGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003016 return PLANE_CTL_FORMAT_XRGB_8888;
Chandra Konduru6156a452015-04-27 13:48:39 -07003017 /*
3018 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
3019 * to be already pre-multiplied. We need to add a knob (or a different
3020 * DRM_FORMAT) for user-space to configure that.
3021 */
3022 case DRM_FORMAT_ABGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003023 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
Chandra Konduru6156a452015-04-27 13:48:39 -07003024 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003025 case DRM_FORMAT_ARGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003026 return PLANE_CTL_FORMAT_XRGB_8888 |
Chandra Konduru6156a452015-04-27 13:48:39 -07003027 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003028 case DRM_FORMAT_XRGB2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003029 return PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07003030 case DRM_FORMAT_XBGR2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003031 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07003032 case DRM_FORMAT_YUYV:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003033 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
Chandra Konduru6156a452015-04-27 13:48:39 -07003034 case DRM_FORMAT_YVYU:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003035 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
Chandra Konduru6156a452015-04-27 13:48:39 -07003036 case DRM_FORMAT_UYVY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003037 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003038 case DRM_FORMAT_VYUY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003039 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003040 default:
Damien Lespiau4249eee2015-05-12 16:13:16 +01003041 MISSING_CASE(pixel_format);
Chandra Konduru6156a452015-04-27 13:48:39 -07003042 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003043
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003044 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003045}
3046
3047u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
3048{
Chandra Konduru6156a452015-04-27 13:48:39 -07003049 switch (fb_modifier) {
3050 case DRM_FORMAT_MOD_NONE:
3051 break;
3052 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003053 return PLANE_CTL_TILED_X;
Chandra Konduru6156a452015-04-27 13:48:39 -07003054 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003055 return PLANE_CTL_TILED_Y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003056 case I915_FORMAT_MOD_Yf_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003057 return PLANE_CTL_TILED_YF;
Chandra Konduru6156a452015-04-27 13:48:39 -07003058 default:
3059 MISSING_CASE(fb_modifier);
3060 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003061
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003062 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003063}
3064
3065u32 skl_plane_ctl_rotation(unsigned int rotation)
3066{
Chandra Konduru6156a452015-04-27 13:48:39 -07003067 switch (rotation) {
3068 case BIT(DRM_ROTATE_0):
3069 break;
Sonika Jindal1e8df162015-05-20 13:40:48 +05303070 /*
3071 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
3072 * while i915 HW rotation is clockwise, thats why this swapping.
3073 */
Chandra Konduru6156a452015-04-27 13:48:39 -07003074 case BIT(DRM_ROTATE_90):
Sonika Jindal1e8df162015-05-20 13:40:48 +05303075 return PLANE_CTL_ROTATE_270;
Chandra Konduru6156a452015-04-27 13:48:39 -07003076 case BIT(DRM_ROTATE_180):
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003077 return PLANE_CTL_ROTATE_180;
Chandra Konduru6156a452015-04-27 13:48:39 -07003078 case BIT(DRM_ROTATE_270):
Sonika Jindal1e8df162015-05-20 13:40:48 +05303079 return PLANE_CTL_ROTATE_90;
Chandra Konduru6156a452015-04-27 13:48:39 -07003080 default:
3081 MISSING_CASE(rotation);
3082 }
3083
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003084 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003085}
3086
Damien Lespiau70d21f02013-07-03 21:06:04 +01003087static void skylake_update_primary_plane(struct drm_crtc *crtc,
3088 struct drm_framebuffer *fb,
3089 int x, int y)
3090{
3091 struct drm_device *dev = crtc->dev;
3092 struct drm_i915_private *dev_priv = dev->dev_private;
3093 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003094 struct drm_plane *plane = crtc->primary;
3095 bool visible = to_intel_plane_state(plane->state)->visible;
Damien Lespiau70d21f02013-07-03 21:06:04 +01003096 struct drm_i915_gem_object *obj;
3097 int pipe = intel_crtc->pipe;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303098 u32 plane_ctl, stride_div, stride;
3099 u32 tile_height, plane_offset, plane_size;
3100 unsigned int rotation;
3101 int x_offset, y_offset;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003102 unsigned long surf_addr;
Chandra Konduru6156a452015-04-27 13:48:39 -07003103 struct intel_crtc_state *crtc_state = intel_crtc->config;
3104 struct intel_plane_state *plane_state;
3105 int src_x = 0, src_y = 0, src_w = 0, src_h = 0;
3106 int dst_x = 0, dst_y = 0, dst_w = 0, dst_h = 0;
3107 int scaler_id = -1;
3108
Chandra Konduru6156a452015-04-27 13:48:39 -07003109 plane_state = to_intel_plane_state(plane->state);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003110
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003111 if (!visible || !fb) {
Damien Lespiau70d21f02013-07-03 21:06:04 +01003112 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3113 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3114 POSTING_READ(PLANE_CTL(pipe, 0));
3115 return;
3116 }
3117
3118 plane_ctl = PLANE_CTL_ENABLE |
3119 PLANE_CTL_PIPE_GAMMA_ENABLE |
3120 PLANE_CTL_PIPE_CSC_ENABLE;
3121
Chandra Konduru6156a452015-04-27 13:48:39 -07003122 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3123 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003124 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303125
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303126 rotation = plane->state->rotation;
Chandra Konduru6156a452015-04-27 13:48:39 -07003127 plane_ctl |= skl_plane_ctl_rotation(rotation);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003128
Damien Lespiaub3218032015-02-27 11:15:18 +00003129 obj = intel_fb_obj(fb);
3130 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
3131 fb->pixel_format);
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01003132 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303133
Paulo Zanonia42e5a22015-09-30 17:05:43 -03003134 WARN_ON(drm_rect_width(&plane_state->src) == 0);
Chandra Konduru6156a452015-04-27 13:48:39 -07003135
Paulo Zanonia42e5a22015-09-30 17:05:43 -03003136 scaler_id = plane_state->scaler_id;
3137 src_x = plane_state->src.x1 >> 16;
3138 src_y = plane_state->src.y1 >> 16;
3139 src_w = drm_rect_width(&plane_state->src) >> 16;
3140 src_h = drm_rect_height(&plane_state->src) >> 16;
3141 dst_x = plane_state->dst.x1;
3142 dst_y = plane_state->dst.y1;
3143 dst_w = drm_rect_width(&plane_state->dst);
3144 dst_h = drm_rect_height(&plane_state->dst);
3145
3146 WARN_ON(x != src_x || y != src_y);
Chandra Konduru6156a452015-04-27 13:48:39 -07003147
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303148 if (intel_rotation_90_or_270(rotation)) {
3149 /* stride = Surface height in tiles */
Chandra Konduru2614f172015-05-08 20:22:46 -07003150 tile_height = intel_tile_height(dev, fb->pixel_format,
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01003151 fb->modifier[0], 0);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303152 stride = DIV_ROUND_UP(fb->height, tile_height);
Chandra Konduru6156a452015-04-27 13:48:39 -07003153 x_offset = stride * tile_height - y - src_h;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303154 y_offset = x;
Chandra Konduru6156a452015-04-27 13:48:39 -07003155 plane_size = (src_w - 1) << 16 | (src_h - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303156 } else {
3157 stride = fb->pitches[0] / stride_div;
3158 x_offset = x;
3159 y_offset = y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003160 plane_size = (src_h - 1) << 16 | (src_w - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303161 }
3162 plane_offset = y_offset << 16 | x_offset;
Damien Lespiaub3218032015-02-27 11:15:18 +00003163
Paulo Zanoni2db33662015-09-14 15:20:03 -03003164 intel_crtc->adjusted_x = x_offset;
3165 intel_crtc->adjusted_y = y_offset;
3166
Damien Lespiau70d21f02013-07-03 21:06:04 +01003167 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303168 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3169 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3170 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
Chandra Konduru6156a452015-04-27 13:48:39 -07003171
3172 if (scaler_id >= 0) {
3173 uint32_t ps_ctrl = 0;
3174
3175 WARN_ON(!dst_w || !dst_h);
3176 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3177 crtc_state->scaler_state.scalers[scaler_id].mode;
3178 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3179 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3180 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3181 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3182 I915_WRITE(PLANE_POS(pipe, 0), 0);
3183 } else {
3184 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3185 }
3186
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003187 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003188
3189 POSTING_READ(PLANE_SURF(pipe, 0));
3190}
3191
Jesse Barnes17638cd2011-06-24 12:19:23 -07003192/* Assume fb object is pinned & idle & fenced and just update base pointers */
3193static int
3194intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3195 int x, int y, enum mode_set_atomic state)
3196{
3197 struct drm_device *dev = crtc->dev;
3198 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003199
Paulo Zanoniff2a3112015-07-07 15:26:03 -03003200 if (dev_priv->fbc.disable_fbc)
Paulo Zanoni7733b492015-07-07 15:26:04 -03003201 dev_priv->fbc.disable_fbc(dev_priv);
Jesse Barnes81255562010-08-02 12:07:50 -07003202
Daniel Vetter29b9bde2014-04-24 23:55:01 +02003203 dev_priv->display.update_primary_plane(crtc, fb, x, y);
3204
3205 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07003206}
3207
Ville Syrjälä75147472014-11-24 18:28:11 +02003208static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02003209{
Ville Syrjälä96a02912013-02-18 19:08:49 +02003210 struct drm_crtc *crtc;
3211
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003212 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02003213 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3214 enum plane plane = intel_crtc->plane;
3215
3216 intel_prepare_page_flip(dev, plane);
3217 intel_finish_page_flip_plane(dev, plane);
3218 }
Ville Syrjälä75147472014-11-24 18:28:11 +02003219}
3220
3221static void intel_update_primary_planes(struct drm_device *dev)
3222{
Ville Syrjälä75147472014-11-24 18:28:11 +02003223 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003224
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003225 for_each_crtc(dev, crtc) {
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003226 struct intel_plane *plane = to_intel_plane(crtc->primary);
3227 struct intel_plane_state *plane_state;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003228
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003229 drm_modeset_lock_crtc(crtc, &plane->base);
3230
3231 plane_state = to_intel_plane_state(plane->base.state);
3232
3233 if (plane_state->base.fb)
3234 plane->commit_plane(&plane->base, plane_state);
3235
3236 drm_modeset_unlock_crtc(crtc);
Ville Syrjälä96a02912013-02-18 19:08:49 +02003237 }
3238}
3239
Ville Syrjälä75147472014-11-24 18:28:11 +02003240void intel_prepare_reset(struct drm_device *dev)
3241{
3242 /* no reset support for gen2 */
3243 if (IS_GEN2(dev))
3244 return;
3245
3246 /* reset doesn't touch the display */
3247 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
3248 return;
3249
3250 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003251 /*
3252 * Disabling the crtcs gracefully seems nicer. Also the
3253 * g33 docs say we should at least disable all the planes.
3254 */
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02003255 intel_display_suspend(dev);
Ville Syrjälä75147472014-11-24 18:28:11 +02003256}
3257
3258void intel_finish_reset(struct drm_device *dev)
3259{
3260 struct drm_i915_private *dev_priv = to_i915(dev);
3261
3262 /*
3263 * Flips in the rings will be nuked by the reset,
3264 * so complete all pending flips so that user space
3265 * will get its events and not get stuck.
3266 */
3267 intel_complete_page_flips(dev);
3268
3269 /* no reset support for gen2 */
3270 if (IS_GEN2(dev))
3271 return;
3272
3273 /* reset doesn't touch the display */
3274 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
3275 /*
3276 * Flips in the rings have been nuked by the reset,
3277 * so update the base address of all primary
3278 * planes to the the last fb to make sure we're
3279 * showing the correct fb after a reset.
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003280 *
3281 * FIXME: Atomic will make this obsolete since we won't schedule
3282 * CS-based flips (which might get lost in gpu resets) any more.
Ville Syrjälä75147472014-11-24 18:28:11 +02003283 */
3284 intel_update_primary_planes(dev);
3285 return;
3286 }
3287
3288 /*
3289 * The display has been reset as well,
3290 * so need a full re-initialization.
3291 */
3292 intel_runtime_pm_disable_interrupts(dev_priv);
3293 intel_runtime_pm_enable_interrupts(dev_priv);
3294
3295 intel_modeset_init_hw(dev);
3296
3297 spin_lock_irq(&dev_priv->irq_lock);
3298 if (dev_priv->display.hpd_irq_setup)
3299 dev_priv->display.hpd_irq_setup(dev);
3300 spin_unlock_irq(&dev_priv->irq_lock);
3301
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +02003302 intel_display_resume(dev);
Ville Syrjälä75147472014-11-24 18:28:11 +02003303
3304 intel_hpd_init(dev_priv);
3305
3306 drm_modeset_unlock_all(dev);
3307}
3308
Chris Wilson2e2f3512015-04-27 13:41:14 +01003309static void
Chris Wilson14667a42012-04-03 17:58:35 +01003310intel_finish_fb(struct drm_framebuffer *old_fb)
3311{
Matt Roper2ff8fde2014-07-08 07:50:07 -07003312 struct drm_i915_gem_object *obj = intel_fb_obj(old_fb);
Chris Wilson2e2f3512015-04-27 13:41:14 +01003313 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson14667a42012-04-03 17:58:35 +01003314 bool was_interruptible = dev_priv->mm.interruptible;
3315 int ret;
3316
Chris Wilson14667a42012-04-03 17:58:35 +01003317 /* Big Hammer, we also need to ensure that any pending
3318 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
3319 * current scanout is retired before unpinning the old
Chris Wilson2e2f3512015-04-27 13:41:14 +01003320 * framebuffer. Note that we rely on userspace rendering
3321 * into the buffer attached to the pipe they are waiting
3322 * on. If not, userspace generates a GPU hang with IPEHR
3323 * point to the MI_WAIT_FOR_EVENT.
Chris Wilson14667a42012-04-03 17:58:35 +01003324 *
3325 * This should only fail upon a hung GPU, in which case we
3326 * can safely continue.
3327 */
3328 dev_priv->mm.interruptible = false;
Chris Wilson2e2f3512015-04-27 13:41:14 +01003329 ret = i915_gem_object_wait_rendering(obj, true);
Chris Wilson14667a42012-04-03 17:58:35 +01003330 dev_priv->mm.interruptible = was_interruptible;
3331
Chris Wilson2e2f3512015-04-27 13:41:14 +01003332 WARN_ON(ret);
Chris Wilson14667a42012-04-03 17:58:35 +01003333}
3334
Chris Wilson7d5e3792014-03-04 13:15:08 +00003335static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3336{
3337 struct drm_device *dev = crtc->dev;
3338 struct drm_i915_private *dev_priv = dev->dev_private;
3339 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003340 bool pending;
3341
3342 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3343 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3344 return false;
3345
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003346 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003347 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003348 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003349
3350 return pending;
3351}
3352
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003353static void intel_update_pipe_config(struct intel_crtc *crtc,
3354 struct intel_crtc_state *old_crtc_state)
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003355{
3356 struct drm_device *dev = crtc->base.dev;
3357 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003358 struct intel_crtc_state *pipe_config =
3359 to_intel_crtc_state(crtc->base.state);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003360
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003361 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3362 crtc->base.mode = crtc->base.state->mode;
3363
3364 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3365 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3366 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003367
Maarten Lankhorst44522d82015-08-27 15:44:02 +02003368 if (HAS_DDI(dev))
3369 intel_set_pipe_csc(&crtc->base);
3370
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003371 /*
3372 * Update pipe size and adjust fitter if needed: the reason for this is
3373 * that in compute_mode_changes we check the native mode (not the pfit
3374 * mode) to see if we can flip rather than do a full mode set. In the
3375 * fastboot case, we'll flip, but if we don't update the pipesrc and
3376 * pfit state, we'll end up with a big fb scanned out into the wrong
3377 * sized surface.
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003378 */
3379
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003380 I915_WRITE(PIPESRC(crtc->pipe),
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003381 ((pipe_config->pipe_src_w - 1) << 16) |
3382 (pipe_config->pipe_src_h - 1));
3383
3384 /* on skylake this is done by detaching scalers */
3385 if (INTEL_INFO(dev)->gen >= 9) {
3386 skl_detach_scalers(crtc);
3387
3388 if (pipe_config->pch_pfit.enabled)
3389 skylake_pfit_enable(crtc);
3390 } else if (HAS_PCH_SPLIT(dev)) {
3391 if (pipe_config->pch_pfit.enabled)
3392 ironlake_pfit_enable(crtc);
3393 else if (old_crtc_state->pch_pfit.enabled)
3394 ironlake_pfit_disable(crtc, true);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003395 }
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003396}
3397
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003398static void intel_fdi_normal_train(struct drm_crtc *crtc)
3399{
3400 struct drm_device *dev = crtc->dev;
3401 struct drm_i915_private *dev_priv = dev->dev_private;
3402 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3403 int pipe = intel_crtc->pipe;
3404 u32 reg, temp;
3405
3406 /* enable normal train */
3407 reg = FDI_TX_CTL(pipe);
3408 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003409 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003410 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3411 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003412 } else {
3413 temp &= ~FDI_LINK_TRAIN_NONE;
3414 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003415 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003416 I915_WRITE(reg, temp);
3417
3418 reg = FDI_RX_CTL(pipe);
3419 temp = I915_READ(reg);
3420 if (HAS_PCH_CPT(dev)) {
3421 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3422 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3423 } else {
3424 temp &= ~FDI_LINK_TRAIN_NONE;
3425 temp |= FDI_LINK_TRAIN_NONE;
3426 }
3427 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3428
3429 /* wait one idle pattern time */
3430 POSTING_READ(reg);
3431 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003432
3433 /* IVB wants error correction enabled */
3434 if (IS_IVYBRIDGE(dev))
3435 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3436 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003437}
3438
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003439/* The FDI link training functions for ILK/Ibexpeak. */
3440static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3441{
3442 struct drm_device *dev = crtc->dev;
3443 struct drm_i915_private *dev_priv = dev->dev_private;
3444 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3445 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003446 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003447
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003448 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003449 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003450
Adam Jacksone1a44742010-06-25 15:32:14 -04003451 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3452 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003453 reg = FDI_RX_IMR(pipe);
3454 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003455 temp &= ~FDI_RX_SYMBOL_LOCK;
3456 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003457 I915_WRITE(reg, temp);
3458 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003459 udelay(150);
3460
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003461 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003462 reg = FDI_TX_CTL(pipe);
3463 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003464 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003465 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003466 temp &= ~FDI_LINK_TRAIN_NONE;
3467 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003468 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003469
Chris Wilson5eddb702010-09-11 13:48:45 +01003470 reg = FDI_RX_CTL(pipe);
3471 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003472 temp &= ~FDI_LINK_TRAIN_NONE;
3473 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003474 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3475
3476 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003477 udelay(150);
3478
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003479 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003480 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3481 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3482 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003483
Chris Wilson5eddb702010-09-11 13:48:45 +01003484 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003485 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003486 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003487 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3488
3489 if ((temp & FDI_RX_BIT_LOCK)) {
3490 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003491 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003492 break;
3493 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003494 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003495 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003496 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003497
3498 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003499 reg = FDI_TX_CTL(pipe);
3500 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003501 temp &= ~FDI_LINK_TRAIN_NONE;
3502 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003503 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003504
Chris Wilson5eddb702010-09-11 13:48:45 +01003505 reg = FDI_RX_CTL(pipe);
3506 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003507 temp &= ~FDI_LINK_TRAIN_NONE;
3508 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003509 I915_WRITE(reg, temp);
3510
3511 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003512 udelay(150);
3513
Chris Wilson5eddb702010-09-11 13:48:45 +01003514 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003515 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003516 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003517 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3518
3519 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003520 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003521 DRM_DEBUG_KMS("FDI train 2 done.\n");
3522 break;
3523 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003524 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003525 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003526 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003527
3528 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003529
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003530}
3531
Akshay Joshi0206e352011-08-16 15:34:10 -04003532static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003533 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3534 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3535 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3536 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3537};
3538
3539/* The FDI link training functions for SNB/Cougarpoint. */
3540static void gen6_fdi_link_train(struct drm_crtc *crtc)
3541{
3542 struct drm_device *dev = crtc->dev;
3543 struct drm_i915_private *dev_priv = dev->dev_private;
3544 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3545 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05003546 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003547
Adam Jacksone1a44742010-06-25 15:32:14 -04003548 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3549 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003550 reg = FDI_RX_IMR(pipe);
3551 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003552 temp &= ~FDI_RX_SYMBOL_LOCK;
3553 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003554 I915_WRITE(reg, temp);
3555
3556 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003557 udelay(150);
3558
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003559 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003560 reg = FDI_TX_CTL(pipe);
3561 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003562 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003563 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003564 temp &= ~FDI_LINK_TRAIN_NONE;
3565 temp |= FDI_LINK_TRAIN_PATTERN_1;
3566 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3567 /* SNB-B */
3568 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003569 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003570
Daniel Vetterd74cf322012-10-26 10:58:13 +02003571 I915_WRITE(FDI_RX_MISC(pipe),
3572 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3573
Chris Wilson5eddb702010-09-11 13:48:45 +01003574 reg = FDI_RX_CTL(pipe);
3575 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003576 if (HAS_PCH_CPT(dev)) {
3577 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3578 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3579 } else {
3580 temp &= ~FDI_LINK_TRAIN_NONE;
3581 temp |= FDI_LINK_TRAIN_PATTERN_1;
3582 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003583 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3584
3585 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003586 udelay(150);
3587
Akshay Joshi0206e352011-08-16 15:34:10 -04003588 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003589 reg = FDI_TX_CTL(pipe);
3590 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003591 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3592 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003593 I915_WRITE(reg, temp);
3594
3595 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003596 udelay(500);
3597
Sean Paulfa37d392012-03-02 12:53:39 -05003598 for (retry = 0; retry < 5; retry++) {
3599 reg = FDI_RX_IIR(pipe);
3600 temp = I915_READ(reg);
3601 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3602 if (temp & FDI_RX_BIT_LOCK) {
3603 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3604 DRM_DEBUG_KMS("FDI train 1 done.\n");
3605 break;
3606 }
3607 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003608 }
Sean Paulfa37d392012-03-02 12:53:39 -05003609 if (retry < 5)
3610 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003611 }
3612 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003613 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003614
3615 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003616 reg = FDI_TX_CTL(pipe);
3617 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003618 temp &= ~FDI_LINK_TRAIN_NONE;
3619 temp |= FDI_LINK_TRAIN_PATTERN_2;
3620 if (IS_GEN6(dev)) {
3621 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3622 /* SNB-B */
3623 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3624 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003625 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003626
Chris Wilson5eddb702010-09-11 13:48:45 +01003627 reg = FDI_RX_CTL(pipe);
3628 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003629 if (HAS_PCH_CPT(dev)) {
3630 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3631 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3632 } else {
3633 temp &= ~FDI_LINK_TRAIN_NONE;
3634 temp |= FDI_LINK_TRAIN_PATTERN_2;
3635 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003636 I915_WRITE(reg, temp);
3637
3638 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003639 udelay(150);
3640
Akshay Joshi0206e352011-08-16 15:34:10 -04003641 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003642 reg = FDI_TX_CTL(pipe);
3643 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003644 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3645 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003646 I915_WRITE(reg, temp);
3647
3648 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003649 udelay(500);
3650
Sean Paulfa37d392012-03-02 12:53:39 -05003651 for (retry = 0; retry < 5; retry++) {
3652 reg = FDI_RX_IIR(pipe);
3653 temp = I915_READ(reg);
3654 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3655 if (temp & FDI_RX_SYMBOL_LOCK) {
3656 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3657 DRM_DEBUG_KMS("FDI train 2 done.\n");
3658 break;
3659 }
3660 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003661 }
Sean Paulfa37d392012-03-02 12:53:39 -05003662 if (retry < 5)
3663 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003664 }
3665 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003666 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003667
3668 DRM_DEBUG_KMS("FDI train done.\n");
3669}
3670
Jesse Barnes357555c2011-04-28 15:09:55 -07003671/* Manual link training for Ivy Bridge A0 parts */
3672static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3673{
3674 struct drm_device *dev = crtc->dev;
3675 struct drm_i915_private *dev_priv = dev->dev_private;
3676 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3677 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003678 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003679
3680 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3681 for train result */
3682 reg = FDI_RX_IMR(pipe);
3683 temp = I915_READ(reg);
3684 temp &= ~FDI_RX_SYMBOL_LOCK;
3685 temp &= ~FDI_RX_BIT_LOCK;
3686 I915_WRITE(reg, temp);
3687
3688 POSTING_READ(reg);
3689 udelay(150);
3690
Daniel Vetter01a415f2012-10-27 15:58:40 +02003691 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3692 I915_READ(FDI_RX_IIR(pipe)));
3693
Jesse Barnes139ccd32013-08-19 11:04:55 -07003694 /* Try each vswing and preemphasis setting twice before moving on */
3695 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3696 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003697 reg = FDI_TX_CTL(pipe);
3698 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003699 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3700 temp &= ~FDI_TX_ENABLE;
3701 I915_WRITE(reg, temp);
3702
3703 reg = FDI_RX_CTL(pipe);
3704 temp = I915_READ(reg);
3705 temp &= ~FDI_LINK_TRAIN_AUTO;
3706 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3707 temp &= ~FDI_RX_ENABLE;
3708 I915_WRITE(reg, temp);
3709
3710 /* enable CPU FDI TX and PCH FDI RX */
3711 reg = FDI_TX_CTL(pipe);
3712 temp = I915_READ(reg);
3713 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003714 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003715 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003716 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003717 temp |= snb_b_fdi_train_param[j/2];
3718 temp |= FDI_COMPOSITE_SYNC;
3719 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3720
3721 I915_WRITE(FDI_RX_MISC(pipe),
3722 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3723
3724 reg = FDI_RX_CTL(pipe);
3725 temp = I915_READ(reg);
3726 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3727 temp |= FDI_COMPOSITE_SYNC;
3728 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3729
3730 POSTING_READ(reg);
3731 udelay(1); /* should be 0.5us */
3732
3733 for (i = 0; i < 4; i++) {
3734 reg = FDI_RX_IIR(pipe);
3735 temp = I915_READ(reg);
3736 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3737
3738 if (temp & FDI_RX_BIT_LOCK ||
3739 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3740 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3741 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3742 i);
3743 break;
3744 }
3745 udelay(1); /* should be 0.5us */
3746 }
3747 if (i == 4) {
3748 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3749 continue;
3750 }
3751
3752 /* Train 2 */
3753 reg = FDI_TX_CTL(pipe);
3754 temp = I915_READ(reg);
3755 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3756 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3757 I915_WRITE(reg, temp);
3758
3759 reg = FDI_RX_CTL(pipe);
3760 temp = I915_READ(reg);
3761 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3762 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003763 I915_WRITE(reg, temp);
3764
3765 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003766 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003767
Jesse Barnes139ccd32013-08-19 11:04:55 -07003768 for (i = 0; i < 4; i++) {
3769 reg = FDI_RX_IIR(pipe);
3770 temp = I915_READ(reg);
3771 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003772
Jesse Barnes139ccd32013-08-19 11:04:55 -07003773 if (temp & FDI_RX_SYMBOL_LOCK ||
3774 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3775 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3776 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3777 i);
3778 goto train_done;
3779 }
3780 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003781 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003782 if (i == 4)
3783 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003784 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003785
Jesse Barnes139ccd32013-08-19 11:04:55 -07003786train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003787 DRM_DEBUG_KMS("FDI train done.\n");
3788}
3789
Daniel Vetter88cefb62012-08-12 19:27:14 +02003790static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003791{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003792 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003793 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003794 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003795 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003796
Jesse Barnesc64e3112010-09-10 11:27:03 -07003797
Jesse Barnes0e23b992010-09-10 11:10:00 -07003798 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003799 reg = FDI_RX_CTL(pipe);
3800 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003801 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003802 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003803 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003804 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3805
3806 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003807 udelay(200);
3808
3809 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003810 temp = I915_READ(reg);
3811 I915_WRITE(reg, temp | FDI_PCDCLK);
3812
3813 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003814 udelay(200);
3815
Paulo Zanoni20749732012-11-23 15:30:38 -02003816 /* Enable CPU FDI TX PLL, always on for Ironlake */
3817 reg = FDI_TX_CTL(pipe);
3818 temp = I915_READ(reg);
3819 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3820 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003821
Paulo Zanoni20749732012-11-23 15:30:38 -02003822 POSTING_READ(reg);
3823 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003824 }
3825}
3826
Daniel Vetter88cefb62012-08-12 19:27:14 +02003827static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3828{
3829 struct drm_device *dev = intel_crtc->base.dev;
3830 struct drm_i915_private *dev_priv = dev->dev_private;
3831 int pipe = intel_crtc->pipe;
3832 u32 reg, temp;
3833
3834 /* Switch from PCDclk to Rawclk */
3835 reg = FDI_RX_CTL(pipe);
3836 temp = I915_READ(reg);
3837 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3838
3839 /* Disable CPU FDI TX PLL */
3840 reg = FDI_TX_CTL(pipe);
3841 temp = I915_READ(reg);
3842 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3843
3844 POSTING_READ(reg);
3845 udelay(100);
3846
3847 reg = FDI_RX_CTL(pipe);
3848 temp = I915_READ(reg);
3849 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3850
3851 /* Wait for the clocks to turn off. */
3852 POSTING_READ(reg);
3853 udelay(100);
3854}
3855
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003856static void ironlake_fdi_disable(struct drm_crtc *crtc)
3857{
3858 struct drm_device *dev = crtc->dev;
3859 struct drm_i915_private *dev_priv = dev->dev_private;
3860 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3861 int pipe = intel_crtc->pipe;
3862 u32 reg, temp;
3863
3864 /* disable CPU FDI tx and PCH FDI rx */
3865 reg = FDI_TX_CTL(pipe);
3866 temp = I915_READ(reg);
3867 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3868 POSTING_READ(reg);
3869
3870 reg = FDI_RX_CTL(pipe);
3871 temp = I915_READ(reg);
3872 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003873 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003874 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3875
3876 POSTING_READ(reg);
3877 udelay(100);
3878
3879 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003880 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003881 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003882
3883 /* still set train pattern 1 */
3884 reg = FDI_TX_CTL(pipe);
3885 temp = I915_READ(reg);
3886 temp &= ~FDI_LINK_TRAIN_NONE;
3887 temp |= FDI_LINK_TRAIN_PATTERN_1;
3888 I915_WRITE(reg, temp);
3889
3890 reg = FDI_RX_CTL(pipe);
3891 temp = I915_READ(reg);
3892 if (HAS_PCH_CPT(dev)) {
3893 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3894 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3895 } else {
3896 temp &= ~FDI_LINK_TRAIN_NONE;
3897 temp |= FDI_LINK_TRAIN_PATTERN_1;
3898 }
3899 /* BPC in FDI rx is consistent with that in PIPECONF */
3900 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003901 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003902 I915_WRITE(reg, temp);
3903
3904 POSTING_READ(reg);
3905 udelay(100);
3906}
3907
Chris Wilson5dce5b932014-01-20 10:17:36 +00003908bool intel_has_pending_fb_unpin(struct drm_device *dev)
3909{
3910 struct intel_crtc *crtc;
3911
3912 /* Note that we don't need to be called with mode_config.lock here
3913 * as our list of CRTC objects is static for the lifetime of the
3914 * device and so cannot disappear as we iterate. Similarly, we can
3915 * happily treat the predicates as racy, atomic checks as userspace
3916 * cannot claim and pin a new fb without at least acquring the
3917 * struct_mutex and so serialising with us.
3918 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003919 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003920 if (atomic_read(&crtc->unpin_work_count) == 0)
3921 continue;
3922
3923 if (crtc->unpin_work)
3924 intel_wait_for_vblank(dev, crtc->pipe);
3925
3926 return true;
3927 }
3928
3929 return false;
3930}
3931
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003932static void page_flip_completed(struct intel_crtc *intel_crtc)
3933{
3934 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3935 struct intel_unpin_work *work = intel_crtc->unpin_work;
3936
3937 /* ensure that the unpin work is consistent wrt ->pending. */
3938 smp_rmb();
3939 intel_crtc->unpin_work = NULL;
3940
3941 if (work->event)
3942 drm_send_vblank_event(intel_crtc->base.dev,
3943 intel_crtc->pipe,
3944 work->event);
3945
3946 drm_crtc_vblank_put(&intel_crtc->base);
3947
3948 wake_up_all(&dev_priv->pending_flip_queue);
3949 queue_work(dev_priv->wq, &work->work);
3950
3951 trace_i915_flip_complete(intel_crtc->plane,
3952 work->pending_flip_obj);
3953}
3954
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003955void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003956{
Chris Wilson0f911282012-04-17 10:05:38 +01003957 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003958 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003959
Daniel Vetter2c10d572012-12-20 21:24:07 +01003960 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Chris Wilson9c787942014-09-05 07:13:25 +01003961 if (WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3962 !intel_crtc_has_pending_flip(crtc),
3963 60*HZ) == 0)) {
3964 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003965
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003966 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003967 if (intel_crtc->unpin_work) {
3968 WARN_ONCE(1, "Removing stuck page flip\n");
3969 page_flip_completed(intel_crtc);
3970 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003971 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003972 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003973
Chris Wilson975d5682014-08-20 13:13:34 +01003974 if (crtc->primary->fb) {
3975 mutex_lock(&dev->struct_mutex);
3976 intel_finish_fb(crtc->primary->fb);
3977 mutex_unlock(&dev->struct_mutex);
3978 }
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003979}
3980
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003981/* Program iCLKIP clock to the desired frequency */
3982static void lpt_program_iclkip(struct drm_crtc *crtc)
3983{
3984 struct drm_device *dev = crtc->dev;
3985 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003986 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003987 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3988 u32 temp;
3989
Ville Syrjäläa5805162015-05-26 20:42:30 +03003990 mutex_lock(&dev_priv->sb_lock);
Daniel Vetter09153002012-12-12 14:06:44 +01003991
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003992 /* It is necessary to ungate the pixclk gate prior to programming
3993 * the divisors, and gate it back when it is done.
3994 */
3995 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3996
3997 /* Disable SSCCTL */
3998 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003999 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
4000 SBI_SSCCTL_DISABLE,
4001 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004002
4003 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03004004 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004005 auxdiv = 1;
4006 divsel = 0x41;
4007 phaseinc = 0x20;
4008 } else {
4009 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01004010 * but the adjusted_mode->crtc_clock in in KHz. To get the
4011 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004012 * convert the virtual clock precision to KHz here for higher
4013 * precision.
4014 */
4015 u32 iclk_virtual_root_freq = 172800 * 1000;
4016 u32 iclk_pi_range = 64;
4017 u32 desired_divisor, msb_divisor_value, pi_value;
4018
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03004019 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004020 msb_divisor_value = desired_divisor / iclk_pi_range;
4021 pi_value = desired_divisor % iclk_pi_range;
4022
4023 auxdiv = 0;
4024 divsel = msb_divisor_value - 2;
4025 phaseinc = pi_value;
4026 }
4027
4028 /* This should not happen with any sane values */
4029 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
4030 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
4031 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
4032 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
4033
4034 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 +03004035 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004036 auxdiv,
4037 divsel,
4038 phasedir,
4039 phaseinc);
4040
4041 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004042 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004043 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
4044 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
4045 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
4046 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
4047 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
4048 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004049 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004050
4051 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004052 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004053 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4054 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004055 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004056
4057 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004058 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004059 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004060 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004061
4062 /* Wait for initialization time */
4063 udelay(24);
4064
4065 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01004066
Ville Syrjäläa5805162015-05-26 20:42:30 +03004067 mutex_unlock(&dev_priv->sb_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004068}
4069
Daniel Vetter275f01b22013-05-03 11:49:47 +02004070static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4071 enum pipe pch_transcoder)
4072{
4073 struct drm_device *dev = crtc->base.dev;
4074 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004075 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02004076
4077 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4078 I915_READ(HTOTAL(cpu_transcoder)));
4079 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4080 I915_READ(HBLANK(cpu_transcoder)));
4081 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4082 I915_READ(HSYNC(cpu_transcoder)));
4083
4084 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4085 I915_READ(VTOTAL(cpu_transcoder)));
4086 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4087 I915_READ(VBLANK(cpu_transcoder)));
4088 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4089 I915_READ(VSYNC(cpu_transcoder)));
4090 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4091 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4092}
4093
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004094static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004095{
4096 struct drm_i915_private *dev_priv = dev->dev_private;
4097 uint32_t temp;
4098
4099 temp = I915_READ(SOUTH_CHICKEN1);
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004100 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004101 return;
4102
4103 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4104 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4105
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004106 temp &= ~FDI_BC_BIFURCATION_SELECT;
4107 if (enable)
4108 temp |= FDI_BC_BIFURCATION_SELECT;
4109
4110 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004111 I915_WRITE(SOUTH_CHICKEN1, temp);
4112 POSTING_READ(SOUTH_CHICKEN1);
4113}
4114
4115static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4116{
4117 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004118
4119 switch (intel_crtc->pipe) {
4120 case PIPE_A:
4121 break;
4122 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004123 if (intel_crtc->config->fdi_lanes > 2)
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004124 cpt_set_fdi_bc_bifurcation(dev, false);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004125 else
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004126 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004127
4128 break;
4129 case PIPE_C:
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004130 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004131
4132 break;
4133 default:
4134 BUG();
4135 }
4136}
4137
Jesse Barnesf67a5592011-01-05 10:31:48 -08004138/*
4139 * Enable PCH resources required for PCH ports:
4140 * - PCH PLLs
4141 * - FDI training & RX/TX
4142 * - update transcoder timings
4143 * - DP transcoding bits
4144 * - transcoder
4145 */
4146static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08004147{
4148 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004149 struct drm_i915_private *dev_priv = dev->dev_private;
4150 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4151 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004152 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004153
Daniel Vetterab9412b2013-05-03 11:49:46 +02004154 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01004155
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004156 if (IS_IVYBRIDGE(dev))
4157 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4158
Daniel Vettercd986ab2012-10-26 10:58:12 +02004159 /* Write the TU size bits before fdi link training, so that error
4160 * detection works. */
4161 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4162 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4163
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004164 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07004165 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004166
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004167 /* We need to program the right clock selection before writing the pixel
4168 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004169 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004170 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004171
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004172 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004173 temp |= TRANS_DPLL_ENABLE(pipe);
4174 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004175 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004176 temp |= sel;
4177 else
4178 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004179 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004180 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004181
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004182 /* XXX: pch pll's can be enabled any time before we enable the PCH
4183 * transcoder, and we actually should do this to not upset any PCH
4184 * transcoder that already use the clock when we share it.
4185 *
4186 * Note that enable_shared_dpll tries to do the right thing, but
4187 * get_shared_dpll unconditionally resets the pll - we need that to have
4188 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02004189 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004190
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08004191 /* set transcoder timing, panel must allow it */
4192 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02004193 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004194
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004195 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08004196
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004197 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004198 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01004199 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01004200 reg = TRANS_DP_CTL(pipe);
4201 temp = I915_READ(reg);
4202 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08004203 TRANS_DP_SYNC_MASK |
4204 TRANS_DP_BPC_MASK);
Ville Syrjäläe3ef4472015-05-05 17:17:31 +03004205 temp |= TRANS_DP_OUTPUT_ENABLE;
Jesse Barnes9325c9f2011-06-24 12:19:21 -07004206 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004207
4208 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004209 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004210 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004211 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004212
4213 switch (intel_trans_dp_port_sel(crtc)) {
4214 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01004215 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004216 break;
4217 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01004218 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004219 break;
4220 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01004221 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004222 break;
4223 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02004224 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004225 }
4226
Chris Wilson5eddb702010-09-11 13:48:45 +01004227 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004228 }
4229
Paulo Zanonib8a4f402012-10-31 18:12:42 -02004230 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004231}
4232
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004233static void lpt_pch_enable(struct drm_crtc *crtc)
4234{
4235 struct drm_device *dev = crtc->dev;
4236 struct drm_i915_private *dev_priv = dev->dev_private;
4237 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004238 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004239
Daniel Vetterab9412b2013-05-03 11:49:46 +02004240 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004241
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02004242 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004243
Paulo Zanoni0540e482012-10-31 18:12:40 -02004244 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02004245 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004246
Paulo Zanoni937bb612012-10-31 18:12:47 -02004247 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004248}
4249
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004250struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
4251 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004252{
Daniel Vettere2b78262013-06-07 23:10:03 +02004253 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004254 struct intel_shared_dpll *pll;
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004255 struct intel_shared_dpll_config *shared_dpll;
Daniel Vettere2b78262013-06-07 23:10:03 +02004256 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004257
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004258 shared_dpll = intel_atomic_get_shared_dpll_state(crtc_state->base.state);
4259
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004260 if (HAS_PCH_IBX(dev_priv->dev)) {
4261 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02004262 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004263 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004264
Daniel Vetter46edb022013-06-05 13:34:12 +02004265 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4266 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004267
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004268 WARN_ON(shared_dpll[i].crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004269
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004270 goto found;
4271 }
4272
Satheeshakrishna Mbcddf612014-08-22 09:49:10 +05304273 if (IS_BROXTON(dev_priv->dev)) {
4274 /* PLL is attached to port in bxt */
4275 struct intel_encoder *encoder;
4276 struct intel_digital_port *intel_dig_port;
4277
4278 encoder = intel_ddi_get_crtc_new_encoder(crtc_state);
4279 if (WARN_ON(!encoder))
4280 return NULL;
4281
4282 intel_dig_port = enc_to_dig_port(&encoder->base);
4283 /* 1:1 mapping between ports and PLLs */
4284 i = (enum intel_dpll_id)intel_dig_port->port;
4285 pll = &dev_priv->shared_dplls[i];
4286 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4287 crtc->base.base.id, pll->name);
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004288 WARN_ON(shared_dpll[i].crtc_mask);
Satheeshakrishna Mbcddf612014-08-22 09:49:10 +05304289
4290 goto found;
4291 }
4292
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004293 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4294 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004295
4296 /* Only want to check enabled timings first */
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004297 if (shared_dpll[i].crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004298 continue;
4299
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004300 if (memcmp(&crtc_state->dpll_hw_state,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004301 &shared_dpll[i].hw_state,
4302 sizeof(crtc_state->dpll_hw_state)) == 0) {
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004303 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004304 crtc->base.base.id, pll->name,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004305 shared_dpll[i].crtc_mask,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004306 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004307 goto found;
4308 }
4309 }
4310
4311 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004312 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4313 pll = &dev_priv->shared_dplls[i];
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004314 if (shared_dpll[i].crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02004315 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4316 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004317 goto found;
4318 }
4319 }
4320
4321 return NULL;
4322
4323found:
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004324 if (shared_dpll[i].crtc_mask == 0)
4325 shared_dpll[i].hw_state =
4326 crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004327
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004328 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02004329 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4330 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02004331
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004332 shared_dpll[i].crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004333
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004334 return pll;
4335}
4336
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004337static void intel_shared_dpll_commit(struct drm_atomic_state *state)
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004338{
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004339 struct drm_i915_private *dev_priv = to_i915(state->dev);
4340 struct intel_shared_dpll_config *shared_dpll;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004341 struct intel_shared_dpll *pll;
4342 enum intel_dpll_id i;
4343
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004344 if (!to_intel_atomic_state(state)->dpll_set)
4345 return;
4346
4347 shared_dpll = to_intel_atomic_state(state)->shared_dpll;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004348 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4349 pll = &dev_priv->shared_dplls[i];
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004350 pll->config = shared_dpll[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004351 }
4352}
4353
Daniel Vettera1520312013-05-03 11:49:50 +02004354static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004355{
4356 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01004357 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004358 u32 temp;
4359
4360 temp = I915_READ(dslreg);
4361 udelay(500);
4362 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004363 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004364 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004365 }
4366}
4367
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004368static int
4369skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4370 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4371 int src_w, int src_h, int dst_w, int dst_h)
Chandra Kondurua1b22782015-04-07 15:28:45 -07004372{
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004373 struct intel_crtc_scaler_state *scaler_state =
4374 &crtc_state->scaler_state;
4375 struct intel_crtc *intel_crtc =
4376 to_intel_crtc(crtc_state->base.crtc);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004377 int need_scaling;
Chandra Konduru6156a452015-04-27 13:48:39 -07004378
4379 need_scaling = intel_rotation_90_or_270(rotation) ?
4380 (src_h != dst_w || src_w != dst_h):
4381 (src_w != dst_w || src_h != dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004382
4383 /*
4384 * if plane is being disabled or scaler is no more required or force detach
4385 * - free scaler binded to this plane/crtc
4386 * - in order to do this, update crtc->scaler_usage
4387 *
4388 * Here scaler state in crtc_state is set free so that
4389 * scaler can be assigned to other user. Actual register
4390 * update to free the scaler is done in plane/panel-fit programming.
4391 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4392 */
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004393 if (force_detach || !need_scaling) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004394 if (*scaler_id >= 0) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004395 scaler_state->scaler_users &= ~(1 << scaler_user);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004396 scaler_state->scalers[*scaler_id].in_use = 0;
4397
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004398 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4399 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4400 intel_crtc->pipe, scaler_user, *scaler_id,
Chandra Kondurua1b22782015-04-07 15:28:45 -07004401 scaler_state->scaler_users);
4402 *scaler_id = -1;
4403 }
4404 return 0;
4405 }
4406
4407 /* range checks */
4408 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4409 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4410
4411 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4412 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004413 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
Chandra Kondurua1b22782015-04-07 15:28:45 -07004414 "size is out of scaler range\n",
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004415 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004416 return -EINVAL;
4417 }
4418
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004419 /* mark this plane as a scaler user in crtc_state */
4420 scaler_state->scaler_users |= (1 << scaler_user);
4421 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4422 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4423 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4424 scaler_state->scaler_users);
4425
4426 return 0;
4427}
4428
4429/**
4430 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4431 *
4432 * @state: crtc's scaler state
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004433 *
4434 * Return
4435 * 0 - scaler_usage updated successfully
4436 * error - requested scaling cannot be supported or other error condition
4437 */
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004438int skl_update_scaler_crtc(struct intel_crtc_state *state)
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004439{
4440 struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03004441 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004442
4443 DRM_DEBUG_KMS("Updating scaler for [CRTC:%i] scaler_user index %u.%u\n",
4444 intel_crtc->base.base.id, intel_crtc->pipe, SKL_CRTC_INDEX);
4445
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004446 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004447 &state->scaler_state.scaler_id, DRM_ROTATE_0,
4448 state->pipe_src_w, state->pipe_src_h,
Ville Syrjäläaad941d2015-09-25 16:38:56 +03004449 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004450}
4451
4452/**
4453 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4454 *
4455 * @state: crtc's scaler state
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004456 * @plane_state: atomic plane state to update
4457 *
4458 * Return
4459 * 0 - scaler_usage updated successfully
4460 * error - requested scaling cannot be supported or other error condition
4461 */
Maarten Lankhorstda20eab2015-06-15 12:33:44 +02004462static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4463 struct intel_plane_state *plane_state)
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004464{
4465
4466 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Maarten Lankhorstda20eab2015-06-15 12:33:44 +02004467 struct intel_plane *intel_plane =
4468 to_intel_plane(plane_state->base.plane);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004469 struct drm_framebuffer *fb = plane_state->base.fb;
4470 int ret;
4471
4472 bool force_detach = !fb || !plane_state->visible;
4473
4474 DRM_DEBUG_KMS("Updating scaler for [PLANE:%d] scaler_user index %u.%u\n",
4475 intel_plane->base.base.id, intel_crtc->pipe,
4476 drm_plane_index(&intel_plane->base));
4477
4478 ret = skl_update_scaler(crtc_state, force_detach,
4479 drm_plane_index(&intel_plane->base),
4480 &plane_state->scaler_id,
4481 plane_state->base.rotation,
4482 drm_rect_width(&plane_state->src) >> 16,
4483 drm_rect_height(&plane_state->src) >> 16,
4484 drm_rect_width(&plane_state->dst),
4485 drm_rect_height(&plane_state->dst));
4486
4487 if (ret || plane_state->scaler_id < 0)
4488 return ret;
4489
Chandra Kondurua1b22782015-04-07 15:28:45 -07004490 /* check colorkey */
Maarten Lankhorst818ed962015-06-15 12:33:54 +02004491 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004492 DRM_DEBUG_KMS("[PLANE:%d] scaling with color key not allowed",
Maarten Lankhorst818ed962015-06-15 12:33:54 +02004493 intel_plane->base.base.id);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004494 return -EINVAL;
4495 }
4496
4497 /* Check src format */
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004498 switch (fb->pixel_format) {
4499 case DRM_FORMAT_RGB565:
4500 case DRM_FORMAT_XBGR8888:
4501 case DRM_FORMAT_XRGB8888:
4502 case DRM_FORMAT_ABGR8888:
4503 case DRM_FORMAT_ARGB8888:
4504 case DRM_FORMAT_XRGB2101010:
4505 case DRM_FORMAT_XBGR2101010:
4506 case DRM_FORMAT_YUYV:
4507 case DRM_FORMAT_YVYU:
4508 case DRM_FORMAT_UYVY:
4509 case DRM_FORMAT_VYUY:
4510 break;
4511 default:
4512 DRM_DEBUG_KMS("[PLANE:%d] FB:%d unsupported scaling format 0x%x\n",
4513 intel_plane->base.base.id, fb->base.id, fb->pixel_format);
4514 return -EINVAL;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004515 }
4516
Chandra Kondurua1b22782015-04-07 15:28:45 -07004517 return 0;
4518}
4519
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004520static void skylake_scaler_disable(struct intel_crtc *crtc)
4521{
4522 int i;
4523
4524 for (i = 0; i < crtc->num_scalers; i++)
4525 skl_detach_scaler(crtc, i);
4526}
4527
4528static void skylake_pfit_enable(struct intel_crtc *crtc)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004529{
4530 struct drm_device *dev = crtc->base.dev;
4531 struct drm_i915_private *dev_priv = dev->dev_private;
4532 int pipe = crtc->pipe;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004533 struct intel_crtc_scaler_state *scaler_state =
4534 &crtc->config->scaler_state;
4535
4536 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4537
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004538 if (crtc->config->pch_pfit.enabled) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004539 int id;
4540
4541 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4542 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4543 return;
4544 }
4545
4546 id = scaler_state->scaler_id;
4547 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4548 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4549 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4550 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4551
4552 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004553 }
4554}
4555
Jesse Barnesb074cec2013-04-25 12:55:02 -07004556static void ironlake_pfit_enable(struct intel_crtc *crtc)
4557{
4558 struct drm_device *dev = crtc->base.dev;
4559 struct drm_i915_private *dev_priv = dev->dev_private;
4560 int pipe = crtc->pipe;
4561
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004562 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004563 /* Force use of hard-coded filter coefficients
4564 * as some pre-programmed values are broken,
4565 * e.g. x201.
4566 */
4567 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4568 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4569 PF_PIPE_SEL_IVB(pipe));
4570 else
4571 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004572 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4573 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004574 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004575}
4576
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004577void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004578{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004579 struct drm_device *dev = crtc->base.dev;
4580 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004581
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004582 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004583 return;
4584
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004585 /* We can only enable IPS after we enable a plane and wait for a vblank */
4586 intel_wait_for_vblank(dev, crtc->pipe);
4587
Paulo Zanonid77e4532013-09-24 13:52:55 -03004588 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004589 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004590 mutex_lock(&dev_priv->rps.hw_lock);
4591 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4592 mutex_unlock(&dev_priv->rps.hw_lock);
4593 /* Quoting Art Runyan: "its not safe to expect any particular
4594 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004595 * mailbox." Moreover, the mailbox may return a bogus state,
4596 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004597 */
4598 } else {
4599 I915_WRITE(IPS_CTL, IPS_ENABLE);
4600 /* The bit only becomes 1 in the next vblank, so this wait here
4601 * is essentially intel_wait_for_vblank. If we don't have this
4602 * and don't wait for vblanks until the end of crtc_enable, then
4603 * the HW state readout code will complain that the expected
4604 * IPS_CTL value is not the one we read. */
4605 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4606 DRM_ERROR("Timed out waiting for IPS enable\n");
4607 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004608}
4609
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004610void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004611{
4612 struct drm_device *dev = crtc->base.dev;
4613 struct drm_i915_private *dev_priv = dev->dev_private;
4614
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004615 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004616 return;
4617
4618 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004619 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004620 mutex_lock(&dev_priv->rps.hw_lock);
4621 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4622 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004623 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4624 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4625 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004626 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004627 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004628 POSTING_READ(IPS_CTL);
4629 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004630
4631 /* We need to wait for a vblank before we can disable the plane. */
4632 intel_wait_for_vblank(dev, crtc->pipe);
4633}
4634
4635/** Loads the palette/gamma unit for the CRTC with the prepared values */
4636static void intel_crtc_load_lut(struct drm_crtc *crtc)
4637{
4638 struct drm_device *dev = crtc->dev;
4639 struct drm_i915_private *dev_priv = dev->dev_private;
4640 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4641 enum pipe pipe = intel_crtc->pipe;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004642 int i;
4643 bool reenable_ips = false;
4644
4645 /* The clocks have to be on to load the palette. */
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004646 if (!crtc->state->active)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004647 return;
4648
Imre Deak50360402015-01-16 00:55:16 -08004649 if (HAS_GMCH_DISPLAY(dev_priv->dev)) {
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03004650 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI))
Paulo Zanonid77e4532013-09-24 13:52:55 -03004651 assert_dsi_pll_enabled(dev_priv);
4652 else
4653 assert_pll_enabled(dev_priv, pipe);
4654 }
4655
Paulo Zanonid77e4532013-09-24 13:52:55 -03004656 /* Workaround : Do not read or write the pipe palette/gamma data while
4657 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4658 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004659 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004660 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4661 GAMMA_MODE_MODE_SPLIT)) {
4662 hsw_disable_ips(intel_crtc);
4663 reenable_ips = true;
4664 }
4665
4666 for (i = 0; i < 256; i++) {
Ville Syrjäläf65a9c52015-09-18 20:03:28 +03004667 u32 palreg;
4668
4669 if (HAS_GMCH_DISPLAY(dev))
4670 palreg = PALETTE(pipe, i);
4671 else
4672 palreg = LGC_PALETTE(pipe, i);
4673
4674 I915_WRITE(palreg,
Paulo Zanonid77e4532013-09-24 13:52:55 -03004675 (intel_crtc->lut_r[i] << 16) |
4676 (intel_crtc->lut_g[i] << 8) |
4677 intel_crtc->lut_b[i]);
4678 }
4679
4680 if (reenable_ips)
4681 hsw_enable_ips(intel_crtc);
4682}
4683
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004684static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004685{
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004686 if (intel_crtc->overlay) {
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004687 struct drm_device *dev = intel_crtc->base.dev;
4688 struct drm_i915_private *dev_priv = dev->dev_private;
4689
4690 mutex_lock(&dev->struct_mutex);
4691 dev_priv->mm.interruptible = false;
4692 (void) intel_overlay_switch_off(intel_crtc->overlay);
4693 dev_priv->mm.interruptible = true;
4694 mutex_unlock(&dev->struct_mutex);
4695 }
4696
4697 /* Let userspace switch the overlay on again. In most cases userspace
4698 * has to recompute where to put it anyway.
4699 */
4700}
4701
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004702/**
4703 * intel_post_enable_primary - Perform operations after enabling primary plane
4704 * @crtc: the CRTC whose primary plane was just enabled
4705 *
4706 * Performs potentially sleeping operations that must be done after the primary
4707 * plane is enabled, such as updating FBC and IPS. Note that this may be
4708 * called due to an explicit primary plane update, or due to an implicit
4709 * re-enable that is caused when a sprite plane is updated to no longer
4710 * completely hide the primary plane.
4711 */
4712static void
4713intel_post_enable_primary(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004714{
4715 struct drm_device *dev = crtc->dev;
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004716 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004717 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4718 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004719
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004720 /*
4721 * BDW signals flip done immediately if the plane
4722 * is disabled, even if the plane enable is already
4723 * armed to occur at the next vblank :(
4724 */
4725 if (IS_BROADWELL(dev))
4726 intel_wait_for_vblank(dev, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004727
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004728 /*
4729 * FIXME IPS should be fine as long as one plane is
4730 * enabled, but in practice it seems to have problems
4731 * when going from primary only to sprite only and vice
4732 * versa.
4733 */
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004734 hsw_enable_ips(intel_crtc);
4735
Daniel Vetterf99d7062014-06-19 16:01:59 +02004736 /*
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004737 * Gen2 reports pipe underruns whenever all planes are disabled.
4738 * So don't enable underrun reporting before at least some planes
4739 * are enabled.
4740 * FIXME: Need to fix the logic to work when we turn off all planes
4741 * but leave the pipe running.
Daniel Vetterf99d7062014-06-19 16:01:59 +02004742 */
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004743 if (IS_GEN2(dev))
4744 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4745
4746 /* Underruns don't raise interrupts, so check manually. */
4747 if (HAS_GMCH_DISPLAY(dev))
4748 i9xx_check_fifo_underruns(dev_priv);
4749}
4750
4751/**
4752 * intel_pre_disable_primary - Perform operations before disabling primary plane
4753 * @crtc: the CRTC whose primary plane is to be disabled
4754 *
4755 * Performs potentially sleeping operations that must be done before the
4756 * primary plane is disabled, such as updating FBC and IPS. Note that this may
4757 * be called due to an explicit primary plane update, or due to an implicit
4758 * disable that is caused when a sprite plane completely hides the primary
4759 * plane.
4760 */
4761static void
4762intel_pre_disable_primary(struct drm_crtc *crtc)
4763{
4764 struct drm_device *dev = crtc->dev;
4765 struct drm_i915_private *dev_priv = dev->dev_private;
4766 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4767 int pipe = intel_crtc->pipe;
4768
4769 /*
4770 * Gen2 reports pipe underruns whenever all planes are disabled.
4771 * So diasble underrun reporting before all the planes get disabled.
4772 * FIXME: Need to fix the logic to work when we turn off all planes
4773 * but leave the pipe running.
4774 */
4775 if (IS_GEN2(dev))
4776 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4777
4778 /*
4779 * Vblank time updates from the shadow to live plane control register
4780 * are blocked if the memory self-refresh mode is active at that
4781 * moment. So to make sure the plane gets truly disabled, disable
4782 * first the self-refresh mode. The self-refresh enable bit in turn
4783 * will be checked/applied by the HW only at the next frame start
4784 * event which is after the vblank start event, so we need to have a
4785 * wait-for-vblank between disabling the plane and the pipe.
4786 */
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03004787 if (HAS_GMCH_DISPLAY(dev)) {
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004788 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03004789 dev_priv->wm.vlv.cxsr = false;
4790 intel_wait_for_vblank(dev, pipe);
4791 }
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004792
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004793 /*
4794 * FIXME IPS should be fine as long as one plane is
4795 * enabled, but in practice it seems to have problems
4796 * when going from primary only to sprite only and vice
4797 * versa.
4798 */
4799 hsw_disable_ips(intel_crtc);
4800}
4801
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004802static void intel_post_plane_update(struct intel_crtc *crtc)
4803{
4804 struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
4805 struct drm_device *dev = crtc->base.dev;
Paulo Zanoni7733b492015-07-07 15:26:04 -03004806 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004807
4808 if (atomic->wait_vblank)
4809 intel_wait_for_vblank(dev, crtc->pipe);
4810
4811 intel_frontbuffer_flip(dev, atomic->fb_bits);
4812
Ville Syrjälä852eb002015-06-24 22:00:07 +03004813 if (atomic->disable_cxsr)
4814 crtc->wm.cxsr_allowed = true;
4815
Ville Syrjäläf015c552015-06-24 22:00:02 +03004816 if (crtc->atomic.update_wm_post)
4817 intel_update_watermarks(&crtc->base);
4818
Paulo Zanonic80ac852015-07-02 19:25:13 -03004819 if (atomic->update_fbc)
Paulo Zanoni7733b492015-07-07 15:26:04 -03004820 intel_fbc_update(dev_priv);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004821
4822 if (atomic->post_enable_primary)
4823 intel_post_enable_primary(&crtc->base);
4824
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004825 memset(atomic, 0, sizeof(*atomic));
4826}
4827
4828static void intel_pre_plane_update(struct intel_crtc *crtc)
4829{
4830 struct drm_device *dev = crtc->base.dev;
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +02004831 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004832 struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
4833 struct drm_plane *p;
4834
4835 /* Track fb's for any planes being disabled */
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004836 drm_for_each_plane_mask(p, dev, atomic->disabled_planes) {
4837 struct intel_plane *plane = to_intel_plane(p);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004838
4839 mutex_lock(&dev->struct_mutex);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +03004840 i915_gem_track_fb(intel_fb_obj(plane->base.fb), NULL,
4841 plane->frontbuffer_bit);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004842 mutex_unlock(&dev->struct_mutex);
4843 }
4844
4845 if (atomic->wait_for_flips)
4846 intel_crtc_wait_for_pending_flips(&crtc->base);
4847
Paulo Zanonic80ac852015-07-02 19:25:13 -03004848 if (atomic->disable_fbc)
Paulo Zanoni25ad93f2015-07-02 19:25:10 -03004849 intel_fbc_disable_crtc(crtc);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004850
Rodrigo Vivi066cf552015-06-26 13:55:54 -07004851 if (crtc->atomic.disable_ips)
4852 hsw_disable_ips(crtc);
4853
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004854 if (atomic->pre_disable_primary)
4855 intel_pre_disable_primary(&crtc->base);
Ville Syrjälä852eb002015-06-24 22:00:07 +03004856
4857 if (atomic->disable_cxsr) {
4858 crtc->wm.cxsr_allowed = false;
4859 intel_set_memory_cxsr(dev_priv, false);
4860 }
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004861}
4862
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004863static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004864{
4865 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004866 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004867 struct drm_plane *p;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004868 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004869
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004870 intel_crtc_dpms_overlay_disable(intel_crtc);
Maarten Lankhorst27321ae2015-04-21 17:12:52 +03004871
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004872 drm_for_each_plane_mask(p, dev, plane_mask)
4873 to_intel_plane(p)->disable_plane(p, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004874
Daniel Vetterf99d7062014-06-19 16:01:59 +02004875 /*
4876 * FIXME: Once we grow proper nuclear flip support out of this we need
4877 * to compute the mask of flip planes precisely. For the time being
4878 * consider this a flip to a NULL plane.
4879 */
4880 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004881}
4882
Jesse Barnesf67a5592011-01-05 10:31:48 -08004883static void ironlake_crtc_enable(struct drm_crtc *crtc)
4884{
4885 struct drm_device *dev = crtc->dev;
4886 struct drm_i915_private *dev_priv = dev->dev_private;
4887 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004888 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004889 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004890
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004891 if (WARN_ON(intel_crtc->active))
Jesse Barnesf67a5592011-01-05 10:31:48 -08004892 return;
4893
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004894 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004895 intel_prepare_shared_dpll(intel_crtc);
4896
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004897 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05304898 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004899
4900 intel_set_pipe_timings(intel_crtc);
4901
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004902 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004903 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004904 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004905 }
4906
4907 ironlake_set_pipeconf(crtc);
4908
Jesse Barnesf67a5592011-01-05 10:31:48 -08004909 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004910
Daniel Vettera72e4c92014-09-30 10:56:47 +02004911 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4912 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004913
Daniel Vetterf6736a12013-06-05 13:34:30 +02004914 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004915 if (encoder->pre_enable)
4916 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004917
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004918 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004919 /* Note: FDI PLL enabling _must_ be done before we enable the
4920 * cpu pipes, hence this is separate from all the other fdi/pch
4921 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004922 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004923 } else {
4924 assert_fdi_tx_disabled(dev_priv, pipe);
4925 assert_fdi_rx_disabled(dev_priv, pipe);
4926 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004927
Jesse Barnesb074cec2013-04-25 12:55:02 -07004928 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004929
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004930 /*
4931 * On ILK+ LUT must be loaded before the pipe is running but with
4932 * clocks enabled
4933 */
4934 intel_crtc_load_lut(crtc);
4935
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004936 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004937 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004938
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004939 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004940 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004941
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004942 assert_vblank_disabled(crtc);
4943 drm_crtc_vblank_on(crtc);
4944
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004945 for_each_encoder_on_crtc(dev, crtc, encoder)
4946 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004947
4948 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004949 cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004950}
4951
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004952/* IPS only exists on ULT machines and is tied to pipe A. */
4953static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4954{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004955 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004956}
4957
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004958static void haswell_crtc_enable(struct drm_crtc *crtc)
4959{
4960 struct drm_device *dev = crtc->dev;
4961 struct drm_i915_private *dev_priv = dev->dev_private;
4962 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4963 struct intel_encoder *encoder;
Maarten Lankhorst99d736a2015-06-01 12:50:09 +02004964 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
4965 struct intel_crtc_state *pipe_config =
4966 to_intel_crtc_state(crtc->state);
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05304967 bool is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004968
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004969 if (WARN_ON(intel_crtc->active))
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004970 return;
4971
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004972 if (intel_crtc_to_shared_dpll(intel_crtc))
4973 intel_enable_shared_dpll(intel_crtc);
4974
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004975 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05304976 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter229fca92014-04-24 23:55:09 +02004977
4978 intel_set_pipe_timings(intel_crtc);
4979
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004980 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4981 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4982 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07004983 }
4984
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004985 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02004986 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004987 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004988 }
4989
4990 haswell_set_pipeconf(crtc);
4991
4992 intel_set_pipe_csc(crtc);
4993
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004994 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004995
Daniel Vettera72e4c92014-09-30 10:56:47 +02004996 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05304997 for_each_encoder_on_crtc(dev, crtc, encoder) {
4998 if (encoder->pre_pll_enable)
4999 encoder->pre_pll_enable(encoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005000 if (encoder->pre_enable)
5001 encoder->pre_enable(encoder);
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305002 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005003
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005004 if (intel_crtc->config->has_pch_encoder) {
Daniel Vettera72e4c92014-09-30 10:56:47 +02005005 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5006 true);
Imre Deak4fe94672014-06-25 22:01:49 +03005007 dev_priv->display.fdi_link_train(crtc);
5008 }
5009
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305010 if (!is_dsi)
5011 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005012
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005013 if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02005014 skylake_pfit_enable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005015 else
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005016 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005017
5018 /*
5019 * On ILK+ LUT must be loaded before the pipe is running but with
5020 * clocks enabled
5021 */
5022 intel_crtc_load_lut(crtc);
5023
Paulo Zanoni1f544382012-10-24 11:32:00 -02005024 intel_ddi_set_pipe_settings(crtc);
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305025 if (!is_dsi)
5026 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
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305034 if (intel_crtc->config->dp_encoder_is_mst && !is_dsi)
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 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07005118}
5119
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005120static void haswell_crtc_disable(struct drm_crtc *crtc)
5121{
5122 struct drm_device *dev = crtc->dev;
5123 struct drm_i915_private *dev_priv = dev->dev_private;
5124 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5125 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005126 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305127 bool is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005128
Jani Nikula8807e552013-08-30 19:40:32 +03005129 for_each_encoder_on_crtc(dev, crtc, encoder) {
5130 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005131 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005132 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005133
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005134 drm_crtc_vblank_off(crtc);
5135 assert_vblank_disabled(crtc);
5136
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005137 if (intel_crtc->config->has_pch_encoder)
Daniel Vettera72e4c92014-09-30 10:56:47 +02005138 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5139 false);
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005140 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005141
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005142 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03005143 intel_ddi_set_vc_payload_alloc(crtc, false);
5144
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305145 if (!is_dsi)
5146 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005147
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005148 if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02005149 skylake_scaler_disable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005150 else
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005151 ironlake_pfit_disable(intel_crtc, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005152
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305153 if (!is_dsi)
5154 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);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005164}
5165
Jesse Barnes2dd24552013-04-25 12:55:01 -07005166static void i9xx_pfit_enable(struct intel_crtc *crtc)
5167{
5168 struct drm_device *dev = crtc->base.dev;
5169 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005170 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07005171
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02005172 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07005173 return;
5174
Daniel Vetterc0b03412013-05-28 12:05:54 +02005175 /*
5176 * The panel fitter should only be adjusted whilst the pipe is disabled,
5177 * according to register description and PRM.
5178 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07005179 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5180 assert_pipe_disabled(dev_priv, crtc->pipe);
5181
Jesse Barnesb074cec2013-04-25 12:55:02 -07005182 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5183 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02005184
5185 /* Border color in case we don't scale up to the full screen. Black by
5186 * default, change to something else for debugging. */
5187 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07005188}
5189
Dave Airlied05410f2014-06-05 13:22:59 +10005190static enum intel_display_power_domain port_to_power_domain(enum port port)
5191{
5192 switch (port) {
5193 case PORT_A:
5194 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
5195 case PORT_B:
5196 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
5197 case PORT_C:
5198 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
5199 case PORT_D:
5200 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
Xiong Zhangd8e19f92015-08-13 18:00:12 +08005201 case PORT_E:
5202 return POWER_DOMAIN_PORT_DDI_E_2_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005203 default:
5204 WARN_ON_ONCE(1);
5205 return POWER_DOMAIN_PORT_OTHER;
5206 }
5207}
5208
Imre Deak77d22dc2014-03-05 16:20:52 +02005209#define for_each_power_domain(domain, mask) \
5210 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
5211 if ((1 << (domain)) & (mask))
5212
Imre Deak319be8a2014-03-04 19:22:57 +02005213enum intel_display_power_domain
5214intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02005215{
Imre Deak319be8a2014-03-04 19:22:57 +02005216 struct drm_device *dev = intel_encoder->base.dev;
5217 struct intel_digital_port *intel_dig_port;
5218
5219 switch (intel_encoder->type) {
5220 case INTEL_OUTPUT_UNKNOWN:
5221 /* Only DDI platforms should ever use this output type */
5222 WARN_ON_ONCE(!HAS_DDI(dev));
5223 case INTEL_OUTPUT_DISPLAYPORT:
5224 case INTEL_OUTPUT_HDMI:
5225 case INTEL_OUTPUT_EDP:
5226 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10005227 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10005228 case INTEL_OUTPUT_DP_MST:
5229 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5230 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02005231 case INTEL_OUTPUT_ANALOG:
5232 return POWER_DOMAIN_PORT_CRT;
5233 case INTEL_OUTPUT_DSI:
5234 return POWER_DOMAIN_PORT_DSI;
5235 default:
5236 return POWER_DOMAIN_PORT_OTHER;
5237 }
5238}
5239
5240static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
5241{
5242 struct drm_device *dev = crtc->dev;
5243 struct intel_encoder *intel_encoder;
5244 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5245 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02005246 unsigned long mask;
5247 enum transcoder transcoder;
5248
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005249 if (!crtc->state->active)
5250 return 0;
5251
Imre Deak77d22dc2014-03-05 16:20:52 +02005252 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
5253
5254 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5255 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005256 if (intel_crtc->config->pch_pfit.enabled ||
5257 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02005258 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5259
Imre Deak319be8a2014-03-04 19:22:57 +02005260 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5261 mask |= BIT(intel_display_port_power_domain(intel_encoder));
5262
Imre Deak77d22dc2014-03-05 16:20:52 +02005263 return mask;
5264}
5265
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005266static unsigned long modeset_get_crtc_power_domains(struct drm_crtc *crtc)
5267{
5268 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5269 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5270 enum intel_display_power_domain domain;
5271 unsigned long domains, new_domains, old_domains;
5272
5273 old_domains = intel_crtc->enabled_power_domains;
5274 intel_crtc->enabled_power_domains = new_domains = get_crtc_power_domains(crtc);
5275
5276 domains = new_domains & ~old_domains;
5277
5278 for_each_power_domain(domain, domains)
5279 intel_display_power_get(dev_priv, domain);
5280
5281 return old_domains & ~new_domains;
5282}
5283
5284static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5285 unsigned long domains)
5286{
5287 enum intel_display_power_domain domain;
5288
5289 for_each_power_domain(domain, domains)
5290 intel_display_power_put(dev_priv, domain);
5291}
5292
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005293static void modeset_update_crtc_power_domains(struct drm_atomic_state *state)
Imre Deak77d22dc2014-03-05 16:20:52 +02005294{
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005295 struct drm_device *dev = state->dev;
Imre Deak77d22dc2014-03-05 16:20:52 +02005296 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005297 unsigned long put_domains[I915_MAX_PIPES] = {};
5298 struct drm_crtc_state *crtc_state;
5299 struct drm_crtc *crtc;
5300 int i;
Imre Deak77d22dc2014-03-05 16:20:52 +02005301
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005302 for_each_crtc_in_state(state, crtc, crtc_state, i) {
5303 if (needs_modeset(crtc->state))
5304 put_domains[to_intel_crtc(crtc)->pipe] =
5305 modeset_get_crtc_power_domains(crtc);
Imre Deak77d22dc2014-03-05 16:20:52 +02005306 }
5307
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005308 if (dev_priv->display.modeset_commit_cdclk) {
5309 unsigned int cdclk = to_intel_atomic_state(state)->cdclk;
5310
5311 if (cdclk != dev_priv->cdclk_freq &&
5312 !WARN_ON(!state->allow_modeset))
5313 dev_priv->display.modeset_commit_cdclk(state);
5314 }
Ville Syrjälä50f6e502014-11-06 14:49:12 +02005315
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005316 for (i = 0; i < I915_MAX_PIPES; i++)
5317 if (put_domains[i])
5318 modeset_put_power_domains(dev_priv, put_domains[i]);
Imre Deak77d22dc2014-03-05 16:20:52 +02005319}
5320
Mika Kaholaadafdc62015-08-18 14:36:59 +03005321static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5322{
5323 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5324
5325 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5326 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5327 return max_cdclk_freq;
5328 else if (IS_CHERRYVIEW(dev_priv))
5329 return max_cdclk_freq*95/100;
5330 else if (INTEL_INFO(dev_priv)->gen < 4)
5331 return 2*max_cdclk_freq*90/100;
5332 else
5333 return max_cdclk_freq*90/100;
5334}
5335
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005336static void intel_update_max_cdclk(struct drm_device *dev)
5337{
5338 struct drm_i915_private *dev_priv = dev->dev_private;
5339
5340 if (IS_SKYLAKE(dev)) {
5341 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
5342
5343 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
5344 dev_priv->max_cdclk_freq = 675000;
5345 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
5346 dev_priv->max_cdclk_freq = 540000;
5347 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
5348 dev_priv->max_cdclk_freq = 450000;
5349 else
5350 dev_priv->max_cdclk_freq = 337500;
5351 } else if (IS_BROADWELL(dev)) {
5352 /*
5353 * FIXME with extra cooling we can allow
5354 * 540 MHz for ULX and 675 Mhz for ULT.
5355 * How can we know if extra cooling is
5356 * available? PCI ID, VTB, something else?
5357 */
5358 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5359 dev_priv->max_cdclk_freq = 450000;
5360 else if (IS_BDW_ULX(dev))
5361 dev_priv->max_cdclk_freq = 450000;
5362 else if (IS_BDW_ULT(dev))
5363 dev_priv->max_cdclk_freq = 540000;
5364 else
5365 dev_priv->max_cdclk_freq = 675000;
Mika Kahola0904dea2015-06-12 10:11:32 +03005366 } else if (IS_CHERRYVIEW(dev)) {
5367 dev_priv->max_cdclk_freq = 320000;
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005368 } else if (IS_VALLEYVIEW(dev)) {
5369 dev_priv->max_cdclk_freq = 400000;
5370 } else {
5371 /* otherwise assume cdclk is fixed */
5372 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5373 }
5374
Mika Kaholaadafdc62015-08-18 14:36:59 +03005375 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5376
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005377 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5378 dev_priv->max_cdclk_freq);
Mika Kaholaadafdc62015-08-18 14:36:59 +03005379
5380 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5381 dev_priv->max_dotclk_freq);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005382}
5383
5384static void intel_update_cdclk(struct drm_device *dev)
5385{
5386 struct drm_i915_private *dev_priv = dev->dev_private;
5387
5388 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
5389 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5390 dev_priv->cdclk_freq);
5391
5392 /*
5393 * Program the gmbus_freq based on the cdclk frequency.
5394 * BSpec erroneously claims we should aim for 4MHz, but
5395 * in fact 1MHz is the correct frequency.
5396 */
5397 if (IS_VALLEYVIEW(dev)) {
5398 /*
5399 * Program the gmbus_freq based on the cdclk frequency.
5400 * BSpec erroneously claims we should aim for 4MHz, but
5401 * in fact 1MHz is the correct frequency.
5402 */
5403 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
5404 }
5405
5406 if (dev_priv->max_cdclk_freq == 0)
5407 intel_update_max_cdclk(dev);
5408}
5409
Damien Lespiau70d0c572015-06-04 18:21:29 +01005410static void broxton_set_cdclk(struct drm_device *dev, int frequency)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305411{
5412 struct drm_i915_private *dev_priv = dev->dev_private;
5413 uint32_t divider;
5414 uint32_t ratio;
5415 uint32_t current_freq;
5416 int ret;
5417
5418 /* frequency = 19.2MHz * ratio / 2 / div{1,1.5,2,4} */
5419 switch (frequency) {
5420 case 144000:
5421 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
5422 ratio = BXT_DE_PLL_RATIO(60);
5423 break;
5424 case 288000:
5425 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
5426 ratio = BXT_DE_PLL_RATIO(60);
5427 break;
5428 case 384000:
5429 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
5430 ratio = BXT_DE_PLL_RATIO(60);
5431 break;
5432 case 576000:
5433 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5434 ratio = BXT_DE_PLL_RATIO(60);
5435 break;
5436 case 624000:
5437 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5438 ratio = BXT_DE_PLL_RATIO(65);
5439 break;
5440 case 19200:
5441 /*
5442 * Bypass frequency with DE PLL disabled. Init ratio, divider
5443 * to suppress GCC warning.
5444 */
5445 ratio = 0;
5446 divider = 0;
5447 break;
5448 default:
5449 DRM_ERROR("unsupported CDCLK freq %d", frequency);
5450
5451 return;
5452 }
5453
5454 mutex_lock(&dev_priv->rps.hw_lock);
5455 /* Inform power controller of upcoming frequency change */
5456 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5457 0x80000000);
5458 mutex_unlock(&dev_priv->rps.hw_lock);
5459
5460 if (ret) {
5461 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
5462 ret, frequency);
5463 return;
5464 }
5465
5466 current_freq = I915_READ(CDCLK_CTL) & CDCLK_FREQ_DECIMAL_MASK;
5467 /* convert from .1 fixpoint MHz with -1MHz offset to kHz */
5468 current_freq = current_freq * 500 + 1000;
5469
5470 /*
5471 * DE PLL has to be disabled when
5472 * - setting to 19.2MHz (bypass, PLL isn't used)
5473 * - before setting to 624MHz (PLL needs toggling)
5474 * - before setting to any frequency from 624MHz (PLL needs toggling)
5475 */
5476 if (frequency == 19200 || frequency == 624000 ||
5477 current_freq == 624000) {
5478 I915_WRITE(BXT_DE_PLL_ENABLE, ~BXT_DE_PLL_PLL_ENABLE);
5479 /* Timeout 200us */
5480 if (wait_for(!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK),
5481 1))
5482 DRM_ERROR("timout waiting for DE PLL unlock\n");
5483 }
5484
5485 if (frequency != 19200) {
5486 uint32_t val;
5487
5488 val = I915_READ(BXT_DE_PLL_CTL);
5489 val &= ~BXT_DE_PLL_RATIO_MASK;
5490 val |= ratio;
5491 I915_WRITE(BXT_DE_PLL_CTL, val);
5492
5493 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5494 /* Timeout 200us */
5495 if (wait_for(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK, 1))
5496 DRM_ERROR("timeout waiting for DE PLL lock\n");
5497
5498 val = I915_READ(CDCLK_CTL);
5499 val &= ~BXT_CDCLK_CD2X_DIV_SEL_MASK;
5500 val |= divider;
5501 /*
5502 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5503 * enable otherwise.
5504 */
5505 val &= ~BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5506 if (frequency >= 500000)
5507 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5508
5509 val &= ~CDCLK_FREQ_DECIMAL_MASK;
5510 /* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5511 val |= (frequency - 1000) / 500;
5512 I915_WRITE(CDCLK_CTL, val);
5513 }
5514
5515 mutex_lock(&dev_priv->rps.hw_lock);
5516 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5517 DIV_ROUND_UP(frequency, 25000));
5518 mutex_unlock(&dev_priv->rps.hw_lock);
5519
5520 if (ret) {
5521 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
5522 ret, frequency);
5523 return;
5524 }
5525
Damien Lespiaua47871b2015-06-04 18:21:34 +01005526 intel_update_cdclk(dev);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305527}
5528
5529void broxton_init_cdclk(struct drm_device *dev)
5530{
5531 struct drm_i915_private *dev_priv = dev->dev_private;
5532 uint32_t val;
5533
5534 /*
5535 * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT
5536 * or else the reset will hang because there is no PCH to respond.
5537 * Move the handshake programming to initialization sequence.
5538 * Previously was left up to BIOS.
5539 */
5540 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5541 val &= ~RESET_PCH_HANDSHAKE_ENABLE;
5542 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
5543
5544 /* Enable PG1 for cdclk */
5545 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5546
5547 /* check if cd clock is enabled */
5548 if (I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_PLL_ENABLE) {
5549 DRM_DEBUG_KMS("Display already initialized\n");
5550 return;
5551 }
5552
5553 /*
5554 * FIXME:
5555 * - The initial CDCLK needs to be read from VBT.
5556 * Need to make this change after VBT has changes for BXT.
5557 * - check if setting the max (or any) cdclk freq is really necessary
5558 * here, it belongs to modeset time
5559 */
5560 broxton_set_cdclk(dev, 624000);
5561
5562 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005563 POSTING_READ(DBUF_CTL);
5564
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305565 udelay(10);
5566
5567 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5568 DRM_ERROR("DBuf power enable timeout!\n");
5569}
5570
5571void broxton_uninit_cdclk(struct drm_device *dev)
5572{
5573 struct drm_i915_private *dev_priv = dev->dev_private;
5574
5575 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005576 POSTING_READ(DBUF_CTL);
5577
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305578 udelay(10);
5579
5580 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5581 DRM_ERROR("DBuf power disable timeout!\n");
5582
5583 /* Set minimum (bypass) frequency, in effect turning off the DE PLL */
5584 broxton_set_cdclk(dev, 19200);
5585
5586 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5587}
5588
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005589static const struct skl_cdclk_entry {
5590 unsigned int freq;
5591 unsigned int vco;
5592} skl_cdclk_frequencies[] = {
5593 { .freq = 308570, .vco = 8640 },
5594 { .freq = 337500, .vco = 8100 },
5595 { .freq = 432000, .vco = 8640 },
5596 { .freq = 450000, .vco = 8100 },
5597 { .freq = 540000, .vco = 8100 },
5598 { .freq = 617140, .vco = 8640 },
5599 { .freq = 675000, .vco = 8100 },
5600};
5601
5602static unsigned int skl_cdclk_decimal(unsigned int freq)
5603{
5604 return (freq - 1000) / 500;
5605}
5606
5607static unsigned int skl_cdclk_get_vco(unsigned int freq)
5608{
5609 unsigned int i;
5610
5611 for (i = 0; i < ARRAY_SIZE(skl_cdclk_frequencies); i++) {
5612 const struct skl_cdclk_entry *e = &skl_cdclk_frequencies[i];
5613
5614 if (e->freq == freq)
5615 return e->vco;
5616 }
5617
5618 return 8100;
5619}
5620
5621static void
5622skl_dpll0_enable(struct drm_i915_private *dev_priv, unsigned int required_vco)
5623{
5624 unsigned int min_freq;
5625 u32 val;
5626
5627 /* select the minimum CDCLK before enabling DPLL 0 */
5628 val = I915_READ(CDCLK_CTL);
5629 val &= ~CDCLK_FREQ_SEL_MASK | ~CDCLK_FREQ_DECIMAL_MASK;
5630 val |= CDCLK_FREQ_337_308;
5631
5632 if (required_vco == 8640)
5633 min_freq = 308570;
5634 else
5635 min_freq = 337500;
5636
5637 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_freq);
5638
5639 I915_WRITE(CDCLK_CTL, val);
5640 POSTING_READ(CDCLK_CTL);
5641
5642 /*
5643 * We always enable DPLL0 with the lowest link rate possible, but still
5644 * taking into account the VCO required to operate the eDP panel at the
5645 * desired frequency. The usual DP link rates operate with a VCO of
5646 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
5647 * The modeset code is responsible for the selection of the exact link
5648 * rate later on, with the constraint of choosing a frequency that
5649 * works with required_vco.
5650 */
5651 val = I915_READ(DPLL_CTRL1);
5652
5653 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
5654 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
5655 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
5656 if (required_vco == 8640)
5657 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
5658 SKL_DPLL0);
5659 else
5660 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
5661 SKL_DPLL0);
5662
5663 I915_WRITE(DPLL_CTRL1, val);
5664 POSTING_READ(DPLL_CTRL1);
5665
5666 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
5667
5668 if (wait_for(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK, 5))
5669 DRM_ERROR("DPLL0 not locked\n");
5670}
5671
5672static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
5673{
5674 int ret;
5675 u32 val;
5676
5677 /* inform PCU we want to change CDCLK */
5678 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
5679 mutex_lock(&dev_priv->rps.hw_lock);
5680 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
5681 mutex_unlock(&dev_priv->rps.hw_lock);
5682
5683 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
5684}
5685
5686static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
5687{
5688 unsigned int i;
5689
5690 for (i = 0; i < 15; i++) {
5691 if (skl_cdclk_pcu_ready(dev_priv))
5692 return true;
5693 udelay(10);
5694 }
5695
5696 return false;
5697}
5698
5699static void skl_set_cdclk(struct drm_i915_private *dev_priv, unsigned int freq)
5700{
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005701 struct drm_device *dev = dev_priv->dev;
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005702 u32 freq_select, pcu_ack;
5703
5704 DRM_DEBUG_DRIVER("Changing CDCLK to %dKHz\n", freq);
5705
5706 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
5707 DRM_ERROR("failed to inform PCU about cdclk change\n");
5708 return;
5709 }
5710
5711 /* set CDCLK_CTL */
5712 switch(freq) {
5713 case 450000:
5714 case 432000:
5715 freq_select = CDCLK_FREQ_450_432;
5716 pcu_ack = 1;
5717 break;
5718 case 540000:
5719 freq_select = CDCLK_FREQ_540;
5720 pcu_ack = 2;
5721 break;
5722 case 308570:
5723 case 337500:
5724 default:
5725 freq_select = CDCLK_FREQ_337_308;
5726 pcu_ack = 0;
5727 break;
5728 case 617140:
5729 case 675000:
5730 freq_select = CDCLK_FREQ_675_617;
5731 pcu_ack = 3;
5732 break;
5733 }
5734
5735 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(freq));
5736 POSTING_READ(CDCLK_CTL);
5737
5738 /* inform PCU of the change */
5739 mutex_lock(&dev_priv->rps.hw_lock);
5740 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
5741 mutex_unlock(&dev_priv->rps.hw_lock);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005742
5743 intel_update_cdclk(dev);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005744}
5745
5746void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
5747{
5748 /* disable DBUF power */
5749 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
5750 POSTING_READ(DBUF_CTL);
5751
5752 udelay(10);
5753
5754 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5755 DRM_ERROR("DBuf power disable timeout\n");
5756
Animesh Manna4e961e42015-08-26 01:36:08 +05305757 /*
5758 * DMC assumes ownership of LCPLL and will get confused if we touch it.
5759 */
5760 if (dev_priv->csr.dmc_payload) {
5761 /* disable DPLL0 */
5762 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) &
5763 ~LCPLL_PLL_ENABLE);
5764 if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1))
5765 DRM_ERROR("Couldn't disable DPLL0\n");
5766 }
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005767
5768 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5769}
5770
5771void skl_init_cdclk(struct drm_i915_private *dev_priv)
5772{
5773 u32 val;
5774 unsigned int required_vco;
5775
5776 /* enable PCH reset handshake */
5777 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5778 I915_WRITE(HSW_NDE_RSTWRN_OPT, val | RESET_PCH_HANDSHAKE_ENABLE);
5779
5780 /* enable PG1 and Misc I/O */
5781 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5782
Gary Wang39d9b852015-08-28 16:40:34 +08005783 /* DPLL0 not enabled (happens on early BIOS versions) */
5784 if (!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_ENABLE)) {
5785 /* enable DPLL0 */
5786 required_vco = skl_cdclk_get_vco(dev_priv->skl_boot_cdclk);
5787 skl_dpll0_enable(dev_priv, required_vco);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005788 }
5789
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005790 /* set CDCLK to the frequency the BIOS chose */
5791 skl_set_cdclk(dev_priv, dev_priv->skl_boot_cdclk);
5792
5793 /* enable DBUF power */
5794 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
5795 POSTING_READ(DBUF_CTL);
5796
5797 udelay(10);
5798
5799 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5800 DRM_ERROR("DBuf power enable timeout\n");
5801}
5802
Jesse Barnes30a970c2013-11-04 13:48:12 -08005803/* Adjust CDclk dividers to allow high res or save power if possible */
5804static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5805{
5806 struct drm_i915_private *dev_priv = dev->dev_private;
5807 u32 val, cmd;
5808
Vandana Kannan164dfd22014-11-24 13:37:41 +05305809 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5810 != dev_priv->cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02005811
Ville Syrjälädfcab172014-06-13 13:37:47 +03005812 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08005813 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03005814 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005815 cmd = 1;
5816 else
5817 cmd = 0;
5818
5819 mutex_lock(&dev_priv->rps.hw_lock);
5820 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5821 val &= ~DSPFREQGUAR_MASK;
5822 val |= (cmd << DSPFREQGUAR_SHIFT);
5823 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5824 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5825 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5826 50)) {
5827 DRM_ERROR("timed out waiting for CDclk change\n");
5828 }
5829 mutex_unlock(&dev_priv->rps.hw_lock);
5830
Ville Syrjälä54433e92015-05-26 20:42:31 +03005831 mutex_lock(&dev_priv->sb_lock);
5832
Ville Syrjälädfcab172014-06-13 13:37:47 +03005833 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005834 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005835
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005836 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005837
Jesse Barnes30a970c2013-11-04 13:48:12 -08005838 /* adjust cdclk divider */
5839 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Vandana Kannan87d5d252015-09-24 23:29:17 +03005840 val &= ~CCK_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005841 val |= divider;
5842 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03005843
5844 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
Vandana Kannan87d5d252015-09-24 23:29:17 +03005845 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
Ville Syrjäläa877e802014-06-13 13:37:52 +03005846 50))
5847 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08005848 }
5849
Jesse Barnes30a970c2013-11-04 13:48:12 -08005850 /* adjust self-refresh exit latency value */
5851 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5852 val &= ~0x7f;
5853
5854 /*
5855 * For high bandwidth configs, we set a higher latency in the bunit
5856 * so that the core display fetch happens in time to avoid underruns.
5857 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03005858 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005859 val |= 4500 / 250; /* 4.5 usec */
5860 else
5861 val |= 3000 / 250; /* 3.0 usec */
5862 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
Ville Syrjälä54433e92015-05-26 20:42:31 +03005863
Ville Syrjäläa5805162015-05-26 20:42:30 +03005864 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005865
Ville Syrjäläb6283052015-06-03 15:45:07 +03005866 intel_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005867}
5868
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005869static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5870{
5871 struct drm_i915_private *dev_priv = dev->dev_private;
5872 u32 val, cmd;
5873
Vandana Kannan164dfd22014-11-24 13:37:41 +05305874 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5875 != dev_priv->cdclk_freq);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005876
5877 switch (cdclk) {
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005878 case 333333:
5879 case 320000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005880 case 266667:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005881 case 200000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005882 break;
5883 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01005884 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005885 return;
5886 }
5887
Ville Syrjälä9d0d3fd2015-03-02 20:07:17 +02005888 /*
5889 * Specs are full of misinformation, but testing on actual
5890 * hardware has shown that we just need to write the desired
5891 * CCK divider into the Punit register.
5892 */
5893 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5894
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005895 mutex_lock(&dev_priv->rps.hw_lock);
5896 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5897 val &= ~DSPFREQGUAR_MASK_CHV;
5898 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
5899 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5900 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5901 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
5902 50)) {
5903 DRM_ERROR("timed out waiting for CDclk change\n");
5904 }
5905 mutex_unlock(&dev_priv->rps.hw_lock);
5906
Ville Syrjäläb6283052015-06-03 15:45:07 +03005907 intel_update_cdclk(dev);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005908}
5909
Jesse Barnes30a970c2013-11-04 13:48:12 -08005910static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
5911 int max_pixclk)
5912{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005913 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005914 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005915
Jesse Barnes30a970c2013-11-04 13:48:12 -08005916 /*
5917 * Really only a few cases to deal with, as only 4 CDclks are supported:
5918 * 200MHz
5919 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005920 * 320/333MHz (depends on HPLL freq)
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005921 * 400MHz (VLV only)
5922 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
5923 * of the lower bin and adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005924 *
5925 * We seem to get an unstable or solid color picture at 200MHz.
5926 * Not sure what's wrong. For now use 200MHz only when all pipes
5927 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08005928 */
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005929 if (!IS_CHERRYVIEW(dev_priv) &&
5930 max_pixclk > freq_320*limit/100)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005931 return 400000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02005932 else if (max_pixclk > 266667*limit/100)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03005933 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005934 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03005935 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03005936 else
5937 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005938}
5939
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305940static int broxton_calc_cdclk(struct drm_i915_private *dev_priv,
5941 int max_pixclk)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005942{
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305943 /*
5944 * FIXME:
5945 * - remove the guardband, it's not needed on BXT
5946 * - set 19.2MHz bypass frequency if there are no active pipes
5947 */
5948 if (max_pixclk > 576000*9/10)
5949 return 624000;
5950 else if (max_pixclk > 384000*9/10)
5951 return 576000;
5952 else if (max_pixclk > 288000*9/10)
5953 return 384000;
5954 else if (max_pixclk > 144000*9/10)
5955 return 288000;
5956 else
5957 return 144000;
5958}
5959
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03005960/* Compute the max pixel clock for new configuration. Uses atomic state if
5961 * that's non-NULL, look at current state otherwise. */
5962static int intel_mode_max_pixclk(struct drm_device *dev,
5963 struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005964{
Jesse Barnes30a970c2013-11-04 13:48:12 -08005965 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005966 struct intel_crtc_state *crtc_state;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005967 int max_pixclk = 0;
5968
Damien Lespiaud3fcc802014-05-13 23:32:22 +01005969 for_each_intel_crtc(dev, intel_crtc) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005970 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005971 if (IS_ERR(crtc_state))
5972 return PTR_ERR(crtc_state);
5973
5974 if (!crtc_state->base.enable)
5975 continue;
5976
5977 max_pixclk = max(max_pixclk,
5978 crtc_state->base.adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005979 }
5980
5981 return max_pixclk;
5982}
5983
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005984static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005985{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005986 struct drm_device *dev = state->dev;
5987 struct drm_i915_private *dev_priv = dev->dev_private;
5988 int max_pixclk = intel_mode_max_pixclk(dev, state);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005989
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03005990 if (max_pixclk < 0)
5991 return max_pixclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005992
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005993 to_intel_atomic_state(state)->cdclk =
5994 valleyview_calc_cdclk(dev_priv, max_pixclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305995
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005996 return 0;
5997}
Jesse Barnes30a970c2013-11-04 13:48:12 -08005998
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02005999static int broxton_modeset_calc_cdclk(struct drm_atomic_state *state)
6000{
6001 struct drm_device *dev = state->dev;
6002 struct drm_i915_private *dev_priv = dev->dev_private;
6003 int max_pixclk = intel_mode_max_pixclk(dev, state);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006004
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006005 if (max_pixclk < 0)
6006 return max_pixclk;
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006007
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006008 to_intel_atomic_state(state)->cdclk =
6009 broxton_calc_cdclk(dev_priv, max_pixclk);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006010
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006011 return 0;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006012}
6013
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006014static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
6015{
6016 unsigned int credits, default_credits;
6017
6018 if (IS_CHERRYVIEW(dev_priv))
6019 default_credits = PFI_CREDIT(12);
6020 else
6021 default_credits = PFI_CREDIT(8);
6022
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03006023 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006024 /* CHV suggested value is 31 or 63 */
6025 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjäläfcc00082015-05-26 20:22:40 +03006026 credits = PFI_CREDIT_63;
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006027 else
6028 credits = PFI_CREDIT(15);
6029 } else {
6030 credits = default_credits;
6031 }
6032
6033 /*
6034 * WA - write default credits before re-programming
6035 * FIXME: should we also set the resend bit here?
6036 */
6037 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6038 default_credits);
6039
6040 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6041 credits | PFI_CREDIT_RESEND);
6042
6043 /*
6044 * FIXME is this guaranteed to clear
6045 * immediately or should we poll for it?
6046 */
6047 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6048}
6049
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006050static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006051{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03006052 struct drm_device *dev = old_state->dev;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006053 unsigned int req_cdclk = to_intel_atomic_state(old_state)->cdclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006054 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006055
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006056 /*
6057 * FIXME: We can end up here with all power domains off, yet
6058 * with a CDCLK frequency other than the minimum. To account
6059 * for this take the PIPE-A power domain, which covers the HW
6060 * blocks needed for the following programming. This can be
6061 * removed once it's guaranteed that we get here either with
6062 * the minimum CDCLK set, or the required power domains
6063 * enabled.
6064 */
6065 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006066
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006067 if (IS_CHERRYVIEW(dev))
6068 cherryview_set_cdclk(dev, req_cdclk);
6069 else
6070 valleyview_set_cdclk(dev, req_cdclk);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006071
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006072 vlv_program_pfi_credits(dev_priv);
Imre Deak738c05c2014-11-19 16:25:37 +02006073
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006074 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006075}
6076
Jesse Barnes89b667f2013-04-18 14:51:36 -07006077static void valleyview_crtc_enable(struct drm_crtc *crtc)
6078{
6079 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006080 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006081 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6082 struct intel_encoder *encoder;
6083 int pipe = intel_crtc->pipe;
Jani Nikula23538ef2013-08-27 15:12:22 +03006084 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006085
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006086 if (WARN_ON(intel_crtc->active))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006087 return;
6088
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006089 is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
Shobhit Kumar8525a232014-06-25 12:20:39 +05306090
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006091 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306092 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006093
6094 intel_set_pipe_timings(intel_crtc);
6095
Ville Syrjäläc14b0482014-10-16 20:52:34 +03006096 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
6097 struct drm_i915_private *dev_priv = dev->dev_private;
6098
6099 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6100 I915_WRITE(CHV_CANVAS(pipe), 0);
6101 }
6102
Daniel Vetter5b18e572014-04-24 23:55:06 +02006103 i9xx_set_pipeconf(intel_crtc);
6104
Jesse Barnes89b667f2013-04-18 14:51:36 -07006105 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006106
Daniel Vettera72e4c92014-09-30 10:56:47 +02006107 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006108
Jesse Barnes89b667f2013-04-18 14:51:36 -07006109 for_each_encoder_on_crtc(dev, crtc, encoder)
6110 if (encoder->pre_pll_enable)
6111 encoder->pre_pll_enable(encoder);
6112
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006113 if (!is_dsi) {
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006114 if (IS_CHERRYVIEW(dev)) {
6115 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006116 chv_enable_pll(intel_crtc, intel_crtc->config);
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006117 } else {
6118 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006119 vlv_enable_pll(intel_crtc, intel_crtc->config);
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006120 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006121 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07006122
6123 for_each_encoder_on_crtc(dev, crtc, encoder)
6124 if (encoder->pre_enable)
6125 encoder->pre_enable(encoder);
6126
Jesse Barnes2dd24552013-04-25 12:55:01 -07006127 i9xx_pfit_enable(intel_crtc);
6128
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006129 intel_crtc_load_lut(crtc);
6130
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006131 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006132
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006133 assert_vblank_disabled(crtc);
6134 drm_crtc_vblank_on(crtc);
6135
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006136 for_each_encoder_on_crtc(dev, crtc, encoder)
6137 encoder->enable(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006138}
6139
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006140static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6141{
6142 struct drm_device *dev = crtc->base.dev;
6143 struct drm_i915_private *dev_priv = dev->dev_private;
6144
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006145 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6146 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006147}
6148
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006149static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08006150{
6151 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006152 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006153 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006154 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006155 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08006156
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006157 if (WARN_ON(intel_crtc->active))
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006158 return;
6159
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006160 i9xx_set_pll_dividers(intel_crtc);
6161
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006162 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05306163 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006164
6165 intel_set_pipe_timings(intel_crtc);
6166
Daniel Vetter5b18e572014-04-24 23:55:06 +02006167 i9xx_set_pipeconf(intel_crtc);
6168
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006169 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01006170
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006171 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006172 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006173
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02006174 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02006175 if (encoder->pre_enable)
6176 encoder->pre_enable(encoder);
6177
Daniel Vetterf6736a12013-06-05 13:34:30 +02006178 i9xx_enable_pll(intel_crtc);
6179
Jesse Barnes2dd24552013-04-25 12:55:01 -07006180 i9xx_pfit_enable(intel_crtc);
6181
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006182 intel_crtc_load_lut(crtc);
6183
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03006184 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006185 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006186
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006187 assert_vblank_disabled(crtc);
6188 drm_crtc_vblank_on(crtc);
6189
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006190 for_each_encoder_on_crtc(dev, crtc, encoder)
6191 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006192}
6193
Daniel Vetter87476d62013-04-11 16:29:06 +02006194static void i9xx_pfit_disable(struct intel_crtc *crtc)
6195{
6196 struct drm_device *dev = crtc->base.dev;
6197 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02006198
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006199 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02006200 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02006201
6202 assert_pipe_disabled(dev_priv, crtc->pipe);
6203
Daniel Vetter328d8e82013-05-08 10:36:31 +02006204 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6205 I915_READ(PFIT_CONTROL));
6206 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02006207}
6208
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006209static void i9xx_crtc_disable(struct drm_crtc *crtc)
6210{
6211 struct drm_device *dev = crtc->dev;
6212 struct drm_i915_private *dev_priv = dev->dev_private;
6213 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006214 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006215 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006216
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006217 /*
6218 * On gen2 planes are double buffered but the pipe isn't, so we must
6219 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03006220 * We also need to wait on all gmch platforms because of the
6221 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006222 */
Imre Deak564ed192014-06-13 14:54:21 +03006223 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006224
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006225 for_each_encoder_on_crtc(dev, crtc, encoder)
6226 encoder->disable(encoder);
6227
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006228 drm_crtc_vblank_off(crtc);
6229 assert_vblank_disabled(crtc);
6230
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03006231 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006232
Daniel Vetter87476d62013-04-11 16:29:06 +02006233 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006234
Jesse Barnes89b667f2013-04-18 14:51:36 -07006235 for_each_encoder_on_crtc(dev, crtc, encoder)
6236 if (encoder->post_disable)
6237 encoder->post_disable(encoder);
6238
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03006239 if (!intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI)) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006240 if (IS_CHERRYVIEW(dev))
6241 chv_disable_pll(dev_priv, pipe);
6242 else if (IS_VALLEYVIEW(dev))
6243 vlv_disable_pll(dev_priv, pipe);
6244 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006245 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006246 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006247
Ville Syrjäläd6db9952015-07-08 23:45:49 +03006248 for_each_encoder_on_crtc(dev, crtc, encoder)
6249 if (encoder->post_pll_disable)
6250 encoder->post_pll_disable(encoder);
6251
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006252 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006253 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006254}
6255
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006256static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006257{
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006258 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006259 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006260 enum intel_display_power_domain domain;
6261 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02006262
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006263 if (!intel_crtc->active)
6264 return;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006265
Maarten Lankhorsta5392052015-06-15 12:33:52 +02006266 if (to_intel_plane_state(crtc->primary->state)->visible) {
6267 intel_crtc_wait_for_pending_flips(crtc);
6268 intel_pre_disable_primary(crtc);
6269 }
6270
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02006271 intel_crtc_disable_planes(crtc, crtc->state->plane_mask);
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006272 dev_priv->display.crtc_disable(crtc);
Matt Roper37d90782015-09-24 15:53:06 -07006273 intel_crtc->active = false;
6274 intel_update_watermarks(crtc);
Maarten Lankhorst1f7457b2015-07-13 11:55:05 +02006275 intel_disable_shared_dpll(intel_crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006276
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006277 domains = intel_crtc->enabled_power_domains;
6278 for_each_power_domain(domain, domains)
6279 intel_display_power_put(dev_priv, domain);
6280 intel_crtc->enabled_power_domains = 0;
6281}
6282
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006283/*
6284 * turn all crtc's off, but do not adjust state
6285 * This has to be paired with a call to intel_modeset_setup_hw_state.
6286 */
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006287int intel_display_suspend(struct drm_device *dev)
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006288{
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006289 struct drm_mode_config *config = &dev->mode_config;
6290 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
6291 struct drm_atomic_state *state;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006292 struct drm_crtc *crtc;
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006293 unsigned crtc_mask = 0;
6294 int ret = 0;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006295
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006296 if (WARN_ON(!ctx))
6297 return 0;
6298
6299 lockdep_assert_held(&ctx->ww_ctx);
6300 state = drm_atomic_state_alloc(dev);
6301 if (WARN_ON(!state))
6302 return -ENOMEM;
6303
6304 state->acquire_ctx = ctx;
6305 state->allow_modeset = true;
6306
6307 for_each_crtc(dev, crtc) {
6308 struct drm_crtc_state *crtc_state =
6309 drm_atomic_get_crtc_state(state, crtc);
6310
6311 ret = PTR_ERR_OR_ZERO(crtc_state);
6312 if (ret)
6313 goto free;
6314
6315 if (!crtc_state->active)
6316 continue;
6317
6318 crtc_state->active = false;
6319 crtc_mask |= 1 << drm_crtc_index(crtc);
6320 }
6321
6322 if (crtc_mask) {
Maarten Lankhorst74c090b2015-07-13 16:30:30 +02006323 ret = drm_atomic_commit(state);
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006324
6325 if (!ret) {
6326 for_each_crtc(dev, crtc)
6327 if (crtc_mask & (1 << drm_crtc_index(crtc)))
6328 crtc->state->active = true;
6329
6330 return ret;
6331 }
6332 }
6333
6334free:
6335 if (ret)
6336 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
6337 drm_atomic_state_free(state);
6338 return ret;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006339}
6340
Chris Wilsonea5b2132010-08-04 13:50:23 +01006341void intel_encoder_destroy(struct drm_encoder *encoder)
6342{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006343 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01006344
Chris Wilsonea5b2132010-08-04 13:50:23 +01006345 drm_encoder_cleanup(encoder);
6346 kfree(intel_encoder);
6347}
6348
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006349/* Cross check the actual hw state with our own modeset state tracking (and it's
6350 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02006351static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006352{
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006353 struct drm_crtc *crtc = connector->base.state->crtc;
6354
6355 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6356 connector->base.base.id,
6357 connector->base.name);
6358
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006359 if (connector->get_hw_state(connector)) {
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006360 struct intel_encoder *encoder = connector->encoder;
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006361 struct drm_connector_state *conn_state = connector->base.state;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006362
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006363 I915_STATE_WARN(!crtc,
6364 "connector enabled without attached crtc\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006365
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006366 if (!crtc)
6367 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006368
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006369 I915_STATE_WARN(!crtc->state->active,
6370 "connector is active, but attached crtc isn't\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006371
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006372 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006373 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006374
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006375 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006376 "atomic encoder doesn't match attached encoder\n");
Dave Airlie36cd7442014-05-02 13:44:18 +10006377
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006378 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006379 "attached encoder crtc differs from connector crtc\n");
6380 } else {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02006381 I915_STATE_WARN(crtc && crtc->state->active,
6382 "attached crtc is active, but connector isn't\n");
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006383 I915_STATE_WARN(!crtc && connector->base.state->best_encoder,
6384 "best encoder set without crtc!\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006385 }
6386}
6387
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006388int intel_connector_init(struct intel_connector *connector)
6389{
6390 struct drm_connector_state *connector_state;
6391
6392 connector_state = kzalloc(sizeof *connector_state, GFP_KERNEL);
6393 if (!connector_state)
6394 return -ENOMEM;
6395
6396 connector->base.state = connector_state;
6397 return 0;
6398}
6399
6400struct intel_connector *intel_connector_alloc(void)
6401{
6402 struct intel_connector *connector;
6403
6404 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6405 if (!connector)
6406 return NULL;
6407
6408 if (intel_connector_init(connector) < 0) {
6409 kfree(connector);
6410 return NULL;
6411 }
6412
6413 return connector;
6414}
6415
Daniel Vetterf0947c32012-07-02 13:10:34 +02006416/* Simple connector->get_hw_state implementation for encoders that support only
6417 * one connector and no cloning and hence the encoder state determines the state
6418 * of the connector. */
6419bool intel_connector_get_hw_state(struct intel_connector *connector)
6420{
Daniel Vetter24929352012-07-02 20:28:59 +02006421 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02006422 struct intel_encoder *encoder = connector->encoder;
6423
6424 return encoder->get_hw_state(encoder, &pipe);
6425}
6426
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006427static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006428{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006429 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6430 return crtc_state->fdi_lanes;
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006431
6432 return 0;
6433}
6434
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006435static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006436 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006437{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006438 struct drm_atomic_state *state = pipe_config->base.state;
6439 struct intel_crtc *other_crtc;
6440 struct intel_crtc_state *other_crtc_state;
6441
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006442 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6443 pipe_name(pipe), pipe_config->fdi_lanes);
6444 if (pipe_config->fdi_lanes > 4) {
6445 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6446 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006447 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006448 }
6449
Paulo Zanonibafb6552013-11-02 21:07:44 -07006450 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006451 if (pipe_config->fdi_lanes > 2) {
6452 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6453 pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006454 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006455 } else {
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006456 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006457 }
6458 }
6459
6460 if (INTEL_INFO(dev)->num_pipes == 2)
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006461 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006462
6463 /* Ivybridge 3 pipe is really complicated */
6464 switch (pipe) {
6465 case PIPE_A:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006466 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006467 case PIPE_B:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006468 if (pipe_config->fdi_lanes <= 2)
6469 return 0;
6470
6471 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6472 other_crtc_state =
6473 intel_atomic_get_crtc_state(state, other_crtc);
6474 if (IS_ERR(other_crtc_state))
6475 return PTR_ERR(other_crtc_state);
6476
6477 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006478 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6479 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006480 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006481 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006482 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006483 case PIPE_C:
Ville Syrjälä251cc672015-03-11 18:52:30 +02006484 if (pipe_config->fdi_lanes > 2) {
6485 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6486 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006487 return -EINVAL;
Ville Syrjälä251cc672015-03-11 18:52:30 +02006488 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006489
6490 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6491 other_crtc_state =
6492 intel_atomic_get_crtc_state(state, other_crtc);
6493 if (IS_ERR(other_crtc_state))
6494 return PTR_ERR(other_crtc_state);
6495
6496 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006497 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006498 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006499 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006500 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006501 default:
6502 BUG();
6503 }
6504}
6505
Daniel Vettere29c22c2013-02-21 00:00:16 +01006506#define RETRY 1
6507static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006508 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02006509{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006510 struct drm_device *dev = intel_crtc->base.dev;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03006511 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006512 int lane, link_bw, fdi_dotclock, ret;
6513 bool needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006514
Daniel Vettere29c22c2013-02-21 00:00:16 +01006515retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02006516 /* FDI is a binary signal running at ~2.7GHz, encoding
6517 * each output octet as 10 bits. The actual frequency
6518 * is stored as a divider into a 100MHz clock, and the
6519 * mode pixel clock is stored in units of 1KHz.
6520 * Hence the bw of each lane in terms of the mode signal
6521 * is:
6522 */
6523 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
6524
Damien Lespiau241bfc32013-09-25 16:45:37 +01006525 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006526
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006527 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006528 pipe_config->pipe_bpp);
6529
6530 pipe_config->fdi_lanes = lane;
6531
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006532 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006533 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006534
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006535 ret = ironlake_check_fdi_lanes(intel_crtc->base.dev,
6536 intel_crtc->pipe, pipe_config);
6537 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01006538 pipe_config->pipe_bpp -= 2*3;
6539 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6540 pipe_config->pipe_bpp);
6541 needs_recompute = true;
6542 pipe_config->bw_constrained = true;
6543
6544 goto retry;
6545 }
6546
6547 if (needs_recompute)
6548 return RETRY;
6549
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006550 return ret;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006551}
6552
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006553static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
6554 struct intel_crtc_state *pipe_config)
6555{
6556 if (pipe_config->pipe_bpp > 24)
6557 return false;
6558
6559 /* HSW can handle pixel rate up to cdclk? */
6560 if (IS_HASWELL(dev_priv->dev))
6561 return true;
6562
6563 /*
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03006564 * We compare against max which means we must take
6565 * the increased cdclk requirement into account when
6566 * calculating the new cdclk.
6567 *
6568 * Should measure whether using a lower cdclk w/o IPS
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006569 */
6570 return ilk_pipe_pixel_rate(pipe_config) <=
6571 dev_priv->max_cdclk_freq * 95 / 100;
6572}
6573
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006574static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006575 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006576{
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006577 struct drm_device *dev = crtc->base.dev;
6578 struct drm_i915_private *dev_priv = dev->dev_private;
6579
Jani Nikulad330a952014-01-21 11:24:25 +02006580 pipe_config->ips_enabled = i915.enable_ips &&
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006581 hsw_crtc_supports_ips(crtc) &&
6582 pipe_config_supports_ips(dev_priv, pipe_config);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006583}
6584
Daniel Vettera43f6e02013-06-07 23:10:32 +02006585static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006586 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08006587{
Daniel Vettera43f6e02013-06-07 23:10:32 +02006588 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02006589 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03006590 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01006591
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006592 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006593 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä44913152015-06-03 15:45:10 +03006594 int clock_limit = dev_priv->max_cdclk_freq;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006595
6596 /*
6597 * Enable pixel doubling when the dot clock
6598 * is > 90% of the (display) core speed.
6599 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03006600 * GDG double wide on either pipe,
6601 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006602 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03006603 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01006604 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006605 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006606 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006607 }
6608
Damien Lespiau241bfc32013-09-25 16:45:37 +01006609 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006610 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006611 }
Chris Wilson89749352010-09-12 18:25:19 +01006612
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006613 /*
6614 * Pipe horizontal size must be even in:
6615 * - DVO ganged mode
6616 * - LVDS dual channel mode
6617 * - Double wide pipe
6618 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006619 if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006620 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6621 pipe_config->pipe_src_w &= ~1;
6622
Damien Lespiau8693a822013-05-03 18:48:11 +01006623 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6624 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03006625 */
6626 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
Ville Syrjäläaad941d2015-09-25 16:38:56 +03006627 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006628 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03006629
Damien Lespiauf5adf942013-06-24 18:29:34 +01006630 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02006631 hsw_compute_ips_config(crtc, pipe_config);
6632
Daniel Vetter877d48d2013-04-19 11:24:43 +02006633 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02006634 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02006635
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +02006636 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006637}
6638
Ville Syrjälä1652d192015-03-31 14:12:01 +03006639static int skylake_get_display_clock_speed(struct drm_device *dev)
6640{
6641 struct drm_i915_private *dev_priv = to_i915(dev);
6642 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
6643 uint32_t cdctl = I915_READ(CDCLK_CTL);
6644 uint32_t linkrate;
6645
Damien Lespiau414355a2015-06-04 18:21:31 +01006646 if (!(lcpll1 & LCPLL_PLL_ENABLE))
Ville Syrjälä1652d192015-03-31 14:12:01 +03006647 return 24000; /* 24MHz is the cd freq with NSSC ref */
Ville Syrjälä1652d192015-03-31 14:12:01 +03006648
6649 if ((cdctl & CDCLK_FREQ_SEL_MASK) == CDCLK_FREQ_540)
6650 return 540000;
6651
6652 linkrate = (I915_READ(DPLL_CTRL1) &
Damien Lespiau71cd8422015-04-30 16:39:17 +01006653 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) >> 1;
Ville Syrjälä1652d192015-03-31 14:12:01 +03006654
Damien Lespiau71cd8422015-04-30 16:39:17 +01006655 if (linkrate == DPLL_CTRL1_LINK_RATE_2160 ||
6656 linkrate == DPLL_CTRL1_LINK_RATE_1080) {
Ville Syrjälä1652d192015-03-31 14:12:01 +03006657 /* vco 8640 */
6658 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6659 case CDCLK_FREQ_450_432:
6660 return 432000;
6661 case CDCLK_FREQ_337_308:
6662 return 308570;
6663 case CDCLK_FREQ_675_617:
6664 return 617140;
6665 default:
6666 WARN(1, "Unknown cd freq selection\n");
6667 }
6668 } else {
6669 /* vco 8100 */
6670 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6671 case CDCLK_FREQ_450_432:
6672 return 450000;
6673 case CDCLK_FREQ_337_308:
6674 return 337500;
6675 case CDCLK_FREQ_675_617:
6676 return 675000;
6677 default:
6678 WARN(1, "Unknown cd freq selection\n");
6679 }
6680 }
6681
6682 /* error case, do as if DPLL0 isn't enabled */
6683 return 24000;
6684}
6685
Bob Paauweacd3f3d2015-06-23 14:14:26 -07006686static int broxton_get_display_clock_speed(struct drm_device *dev)
6687{
6688 struct drm_i915_private *dev_priv = to_i915(dev);
6689 uint32_t cdctl = I915_READ(CDCLK_CTL);
6690 uint32_t pll_ratio = I915_READ(BXT_DE_PLL_CTL) & BXT_DE_PLL_RATIO_MASK;
6691 uint32_t pll_enab = I915_READ(BXT_DE_PLL_ENABLE);
6692 int cdclk;
6693
6694 if (!(pll_enab & BXT_DE_PLL_PLL_ENABLE))
6695 return 19200;
6696
6697 cdclk = 19200 * pll_ratio / 2;
6698
6699 switch (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) {
6700 case BXT_CDCLK_CD2X_DIV_SEL_1:
6701 return cdclk; /* 576MHz or 624MHz */
6702 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
6703 return cdclk * 2 / 3; /* 384MHz */
6704 case BXT_CDCLK_CD2X_DIV_SEL_2:
6705 return cdclk / 2; /* 288MHz */
6706 case BXT_CDCLK_CD2X_DIV_SEL_4:
6707 return cdclk / 4; /* 144MHz */
6708 }
6709
6710 /* error case, do as if DE PLL isn't enabled */
6711 return 19200;
6712}
6713
Ville Syrjälä1652d192015-03-31 14:12:01 +03006714static int broadwell_get_display_clock_speed(struct drm_device *dev)
6715{
6716 struct drm_i915_private *dev_priv = dev->dev_private;
6717 uint32_t lcpll = I915_READ(LCPLL_CTL);
6718 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6719
6720 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6721 return 800000;
6722 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6723 return 450000;
6724 else if (freq == LCPLL_CLK_FREQ_450)
6725 return 450000;
6726 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6727 return 540000;
6728 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6729 return 337500;
6730 else
6731 return 675000;
6732}
6733
6734static int haswell_get_display_clock_speed(struct drm_device *dev)
6735{
6736 struct drm_i915_private *dev_priv = dev->dev_private;
6737 uint32_t lcpll = I915_READ(LCPLL_CTL);
6738 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6739
6740 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6741 return 800000;
6742 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6743 return 450000;
6744 else if (freq == LCPLL_CLK_FREQ_450)
6745 return 450000;
6746 else if (IS_HSW_ULT(dev))
6747 return 337500;
6748 else
6749 return 540000;
Jesse Barnes79e53942008-11-07 14:24:08 -08006750}
6751
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006752static int valleyview_get_display_clock_speed(struct drm_device *dev)
6753{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03006754 return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk",
6755 CCK_DISPLAY_CLOCK_CONTROL);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006756}
6757
Ville Syrjäläb37a6432015-03-31 14:11:54 +03006758static int ilk_get_display_clock_speed(struct drm_device *dev)
6759{
6760 return 450000;
6761}
6762
Jesse Barnese70236a2009-09-21 10:42:27 -07006763static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08006764{
Jesse Barnese70236a2009-09-21 10:42:27 -07006765 return 400000;
6766}
Jesse Barnes79e53942008-11-07 14:24:08 -08006767
Jesse Barnese70236a2009-09-21 10:42:27 -07006768static int i915_get_display_clock_speed(struct drm_device *dev)
6769{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006770 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006771}
Jesse Barnes79e53942008-11-07 14:24:08 -08006772
Jesse Barnese70236a2009-09-21 10:42:27 -07006773static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6774{
6775 return 200000;
6776}
Jesse Barnes79e53942008-11-07 14:24:08 -08006777
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006778static int pnv_get_display_clock_speed(struct drm_device *dev)
6779{
6780 u16 gcfgc = 0;
6781
6782 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6783
6784 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6785 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006786 return 266667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006787 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006788 return 333333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006789 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006790 return 444444;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006791 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6792 return 200000;
6793 default:
6794 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6795 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006796 return 133333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006797 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006798 return 166667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006799 }
6800}
6801
Jesse Barnese70236a2009-09-21 10:42:27 -07006802static int i915gm_get_display_clock_speed(struct drm_device *dev)
6803{
6804 u16 gcfgc = 0;
6805
6806 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6807
6808 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Ville Syrjäläe907f172015-03-31 14:09:47 +03006809 return 133333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006810 else {
6811 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6812 case GC_DISPLAY_CLOCK_333_MHZ:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006813 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006814 default:
6815 case GC_DISPLAY_CLOCK_190_200_MHZ:
6816 return 190000;
6817 }
6818 }
6819}
Jesse Barnes79e53942008-11-07 14:24:08 -08006820
Jesse Barnese70236a2009-09-21 10:42:27 -07006821static int i865_get_display_clock_speed(struct drm_device *dev)
6822{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006823 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07006824}
6825
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006826static int i85x_get_display_clock_speed(struct drm_device *dev)
Jesse Barnese70236a2009-09-21 10:42:27 -07006827{
6828 u16 hpllcc = 0;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006829
Ville Syrjälä65cd2b32015-05-22 11:22:32 +03006830 /*
6831 * 852GM/852GMV only supports 133 MHz and the HPLLCC
6832 * encoding is different :(
6833 * FIXME is this the right way to detect 852GM/852GMV?
6834 */
6835 if (dev->pdev->revision == 0x1)
6836 return 133333;
6837
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006838 pci_bus_read_config_word(dev->pdev->bus,
6839 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
6840
Jesse Barnese70236a2009-09-21 10:42:27 -07006841 /* Assume that the hardware is in the high speed state. This
6842 * should be the default.
6843 */
6844 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
6845 case GC_CLOCK_133_200:
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006846 case GC_CLOCK_133_200_2:
Jesse Barnese70236a2009-09-21 10:42:27 -07006847 case GC_CLOCK_100_200:
6848 return 200000;
6849 case GC_CLOCK_166_250:
6850 return 250000;
6851 case GC_CLOCK_100_133:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006852 return 133333;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006853 case GC_CLOCK_133_266:
6854 case GC_CLOCK_133_266_2:
6855 case GC_CLOCK_166_266:
6856 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07006857 }
6858
6859 /* Shouldn't happen */
6860 return 0;
6861}
6862
6863static int i830_get_display_clock_speed(struct drm_device *dev)
6864{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006865 return 133333;
Jesse Barnes79e53942008-11-07 14:24:08 -08006866}
6867
Ville Syrjälä34edce22015-05-22 11:22:33 +03006868static unsigned int intel_hpll_vco(struct drm_device *dev)
6869{
6870 struct drm_i915_private *dev_priv = dev->dev_private;
6871 static const unsigned int blb_vco[8] = {
6872 [0] = 3200000,
6873 [1] = 4000000,
6874 [2] = 5333333,
6875 [3] = 4800000,
6876 [4] = 6400000,
6877 };
6878 static const unsigned int pnv_vco[8] = {
6879 [0] = 3200000,
6880 [1] = 4000000,
6881 [2] = 5333333,
6882 [3] = 4800000,
6883 [4] = 2666667,
6884 };
6885 static const unsigned int cl_vco[8] = {
6886 [0] = 3200000,
6887 [1] = 4000000,
6888 [2] = 5333333,
6889 [3] = 6400000,
6890 [4] = 3333333,
6891 [5] = 3566667,
6892 [6] = 4266667,
6893 };
6894 static const unsigned int elk_vco[8] = {
6895 [0] = 3200000,
6896 [1] = 4000000,
6897 [2] = 5333333,
6898 [3] = 4800000,
6899 };
6900 static const unsigned int ctg_vco[8] = {
6901 [0] = 3200000,
6902 [1] = 4000000,
6903 [2] = 5333333,
6904 [3] = 6400000,
6905 [4] = 2666667,
6906 [5] = 4266667,
6907 };
6908 const unsigned int *vco_table;
6909 unsigned int vco;
6910 uint8_t tmp = 0;
6911
6912 /* FIXME other chipsets? */
6913 if (IS_GM45(dev))
6914 vco_table = ctg_vco;
6915 else if (IS_G4X(dev))
6916 vco_table = elk_vco;
6917 else if (IS_CRESTLINE(dev))
6918 vco_table = cl_vco;
6919 else if (IS_PINEVIEW(dev))
6920 vco_table = pnv_vco;
6921 else if (IS_G33(dev))
6922 vco_table = blb_vco;
6923 else
6924 return 0;
6925
6926 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
6927
6928 vco = vco_table[tmp & 0x7];
6929 if (vco == 0)
6930 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
6931 else
6932 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
6933
6934 return vco;
6935}
6936
6937static int gm45_get_display_clock_speed(struct drm_device *dev)
6938{
6939 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6940 uint16_t tmp = 0;
6941
6942 pci_read_config_word(dev->pdev, GCFGC, &tmp);
6943
6944 cdclk_sel = (tmp >> 12) & 0x1;
6945
6946 switch (vco) {
6947 case 2666667:
6948 case 4000000:
6949 case 5333333:
6950 return cdclk_sel ? 333333 : 222222;
6951 case 3200000:
6952 return cdclk_sel ? 320000 : 228571;
6953 default:
6954 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
6955 return 222222;
6956 }
6957}
6958
6959static int i965gm_get_display_clock_speed(struct drm_device *dev)
6960{
6961 static const uint8_t div_3200[] = { 16, 10, 8 };
6962 static const uint8_t div_4000[] = { 20, 12, 10 };
6963 static const uint8_t div_5333[] = { 24, 16, 14 };
6964 const uint8_t *div_table;
6965 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6966 uint16_t tmp = 0;
6967
6968 pci_read_config_word(dev->pdev, GCFGC, &tmp);
6969
6970 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
6971
6972 if (cdclk_sel >= ARRAY_SIZE(div_3200))
6973 goto fail;
6974
6975 switch (vco) {
6976 case 3200000:
6977 div_table = div_3200;
6978 break;
6979 case 4000000:
6980 div_table = div_4000;
6981 break;
6982 case 5333333:
6983 div_table = div_5333;
6984 break;
6985 default:
6986 goto fail;
6987 }
6988
6989 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
6990
Damien Lespiaucaf4e252015-06-04 16:56:18 +01006991fail:
Ville Syrjälä34edce22015-05-22 11:22:33 +03006992 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
6993 return 200000;
6994}
6995
6996static int g33_get_display_clock_speed(struct drm_device *dev)
6997{
6998 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
6999 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
7000 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
7001 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
7002 const uint8_t *div_table;
7003 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7004 uint16_t tmp = 0;
7005
7006 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7007
7008 cdclk_sel = (tmp >> 4) & 0x7;
7009
7010 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7011 goto fail;
7012
7013 switch (vco) {
7014 case 3200000:
7015 div_table = div_3200;
7016 break;
7017 case 4000000:
7018 div_table = div_4000;
7019 break;
7020 case 4800000:
7021 div_table = div_4800;
7022 break;
7023 case 5333333:
7024 div_table = div_5333;
7025 break;
7026 default:
7027 goto fail;
7028 }
7029
7030 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7031
Damien Lespiaucaf4e252015-06-04 16:56:18 +01007032fail:
Ville Syrjälä34edce22015-05-22 11:22:33 +03007033 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7034 return 190476;
7035}
7036
Zhenyu Wang2c072452009-06-05 15:38:42 +08007037static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007038intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007039{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007040 while (*num > DATA_LINK_M_N_MASK ||
7041 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08007042 *num >>= 1;
7043 *den >>= 1;
7044 }
7045}
7046
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007047static void compute_m_n(unsigned int m, unsigned int n,
7048 uint32_t *ret_m, uint32_t *ret_n)
7049{
7050 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7051 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7052 intel_reduce_m_n_ratio(ret_m, ret_n);
7053}
7054
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007055void
7056intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7057 int pixel_clock, int link_clock,
7058 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007059{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007060 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007061
7062 compute_m_n(bits_per_pixel * pixel_clock,
7063 link_clock * nlanes * 8,
7064 &m_n->gmch_m, &m_n->gmch_n);
7065
7066 compute_m_n(pixel_clock, link_clock,
7067 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08007068}
7069
Chris Wilsona7615032011-01-12 17:04:08 +00007070static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7071{
Jani Nikulad330a952014-01-21 11:24:25 +02007072 if (i915.panel_use_ssc >= 0)
7073 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007074 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07007075 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00007076}
7077
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007078static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
7079 int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007080{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007081 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007082 struct drm_i915_private *dev_priv = dev->dev_private;
7083 int refclk;
7084
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007085 WARN_ON(!crtc_state->base.state);
7086
Imre Deak5ab7b0b2015-03-06 03:29:25 +02007087 if (IS_VALLEYVIEW(dev) || IS_BROXTON(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02007088 refclk = 100000;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007089 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007090 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007091 refclk = dev_priv->vbt.lvds_ssc_freq;
7092 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007093 } else if (!IS_GEN2(dev)) {
7094 refclk = 96000;
7095 } else {
7096 refclk = 48000;
7097 }
7098
7099 return refclk;
7100}
7101
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007102static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007103{
Daniel Vetter7df00d72013-05-21 21:54:55 +02007104 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007105}
Daniel Vetterf47709a2013-03-28 10:42:02 +01007106
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007107static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7108{
7109 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007110}
7111
Daniel Vetterf47709a2013-03-28 10:42:02 +01007112static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007113 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08007114 intel_clock_t *reduced_clock)
7115{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007116 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007117 u32 fp, fp2 = 0;
7118
7119 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007120 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007121 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007122 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007123 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007124 fp = i9xx_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 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007127 }
7128
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007129 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007130
Daniel Vetterf47709a2013-03-28 10:42:02 +01007131 crtc->lowfreq_avail = false;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007132 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Rodrigo Viviab585de2015-03-24 12:40:09 -07007133 reduced_clock) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007134 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007135 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007136 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007137 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007138 }
7139}
7140
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007141static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7142 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07007143{
7144 u32 reg_val;
7145
7146 /*
7147 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7148 * and set it to a reasonable value instead.
7149 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007150 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007151 reg_val &= 0xffffff00;
7152 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007153 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007154
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007155 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007156 reg_val &= 0x8cffffff;
7157 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007158 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007159
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007160 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007161 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007162 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), 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_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007165 reg_val &= 0x00ffffff;
7166 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007167 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007168}
7169
Daniel Vetterb5518422013-05-03 11:49:48 +02007170static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7171 struct intel_link_m_n *m_n)
7172{
7173 struct drm_device *dev = crtc->base.dev;
7174 struct drm_i915_private *dev_priv = dev->dev_private;
7175 int pipe = crtc->pipe;
7176
Daniel Vettere3b95f12013-05-03 11:49:49 +02007177 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7178 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7179 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7180 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007181}
7182
7183static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07007184 struct intel_link_m_n *m_n,
7185 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02007186{
7187 struct drm_device *dev = crtc->base.dev;
7188 struct drm_i915_private *dev_priv = dev->dev_private;
7189 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007190 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02007191
7192 if (INTEL_INFO(dev)->gen >= 5) {
7193 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7194 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7195 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7196 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07007197 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7198 * for gen < 8) and if DRRS is supported (to make sure the
7199 * registers are not unnecessarily accessed).
7200 */
Durgadoss R44395bf2015-02-13 15:33:02 +05307201 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007202 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07007203 I915_WRITE(PIPE_DATA_M2(transcoder),
7204 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7205 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7206 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7207 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7208 }
Daniel Vetterb5518422013-05-03 11:49:48 +02007209 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02007210 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7211 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7212 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7213 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007214 }
7215}
7216
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05307217void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007218{
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05307219 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7220
7221 if (m_n == M1_N1) {
7222 dp_m_n = &crtc->config->dp_m_n;
7223 dp_m2_n2 = &crtc->config->dp_m2_n2;
7224 } else if (m_n == M2_N2) {
7225
7226 /*
7227 * M2_N2 registers are not supported. Hence m2_n2 divider value
7228 * needs to be programmed into M1_N1.
7229 */
7230 dp_m_n = &crtc->config->dp_m2_n2;
7231 } else {
7232 DRM_ERROR("Unsupported divider value\n");
7233 return;
7234 }
7235
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007236 if (crtc->config->has_pch_encoder)
7237 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007238 else
Ramalingam Cfe3cd48d2015-02-13 15:32:59 +05307239 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007240}
7241
Daniel Vetter251ac862015-06-18 10:30:24 +02007242static void vlv_compute_dpll(struct intel_crtc *crtc,
7243 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007244{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007245 u32 dpll, dpll_md;
7246
7247 /*
7248 * Enable DPIO clock input. We should never disable the reference
7249 * clock for pipe B, since VGA hotplug / manual detection depends
7250 * on it.
7251 */
Ville Syrjälä60bfe442015-06-29 15:25:49 +03007252 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REF_CLK_ENABLE_VLV |
7253 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_REF_CLK_VLV;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007254 /* We should never disable this, set it here for state tracking */
7255 if (crtc->pipe == PIPE_B)
7256 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7257 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02007258 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007259
Ville Syrjäläd288f652014-10-28 13:20:22 +02007260 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007261 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02007262 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007263}
7264
Ville Syrjäläd288f652014-10-28 13:20:22 +02007265static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007266 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007267{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007268 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007269 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007270 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007271 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007272 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007273 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007274
Ville Syrjäläa5805162015-05-26 20:42:30 +03007275 mutex_lock(&dev_priv->sb_lock);
Daniel Vetter09153002012-12-12 14:06:44 +01007276
Ville Syrjäläd288f652014-10-28 13:20:22 +02007277 bestn = pipe_config->dpll.n;
7278 bestm1 = pipe_config->dpll.m1;
7279 bestm2 = pipe_config->dpll.m2;
7280 bestp1 = pipe_config->dpll.p1;
7281 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007282
Jesse Barnes89b667f2013-04-18 14:51:36 -07007283 /* See eDP HDMI DPIO driver vbios notes doc */
7284
7285 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007286 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007287 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007288
7289 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007290 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007291
7292 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007293 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007294 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007295 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007296
7297 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007298 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007299
7300 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007301 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7302 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7303 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007304 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07007305
7306 /*
7307 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7308 * but we don't support that).
7309 * Note: don't use the DAC post divider as it seems unstable.
7310 */
7311 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007312 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007313
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007314 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007315 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007316
Jesse Barnes89b667f2013-04-18 14:51:36 -07007317 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02007318 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007319 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
7320 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007321 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03007322 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007323 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007324 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007325 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007326
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02007327 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07007328 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007329 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007330 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007331 0x0df40000);
7332 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007333 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007334 0x0df70000);
7335 } else { /* HDMI or VGA */
7336 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007337 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007338 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007339 0x0df70000);
7340 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007341 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007342 0x0df40000);
7343 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007344
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007345 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007346 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007347 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
7348 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07007349 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007350 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007351
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007352 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007353 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007354}
7355
Daniel Vetter251ac862015-06-18 10:30:24 +02007356static void chv_compute_dpll(struct intel_crtc *crtc,
7357 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007358{
Ville Syrjälä60bfe442015-06-29 15:25:49 +03007359 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
7360 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007361 DPLL_VCO_ENABLE;
7362 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02007363 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007364
Ville Syrjäläd288f652014-10-28 13:20:22 +02007365 pipe_config->dpll_hw_state.dpll_md =
7366 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007367}
7368
Ville Syrjäläd288f652014-10-28 13:20:22 +02007369static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007370 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007371{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007372 struct drm_device *dev = crtc->base.dev;
7373 struct drm_i915_private *dev_priv = dev->dev_private;
7374 int pipe = crtc->pipe;
7375 int dpll_reg = DPLL(crtc->pipe);
7376 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307377 u32 loopfilter, tribuf_calcntr;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007378 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307379 u32 dpio_val;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307380 int vco;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007381
Ville Syrjäläd288f652014-10-28 13:20:22 +02007382 bestn = pipe_config->dpll.n;
7383 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7384 bestm1 = pipe_config->dpll.m1;
7385 bestm2 = pipe_config->dpll.m2 >> 22;
7386 bestp1 = pipe_config->dpll.p1;
7387 bestp2 = pipe_config->dpll.p2;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307388 vco = pipe_config->dpll.vco;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307389 dpio_val = 0;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307390 loopfilter = 0;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007391
7392 /*
7393 * Enable Refclk and SSC
7394 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007395 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007396 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007397
Ville Syrjäläa5805162015-05-26 20:42:30 +03007398 mutex_lock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007399
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007400 /* p1 and p2 divider */
7401 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7402 5 << DPIO_CHV_S1_DIV_SHIFT |
7403 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7404 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7405 1 << DPIO_CHV_K_DIV_SHIFT);
7406
7407 /* Feedback post-divider - m2 */
7408 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7409
7410 /* Feedback refclk divider - n and m1 */
7411 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7412 DPIO_CHV_M1_DIV_BY_2 |
7413 1 << DPIO_CHV_N_DIV_SHIFT);
7414
7415 /* M2 fraction division */
Ville Syrjälä25a25df2015-07-08 23:45:47 +03007416 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007417
7418 /* M2 fraction division enable */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307419 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7420 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7421 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7422 if (bestm2_frac)
7423 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7424 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007425
Vijay Purushothamande3a0fd2015-03-05 19:32:06 +05307426 /* Program digital lock detect threshold */
7427 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7428 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7429 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7430 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7431 if (!bestm2_frac)
7432 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7433 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7434
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007435 /* Loop filter */
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307436 if (vco == 5400000) {
7437 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7438 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7439 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7440 tribuf_calcntr = 0x9;
7441 } else if (vco <= 6200000) {
7442 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7443 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7444 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7445 tribuf_calcntr = 0x9;
7446 } else if (vco <= 6480000) {
7447 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7448 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7449 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7450 tribuf_calcntr = 0x8;
7451 } else {
7452 /* Not supported. Apply the same limits as in the max case */
7453 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7454 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7455 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7456 tribuf_calcntr = 0;
7457 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007458 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7459
Ville Syrjälä968040b2015-03-11 22:52:08 +02007460 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307461 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7462 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7463 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7464
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007465 /* AFC Recal */
7466 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7467 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7468 DPIO_AFC_RECAL);
7469
Ville Syrjäläa5805162015-05-26 20:42:30 +03007470 mutex_unlock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007471}
7472
Ville Syrjäläd288f652014-10-28 13:20:22 +02007473/**
7474 * vlv_force_pll_on - forcibly enable just the PLL
7475 * @dev_priv: i915 private structure
7476 * @pipe: pipe PLL to enable
7477 * @dpll: PLL configuration
7478 *
7479 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7480 * in cases where we need the PLL enabled even when @pipe is not going to
7481 * be enabled.
7482 */
7483void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7484 const struct dpll *dpll)
7485{
7486 struct intel_crtc *crtc =
7487 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007488 struct intel_crtc_state pipe_config = {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007489 .base.crtc = &crtc->base,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007490 .pixel_multiplier = 1,
7491 .dpll = *dpll,
7492 };
7493
7494 if (IS_CHERRYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02007495 chv_compute_dpll(crtc, &pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +02007496 chv_prepare_pll(crtc, &pipe_config);
7497 chv_enable_pll(crtc, &pipe_config);
7498 } else {
Daniel Vetter251ac862015-06-18 10:30:24 +02007499 vlv_compute_dpll(crtc, &pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +02007500 vlv_prepare_pll(crtc, &pipe_config);
7501 vlv_enable_pll(crtc, &pipe_config);
7502 }
7503}
7504
7505/**
7506 * vlv_force_pll_off - forcibly disable just the PLL
7507 * @dev_priv: i915 private structure
7508 * @pipe: pipe PLL to disable
7509 *
7510 * Disable the PLL for @pipe. To be used in cases where we need
7511 * the PLL enabled even when @pipe is not going to be enabled.
7512 */
7513void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7514{
7515 if (IS_CHERRYVIEW(dev))
7516 chv_disable_pll(to_i915(dev), pipe);
7517 else
7518 vlv_disable_pll(to_i915(dev), pipe);
7519}
7520
Daniel Vetter251ac862015-06-18 10:30:24 +02007521static void i9xx_compute_dpll(struct intel_crtc *crtc,
7522 struct intel_crtc_state *crtc_state,
7523 intel_clock_t *reduced_clock,
7524 int num_connectors)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007525{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007526 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007527 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007528 u32 dpll;
7529 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007530 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007531
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007532 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307533
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007534 is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7535 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007536
7537 dpll = DPLL_VGA_MODE_DIS;
7538
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007539 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007540 dpll |= DPLLB_MODE_LVDS;
7541 else
7542 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007543
Daniel Vetteref1b4602013-06-01 17:17:04 +02007544 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007545 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02007546 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007547 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02007548
7549 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007550 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007551
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007552 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007553 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007554
7555 /* compute bitmask from p1 value */
7556 if (IS_PINEVIEW(dev))
7557 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7558 else {
7559 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7560 if (IS_G4X(dev) && reduced_clock)
7561 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7562 }
7563 switch (clock->p2) {
7564 case 5:
7565 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7566 break;
7567 case 7:
7568 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7569 break;
7570 case 10:
7571 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7572 break;
7573 case 14:
7574 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7575 break;
7576 }
7577 if (INTEL_INFO(dev)->gen >= 4)
7578 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7579
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007580 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007581 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007582 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007583 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7584 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7585 else
7586 dpll |= PLL_REF_INPUT_DREFCLK;
7587
7588 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007589 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007590
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007591 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007592 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007593 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007594 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007595 }
7596}
7597
Daniel Vetter251ac862015-06-18 10:30:24 +02007598static void i8xx_compute_dpll(struct intel_crtc *crtc,
7599 struct intel_crtc_state *crtc_state,
7600 intel_clock_t *reduced_clock,
7601 int num_connectors)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007602{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007603 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007604 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007605 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007606 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007607
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007608 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307609
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007610 dpll = DPLL_VGA_MODE_DIS;
7611
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007612 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007613 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7614 } else {
7615 if (clock->p1 == 2)
7616 dpll |= PLL_P1_DIVIDE_BY_TWO;
7617 else
7618 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7619 if (clock->p2 == 4)
7620 dpll |= PLL_P2_DIVIDE_BY_4;
7621 }
7622
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007623 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02007624 dpll |= DPLL_DVO_2X_MODE;
7625
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007626 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007627 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7628 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7629 else
7630 dpll |= PLL_REF_INPUT_DREFCLK;
7631
7632 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007633 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007634}
7635
Daniel Vetter8a654f32013-06-01 17:16:22 +02007636static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007637{
7638 struct drm_device *dev = intel_crtc->base.dev;
7639 struct drm_i915_private *dev_priv = dev->dev_private;
7640 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007641 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03007642 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007643 uint32_t crtc_vtotal, crtc_vblank_end;
7644 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007645
7646 /* We need to be careful not to changed the adjusted mode, for otherwise
7647 * the hw state checker will get angry at the mismatch. */
7648 crtc_vtotal = adjusted_mode->crtc_vtotal;
7649 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007650
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007651 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007652 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007653 crtc_vtotal -= 1;
7654 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007655
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007656 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007657 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7658 else
7659 vsyncshift = adjusted_mode->crtc_hsync_start -
7660 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007661 if (vsyncshift < 0)
7662 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007663 }
7664
7665 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007666 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007667
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007668 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007669 (adjusted_mode->crtc_hdisplay - 1) |
7670 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007671 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007672 (adjusted_mode->crtc_hblank_start - 1) |
7673 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007674 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007675 (adjusted_mode->crtc_hsync_start - 1) |
7676 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7677
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007678 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007679 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007680 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007681 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007682 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007683 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007684 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007685 (adjusted_mode->crtc_vsync_start - 1) |
7686 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7687
Paulo Zanonib5e508d2012-10-24 11:34:43 -02007688 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7689 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7690 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7691 * bits. */
7692 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7693 (pipe == PIPE_B || pipe == PIPE_C))
7694 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7695
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007696 /* pipesrc controls the size that is scaled from, which should
7697 * always be the user's requested size.
7698 */
7699 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007700 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7701 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007702}
7703
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007704static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007705 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007706{
7707 struct drm_device *dev = crtc->base.dev;
7708 struct drm_i915_private *dev_priv = dev->dev_private;
7709 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7710 uint32_t tmp;
7711
7712 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007713 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7714 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007715 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007716 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7717 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007718 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007719 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7720 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007721
7722 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007723 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7724 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007725 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007726 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7727 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007728 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007729 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7730 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007731
7732 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007733 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7734 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7735 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007736 }
7737
7738 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03007739 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7740 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7741
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007742 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7743 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007744}
7745
Daniel Vetterf6a83282014-02-11 15:28:57 -08007746void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007747 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03007748{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007749 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7750 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7751 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7752 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007753
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007754 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7755 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7756 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7757 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007758
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007759 mode->flags = pipe_config->base.adjusted_mode.flags;
Maarten Lankhorstcd13f5a2015-07-14 14:12:02 +02007760 mode->type = DRM_MODE_TYPE_DRIVER;
Jesse Barnesbabea612013-06-26 18:57:38 +03007761
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007762 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7763 mode->flags |= pipe_config->base.adjusted_mode.flags;
Maarten Lankhorstcd13f5a2015-07-14 14:12:02 +02007764
7765 mode->hsync = drm_mode_hsync(mode);
7766 mode->vrefresh = drm_mode_vrefresh(mode);
7767 drm_mode_set_name(mode);
Jesse Barnesbabea612013-06-26 18:57:38 +03007768}
7769
Daniel Vetter84b046f2013-02-19 18:48:54 +01007770static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7771{
7772 struct drm_device *dev = intel_crtc->base.dev;
7773 struct drm_i915_private *dev_priv = dev->dev_private;
7774 uint32_t pipeconf;
7775
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007776 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007777
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03007778 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7779 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7780 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02007781
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007782 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007783 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007784
Daniel Vetterff9ce462013-04-24 14:57:17 +02007785 /* only g4x and later have fancy bpc/dither controls */
7786 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007787 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007788 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02007789 pipeconf |= PIPECONF_DITHER_EN |
7790 PIPECONF_DITHER_TYPE_SP;
7791
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007792 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007793 case 18:
7794 pipeconf |= PIPECONF_6BPC;
7795 break;
7796 case 24:
7797 pipeconf |= PIPECONF_8BPC;
7798 break;
7799 case 30:
7800 pipeconf |= PIPECONF_10BPC;
7801 break;
7802 default:
7803 /* Case prevented by intel_choose_pipe_bpp_dither. */
7804 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01007805 }
7806 }
7807
7808 if (HAS_PIPE_CXSR(dev)) {
7809 if (intel_crtc->lowfreq_avail) {
7810 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7811 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7812 } else {
7813 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01007814 }
7815 }
7816
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007817 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007818 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007819 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007820 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7821 else
7822 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7823 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01007824 pipeconf |= PIPECONF_PROGRESSIVE;
7825
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007826 if (IS_VALLEYVIEW(dev) && intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007827 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03007828
Daniel Vetter84b046f2013-02-19 18:48:54 +01007829 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7830 POSTING_READ(PIPECONF(intel_crtc->pipe));
7831}
7832
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007833static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
7834 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007835{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007836 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007837 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07007838 int refclk, num_connectors = 0;
Daniel Vetterc329a4e2015-06-18 10:30:23 +02007839 intel_clock_t clock;
7840 bool ok;
7841 bool is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01007842 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08007843 const intel_limit_t *limit;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007844 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03007845 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007846 struct drm_connector_state *connector_state;
7847 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -08007848
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03007849 memset(&crtc_state->dpll_hw_state, 0,
7850 sizeof(crtc_state->dpll_hw_state));
7851
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03007852 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007853 if (connector_state->crtc != &crtc->base)
7854 continue;
7855
7856 encoder = to_intel_encoder(connector_state->best_encoder);
7857
Chris Wilson5eddb702010-09-11 13:48:45 +01007858 switch (encoder->type) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007859 case INTEL_OUTPUT_DSI:
7860 is_dsi = true;
7861 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02007862 default:
7863 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08007864 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05007865
Eric Anholtc751ce42010-03-25 11:48:48 -07007866 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08007867 }
7868
Jani Nikulaf2335332013-09-13 11:03:09 +03007869 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02007870 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007871
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007872 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007873 refclk = i9xx_get_refclk(crtc_state, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03007874
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007875 /*
7876 * Returns a set of divisors for the desired target clock with
7877 * the given refclk, or FALSE. The returned values represent
7878 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
7879 * 2) / p1 / p2.
7880 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007881 limit = intel_limit(crtc_state, refclk);
7882 ok = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007883 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007884 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03007885 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007886 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7887 return -EINVAL;
7888 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007889
Jani Nikulaf2335332013-09-13 11:03:09 +03007890 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007891 crtc_state->dpll.n = clock.n;
7892 crtc_state->dpll.m1 = clock.m1;
7893 crtc_state->dpll.m2 = clock.m2;
7894 crtc_state->dpll.p1 = clock.p1;
7895 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007896 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007897
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007898 if (IS_GEN2(dev)) {
Daniel Vetterc329a4e2015-06-18 10:30:23 +02007899 i8xx_compute_dpll(crtc, crtc_state, NULL,
Daniel Vetter251ac862015-06-18 10:30:24 +02007900 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007901 } else if (IS_CHERRYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02007902 chv_compute_dpll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007903 } else if (IS_VALLEYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02007904 vlv_compute_dpll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007905 } else {
Daniel Vetterc329a4e2015-06-18 10:30:23 +02007906 i9xx_compute_dpll(crtc, crtc_state, NULL,
Daniel Vetter251ac862015-06-18 10:30:24 +02007907 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007908 }
Eric Anholtf564048e2011-03-30 13:01:02 -07007909
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007910 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07007911}
7912
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007913static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007914 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007915{
7916 struct drm_device *dev = crtc->base.dev;
7917 struct drm_i915_private *dev_priv = dev->dev_private;
7918 uint32_t tmp;
7919
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02007920 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
7921 return;
7922
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007923 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02007924 if (!(tmp & PFIT_ENABLE))
7925 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007926
Daniel Vetter06922822013-07-11 13:35:40 +02007927 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007928 if (INTEL_INFO(dev)->gen < 4) {
7929 if (crtc->pipe != PIPE_B)
7930 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007931 } else {
7932 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
7933 return;
7934 }
7935
Daniel Vetter06922822013-07-11 13:35:40 +02007936 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007937 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
7938 if (INTEL_INFO(dev)->gen < 5)
7939 pipe_config->gmch_pfit.lvds_border_bits =
7940 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
7941}
7942
Jesse Barnesacbec812013-09-20 11:29:32 -07007943static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007944 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07007945{
7946 struct drm_device *dev = crtc->base.dev;
7947 struct drm_i915_private *dev_priv = dev->dev_private;
7948 int pipe = pipe_config->cpu_transcoder;
7949 intel_clock_t clock;
7950 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07007951 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07007952
Shobhit Kumarf573de52014-07-30 20:32:37 +05307953 /* In case of MIPI DPLL will not even be used */
7954 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
7955 return;
7956
Ville Syrjäläa5805162015-05-26 20:42:30 +03007957 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007958 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Ville Syrjäläa5805162015-05-26 20:42:30 +03007959 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesacbec812013-09-20 11:29:32 -07007960
7961 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
7962 clock.m2 = mdiv & DPIO_M2DIV_MASK;
7963 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
7964 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
7965 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
7966
Imre Deakdccbea32015-06-22 23:35:51 +03007967 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07007968}
7969
Damien Lespiau5724dbd2015-01-20 12:51:52 +00007970static void
7971i9xx_get_initial_plane_config(struct intel_crtc *crtc,
7972 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007973{
7974 struct drm_device *dev = crtc->base.dev;
7975 struct drm_i915_private *dev_priv = dev->dev_private;
7976 u32 val, base, offset;
7977 int pipe = crtc->pipe, plane = crtc->plane;
7978 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00007979 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00007980 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00007981 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007982
Damien Lespiau42a7b082015-02-05 19:35:13 +00007983 val = I915_READ(DSPCNTR(plane));
7984 if (!(val & DISPLAY_PLANE_ENABLE))
7985 return;
7986
Damien Lespiaud9806c92015-01-21 14:07:19 +00007987 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00007988 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08007989 DRM_DEBUG_KMS("failed to alloc fb\n");
7990 return;
7991 }
7992
Damien Lespiau1b842c82015-01-21 13:50:54 +00007993 fb = &intel_fb->base;
7994
Daniel Vetter18c52472015-02-10 17:16:09 +00007995 if (INTEL_INFO(dev)->gen >= 4) {
7996 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00007997 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00007998 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
7999 }
8000 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008001
8002 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00008003 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008004 fb->pixel_format = fourcc;
8005 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008006
8007 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008008 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008009 offset = I915_READ(DSPTILEOFF(plane));
8010 else
8011 offset = I915_READ(DSPLINOFF(plane));
8012 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8013 } else {
8014 base = I915_READ(DSPADDR(plane));
8015 }
8016 plane_config->base = base;
8017
8018 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008019 fb->width = ((val >> 16) & 0xfff) + 1;
8020 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008021
8022 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008023 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008024
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008025 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00008026 fb->pixel_format,
8027 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008028
Daniel Vetterf37b5c22015-02-10 23:12:27 +01008029 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008030
Damien Lespiau2844a922015-01-20 12:51:48 +00008031 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8032 pipe_name(pipe), plane, fb->width, fb->height,
8033 fb->bits_per_pixel, base, fb->pitches[0],
8034 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008035
Damien Lespiau2d140302015-02-05 17:22:18 +00008036 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008037}
8038
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008039static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008040 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008041{
8042 struct drm_device *dev = crtc->base.dev;
8043 struct drm_i915_private *dev_priv = dev->dev_private;
8044 int pipe = pipe_config->cpu_transcoder;
8045 enum dpio_channel port = vlv_pipe_to_channel(pipe);
8046 intel_clock_t clock;
Imre Deak0d7b6b12015-07-02 14:29:58 +03008047 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008048 int refclk = 100000;
8049
Ville Syrjäläa5805162015-05-26 20:42:30 +03008050 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008051 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8052 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8053 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8054 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
Imre Deak0d7b6b12015-07-02 14:29:58 +03008055 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
Ville Syrjäläa5805162015-05-26 20:42:30 +03008056 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008057
8058 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
Imre Deak0d7b6b12015-07-02 14:29:58 +03008059 clock.m2 = (pll_dw0 & 0xff) << 22;
8060 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8061 clock.m2 |= pll_dw2 & 0x3fffff;
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008062 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8063 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8064 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8065
Imre Deakdccbea32015-06-22 23:35:51 +03008066 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008067}
8068
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008069static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008070 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008071{
8072 struct drm_device *dev = crtc->base.dev;
8073 struct drm_i915_private *dev_priv = dev->dev_private;
8074 uint32_t tmp;
8075
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008076 if (!intel_display_power_is_enabled(dev_priv,
8077 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02008078 return false;
8079
Daniel Vettere143a212013-07-04 12:01:15 +02008080 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008081 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02008082
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008083 tmp = I915_READ(PIPECONF(crtc->pipe));
8084 if (!(tmp & PIPECONF_ENABLE))
8085 return false;
8086
Ville Syrjälä42571ae2013-09-06 23:29:00 +03008087 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
8088 switch (tmp & PIPECONF_BPC_MASK) {
8089 case PIPECONF_6BPC:
8090 pipe_config->pipe_bpp = 18;
8091 break;
8092 case PIPECONF_8BPC:
8093 pipe_config->pipe_bpp = 24;
8094 break;
8095 case PIPECONF_10BPC:
8096 pipe_config->pipe_bpp = 30;
8097 break;
8098 default:
8099 break;
8100 }
8101 }
8102
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02008103 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
8104 pipe_config->limited_color_range = true;
8105
Ville Syrjälä282740f2013-09-04 18:30:03 +03008106 if (INTEL_INFO(dev)->gen < 4)
8107 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8108
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008109 intel_get_pipe_timings(crtc, pipe_config);
8110
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008111 i9xx_get_pfit_config(crtc, pipe_config);
8112
Daniel Vetter6c49f242013-06-06 12:45:25 +02008113 if (INTEL_INFO(dev)->gen >= 4) {
8114 tmp = I915_READ(DPLL_MD(crtc->pipe));
8115 pipe_config->pixel_multiplier =
8116 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8117 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008118 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02008119 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
8120 tmp = I915_READ(DPLL(crtc->pipe));
8121 pipe_config->pixel_multiplier =
8122 ((tmp & SDVO_MULTIPLIER_MASK)
8123 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8124 } else {
8125 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8126 * port and will be fixed up in the encoder->get_config
8127 * function. */
8128 pipe_config->pixel_multiplier = 1;
8129 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008130 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
8131 if (!IS_VALLEYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03008132 /*
8133 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8134 * on 830. Filter it out here so that we don't
8135 * report errors due to that.
8136 */
8137 if (IS_I830(dev))
8138 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8139
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008140 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8141 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03008142 } else {
8143 /* Mask out read-only status bits. */
8144 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8145 DPLL_PORTC_READY_MASK |
8146 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008147 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008148
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008149 if (IS_CHERRYVIEW(dev))
8150 chv_crtc_clock_get(crtc, pipe_config);
8151 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07008152 vlv_crtc_clock_get(crtc, pipe_config);
8153 else
8154 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03008155
Ville Syrjälä0f646142015-08-26 19:39:18 +03008156 /*
8157 * Normally the dotclock is filled in by the encoder .get_config()
8158 * but in case the pipe is enabled w/o any ports we need a sane
8159 * default.
8160 */
8161 pipe_config->base.adjusted_mode.crtc_clock =
8162 pipe_config->port_clock / pipe_config->pixel_multiplier;
8163
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008164 return true;
8165}
8166
Paulo Zanonidde86e22012-12-01 12:04:25 -02008167static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07008168{
8169 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008170 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008171 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008172 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008173 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008174 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07008175 bool has_ck505 = false;
8176 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008177
8178 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01008179 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07008180 switch (encoder->type) {
8181 case INTEL_OUTPUT_LVDS:
8182 has_panel = true;
8183 has_lvds = true;
8184 break;
8185 case INTEL_OUTPUT_EDP:
8186 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03008187 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07008188 has_cpu_edp = true;
8189 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008190 default:
8191 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008192 }
8193 }
8194
Keith Packard99eb6a02011-09-26 14:29:12 -07008195 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008196 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07008197 can_ssc = has_ck505;
8198 } else {
8199 has_ck505 = false;
8200 can_ssc = true;
8201 }
8202
Imre Deak2de69052013-05-08 13:14:04 +03008203 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
8204 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008205
8206 /* Ironlake: try to setup display ref clock before DPLL
8207 * enabling. This is only under driver's control after
8208 * PCH B stepping, previous chipset stepping should be
8209 * ignoring this setting.
8210 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008211 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008212
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008213 /* As we must carefully and slowly disable/enable each source in turn,
8214 * compute the final state we want first and check if we need to
8215 * make any changes at all.
8216 */
8217 final = val;
8218 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07008219 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008220 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07008221 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008222 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8223
8224 final &= ~DREF_SSC_SOURCE_MASK;
8225 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
8226 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008227
Keith Packard199e5d72011-09-22 12:01:57 -07008228 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008229 final |= DREF_SSC_SOURCE_ENABLE;
8230
8231 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8232 final |= DREF_SSC1_ENABLE;
8233
8234 if (has_cpu_edp) {
8235 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8236 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
8237 else
8238 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
8239 } else
8240 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8241 } else {
8242 final |= DREF_SSC_SOURCE_DISABLE;
8243 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8244 }
8245
8246 if (final == val)
8247 return;
8248
8249 /* Always enable nonspread source */
8250 val &= ~DREF_NONSPREAD_SOURCE_MASK;
8251
8252 if (has_ck505)
8253 val |= DREF_NONSPREAD_CK505_ENABLE;
8254 else
8255 val |= DREF_NONSPREAD_SOURCE_ENABLE;
8256
8257 if (has_panel) {
8258 val &= ~DREF_SSC_SOURCE_MASK;
8259 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008260
Keith Packard199e5d72011-09-22 12:01:57 -07008261 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07008262 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07008263 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008264 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02008265 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008266 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008267
8268 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008269 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008270 POSTING_READ(PCH_DREF_CONTROL);
8271 udelay(200);
8272
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008273 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008274
8275 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07008276 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07008277 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07008278 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008279 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02008280 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008281 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07008282 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008283 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008284
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008285 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008286 POSTING_READ(PCH_DREF_CONTROL);
8287 udelay(200);
8288 } else {
8289 DRM_DEBUG_KMS("Disabling SSC entirely\n");
8290
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008291 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07008292
8293 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008294 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008295
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008296 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008297 POSTING_READ(PCH_DREF_CONTROL);
8298 udelay(200);
8299
8300 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008301 val &= ~DREF_SSC_SOURCE_MASK;
8302 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008303
8304 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008305 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008306
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008307 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008308 POSTING_READ(PCH_DREF_CONTROL);
8309 udelay(200);
8310 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008311
8312 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008313}
8314
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008315static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02008316{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008317 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02008318
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008319 tmp = I915_READ(SOUTH_CHICKEN2);
8320 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
8321 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008322
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008323 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
8324 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
8325 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02008326
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008327 tmp = I915_READ(SOUTH_CHICKEN2);
8328 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
8329 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008330
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008331 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
8332 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
8333 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008334}
8335
8336/* WaMPhyProgramming:hsw */
8337static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
8338{
8339 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02008340
8341 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
8342 tmp &= ~(0xFF << 24);
8343 tmp |= (0x12 << 24);
8344 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
8345
Paulo Zanonidde86e22012-12-01 12:04:25 -02008346 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
8347 tmp |= (1 << 11);
8348 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
8349
8350 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
8351 tmp |= (1 << 11);
8352 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
8353
Paulo Zanonidde86e22012-12-01 12:04:25 -02008354 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
8355 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8356 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
8357
8358 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
8359 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8360 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
8361
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008362 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
8363 tmp &= ~(7 << 13);
8364 tmp |= (5 << 13);
8365 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008366
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008367 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8368 tmp &= ~(7 << 13);
8369 tmp |= (5 << 13);
8370 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008371
8372 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8373 tmp &= ~0xFF;
8374 tmp |= 0x1C;
8375 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8376
8377 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8378 tmp &= ~0xFF;
8379 tmp |= 0x1C;
8380 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8381
8382 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8383 tmp &= ~(0xFF << 16);
8384 tmp |= (0x1C << 16);
8385 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8386
8387 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8388 tmp &= ~(0xFF << 16);
8389 tmp |= (0x1C << 16);
8390 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8391
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008392 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8393 tmp |= (1 << 27);
8394 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008395
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008396 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8397 tmp |= (1 << 27);
8398 intel_sbi_write(dev_priv, 0x21C4, 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, 0x20EC, SBI_MPHY);
8401 tmp &= ~(0xF << 28);
8402 tmp |= (4 << 28);
8403 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008404
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008405 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8406 tmp &= ~(0xF << 28);
8407 tmp |= (4 << 28);
8408 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008409}
8410
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008411/* Implements 3 different sequences from BSpec chapter "Display iCLK
8412 * Programming" based on the parameters passed:
8413 * - Sequence to enable CLKOUT_DP
8414 * - Sequence to enable CLKOUT_DP without spread
8415 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8416 */
8417static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8418 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008419{
8420 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008421 uint32_t reg, tmp;
8422
8423 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8424 with_spread = true;
Ville Syrjäläc2699522015-08-27 23:55:59 +03008425 if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n"))
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008426 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008427
Ville Syrjäläa5805162015-05-26 20:42:30 +03008428 mutex_lock(&dev_priv->sb_lock);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008429
8430 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8431 tmp &= ~SBI_SSCCTL_DISABLE;
8432 tmp |= SBI_SSCCTL_PATHALT;
8433 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8434
8435 udelay(24);
8436
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008437 if (with_spread) {
8438 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8439 tmp &= ~SBI_SSCCTL_PATHALT;
8440 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008441
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008442 if (with_fdi) {
8443 lpt_reset_fdi_mphy(dev_priv);
8444 lpt_program_fdi_mphy(dev_priv);
8445 }
8446 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02008447
Ville Syrjäläc2699522015-08-27 23:55:59 +03008448 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008449 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8450 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8451 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01008452
Ville Syrjäläa5805162015-05-26 20:42:30 +03008453 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008454}
8455
Paulo Zanoni47701c32013-07-23 11:19:25 -03008456/* Sequence to disable CLKOUT_DP */
8457static void lpt_disable_clkout_dp(struct drm_device *dev)
8458{
8459 struct drm_i915_private *dev_priv = dev->dev_private;
8460 uint32_t reg, tmp;
8461
Ville Syrjäläa5805162015-05-26 20:42:30 +03008462 mutex_lock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008463
Ville Syrjäläc2699522015-08-27 23:55:59 +03008464 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
Paulo Zanoni47701c32013-07-23 11:19:25 -03008465 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8466 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8467 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8468
8469 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8470 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8471 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8472 tmp |= SBI_SSCCTL_PATHALT;
8473 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8474 udelay(32);
8475 }
8476 tmp |= SBI_SSCCTL_DISABLE;
8477 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8478 }
8479
Ville Syrjäläa5805162015-05-26 20:42:30 +03008480 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008481}
8482
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008483static void lpt_init_pch_refclk(struct drm_device *dev)
8484{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008485 struct intel_encoder *encoder;
8486 bool has_vga = false;
8487
Damien Lespiaub2784e12014-08-05 11:29:37 +01008488 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008489 switch (encoder->type) {
8490 case INTEL_OUTPUT_ANALOG:
8491 has_vga = true;
8492 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008493 default:
8494 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008495 }
8496 }
8497
Paulo Zanoni47701c32013-07-23 11:19:25 -03008498 if (has_vga)
8499 lpt_enable_clkout_dp(dev, true, true);
8500 else
8501 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008502}
8503
Paulo Zanonidde86e22012-12-01 12:04:25 -02008504/*
8505 * Initialize reference clocks when the driver loads
8506 */
8507void intel_init_pch_refclk(struct drm_device *dev)
8508{
8509 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8510 ironlake_init_pch_refclk(dev);
8511 else if (HAS_PCH_LPT(dev))
8512 lpt_init_pch_refclk(dev);
8513}
8514
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008515static int ironlake_get_refclk(struct intel_crtc_state *crtc_state)
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008516{
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008517 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008518 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008519 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008520 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008521 struct drm_connector_state *connector_state;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008522 struct intel_encoder *encoder;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008523 int num_connectors = 0, i;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008524 bool is_lvds = false;
8525
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008526 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008527 if (connector_state->crtc != crtc_state->base.crtc)
8528 continue;
8529
8530 encoder = to_intel_encoder(connector_state->best_encoder);
8531
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008532 switch (encoder->type) {
8533 case INTEL_OUTPUT_LVDS:
8534 is_lvds = true;
8535 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008536 default:
8537 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008538 }
8539 num_connectors++;
8540 }
8541
8542 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008543 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008544 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008545 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008546 }
8547
8548 return 120000;
8549}
8550
Daniel Vetter6ff93602013-04-19 11:24:36 +02008551static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03008552{
8553 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
8554 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8555 int pipe = intel_crtc->pipe;
8556 uint32_t val;
8557
Daniel Vetter78114072013-06-13 00:54:57 +02008558 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03008559
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008560 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03008561 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008562 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008563 break;
8564 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008565 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008566 break;
8567 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008568 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008569 break;
8570 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008571 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008572 break;
8573 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03008574 /* Case prevented by intel_choose_pipe_bpp_dither. */
8575 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03008576 }
8577
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008578 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03008579 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8580
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008581 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03008582 val |= PIPECONF_INTERLACED_ILK;
8583 else
8584 val |= PIPECONF_PROGRESSIVE;
8585
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008586 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008587 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008588
Paulo Zanonic8203562012-09-12 10:06:29 -03008589 I915_WRITE(PIPECONF(pipe), val);
8590 POSTING_READ(PIPECONF(pipe));
8591}
8592
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008593/*
8594 * Set up the pipe CSC unit.
8595 *
8596 * Currently only full range RGB to limited range RGB conversion
8597 * is supported, but eventually this should handle various
8598 * RGB<->YCbCr scenarios as well.
8599 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01008600static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008601{
8602 struct drm_device *dev = crtc->dev;
8603 struct drm_i915_private *dev_priv = dev->dev_private;
8604 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8605 int pipe = intel_crtc->pipe;
8606 uint16_t coeff = 0x7800; /* 1.0 */
8607
8608 /*
8609 * TODO: Check what kind of values actually come out of the pipe
8610 * with these coeff/postoff values and adjust to get the best
8611 * accuracy. Perhaps we even need to take the bpc value into
8612 * consideration.
8613 */
8614
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008615 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008616 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
8617
8618 /*
8619 * GY/GU and RY/RU should be the other way around according
8620 * to BSpec, but reality doesn't agree. Just set them up in
8621 * a way that results in the correct picture.
8622 */
8623 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
8624 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
8625
8626 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
8627 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
8628
8629 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
8630 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
8631
8632 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
8633 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
8634 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
8635
8636 if (INTEL_INFO(dev)->gen > 6) {
8637 uint16_t postoff = 0;
8638
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008639 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02008640 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008641
8642 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
8643 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
8644 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
8645
8646 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
8647 } else {
8648 uint32_t mode = CSC_MODE_YUV_TO_RGB;
8649
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008650 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008651 mode |= CSC_BLACK_SCREEN_OFFSET;
8652
8653 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
8654 }
8655}
8656
Daniel Vetter6ff93602013-04-19 11:24:36 +02008657static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008658{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008659 struct drm_device *dev = crtc->dev;
8660 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008661 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008662 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008663 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008664 uint32_t val;
8665
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008666 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008667
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008668 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008669 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8670
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008671 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008672 val |= PIPECONF_INTERLACED_ILK;
8673 else
8674 val |= PIPECONF_PROGRESSIVE;
8675
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008676 I915_WRITE(PIPECONF(cpu_transcoder), val);
8677 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008678
8679 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
8680 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008681
Satheeshakrishna M3cdf1222014-04-08 15:46:53 +05308682 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008683 val = 0;
8684
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008685 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008686 case 18:
8687 val |= PIPEMISC_DITHER_6_BPC;
8688 break;
8689 case 24:
8690 val |= PIPEMISC_DITHER_8_BPC;
8691 break;
8692 case 30:
8693 val |= PIPEMISC_DITHER_10_BPC;
8694 break;
8695 case 36:
8696 val |= PIPEMISC_DITHER_12_BPC;
8697 break;
8698 default:
8699 /* Case prevented by pipe_config_set_bpp. */
8700 BUG();
8701 }
8702
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008703 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008704 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8705
8706 I915_WRITE(PIPEMISC(pipe), val);
8707 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008708}
8709
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008710static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008711 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008712 intel_clock_t *clock,
8713 bool *has_reduced_clock,
8714 intel_clock_t *reduced_clock)
8715{
8716 struct drm_device *dev = crtc->dev;
8717 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008718 int refclk;
8719 const intel_limit_t *limit;
Daniel Vetterc329a4e2015-06-18 10:30:23 +02008720 bool ret;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008721
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008722 refclk = ironlake_get_refclk(crtc_state);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008723
8724 /*
8725 * Returns a set of divisors for the desired target clock with the given
8726 * refclk, or FALSE. The returned values represent the clock equation:
8727 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
8728 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008729 limit = intel_limit(crtc_state, refclk);
8730 ret = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008731 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02008732 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008733 if (!ret)
8734 return false;
8735
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008736 return true;
8737}
8738
Paulo Zanonid4b19312012-11-29 11:29:32 -02008739int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
8740{
8741 /*
8742 * Account for spread spectrum to avoid
8743 * oversubscribing the link. Max center spread
8744 * is 2.5%; use 5% for safety's sake.
8745 */
8746 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02008747 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02008748}
8749
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008750static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02008751{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008752 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03008753}
8754
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008755static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008756 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008757 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008758 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008759{
8760 struct drm_crtc *crtc = &intel_crtc->base;
8761 struct drm_device *dev = crtc->dev;
8762 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008763 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008764 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008765 struct drm_connector_state *connector_state;
8766 struct intel_encoder *encoder;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008767 uint32_t dpll;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008768 int factor, num_connectors = 0, i;
Daniel Vetter09ede542013-04-30 14:01:45 +02008769 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008770
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008771 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008772 if (connector_state->crtc != crtc_state->base.crtc)
8773 continue;
8774
8775 encoder = to_intel_encoder(connector_state->best_encoder);
8776
8777 switch (encoder->type) {
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008778 case INTEL_OUTPUT_LVDS:
8779 is_lvds = true;
8780 break;
8781 case INTEL_OUTPUT_SDVO:
8782 case INTEL_OUTPUT_HDMI:
8783 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008784 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008785 default:
8786 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008787 }
8788
8789 num_connectors++;
8790 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008791
Chris Wilsonc1858122010-12-03 21:35:48 +00008792 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07008793 factor = 21;
8794 if (is_lvds) {
8795 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008796 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02008797 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07008798 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008799 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07008800 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00008801
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008802 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02008803 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00008804
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008805 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
8806 *fp2 |= FP_CB_TUNE;
8807
Chris Wilson5eddb702010-09-11 13:48:45 +01008808 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08008809
Eric Anholta07d6782011-03-30 13:01:08 -07008810 if (is_lvds)
8811 dpll |= DPLLB_MODE_LVDS;
8812 else
8813 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02008814
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008815 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02008816 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02008817
8818 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02008819 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008820 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02008821 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08008822
Eric Anholta07d6782011-03-30 13:01:08 -07008823 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008824 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07008825 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008826 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07008827
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008828 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07008829 case 5:
8830 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
8831 break;
8832 case 7:
8833 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
8834 break;
8835 case 10:
8836 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
8837 break;
8838 case 14:
8839 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
8840 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08008841 }
8842
Daniel Vetterb4c09f32013-04-30 14:01:42 +02008843 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05008844 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08008845 else
8846 dpll |= PLL_REF_INPUT_DREFCLK;
8847
Daniel Vetter959e16d2013-06-05 13:34:21 +02008848 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008849}
8850
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008851static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
8852 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08008853{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008854 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008855 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008856 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03008857 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01008858 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02008859 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008860
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03008861 memset(&crtc_state->dpll_hw_state, 0,
8862 sizeof(crtc_state->dpll_hw_state));
8863
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03008864 is_lvds = intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08008865
Paulo Zanoni5dc52982012-10-05 12:05:56 -03008866 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
8867 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
8868
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008869 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008870 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008871 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008872 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8873 return -EINVAL;
8874 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01008875 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008876 if (!crtc_state->clock_set) {
8877 crtc_state->dpll.n = clock.n;
8878 crtc_state->dpll.m1 = clock.m1;
8879 crtc_state->dpll.m2 = clock.m2;
8880 crtc_state->dpll.p1 = clock.p1;
8881 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01008882 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008883
Paulo Zanoni5dc52982012-10-05 12:05:56 -03008884 /* 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 +02008885 if (crtc_state->has_pch_encoder) {
8886 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008887 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008888 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008889
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008890 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02008891 &fp, &reduced_clock,
8892 has_reduced_clock ? &fp2 : NULL);
8893
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008894 crtc_state->dpll_hw_state.dpll = dpll;
8895 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008896 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008897 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008898 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008899 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02008900
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008901 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008902 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03008903 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008904 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07008905 return -EINVAL;
8906 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02008907 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008908
Rodrigo Viviab585de2015-03-24 12:40:09 -07008909 if (is_lvds && has_reduced_clock)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008910 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02008911 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03008912 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02008913
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008914 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008915}
8916
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008917static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
8918 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02008919{
8920 struct drm_device *dev = crtc->base.dev;
8921 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008922 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02008923
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008924 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
8925 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
8926 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
8927 & ~TU_SIZE_MASK;
8928 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
8929 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
8930 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8931}
8932
8933static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
8934 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008935 struct intel_link_m_n *m_n,
8936 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008937{
8938 struct drm_device *dev = crtc->base.dev;
8939 struct drm_i915_private *dev_priv = dev->dev_private;
8940 enum pipe pipe = crtc->pipe;
8941
8942 if (INTEL_INFO(dev)->gen >= 5) {
8943 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
8944 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
8945 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
8946 & ~TU_SIZE_MASK;
8947 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
8948 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
8949 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008950 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
8951 * gen < 8) and if DRRS is supported (to make sure the
8952 * registers are not unnecessarily read).
8953 */
8954 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008955 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008956 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
8957 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
8958 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
8959 & ~TU_SIZE_MASK;
8960 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
8961 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
8962 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8963 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008964 } else {
8965 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
8966 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
8967 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
8968 & ~TU_SIZE_MASK;
8969 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
8970 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
8971 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8972 }
8973}
8974
8975void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008976 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008977{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02008978 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008979 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
8980 else
8981 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008982 &pipe_config->dp_m_n,
8983 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008984}
8985
Daniel Vetter72419202013-04-04 13:28:53 +02008986static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008987 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02008988{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008989 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07008990 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02008991}
8992
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008993static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008994 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00008995{
8996 struct drm_device *dev = crtc->base.dev;
8997 struct drm_i915_private *dev_priv = dev->dev_private;
Chandra Kondurua1b22782015-04-07 15:28:45 -07008998 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
8999 uint32_t ps_ctrl = 0;
9000 int id = -1;
9001 int i;
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009002
Chandra Kondurua1b22782015-04-07 15:28:45 -07009003 /* find scaler attached to this pipe */
9004 for (i = 0; i < crtc->num_scalers; i++) {
9005 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9006 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9007 id = i;
9008 pipe_config->pch_pfit.enabled = true;
9009 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9010 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9011 break;
9012 }
9013 }
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009014
Chandra Kondurua1b22782015-04-07 15:28:45 -07009015 scaler_state->scaler_id = id;
9016 if (id >= 0) {
9017 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9018 } else {
9019 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009020 }
9021}
9022
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009023static void
9024skylake_get_initial_plane_config(struct intel_crtc *crtc,
9025 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009026{
9027 struct drm_device *dev = crtc->base.dev;
9028 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau40f46282015-02-27 11:15:21 +00009029 u32 val, base, offset, stride_mult, tiling;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009030 int pipe = crtc->pipe;
9031 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009032 unsigned int aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009033 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009034 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009035
Damien Lespiaud9806c92015-01-21 14:07:19 +00009036 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009037 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009038 DRM_DEBUG_KMS("failed to alloc fb\n");
9039 return;
9040 }
9041
Damien Lespiau1b842c82015-01-21 13:50:54 +00009042 fb = &intel_fb->base;
9043
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009044 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00009045 if (!(val & PLANE_CTL_ENABLE))
9046 goto error;
9047
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009048 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9049 fourcc = skl_format_to_fourcc(pixel_format,
9050 val & PLANE_CTL_ORDER_RGBX,
9051 val & PLANE_CTL_ALPHA_MASK);
9052 fb->pixel_format = fourcc;
9053 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9054
Damien Lespiau40f46282015-02-27 11:15:21 +00009055 tiling = val & PLANE_CTL_TILED_MASK;
9056 switch (tiling) {
9057 case PLANE_CTL_TILED_LINEAR:
9058 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9059 break;
9060 case PLANE_CTL_TILED_X:
9061 plane_config->tiling = I915_TILING_X;
9062 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9063 break;
9064 case PLANE_CTL_TILED_Y:
9065 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9066 break;
9067 case PLANE_CTL_TILED_YF:
9068 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9069 break;
9070 default:
9071 MISSING_CASE(tiling);
9072 goto error;
9073 }
9074
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009075 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9076 plane_config->base = base;
9077
9078 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9079
9080 val = I915_READ(PLANE_SIZE(pipe, 0));
9081 fb->height = ((val >> 16) & 0xfff) + 1;
9082 fb->width = ((val >> 0) & 0x1fff) + 1;
9083
9084 val = I915_READ(PLANE_STRIDE(pipe, 0));
Damien Lespiau40f46282015-02-27 11:15:21 +00009085 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
9086 fb->pixel_format);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009087 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9088
9089 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009090 fb->pixel_format,
9091 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009092
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009093 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009094
9095 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9096 pipe_name(pipe), fb->width, fb->height,
9097 fb->bits_per_pixel, base, fb->pitches[0],
9098 plane_config->size);
9099
Damien Lespiau2d140302015-02-05 17:22:18 +00009100 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009101 return;
9102
9103error:
9104 kfree(fb);
9105}
9106
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009107static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009108 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009109{
9110 struct drm_device *dev = crtc->base.dev;
9111 struct drm_i915_private *dev_priv = dev->dev_private;
9112 uint32_t tmp;
9113
9114 tmp = I915_READ(PF_CTL(crtc->pipe));
9115
9116 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009117 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009118 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9119 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02009120
9121 /* We currently do not free assignements of panel fitters on
9122 * ivb/hsw (since we don't use the higher upscaling modes which
9123 * differentiates them) so just WARN about this case for now. */
9124 if (IS_GEN7(dev)) {
9125 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9126 PF_PIPE_SEL_IVB(crtc->pipe));
9127 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009128 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009129}
9130
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009131static void
9132ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9133 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009134{
9135 struct drm_device *dev = crtc->base.dev;
9136 struct drm_i915_private *dev_priv = dev->dev_private;
9137 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009138 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009139 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009140 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009141 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009142 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009143
Damien Lespiau42a7b082015-02-05 19:35:13 +00009144 val = I915_READ(DSPCNTR(pipe));
9145 if (!(val & DISPLAY_PLANE_ENABLE))
9146 return;
9147
Damien Lespiaud9806c92015-01-21 14:07:19 +00009148 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009149 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009150 DRM_DEBUG_KMS("failed to alloc fb\n");
9151 return;
9152 }
9153
Damien Lespiau1b842c82015-01-21 13:50:54 +00009154 fb = &intel_fb->base;
9155
Daniel Vetter18c52472015-02-10 17:16:09 +00009156 if (INTEL_INFO(dev)->gen >= 4) {
9157 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00009158 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00009159 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9160 }
9161 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009162
9163 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00009164 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009165 fb->pixel_format = fourcc;
9166 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009167
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009168 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009169 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009170 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009171 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00009172 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009173 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009174 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009175 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009176 }
9177 plane_config->base = base;
9178
9179 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009180 fb->width = ((val >> 16) & 0xfff) + 1;
9181 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009182
9183 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009184 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009185
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009186 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009187 fb->pixel_format,
9188 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009189
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009190 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009191
Damien Lespiau2844a922015-01-20 12:51:48 +00009192 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9193 pipe_name(pipe), fb->width, fb->height,
9194 fb->bits_per_pixel, base, fb->pitches[0],
9195 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009196
Damien Lespiau2d140302015-02-05 17:22:18 +00009197 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009198}
9199
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009200static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009201 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009202{
9203 struct drm_device *dev = crtc->base.dev;
9204 struct drm_i915_private *dev_priv = dev->dev_private;
9205 uint32_t tmp;
9206
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009207 if (!intel_display_power_is_enabled(dev_priv,
9208 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03009209 return false;
9210
Daniel Vettere143a212013-07-04 12:01:15 +02009211 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009212 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02009213
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009214 tmp = I915_READ(PIPECONF(crtc->pipe));
9215 if (!(tmp & PIPECONF_ENABLE))
9216 return false;
9217
Ville Syrjälä42571ae2013-09-06 23:29:00 +03009218 switch (tmp & PIPECONF_BPC_MASK) {
9219 case PIPECONF_6BPC:
9220 pipe_config->pipe_bpp = 18;
9221 break;
9222 case PIPECONF_8BPC:
9223 pipe_config->pipe_bpp = 24;
9224 break;
9225 case PIPECONF_10BPC:
9226 pipe_config->pipe_bpp = 30;
9227 break;
9228 case PIPECONF_12BPC:
9229 pipe_config->pipe_bpp = 36;
9230 break;
9231 default:
9232 break;
9233 }
9234
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009235 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9236 pipe_config->limited_color_range = true;
9237
Daniel Vetterab9412b2013-05-03 11:49:46 +02009238 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02009239 struct intel_shared_dpll *pll;
9240
Daniel Vetter88adfff2013-03-28 10:42:01 +01009241 pipe_config->has_pch_encoder = true;
9242
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009243 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9244 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9245 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02009246
9247 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009248
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009249 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02009250 pipe_config->shared_dpll =
9251 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009252 } else {
9253 tmp = I915_READ(PCH_DPLL_SEL);
9254 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
9255 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
9256 else
9257 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
9258 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02009259
9260 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9261
9262 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9263 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009264
9265 tmp = pipe_config->dpll_hw_state.dpll;
9266 pipe_config->pixel_multiplier =
9267 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9268 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03009269
9270 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009271 } else {
9272 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009273 }
9274
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009275 intel_get_pipe_timings(crtc, pipe_config);
9276
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009277 ironlake_get_pfit_config(crtc, pipe_config);
9278
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009279 return true;
9280}
9281
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009282static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9283{
9284 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009285 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009286
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009287 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05009288 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009289 pipe_name(crtc->pipe));
9290
Rob Clarke2c719b2014-12-15 13:56:32 -05009291 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
9292 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
9293 I915_STATE_WARN(I915_READ(WRPLL_CTL1) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
9294 I915_STATE_WARN(I915_READ(WRPLL_CTL2) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
9295 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
9296 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009297 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03009298 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05009299 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03009300 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009301 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009302 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009303 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009304 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009305 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009306
Paulo Zanoni9926ada2014-04-01 19:39:47 -03009307 /*
9308 * In theory we can still leave IRQs enabled, as long as only the HPD
9309 * interrupts remain enabled. We used to check for that, but since it's
9310 * gen-specific and since we only disable LCPLL after we fully disable
9311 * the interrupts, the check below should be enough.
9312 */
Rob Clarke2c719b2014-12-15 13:56:32 -05009313 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009314}
9315
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009316static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
9317{
9318 struct drm_device *dev = dev_priv->dev;
9319
9320 if (IS_HASWELL(dev))
9321 return I915_READ(D_COMP_HSW);
9322 else
9323 return I915_READ(D_COMP_BDW);
9324}
9325
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009326static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
9327{
9328 struct drm_device *dev = dev_priv->dev;
9329
9330 if (IS_HASWELL(dev)) {
9331 mutex_lock(&dev_priv->rps.hw_lock);
9332 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
9333 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03009334 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009335 mutex_unlock(&dev_priv->rps.hw_lock);
9336 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009337 I915_WRITE(D_COMP_BDW, val);
9338 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009339 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009340}
9341
9342/*
9343 * This function implements pieces of two sequences from BSpec:
9344 * - Sequence for display software to disable LCPLL
9345 * - Sequence for display software to allow package C8+
9346 * The steps implemented here are just the steps that actually touch the LCPLL
9347 * register. Callers should take care of disabling all the display engine
9348 * functions, doing the mode unset, fixing interrupts, etc.
9349 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009350static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9351 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009352{
9353 uint32_t val;
9354
9355 assert_can_disable_lcpll(dev_priv);
9356
9357 val = I915_READ(LCPLL_CTL);
9358
9359 if (switch_to_fclk) {
9360 val |= LCPLL_CD_SOURCE_FCLK;
9361 I915_WRITE(LCPLL_CTL, val);
9362
9363 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9364 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9365 DRM_ERROR("Switching to FCLK failed\n");
9366
9367 val = I915_READ(LCPLL_CTL);
9368 }
9369
9370 val |= LCPLL_PLL_DISABLE;
9371 I915_WRITE(LCPLL_CTL, val);
9372 POSTING_READ(LCPLL_CTL);
9373
9374 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
9375 DRM_ERROR("LCPLL still locked\n");
9376
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009377 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009378 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009379 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009380 ndelay(100);
9381
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009382 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9383 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009384 DRM_ERROR("D_COMP RCOMP still in progress\n");
9385
9386 if (allow_power_down) {
9387 val = I915_READ(LCPLL_CTL);
9388 val |= LCPLL_POWER_DOWN_ALLOW;
9389 I915_WRITE(LCPLL_CTL, val);
9390 POSTING_READ(LCPLL_CTL);
9391 }
9392}
9393
9394/*
9395 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9396 * source.
9397 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009398static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009399{
9400 uint32_t val;
9401
9402 val = I915_READ(LCPLL_CTL);
9403
9404 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9405 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9406 return;
9407
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009408 /*
9409 * Make sure we're not on PC8 state before disabling PC8, otherwise
9410 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009411 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02009412 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03009413
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009414 if (val & LCPLL_POWER_DOWN_ALLOW) {
9415 val &= ~LCPLL_POWER_DOWN_ALLOW;
9416 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02009417 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009418 }
9419
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009420 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009421 val |= D_COMP_COMP_FORCE;
9422 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009423 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009424
9425 val = I915_READ(LCPLL_CTL);
9426 val &= ~LCPLL_PLL_DISABLE;
9427 I915_WRITE(LCPLL_CTL, val);
9428
9429 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
9430 DRM_ERROR("LCPLL not locked yet\n");
9431
9432 if (val & LCPLL_CD_SOURCE_FCLK) {
9433 val = I915_READ(LCPLL_CTL);
9434 val &= ~LCPLL_CD_SOURCE_FCLK;
9435 I915_WRITE(LCPLL_CTL, val);
9436
9437 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9438 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9439 DRM_ERROR("Switching back to LCPLL failed\n");
9440 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03009441
Mika Kuoppala59bad942015-01-16 11:34:40 +02009442 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ville Syrjäläb6283052015-06-03 15:45:07 +03009443 intel_update_cdclk(dev_priv->dev);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009444}
9445
Paulo Zanoni765dab672014-03-07 20:08:18 -03009446/*
9447 * Package states C8 and deeper are really deep PC states that can only be
9448 * reached when all the devices on the system allow it, so even if the graphics
9449 * device allows PC8+, it doesn't mean the system will actually get to these
9450 * states. Our driver only allows PC8+ when going into runtime PM.
9451 *
9452 * The requirements for PC8+ are that all the outputs are disabled, the power
9453 * well is disabled and most interrupts are disabled, and these are also
9454 * requirements for runtime PM. When these conditions are met, we manually do
9455 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9456 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9457 * hang the machine.
9458 *
9459 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9460 * the state of some registers, so when we come back from PC8+ we need to
9461 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9462 * need to take care of the registers kept by RC6. Notice that this happens even
9463 * if we don't put the device in PCI D3 state (which is what currently happens
9464 * because of the runtime PM support).
9465 *
9466 * For more, read "Display Sequences for Package C8" on the hardware
9467 * documentation.
9468 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009469void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009470{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009471 struct drm_device *dev = dev_priv->dev;
9472 uint32_t val;
9473
Paulo Zanonic67a4702013-08-19 13:18:09 -03009474 DRM_DEBUG_KMS("Enabling package C8+\n");
9475
Ville Syrjäläc2699522015-08-27 23:55:59 +03009476 if (HAS_PCH_LPT_LP(dev)) {
Paulo Zanonic67a4702013-08-19 13:18:09 -03009477 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9478 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9479 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9480 }
9481
9482 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009483 hsw_disable_lcpll(dev_priv, true, true);
9484}
9485
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009486void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009487{
9488 struct drm_device *dev = dev_priv->dev;
9489 uint32_t val;
9490
Paulo Zanonic67a4702013-08-19 13:18:09 -03009491 DRM_DEBUG_KMS("Disabling package C8+\n");
9492
9493 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009494 lpt_init_pch_refclk(dev);
9495
Ville Syrjäläc2699522015-08-27 23:55:59 +03009496 if (HAS_PCH_LPT_LP(dev)) {
Paulo Zanonic67a4702013-08-19 13:18:09 -03009497 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9498 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
9499 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9500 }
9501
9502 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009503}
9504
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009505static void broxton_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309506{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03009507 struct drm_device *dev = old_state->dev;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009508 unsigned int req_cdclk = to_intel_atomic_state(old_state)->cdclk;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309509
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009510 broxton_set_cdclk(dev, req_cdclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309511}
9512
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009513/* compute the max rate for new configuration */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009514static int ilk_max_pixel_rate(struct drm_atomic_state *state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009515{
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009516 struct intel_crtc *intel_crtc;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009517 struct intel_crtc_state *crtc_state;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009518 int max_pixel_rate = 0;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009519
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009520 for_each_intel_crtc(state->dev, intel_crtc) {
9521 int pixel_rate;
9522
9523 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
9524 if (IS_ERR(crtc_state))
9525 return PTR_ERR(crtc_state);
9526
9527 if (!crtc_state->base.enable)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009528 continue;
9529
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009530 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009531
9532 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009533 if (IS_BROADWELL(state->dev) && crtc_state->ips_enabled)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009534 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
9535
9536 max_pixel_rate = max(max_pixel_rate, pixel_rate);
9537 }
9538
9539 return max_pixel_rate;
9540}
9541
9542static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
9543{
9544 struct drm_i915_private *dev_priv = dev->dev_private;
9545 uint32_t val, data;
9546 int ret;
9547
9548 if (WARN((I915_READ(LCPLL_CTL) &
9549 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
9550 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
9551 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
9552 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
9553 "trying to change cdclk frequency with cdclk not enabled\n"))
9554 return;
9555
9556 mutex_lock(&dev_priv->rps.hw_lock);
9557 ret = sandybridge_pcode_write(dev_priv,
9558 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
9559 mutex_unlock(&dev_priv->rps.hw_lock);
9560 if (ret) {
9561 DRM_ERROR("failed to inform pcode about cdclk change\n");
9562 return;
9563 }
9564
9565 val = I915_READ(LCPLL_CTL);
9566 val |= LCPLL_CD_SOURCE_FCLK;
9567 I915_WRITE(LCPLL_CTL, val);
9568
9569 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9570 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9571 DRM_ERROR("Switching to FCLK failed\n");
9572
9573 val = I915_READ(LCPLL_CTL);
9574 val &= ~LCPLL_CLK_FREQ_MASK;
9575
9576 switch (cdclk) {
9577 case 450000:
9578 val |= LCPLL_CLK_FREQ_450;
9579 data = 0;
9580 break;
9581 case 540000:
9582 val |= LCPLL_CLK_FREQ_54O_BDW;
9583 data = 1;
9584 break;
9585 case 337500:
9586 val |= LCPLL_CLK_FREQ_337_5_BDW;
9587 data = 2;
9588 break;
9589 case 675000:
9590 val |= LCPLL_CLK_FREQ_675_BDW;
9591 data = 3;
9592 break;
9593 default:
9594 WARN(1, "invalid cdclk frequency\n");
9595 return;
9596 }
9597
9598 I915_WRITE(LCPLL_CTL, val);
9599
9600 val = I915_READ(LCPLL_CTL);
9601 val &= ~LCPLL_CD_SOURCE_FCLK;
9602 I915_WRITE(LCPLL_CTL, val);
9603
9604 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9605 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9606 DRM_ERROR("Switching back to LCPLL failed\n");
9607
9608 mutex_lock(&dev_priv->rps.hw_lock);
9609 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
9610 mutex_unlock(&dev_priv->rps.hw_lock);
9611
9612 intel_update_cdclk(dev);
9613
9614 WARN(cdclk != dev_priv->cdclk_freq,
9615 "cdclk requested %d kHz but got %d kHz\n",
9616 cdclk, dev_priv->cdclk_freq);
9617}
9618
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009619static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009620{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009621 struct drm_i915_private *dev_priv = to_i915(state->dev);
9622 int max_pixclk = ilk_max_pixel_rate(state);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009623 int cdclk;
9624
9625 /*
9626 * FIXME should also account for plane ratio
9627 * once 64bpp pixel formats are supported.
9628 */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009629 if (max_pixclk > 540000)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009630 cdclk = 675000;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009631 else if (max_pixclk > 450000)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009632 cdclk = 540000;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009633 else if (max_pixclk > 337500)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009634 cdclk = 450000;
9635 else
9636 cdclk = 337500;
9637
9638 /*
9639 * FIXME move the cdclk caclulation to
9640 * compute_config() so we can fail gracegully.
9641 */
9642 if (cdclk > dev_priv->max_cdclk_freq) {
9643 DRM_ERROR("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9644 cdclk, dev_priv->max_cdclk_freq);
9645 cdclk = dev_priv->max_cdclk_freq;
9646 }
9647
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009648 to_intel_atomic_state(state)->cdclk = cdclk;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009649
9650 return 0;
9651}
9652
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009653static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009654{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009655 struct drm_device *dev = old_state->dev;
9656 unsigned int req_cdclk = to_intel_atomic_state(old_state)->cdclk;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009657
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009658 broadwell_set_cdclk(dev, req_cdclk);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009659}
9660
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009661static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9662 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03009663{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009664 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03009665 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03009666
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009667 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02009668
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02009669 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009670}
9671
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309672static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9673 enum port port,
9674 struct intel_crtc_state *pipe_config)
9675{
9676 switch (port) {
9677 case PORT_A:
9678 pipe_config->ddi_pll_sel = SKL_DPLL0;
9679 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9680 break;
9681 case PORT_B:
9682 pipe_config->ddi_pll_sel = SKL_DPLL1;
9683 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9684 break;
9685 case PORT_C:
9686 pipe_config->ddi_pll_sel = SKL_DPLL2;
9687 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9688 break;
9689 default:
9690 DRM_ERROR("Incorrect port type\n");
9691 }
9692}
9693
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009694static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9695 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009696 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009697{
Damien Lespiau3148ade2014-11-21 16:14:56 +00009698 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009699
9700 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9701 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9702
9703 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00009704 case SKL_DPLL0:
9705 /*
9706 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
9707 * of the shared DPLL framework and thus needs to be read out
9708 * separately
9709 */
9710 dpll_ctl1 = I915_READ(DPLL_CTRL1);
9711 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
9712 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009713 case SKL_DPLL1:
9714 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9715 break;
9716 case SKL_DPLL2:
9717 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9718 break;
9719 case SKL_DPLL3:
9720 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9721 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009722 }
9723}
9724
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009725static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9726 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009727 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009728{
9729 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9730
9731 switch (pipe_config->ddi_pll_sel) {
9732 case PORT_CLK_SEL_WRPLL1:
9733 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
9734 break;
9735 case PORT_CLK_SEL_WRPLL2:
9736 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
9737 break;
9738 }
9739}
9740
Daniel Vetter26804af2014-06-25 22:01:55 +03009741static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009742 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03009743{
9744 struct drm_device *dev = crtc->base.dev;
9745 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009746 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03009747 enum port port;
9748 uint32_t tmp;
9749
9750 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
9751
9752 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
9753
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009754 if (IS_SKYLAKE(dev))
9755 skylake_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309756 else if (IS_BROXTON(dev))
9757 bxt_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009758 else
9759 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03009760
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009761 if (pipe_config->shared_dpll >= 0) {
9762 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9763
9764 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9765 &pipe_config->dpll_hw_state));
9766 }
9767
Daniel Vetter26804af2014-06-25 22:01:55 +03009768 /*
9769 * Haswell has only FDI/PCH transcoder A. It is which is connected to
9770 * DDI E. So just check whether this pipe is wired to DDI E and whether
9771 * the PCH transcoder is on.
9772 */
Damien Lespiauca370452013-12-03 13:56:24 +00009773 if (INTEL_INFO(dev)->gen < 9 &&
9774 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03009775 pipe_config->has_pch_encoder = true;
9776
9777 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
9778 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9779 FDI_DP_PORT_WIDTH_SHIFT) + 1;
9780
9781 ironlake_get_fdi_m_n_config(crtc, pipe_config);
9782 }
9783}
9784
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009785static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009786 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009787{
9788 struct drm_device *dev = crtc->base.dev;
9789 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009790 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009791 uint32_t tmp;
9792
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009793 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02009794 POWER_DOMAIN_PIPE(crtc->pipe)))
9795 return false;
9796
Daniel Vettere143a212013-07-04 12:01:15 +02009797 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009798 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
9799
Daniel Vettereccb1402013-05-22 00:50:22 +02009800 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
9801 if (tmp & TRANS_DDI_FUNC_ENABLE) {
9802 enum pipe trans_edp_pipe;
9803 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
9804 default:
9805 WARN(1, "unknown pipe linked to edp transcoder\n");
9806 case TRANS_DDI_EDP_INPUT_A_ONOFF:
9807 case TRANS_DDI_EDP_INPUT_A_ON:
9808 trans_edp_pipe = PIPE_A;
9809 break;
9810 case TRANS_DDI_EDP_INPUT_B_ONOFF:
9811 trans_edp_pipe = PIPE_B;
9812 break;
9813 case TRANS_DDI_EDP_INPUT_C_ONOFF:
9814 trans_edp_pipe = PIPE_C;
9815 break;
9816 }
9817
9818 if (trans_edp_pipe == crtc->pipe)
9819 pipe_config->cpu_transcoder = TRANSCODER_EDP;
9820 }
9821
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009822 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02009823 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03009824 return false;
9825
Daniel Vettereccb1402013-05-22 00:50:22 +02009826 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009827 if (!(tmp & PIPECONF_ENABLE))
9828 return false;
9829
Daniel Vetter26804af2014-06-25 22:01:55 +03009830 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009831
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009832 intel_get_pipe_timings(crtc, pipe_config);
9833
Chandra Kondurua1b22782015-04-07 15:28:45 -07009834 if (INTEL_INFO(dev)->gen >= 9) {
9835 skl_init_scalers(dev, crtc, pipe_config);
9836 }
9837
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009838 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Chandra Konduruaf99ced2015-05-11 14:35:47 -07009839
9840 if (INTEL_INFO(dev)->gen >= 9) {
9841 pipe_config->scaler_state.scaler_id = -1;
9842 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
9843 }
9844
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009845 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07009846 if (INTEL_INFO(dev)->gen >= 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009847 skylake_get_pfit_config(crtc, pipe_config);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08009848 else
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07009849 ironlake_get_pfit_config(crtc, pipe_config);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009850 }
Daniel Vetter88adfff2013-03-28 10:42:01 +01009851
Jesse Barnese59150d2014-01-07 13:30:45 -08009852 if (IS_HASWELL(dev))
9853 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
9854 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009855
Clint Taylorebb69c92014-09-30 10:30:22 -07009856 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
9857 pipe_config->pixel_multiplier =
9858 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
9859 } else {
9860 pipe_config->pixel_multiplier = 1;
9861 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02009862
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009863 return true;
9864}
9865
Chris Wilson560b85b2010-08-07 11:01:38 +01009866static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
9867{
9868 struct drm_device *dev = crtc->dev;
9869 struct drm_i915_private *dev_priv = dev->dev_private;
9870 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +03009871 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01009872
Ville Syrjälädc41c152014-08-13 11:57:05 +03009873 if (base) {
Matt Roper3dd512f2015-02-27 10:12:00 -08009874 unsigned int width = intel_crtc->base.cursor->state->crtc_w;
9875 unsigned int height = intel_crtc->base.cursor->state->crtc_h;
Ville Syrjälädc41c152014-08-13 11:57:05 +03009876 unsigned int stride = roundup_pow_of_two(width) * 4;
9877
9878 switch (stride) {
9879 default:
9880 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
9881 width, stride);
9882 stride = 256;
9883 /* fallthrough */
9884 case 256:
9885 case 512:
9886 case 1024:
9887 case 2048:
9888 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009889 }
9890
Ville Syrjälädc41c152014-08-13 11:57:05 +03009891 cntl |= CURSOR_ENABLE |
9892 CURSOR_GAMMA_ENABLE |
9893 CURSOR_FORMAT_ARGB |
9894 CURSOR_STRIDE(stride);
9895
9896 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009897 }
Chris Wilson560b85b2010-08-07 11:01:38 +01009898
Ville Syrjälädc41c152014-08-13 11:57:05 +03009899 if (intel_crtc->cursor_cntl != 0 &&
9900 (intel_crtc->cursor_base != base ||
9901 intel_crtc->cursor_size != size ||
9902 intel_crtc->cursor_cntl != cntl)) {
9903 /* On these chipsets we can only modify the base/size/stride
9904 * whilst the cursor is disabled.
9905 */
Ville Syrjälä0b87c242015-09-22 19:47:51 +03009906 I915_WRITE(CURCNTR(PIPE_A), 0);
9907 POSTING_READ(CURCNTR(PIPE_A));
Ville Syrjälädc41c152014-08-13 11:57:05 +03009908 intel_crtc->cursor_cntl = 0;
9909 }
9910
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009911 if (intel_crtc->cursor_base != base) {
Ville Syrjälä0b87c242015-09-22 19:47:51 +03009912 I915_WRITE(CURBASE(PIPE_A), base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009913 intel_crtc->cursor_base = base;
9914 }
Ville Syrjälädc41c152014-08-13 11:57:05 +03009915
9916 if (intel_crtc->cursor_size != size) {
9917 I915_WRITE(CURSIZE, size);
9918 intel_crtc->cursor_size = size;
9919 }
9920
Chris Wilson4b0e3332014-05-30 16:35:26 +03009921 if (intel_crtc->cursor_cntl != cntl) {
Ville Syrjälä0b87c242015-09-22 19:47:51 +03009922 I915_WRITE(CURCNTR(PIPE_A), cntl);
9923 POSTING_READ(CURCNTR(PIPE_A));
Chris Wilson4b0e3332014-05-30 16:35:26 +03009924 intel_crtc->cursor_cntl = cntl;
9925 }
Chris Wilson560b85b2010-08-07 11:01:38 +01009926}
9927
9928static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
9929{
9930 struct drm_device *dev = crtc->dev;
9931 struct drm_i915_private *dev_priv = dev->dev_private;
9932 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9933 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03009934 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01009935
Chris Wilson4b0e3332014-05-30 16:35:26 +03009936 cntl = 0;
9937 if (base) {
9938 cntl = MCURSOR_GAMMA_ENABLE;
Matt Roper3dd512f2015-02-27 10:12:00 -08009939 switch (intel_crtc->base.cursor->state->crtc_w) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05309940 case 64:
9941 cntl |= CURSOR_MODE_64_ARGB_AX;
9942 break;
9943 case 128:
9944 cntl |= CURSOR_MODE_128_ARGB_AX;
9945 break;
9946 case 256:
9947 cntl |= CURSOR_MODE_256_ARGB_AX;
9948 break;
9949 default:
Matt Roper3dd512f2015-02-27 10:12:00 -08009950 MISSING_CASE(intel_crtc->base.cursor->state->crtc_w);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05309951 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01009952 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03009953 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +03009954
9955 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
9956 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +01009957 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03009958
Matt Roper8e7d6882015-01-21 16:35:41 -08009959 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -07009960 cntl |= CURSOR_ROTATE_180;
9961
Chris Wilson4b0e3332014-05-30 16:35:26 +03009962 if (intel_crtc->cursor_cntl != cntl) {
9963 I915_WRITE(CURCNTR(pipe), cntl);
9964 POSTING_READ(CURCNTR(pipe));
9965 intel_crtc->cursor_cntl = cntl;
9966 }
9967
Jesse Barnes65a21cd2011-10-12 11:10:21 -07009968 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03009969 I915_WRITE(CURBASE(pipe), base);
9970 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +03009971
9972 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07009973}
9974
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009975/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01009976static void intel_crtc_update_cursor(struct drm_crtc *crtc,
9977 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009978{
9979 struct drm_device *dev = crtc->dev;
9980 struct drm_i915_private *dev_priv = dev->dev_private;
9981 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9982 int pipe = intel_crtc->pipe;
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +02009983 struct drm_plane_state *cursor_state = crtc->cursor->state;
9984 int x = cursor_state->crtc_x;
9985 int y = cursor_state->crtc_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009986 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009987
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009988 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009989 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009990
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009991 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03009992 base = 0;
9993
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009994 if (y >= intel_crtc->config->pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009995 base = 0;
9996
9997 if (x < 0) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +02009998 if (x + cursor_state->crtc_w <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01009999 base = 0;
10000
10001 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10002 x = -x;
10003 }
10004 pos |= x << CURSOR_X_SHIFT;
10005
10006 if (y < 0) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010007 if (y + cursor_state->crtc_h <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010008 base = 0;
10009
10010 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10011 y = -y;
10012 }
10013 pos |= y << CURSOR_Y_SHIFT;
10014
Chris Wilson4b0e3332014-05-30 16:35:26 +030010015 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010016 return;
10017
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010018 I915_WRITE(CURPOS(pipe), pos);
10019
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010020 /* ILK+ do this automagically */
10021 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -080010022 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010023 base += (cursor_state->crtc_h *
10024 cursor_state->crtc_w - 1) * 4;
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010025 }
10026
Ville Syrjälä8ac54662014-08-12 19:39:54 +030010027 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010028 i845_update_cursor(crtc, base);
10029 else
10030 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010031}
10032
Ville Syrjälädc41c152014-08-13 11:57:05 +030010033static bool cursor_size_ok(struct drm_device *dev,
10034 uint32_t width, uint32_t height)
10035{
10036 if (width == 0 || height == 0)
10037 return false;
10038
10039 /*
10040 * 845g/865g are special in that they are only limited by
10041 * the width of their cursors, the height is arbitrary up to
10042 * the precision of the register. Everything else requires
10043 * square cursors, limited to a few power-of-two sizes.
10044 */
10045 if (IS_845G(dev) || IS_I865G(dev)) {
10046 if ((width & 63) != 0)
10047 return false;
10048
10049 if (width > (IS_845G(dev) ? 64 : 512))
10050 return false;
10051
10052 if (height > 1023)
10053 return false;
10054 } else {
10055 switch (width | height) {
10056 case 256:
10057 case 128:
10058 if (IS_GEN2(dev))
10059 return false;
10060 case 64:
10061 break;
10062 default:
10063 return false;
10064 }
10065 }
10066
10067 return true;
10068}
10069
Jesse Barnes79e53942008-11-07 14:24:08 -080010070static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +010010071 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -080010072{
James Simmons72034252010-08-03 01:33:19 +010010073 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -080010074 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080010075
James Simmons72034252010-08-03 01:33:19 +010010076 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -080010077 intel_crtc->lut_r[i] = red[i] >> 8;
10078 intel_crtc->lut_g[i] = green[i] >> 8;
10079 intel_crtc->lut_b[i] = blue[i] >> 8;
10080 }
10081
10082 intel_crtc_load_lut(crtc);
10083}
10084
Jesse Barnes79e53942008-11-07 14:24:08 -080010085/* VESA 640x480x72Hz mode to set on the pipe */
10086static struct drm_display_mode load_detect_mode = {
10087 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10088 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10089};
10090
Daniel Vettera8bb6812014-02-10 18:00:39 +010010091struct drm_framebuffer *
10092__intel_framebuffer_create(struct drm_device *dev,
10093 struct drm_mode_fb_cmd2 *mode_cmd,
10094 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +010010095{
10096 struct intel_framebuffer *intel_fb;
10097 int ret;
10098
10099 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
10100 if (!intel_fb) {
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +030010101 drm_gem_object_unreference(&obj->base);
Chris Wilsond2dff872011-04-19 08:36:26 +010010102 return ERR_PTR(-ENOMEM);
10103 }
10104
10105 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010106 if (ret)
10107 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +010010108
10109 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010110err:
Alexey Khoroshilov6ccb81f2014-11-08 01:41:23 +030010111 drm_gem_object_unreference(&obj->base);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010112 kfree(intel_fb);
10113
10114 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +010010115}
10116
Daniel Vetterb5ea6422014-03-02 21:18:00 +010010117static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +010010118intel_framebuffer_create(struct drm_device *dev,
10119 struct drm_mode_fb_cmd2 *mode_cmd,
10120 struct drm_i915_gem_object *obj)
10121{
10122 struct drm_framebuffer *fb;
10123 int ret;
10124
10125 ret = i915_mutex_lock_interruptible(dev);
10126 if (ret)
10127 return ERR_PTR(ret);
10128 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10129 mutex_unlock(&dev->struct_mutex);
10130
10131 return fb;
10132}
10133
Chris Wilsond2dff872011-04-19 08:36:26 +010010134static u32
10135intel_framebuffer_pitch_for_width(int width, int bpp)
10136{
10137 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10138 return ALIGN(pitch, 64);
10139}
10140
10141static u32
10142intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10143{
10144 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +020010145 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +010010146}
10147
10148static struct drm_framebuffer *
10149intel_framebuffer_create_for_mode(struct drm_device *dev,
10150 struct drm_display_mode *mode,
10151 int depth, int bpp)
10152{
10153 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +000010154 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +010010155
10156 obj = i915_gem_alloc_object(dev,
10157 intel_framebuffer_size_for_mode(mode, bpp));
10158 if (obj == NULL)
10159 return ERR_PTR(-ENOMEM);
10160
10161 mode_cmd.width = mode->hdisplay;
10162 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -080010163 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
10164 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +000010165 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +010010166
10167 return intel_framebuffer_create(dev, &mode_cmd, obj);
10168}
10169
10170static struct drm_framebuffer *
10171mode_fits_in_fbdev(struct drm_device *dev,
10172 struct drm_display_mode *mode)
10173{
Daniel Vetter06957262015-08-10 13:34:08 +020010174#ifdef CONFIG_DRM_FBDEV_EMULATION
Chris Wilsond2dff872011-04-19 08:36:26 +010010175 struct drm_i915_private *dev_priv = dev->dev_private;
10176 struct drm_i915_gem_object *obj;
10177 struct drm_framebuffer *fb;
10178
Daniel Vetter4c0e5522014-02-14 16:35:54 +010010179 if (!dev_priv->fbdev)
10180 return NULL;
10181
10182 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +010010183 return NULL;
10184
Jesse Barnes8bcd4552014-02-07 12:10:38 -080010185 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +010010186 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +010010187
Jesse Barnes8bcd4552014-02-07 12:10:38 -080010188 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010189 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
10190 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +010010191 return NULL;
10192
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010193 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +010010194 return NULL;
10195
10196 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +020010197#else
10198 return NULL;
10199#endif
Chris Wilsond2dff872011-04-19 08:36:26 +010010200}
10201
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010202static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
10203 struct drm_crtc *crtc,
10204 struct drm_display_mode *mode,
10205 struct drm_framebuffer *fb,
10206 int x, int y)
10207{
10208 struct drm_plane_state *plane_state;
10209 int hdisplay, vdisplay;
10210 int ret;
10211
10212 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
10213 if (IS_ERR(plane_state))
10214 return PTR_ERR(plane_state);
10215
10216 if (mode)
10217 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
10218 else
10219 hdisplay = vdisplay = 0;
10220
10221 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
10222 if (ret)
10223 return ret;
10224 drm_atomic_set_fb_for_plane(plane_state, fb);
10225 plane_state->crtc_x = 0;
10226 plane_state->crtc_y = 0;
10227 plane_state->crtc_w = hdisplay;
10228 plane_state->crtc_h = vdisplay;
10229 plane_state->src_x = x << 16;
10230 plane_state->src_y = y << 16;
10231 plane_state->src_w = hdisplay << 16;
10232 plane_state->src_h = vdisplay << 16;
10233
10234 return 0;
10235}
10236
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010237bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +010010238 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -050010239 struct intel_load_detect_pipe *old,
10240 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080010241{
10242 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010243 struct intel_encoder *intel_encoder =
10244 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -080010245 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +010010246 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -080010247 struct drm_crtc *crtc = NULL;
10248 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +020010249 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -050010250 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010251 struct drm_atomic_state *state = NULL;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010252 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010253 struct intel_crtc_state *crtc_state;
Rob Clark51fd3712013-11-19 12:10:12 -050010254 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -080010255
Chris Wilsond2dff872011-04-19 08:36:26 +010010256 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030010257 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030010258 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010010259
Rob Clark51fd3712013-11-19 12:10:12 -050010260retry:
10261 ret = drm_modeset_lock(&config->connection_mutex, ctx);
10262 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010263 goto fail;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020010264
Jesse Barnes79e53942008-11-07 14:24:08 -080010265 /*
10266 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +010010267 *
Jesse Barnes79e53942008-11-07 14:24:08 -080010268 * - if the connector already has an assigned crtc, use it (but make
10269 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +010010270 *
Jesse Barnes79e53942008-11-07 14:24:08 -080010271 * - try to find the first unused crtc that can drive this connector,
10272 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -080010273 */
10274
10275 /* See if we already have a CRTC for this connector */
10276 if (encoder->crtc) {
10277 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +010010278
Rob Clark51fd3712013-11-19 12:10:12 -050010279 ret = drm_modeset_lock(&crtc->mutex, ctx);
10280 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010281 goto fail;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +010010282 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10283 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010284 goto fail;
Daniel Vetter7b240562012-12-12 00:35:33 +010010285
Daniel Vetter24218aa2012-08-12 19:27:11 +020010286 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +010010287 old->load_detect_temp = false;
10288
10289 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +020010290 if (connector->dpms != DRM_MODE_DPMS_ON)
10291 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +010010292
Chris Wilson71731882011-04-19 23:10:58 +010010293 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -080010294 }
10295
10296 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010297 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -080010298 i++;
10299 if (!(encoder->possible_crtcs & (1 << i)))
10300 continue;
Matt Roper83d65732015-02-25 13:12:16 -080010301 if (possible_crtc->state->enable)
Ville Syrjäläa4592492014-08-11 13:15:36 +030010302 continue;
Ville Syrjäläa4592492014-08-11 13:15:36 +030010303
10304 crtc = possible_crtc;
10305 break;
Jesse Barnes79e53942008-11-07 14:24:08 -080010306 }
10307
10308 /*
10309 * If we didn't find an unused CRTC, don't use any.
10310 */
10311 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +010010312 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010313 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010314 }
10315
Rob Clark51fd3712013-11-19 12:10:12 -050010316 ret = drm_modeset_lock(&crtc->mutex, ctx);
10317 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010318 goto fail;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +010010319 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10320 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010321 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010322
10323 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter24218aa2012-08-12 19:27:11 +020010324 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +010010325 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +010010326 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -080010327
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010328 state = drm_atomic_state_alloc(dev);
10329 if (!state)
10330 return false;
10331
10332 state->acquire_ctx = ctx;
10333
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010334 connector_state = drm_atomic_get_connector_state(state, connector);
10335 if (IS_ERR(connector_state)) {
10336 ret = PTR_ERR(connector_state);
10337 goto fail;
10338 }
10339
10340 connector_state->crtc = crtc;
10341 connector_state->best_encoder = &intel_encoder->base;
10342
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010343 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10344 if (IS_ERR(crtc_state)) {
10345 ret = PTR_ERR(crtc_state);
10346 goto fail;
10347 }
10348
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020010349 crtc_state->base.active = crtc_state->base.enable = true;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010350
Chris Wilson64927112011-04-20 07:25:26 +010010351 if (!mode)
10352 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -080010353
Chris Wilsond2dff872011-04-19 08:36:26 +010010354 /* We need a framebuffer large enough to accommodate all accesses
10355 * that the plane may generate whilst we perform load detection.
10356 * We can not rely on the fbcon either being present (we get called
10357 * during its initialisation to detect all boot displays, or it may
10358 * not even exist) or that it is large enough to satisfy the
10359 * requested mode.
10360 */
Daniel Vetter94352cf2012-07-05 22:51:56 +020010361 fb = mode_fits_in_fbdev(dev, mode);
10362 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +010010363 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020010364 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
10365 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +010010366 } else
10367 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020010368 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +010010369 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010370 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010371 }
Chris Wilsond2dff872011-04-19 08:36:26 +010010372
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010373 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
10374 if (ret)
10375 goto fail;
10376
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030010377 drm_mode_copy(&crtc_state->base.mode, mode);
10378
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020010379 if (drm_atomic_commit(state)) {
Chris Wilson64927112011-04-20 07:25:26 +010010380 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +010010381 if (old->release_fb)
10382 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010383 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010384 }
Daniel Vetter9128b042015-03-03 17:31:21 +010010385 crtc->primary->crtc = crtc;
Chris Wilson71731882011-04-19 23:10:58 +010010386
Jesse Barnes79e53942008-11-07 14:24:08 -080010387 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -070010388 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +010010389 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010390
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010391fail:
Ander Conselvan de Oliveirae5d958e2015-04-21 17:12:57 +030010392 drm_atomic_state_free(state);
10393 state = NULL;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010394
Rob Clark51fd3712013-11-19 12:10:12 -050010395 if (ret == -EDEADLK) {
10396 drm_modeset_backoff(ctx);
10397 goto retry;
10398 }
10399
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010400 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -080010401}
10402
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010403void intel_release_load_detect_pipe(struct drm_connector *connector,
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020010404 struct intel_load_detect_pipe *old,
10405 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080010406{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010407 struct drm_device *dev = connector->dev;
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010408 struct intel_encoder *intel_encoder =
10409 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +010010410 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +010010411 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010412 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010413 struct drm_atomic_state *state;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010414 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010415 struct intel_crtc_state *crtc_state;
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010416 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080010417
Chris Wilsond2dff872011-04-19 08:36:26 +010010418 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030010419 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030010420 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010010421
Chris Wilson8261b192011-04-19 23:18:09 +010010422 if (old->load_detect_temp) {
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010423 state = drm_atomic_state_alloc(dev);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010424 if (!state)
10425 goto fail;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010426
10427 state->acquire_ctx = ctx;
10428
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010429 connector_state = drm_atomic_get_connector_state(state, connector);
10430 if (IS_ERR(connector_state))
10431 goto fail;
10432
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010433 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10434 if (IS_ERR(crtc_state))
10435 goto fail;
10436
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010437 connector_state->best_encoder = NULL;
10438 connector_state->crtc = NULL;
10439
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020010440 crtc_state->base.enable = crtc_state->base.active = false;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010441
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010442 ret = intel_modeset_setup_plane_state(state, crtc, NULL, NULL,
10443 0, 0);
10444 if (ret)
10445 goto fail;
10446
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020010447 ret = drm_atomic_commit(state);
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030010448 if (ret)
10449 goto fail;
Chris Wilsond2dff872011-04-19 08:36:26 +010010450
Daniel Vetter36206362012-12-10 20:42:17 +010010451 if (old->release_fb) {
10452 drm_framebuffer_unregister_private(old->release_fb);
10453 drm_framebuffer_unreference(old->release_fb);
10454 }
Chris Wilsond2dff872011-04-19 08:36:26 +010010455
Chris Wilson0622a532011-04-21 09:32:11 +010010456 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080010457 }
10458
Eric Anholtc751ce42010-03-25 11:48:48 -070010459 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +020010460 if (old->dpms_mode != DRM_MODE_DPMS_ON)
10461 connector->funcs->dpms(connector, old->dpms_mode);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010462
10463 return;
10464fail:
10465 DRM_DEBUG_KMS("Couldn't release load detect pipe.\n");
10466 drm_atomic_state_free(state);
Jesse Barnes79e53942008-11-07 14:24:08 -080010467}
10468
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010469static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010470 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010471{
10472 struct drm_i915_private *dev_priv = dev->dev_private;
10473 u32 dpll = pipe_config->dpll_hw_state.dpll;
10474
10475 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +020010476 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010477 else if (HAS_PCH_SPLIT(dev))
10478 return 120000;
10479 else if (!IS_GEN2(dev))
10480 return 96000;
10481 else
10482 return 48000;
10483}
10484
Jesse Barnes79e53942008-11-07 14:24:08 -080010485/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010486static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010487 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -080010488{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010489 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080010490 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010491 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010492 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -080010493 u32 fp;
10494 intel_clock_t clock;
Imre Deakdccbea32015-06-22 23:35:51 +030010495 int port_clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010496 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -080010497
10498 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +030010499 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010500 else
Ville Syrjälä293623f2013-09-13 16:18:46 +030010501 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -080010502
10503 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010504 if (IS_PINEVIEW(dev)) {
10505 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
10506 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +080010507 } else {
10508 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
10509 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
10510 }
10511
Chris Wilsona6c45cf2010-09-17 00:32:17 +010010512 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010513 if (IS_PINEVIEW(dev))
10514 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
10515 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +080010516 else
10517 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -080010518 DPLL_FPA01_P1_POST_DIV_SHIFT);
10519
10520 switch (dpll & DPLL_MODE_MASK) {
10521 case DPLLB_MODE_DAC_SERIAL:
10522 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
10523 5 : 10;
10524 break;
10525 case DPLLB_MODE_LVDS:
10526 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
10527 7 : 14;
10528 break;
10529 default:
Zhao Yakui28c97732009-10-09 11:39:41 +080010530 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -080010531 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010532 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080010533 }
10534
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010535 if (IS_PINEVIEW(dev))
Imre Deakdccbea32015-06-22 23:35:51 +030010536 port_clock = pnv_calc_dpll_params(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010537 else
Imre Deakdccbea32015-06-22 23:35:51 +030010538 port_clock = i9xx_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010539 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +020010540 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010541 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -080010542
10543 if (is_lvds) {
10544 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10545 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010546
10547 if (lvds & LVDS_CLKB_POWER_UP)
10548 clock.p2 = 7;
10549 else
10550 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -080010551 } else {
10552 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10553 clock.p1 = 2;
10554 else {
10555 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10556 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10557 }
10558 if (dpll & PLL_P2_DIVIDE_BY_4)
10559 clock.p2 = 4;
10560 else
10561 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -080010562 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010563
Imre Deakdccbea32015-06-22 23:35:51 +030010564 port_clock = i9xx_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010565 }
10566
Ville Syrjälä18442d02013-09-13 16:00:08 +030010567 /*
10568 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +010010569 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +030010570 * encoder's get_config() function.
10571 */
Imre Deakdccbea32015-06-22 23:35:51 +030010572 pipe_config->port_clock = port_clock;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010573}
10574
Ville Syrjälä6878da02013-09-13 15:59:11 +030010575int intel_dotclock_calculate(int link_freq,
10576 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010577{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010578 /*
10579 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010580 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010581 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010582 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010583 *
10584 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010585 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -080010586 */
10587
Ville Syrjälä6878da02013-09-13 15:59:11 +030010588 if (!m_n->link_n)
10589 return 0;
10590
10591 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10592}
10593
Ville Syrjälä18442d02013-09-13 16:00:08 +030010594static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010595 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +030010596{
10597 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +030010598
10599 /* read out port_clock from the DPLL */
10600 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +030010601
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010602 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +030010603 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +010010604 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +030010605 * agree once we know their relationship in the encoder's
10606 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010607 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010608 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +030010609 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
10610 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -080010611}
10612
10613/** Returns the currently programmed mode of the given pipe. */
10614struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10615 struct drm_crtc *crtc)
10616{
Jesse Barnes548f2452011-02-17 10:40:53 -080010617 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010618 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010619 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010620 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010621 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -020010622 int htot = I915_READ(HTOTAL(cpu_transcoder));
10623 int hsync = I915_READ(HSYNC(cpu_transcoder));
10624 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10625 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +030010626 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -080010627
10628 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10629 if (!mode)
10630 return NULL;
10631
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010632 /*
10633 * Construct a pipe_config sufficient for getting the clock info
10634 * back out of crtc_clock_get.
10635 *
10636 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10637 * to use a real value here instead.
10638 */
Ville Syrjälä293623f2013-09-13 16:18:46 +030010639 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010640 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010641 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10642 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10643 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010644 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
10645
Ville Syrjälä773ae032013-09-23 17:48:20 +030010646 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -080010647 mode->hdisplay = (htot & 0xffff) + 1;
10648 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10649 mode->hsync_start = (hsync & 0xffff) + 1;
10650 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10651 mode->vdisplay = (vtot & 0xffff) + 1;
10652 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10653 mode->vsync_start = (vsync & 0xffff) + 1;
10654 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10655
10656 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -080010657
10658 return mode;
10659}
10660
Chris Wilsonf047e392012-07-21 12:31:41 +010010661void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -070010662{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010663 struct drm_i915_private *dev_priv = dev->dev_private;
10664
Chris Wilsonf62a0072014-02-21 17:55:39 +000010665 if (dev_priv->mm.busy)
10666 return;
10667
Paulo Zanoni43694d62014-03-07 20:08:08 -030010668 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -030010669 i915_update_gfx_val(dev_priv);
Chris Wilson43cf3bf2015-03-18 09:48:22 +000010670 if (INTEL_INFO(dev)->gen >= 6)
10671 gen6_rps_busy(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +000010672 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +010010673}
10674
10675void intel_mark_idle(struct drm_device *dev)
10676{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010677 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +000010678
Chris Wilsonf62a0072014-02-21 17:55:39 +000010679 if (!dev_priv->mm.busy)
10680 return;
10681
10682 dev_priv->mm.busy = false;
10683
Damien Lespiau3d13ef22014-02-07 19:12:47 +000010684 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +010010685 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -030010686
Paulo Zanoni43694d62014-03-07 20:08:08 -030010687 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +010010688}
10689
Jesse Barnes79e53942008-11-07 14:24:08 -080010690static void intel_crtc_destroy(struct drm_crtc *crtc)
10691{
10692 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010693 struct drm_device *dev = crtc->dev;
10694 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +020010695
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010696 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010697 work = intel_crtc->unpin_work;
10698 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010699 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010700
10701 if (work) {
10702 cancel_work_sync(&work->work);
10703 kfree(work);
10704 }
Jesse Barnes79e53942008-11-07 14:24:08 -080010705
10706 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010707
Jesse Barnes79e53942008-11-07 14:24:08 -080010708 kfree(intel_crtc);
10709}
10710
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010711static void intel_unpin_work_fn(struct work_struct *__work)
10712{
10713 struct intel_unpin_work *work =
10714 container_of(__work, struct intel_unpin_work, work);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010715 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
10716 struct drm_device *dev = crtc->base.dev;
10717 struct drm_plane *primary = crtc->base.primary;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010718
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010719 mutex_lock(&dev->struct_mutex);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010720 intel_unpin_fb_obj(work->old_fb, primary->state);
Chris Wilson05394f32010-11-08 19:18:58 +000010721 drm_gem_object_unreference(&work->pending_flip_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +000010722
John Harrisonf06cc1b2014-11-24 18:49:37 +000010723 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +000010724 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010725 mutex_unlock(&dev->struct_mutex);
10726
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010727 intel_frontbuffer_flip_complete(dev, to_intel_plane(primary)->frontbuffer_bit);
Chris Wilson89ed88b2015-02-16 14:31:49 +000010728 drm_framebuffer_unreference(work->old_fb);
Daniel Vetterf99d7062014-06-19 16:01:59 +020010729
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010730 BUG_ON(atomic_read(&crtc->unpin_work_count) == 0);
10731 atomic_dec(&crtc->unpin_work_count);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010732
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010733 kfree(work);
10734}
10735
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010736static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +010010737 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010738{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010739 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10740 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010741 unsigned long flags;
10742
10743 /* Ignore early vblank irqs */
10744 if (intel_crtc == NULL)
10745 return;
10746
Daniel Vetterf3260382014-09-15 14:55:23 +020010747 /*
10748 * This is called both by irq handlers and the reset code (to complete
10749 * lost pageflips) so needs the full irqsave spinlocks.
10750 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010751 spin_lock_irqsave(&dev->event_lock, flags);
10752 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +000010753
10754 /* Ensure we don't miss a work->pending update ... */
10755 smp_rmb();
10756
10757 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010758 spin_unlock_irqrestore(&dev->event_lock, flags);
10759 return;
10760 }
10761
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010762 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +010010763
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010764 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010765}
10766
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010767void intel_finish_page_flip(struct drm_device *dev, int pipe)
10768{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010769 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010770 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10771
Mario Kleiner49b14a52010-12-09 07:00:07 +010010772 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010773}
10774
10775void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
10776{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010777 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010778 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
10779
Mario Kleiner49b14a52010-12-09 07:00:07 +010010780 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010781}
10782
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010783/* Is 'a' after or equal to 'b'? */
10784static bool g4x_flip_count_after_eq(u32 a, u32 b)
10785{
10786 return !((a - b) & 0x80000000);
10787}
10788
10789static bool page_flip_finished(struct intel_crtc *crtc)
10790{
10791 struct drm_device *dev = crtc->base.dev;
10792 struct drm_i915_private *dev_priv = dev->dev_private;
10793
Ville Syrjäläbdfa7542014-05-27 21:33:09 +030010794 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
10795 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
10796 return true;
10797
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010798 /*
10799 * The relevant registers doen't exist on pre-ctg.
10800 * As the flip done interrupt doesn't trigger for mmio
10801 * flips on gmch platforms, a flip count check isn't
10802 * really needed there. But since ctg has the registers,
10803 * include it in the check anyway.
10804 */
10805 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
10806 return true;
10807
10808 /*
10809 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
10810 * used the same base address. In that case the mmio flip might
10811 * have completed, but the CS hasn't even executed the flip yet.
10812 *
10813 * A flip count check isn't enough as the CS might have updated
10814 * the base address just after start of vblank, but before we
10815 * managed to process the interrupt. This means we'd complete the
10816 * CS flip too soon.
10817 *
10818 * Combining both checks should get us a good enough result. It may
10819 * still happen that the CS flip has been executed, but has not
10820 * yet actually completed. But in case the base address is the same
10821 * anyway, we don't really care.
10822 */
10823 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
10824 crtc->unpin_work->gtt_offset &&
10825 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
10826 crtc->unpin_work->flip_count);
10827}
10828
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010829void intel_prepare_page_flip(struct drm_device *dev, int plane)
10830{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010831 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010832 struct intel_crtc *intel_crtc =
10833 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
10834 unsigned long flags;
10835
Daniel Vetterf3260382014-09-15 14:55:23 +020010836
10837 /*
10838 * This is called both by irq handlers and the reset code (to complete
10839 * lost pageflips) so needs the full irqsave spinlocks.
10840 *
10841 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +000010842 * generate a page-flip completion irq, i.e. every modeset
10843 * is also accompanied by a spurious intel_prepare_page_flip().
10844 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010845 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010846 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +000010847 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010848 spin_unlock_irqrestore(&dev->event_lock, flags);
10849}
10850
Robin Schroereba905b2014-05-18 02:24:50 +020010851static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +000010852{
10853 /* Ensure that the work item is consistent when activating it ... */
10854 smp_wmb();
10855 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
10856 /* and that it is marked active as soon as the irq could fire. */
10857 smp_wmb();
10858}
10859
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010860static int intel_gen2_queue_flip(struct drm_device *dev,
10861 struct drm_crtc *crtc,
10862 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010863 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010010864 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070010865 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010866{
John Harrison6258fbe2015-05-29 17:43:48 +010010867 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010868 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010869 u32 flip_mask;
10870 int ret;
10871
John Harrison5fb9de12015-05-29 17:44:07 +010010872 ret = intel_ring_begin(req, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010873 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010874 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010875
10876 /* Can't queue multiple flips, so wait for the previous
10877 * one to finish before executing the next.
10878 */
10879 if (intel_crtc->plane)
10880 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
10881 else
10882 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010883 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
10884 intel_ring_emit(ring, MI_NOOP);
10885 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10886 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10887 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010888 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020010889 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +000010890
10891 intel_mark_page_flip_active(intel_crtc);
Chris Wilson83d40922012-04-17 19:35:53 +010010892 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010893}
10894
10895static int intel_gen3_queue_flip(struct drm_device *dev,
10896 struct drm_crtc *crtc,
10897 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010898 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010010899 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070010900 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010901{
John Harrison6258fbe2015-05-29 17:43:48 +010010902 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010903 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010904 u32 flip_mask;
10905 int ret;
10906
John Harrison5fb9de12015-05-29 17:44:07 +010010907 ret = intel_ring_begin(req, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010908 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010909 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010910
10911 if (intel_crtc->plane)
10912 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
10913 else
10914 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010915 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
10916 intel_ring_emit(ring, MI_NOOP);
10917 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
10918 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10919 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010920 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020010921 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010922
Chris Wilsone7d841c2012-12-03 11:36:30 +000010923 intel_mark_page_flip_active(intel_crtc);
Chris Wilson83d40922012-04-17 19:35:53 +010010924 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010925}
10926
10927static int intel_gen4_queue_flip(struct drm_device *dev,
10928 struct drm_crtc *crtc,
10929 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010930 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010010931 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070010932 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010933{
John Harrison6258fbe2015-05-29 17:43:48 +010010934 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010935 struct drm_i915_private *dev_priv = dev->dev_private;
10936 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10937 uint32_t pf, pipesrc;
10938 int ret;
10939
John Harrison5fb9de12015-05-29 17:44:07 +010010940 ret = intel_ring_begin(req, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010941 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010942 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010943
10944 /* i965+ uses the linear or tiled offsets from the
10945 * Display Registers (which do not change across a page-flip)
10946 * so we need only reprogram the base address.
10947 */
Daniel Vetter6d90c952012-04-26 23:28:05 +020010948 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10949 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10950 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010951 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +020010952 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010953
10954 /* XXX Enabling the panel-fitter across page-flip is so far
10955 * untested on non-native modes, so ignore it for now.
10956 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
10957 */
10958 pf = 0;
10959 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010960 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000010961
10962 intel_mark_page_flip_active(intel_crtc);
Chris Wilson83d40922012-04-17 19:35:53 +010010963 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010964}
10965
10966static int intel_gen6_queue_flip(struct drm_device *dev,
10967 struct drm_crtc *crtc,
10968 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070010969 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010010970 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070010971 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010972{
John Harrison6258fbe2015-05-29 17:43:48 +010010973 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010974 struct drm_i915_private *dev_priv = dev->dev_private;
10975 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10976 uint32_t pf, pipesrc;
10977 int ret;
10978
John Harrison5fb9de12015-05-29 17:44:07 +010010979 ret = intel_ring_begin(req, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010980 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030010981 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010982
Daniel Vetter6d90c952012-04-26 23:28:05 +020010983 intel_ring_emit(ring, MI_DISPLAY_FLIP |
10984 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
10985 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010986 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010987
Chris Wilson99d9acd2012-04-17 20:37:00 +010010988 /* Contrary to the suggestions in the documentation,
10989 * "Enable Panel Fitter" does not seem to be required when page
10990 * flipping with a non-native mode, and worse causes a normal
10991 * modeset to fail.
10992 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
10993 */
10994 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010995 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020010996 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000010997
10998 intel_mark_page_flip_active(intel_crtc);
Chris Wilson83d40922012-04-17 19:35:53 +010010999 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011000}
11001
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011002static int intel_gen7_queue_flip(struct drm_device *dev,
11003 struct drm_crtc *crtc,
11004 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011005 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011006 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011007 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011008{
John Harrison6258fbe2015-05-29 17:43:48 +010011009 struct intel_engine_cs *ring = req->ring;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011010 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011011 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +010011012 int len, ret;
11013
Robin Schroereba905b2014-05-18 02:24:50 +020011014 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011015 case PLANE_A:
11016 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11017 break;
11018 case PLANE_B:
11019 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11020 break;
11021 case PLANE_C:
11022 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11023 break;
11024 default:
11025 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011026 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011027 }
11028
Chris Wilsonffe74d72013-08-26 20:58:12 +010011029 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +010011030 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +010011031 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +010011032 /*
11033 * On Gen 8, SRM is now taking an extra dword to accommodate
11034 * 48bits addresses, and we need a NOOP for the batch size to
11035 * stay even.
11036 */
11037 if (IS_GEN8(dev))
11038 len += 2;
11039 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010011040
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011041 /*
11042 * BSpec MI_DISPLAY_FLIP for IVB:
11043 * "The full packet must be contained within the same cache line."
11044 *
11045 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11046 * cacheline, if we ever start emitting more commands before
11047 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11048 * then do the cacheline alignment, and finally emit the
11049 * MI_DISPLAY_FLIP.
11050 */
John Harrisonbba09b12015-05-29 17:44:06 +010011051 ret = intel_ring_cacheline_align(req);
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011052 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011053 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011054
John Harrison5fb9de12015-05-29 17:44:07 +010011055 ret = intel_ring_begin(req, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011056 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011057 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011058
Chris Wilsonffe74d72013-08-26 20:58:12 +010011059 /* Unmask the flip-done completion message. Note that the bspec says that
11060 * we should do this for both the BCS and RCS, and that we must not unmask
11061 * more than one flip event at any time (or ensure that one flip message
11062 * can be sent by waiting for flip-done prior to queueing new flips).
11063 * Experimentation says that BCS works despite DERRMR masking all
11064 * flip-done completion events and that unmasking all planes at once
11065 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11066 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11067 */
11068 if (ring->id == RCS) {
11069 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
11070 intel_ring_emit(ring, DERRMR);
11071 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
11072 DERRMR_PIPEB_PRI_FLIP_DONE |
11073 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +010011074 if (IS_GEN8(dev))
Arun Siluveryf1afe242015-08-04 16:22:20 +010011075 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8 |
Damien Lespiauf4768282014-04-07 20:24:34 +010011076 MI_SRM_LRM_GLOBAL_GTT);
11077 else
Arun Siluveryf1afe242015-08-04 16:22:20 +010011078 intel_ring_emit(ring, MI_STORE_REGISTER_MEM |
Damien Lespiauf4768282014-04-07 20:24:34 +010011079 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +010011080 intel_ring_emit(ring, DERRMR);
11081 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +010011082 if (IS_GEN8(dev)) {
11083 intel_ring_emit(ring, 0);
11084 intel_ring_emit(ring, MI_NOOP);
11085 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010011086 }
11087
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011088 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +020011089 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011090 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011091 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +000011092
11093 intel_mark_page_flip_active(intel_crtc);
Chris Wilson83d40922012-04-17 19:35:53 +010011094 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011095}
11096
Sourab Gupta84c33a62014-06-02 16:47:17 +053011097static bool use_mmio_flip(struct intel_engine_cs *ring,
11098 struct drm_i915_gem_object *obj)
11099{
11100 /*
11101 * This is not being used for older platforms, because
11102 * non-availability of flip done interrupt forces us to use
11103 * CS flips. Older platforms derive flip done using some clever
11104 * tricks involving the flip_pending status bits and vblank irqs.
11105 * So using MMIO flips there would disrupt this mechanism.
11106 */
11107
Chris Wilson8e09bf82014-07-08 10:40:30 +010011108 if (ring == NULL)
11109 return true;
11110
Sourab Gupta84c33a62014-06-02 16:47:17 +053011111 if (INTEL_INFO(ring->dev)->gen < 5)
11112 return false;
11113
11114 if (i915.use_mmio_flip < 0)
11115 return false;
11116 else if (i915.use_mmio_flip > 0)
11117 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +010011118 else if (i915.enable_execlists)
11119 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011120 else
Chris Wilsonb4716182015-04-27 13:41:17 +010011121 return ring != i915_gem_request_get_ring(obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011122}
11123
Damien Lespiauff944562014-11-20 14:58:16 +000011124static void skl_do_mmio_flip(struct intel_crtc *intel_crtc)
11125{
11126 struct drm_device *dev = intel_crtc->base.dev;
11127 struct drm_i915_private *dev_priv = dev->dev_private;
11128 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
Damien Lespiauff944562014-11-20 14:58:16 +000011129 const enum pipe pipe = intel_crtc->pipe;
11130 u32 ctl, stride;
11131
11132 ctl = I915_READ(PLANE_CTL(pipe, 0));
11133 ctl &= ~PLANE_CTL_TILED_MASK;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011134 switch (fb->modifier[0]) {
11135 case DRM_FORMAT_MOD_NONE:
11136 break;
11137 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauff944562014-11-20 14:58:16 +000011138 ctl |= PLANE_CTL_TILED_X;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011139 break;
11140 case I915_FORMAT_MOD_Y_TILED:
11141 ctl |= PLANE_CTL_TILED_Y;
11142 break;
11143 case I915_FORMAT_MOD_Yf_TILED:
11144 ctl |= PLANE_CTL_TILED_YF;
11145 break;
11146 default:
11147 MISSING_CASE(fb->modifier[0]);
11148 }
Damien Lespiauff944562014-11-20 14:58:16 +000011149
11150 /*
11151 * The stride is either expressed as a multiple of 64 bytes chunks for
11152 * linear buffers or in number of tiles for tiled buffers.
11153 */
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011154 stride = fb->pitches[0] /
11155 intel_fb_stride_alignment(dev, fb->modifier[0],
11156 fb->pixel_format);
Damien Lespiauff944562014-11-20 14:58:16 +000011157
11158 /*
11159 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
11160 * PLANE_SURF updates, the update is then guaranteed to be atomic.
11161 */
11162 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
11163 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
11164
11165 I915_WRITE(PLANE_SURF(pipe, 0), intel_crtc->unpin_work->gtt_offset);
11166 POSTING_READ(PLANE_SURF(pipe, 0));
11167}
11168
11169static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011170{
11171 struct drm_device *dev = intel_crtc->base.dev;
11172 struct drm_i915_private *dev_priv = dev->dev_private;
11173 struct intel_framebuffer *intel_fb =
11174 to_intel_framebuffer(intel_crtc->base.primary->fb);
11175 struct drm_i915_gem_object *obj = intel_fb->obj;
11176 u32 dspcntr;
11177 u32 reg;
11178
Sourab Gupta84c33a62014-06-02 16:47:17 +053011179 reg = DSPCNTR(intel_crtc->plane);
11180 dspcntr = I915_READ(reg);
11181
Damien Lespiauc5d97472014-10-25 00:11:11 +010011182 if (obj->tiling_mode != I915_TILING_NONE)
11183 dspcntr |= DISPPLANE_TILED;
11184 else
11185 dspcntr &= ~DISPPLANE_TILED;
11186
Sourab Gupta84c33a62014-06-02 16:47:17 +053011187 I915_WRITE(reg, dspcntr);
11188
11189 I915_WRITE(DSPSURF(intel_crtc->plane),
11190 intel_crtc->unpin_work->gtt_offset);
11191 POSTING_READ(DSPSURF(intel_crtc->plane));
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020011192
Damien Lespiauff944562014-11-20 14:58:16 +000011193}
11194
11195/*
11196 * XXX: This is the temporary way to update the plane registers until we get
11197 * around to using the usual plane update functions for MMIO flips
11198 */
11199static void intel_do_mmio_flip(struct intel_crtc *intel_crtc)
11200{
11201 struct drm_device *dev = intel_crtc->base.dev;
Damien Lespiauff944562014-11-20 14:58:16 +000011202
11203 intel_mark_page_flip_active(intel_crtc);
11204
Maarten Lankhorst34e0adb2015-08-31 13:04:25 +020011205 intel_pipe_update_start(intel_crtc);
Damien Lespiauff944562014-11-20 14:58:16 +000011206
11207 if (INTEL_INFO(dev)->gen >= 9)
11208 skl_do_mmio_flip(intel_crtc);
11209 else
11210 /* use_mmio_flip() retricts MMIO flips to ilk+ */
11211 ilk_do_mmio_flip(intel_crtc);
11212
Maarten Lankhorst34e0adb2015-08-31 13:04:25 +020011213 intel_pipe_update_end(intel_crtc);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011214}
11215
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020011216static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011217{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011218 struct intel_mmio_flip *mmio_flip =
11219 container_of(work, struct intel_mmio_flip, work);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011220
Daniel Vettereed29a52015-05-21 14:21:25 +020011221 if (mmio_flip->req)
11222 WARN_ON(__i915_wait_request(mmio_flip->req,
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011223 mmio_flip->crtc->reset_counter,
Chris Wilsonbcafc4e2015-04-27 13:41:21 +010011224 false, NULL,
11225 &mmio_flip->i915->rps.mmioflips));
Sourab Gupta84c33a62014-06-02 16:47:17 +053011226
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011227 intel_do_mmio_flip(mmio_flip->crtc);
11228
Daniel Vettereed29a52015-05-21 14:21:25 +020011229 i915_gem_request_unreference__unlocked(mmio_flip->req);
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011230 kfree(mmio_flip);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011231}
11232
11233static int intel_queue_mmio_flip(struct drm_device *dev,
11234 struct drm_crtc *crtc,
11235 struct drm_framebuffer *fb,
11236 struct drm_i915_gem_object *obj,
11237 struct intel_engine_cs *ring,
11238 uint32_t flags)
11239{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011240 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011241
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011242 mmio_flip = kmalloc(sizeof(*mmio_flip), GFP_KERNEL);
11243 if (mmio_flip == NULL)
11244 return -ENOMEM;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011245
Chris Wilsonbcafc4e2015-04-27 13:41:21 +010011246 mmio_flip->i915 = to_i915(dev);
Daniel Vettereed29a52015-05-21 14:21:25 +020011247 mmio_flip->req = i915_gem_request_reference(obj->last_write_req);
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011248 mmio_flip->crtc = to_intel_crtc(crtc);
11249
11250 INIT_WORK(&mmio_flip->work, intel_mmio_flip_work_func);
11251 schedule_work(&mmio_flip->work);
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +020011252
Sourab Gupta84c33a62014-06-02 16:47:17 +053011253 return 0;
11254}
11255
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011256static int intel_default_queue_flip(struct drm_device *dev,
11257 struct drm_crtc *crtc,
11258 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011259 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011260 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011261 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011262{
11263 return -ENODEV;
11264}
11265
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011266static bool __intel_pageflip_stall_check(struct drm_device *dev,
11267 struct drm_crtc *crtc)
11268{
11269 struct drm_i915_private *dev_priv = dev->dev_private;
11270 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11271 struct intel_unpin_work *work = intel_crtc->unpin_work;
11272 u32 addr;
11273
11274 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
11275 return true;
11276
Chris Wilson908565c2015-08-12 13:08:22 +010011277 if (atomic_read(&work->pending) < INTEL_FLIP_PENDING)
11278 return false;
11279
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011280 if (!work->enable_stall_check)
11281 return false;
11282
11283 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +010011284 if (work->flip_queued_req &&
11285 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011286 return false;
11287
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011288 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011289 }
11290
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011291 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011292 return false;
11293
11294 /* Potential stall - if we see that the flip has happened,
11295 * assume a missed interrupt. */
11296 if (INTEL_INFO(dev)->gen >= 4)
11297 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
11298 else
11299 addr = I915_READ(DSPADDR(intel_crtc->plane));
11300
11301 /* There is a potential issue here with a false positive after a flip
11302 * to the same address. We could address this by checking for a
11303 * non-incrementing frame counter.
11304 */
11305 return addr == work->gtt_offset;
11306}
11307
11308void intel_check_page_flip(struct drm_device *dev, int pipe)
11309{
11310 struct drm_i915_private *dev_priv = dev->dev_private;
11311 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11312 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011313 struct intel_unpin_work *work;
Daniel Vetterf3260382014-09-15 14:55:23 +020011314
Dave Gordon6c51d462015-03-06 15:34:26 +000011315 WARN_ON(!in_interrupt());
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011316
11317 if (crtc == NULL)
11318 return;
11319
Daniel Vetterf3260382014-09-15 14:55:23 +020011320 spin_lock(&dev->event_lock);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011321 work = intel_crtc->unpin_work;
11322 if (work != NULL && __intel_pageflip_stall_check(dev, crtc)) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011323 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
Chris Wilson6ad790c2015-04-07 16:20:31 +010011324 work->flip_queued_vblank, drm_vblank_count(dev, pipe));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011325 page_flip_completed(intel_crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011326 work = NULL;
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011327 }
Chris Wilson6ad790c2015-04-07 16:20:31 +010011328 if (work != NULL &&
11329 drm_vblank_count(dev, pipe) - work->flip_queued_vblank > 1)
11330 intel_queue_rps_boost_for_request(dev, work->flip_queued_req);
Daniel Vetterf3260382014-09-15 14:55:23 +020011331 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011332}
11333
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011334static int intel_crtc_page_flip(struct drm_crtc *crtc,
11335 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011336 struct drm_pending_vblank_event *event,
11337 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011338{
11339 struct drm_device *dev = crtc->dev;
11340 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -070011341 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -070011342 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011343 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080011344 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +020011345 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011346 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +010011347 struct intel_engine_cs *ring;
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011348 bool mmio_flip;
John Harrison91af1272015-06-18 13:14:56 +010011349 struct drm_i915_gem_request *request = NULL;
Chris Wilson52e68632010-08-08 10:15:59 +010011350 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011351
Matt Roper2ff8fde2014-07-08 07:50:07 -070011352 /*
11353 * drm_mode_page_flip_ioctl() should already catch this, but double
11354 * check to be safe. In the future we may enable pageflipping from
11355 * a disabled primary plane.
11356 */
11357 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
11358 return -EBUSY;
11359
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011360 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -070011361 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011362 return -EINVAL;
11363
11364 /*
11365 * TILEOFF/LINOFF registers can't be changed via MI display flips.
11366 * Note that pitch changes could also affect these register.
11367 */
11368 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -070011369 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
11370 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011371 return -EINVAL;
11372
Chris Wilsonf900db42014-02-20 09:26:13 +000011373 if (i915_terminally_wedged(&dev_priv->gpu_error))
11374 goto out_hang;
11375
Daniel Vetterb14c5672013-09-19 12:18:32 +020011376 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011377 if (work == NULL)
11378 return -ENOMEM;
11379
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011380 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011381 work->crtc = crtc;
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011382 work->old_fb = old_fb;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011383 INIT_WORK(&work->work, intel_unpin_work_fn);
11384
Daniel Vetter87b6b102014-05-15 15:33:46 +020011385 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011386 if (ret)
11387 goto free_work;
11388
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011389 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011390 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011391 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011392 /* Before declaring the flip queue wedged, check if
11393 * the hardware completed the operation behind our backs.
11394 */
11395 if (__intel_pageflip_stall_check(dev, crtc)) {
11396 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
11397 page_flip_completed(intel_crtc);
11398 } else {
11399 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011400 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +010011401
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011402 drm_crtc_vblank_put(crtc);
11403 kfree(work);
11404 return -EBUSY;
11405 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011406 }
11407 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011408 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011409
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011410 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
11411 flush_workqueue(dev_priv->wq);
11412
Jesse Barnes75dfca82010-02-10 15:09:44 -080011413 /* Reference the objects for the scheduled work. */
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011414 drm_framebuffer_reference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +000011415 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011416
Matt Roperf4510a22014-04-01 15:22:40 -070011417 crtc->primary->fb = fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011418 update_state_fb(crtc->primary);
Matt Roper1ed1f962015-01-30 16:22:36 -080011419
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011420 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011421
Chris Wilson89ed88b2015-02-16 14:31:49 +000011422 ret = i915_mutex_lock_interruptible(dev);
11423 if (ret)
11424 goto cleanup;
11425
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011426 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +020011427 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011428
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011429 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Daniel Vettera071fa02014-06-18 23:28:09 +020011430 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011431
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011432 if (IS_VALLEYVIEW(dev)) {
11433 ring = &dev_priv->ring[BCS];
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011434 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
Chris Wilson8e09bf82014-07-08 10:40:30 +010011435 /* vlv: DISPLAY_FLIP fails to change tiling */
11436 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +000011437 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +010011438 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011439 } else if (INTEL_INFO(dev)->gen >= 7) {
Chris Wilsonb4716182015-04-27 13:41:17 +010011440 ring = i915_gem_request_get_ring(obj->last_write_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011441 if (ring == NULL || ring->id != RCS)
11442 ring = &dev_priv->ring[BCS];
11443 } else {
11444 ring = &dev_priv->ring[RCS];
11445 }
11446
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011447 mmio_flip = use_mmio_flip(ring, obj);
11448
11449 /* When using CS flips, we want to emit semaphores between rings.
11450 * However, when using mmio flips we will create a task to do the
11451 * synchronisation, so all we want here is to pin the framebuffer
11452 * into the display plane and skip any waits.
11453 */
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011454 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb,
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011455 crtc->primary->state,
John Harrison91af1272015-06-18 13:14:56 +010011456 mmio_flip ? i915_gem_request_get_ring(obj->last_write_req) : ring, &request);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011457 if (ret)
11458 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011459
Tvrtko Ursulindedf2782015-09-21 10:45:35 +010011460 work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary),
11461 obj, 0);
11462 work->gtt_offset += intel_crtc->dspaddr_offset;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011463
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011464 if (mmio_flip) {
Sourab Gupta84c33a62014-06-02 16:47:17 +053011465 ret = intel_queue_mmio_flip(dev, crtc, fb, obj, ring,
11466 page_flip_flags);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011467 if (ret)
11468 goto cleanup_unpin;
11469
John Harrisonf06cc1b2014-11-24 18:49:37 +000011470 i915_gem_request_assign(&work->flip_queued_req,
11471 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011472 } else {
John Harrison6258fbe2015-05-29 17:43:48 +010011473 if (!request) {
11474 ret = i915_gem_request_alloc(ring, ring->default_context, &request);
11475 if (ret)
11476 goto cleanup_unpin;
11477 }
11478
11479 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request,
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011480 page_flip_flags);
11481 if (ret)
11482 goto cleanup_unpin;
11483
John Harrison6258fbe2015-05-29 17:43:48 +010011484 i915_gem_request_assign(&work->flip_queued_req, request);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011485 }
11486
John Harrison91af1272015-06-18 13:14:56 +010011487 if (request)
John Harrison75289872015-05-29 17:43:49 +010011488 i915_add_request_no_flush(request);
John Harrison91af1272015-06-18 13:14:56 +010011489
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011490 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011491 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011492
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011493 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011494 to_intel_plane(primary)->frontbuffer_bit);
Paulo Zanonic80ac852015-07-02 19:25:13 -030011495 mutex_unlock(&dev->struct_mutex);
Daniel Vettera071fa02014-06-18 23:28:09 +020011496
Paulo Zanoni4e1e26f2015-07-14 16:29:13 -030011497 intel_fbc_disable_crtc(intel_crtc);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011498 intel_frontbuffer_flip_prepare(dev,
11499 to_intel_plane(primary)->frontbuffer_bit);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011500
Jesse Barnese5510fa2010-07-01 16:48:37 -070011501 trace_i915_flip_request(intel_crtc->plane, obj);
11502
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011503 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +010011504
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011505cleanup_unpin:
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011506 intel_unpin_fb_obj(fb, crtc->primary->state);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011507cleanup_pending:
John Harrison91af1272015-06-18 13:14:56 +010011508 if (request)
11509 i915_gem_request_cancel(request);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011510 atomic_dec(&intel_crtc->unpin_work_count);
Chris Wilson89ed88b2015-02-16 14:31:49 +000011511 mutex_unlock(&dev->struct_mutex);
11512cleanup:
Matt Roperf4510a22014-04-01 15:22:40 -070011513 crtc->primary->fb = old_fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011514 update_state_fb(crtc->primary);
Chris Wilson96b099f2010-06-07 14:03:04 +010011515
Chris Wilson89ed88b2015-02-16 14:31:49 +000011516 drm_gem_object_unreference_unlocked(&obj->base);
11517 drm_framebuffer_unreference(work->old_fb);
11518
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011519 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011520 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011521 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011522
Daniel Vetter87b6b102014-05-15 15:33:46 +020011523 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011524free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +010011525 kfree(work);
11526
Chris Wilsonf900db42014-02-20 09:26:13 +000011527 if (ret == -EIO) {
Maarten Lankhorst02e0efb2015-06-12 11:15:40 +020011528 struct drm_atomic_state *state;
11529 struct drm_plane_state *plane_state;
11530
Chris Wilsonf900db42014-02-20 09:26:13 +000011531out_hang:
Maarten Lankhorst02e0efb2015-06-12 11:15:40 +020011532 state = drm_atomic_state_alloc(dev);
11533 if (!state)
11534 return -ENOMEM;
11535 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
11536
11537retry:
11538 plane_state = drm_atomic_get_plane_state(state, primary);
11539 ret = PTR_ERR_OR_ZERO(plane_state);
11540 if (!ret) {
11541 drm_atomic_set_fb_for_plane(plane_state, fb);
11542
11543 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
11544 if (!ret)
11545 ret = drm_atomic_commit(state);
11546 }
11547
11548 if (ret == -EDEADLK) {
11549 drm_modeset_backoff(state->acquire_ctx);
11550 drm_atomic_state_clear(state);
11551 goto retry;
11552 }
11553
11554 if (ret)
11555 drm_atomic_state_free(state);
11556
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011557 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011558 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +020011559 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011560 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011561 }
Chris Wilsonf900db42014-02-20 09:26:13 +000011562 }
Chris Wilson96b099f2010-06-07 14:03:04 +010011563 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011564}
11565
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011566
11567/**
11568 * intel_wm_need_update - Check whether watermarks need updating
11569 * @plane: drm plane
11570 * @state: new plane state
11571 *
11572 * Check current plane state versus the new one to determine whether
11573 * watermarks need to be recalculated.
11574 *
11575 * Returns true or false.
11576 */
11577static bool intel_wm_need_update(struct drm_plane *plane,
11578 struct drm_plane_state *state)
11579{
Matt Roper7809e5a2015-09-24 15:53:12 -070011580 struct intel_plane_state *new = to_intel_plane_state(state);
11581 struct intel_plane_state *cur = to_intel_plane_state(plane->state);
11582
11583 /* Update watermarks on tiling or size changes. */
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011584 if (!plane->state->fb || !state->fb ||
11585 plane->state->fb->modifier[0] != state->fb->modifier[0] ||
Matt Roper7809e5a2015-09-24 15:53:12 -070011586 plane->state->rotation != state->rotation ||
11587 drm_rect_width(&new->src) != drm_rect_width(&cur->src) ||
11588 drm_rect_height(&new->src) != drm_rect_height(&cur->src) ||
11589 drm_rect_width(&new->dst) != drm_rect_width(&cur->dst) ||
11590 drm_rect_height(&new->dst) != drm_rect_height(&cur->dst))
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011591 return true;
11592
11593 return false;
11594}
11595
Matt Roper7809e5a2015-09-24 15:53:12 -070011596static bool needs_scaling(struct intel_plane_state *state)
11597{
11598 int src_w = drm_rect_width(&state->src) >> 16;
11599 int src_h = drm_rect_height(&state->src) >> 16;
11600 int dst_w = drm_rect_width(&state->dst);
11601 int dst_h = drm_rect_height(&state->dst);
11602
11603 return (src_w != dst_w || src_h != dst_h);
11604}
11605
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011606int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
11607 struct drm_plane_state *plane_state)
11608{
11609 struct drm_crtc *crtc = crtc_state->crtc;
11610 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11611 struct drm_plane *plane = plane_state->plane;
11612 struct drm_device *dev = crtc->dev;
11613 struct drm_i915_private *dev_priv = dev->dev_private;
11614 struct intel_plane_state *old_plane_state =
11615 to_intel_plane_state(plane->state);
11616 int idx = intel_crtc->base.base.id, ret;
11617 int i = drm_plane_index(plane);
11618 bool mode_changed = needs_modeset(crtc_state);
11619 bool was_crtc_enabled = crtc->state->active;
11620 bool is_crtc_enabled = crtc_state->active;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011621 bool turn_off, turn_on, visible, was_visible;
11622 struct drm_framebuffer *fb = plane_state->fb;
11623
11624 if (crtc_state && INTEL_INFO(dev)->gen >= 9 &&
11625 plane->type != DRM_PLANE_TYPE_CURSOR) {
11626 ret = skl_update_scaler_plane(
11627 to_intel_crtc_state(crtc_state),
11628 to_intel_plane_state(plane_state));
11629 if (ret)
11630 return ret;
11631 }
11632
11633 /*
11634 * Disabling a plane is always okay; we just need to update
11635 * fb tracking in a special way since cleanup_fb() won't
11636 * get called by the plane helpers.
11637 */
11638 if (old_plane_state->base.fb && !fb)
11639 intel_crtc->atomic.disabled_planes |= 1 << i;
11640
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011641 was_visible = old_plane_state->visible;
11642 visible = to_intel_plane_state(plane_state)->visible;
11643
11644 if (!was_crtc_enabled && WARN_ON(was_visible))
11645 was_visible = false;
11646
11647 if (!is_crtc_enabled && WARN_ON(visible))
11648 visible = false;
11649
11650 if (!was_visible && !visible)
11651 return 0;
11652
11653 turn_off = was_visible && (!visible || mode_changed);
11654 turn_on = visible && (!was_visible || mode_changed);
11655
11656 DRM_DEBUG_ATOMIC("[CRTC:%i] has [PLANE:%i] with fb %i\n", idx,
11657 plane->base.id, fb ? fb->base.id : -1);
11658
11659 DRM_DEBUG_ATOMIC("[PLANE:%i] visible %i -> %i, off %i, on %i, ms %i\n",
11660 plane->base.id, was_visible, visible,
11661 turn_off, turn_on, mode_changed);
11662
Ville Syrjälä852eb002015-06-24 22:00:07 +030011663 if (turn_on) {
Ville Syrjäläf015c552015-06-24 22:00:02 +030011664 intel_crtc->atomic.update_wm_pre = 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 intel_crtc->atomic.disable_cxsr = true;
11668 /* to potentially re-enable cxsr */
11669 intel_crtc->atomic.wait_vblank = true;
11670 intel_crtc->atomic.update_wm_post = true;
11671 }
11672 } else if (turn_off) {
Ville Syrjäläf015c552015-06-24 22:00:02 +030011673 intel_crtc->atomic.update_wm_post = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +030011674 /* must disable cxsr around plane enable/disable */
11675 if (plane->type != DRM_PLANE_TYPE_CURSOR) {
11676 if (is_crtc_enabled)
11677 intel_crtc->atomic.wait_vblank = true;
11678 intel_crtc->atomic.disable_cxsr = true;
11679 }
11680 } else if (intel_wm_need_update(plane, plane_state)) {
Ville Syrjäläf015c552015-06-24 22:00:02 +030011681 intel_crtc->atomic.update_wm_pre = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +030011682 }
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011683
Rodrigo Vivi8be6ca82015-08-24 16:38:23 -070011684 if (visible || was_visible)
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011685 intel_crtc->atomic.fb_bits |=
11686 to_intel_plane(plane)->frontbuffer_bit;
11687
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011688 switch (plane->type) {
11689 case DRM_PLANE_TYPE_PRIMARY:
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011690 intel_crtc->atomic.wait_for_flips = true;
11691 intel_crtc->atomic.pre_disable_primary = turn_off;
11692 intel_crtc->atomic.post_enable_primary = turn_on;
11693
Rodrigo Vivi066cf552015-06-26 13:55:54 -070011694 if (turn_off) {
11695 /*
11696 * FIXME: Actually if we will still have any other
11697 * plane enabled on the pipe we could let IPS enabled
11698 * still, but for now lets consider that when we make
11699 * primary invisible by setting DSPCNTR to 0 on
11700 * update_primary_plane function IPS needs to be
11701 * disable.
11702 */
11703 intel_crtc->atomic.disable_ips = true;
11704
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011705 intel_crtc->atomic.disable_fbc = true;
Rodrigo Vivi066cf552015-06-26 13:55:54 -070011706 }
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011707
11708 /*
11709 * FBC does not work on some platforms for rotated
11710 * planes, so disable it when rotation is not 0 and
11711 * update it when rotation is set back to 0.
11712 *
11713 * FIXME: This is redundant with the fbc update done in
11714 * the primary plane enable function except that that
11715 * one is done too late. We eventually need to unify
11716 * this.
11717 */
11718
11719 if (visible &&
11720 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11721 dev_priv->fbc.crtc == intel_crtc &&
11722 plane_state->rotation != BIT(DRM_ROTATE_0))
11723 intel_crtc->atomic.disable_fbc = true;
11724
11725 /*
11726 * BDW signals flip done immediately if the plane
11727 * is disabled, even if the plane enable is already
11728 * armed to occur at the next vblank :(
11729 */
11730 if (turn_on && IS_BROADWELL(dev))
11731 intel_crtc->atomic.wait_vblank = true;
11732
11733 intel_crtc->atomic.update_fbc |= visible || mode_changed;
11734 break;
11735 case DRM_PLANE_TYPE_CURSOR:
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011736 break;
11737 case DRM_PLANE_TYPE_OVERLAY:
Matt Roper7809e5a2015-09-24 15:53:12 -070011738 /*
11739 * WaCxSRDisabledForSpriteScaling:ivb
11740 *
11741 * cstate->update_wm was already set above, so this flag will
11742 * take effect when we commit and program watermarks.
11743 */
11744 if (IS_IVYBRIDGE(dev) &&
11745 needs_scaling(to_intel_plane_state(plane_state)) &&
11746 !needs_scaling(old_plane_state)) {
11747 to_intel_crtc_state(crtc_state)->disable_lp_wm = true;
11748 } else if (turn_off && !mode_changed) {
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011749 intel_crtc->atomic.wait_vblank = true;
11750 intel_crtc->atomic.update_sprite_watermarks |=
11751 1 << i;
11752 }
Matt Roper7809e5a2015-09-24 15:53:12 -070011753
11754 break;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011755 }
11756 return 0;
11757}
11758
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011759static bool encoders_cloneable(const struct intel_encoder *a,
11760 const struct intel_encoder *b)
11761{
11762 /* masks could be asymmetric, so check both ways */
11763 return a == b || (a->cloneable & (1 << b->type) &&
11764 b->cloneable & (1 << a->type));
11765}
11766
11767static bool check_single_encoder_cloning(struct drm_atomic_state *state,
11768 struct intel_crtc *crtc,
11769 struct intel_encoder *encoder)
11770{
11771 struct intel_encoder *source_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 source_encoder =
11781 to_intel_encoder(connector_state->best_encoder);
11782 if (!encoders_cloneable(encoder, source_encoder))
11783 return false;
11784 }
11785
11786 return true;
11787}
11788
11789static bool check_encoder_cloning(struct drm_atomic_state *state,
11790 struct intel_crtc *crtc)
11791{
11792 struct intel_encoder *encoder;
11793 struct drm_connector *connector;
11794 struct drm_connector_state *connector_state;
11795 int i;
11796
11797 for_each_connector_in_state(state, connector, connector_state, i) {
11798 if (connector_state->crtc != &crtc->base)
11799 continue;
11800
11801 encoder = to_intel_encoder(connector_state->best_encoder);
11802 if (!check_single_encoder_cloning(state, crtc, encoder))
11803 return false;
11804 }
11805
11806 return true;
11807}
11808
11809static int intel_crtc_atomic_check(struct drm_crtc *crtc,
11810 struct drm_crtc_state *crtc_state)
11811{
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +020011812 struct drm_device *dev = crtc->dev;
Maarten Lankhorstad421372015-06-15 12:33:42 +020011813 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011814 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +020011815 struct intel_crtc_state *pipe_config =
11816 to_intel_crtc_state(crtc_state);
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011817 struct drm_atomic_state *state = crtc_state->state;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020011818 int ret;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011819 bool mode_changed = needs_modeset(crtc_state);
11820
11821 if (mode_changed && !check_encoder_cloning(state, intel_crtc)) {
11822 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
11823 return -EINVAL;
11824 }
11825
Ville Syrjälä852eb002015-06-24 22:00:07 +030011826 if (mode_changed && !crtc_state->active)
11827 intel_crtc->atomic.update_wm_post = true;
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +020011828
Maarten Lankhorstad421372015-06-15 12:33:42 +020011829 if (mode_changed && crtc_state->enable &&
11830 dev_priv->display.crtc_compute_clock &&
11831 !WARN_ON(pipe_config->shared_dpll != DPLL_ID_PRIVATE)) {
11832 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
11833 pipe_config);
11834 if (ret)
11835 return ret;
11836 }
11837
Maarten Lankhorste435d6e2015-07-13 16:30:15 +020011838 ret = 0;
Matt Ropera28170f2015-09-24 15:53:16 -070011839 if (dev_priv->display.compute_pipe_wm) {
11840 ret = dev_priv->display.compute_pipe_wm(intel_crtc, state);
11841 if (ret)
11842 return ret;
11843 }
11844
Maarten Lankhorste435d6e2015-07-13 16:30:15 +020011845 if (INTEL_INFO(dev)->gen >= 9) {
11846 if (mode_changed)
11847 ret = skl_update_scaler_crtc(pipe_config);
11848
11849 if (!ret)
11850 ret = intel_atomic_setup_scalers(dev, intel_crtc,
11851 pipe_config);
11852 }
11853
11854 return ret;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011855}
11856
Jani Nikula65b38e02015-04-13 11:26:56 +030011857static const struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011858 .mode_set_base_atomic = intel_pipe_set_base_atomic,
11859 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -080011860 .atomic_begin = intel_begin_crtc_commit,
11861 .atomic_flush = intel_finish_crtc_commit,
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011862 .atomic_check = intel_crtc_atomic_check,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010011863};
11864
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020011865static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
11866{
11867 struct intel_connector *connector;
11868
11869 for_each_intel_connector(dev, connector) {
11870 if (connector->base.encoder) {
11871 connector->base.state->best_encoder =
11872 connector->base.encoder;
11873 connector->base.state->crtc =
11874 connector->base.encoder->crtc;
11875 } else {
11876 connector->base.state->best_encoder = NULL;
11877 connector->base.state->crtc = NULL;
11878 }
11879 }
11880}
11881
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011882static void
Robin Schroereba905b2014-05-18 02:24:50 +020011883connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011884 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011885{
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011886 int bpp = pipe_config->pipe_bpp;
11887
11888 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
11889 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030011890 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011891
11892 /* Don't use an invalid EDID bpc value */
11893 if (connector->base.display_info.bpc &&
11894 connector->base.display_info.bpc * 3 < bpp) {
11895 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
11896 bpp, connector->base.display_info.bpc*3);
11897 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
11898 }
11899
11900 /* Clamp bpp to 8 on screens without EDID 1.4 */
11901 if (connector->base.display_info.bpc == 0 && bpp > 24) {
11902 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
11903 bpp);
11904 pipe_config->pipe_bpp = 24;
11905 }
11906}
11907
11908static int
11909compute_baseline_pipe_bpp(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011910 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020011911{
11912 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011913 struct drm_atomic_state *state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011914 struct drm_connector *connector;
11915 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011916 int bpp, i;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011917
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011918 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)))
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011919 bpp = 10*3;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020011920 else if (INTEL_INFO(dev)->gen >= 5)
11921 bpp = 12*3;
11922 else
11923 bpp = 8*3;
11924
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011925
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011926 pipe_config->pipe_bpp = bpp;
11927
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011928 state = pipe_config->base.state;
11929
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011930 /* Clamp display bpp to EDID value */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011931 for_each_connector_in_state(state, connector, connector_state, i) {
11932 if (connector_state->crtc != &crtc->base)
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020011933 continue;
11934
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030011935 connected_sink_compute_bpp(to_intel_connector(connector),
11936 pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010011937 }
11938
11939 return bpp;
11940}
11941
Daniel Vetter644db712013-09-19 14:53:58 +020011942static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
11943{
11944 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
11945 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010011946 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020011947 mode->crtc_hdisplay, mode->crtc_hsync_start,
11948 mode->crtc_hsync_end, mode->crtc_htotal,
11949 mode->crtc_vdisplay, mode->crtc_vsync_start,
11950 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
11951}
11952
Daniel Vetterc0b03412013-05-28 12:05:54 +020011953static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020011954 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020011955 const char *context)
11956{
Chandra Konduru6a60cd82015-04-07 15:28:40 -070011957 struct drm_device *dev = crtc->base.dev;
11958 struct drm_plane *plane;
11959 struct intel_plane *intel_plane;
11960 struct intel_plane_state *state;
11961 struct drm_framebuffer *fb;
11962
11963 DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id,
11964 context, pipe_config, pipe_name(crtc->pipe));
Daniel Vetterc0b03412013-05-28 12:05:54 +020011965
11966 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
11967 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
11968 pipe_config->pipe_bpp, pipe_config->dither);
11969 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
11970 pipe_config->has_pch_encoder,
11971 pipe_config->fdi_lanes,
11972 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
11973 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
11974 pipe_config->fdi_m_n.tu);
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030011975 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 +030011976 pipe_config->has_dp_encoder,
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030011977 pipe_config->lane_count,
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030011978 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
11979 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
11980 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011981
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030011982 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 -070011983 pipe_config->has_dp_encoder,
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030011984 pipe_config->lane_count,
Vandana Kannanb95af8b2014-08-05 07:51:23 -070011985 pipe_config->dp_m2_n2.gmch_m,
11986 pipe_config->dp_m2_n2.gmch_n,
11987 pipe_config->dp_m2_n2.link_m,
11988 pipe_config->dp_m2_n2.link_n,
11989 pipe_config->dp_m2_n2.tu);
11990
Daniel Vetter55072d12014-11-20 16:10:28 +010011991 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
11992 pipe_config->has_audio,
11993 pipe_config->has_infoframe);
11994
Daniel Vetterc0b03412013-05-28 12:05:54 +020011995 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011996 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020011997 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020011998 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
11999 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030012000 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030012001 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
12002 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Tvrtko Ursulin0ec463d2015-05-13 16:51:08 +010012003 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
12004 crtc->num_scalers,
12005 pipe_config->scaler_state.scaler_users,
12006 pipe_config->scaler_state.scaler_id);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012007 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
12008 pipe_config->gmch_pfit.control,
12009 pipe_config->gmch_pfit.pgm_ratios,
12010 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010012011 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020012012 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010012013 pipe_config->pch_pfit.size,
12014 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030012015 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030012016 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012017
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012018 if (IS_BROXTON(dev)) {
Imre Deak05712c12015-06-18 17:25:54 +030012019 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012020 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
Imre Deakc8453332015-06-18 17:25:55 +030012021 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012022 pipe_config->ddi_pll_sel,
12023 pipe_config->dpll_hw_state.ebb0,
Imre Deak05712c12015-06-18 17:25:54 +030012024 pipe_config->dpll_hw_state.ebb4,
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012025 pipe_config->dpll_hw_state.pll0,
12026 pipe_config->dpll_hw_state.pll1,
12027 pipe_config->dpll_hw_state.pll2,
12028 pipe_config->dpll_hw_state.pll3,
12029 pipe_config->dpll_hw_state.pll6,
12030 pipe_config->dpll_hw_state.pll8,
Imre Deak05712c12015-06-18 17:25:54 +030012031 pipe_config->dpll_hw_state.pll9,
Imre Deakc8453332015-06-18 17:25:55 +030012032 pipe_config->dpll_hw_state.pll10,
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012033 pipe_config->dpll_hw_state.pcsdw12);
12034 } else if (IS_SKYLAKE(dev)) {
12035 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: "
12036 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
12037 pipe_config->ddi_pll_sel,
12038 pipe_config->dpll_hw_state.ctrl1,
12039 pipe_config->dpll_hw_state.cfgcr1,
12040 pipe_config->dpll_hw_state.cfgcr2);
12041 } else if (HAS_DDI(dev)) {
12042 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: wrpll: 0x%x\n",
12043 pipe_config->ddi_pll_sel,
12044 pipe_config->dpll_hw_state.wrpll);
12045 } else {
12046 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
12047 "fp0: 0x%x, fp1: 0x%x\n",
12048 pipe_config->dpll_hw_state.dpll,
12049 pipe_config->dpll_hw_state.dpll_md,
12050 pipe_config->dpll_hw_state.fp0,
12051 pipe_config->dpll_hw_state.fp1);
12052 }
12053
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012054 DRM_DEBUG_KMS("planes on this crtc\n");
12055 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
12056 intel_plane = to_intel_plane(plane);
12057 if (intel_plane->pipe != crtc->pipe)
12058 continue;
12059
12060 state = to_intel_plane_state(plane->state);
12061 fb = state->base.fb;
12062 if (!fb) {
12063 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d "
12064 "disabled, scaler_id = %d\n",
12065 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12066 plane->base.id, intel_plane->pipe,
12067 (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1,
12068 drm_plane_index(plane), state->scaler_id);
12069 continue;
12070 }
12071
12072 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled",
12073 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12074 plane->base.id, intel_plane->pipe,
12075 crtc->base.primary == plane ? 0 : intel_plane->plane + 1,
12076 drm_plane_index(plane));
12077 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x",
12078 fb->base.id, fb->width, fb->height, fb->pixel_format);
12079 DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n",
12080 state->scaler_id,
12081 state->src.x1 >> 16, state->src.y1 >> 16,
12082 drm_rect_width(&state->src) >> 16,
12083 drm_rect_height(&state->src) >> 16,
12084 state->dst.x1, state->dst.y1,
12085 drm_rect_width(&state->dst), drm_rect_height(&state->dst));
12086 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020012087}
12088
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012089static bool check_digital_port_conflicts(struct drm_atomic_state *state)
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012090{
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012091 struct drm_device *dev = state->dev;
12092 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012093 struct drm_connector *connector;
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012094 struct drm_connector_state *connector_state;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012095 unsigned int used_ports = 0;
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012096 int i;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012097
12098 /*
12099 * Walk the connector list instead of the encoder
12100 * list to detect the problem on ddi platforms
12101 * where there's just one encoder per digital port.
12102 */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012103 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012104 if (!connector_state->best_encoder)
12105 continue;
12106
12107 encoder = to_intel_encoder(connector_state->best_encoder);
12108
12109 WARN_ON(!connector_state->crtc);
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012110
12111 switch (encoder->type) {
12112 unsigned int port_mask;
12113 case INTEL_OUTPUT_UNKNOWN:
12114 if (WARN_ON(!HAS_DDI(dev)))
12115 break;
12116 case INTEL_OUTPUT_DISPLAYPORT:
12117 case INTEL_OUTPUT_HDMI:
12118 case INTEL_OUTPUT_EDP:
12119 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
12120
12121 /* the same port mustn't appear more than once */
12122 if (used_ports & port_mask)
12123 return false;
12124
12125 used_ports |= port_mask;
12126 default:
12127 break;
12128 }
12129 }
12130
12131 return true;
12132}
12133
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012134static void
12135clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12136{
12137 struct drm_crtc_state tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012138 struct intel_crtc_scaler_state scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012139 struct intel_dpll_hw_state dpll_hw_state;
12140 enum intel_dpll_id shared_dpll;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012141 uint32_t ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012142 bool force_thru;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012143
Ander Conselvan de Oliveira7546a382015-05-20 09:03:27 +030012144 /* FIXME: before the switch to atomic started, a new pipe_config was
12145 * kzalloc'd. Code that depends on any field being zero should be
12146 * fixed, so that the crtc_state can be safely duplicated. For now,
12147 * only fields that are know to not cause problems are preserved. */
12148
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012149 tmp_state = crtc_state->base;
Chandra Konduru663a3642015-04-07 15:28:41 -070012150 scaler_state = crtc_state->scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012151 shared_dpll = crtc_state->shared_dpll;
12152 dpll_hw_state = crtc_state->dpll_hw_state;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012153 ddi_pll_sel = crtc_state->ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012154 force_thru = crtc_state->pch_pfit.force_thru;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012155
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012156 memset(crtc_state, 0, sizeof *crtc_state);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012157
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012158 crtc_state->base = tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012159 crtc_state->scaler_state = scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012160 crtc_state->shared_dpll = shared_dpll;
12161 crtc_state->dpll_hw_state = dpll_hw_state;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012162 crtc_state->ddi_pll_sel = ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012163 crtc_state->pch_pfit.force_thru = force_thru;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012164}
12165
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012166static int
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012167intel_modeset_pipe_config(struct drm_crtc *crtc,
Maarten Lankhorstb3592832015-06-15 12:33:38 +020012168 struct intel_crtc_state *pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020012169{
Maarten Lankhorstb3592832015-06-15 12:33:38 +020012170 struct drm_atomic_state *state = pipe_config->base.state;
Daniel Vetter7758a112012-07-08 19:40:39 +020012171 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012172 struct drm_connector *connector;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012173 struct drm_connector_state *connector_state;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012174 int base_bpp, ret = -EINVAL;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012175 int i;
Daniel Vettere29c22c2013-02-21 00:00:16 +010012176 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020012177
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012178 clear_intel_crtc_state(pipe_config);
Daniel Vetter7758a112012-07-08 19:40:39 +020012179
Daniel Vettere143a212013-07-04 12:01:15 +020012180 pipe_config->cpu_transcoder =
12181 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012182
Imre Deak2960bc92013-07-30 13:36:32 +030012183 /*
12184 * Sanitize sync polarity flags based on requested ones. If neither
12185 * positive or negative polarity is requested, treat this as meaning
12186 * negative polarity.
12187 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012188 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012189 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012190 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012191
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012192 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012193 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012194 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012195
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012196 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
12197 pipe_config);
12198 if (base_bpp < 0)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012199 goto fail;
12200
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012201 /*
12202 * Determine the real pipe dimensions. Note that stereo modes can
12203 * increase the actual pipe size due to the frame doubling and
12204 * insertion of additional space for blanks between the frame. This
12205 * is stored in the crtc timings. We use the requested mode to do this
12206 * computation to clearly distinguish it from the adjusted mode, which
12207 * can be changed by the connectors in the below retry loop.
12208 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012209 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080012210 &pipe_config->pipe_src_w,
12211 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012212
Daniel Vettere29c22c2013-02-21 00:00:16 +010012213encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020012214 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020012215 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020012216 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020012217
Daniel Vetter135c81b2013-07-21 21:37:09 +020012218 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012219 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
12220 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020012221
Daniel Vetter7758a112012-07-08 19:40:39 +020012222 /* Pass our mode to the connectors and the CRTC to give them a chance to
12223 * adjust it according to limitations or connector properties, and also
12224 * a chance to reject the mode entirely.
12225 */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012226 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012227 if (connector_state->crtc != crtc)
12228 continue;
12229
12230 encoder = to_intel_encoder(connector_state->best_encoder);
12231
Daniel Vetterefea6e82013-07-21 21:36:59 +020012232 if (!(encoder->compute_config(encoder, pipe_config))) {
12233 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020012234 goto fail;
12235 }
12236 }
12237
Daniel Vetterff9a6752013-06-01 17:16:21 +020012238 /* Set default port clock if not overwritten by the encoder. Needs to be
12239 * done afterwards in case the encoder adjusts the mode. */
12240 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012241 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010012242 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020012243
Daniel Vettera43f6e02013-06-07 23:10:32 +020012244 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010012245 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020012246 DRM_DEBUG_KMS("CRTC fixup failed\n");
12247 goto fail;
12248 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010012249
12250 if (ret == RETRY) {
12251 if (WARN(!retry, "loop in pipe configuration computation\n")) {
12252 ret = -EINVAL;
12253 goto fail;
12254 }
12255
12256 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
12257 retry = false;
12258 goto encoder_retry;
12259 }
12260
Daniel Vettere8fa4272015-08-12 11:43:34 +020012261 /* Dithering seems to not pass-through bits correctly when it should, so
12262 * only enable it on 6bpc panels. */
12263 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
Daniel Vetter62f0ace2015-08-26 18:57:26 +020012264 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012265 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012266
Daniel Vetter7758a112012-07-08 19:40:39 +020012267fail:
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012268 return ret;
Daniel Vetter7758a112012-07-08 19:40:39 +020012269}
12270
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012271static void
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020012272intel_modeset_update_crtc_state(struct drm_atomic_state *state)
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012273{
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012274 struct drm_crtc *crtc;
12275 struct drm_crtc_state *crtc_state;
Maarten Lankhorst8a75d152015-07-13 16:30:14 +020012276 int i;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012277
Ville Syrjälä76688512014-01-10 11:28:06 +020012278 /* Double check state. */
Maarten Lankhorst8a75d152015-07-13 16:30:14 +020012279 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst3cb480b2015-06-01 12:49:49 +020012280 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +020012281
12282 /* Update hwmode for vblank functions */
12283 if (crtc->state->active)
12284 crtc->hwmode = crtc->state->adjusted_mode;
12285 else
12286 crtc->hwmode.crtc_clock = 0;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012287 }
Daniel Vetterea9d7582012-07-10 10:42:52 +020012288}
12289
Ville Syrjälä3bd26262013-09-06 23:29:02 +030012290static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030012291{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030012292 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030012293
12294 if (clock1 == clock2)
12295 return true;
12296
12297 if (!clock1 || !clock2)
12298 return false;
12299
12300 diff = abs(clock1 - clock2);
12301
12302 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
12303 return true;
12304
12305 return false;
12306}
12307
Daniel Vetter25c5b262012-07-08 22:08:04 +020012308#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
12309 list_for_each_entry((intel_crtc), \
12310 &(dev)->mode_config.crtc_list, \
12311 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +020012312 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020012313
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012314static bool
12315intel_compare_m_n(unsigned int m, unsigned int n,
12316 unsigned int m2, unsigned int n2,
12317 bool exact)
12318{
12319 if (m == m2 && n == n2)
12320 return true;
12321
12322 if (exact || !m || !n || !m2 || !n2)
12323 return false;
12324
12325 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
12326
12327 if (m > m2) {
12328 while (m > m2) {
12329 m2 <<= 1;
12330 n2 <<= 1;
12331 }
12332 } else if (m < m2) {
12333 while (m < m2) {
12334 m <<= 1;
12335 n <<= 1;
12336 }
12337 }
12338
12339 return m == m2 && n == n2;
12340}
12341
12342static bool
12343intel_compare_link_m_n(const struct intel_link_m_n *m_n,
12344 struct intel_link_m_n *m2_n2,
12345 bool adjust)
12346{
12347 if (m_n->tu == m2_n2->tu &&
12348 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
12349 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
12350 intel_compare_m_n(m_n->link_m, m_n->link_n,
12351 m2_n2->link_m, m2_n2->link_n, !adjust)) {
12352 if (adjust)
12353 *m2_n2 = *m_n;
12354
12355 return true;
12356 }
12357
12358 return false;
12359}
12360
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012361static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020012362intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012363 struct intel_crtc_state *current_config,
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012364 struct intel_crtc_state *pipe_config,
12365 bool adjust)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012366{
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012367 bool ret = true;
12368
12369#define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
12370 do { \
12371 if (!adjust) \
12372 DRM_ERROR(fmt, ##__VA_ARGS__); \
12373 else \
12374 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
12375 } while (0)
12376
Daniel Vetter66e985c2013-06-05 13:34:20 +020012377#define PIPE_CONF_CHECK_X(name) \
12378 if (current_config->name != pipe_config->name) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012379 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Daniel Vetter66e985c2013-06-05 13:34:20 +020012380 "(expected 0x%08x, found 0x%08x)\n", \
12381 current_config->name, \
12382 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012383 ret = false; \
Daniel Vetter66e985c2013-06-05 13:34:20 +020012384 }
12385
Daniel Vetter08a24032013-04-19 11:25:34 +020012386#define PIPE_CONF_CHECK_I(name) \
12387 if (current_config->name != pipe_config->name) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012388 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Daniel Vetter08a24032013-04-19 11:25:34 +020012389 "(expected %i, found %i)\n", \
12390 current_config->name, \
12391 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012392 ret = false; \
12393 }
12394
12395#define PIPE_CONF_CHECK_M_N(name) \
12396 if (!intel_compare_link_m_n(&current_config->name, \
12397 &pipe_config->name,\
12398 adjust)) { \
12399 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12400 "(expected tu %i gmch %i/%i link %i/%i, " \
12401 "found tu %i, gmch %i/%i link %i/%i)\n", \
12402 current_config->name.tu, \
12403 current_config->name.gmch_m, \
12404 current_config->name.gmch_n, \
12405 current_config->name.link_m, \
12406 current_config->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; \
12413 }
12414
12415#define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
12416 if (!intel_compare_link_m_n(&current_config->name, \
12417 &pipe_config->name, adjust) && \
12418 !intel_compare_link_m_n(&current_config->alt_name, \
12419 &pipe_config->name, adjust)) { \
12420 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12421 "(expected tu %i gmch %i/%i link %i/%i, " \
12422 "or tu %i gmch %i/%i link %i/%i, " \
12423 "found tu %i, gmch %i/%i link %i/%i)\n", \
12424 current_config->name.tu, \
12425 current_config->name.gmch_m, \
12426 current_config->name.gmch_n, \
12427 current_config->name.link_m, \
12428 current_config->name.link_n, \
12429 current_config->alt_name.tu, \
12430 current_config->alt_name.gmch_m, \
12431 current_config->alt_name.gmch_n, \
12432 current_config->alt_name.link_m, \
12433 current_config->alt_name.link_n, \
12434 pipe_config->name.tu, \
12435 pipe_config->name.gmch_m, \
12436 pipe_config->name.gmch_n, \
12437 pipe_config->name.link_m, \
12438 pipe_config->name.link_n); \
12439 ret = false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010012440 }
12441
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012442/* This is required for BDW+ where there is only one set of registers for
12443 * switching between high and low RR.
12444 * This macro can be used whenever a comparison has to be made between one
12445 * hw state and multiple sw state variables.
12446 */
12447#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
12448 if ((current_config->name != pipe_config->name) && \
12449 (current_config->alt_name != pipe_config->name)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012450 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012451 "(expected %i or %i, found %i)\n", \
12452 current_config->name, \
12453 current_config->alt_name, \
12454 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012455 ret = false; \
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012456 }
12457
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012458#define PIPE_CONF_CHECK_FLAGS(name, mask) \
12459 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012460 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012461 "(expected %i, found %i)\n", \
12462 current_config->name & (mask), \
12463 pipe_config->name & (mask)); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012464 ret = false; \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012465 }
12466
Ville Syrjälä5e550652013-09-06 23:29:07 +030012467#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
12468 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012469 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Ville Syrjälä5e550652013-09-06 23:29:07 +030012470 "(expected %i, found %i)\n", \
12471 current_config->name, \
12472 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012473 ret = false; \
Ville Syrjälä5e550652013-09-06 23:29:07 +030012474 }
12475
Daniel Vetterbb760062013-06-06 14:55:52 +020012476#define PIPE_CONF_QUIRK(quirk) \
12477 ((current_config->quirks | pipe_config->quirks) & (quirk))
12478
Daniel Vettereccb1402013-05-22 00:50:22 +020012479 PIPE_CONF_CHECK_I(cpu_transcoder);
12480
Daniel Vetter08a24032013-04-19 11:25:34 +020012481 PIPE_CONF_CHECK_I(has_pch_encoder);
12482 PIPE_CONF_CHECK_I(fdi_lanes);
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012483 PIPE_CONF_CHECK_M_N(fdi_m_n);
Daniel Vetter08a24032013-04-19 11:25:34 +020012484
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012485 PIPE_CONF_CHECK_I(has_dp_encoder);
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012486 PIPE_CONF_CHECK_I(lane_count);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012487
12488 if (INTEL_INFO(dev)->gen < 8) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012489 PIPE_CONF_CHECK_M_N(dp_m_n);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012490
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012491 PIPE_CONF_CHECK_I(has_drrs);
12492 if (current_config->has_drrs)
12493 PIPE_CONF_CHECK_M_N(dp_m2_n2);
12494 } else
12495 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012496
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012497 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
12498 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
12499 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
12500 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
12501 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
12502 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012503
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012504 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
12505 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
12506 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
12507 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
12508 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
12509 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012510
Daniel Vetterc93f54c2013-06-27 19:47:19 +020012511 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +020012512 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020012513 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
12514 IS_VALLEYVIEW(dev))
12515 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080012516 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020012517
Daniel Vetter9ed109a2014-04-24 23:54:52 +020012518 PIPE_CONF_CHECK_I(has_audio);
12519
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012520 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012521 DRM_MODE_FLAG_INTERLACE);
12522
Daniel Vetterbb760062013-06-06 14:55:52 +020012523 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012524 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012525 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012526 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012527 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012528 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012529 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012530 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012531 DRM_MODE_FLAG_NVSYNC);
12532 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070012533
Ville Syrjälä333b8ca2015-09-03 21:50:16 +030012534 PIPE_CONF_CHECK_X(gmch_pfit.control);
Daniel Vettere2ff2d42015-07-15 14:15:50 +020012535 /* pfit ratios are autocomputed by the hw on gen4+ */
12536 if (INTEL_INFO(dev)->gen < 4)
12537 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
Ville Syrjälä333b8ca2015-09-03 21:50:16 +030012538 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
Daniel Vetter99535992014-04-13 12:00:33 +020012539
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020012540 if (!adjust) {
12541 PIPE_CONF_CHECK_I(pipe_src_w);
12542 PIPE_CONF_CHECK_I(pipe_src_h);
12543
12544 PIPE_CONF_CHECK_I(pch_pfit.enabled);
12545 if (current_config->pch_pfit.enabled) {
12546 PIPE_CONF_CHECK_X(pch_pfit.pos);
12547 PIPE_CONF_CHECK_X(pch_pfit.size);
12548 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020012549
Maarten Lankhorst7aefe2b2015-09-14 11:30:10 +020012550 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
12551 }
Chandra Kondurua1b22782015-04-07 15:28:45 -070012552
Jesse Barnese59150d2014-01-07 13:30:45 -080012553 /* BDW+ don't expose a synchronous way to read the state */
12554 if (IS_HASWELL(dev))
12555 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030012556
Ville Syrjälä282740f2013-09-04 18:30:03 +030012557 PIPE_CONF_CHECK_I(double_wide);
12558
Daniel Vetter26804af2014-06-25 22:01:55 +030012559 PIPE_CONF_CHECK_X(ddi_pll_sel);
12560
Daniel Vetterc0d43d62013-06-07 23:11:08 +020012561 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012562 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020012563 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012564 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
12565 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030012566 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000012567 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
12568 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
12569 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020012570
Ville Syrjälä42571ae2013-09-06 23:29:00 +030012571 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
12572 PIPE_CONF_CHECK_I(pipe_bpp);
12573
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012574 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080012575 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030012576
Daniel Vetter66e985c2013-06-05 13:34:20 +020012577#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020012578#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012579#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012580#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030012581#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020012582#undef PIPE_CONF_QUIRK
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012583#undef INTEL_ERR_OR_DBG_KMS
Daniel Vetter627eb5a2013-04-29 19:33:42 +020012584
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012585 return ret;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012586}
12587
Damien Lespiau08db6652014-11-04 17:06:52 +000012588static void check_wm_state(struct drm_device *dev)
12589{
12590 struct drm_i915_private *dev_priv = dev->dev_private;
12591 struct skl_ddb_allocation hw_ddb, *sw_ddb;
12592 struct intel_crtc *intel_crtc;
12593 int plane;
12594
12595 if (INTEL_INFO(dev)->gen < 9)
12596 return;
12597
12598 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
12599 sw_ddb = &dev_priv->wm.skl_hw.ddb;
12600
12601 for_each_intel_crtc(dev, intel_crtc) {
12602 struct skl_ddb_entry *hw_entry, *sw_entry;
12603 const enum pipe pipe = intel_crtc->pipe;
12604
12605 if (!intel_crtc->active)
12606 continue;
12607
12608 /* planes */
Damien Lespiaudd740782015-02-28 14:54:08 +000012609 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau08db6652014-11-04 17:06:52 +000012610 hw_entry = &hw_ddb.plane[pipe][plane];
12611 sw_entry = &sw_ddb->plane[pipe][plane];
12612
12613 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12614 continue;
12615
12616 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
12617 "(expected (%u,%u), found (%u,%u))\n",
12618 pipe_name(pipe), plane + 1,
12619 sw_entry->start, sw_entry->end,
12620 hw_entry->start, hw_entry->end);
12621 }
12622
12623 /* cursor */
Matt Roper4969d332015-09-24 15:53:10 -070012624 hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR];
12625 sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR];
Damien Lespiau08db6652014-11-04 17:06:52 +000012626
12627 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12628 continue;
12629
12630 DRM_ERROR("mismatch in DDB state pipe %c cursor "
12631 "(expected (%u,%u), found (%u,%u))\n",
12632 pipe_name(pipe),
12633 sw_entry->start, sw_entry->end,
12634 hw_entry->start, hw_entry->end);
12635 }
12636}
12637
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012638static void
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012639check_connector_state(struct drm_device *dev,
12640 struct drm_atomic_state *old_state)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012641{
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012642 struct drm_connector_state *old_conn_state;
12643 struct drm_connector *connector;
12644 int i;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012645
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012646 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
12647 struct drm_encoder *encoder = connector->encoder;
12648 struct drm_connector_state *state = connector->state;
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012649
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012650 /* This also checks the encoder/connector hw state with the
12651 * ->get_hw_state callbacks. */
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012652 intel_connector_check_state(to_intel_connector(connector));
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012653
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012654 I915_STATE_WARN(state->best_encoder != encoder,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012655 "connector's atomic encoder doesn't match legacy encoder\n");
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012656 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012657}
12658
12659static void
12660check_encoder_state(struct drm_device *dev)
12661{
12662 struct intel_encoder *encoder;
12663 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012664
Damien Lespiaub2784e12014-08-05 11:29:37 +010012665 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012666 bool enabled = false;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012667 enum pipe pipe;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012668
12669 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
12670 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030012671 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012672
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012673 for_each_intel_connector(dev, connector) {
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012674 if (connector->base.state->best_encoder != &encoder->base)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012675 continue;
12676 enabled = true;
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012677
12678 I915_STATE_WARN(connector->base.state->crtc !=
12679 encoder->base.crtc,
12680 "connector's crtc doesn't match encoder crtc\n");
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012681 }
Dave Airlie0e32b392014-05-02 14:02:48 +100012682
Rob Clarke2c719b2014-12-15 13:56:32 -050012683 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012684 "encoder's enabled state mismatch "
12685 "(expected %i, found %i)\n",
12686 !!encoder->base.crtc, enabled);
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012687
12688 if (!encoder->base.crtc) {
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012689 bool active;
12690
12691 active = encoder->get_hw_state(encoder, &pipe);
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012692 I915_STATE_WARN(active,
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012693 "encoder detached but still enabled on pipe %c.\n",
12694 pipe_name(pipe));
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012695 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012696 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012697}
12698
12699static void
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012700check_crtc_state(struct drm_device *dev, struct drm_atomic_state *old_state)
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012701{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012702 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012703 struct intel_encoder *encoder;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012704 struct drm_crtc_state *old_crtc_state;
12705 struct drm_crtc *crtc;
12706 int i;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012707
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012708 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
12709 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12710 struct intel_crtc_state *pipe_config, *sw_config;
Maarten Lankhorst7b89b8d2015-08-05 12:37:03 +020012711 bool active;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012712
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020012713 if (!needs_modeset(crtc->state) &&
12714 !to_intel_crtc_state(crtc->state)->update_pipe)
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012715 continue;
12716
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012717 __drm_atomic_helper_crtc_destroy_state(crtc, old_crtc_state);
12718 pipe_config = to_intel_crtc_state(old_crtc_state);
12719 memset(pipe_config, 0, sizeof(*pipe_config));
12720 pipe_config->base.crtc = crtc;
12721 pipe_config->base.state = old_state;
12722
12723 DRM_DEBUG_KMS("[CRTC:%d]\n",
12724 crtc->base.id);
12725
12726 active = dev_priv->display.get_pipe_config(intel_crtc,
12727 pipe_config);
12728
12729 /* hw state is inconsistent with the pipe quirk */
12730 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
12731 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
12732 active = crtc->state->active;
12733
12734 I915_STATE_WARN(crtc->state->active != active,
12735 "crtc active state doesn't match with hw state "
12736 "(expected %i, found %i)\n", crtc->state->active, active);
12737
12738 I915_STATE_WARN(intel_crtc->active != crtc->state->active,
12739 "transitional active state does not match atomic hw state "
12740 "(expected %i, found %i)\n", crtc->state->active, intel_crtc->active);
12741
12742 for_each_encoder_on_crtc(dev, crtc, encoder) {
12743 enum pipe pipe;
12744
12745 active = encoder->get_hw_state(encoder, &pipe);
12746 I915_STATE_WARN(active != crtc->state->active,
12747 "[ENCODER:%i] active %i with crtc active %i\n",
12748 encoder->base.base.id, active, crtc->state->active);
12749
12750 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
12751 "Encoder connected to wrong pipe %c\n",
12752 pipe_name(pipe));
12753
12754 if (active)
12755 encoder->get_config(encoder, pipe_config);
12756 }
12757
12758 if (!crtc->state->active)
12759 continue;
12760
12761 sw_config = to_intel_crtc_state(crtc->state);
12762 if (!intel_pipe_config_compare(dev, sw_config,
12763 pipe_config, false)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050012764 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012765 intel_dump_pipe_config(intel_crtc, pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020012766 "[hw state]");
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012767 intel_dump_pipe_config(intel_crtc, sw_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020012768 "[sw state]");
12769 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012770 }
12771}
12772
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012773static void
12774check_shared_dpll_state(struct drm_device *dev)
12775{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012776 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012777 struct intel_crtc *crtc;
12778 struct intel_dpll_hw_state dpll_hw_state;
12779 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020012780
12781 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12782 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12783 int enabled_crtcs = 0, active_crtcs = 0;
12784 bool active;
12785
12786 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
12787
12788 DRM_DEBUG_KMS("%s\n", pll->name);
12789
12790 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
12791
Rob Clarke2c719b2014-12-15 13:56:32 -050012792 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020012793 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012794 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050012795 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020012796 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050012797 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020012798 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050012799 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020012800 "pll on state mismatch (expected %i, found %i)\n",
12801 pll->on, active);
12802
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012803 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080012804 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
Daniel Vetter53589012013-06-05 13:34:16 +020012805 enabled_crtcs++;
12806 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
12807 active_crtcs++;
12808 }
Rob Clarke2c719b2014-12-15 13:56:32 -050012809 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020012810 "pll active crtcs mismatch (expected %i, found %i)\n",
12811 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050012812 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020012813 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020012814 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012815
Rob Clarke2c719b2014-12-15 13:56:32 -050012816 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020012817 sizeof(dpll_hw_state)),
12818 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020012819 }
Daniel Vettere2e1ed42012-07-08 21:14:38 +020012820}
12821
Maarten Lankhorstee165b12015-08-05 12:37:00 +020012822static void
12823intel_modeset_check_state(struct drm_device *dev,
12824 struct drm_atomic_state *old_state)
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012825{
Damien Lespiau08db6652014-11-04 17:06:52 +000012826 check_wm_state(dev);
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012827 check_connector_state(dev, old_state);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012828 check_encoder_state(dev);
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012829 check_crtc_state(dev, old_state);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012830 check_shared_dpll_state(dev);
12831}
12832
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012833void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030012834 int dotclock)
12835{
12836 /*
12837 * FDI already provided one idea for the dotclock.
12838 * Yell if the encoder disagrees.
12839 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012840 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030012841 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012842 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030012843}
12844
Ville Syrjälä80715b22014-05-15 20:23:23 +030012845static void update_scanline_offset(struct intel_crtc *crtc)
12846{
12847 struct drm_device *dev = crtc->base.dev;
12848
12849 /*
12850 * The scanline counter increments at the leading edge of hsync.
12851 *
12852 * On most platforms it starts counting from vtotal-1 on the
12853 * first active line. That means the scanline counter value is
12854 * always one less than what we would expect. Ie. just after
12855 * start of vblank, which also occurs at start of hsync (on the
12856 * last active line), the scanline counter will read vblank_start-1.
12857 *
12858 * On gen2 the scanline counter starts counting from 1 instead
12859 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
12860 * to keep the value positive), instead of adding one.
12861 *
12862 * On HSW+ the behaviour of the scanline counter depends on the output
12863 * type. For DP ports it behaves like most other platforms, but on HDMI
12864 * there's an extra 1 line difference. So we need to add two instead of
12865 * one to the value.
12866 */
12867 if (IS_GEN2(dev)) {
Ville Syrjälä124abe02015-09-08 13:40:45 +030012868 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030012869 int vtotal;
12870
Ville Syrjälä124abe02015-09-08 13:40:45 +030012871 vtotal = adjusted_mode->crtc_vtotal;
12872 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
Ville Syrjälä80715b22014-05-15 20:23:23 +030012873 vtotal /= 2;
12874
12875 crtc->scanline_offset = vtotal - 1;
12876 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030012877 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030012878 crtc->scanline_offset = 2;
12879 } else
12880 crtc->scanline_offset = 1;
12881}
12882
Maarten Lankhorstad421372015-06-15 12:33:42 +020012883static void intel_modeset_clear_plls(struct drm_atomic_state *state)
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012884{
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012885 struct drm_device *dev = state->dev;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012886 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstad421372015-06-15 12:33:42 +020012887 struct intel_shared_dpll_config *shared_dpll = NULL;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012888 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012889 struct intel_crtc_state *intel_crtc_state;
12890 struct drm_crtc *crtc;
12891 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012892 int i;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012893
12894 if (!dev_priv->display.crtc_compute_clock)
Maarten Lankhorstad421372015-06-15 12:33:42 +020012895 return;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012896
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012897 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstad421372015-06-15 12:33:42 +020012898 int dpll;
12899
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012900 intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012901 intel_crtc_state = to_intel_crtc_state(crtc_state);
Maarten Lankhorstad421372015-06-15 12:33:42 +020012902 dpll = intel_crtc_state->shared_dpll;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012903
Maarten Lankhorstad421372015-06-15 12:33:42 +020012904 if (!needs_modeset(crtc_state) || dpll == DPLL_ID_PRIVATE)
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030012905 continue;
12906
Maarten Lankhorstad421372015-06-15 12:33:42 +020012907 intel_crtc_state->shared_dpll = DPLL_ID_PRIVATE;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012908
Maarten Lankhorstad421372015-06-15 12:33:42 +020012909 if (!shared_dpll)
12910 shared_dpll = intel_atomic_get_shared_dpll_state(state);
12911
12912 shared_dpll[dpll].crtc_mask &= ~(1 << intel_crtc->pipe);
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012913 }
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020012914}
12915
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020012916/*
12917 * This implements the workaround described in the "notes" section of the mode
12918 * set sequence documentation. When going from no pipes or single pipe to
12919 * multiple pipes, and planes are enabled after the pipe, we need to wait at
12920 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
12921 */
12922static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
12923{
12924 struct drm_crtc_state *crtc_state;
12925 struct intel_crtc *intel_crtc;
12926 struct drm_crtc *crtc;
12927 struct intel_crtc_state *first_crtc_state = NULL;
12928 struct intel_crtc_state *other_crtc_state = NULL;
12929 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
12930 int i;
12931
12932 /* look at all crtc's that are going to be enabled in during modeset */
12933 for_each_crtc_in_state(state, crtc, crtc_state, i) {
12934 intel_crtc = to_intel_crtc(crtc);
12935
12936 if (!crtc_state->active || !needs_modeset(crtc_state))
12937 continue;
12938
12939 if (first_crtc_state) {
12940 other_crtc_state = to_intel_crtc_state(crtc_state);
12941 break;
12942 } else {
12943 first_crtc_state = to_intel_crtc_state(crtc_state);
12944 first_pipe = intel_crtc->pipe;
12945 }
12946 }
12947
12948 /* No workaround needed? */
12949 if (!first_crtc_state)
12950 return 0;
12951
12952 /* w/a possibly needed, check how many crtc's are already enabled. */
12953 for_each_intel_crtc(state->dev, intel_crtc) {
12954 struct intel_crtc_state *pipe_config;
12955
12956 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
12957 if (IS_ERR(pipe_config))
12958 return PTR_ERR(pipe_config);
12959
12960 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
12961
12962 if (!pipe_config->base.active ||
12963 needs_modeset(&pipe_config->base))
12964 continue;
12965
12966 /* 2 or more enabled crtcs means no need for w/a */
12967 if (enabled_pipe != INVALID_PIPE)
12968 return 0;
12969
12970 enabled_pipe = intel_crtc->pipe;
12971 }
12972
12973 if (enabled_pipe != INVALID_PIPE)
12974 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
12975 else if (other_crtc_state)
12976 other_crtc_state->hsw_workaround_pipe = first_pipe;
12977
12978 return 0;
12979}
12980
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020012981static int intel_modeset_all_pipes(struct drm_atomic_state *state)
12982{
12983 struct drm_crtc *crtc;
12984 struct drm_crtc_state *crtc_state;
12985 int ret = 0;
12986
12987 /* add all active pipes to the state */
12988 for_each_crtc(state->dev, crtc) {
12989 crtc_state = drm_atomic_get_crtc_state(state, crtc);
12990 if (IS_ERR(crtc_state))
12991 return PTR_ERR(crtc_state);
12992
12993 if (!crtc_state->active || needs_modeset(crtc_state))
12994 continue;
12995
12996 crtc_state->mode_changed = true;
12997
12998 ret = drm_atomic_add_affected_connectors(state, crtc);
12999 if (ret)
13000 break;
13001
13002 ret = drm_atomic_add_affected_planes(state, crtc);
13003 if (ret)
13004 break;
13005 }
13006
13007 return ret;
13008}
13009
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013010static int intel_modeset_checks(struct drm_atomic_state *state)
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013011{
13012 struct drm_device *dev = state->dev;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013013 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013014 int ret;
13015
Maarten Lankhorstb3592832015-06-15 12:33:38 +020013016 if (!check_digital_port_conflicts(state)) {
13017 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
13018 return -EINVAL;
13019 }
13020
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013021 /*
13022 * See if the config requires any additional preparation, e.g.
13023 * to adjust global state with pipes off. We need to do this
13024 * here so we can get the modeset_pipe updated config for the new
13025 * mode set on this crtc. For other crtcs we need to use the
13026 * adjusted_mode bits in the crtc directly.
13027 */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013028 if (dev_priv->display.modeset_calc_cdclk) {
13029 unsigned int cdclk;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +030013030
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013031 ret = dev_priv->display.modeset_calc_cdclk(state);
13032
13033 cdclk = to_intel_atomic_state(state)->cdclk;
13034 if (!ret && cdclk != dev_priv->cdclk_freq)
13035 ret = intel_modeset_all_pipes(state);
13036
13037 if (ret < 0)
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013038 return ret;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013039 } else
13040 to_intel_atomic_state(state)->cdclk = dev_priv->cdclk_freq;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013041
Maarten Lankhorstad421372015-06-15 12:33:42 +020013042 intel_modeset_clear_plls(state);
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013043
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020013044 if (IS_HASWELL(dev))
Maarten Lankhorstad421372015-06-15 12:33:42 +020013045 return haswell_mode_set_planes_workaround(state);
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020013046
Maarten Lankhorstad421372015-06-15 12:33:42 +020013047 return 0;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013048}
13049
Matt Roper76305b12015-09-24 15:53:18 -070013050/*
13051 * Handle calculation of various watermark data at the end of the atomic check
13052 * phase. The code here should be run after the per-crtc and per-plane 'check'
13053 * handlers to ensure that all derived state has been updated.
13054 */
13055static void calc_watermark_data(struct drm_atomic_state *state)
13056{
13057 struct drm_device *dev = state->dev;
13058 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
13059 struct drm_crtc *crtc;
13060 struct drm_crtc_state *cstate;
13061 struct drm_plane *plane;
13062 struct drm_plane_state *pstate;
13063
13064 /*
13065 * Calculate watermark configuration details now that derived
13066 * plane/crtc state is all properly updated.
13067 */
13068 drm_for_each_crtc(crtc, dev) {
13069 cstate = drm_atomic_get_existing_crtc_state(state, crtc) ?:
13070 crtc->state;
13071
13072 if (cstate->active)
13073 intel_state->wm_config.num_pipes_active++;
13074 }
13075 drm_for_each_legacy_plane(plane, dev) {
13076 pstate = drm_atomic_get_existing_plane_state(state, plane) ?:
13077 plane->state;
13078
13079 if (!to_intel_plane_state(pstate)->visible)
13080 continue;
13081
13082 intel_state->wm_config.sprites_enabled = true;
13083 if (pstate->crtc_w != pstate->src_w >> 16 ||
13084 pstate->crtc_h != pstate->src_h >> 16)
13085 intel_state->wm_config.sprites_scaled = true;
13086 }
13087}
13088
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013089/**
13090 * intel_atomic_check - validate state object
13091 * @dev: drm device
13092 * @state: state to validate
13093 */
13094static int intel_atomic_check(struct drm_device *dev,
13095 struct drm_atomic_state *state)
Daniel Vettera6778b32012-07-02 09:56:42 +020013096{
Matt Roper76305b12015-09-24 15:53:18 -070013097 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013098 struct drm_crtc *crtc;
13099 struct drm_crtc_state *crtc_state;
13100 int ret, i;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013101 bool any_ms = false;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013102
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013103 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vettera6778b32012-07-02 09:56:42 +020013104 if (ret)
13105 return ret;
13106
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013107 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013108 struct intel_crtc_state *pipe_config =
13109 to_intel_crtc_state(crtc_state);
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013110
13111 /* Catch I915_MODE_FLAG_INHERITED */
13112 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
13113 crtc_state->mode_changed = true;
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013114
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013115 if (!crtc_state->enable) {
13116 if (needs_modeset(crtc_state))
13117 any_ms = true;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013118 continue;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013119 }
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013120
Daniel Vetter26495482015-07-15 14:15:52 +020013121 if (!needs_modeset(crtc_state))
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013122 continue;
13123
Daniel Vetter26495482015-07-15 14:15:52 +020013124 /* FIXME: For only active_changed we shouldn't need to do any
13125 * state recomputation at all. */
13126
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013127 ret = drm_atomic_add_affected_connectors(state, crtc);
13128 if (ret)
13129 return ret;
Maarten Lankhorstb3592832015-06-15 12:33:38 +020013130
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013131 ret = intel_modeset_pipe_config(crtc, pipe_config);
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013132 if (ret)
13133 return ret;
13134
Maarten Lankhorst6764e9f2015-08-27 15:44:06 +020013135 if (intel_pipe_config_compare(state->dev,
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013136 to_intel_crtc_state(crtc->state),
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013137 pipe_config, true)) {
Daniel Vetter26495482015-07-15 14:15:52 +020013138 crtc_state->mode_changed = false;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013139 to_intel_crtc_state(crtc_state)->update_pipe = true;
Daniel Vetter26495482015-07-15 14:15:52 +020013140 }
13141
13142 if (needs_modeset(crtc_state)) {
13143 any_ms = true;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013144
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013145 ret = drm_atomic_add_affected_planes(state, crtc);
13146 if (ret)
13147 return ret;
13148 }
13149
Daniel Vetter26495482015-07-15 14:15:52 +020013150 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
13151 needs_modeset(crtc_state) ?
13152 "[modeset]" : "[fastset]");
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013153 }
13154
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013155 if (any_ms) {
13156 ret = intel_modeset_checks(state);
13157
13158 if (ret)
13159 return ret;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013160 } else
Matt Roper76305b12015-09-24 15:53:18 -070013161 intel_state->cdclk = to_i915(state->dev)->cdclk_freq;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013162
Matt Roper76305b12015-09-24 15:53:18 -070013163 ret = drm_atomic_helper_check_planes(state->dev, state);
13164 if (ret)
13165 return ret;
13166
13167 calc_watermark_data(state);
13168
13169 return 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020013170}
13171
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013172/**
13173 * intel_atomic_commit - commit validated state object
13174 * @dev: DRM device
13175 * @state: the top-level driver state object
13176 * @async: asynchronous commit
13177 *
13178 * This function commits a top-level state object that has been validated
13179 * with drm_atomic_helper_check().
13180 *
13181 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
13182 * we can only handle plane-related operations and do not yet support
13183 * asynchronous commit.
13184 *
13185 * RETURNS
13186 * Zero for success or -errno.
13187 */
13188static int intel_atomic_commit(struct drm_device *dev,
13189 struct drm_atomic_state *state,
13190 bool async)
Daniel Vettera6778b32012-07-02 09:56:42 +020013191{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013192 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013193 struct drm_crtc *crtc;
13194 struct drm_crtc_state *crtc_state;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013195 int ret = 0;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013196 int i;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013197 bool any_ms = false;
Daniel Vettera6778b32012-07-02 09:56:42 +020013198
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013199 if (async) {
13200 DRM_DEBUG_KMS("i915 does not yet support async commit\n");
13201 return -EINVAL;
13202 }
13203
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030013204 ret = drm_atomic_helper_prepare_planes(dev, state);
13205 if (ret)
13206 return ret;
13207
Maarten Lankhorst1c5e19f2015-06-01 12:50:06 +020013208 drm_atomic_helper_swap_state(dev, state);
Matt Roper76305b12015-09-24 15:53:18 -070013209 dev_priv->wm.config = to_intel_atomic_state(state)->wm_config;
Maarten Lankhorst1c5e19f2015-06-01 12:50:06 +020013210
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013211 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013212 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13213
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013214 if (!needs_modeset(crtc->state))
13215 continue;
13216
13217 any_ms = true;
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013218 intel_pre_plane_update(intel_crtc);
Daniel Vetter460da9162013-03-27 00:44:51 +010013219
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013220 if (crtc_state->active) {
13221 intel_crtc_disable_planes(crtc, crtc_state->plane_mask);
13222 dev_priv->display.crtc_disable(crtc);
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +020013223 intel_crtc->active = false;
13224 intel_disable_shared_dpll(intel_crtc);
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013225 }
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010013226 }
Daniel Vetter7758a112012-07-08 19:40:39 +020013227
Daniel Vetterea9d7582012-07-10 10:42:52 +020013228 /* Only after disabling all output pipelines that will be changed can we
13229 * update the the output configuration. */
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013230 intel_modeset_update_crtc_state(state);
Daniel Vetterea9d7582012-07-10 10:42:52 +020013231
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013232 if (any_ms) {
13233 intel_shared_dpll_commit(state);
13234
13235 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013236 modeset_update_crtc_power_domains(state);
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013237 }
Daniel Vetter47fab732012-10-26 10:58:18 +020013238
Daniel Vettera6778b32012-07-02 09:56:42 +020013239 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013240 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013241 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13242 bool modeset = needs_modeset(crtc->state);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013243 bool update_pipe = !modeset &&
13244 to_intel_crtc_state(crtc->state)->update_pipe;
13245 unsigned long put_domains = 0;
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013246
13247 if (modeset && crtc->state->active) {
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013248 update_scanline_offset(to_intel_crtc(crtc));
13249 dev_priv->display.crtc_enable(crtc);
13250 }
13251
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013252 if (update_pipe) {
13253 put_domains = modeset_get_crtc_power_domains(crtc);
13254
13255 /* make sure intel_modeset_check_state runs */
13256 any_ms = true;
13257 }
13258
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013259 if (!modeset)
13260 intel_pre_plane_update(intel_crtc);
13261
Maarten Lankhorst5ac1c4b2015-06-01 12:50:01 +020013262 drm_atomic_helper_commit_planes_on_crtc(crtc_state);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013263
13264 if (put_domains)
13265 modeset_put_power_domains(dev_priv, put_domains);
13266
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013267 intel_post_plane_update(intel_crtc);
Ville Syrjälä80715b22014-05-15 20:23:23 +030013268 }
Daniel Vettera6778b32012-07-02 09:56:42 +020013269
Daniel Vettera6778b32012-07-02 09:56:42 +020013270 /* FIXME: add subpixel order */
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013271
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013272 drm_atomic_helper_wait_for_vblanks(dev, state);
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030013273 drm_atomic_helper_cleanup_planes(dev, state);
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013274
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013275 if (any_ms)
Maarten Lankhorstee165b12015-08-05 12:37:00 +020013276 intel_modeset_check_state(dev, state);
13277
13278 drm_atomic_state_free(state);
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013279
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013280 return 0;
Daniel Vetterf30da182013-04-11 20:22:50 +020013281}
13282
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013283void intel_crtc_restore_mode(struct drm_crtc *crtc)
13284{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013285 struct drm_device *dev = crtc->dev;
13286 struct drm_atomic_state *state;
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013287 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013288 int ret;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013289
13290 state = drm_atomic_state_alloc(dev);
13291 if (!state) {
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013292 DRM_DEBUG_KMS("[CRTC:%d] crtc restore failed, out of memory",
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013293 crtc->base.id);
13294 return;
13295 }
13296
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013297 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013298
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013299retry:
13300 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13301 ret = PTR_ERR_OR_ZERO(crtc_state);
13302 if (!ret) {
13303 if (!crtc_state->active)
13304 goto out;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013305
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013306 crtc_state->mode_changed = true;
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013307 ret = drm_atomic_commit(state);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013308 }
13309
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013310 if (ret == -EDEADLK) {
13311 drm_atomic_state_clear(state);
13312 drm_modeset_backoff(state->acquire_ctx);
13313 goto retry;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030013314 }
13315
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013316 if (ret)
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013317out:
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013318 drm_atomic_state_free(state);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013319}
13320
Daniel Vetter25c5b262012-07-08 22:08:04 +020013321#undef for_each_intel_crtc_masked
13322
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013323static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013324 .gamma_set = intel_crtc_gamma_set,
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013325 .set_config = drm_atomic_helper_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013326 .destroy = intel_crtc_destroy,
13327 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080013328 .atomic_duplicate_state = intel_crtc_duplicate_state,
13329 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013330};
13331
Daniel Vetter53589012013-06-05 13:34:16 +020013332static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
13333 struct intel_shared_dpll *pll,
13334 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013335{
Daniel Vetter53589012013-06-05 13:34:16 +020013336 uint32_t val;
13337
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013338 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013339 return false;
13340
Daniel Vetter53589012013-06-05 13:34:16 +020013341 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020013342 hw_state->dpll = val;
13343 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
13344 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020013345
13346 return val & DPLL_VCO_ENABLE;
13347}
13348
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013349static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
13350 struct intel_shared_dpll *pll)
13351{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013352 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
13353 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013354}
13355
Daniel Vettere7b903d2013-06-05 13:34:14 +020013356static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
13357 struct intel_shared_dpll *pll)
13358{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013359 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020013360 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020013361
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013362 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013363
13364 /* Wait for the clocks to stabilize. */
13365 POSTING_READ(PCH_DPLL(pll->id));
13366 udelay(150);
13367
13368 /* The pixel multiplier can only be updated once the
13369 * DPLL is enabled and the clocks are stable.
13370 *
13371 * So write it again.
13372 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013373 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013374 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013375 udelay(200);
13376}
13377
13378static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
13379 struct intel_shared_dpll *pll)
13380{
13381 struct drm_device *dev = dev_priv->dev;
13382 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013383
13384 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013385 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020013386 if (intel_crtc_to_shared_dpll(crtc) == pll)
13387 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
13388 }
13389
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013390 I915_WRITE(PCH_DPLL(pll->id), 0);
13391 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013392 udelay(200);
13393}
13394
Daniel Vetter46edb022013-06-05 13:34:12 +020013395static char *ibx_pch_dpll_names[] = {
13396 "PCH DPLL A",
13397 "PCH DPLL B",
13398};
13399
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013400static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013401{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013402 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013403 int i;
13404
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013405 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013406
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013407 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020013408 dev_priv->shared_dplls[i].id = i;
13409 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013410 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013411 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
13412 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020013413 dev_priv->shared_dplls[i].get_hw_state =
13414 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013415 }
13416}
13417
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013418static void intel_shared_dpll_init(struct drm_device *dev)
13419{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013420 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013421
Daniel Vetter9cd86932014-06-25 22:01:57 +030013422 if (HAS_DDI(dev))
13423 intel_ddi_pll_init(dev);
13424 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013425 ibx_pch_dpll_init(dev);
13426 else
13427 dev_priv->num_shared_dpll = 0;
13428
13429 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013430}
13431
Matt Roper6beb8c232014-12-01 15:40:14 -080013432/**
13433 * intel_prepare_plane_fb - Prepare fb for usage on plane
13434 * @plane: drm plane to prepare for
13435 * @fb: framebuffer to prepare for presentation
13436 *
13437 * Prepares a framebuffer for usage on a display plane. Generally this
13438 * involves pinning the underlying object and updating the frontbuffer tracking
13439 * bits. Some older platforms need special physical address handling for
13440 * cursor planes.
13441 *
13442 * Returns 0 on success, negative error code on failure.
13443 */
13444int
13445intel_prepare_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013446 const struct drm_plane_state *new_state)
Matt Roper465c1202014-05-29 08:06:54 -070013447{
13448 struct drm_device *dev = plane->dev;
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013449 struct drm_framebuffer *fb = new_state->fb;
Matt Roper6beb8c232014-12-01 15:40:14 -080013450 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper6beb8c232014-12-01 15:40:14 -080013451 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
13452 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
Matt Roper6beb8c232014-12-01 15:40:14 -080013453 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070013454
Matt Roperea2c67b2014-12-23 10:41:52 -080013455 if (!obj)
Matt Roper465c1202014-05-29 08:06:54 -070013456 return 0;
13457
Matt Roper4c345742014-07-09 16:22:10 -070013458 mutex_lock(&dev->struct_mutex);
Matt Roper465c1202014-05-29 08:06:54 -070013459
Matt Roper6beb8c232014-12-01 15:40:14 -080013460 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
13461 INTEL_INFO(dev)->cursor_needs_physical) {
13462 int align = IS_I830(dev) ? 16 * 1024 : 256;
13463 ret = i915_gem_object_attach_phys(obj, align);
13464 if (ret)
13465 DRM_DEBUG_KMS("failed to attach phys object\n");
13466 } else {
John Harrison91af1272015-06-18 13:14:56 +010013467 ret = intel_pin_and_fence_fb_obj(plane, fb, new_state, NULL, NULL);
Matt Roper6beb8c232014-12-01 15:40:14 -080013468 }
13469
13470 if (ret == 0)
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030013471 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
Matt Roper6beb8c232014-12-01 15:40:14 -080013472
13473 mutex_unlock(&dev->struct_mutex);
13474
13475 return ret;
13476}
13477
Matt Roper38f3ce32014-12-02 07:45:25 -080013478/**
13479 * intel_cleanup_plane_fb - Cleans up an fb after plane use
13480 * @plane: drm plane to clean up for
13481 * @fb: old framebuffer that was on plane
13482 *
13483 * Cleans up a framebuffer that has just been removed from a plane.
13484 */
13485void
13486intel_cleanup_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013487 const struct drm_plane_state *old_state)
Matt Roper38f3ce32014-12-02 07:45:25 -080013488{
13489 struct drm_device *dev = plane->dev;
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013490 struct drm_i915_gem_object *obj = intel_fb_obj(old_state->fb);
Matt Roper38f3ce32014-12-02 07:45:25 -080013491
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013492 if (!obj)
Matt Roper38f3ce32014-12-02 07:45:25 -080013493 return;
13494
13495 if (plane->type != DRM_PLANE_TYPE_CURSOR ||
13496 !INTEL_INFO(dev)->cursor_needs_physical) {
13497 mutex_lock(&dev->struct_mutex);
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013498 intel_unpin_fb_obj(old_state->fb, old_state);
Matt Roper38f3ce32014-12-02 07:45:25 -080013499 mutex_unlock(&dev->struct_mutex);
13500 }
Matt Roper465c1202014-05-29 08:06:54 -070013501}
13502
Chandra Konduru6156a452015-04-27 13:48:39 -070013503int
13504skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
13505{
13506 int max_scale;
13507 struct drm_device *dev;
13508 struct drm_i915_private *dev_priv;
13509 int crtc_clock, cdclk;
13510
13511 if (!intel_crtc || !crtc_state)
13512 return DRM_PLANE_HELPER_NO_SCALING;
13513
13514 dev = intel_crtc->base.dev;
13515 dev_priv = dev->dev_private;
13516 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013517 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
Chandra Konduru6156a452015-04-27 13:48:39 -070013518
13519 if (!crtc_clock || !cdclk)
13520 return DRM_PLANE_HELPER_NO_SCALING;
13521
13522 /*
13523 * skl max scale is lower of:
13524 * close to 3 but not 3, -1 is for that purpose
13525 * or
13526 * cdclk/crtc_clock
13527 */
13528 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
13529
13530 return max_scale;
13531}
13532
Matt Roper465c1202014-05-29 08:06:54 -070013533static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013534intel_check_primary_plane(struct drm_plane *plane,
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013535 struct intel_crtc_state *crtc_state,
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013536 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070013537{
Matt Roper2b875c22014-12-01 15:40:13 -080013538 struct drm_crtc *crtc = state->base.crtc;
13539 struct drm_framebuffer *fb = state->base.fb;
Chandra Konduru6156a452015-04-27 13:48:39 -070013540 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013541 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
13542 bool can_position = false;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013543
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013544 /* use scaler when colorkey is not required */
13545 if (INTEL_INFO(plane->dev)->gen >= 9 &&
Maarten Lankhorst818ed962015-06-15 12:33:54 +020013546 state->ckey.flags == I915_SET_COLORKEY_NONE) {
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013547 min_scale = 1;
13548 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
Sonika Jindald8106362015-04-10 14:37:28 +053013549 can_position = true;
Chandra Konduru6156a452015-04-27 13:48:39 -070013550 }
Sonika Jindald8106362015-04-10 14:37:28 +053013551
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013552 return drm_plane_helper_check_update(plane, crtc, fb, &state->src,
13553 &state->dst, &state->clip,
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020013554 min_scale, max_scale,
13555 can_position, true,
13556 &state->visible);
Matt Roper465c1202014-05-29 08:06:54 -070013557}
13558
Gustavo Padovan14af2932014-10-24 14:51:31 +010013559static void
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013560intel_commit_primary_plane(struct drm_plane *plane,
13561 struct intel_plane_state *state)
13562{
Matt Roper2b875c22014-12-01 15:40:13 -080013563 struct drm_crtc *crtc = state->base.crtc;
13564 struct drm_framebuffer *fb = state->base.fb;
13565 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053013566 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperea2c67b2014-12-23 10:41:52 -080013567 struct intel_crtc *intel_crtc;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013568 struct drm_rect *src = &state->src;
Matt Ropercf4c7c12014-12-04 10:27:42 -080013569
Matt Roperea2c67b2014-12-23 10:41:52 -080013570 crtc = crtc ? crtc : plane->crtc;
13571 intel_crtc = to_intel_crtc(crtc);
13572
Matt Ropercf4c7c12014-12-04 10:27:42 -080013573 plane->fb = fb;
Matt Roper9dc806f2014-11-17 18:10:38 -080013574 crtc->x = src->x1 >> 16;
13575 crtc->y = src->y1 >> 16;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013576
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013577 if (!crtc->state->active)
Maarten Lankhorst302d19a2015-06-15 12:33:45 +020013578 return;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013579
Maarten Lankhorstd4b08632015-09-10 16:07:56 +020013580 dev_priv->display.update_primary_plane(crtc, fb,
13581 state->src.x1 >> 16,
13582 state->src.y1 >> 16);
Matt Roper32b7eee2014-12-24 07:59:06 -080013583}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013584
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013585static void
13586intel_disable_primary_plane(struct drm_plane *plane,
Maarten Lankhorst7fabf5e2015-06-15 12:33:47 +020013587 struct drm_crtc *crtc)
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013588{
13589 struct drm_device *dev = plane->dev;
13590 struct drm_i915_private *dev_priv = dev->dev_private;
13591
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013592 dev_priv->display.update_primary_plane(crtc, NULL, 0, 0);
13593}
13594
Maarten Lankhorst613d2b22015-07-21 13:28:58 +020013595static void intel_begin_crtc_commit(struct drm_crtc *crtc,
13596 struct drm_crtc_state *old_crtc_state)
Matt Roper32b7eee2014-12-24 07:59:06 -080013597{
13598 struct drm_device *dev = crtc->dev;
Matt Roper32b7eee2014-12-24 07:59:06 -080013599 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013600 struct intel_crtc_state *old_intel_state =
13601 to_intel_crtc_state(old_crtc_state);
13602 bool modeset = needs_modeset(crtc->state);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013603
Ville Syrjäläf015c552015-06-24 22:00:02 +030013604 if (intel_crtc->atomic.update_wm_pre)
Matt Roper32b7eee2014-12-24 07:59:06 -080013605 intel_update_watermarks(crtc);
13606
Matt Roperc34c9ee2014-12-23 10:41:50 -080013607 /* Perform vblank evasion around commit operation */
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013608 if (crtc->state->active)
Maarten Lankhorst34e0adb2015-08-31 13:04:25 +020013609 intel_pipe_update_start(intel_crtc);
Maarten Lankhorst05832362015-06-15 12:33:48 +020013610
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013611 if (modeset)
13612 return;
13613
13614 if (to_intel_crtc_state(crtc->state)->update_pipe)
13615 intel_update_pipe_config(intel_crtc, old_intel_state);
13616 else if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorst05832362015-06-15 12:33:48 +020013617 skl_detach_scalers(intel_crtc);
Matt Roper32b7eee2014-12-24 07:59:06 -080013618}
13619
Maarten Lankhorst613d2b22015-07-21 13:28:58 +020013620static void intel_finish_crtc_commit(struct drm_crtc *crtc,
13621 struct drm_crtc_state *old_crtc_state)
Matt Roper32b7eee2014-12-24 07:59:06 -080013622{
Matt Roper32b7eee2014-12-24 07:59:06 -080013623 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper32b7eee2014-12-24 07:59:06 -080013624
Maarten Lankhorst8f539a82015-07-13 16:30:32 +020013625 if (crtc->state->active)
Maarten Lankhorst34e0adb2015-08-31 13:04:25 +020013626 intel_pipe_update_end(intel_crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013627}
13628
Matt Ropercf4c7c12014-12-04 10:27:42 -080013629/**
Matt Roper4a3b8762014-12-23 10:41:51 -080013630 * intel_plane_destroy - destroy a plane
13631 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080013632 *
Matt Roper4a3b8762014-12-23 10:41:51 -080013633 * Common destruction function for all types of planes (primary, cursor,
13634 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080013635 */
Matt Roper4a3b8762014-12-23 10:41:51 -080013636void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070013637{
13638 struct intel_plane *intel_plane = to_intel_plane(plane);
13639 drm_plane_cleanup(plane);
13640 kfree(intel_plane);
13641}
13642
Matt Roper65a3fea2015-01-21 16:35:42 -080013643const struct drm_plane_funcs intel_plane_funcs = {
Matt Roper70a101f2015-04-08 18:56:53 -070013644 .update_plane = drm_atomic_helper_update_plane,
13645 .disable_plane = drm_atomic_helper_disable_plane,
Matt Roper3d7d6512014-06-10 08:28:13 -070013646 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080013647 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080013648 .atomic_get_property = intel_plane_atomic_get_property,
13649 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080013650 .atomic_duplicate_state = intel_plane_duplicate_state,
13651 .atomic_destroy_state = intel_plane_destroy_state,
13652
Matt Roper465c1202014-05-29 08:06:54 -070013653};
13654
13655static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
13656 int pipe)
13657{
13658 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080013659 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070013660 const uint32_t *intel_primary_formats;
Thierry Reding45e37432015-08-12 16:54:28 +020013661 unsigned int num_formats;
Matt Roper465c1202014-05-29 08:06:54 -070013662
13663 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
13664 if (primary == NULL)
13665 return NULL;
13666
Matt Roper8e7d6882015-01-21 16:35:41 -080013667 state = intel_create_plane_state(&primary->base);
13668 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080013669 kfree(primary);
13670 return NULL;
13671 }
Matt Roper8e7d6882015-01-21 16:35:41 -080013672 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080013673
Matt Roper465c1202014-05-29 08:06:54 -070013674 primary->can_scale = false;
13675 primary->max_downscale = 1;
Chandra Konduru6156a452015-04-27 13:48:39 -070013676 if (INTEL_INFO(dev)->gen >= 9) {
13677 primary->can_scale = true;
Chandra Konduruaf99ced2015-05-11 14:35:47 -070013678 state->scaler_id = -1;
Chandra Konduru6156a452015-04-27 13:48:39 -070013679 }
Matt Roper465c1202014-05-29 08:06:54 -070013680 primary->pipe = pipe;
13681 primary->plane = pipe;
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030013682 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
Matt Roperc59cb172014-12-01 15:40:16 -080013683 primary->check_plane = intel_check_primary_plane;
13684 primary->commit_plane = intel_commit_primary_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013685 primary->disable_plane = intel_disable_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070013686 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
13687 primary->plane = !pipe;
13688
Damien Lespiau6c0fd452015-05-19 12:29:16 +010013689 if (INTEL_INFO(dev)->gen >= 9) {
13690 intel_primary_formats = skl_primary_formats;
13691 num_formats = ARRAY_SIZE(skl_primary_formats);
13692 } else if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau568db4f2015-05-12 16:13:18 +010013693 intel_primary_formats = i965_primary_formats;
13694 num_formats = ARRAY_SIZE(i965_primary_formats);
Damien Lespiau6c0fd452015-05-19 12:29:16 +010013695 } else {
13696 intel_primary_formats = i8xx_primary_formats;
13697 num_formats = ARRAY_SIZE(i8xx_primary_formats);
Matt Roper465c1202014-05-29 08:06:54 -070013698 }
13699
13700 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080013701 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070013702 intel_primary_formats, num_formats,
13703 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053013704
Sonika Jindal3b7a5112015-04-10 14:37:29 +053013705 if (INTEL_INFO(dev)->gen >= 4)
13706 intel_create_rotation_property(dev, primary);
Sonika Jindal48404c12014-08-22 14:06:04 +053013707
Matt Roperea2c67b2014-12-23 10:41:52 -080013708 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
13709
Matt Roper465c1202014-05-29 08:06:54 -070013710 return &primary->base;
13711}
13712
Sonika Jindal3b7a5112015-04-10 14:37:29 +053013713void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
13714{
13715 if (!dev->mode_config.rotation_property) {
13716 unsigned long flags = BIT(DRM_ROTATE_0) |
13717 BIT(DRM_ROTATE_180);
13718
13719 if (INTEL_INFO(dev)->gen >= 9)
13720 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
13721
13722 dev->mode_config.rotation_property =
13723 drm_mode_create_rotation_property(dev, flags);
13724 }
13725 if (dev->mode_config.rotation_property)
13726 drm_object_attach_property(&plane->base.base,
13727 dev->mode_config.rotation_property,
13728 plane->base.state->rotation);
13729}
13730
Matt Roper3d7d6512014-06-10 08:28:13 -070013731static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030013732intel_check_cursor_plane(struct drm_plane *plane,
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013733 struct intel_crtc_state *crtc_state,
Gustavo Padovan852e7872014-09-05 17:22:31 -030013734 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070013735{
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013736 struct drm_crtc *crtc = crtc_state->base.crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080013737 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013738 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013739 unsigned stride;
13740 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013741
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013742 ret = drm_plane_helper_check_update(plane, crtc, fb, &state->src,
13743 &state->dst, &state->clip,
Gustavo Padovan852e7872014-09-05 17:22:31 -030013744 DRM_PLANE_HELPER_NO_SCALING,
13745 DRM_PLANE_HELPER_NO_SCALING,
13746 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013747 if (ret)
13748 return ret;
13749
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013750 /* if we want to turn off the cursor ignore width and height */
13751 if (!obj)
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020013752 return 0;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013753
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013754 /* Check for which cursor types we support */
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013755 if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) {
Matt Roperea2c67b2014-12-23 10:41:52 -080013756 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
13757 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013758 return -EINVAL;
13759 }
13760
Matt Roperea2c67b2014-12-23 10:41:52 -080013761 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
13762 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013763 DRM_DEBUG_KMS("buffer is too small\n");
13764 return -ENOMEM;
13765 }
13766
Ville Syrjälä3a656b52015-03-09 21:08:37 +020013767 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013768 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020013769 return -EINVAL;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013770 }
Gustavo Padovan757f9a32014-09-24 14:20:24 -030013771
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020013772 return 0;
Gustavo Padovan852e7872014-09-05 17:22:31 -030013773}
13774
Matt Roperf4a2cf22014-12-01 15:40:12 -080013775static void
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013776intel_disable_cursor_plane(struct drm_plane *plane,
Maarten Lankhorst7fabf5e2015-06-15 12:33:47 +020013777 struct drm_crtc *crtc)
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013778{
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013779 intel_crtc_update_cursor(crtc, false);
13780}
13781
13782static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030013783intel_commit_cursor_plane(struct drm_plane *plane,
13784 struct intel_plane_state *state)
13785{
Matt Roper2b875c22014-12-01 15:40:13 -080013786 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080013787 struct drm_device *dev = plane->dev;
13788 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080013789 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080013790 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070013791
Matt Roperea2c67b2014-12-23 10:41:52 -080013792 crtc = crtc ? crtc : plane->crtc;
13793 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070013794
Gustavo Padovana912f122014-12-01 15:40:10 -080013795 if (intel_crtc->cursor_bo == obj)
13796 goto update;
13797
Matt Roperf4a2cf22014-12-01 15:40:12 -080013798 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080013799 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080013800 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080013801 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080013802 else
Gustavo Padovana912f122014-12-01 15:40:10 -080013803 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080013804
Gustavo Padovana912f122014-12-01 15:40:10 -080013805 intel_crtc->cursor_addr = addr;
13806 intel_crtc->cursor_bo = obj;
Gustavo Padovana912f122014-12-01 15:40:10 -080013807
Maarten Lankhorst302d19a2015-06-15 12:33:45 +020013808update:
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013809 if (crtc->state->active)
Gustavo Padovan852e7872014-09-05 17:22:31 -030013810 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070013811}
Gustavo Padovan852e7872014-09-05 17:22:31 -030013812
Matt Roper3d7d6512014-06-10 08:28:13 -070013813static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
13814 int pipe)
13815{
13816 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080013817 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070013818
13819 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
13820 if (cursor == NULL)
13821 return NULL;
13822
Matt Roper8e7d6882015-01-21 16:35:41 -080013823 state = intel_create_plane_state(&cursor->base);
13824 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080013825 kfree(cursor);
13826 return NULL;
13827 }
Matt Roper8e7d6882015-01-21 16:35:41 -080013828 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080013829
Matt Roper3d7d6512014-06-10 08:28:13 -070013830 cursor->can_scale = false;
13831 cursor->max_downscale = 1;
13832 cursor->pipe = pipe;
13833 cursor->plane = pipe;
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030013834 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
Matt Roperc59cb172014-12-01 15:40:16 -080013835 cursor->check_plane = intel_check_cursor_plane;
13836 cursor->commit_plane = intel_commit_cursor_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013837 cursor->disable_plane = intel_disable_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070013838
13839 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080013840 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070013841 intel_cursor_formats,
13842 ARRAY_SIZE(intel_cursor_formats),
13843 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070013844
13845 if (INTEL_INFO(dev)->gen >= 4) {
13846 if (!dev->mode_config.rotation_property)
13847 dev->mode_config.rotation_property =
13848 drm_mode_create_rotation_property(dev,
13849 BIT(DRM_ROTATE_0) |
13850 BIT(DRM_ROTATE_180));
13851 if (dev->mode_config.rotation_property)
13852 drm_object_attach_property(&cursor->base.base,
13853 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080013854 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070013855 }
13856
Chandra Konduruaf99ced2015-05-11 14:35:47 -070013857 if (INTEL_INFO(dev)->gen >=9)
13858 state->scaler_id = -1;
13859
Matt Roperea2c67b2014-12-23 10:41:52 -080013860 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
13861
Matt Roper3d7d6512014-06-10 08:28:13 -070013862 return &cursor->base;
13863}
13864
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013865static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
13866 struct intel_crtc_state *crtc_state)
13867{
13868 int i;
13869 struct intel_scaler *intel_scaler;
13870 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
13871
13872 for (i = 0; i < intel_crtc->num_scalers; i++) {
13873 intel_scaler = &scaler_state->scalers[i];
13874 intel_scaler->in_use = 0;
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013875 intel_scaler->mode = PS_SCALER_MODE_DYN;
13876 }
13877
13878 scaler_state->scaler_id = -1;
13879}
13880
Hannes Ederb358d0a2008-12-18 21:18:47 +010013881static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080013882{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013883 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080013884 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013885 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070013886 struct drm_plane *primary = NULL;
13887 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070013888 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080013889
Daniel Vetter955382f2013-09-19 14:05:45 +020013890 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080013891 if (intel_crtc == NULL)
13892 return;
13893
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013894 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
13895 if (!crtc_state)
13896 goto fail;
Ander Conselvan de Oliveira550acef2015-04-21 17:13:24 +030013897 intel_crtc->config = crtc_state;
13898 intel_crtc->base.state = &crtc_state->base;
Matt Roper07878242015-02-25 11:43:26 -080013899 crtc_state->base.crtc = &intel_crtc->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013900
Chandra Konduru549e2bf2015-04-07 15:28:38 -070013901 /* initialize shared scalers */
13902 if (INTEL_INFO(dev)->gen >= 9) {
13903 if (pipe == PIPE_C)
13904 intel_crtc->num_scalers = 1;
13905 else
13906 intel_crtc->num_scalers = SKL_NUM_SCALERS;
13907
13908 skl_init_scalers(dev, intel_crtc, crtc_state);
13909 }
13910
Matt Roper465c1202014-05-29 08:06:54 -070013911 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070013912 if (!primary)
13913 goto fail;
13914
13915 cursor = intel_cursor_plane_create(dev, pipe);
13916 if (!cursor)
13917 goto fail;
13918
Matt Roper465c1202014-05-29 08:06:54 -070013919 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070013920 cursor, &intel_crtc_funcs);
13921 if (ret)
13922 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080013923
13924 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080013925 for (i = 0; i < 256; i++) {
13926 intel_crtc->lut_r[i] = i;
13927 intel_crtc->lut_g[i] = i;
13928 intel_crtc->lut_b[i] = i;
13929 }
13930
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020013931 /*
13932 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020013933 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020013934 */
Jesse Barnes80824002009-09-10 15:28:06 -070013935 intel_crtc->pipe = pipe;
13936 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010013937 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080013938 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010013939 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070013940 }
13941
Chris Wilson4b0e3332014-05-30 16:35:26 +030013942 intel_crtc->cursor_base = ~0;
13943 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030013944 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030013945
Ville Syrjälä852eb002015-06-24 22:00:07 +030013946 intel_crtc->wm.cxsr_allowed = true;
13947
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080013948 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
13949 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
13950 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
13951 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
13952
Jesse Barnes79e53942008-11-07 14:24:08 -080013953 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020013954
13955 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070013956 return;
13957
13958fail:
13959 if (primary)
13960 drm_plane_cleanup(primary);
13961 if (cursor)
13962 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020013963 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070013964 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080013965}
13966
Jesse Barnes752aa882013-10-31 18:55:49 +020013967enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
13968{
13969 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020013970 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020013971
Rob Clark51fd3712013-11-19 12:10:12 -050013972 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020013973
Ville Syrjäläd3babd32014-11-07 11:16:01 +020013974 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020013975 return INVALID_PIPE;
13976
13977 return to_intel_crtc(encoder->crtc)->pipe;
13978}
13979
Carl Worth08d7b3d2009-04-29 14:43:54 -070013980int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000013981 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070013982{
Carl Worth08d7b3d2009-04-29 14:43:54 -070013983 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040013984 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020013985 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013986
Rob Clark7707e652014-07-17 23:30:04 -040013987 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070013988
Rob Clark7707e652014-07-17 23:30:04 -040013989 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070013990 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030013991 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013992 }
13993
Rob Clark7707e652014-07-17 23:30:04 -040013994 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020013995 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013996
Daniel Vetterc05422d2009-08-11 16:05:30 +020013997 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070013998}
13999
Daniel Vetter66a92782012-07-12 20:08:18 +020014000static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080014001{
Daniel Vetter66a92782012-07-12 20:08:18 +020014002 struct drm_device *dev = encoder->base.dev;
14003 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080014004 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080014005 int entry = 0;
14006
Damien Lespiaub2784e12014-08-05 11:29:37 +010014007 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020014008 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020014009 index_mask |= (1 << entry);
14010
Jesse Barnes79e53942008-11-07 14:24:08 -080014011 entry++;
14012 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010014013
Jesse Barnes79e53942008-11-07 14:24:08 -080014014 return index_mask;
14015}
14016
Chris Wilson4d302442010-12-14 19:21:29 +000014017static bool has_edp_a(struct drm_device *dev)
14018{
14019 struct drm_i915_private *dev_priv = dev->dev_private;
14020
14021 if (!IS_MOBILE(dev))
14022 return false;
14023
14024 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
14025 return false;
14026
Damien Lespiaue3589902014-02-07 19:12:50 +000014027 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000014028 return false;
14029
14030 return true;
14031}
14032
Jesse Barnes84b4e042014-06-25 08:24:29 -070014033static bool intel_crt_present(struct drm_device *dev)
14034{
14035 struct drm_i915_private *dev_priv = dev->dev_private;
14036
Damien Lespiau884497e2013-12-03 13:56:23 +000014037 if (INTEL_INFO(dev)->gen >= 9)
14038 return false;
14039
Damien Lespiaucf404ce2014-10-01 20:04:15 +010014040 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070014041 return false;
14042
14043 if (IS_CHERRYVIEW(dev))
14044 return false;
14045
14046 if (IS_VALLEYVIEW(dev) && !dev_priv->vbt.int_crt_support)
14047 return false;
14048
14049 return true;
14050}
14051
Jesse Barnes79e53942008-11-07 14:24:08 -080014052static void intel_setup_outputs(struct drm_device *dev)
14053{
Eric Anholt725e30a2009-01-22 13:01:02 -080014054 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010014055 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014056 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080014057
Daniel Vetterc9093352013-06-06 22:22:47 +020014058 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014059
Jesse Barnes84b4e042014-06-25 08:24:29 -070014060 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020014061 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014062
Vandana Kannanc776eb22014-08-19 12:05:01 +053014063 if (IS_BROXTON(dev)) {
14064 /*
14065 * FIXME: Broxton doesn't support port detection via the
14066 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
14067 * detect the ports.
14068 */
14069 intel_ddi_init(dev, PORT_A);
14070 intel_ddi_init(dev, PORT_B);
14071 intel_ddi_init(dev, PORT_C);
14072 } else if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014073 int found;
14074
Jesse Barnesde31fac2015-03-06 15:53:32 -080014075 /*
14076 * Haswell uses DDI functions to detect digital outputs.
14077 * On SKL pre-D0 the strap isn't connected, so we assume
14078 * it's there.
14079 */
Ville Syrjälä77179402015-09-18 20:03:35 +030014080 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
Jesse Barnesde31fac2015-03-06 15:53:32 -080014081 /* WaIgnoreDDIAStrap: skl */
Jani Nikula5a2376d2015-08-14 10:53:17 +030014082 if (found || IS_SKYLAKE(dev))
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014083 intel_ddi_init(dev, PORT_A);
14084
14085 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
14086 * register */
14087 found = I915_READ(SFUSE_STRAP);
14088
14089 if (found & SFUSE_STRAP_DDIB_DETECTED)
14090 intel_ddi_init(dev, PORT_B);
14091 if (found & SFUSE_STRAP_DDIC_DETECTED)
14092 intel_ddi_init(dev, PORT_C);
14093 if (found & SFUSE_STRAP_DDID_DETECTED)
14094 intel_ddi_init(dev, PORT_D);
Rodrigo Vivi2800e4c2015-08-07 17:35:21 -070014095 /*
14096 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
14097 */
14098 if (IS_SKYLAKE(dev) &&
14099 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
14100 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
14101 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
14102 intel_ddi_init(dev, PORT_E);
14103
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014104 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014105 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020014106 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020014107
14108 if (has_edp_a(dev))
14109 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014110
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014111 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080014112 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010014113 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014114 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014115 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014116 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014117 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014118 }
14119
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014120 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014121 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014122
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014123 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014124 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014125
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014126 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014127 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014128
Daniel Vetter270b3042012-10-27 15:52:05 +020014129 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014130 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070014131 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014132 /*
14133 * The DP_DETECTED bit is the latched state of the DDC
14134 * SDA pin at boot. However since eDP doesn't require DDC
14135 * (no way to plug in a DP->HDMI dongle) the DDC pins for
14136 * eDP ports may have been muxed to an alternate function.
14137 * Thus we can't rely on the DP_DETECTED bit alone to detect
14138 * eDP ports. Consult the VBT as well as DP_DETECTED to
14139 * detect eDP ports.
14140 */
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014141 if (I915_READ(VLV_HDMIB) & SDVO_DETECTED &&
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014142 !intel_dp_is_edp(dev, PORT_B))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014143 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
14144 if (I915_READ(VLV_DP_B) & DP_DETECTED ||
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014145 intel_dp_is_edp(dev, PORT_B))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014146 intel_dp_init(dev, VLV_DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030014147
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014148 if (I915_READ(VLV_HDMIC) & SDVO_DETECTED &&
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014149 !intel_dp_is_edp(dev, PORT_C))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014150 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
14151 if (I915_READ(VLV_DP_C) & DP_DETECTED ||
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014152 intel_dp_is_edp(dev, PORT_C))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014153 intel_dp_init(dev, VLV_DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053014154
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014155 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014156 /* eDP not supported on port D, so don't check VBT */
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014157 if (I915_READ(CHV_HDMID) & SDVO_DETECTED)
14158 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
14159 if (I915_READ(CHV_DP_D) & DP_DETECTED)
14160 intel_dp_init(dev, CHV_DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014161 }
14162
Jani Nikula3cfca972013-08-27 15:12:26 +030014163 intel_dsi_init(dev);
Daniel Vetter09da55d2015-07-07 11:44:32 +020014164 } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014165 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080014166
Paulo Zanonie2debe92013-02-18 19:00:27 -030014167 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014168 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014169 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014170 if (!found && IS_G4X(dev)) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014171 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014172 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014173 }
Ma Ling27185ae2009-08-24 13:50:23 +080014174
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014175 if (!found && IS_G4X(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014176 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080014177 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014178
14179 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014180
Paulo Zanonie2debe92013-02-18 19:00:27 -030014181 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014182 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014183 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014184 }
Ma Ling27185ae2009-08-24 13:50:23 +080014185
Paulo Zanonie2debe92013-02-18 19:00:27 -030014186 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014187
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014188 if (IS_G4X(dev)) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014189 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014190 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014191 }
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014192 if (IS_G4X(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014193 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080014194 }
Ma Ling27185ae2009-08-24 13:50:23 +080014195
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014196 if (IS_G4X(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030014197 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014198 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070014199 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014200 intel_dvo_init(dev);
14201
Zhenyu Wang103a1962009-11-27 11:44:36 +080014202 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014203 intel_tv_init(dev);
14204
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080014205 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070014206
Damien Lespiaub2784e12014-08-05 11:29:37 +010014207 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010014208 encoder->base.possible_crtcs = encoder->crtc_mask;
14209 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020014210 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080014211 }
Chris Wilson47356eb2011-01-11 17:06:04 +000014212
Paulo Zanonidde86e22012-12-01 12:04:25 -020014213 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020014214
14215 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014216}
14217
14218static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
14219{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014220 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080014221 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080014222
Daniel Vetteref2d6332014-02-10 18:00:38 +010014223 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014224 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010014225 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014226 drm_gem_object_unreference(&intel_fb->obj->base);
14227 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080014228 kfree(intel_fb);
14229}
14230
14231static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000014232 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080014233 unsigned int *handle)
14234{
14235 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000014236 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080014237
Chris Wilson05394f32010-11-08 19:18:58 +000014238 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080014239}
14240
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014241static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
14242 struct drm_file *file,
14243 unsigned flags, unsigned color,
14244 struct drm_clip_rect *clips,
14245 unsigned num_clips)
14246{
14247 struct drm_device *dev = fb->dev;
14248 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
14249 struct drm_i915_gem_object *obj = intel_fb->obj;
14250
14251 mutex_lock(&dev->struct_mutex);
Paulo Zanoni74b4ea12015-07-14 16:29:14 -030014252 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014253 mutex_unlock(&dev->struct_mutex);
14254
14255 return 0;
14256}
14257
Jesse Barnes79e53942008-11-07 14:24:08 -080014258static const struct drm_framebuffer_funcs intel_fb_funcs = {
14259 .destroy = intel_user_framebuffer_destroy,
14260 .create_handle = intel_user_framebuffer_create_handle,
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014261 .dirty = intel_user_framebuffer_dirty,
Jesse Barnes79e53942008-11-07 14:24:08 -080014262};
14263
Damien Lespiaub3218032015-02-27 11:15:18 +000014264static
14265u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
14266 uint32_t pixel_format)
14267{
14268 u32 gen = INTEL_INFO(dev)->gen;
14269
14270 if (gen >= 9) {
14271 /* "The stride in bytes must not exceed the of the size of 8K
14272 * pixels and 32K bytes."
14273 */
14274 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
14275 } else if (gen >= 5 && !IS_VALLEYVIEW(dev)) {
14276 return 32*1024;
14277 } else if (gen >= 4) {
14278 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14279 return 16*1024;
14280 else
14281 return 32*1024;
14282 } else if (gen >= 3) {
14283 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14284 return 8*1024;
14285 else
14286 return 16*1024;
14287 } else {
14288 /* XXX DSPC is limited to 4k tiled */
14289 return 8*1024;
14290 }
14291}
14292
Daniel Vetterb5ea6422014-03-02 21:18:00 +010014293static int intel_framebuffer_init(struct drm_device *dev,
14294 struct intel_framebuffer *intel_fb,
14295 struct drm_mode_fb_cmd2 *mode_cmd,
14296 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080014297{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +000014298 unsigned int aligned_height;
Jesse Barnes79e53942008-11-07 14:24:08 -080014299 int ret;
Damien Lespiaub3218032015-02-27 11:15:18 +000014300 u32 pitch_limit, stride_alignment;
Jesse Barnes79e53942008-11-07 14:24:08 -080014301
Daniel Vetterdd4916c2013-10-09 21:23:51 +020014302 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
14303
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014304 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
14305 /* Enforce that fb modifier and tiling mode match, but only for
14306 * X-tiled. This is needed for FBC. */
14307 if (!!(obj->tiling_mode == I915_TILING_X) !=
14308 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
14309 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
14310 return -EINVAL;
14311 }
14312 } else {
14313 if (obj->tiling_mode == I915_TILING_X)
14314 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
14315 else if (obj->tiling_mode == I915_TILING_Y) {
14316 DRM_DEBUG("No Y tiling for legacy addfb\n");
14317 return -EINVAL;
14318 }
14319 }
14320
Tvrtko Ursulin9a8f0a12015-02-27 11:15:24 +000014321 /* Passed in modifier sanity checking. */
14322 switch (mode_cmd->modifier[0]) {
14323 case I915_FORMAT_MOD_Y_TILED:
14324 case I915_FORMAT_MOD_Yf_TILED:
14325 if (INTEL_INFO(dev)->gen < 9) {
14326 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
14327 mode_cmd->modifier[0]);
14328 return -EINVAL;
14329 }
14330 case DRM_FORMAT_MOD_NONE:
14331 case I915_FORMAT_MOD_X_TILED:
14332 break;
14333 default:
Jesse Barnesc0f40422015-03-23 12:43:50 -070014334 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
14335 mode_cmd->modifier[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010014336 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014337 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014338
Damien Lespiaub3218032015-02-27 11:15:18 +000014339 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
14340 mode_cmd->pixel_format);
14341 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
14342 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
14343 mode_cmd->pitches[0], stride_alignment);
Chris Wilson57cd6502010-08-08 12:34:44 +010014344 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014345 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014346
Damien Lespiaub3218032015-02-27 11:15:18 +000014347 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
14348 mode_cmd->pixel_format);
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014349 if (mode_cmd->pitches[0] > pitch_limit) {
Damien Lespiaub3218032015-02-27 11:15:18 +000014350 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
14351 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014352 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014353 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014354 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014355 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014356
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014357 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014358 mode_cmd->pitches[0] != obj->stride) {
14359 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
14360 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014361 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014362 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014363
Ville Syrjälä57779d02012-10-31 17:50:14 +020014364 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014365 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020014366 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014367 case DRM_FORMAT_RGB565:
14368 case DRM_FORMAT_XRGB8888:
14369 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014370 break;
14371 case DRM_FORMAT_XRGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014372 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014373 DRM_DEBUG("unsupported pixel format: %s\n",
14374 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014375 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014376 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020014377 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +020014378 case DRM_FORMAT_ABGR8888:
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014379 if (!IS_VALLEYVIEW(dev) && INTEL_INFO(dev)->gen < 9) {
14380 DRM_DEBUG("unsupported pixel format: %s\n",
14381 drm_get_format_name(mode_cmd->pixel_format));
14382 return -EINVAL;
14383 }
14384 break;
14385 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014386 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014387 case DRM_FORMAT_XBGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014388 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014389 DRM_DEBUG("unsupported pixel format: %s\n",
14390 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014391 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014392 }
Jesse Barnesb5626742011-06-24 12:19:27 -070014393 break;
Damien Lespiau75312082015-05-15 19:06:01 +010014394 case DRM_FORMAT_ABGR2101010:
14395 if (!IS_VALLEYVIEW(dev)) {
14396 DRM_DEBUG("unsupported pixel format: %s\n",
14397 drm_get_format_name(mode_cmd->pixel_format));
14398 return -EINVAL;
14399 }
14400 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020014401 case DRM_FORMAT_YUYV:
14402 case DRM_FORMAT_UYVY:
14403 case DRM_FORMAT_YVYU:
14404 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014405 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014406 DRM_DEBUG("unsupported pixel format: %s\n",
14407 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014408 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014409 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014410 break;
14411 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014412 DRM_DEBUG("unsupported pixel format: %s\n",
14413 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010014414 return -EINVAL;
14415 }
14416
Ville Syrjälä90f9a332012-10-31 17:50:19 +020014417 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
14418 if (mode_cmd->offsets[0] != 0)
14419 return -EINVAL;
14420
Damien Lespiauec2c9812015-01-20 12:51:45 +000014421 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +000014422 mode_cmd->pixel_format,
14423 mode_cmd->modifier[0]);
Daniel Vetter53155c02013-10-09 21:55:33 +020014424 /* FIXME drm helper for size checks (especially planar formats)? */
14425 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
14426 return -EINVAL;
14427
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014428 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
14429 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020014430 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014431
Jesse Barnes79e53942008-11-07 14:24:08 -080014432 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
14433 if (ret) {
14434 DRM_ERROR("framebuffer init failed %d\n", ret);
14435 return ret;
14436 }
14437
Jesse Barnes79e53942008-11-07 14:24:08 -080014438 return 0;
14439}
14440
Jesse Barnes79e53942008-11-07 14:24:08 -080014441static struct drm_framebuffer *
14442intel_user_framebuffer_create(struct drm_device *dev,
14443 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014444 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080014445{
Chris Wilson05394f32010-11-08 19:18:58 +000014446 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080014447
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014448 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
14449 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000014450 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010014451 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080014452
Chris Wilsond2dff872011-04-19 08:36:26 +010014453 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080014454}
14455
Daniel Vetter06957262015-08-10 13:34:08 +020014456#ifndef CONFIG_DRM_FBDEV_EMULATION
Daniel Vetter0632fef2013-10-08 17:44:49 +020014457static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020014458{
14459}
14460#endif
14461
Jesse Barnes79e53942008-11-07 14:24:08 -080014462static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080014463 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020014464 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080014465 .atomic_check = intel_atomic_check,
14466 .atomic_commit = intel_atomic_commit,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +020014467 .atomic_state_alloc = intel_atomic_state_alloc,
14468 .atomic_state_clear = intel_atomic_state_clear,
Jesse Barnes79e53942008-11-07 14:24:08 -080014469};
14470
Jesse Barnese70236a2009-09-21 10:42:27 -070014471/* Set up chip specific display functions */
14472static void intel_init_display(struct drm_device *dev)
14473{
14474 struct drm_i915_private *dev_priv = dev->dev_private;
14475
Daniel Vetteree9300b2013-06-03 22:40:22 +020014476 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
14477 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030014478 else if (IS_CHERRYVIEW(dev))
14479 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020014480 else if (IS_VALLEYVIEW(dev))
14481 dev_priv->display.find_dpll = vlv_find_best_dpll;
14482 else if (IS_PINEVIEW(dev))
14483 dev_priv->display.find_dpll = pnv_find_best_dpll;
14484 else
14485 dev_priv->display.find_dpll = i9xx_find_best_dpll;
14486
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014487 if (INTEL_INFO(dev)->gen >= 9) {
14488 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014489 dev_priv->display.get_initial_plane_config =
14490 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014491 dev_priv->display.crtc_compute_clock =
14492 haswell_crtc_compute_clock;
14493 dev_priv->display.crtc_enable = haswell_crtc_enable;
14494 dev_priv->display.crtc_disable = haswell_crtc_disable;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014495 dev_priv->display.update_primary_plane =
14496 skylake_update_primary_plane;
14497 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014498 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014499 dev_priv->display.get_initial_plane_config =
14500 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020014501 dev_priv->display.crtc_compute_clock =
14502 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020014503 dev_priv->display.crtc_enable = haswell_crtc_enable;
14504 dev_priv->display.crtc_disable = haswell_crtc_disable;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014505 dev_priv->display.update_primary_plane =
14506 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030014507 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014508 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014509 dev_priv->display.get_initial_plane_config =
14510 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020014511 dev_priv->display.crtc_compute_clock =
14512 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014513 dev_priv->display.crtc_enable = ironlake_crtc_enable;
14514 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014515 dev_priv->display.update_primary_plane =
14516 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014517 } else if (IS_VALLEYVIEW(dev)) {
14518 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014519 dev_priv->display.get_initial_plane_config =
14520 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014521 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014522 dev_priv->display.crtc_enable = valleyview_crtc_enable;
14523 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014524 dev_priv->display.update_primary_plane =
14525 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014526 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014527 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014528 dev_priv->display.get_initial_plane_config =
14529 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014530 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014531 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14532 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014533 dev_priv->display.update_primary_plane =
14534 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014535 }
Jesse Barnese70236a2009-09-21 10:42:27 -070014536
Jesse Barnese70236a2009-09-21 10:42:27 -070014537 /* Returns the core display clock speed */
Ville Syrjälä1652d192015-03-31 14:12:01 +030014538 if (IS_SKYLAKE(dev))
14539 dev_priv->display.get_display_clock_speed =
14540 skylake_get_display_clock_speed;
Bob Paauweacd3f3d2015-06-23 14:14:26 -070014541 else if (IS_BROXTON(dev))
14542 dev_priv->display.get_display_clock_speed =
14543 broxton_get_display_clock_speed;
Ville Syrjälä1652d192015-03-31 14:12:01 +030014544 else if (IS_BROADWELL(dev))
14545 dev_priv->display.get_display_clock_speed =
14546 broadwell_get_display_clock_speed;
14547 else if (IS_HASWELL(dev))
14548 dev_priv->display.get_display_clock_speed =
14549 haswell_get_display_clock_speed;
14550 else if (IS_VALLEYVIEW(dev))
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070014551 dev_priv->display.get_display_clock_speed =
14552 valleyview_get_display_clock_speed;
Ville Syrjäläb37a6432015-03-31 14:11:54 +030014553 else if (IS_GEN5(dev))
14554 dev_priv->display.get_display_clock_speed =
14555 ilk_get_display_clock_speed;
Ville Syrjäläa7c66cd2015-03-31 14:11:56 +030014556 else if (IS_I945G(dev) || IS_BROADWATER(dev) ||
Ville Syrjälä34edce22015-05-22 11:22:33 +030014557 IS_GEN6(dev) || IS_IVYBRIDGE(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014558 dev_priv->display.get_display_clock_speed =
14559 i945_get_display_clock_speed;
Ville Syrjälä34edce22015-05-22 11:22:33 +030014560 else if (IS_GM45(dev))
14561 dev_priv->display.get_display_clock_speed =
14562 gm45_get_display_clock_speed;
14563 else if (IS_CRESTLINE(dev))
14564 dev_priv->display.get_display_clock_speed =
14565 i965gm_get_display_clock_speed;
14566 else if (IS_PINEVIEW(dev))
14567 dev_priv->display.get_display_clock_speed =
14568 pnv_get_display_clock_speed;
14569 else if (IS_G33(dev) || IS_G4X(dev))
14570 dev_priv->display.get_display_clock_speed =
14571 g33_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070014572 else if (IS_I915G(dev))
14573 dev_priv->display.get_display_clock_speed =
14574 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020014575 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014576 dev_priv->display.get_display_clock_speed =
14577 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020014578 else if (IS_PINEVIEW(dev))
14579 dev_priv->display.get_display_clock_speed =
14580 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070014581 else if (IS_I915GM(dev))
14582 dev_priv->display.get_display_clock_speed =
14583 i915gm_get_display_clock_speed;
14584 else if (IS_I865G(dev))
14585 dev_priv->display.get_display_clock_speed =
14586 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020014587 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014588 dev_priv->display.get_display_clock_speed =
Ville Syrjälä1b1d2712015-05-22 11:22:31 +030014589 i85x_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030014590 else { /* 830 */
14591 WARN(!IS_I830(dev), "Unknown platform. Assuming 133 MHz CDCLK\n");
Jesse Barnese70236a2009-09-21 10:42:27 -070014592 dev_priv->display.get_display_clock_speed =
14593 i830_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030014594 }
Jesse Barnese70236a2009-09-21 10:42:27 -070014595
Jani Nikula7c10a2b2014-10-27 16:26:43 +020014596 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014597 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014598 } else if (IS_GEN6(dev)) {
14599 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014600 } else if (IS_IVYBRIDGE(dev)) {
14601 /* FIXME: detect B0+ stepping and use auto training */
14602 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030014603 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053014604 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020014605 if (IS_BROADWELL(dev)) {
14606 dev_priv->display.modeset_commit_cdclk =
14607 broadwell_modeset_commit_cdclk;
14608 dev_priv->display.modeset_calc_cdclk =
14609 broadwell_modeset_calc_cdclk;
14610 }
Jesse Barnes30a970c2013-11-04 13:48:12 -080014611 } else if (IS_VALLEYVIEW(dev)) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020014612 dev_priv->display.modeset_commit_cdclk =
14613 valleyview_modeset_commit_cdclk;
14614 dev_priv->display.modeset_calc_cdclk =
14615 valleyview_modeset_calc_cdclk;
Vandana Kannanf8437dd12014-11-24 13:37:39 +053014616 } else if (IS_BROXTON(dev)) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020014617 dev_priv->display.modeset_commit_cdclk =
14618 broxton_modeset_commit_cdclk;
14619 dev_priv->display.modeset_calc_cdclk =
14620 broxton_modeset_calc_cdclk;
Jesse Barnese70236a2009-09-21 10:42:27 -070014621 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014622
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014623 switch (INTEL_INFO(dev)->gen) {
14624 case 2:
14625 dev_priv->display.queue_flip = intel_gen2_queue_flip;
14626 break;
14627
14628 case 3:
14629 dev_priv->display.queue_flip = intel_gen3_queue_flip;
14630 break;
14631
14632 case 4:
14633 case 5:
14634 dev_priv->display.queue_flip = intel_gen4_queue_flip;
14635 break;
14636
14637 case 6:
14638 dev_priv->display.queue_flip = intel_gen6_queue_flip;
14639 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070014640 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070014641 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070014642 dev_priv->display.queue_flip = intel_gen7_queue_flip;
14643 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000014644 case 9:
Tvrtko Ursulinba343e02015-02-10 17:16:12 +000014645 /* Drop through - unsupported since execlist only. */
14646 default:
14647 /* Default just returns -ENODEV to indicate unsupported */
14648 dev_priv->display.queue_flip = intel_default_queue_flip;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070014649 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020014650
Ville Syrjäläe39b9992014-09-04 14:53:14 +030014651 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070014652}
14653
Jesse Barnesb690e962010-07-19 13:53:12 -070014654/*
14655 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
14656 * resume, or other times. This quirk makes sure that's the case for
14657 * affected systems.
14658 */
Akshay Joshi0206e352011-08-16 15:34:10 -040014659static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070014660{
14661 struct drm_i915_private *dev_priv = dev->dev_private;
14662
14663 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014664 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070014665}
14666
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030014667static void quirk_pipeb_force(struct drm_device *dev)
14668{
14669 struct drm_i915_private *dev_priv = dev->dev_private;
14670
14671 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
14672 DRM_INFO("applying pipe b force quirk\n");
14673}
14674
Keith Packard435793d2011-07-12 14:56:22 -070014675/*
14676 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
14677 */
14678static void quirk_ssc_force_disable(struct drm_device *dev)
14679{
14680 struct drm_i915_private *dev_priv = dev->dev_private;
14681 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014682 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070014683}
14684
Carsten Emde4dca20e2012-03-15 15:56:26 +010014685/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010014686 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
14687 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010014688 */
14689static void quirk_invert_brightness(struct drm_device *dev)
14690{
14691 struct drm_i915_private *dev_priv = dev->dev_private;
14692 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020014693 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070014694}
14695
Scot Doyle9c72cc62014-07-03 23:27:50 +000014696/* Some VBT's incorrectly indicate no backlight is present */
14697static void quirk_backlight_present(struct drm_device *dev)
14698{
14699 struct drm_i915_private *dev_priv = dev->dev_private;
14700 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
14701 DRM_INFO("applying backlight present quirk\n");
14702}
14703
Jesse Barnesb690e962010-07-19 13:53:12 -070014704struct intel_quirk {
14705 int device;
14706 int subsystem_vendor;
14707 int subsystem_device;
14708 void (*hook)(struct drm_device *dev);
14709};
14710
Egbert Eich5f85f172012-10-14 15:46:38 +020014711/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
14712struct intel_dmi_quirk {
14713 void (*hook)(struct drm_device *dev);
14714 const struct dmi_system_id (*dmi_id_list)[];
14715};
14716
14717static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
14718{
14719 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
14720 return 1;
14721}
14722
14723static const struct intel_dmi_quirk intel_dmi_quirks[] = {
14724 {
14725 .dmi_id_list = &(const struct dmi_system_id[]) {
14726 {
14727 .callback = intel_dmi_reverse_brightness,
14728 .ident = "NCR Corporation",
14729 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
14730 DMI_MATCH(DMI_PRODUCT_NAME, ""),
14731 },
14732 },
14733 { } /* terminating entry */
14734 },
14735 .hook = quirk_invert_brightness,
14736 },
14737};
14738
Ben Widawskyc43b5632012-04-16 14:07:40 -070014739static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070014740 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
14741 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
14742
Jesse Barnesb690e962010-07-19 13:53:12 -070014743 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
14744 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
14745
Ville Syrjälä5f080c02014-08-15 01:22:06 +030014746 /* 830 needs to leave pipe A & dpll A up */
14747 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
14748
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030014749 /* 830 needs to leave pipe B & dpll B up */
14750 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
14751
Keith Packard435793d2011-07-12 14:56:22 -070014752 /* Lenovo U160 cannot use SSC on LVDS */
14753 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020014754
14755 /* Sony Vaio Y cannot use SSC on LVDS */
14756 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010014757
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010014758 /* Acer Aspire 5734Z must invert backlight brightness */
14759 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
14760
14761 /* Acer/eMachines G725 */
14762 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
14763
14764 /* Acer/eMachines e725 */
14765 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
14766
14767 /* Acer/Packard Bell NCL20 */
14768 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
14769
14770 /* Acer Aspire 4736Z */
14771 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020014772
14773 /* Acer Aspire 5336 */
14774 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000014775
14776 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
14777 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000014778
Scot Doyledfb3d47b2014-08-21 16:08:02 +000014779 /* Acer C720 Chromebook (Core i3 4005U) */
14780 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
14781
jens steinb2a96012014-10-28 20:25:53 +010014782 /* Apple Macbook 2,1 (Core 2 T7400) */
14783 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
14784
Scot Doyled4967d82014-07-03 23:27:52 +000014785 /* Toshiba CB35 Chromebook (Celeron 2955U) */
14786 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000014787
14788 /* HP Chromebook 14 (Celeron 2955U) */
14789 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020014790
14791 /* Dell Chromebook 11 */
14792 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070014793};
14794
14795static void intel_init_quirks(struct drm_device *dev)
14796{
14797 struct pci_dev *d = dev->pdev;
14798 int i;
14799
14800 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
14801 struct intel_quirk *q = &intel_quirks[i];
14802
14803 if (d->device == q->device &&
14804 (d->subsystem_vendor == q->subsystem_vendor ||
14805 q->subsystem_vendor == PCI_ANY_ID) &&
14806 (d->subsystem_device == q->subsystem_device ||
14807 q->subsystem_device == PCI_ANY_ID))
14808 q->hook(dev);
14809 }
Egbert Eich5f85f172012-10-14 15:46:38 +020014810 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
14811 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
14812 intel_dmi_quirks[i].hook(dev);
14813 }
Jesse Barnesb690e962010-07-19 13:53:12 -070014814}
14815
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014816/* Disable the VGA plane that we never use */
14817static void i915_disable_vga(struct drm_device *dev)
14818{
14819 struct drm_i915_private *dev_priv = dev->dev_private;
14820 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020014821 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014822
Ville Syrjälä2b37c612014-01-22 21:32:38 +020014823 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014824 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070014825 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014826 sr1 = inb(VGA_SR_DATA);
14827 outb(sr1 | 1<<5, VGA_SR_DATA);
14828 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
14829 udelay(300);
14830
Ville Syrjälä01f5a622014-12-16 18:38:37 +020014831 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014832 POSTING_READ(vga_reg);
14833}
14834
Daniel Vetterf8175862012-04-10 15:50:11 +020014835void intel_modeset_init_hw(struct drm_device *dev)
14836{
Ville Syrjäläb6283052015-06-03 15:45:07 +030014837 intel_update_cdclk(dev);
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030014838 intel_prepare_ddi(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020014839 intel_init_clock_gating(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +020014840 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020014841}
14842
Jesse Barnes79e53942008-11-07 14:24:08 -080014843void intel_modeset_init(struct drm_device *dev)
14844{
Jesse Barnes652c3932009-08-17 13:31:43 -070014845 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000014846 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000014847 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080014848 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080014849
14850 drm_mode_config_init(dev);
14851
14852 dev->mode_config.min_width = 0;
14853 dev->mode_config.min_height = 0;
14854
Dave Airlie019d96c2011-09-29 16:20:42 +010014855 dev->mode_config.preferred_depth = 24;
14856 dev->mode_config.prefer_shadow = 1;
14857
Tvrtko Ursulin25bab382015-02-10 17:16:16 +000014858 dev->mode_config.allow_fb_modifiers = true;
14859
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020014860 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080014861
Jesse Barnesb690e962010-07-19 13:53:12 -070014862 intel_init_quirks(dev);
14863
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030014864 intel_init_pm(dev);
14865
Ben Widawskye3c74752013-04-05 13:12:39 -070014866 if (INTEL_INFO(dev)->num_pipes == 0)
14867 return;
14868
Lukas Wunner69f92f62015-07-15 13:57:35 +020014869 /*
14870 * There may be no VBT; and if the BIOS enabled SSC we can
14871 * just keep using it to avoid unnecessary flicker. Whereas if the
14872 * BIOS isn't using it, don't assume it will work even if the VBT
14873 * indicates as much.
14874 */
14875 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
14876 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
14877 DREF_SSC1_ENABLE);
14878
14879 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
14880 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
14881 bios_lvds_use_ssc ? "en" : "dis",
14882 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
14883 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
14884 }
14885 }
14886
Jesse Barnese70236a2009-09-21 10:42:27 -070014887 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020014888 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070014889
Chris Wilsona6c45cf2010-09-17 00:32:17 +010014890 if (IS_GEN2(dev)) {
14891 dev->mode_config.max_width = 2048;
14892 dev->mode_config.max_height = 2048;
14893 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070014894 dev->mode_config.max_width = 4096;
14895 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080014896 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010014897 dev->mode_config.max_width = 8192;
14898 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080014899 }
Damien Lespiau068be562014-03-28 14:17:49 +000014900
Ville Syrjälädc41c152014-08-13 11:57:05 +030014901 if (IS_845G(dev) || IS_I865G(dev)) {
14902 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
14903 dev->mode_config.cursor_height = 1023;
14904 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000014905 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
14906 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
14907 } else {
14908 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
14909 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
14910 }
14911
Ben Widawsky5d4545a2013-01-17 12:45:15 -080014912 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080014913
Zhao Yakui28c97732009-10-09 11:39:41 +080014914 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014915 INTEL_INFO(dev)->num_pipes,
14916 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080014917
Damien Lespiau055e3932014-08-18 13:49:10 +010014918 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000014919 intel_crtc_init(dev, pipe);
Damien Lespiau3bdcfc02015-02-28 14:54:09 +000014920 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +000014921 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070014922 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030014923 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000014924 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070014925 }
Jesse Barnes79e53942008-11-07 14:24:08 -080014926 }
14927
Ville Syrjäläbfa7df02015-09-24 23:29:18 +030014928 intel_update_czclk(dev_priv);
14929 intel_update_cdclk(dev);
14930
Daniel Vettere72f9fb2013-06-05 13:34:06 +020014931 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010014932
Jesse Barnes9cce37f2010-08-13 15:11:26 -070014933 /* Just disable it once at startup */
14934 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014935 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000014936
14937 /* Just in case the BIOS is doing something questionable. */
Paulo Zanoni7733b492015-07-07 15:26:04 -030014938 intel_fbc_disable(dev_priv);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080014939
Daniel Vetter6e9f7982014-05-29 23:54:47 +020014940 drm_modeset_lock_all(dev);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020014941 intel_modeset_setup_hw_state(dev);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020014942 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080014943
Damien Lespiaud3fcc802014-05-13 23:32:22 +010014944 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorsteeebeac2015-07-14 12:33:29 +020014945 struct intel_initial_plane_config plane_config = {};
14946
Jesse Barnes46f297f2014-03-07 08:57:48 -080014947 if (!crtc->active)
14948 continue;
14949
Jesse Barnes46f297f2014-03-07 08:57:48 -080014950 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080014951 * Note that reserving the BIOS fb up front prevents us
14952 * from stuffing other stolen allocations like the ring
14953 * on top. This prevents some ugliness at boot time, and
14954 * can even allow for smooth boot transitions if the BIOS
14955 * fb is large enough for the active pipe configuration.
14956 */
Maarten Lankhorsteeebeac2015-07-14 12:33:29 +020014957 dev_priv->display.get_initial_plane_config(crtc,
14958 &plane_config);
14959
14960 /*
14961 * If the fb is shared between multiple heads, we'll
14962 * just get the first one.
14963 */
14964 intel_find_initial_plane_obj(crtc, &plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080014965 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010014966}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080014967
Daniel Vetter7fad7982012-07-04 17:51:47 +020014968static void intel_enable_pipe_a(struct drm_device *dev)
14969{
14970 struct intel_connector *connector;
14971 struct drm_connector *crt = NULL;
14972 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030014973 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020014974
14975 /* We can't just switch on the pipe A, we need to set things up with a
14976 * proper mode and output configuration. As a gross hack, enable pipe A
14977 * by enabling the load detect pipe once. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020014978 for_each_intel_connector(dev, connector) {
Daniel Vetter7fad7982012-07-04 17:51:47 +020014979 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
14980 crt = &connector->base;
14981 break;
14982 }
14983 }
14984
14985 if (!crt)
14986 return;
14987
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030014988 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020014989 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
Daniel Vetter7fad7982012-07-04 17:51:47 +020014990}
14991
Daniel Vetterfa555832012-10-10 23:14:00 +020014992static bool
14993intel_check_plane_mapping(struct intel_crtc *crtc)
14994{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014995 struct drm_device *dev = crtc->base.dev;
14996 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020014997 u32 reg, val;
14998
Ben Widawsky7eb552a2013-03-13 14:05:41 -070014999 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020015000 return true;
15001
15002 reg = DSPCNTR(!crtc->plane);
15003 val = I915_READ(reg);
15004
15005 if ((val & DISPLAY_PLANE_ENABLE) &&
15006 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
15007 return false;
15008
15009 return true;
15010}
15011
Ville Syrjälä02e93c32015-08-26 19:39:19 +030015012static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
15013{
15014 struct drm_device *dev = crtc->base.dev;
15015 struct intel_encoder *encoder;
15016
15017 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
15018 return true;
15019
15020 return false;
15021}
15022
Daniel Vetter24929352012-07-02 20:28:59 +020015023static void intel_sanitize_crtc(struct intel_crtc *crtc)
15024{
15025 struct drm_device *dev = crtc->base.dev;
15026 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020015027 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020015028
Daniel Vetter24929352012-07-02 20:28:59 +020015029 /* Clear any frame start delays used for debugging left by the BIOS */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015030 reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020015031 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
15032
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030015033 /* restore vblank interrupts to correct state */
Daniel Vetter96256042015-02-13 21:03:42 +010015034 drm_crtc_vblank_reset(&crtc->base);
Ville Syrjäläd297e102014-08-06 14:50:01 +030015035 if (crtc->active) {
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015036 struct intel_plane *plane;
15037
Daniel Vetter96256042015-02-13 21:03:42 +010015038 drm_crtc_vblank_on(&crtc->base);
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015039
15040 /* Disable everything but the primary plane */
15041 for_each_intel_plane_on_crtc(dev, crtc, plane) {
15042 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
15043 continue;
15044
15045 plane->disable_plane(&plane->base, &crtc->base);
15046 }
Daniel Vetter96256042015-02-13 21:03:42 +010015047 }
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030015048
Daniel Vetter24929352012-07-02 20:28:59 +020015049 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020015050 * disable the crtc (and hence change the state) if it is wrong. Note
15051 * that gen4+ has a fixed plane -> pipe mapping. */
15052 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020015053 bool plane;
15054
Daniel Vetter24929352012-07-02 20:28:59 +020015055 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
15056 crtc->base.base.id);
15057
15058 /* Pipe has the wrong plane attached and the plane is active.
15059 * Temporarily change the plane mapping and disable everything
15060 * ... */
15061 plane = crtc->plane;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030015062 to_intel_plane_state(crtc->base.primary->state)->visible = true;
Daniel Vetter24929352012-07-02 20:28:59 +020015063 crtc->plane = !plane;
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015064 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020015065 crtc->plane = plane;
Daniel Vetter24929352012-07-02 20:28:59 +020015066 }
Daniel Vetter24929352012-07-02 20:28:59 +020015067
Daniel Vetter7fad7982012-07-04 17:51:47 +020015068 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
15069 crtc->pipe == PIPE_A && !crtc->active) {
15070 /* BIOS forgot to enable pipe A, this mostly happens after
15071 * resume. Force-enable the pipe to fix this, the update_dpms
15072 * call below we restore the pipe to the right state, but leave
15073 * the required bits on. */
15074 intel_enable_pipe_a(dev);
15075 }
15076
Daniel Vetter24929352012-07-02 20:28:59 +020015077 /* Adjust the state of the output pipe according to whether we
15078 * have active connectors/encoders. */
Ville Syrjälä02e93c32015-08-26 19:39:19 +030015079 if (!intel_crtc_has_encoders(crtc))
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015080 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020015081
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +020015082 if (crtc->active != crtc->base.state->active) {
Ville Syrjälä02e93c32015-08-26 19:39:19 +030015083 struct intel_encoder *encoder;
Daniel Vetter24929352012-07-02 20:28:59 +020015084
15085 /* This can happen either due to bugs in the get_hw_state
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015086 * functions or because of calls to intel_crtc_disable_noatomic,
15087 * or because the pipe is force-enabled due to the
Daniel Vetter24929352012-07-02 20:28:59 +020015088 * pipe A quirk. */
15089 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
15090 crtc->base.base.id,
Matt Roper83d65732015-02-25 13:12:16 -080015091 crtc->base.state->enable ? "enabled" : "disabled",
Daniel Vetter24929352012-07-02 20:28:59 +020015092 crtc->active ? "enabled" : "disabled");
15093
Maarten Lankhorst4be40c92015-07-14 13:45:32 +020015094 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, NULL) < 0);
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020015095 crtc->base.state->active = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020015096 crtc->base.enabled = crtc->active;
15097
15098 /* Because we only establish the connector -> encoder ->
15099 * crtc links if something is active, this means the
15100 * crtc is now deactivated. Break the links. connector
15101 * -> encoder links are only establish when things are
15102 * actually up, hence no need to break them. */
15103 WARN_ON(crtc->active);
15104
Maarten Lankhorst2d406bb2015-08-05 12:37:09 +020015105 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Daniel Vetter24929352012-07-02 20:28:59 +020015106 encoder->base.crtc = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015107 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020015108
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030015109 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010015110 /*
15111 * We start out with underrun reporting disabled to avoid races.
15112 * For correct bookkeeping mark this on active crtcs.
15113 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020015114 * Also on gmch platforms we dont have any hardware bits to
15115 * disable the underrun reporting. Which means we need to start
15116 * out with underrun reporting disabled also on inactive pipes,
15117 * since otherwise we'll complain about the garbage we read when
15118 * e.g. coming up after runtime pm.
15119 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010015120 * No protection against concurrent access is required - at
15121 * worst a fifo underrun happens which also sets this to false.
15122 */
15123 crtc->cpu_fifo_underrun_disabled = true;
15124 crtc->pch_fifo_underrun_disabled = true;
15125 }
Daniel Vetter24929352012-07-02 20:28:59 +020015126}
15127
15128static void intel_sanitize_encoder(struct intel_encoder *encoder)
15129{
15130 struct intel_connector *connector;
15131 struct drm_device *dev = encoder->base.dev;
Maarten Lankhorst873ffe62015-08-05 12:37:07 +020015132 bool active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020015133
15134 /* We need to check both for a crtc link (meaning that the
15135 * encoder is active and trying to read from a pipe) and the
15136 * pipe itself being active. */
15137 bool has_active_crtc = encoder->base.crtc &&
15138 to_intel_crtc(encoder->base.crtc)->active;
15139
Maarten Lankhorst873ffe62015-08-05 12:37:07 +020015140 for_each_intel_connector(dev, connector) {
15141 if (connector->base.encoder != &encoder->base)
15142 continue;
15143
15144 active = true;
15145 break;
15146 }
15147
15148 if (active && !has_active_crtc) {
Daniel Vetter24929352012-07-02 20:28:59 +020015149 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
15150 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015151 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020015152
15153 /* Connector is active, but has no active pipe. This is
15154 * fallout from our resume register restoring. Disable
15155 * the encoder manually again. */
15156 if (encoder->base.crtc) {
15157 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
15158 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015159 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020015160 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030015161 if (encoder->post_disable)
15162 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020015163 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020015164 encoder->base.crtc = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015165
15166 /* Inconsistent output/port/pipe state happens presumably due to
15167 * a bug in one of the get_hw_state functions. Or someplace else
15168 * in our code, like the register restore mess on resume. Clamp
15169 * things to off as a safer default. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015170 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020015171 if (connector->encoder != encoder)
15172 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020015173 connector->base.dpms = DRM_MODE_DPMS_OFF;
15174 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015175 }
15176 }
15177 /* Enabled encoders without active connectors will be fixed in
15178 * the crtc fixup. */
15179}
15180
Imre Deak04098752014-02-18 00:02:16 +020015181void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015182{
15183 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020015184 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015185
Imre Deak04098752014-02-18 00:02:16 +020015186 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
15187 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
15188 i915_disable_vga(dev);
15189 }
15190}
15191
15192void i915_redisable_vga(struct drm_device *dev)
15193{
15194 struct drm_i915_private *dev_priv = dev->dev_private;
15195
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030015196 /* This function can be called both from intel_modeset_setup_hw_state or
15197 * at a very early point in our resume sequence, where the power well
15198 * structures are not yet restored. Since this function is at a very
15199 * paranoid "someone might have enabled VGA while we were not looking"
15200 * level, just check if the power well is enabled instead of trying to
15201 * follow the "don't touch the power well if we don't need it" policy
15202 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015203 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030015204 return;
15205
Imre Deak04098752014-02-18 00:02:16 +020015206 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015207}
15208
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015209static bool primary_get_hw_state(struct intel_plane *plane)
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015210{
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015211 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015212
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015213 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015214}
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015215
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015216/* FIXME read out full plane state for all planes */
15217static void readout_plane_state(struct intel_crtc *crtc)
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015218{
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015219 struct drm_plane *primary = crtc->base.primary;
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015220 struct intel_plane_state *plane_state =
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015221 to_intel_plane_state(primary->state);
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015222
Matt Ropera4611e42015-09-24 15:53:17 -070015223 plane_state->visible = crtc->active &&
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015224 primary_get_hw_state(to_intel_plane(primary));
15225
15226 if (plane_state->visible)
15227 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015228}
15229
Daniel Vetter30e984d2013-06-05 13:34:17 +020015230static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020015231{
15232 struct drm_i915_private *dev_priv = dev->dev_private;
15233 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020015234 struct intel_crtc *crtc;
15235 struct intel_encoder *encoder;
15236 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020015237 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020015238
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015239 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorstb06f8b02015-07-14 13:42:49 +020015240 __drm_atomic_helper_crtc_destroy_state(&crtc->base, crtc->base.state);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015241 memset(crtc->config, 0, sizeof(*crtc->config));
Maarten Lankhorstf7217902015-06-10 10:24:20 +020015242 crtc->config->base.crtc = &crtc->base;
Daniel Vetter3b117c82013-04-17 20:15:07 +020015243
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010015244 crtc->active = dev_priv->display.get_pipe_config(crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015245 crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020015246
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020015247 crtc->base.state->active = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020015248 crtc->base.enabled = crtc->active;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030015249
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015250 readout_plane_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020015251
15252 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
15253 crtc->base.base.id,
15254 crtc->active ? "enabled" : "disabled");
15255 }
15256
Daniel Vetter53589012013-06-05 13:34:16 +020015257 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15258 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15259
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015260 pll->on = pll->get_hw_state(dev_priv, pll,
15261 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020015262 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015263 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015264 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015265 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020015266 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015267 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015268 }
Daniel Vetter53589012013-06-05 13:34:16 +020015269 }
Daniel Vetter53589012013-06-05 13:34:16 +020015270
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015271 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015272 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015273
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015274 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015275 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020015276 }
15277
Damien Lespiaub2784e12014-08-05 11:29:37 +010015278 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015279 pipe = 0;
15280
15281 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070015282 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15283 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015284 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020015285 } else {
15286 encoder->base.crtc = NULL;
15287 }
15288
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015289 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020015290 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015291 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020015292 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015293 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020015294 }
15295
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015296 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020015297 if (connector->get_hw_state(connector)) {
15298 connector->base.dpms = DRM_MODE_DPMS_ON;
Daniel Vetter24929352012-07-02 20:28:59 +020015299 connector->base.encoder = &connector->encoder->base;
15300 } else {
15301 connector->base.dpms = DRM_MODE_DPMS_OFF;
15302 connector->base.encoder = NULL;
15303 }
15304 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
15305 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030015306 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020015307 connector->base.encoder ? "enabled" : "disabled");
15308 }
Ville Syrjälä7f4c6282015-09-10 18:59:07 +030015309
15310 for_each_intel_crtc(dev, crtc) {
15311 crtc->base.hwmode = crtc->config->base.adjusted_mode;
15312
15313 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
15314 if (crtc->base.state->active) {
15315 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
15316 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
15317 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
15318
15319 /*
15320 * The initial mode needs to be set in order to keep
15321 * the atomic core happy. It wants a valid mode if the
15322 * crtc's enabled, so we do the above call.
15323 *
15324 * At this point some state updated by the connectors
15325 * in their ->detect() callback has not run yet, so
15326 * no recalculation can be done yet.
15327 *
15328 * Even if we could do a recalculation and modeset
15329 * right now it would cause a double modeset if
15330 * fbdev or userspace chooses a different initial mode.
15331 *
15332 * If that happens, someone indicated they wanted a
15333 * mode change, which means it's safe to do a full
15334 * recalculation.
15335 */
15336 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
Ville Syrjälä9eca68322015-09-10 18:59:10 +030015337
15338 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
15339 update_scanline_offset(crtc);
Ville Syrjälä7f4c6282015-09-10 18:59:07 +030015340 }
15341 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020015342}
15343
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015344/* Scan out the current hw modeset state,
15345 * and sanitizes it to the current state
15346 */
15347static void
15348intel_modeset_setup_hw_state(struct drm_device *dev)
Daniel Vetter30e984d2013-06-05 13:34:17 +020015349{
15350 struct drm_i915_private *dev_priv = dev->dev_private;
15351 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015352 struct intel_crtc *crtc;
15353 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020015354 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015355
15356 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020015357
15358 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010015359 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015360 intel_sanitize_encoder(encoder);
15361 }
15362
Damien Lespiau055e3932014-08-18 13:49:10 +010015363 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020015364 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15365 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015366 intel_dump_pipe_config(crtc, crtc->config,
15367 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020015368 }
Daniel Vetter9a935852012-07-05 22:34:27 +020015369
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020015370 intel_modeset_update_connector_atomic_state(dev);
15371
Daniel Vetter35c95372013-07-17 06:55:04 +020015372 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15373 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15374
15375 if (!pll->on || pll->active)
15376 continue;
15377
15378 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
15379
15380 pll->disable(dev_priv, pll);
15381 pll->on = false;
15382 }
15383
Ville Syrjälä26e1fe42015-06-24 22:00:06 +030015384 if (IS_VALLEYVIEW(dev))
Ville Syrjälä6eb1a682015-06-24 22:00:03 +030015385 vlv_wm_get_hw_state(dev);
15386 else if (IS_GEN9(dev))
Pradeep Bhat30789992014-11-04 17:06:45 +000015387 skl_wm_get_hw_state(dev);
15388 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030015389 ilk_wm_get_hw_state(dev);
Maarten Lankhorst292b9902015-07-13 16:30:27 +020015390
15391 for_each_intel_crtc(dev, crtc) {
15392 unsigned long put_domains;
15393
15394 put_domains = modeset_get_crtc_power_domains(&crtc->base);
15395 if (WARN_ON(put_domains))
15396 modeset_put_power_domains(dev_priv, put_domains);
15397 }
15398 intel_display_set_init_power(dev_priv, false);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015399}
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030015400
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015401void intel_display_resume(struct drm_device *dev)
15402{
15403 struct drm_atomic_state *state = drm_atomic_state_alloc(dev);
15404 struct intel_connector *conn;
15405 struct intel_plane *plane;
15406 struct drm_crtc *crtc;
15407 int ret;
Daniel Vetterf30da182013-04-11 20:22:50 +020015408
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015409 if (!state)
15410 return;
15411
15412 state->acquire_ctx = dev->mode_config.acquire_ctx;
15413
15414 /* preserve complete old state, including dpll */
15415 intel_atomic_get_shared_dpll_state(state);
15416
15417 for_each_crtc(dev, crtc) {
15418 struct drm_crtc_state *crtc_state =
15419 drm_atomic_get_crtc_state(state, crtc);
15420
15421 ret = PTR_ERR_OR_ZERO(crtc_state);
15422 if (ret)
15423 goto err;
15424
15425 /* force a restore */
15426 crtc_state->mode_changed = true;
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010015427 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020015428
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015429 for_each_intel_plane(dev, plane) {
15430 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(state, &plane->base));
15431 if (ret)
15432 goto err;
15433 }
15434
15435 for_each_intel_connector(dev, conn) {
15436 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(state, &conn->base));
15437 if (ret)
15438 goto err;
15439 }
15440
15441 intel_modeset_setup_hw_state(dev);
15442
15443 i915_redisable_vga(dev);
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020015444 ret = drm_atomic_commit(state);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015445 if (!ret)
15446 return;
15447
15448err:
15449 DRM_ERROR("Restoring old state failed with %i\n", ret);
15450 drm_atomic_state_free(state);
Chris Wilson2c7111d2011-03-29 10:40:27 +010015451}
15452
15453void intel_modeset_gem_init(struct drm_device *dev)
15454{
Jesse Barnes484b41d2014-03-07 08:57:55 -080015455 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070015456 struct drm_i915_gem_object *obj;
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015457 int ret;
Jesse Barnes484b41d2014-03-07 08:57:55 -080015458
Imre Deakae484342014-03-31 15:10:44 +030015459 mutex_lock(&dev->struct_mutex);
15460 intel_init_gt_powersave(dev);
15461 mutex_unlock(&dev->struct_mutex);
15462
Chris Wilson1833b132012-05-09 11:56:28 +010015463 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020015464
15465 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080015466
15467 /*
15468 * Make sure any fbs we allocated at startup are properly
15469 * pinned & fenced. When we do the allocation it's too early
15470 * for this.
15471 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010015472 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070015473 obj = intel_fb_obj(c->primary->fb);
15474 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080015475 continue;
15476
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015477 mutex_lock(&dev->struct_mutex);
15478 ret = intel_pin_and_fence_fb_obj(c->primary,
15479 c->primary->fb,
15480 c->primary->state,
John Harrison91af1272015-06-18 13:14:56 +010015481 NULL, NULL);
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015482 mutex_unlock(&dev->struct_mutex);
15483 if (ret) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080015484 DRM_ERROR("failed to pin boot fb on pipe %d\n",
15485 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100015486 drm_framebuffer_unreference(c->primary->fb);
15487 c->primary->fb = NULL;
Maarten Lankhorst36750f22015-06-01 12:49:54 +020015488 c->primary->crtc = c->primary->state->crtc = NULL;
Matt Roperafd65eb2015-02-03 13:10:04 -080015489 update_state_fb(c->primary);
Maarten Lankhorst36750f22015-06-01 12:49:54 +020015490 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
Jesse Barnes484b41d2014-03-07 08:57:55 -080015491 }
15492 }
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020015493
15494 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080015495}
15496
Imre Deak4932e2c2014-02-11 17:12:48 +020015497void intel_connector_unregister(struct intel_connector *intel_connector)
15498{
15499 struct drm_connector *connector = &intel_connector->base;
15500
15501 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010015502 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020015503}
15504
Jesse Barnes79e53942008-11-07 14:24:08 -080015505void intel_modeset_cleanup(struct drm_device *dev)
15506{
Jesse Barnes652c3932009-08-17 13:31:43 -070015507 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid9255d52013-09-26 20:05:59 -030015508 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070015509
Imre Deak2eb52522014-11-19 15:30:05 +020015510 intel_disable_gt_powersave(dev);
15511
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020015512 intel_backlight_unregister(dev);
15513
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015514 /*
15515 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020015516 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015517 * experience fancy races otherwise.
15518 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020015519 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070015520
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015521 /*
15522 * Due to the hpd irq storm handling the hotplug work can re-arm the
15523 * poll handlers. Hence disable polling after hpd handling is shut down.
15524 */
Keith Packardf87ea762010-10-03 19:36:26 -070015525 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015526
Jesse Barnes723bfd72010-10-07 16:01:13 -070015527 intel_unregister_dsm_handler();
15528
Paulo Zanoni7733b492015-07-07 15:26:04 -030015529 intel_fbc_disable(dev_priv);
Kristian Høgsberg69341a52009-11-11 12:19:17 -050015530
Chris Wilson1630fe72011-07-08 12:22:42 +010015531 /* flush any delayed tasks or pending work */
15532 flush_scheduled_work();
15533
Jani Nikuladb31af1d2013-11-08 16:48:53 +020015534 /* destroy the backlight and sysfs files before encoders/connectors */
15535 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020015536 struct intel_connector *intel_connector;
15537
15538 intel_connector = to_intel_connector(connector);
15539 intel_connector->unregister(intel_connector);
Jani Nikuladb31af1d2013-11-08 16:48:53 +020015540 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030015541
Jesse Barnes79e53942008-11-07 14:24:08 -080015542 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010015543
15544 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030015545
15546 mutex_lock(&dev->struct_mutex);
15547 intel_cleanup_gt_powersave(dev);
15548 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080015549}
15550
Dave Airlie28d52042009-09-21 14:33:58 +100015551/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080015552 * Return which encoder is currently attached for connector.
15553 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010015554struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080015555{
Chris Wilsondf0e9242010-09-09 16:20:55 +010015556 return &intel_attached_encoder(connector)->base;
15557}
Jesse Barnes79e53942008-11-07 14:24:08 -080015558
Chris Wilsondf0e9242010-09-09 16:20:55 +010015559void intel_connector_attach_encoder(struct intel_connector *connector,
15560 struct intel_encoder *encoder)
15561{
15562 connector->encoder = encoder;
15563 drm_mode_connector_attach_encoder(&connector->base,
15564 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080015565}
Dave Airlie28d52042009-09-21 14:33:58 +100015566
15567/*
15568 * set vga decode state - true == enable VGA decode
15569 */
15570int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
15571{
15572 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000015573 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100015574 u16 gmch_ctrl;
15575
Chris Wilson75fa0412014-02-07 18:37:02 -020015576 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
15577 DRM_ERROR("failed to read control word\n");
15578 return -EIO;
15579 }
15580
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020015581 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
15582 return 0;
15583
Dave Airlie28d52042009-09-21 14:33:58 +100015584 if (state)
15585 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
15586 else
15587 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020015588
15589 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
15590 DRM_ERROR("failed to write control word\n");
15591 return -EIO;
15592 }
15593
Dave Airlie28d52042009-09-21 14:33:58 +100015594 return 0;
15595}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015596
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015597struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015598
15599 u32 power_well_driver;
15600
Chris Wilson63b66e52013-08-08 15:12:06 +020015601 int num_transcoders;
15602
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015603 struct intel_cursor_error_state {
15604 u32 control;
15605 u32 position;
15606 u32 base;
15607 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010015608 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015609
15610 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020015611 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015612 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030015613 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010015614 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015615
15616 struct intel_plane_error_state {
15617 u32 control;
15618 u32 stride;
15619 u32 size;
15620 u32 pos;
15621 u32 addr;
15622 u32 surface;
15623 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010015624 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020015625
15626 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020015627 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020015628 enum transcoder cpu_transcoder;
15629
15630 u32 conf;
15631
15632 u32 htotal;
15633 u32 hblank;
15634 u32 hsync;
15635 u32 vtotal;
15636 u32 vblank;
15637 u32 vsync;
15638 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015639};
15640
15641struct intel_display_error_state *
15642intel_display_capture_error_state(struct drm_device *dev)
15643{
Jani Nikulafbee40d2014-03-31 14:27:18 +030015644 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015645 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020015646 int transcoders[] = {
15647 TRANSCODER_A,
15648 TRANSCODER_B,
15649 TRANSCODER_C,
15650 TRANSCODER_EDP,
15651 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015652 int i;
15653
Chris Wilson63b66e52013-08-08 15:12:06 +020015654 if (INTEL_INFO(dev)->num_pipes == 0)
15655 return NULL;
15656
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015657 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015658 if (error == NULL)
15659 return NULL;
15660
Imre Deak190be112013-11-25 17:15:31 +020015661 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015662 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
15663
Damien Lespiau055e3932014-08-18 13:49:10 +010015664 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020015665 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015666 __intel_display_power_is_enabled(dev_priv,
15667 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020015668 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015669 continue;
15670
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030015671 error->cursor[i].control = I915_READ(CURCNTR(i));
15672 error->cursor[i].position = I915_READ(CURPOS(i));
15673 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015674
15675 error->plane[i].control = I915_READ(DSPCNTR(i));
15676 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015677 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030015678 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015679 error->plane[i].pos = I915_READ(DSPPOS(i));
15680 }
Paulo Zanonica291362013-03-06 20:03:14 -030015681 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
15682 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015683 if (INTEL_INFO(dev)->gen >= 4) {
15684 error->plane[i].surface = I915_READ(DSPSURF(i));
15685 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
15686 }
15687
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015688 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030015689
Sonika Jindal3abfce72014-07-21 15:23:43 +053015690 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e2014-04-18 15:55:04 +030015691 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020015692 }
15693
15694 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
15695 if (HAS_DDI(dev_priv->dev))
15696 error->num_transcoders++; /* Account for eDP. */
15697
15698 for (i = 0; i < error->num_transcoders; i++) {
15699 enum transcoder cpu_transcoder = transcoders[i];
15700
Imre Deakddf9c532013-11-27 22:02:02 +020015701 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015702 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020015703 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020015704 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020015705 continue;
15706
Chris Wilson63b66e52013-08-08 15:12:06 +020015707 error->transcoder[i].cpu_transcoder = cpu_transcoder;
15708
15709 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
15710 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
15711 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
15712 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
15713 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
15714 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
15715 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015716 }
15717
15718 return error;
15719}
15720
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015721#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
15722
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015723void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015724intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015725 struct drm_device *dev,
15726 struct intel_display_error_state *error)
15727{
Damien Lespiau055e3932014-08-18 13:49:10 +010015728 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015729 int i;
15730
Chris Wilson63b66e52013-08-08 15:12:06 +020015731 if (!error)
15732 return;
15733
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015734 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020015735 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015736 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030015737 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010015738 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015739 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020015740 err_printf(m, " Power: %s\n",
15741 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015742 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030015743 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015744
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015745 err_printf(m, "Plane [%d]:\n", i);
15746 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
15747 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015748 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015749 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
15750 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030015751 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030015752 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015753 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015754 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015755 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
15756 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015757 }
15758
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030015759 err_printf(m, "Cursor [%d]:\n", i);
15760 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
15761 err_printf(m, " POS: %08x\n", error->cursor[i].position);
15762 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015763 }
Chris Wilson63b66e52013-08-08 15:12:06 +020015764
15765 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010015766 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020015767 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020015768 err_printf(m, " Power: %s\n",
15769 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020015770 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
15771 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
15772 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
15773 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
15774 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
15775 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
15776 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
15777 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000015778}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015779
15780void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
15781{
15782 struct intel_crtc *crtc;
15783
15784 for_each_intel_crtc(dev, crtc) {
15785 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015786
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020015787 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015788
15789 work = crtc->unpin_work;
15790
15791 if (work && work->event &&
15792 work->event->base.file_priv == file) {
15793 kfree(work->event);
15794 work->event = NULL;
15795 }
15796
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020015797 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030015798 }
15799}