blob: eea2cd26ba176262dee1549b7d5c43dd6f059276 [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>
Alex Goinsfd8e0582015-11-25 18:43:38 -080047#include <linux/reservation.h>
48#include <linux/dma-buf.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080049
Matt Roper465c1202014-05-29 08:06:54 -070050/* Primary plane formats for gen <= 3 */
Damien Lespiau568db4f2015-05-12 16:13:18 +010051static const uint32_t i8xx_primary_formats[] = {
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010052 DRM_FORMAT_C8,
53 DRM_FORMAT_RGB565,
Matt Roper465c1202014-05-29 08:06:54 -070054 DRM_FORMAT_XRGB1555,
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010055 DRM_FORMAT_XRGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070056};
57
58/* Primary plane formats for gen >= 4 */
Damien Lespiau568db4f2015-05-12 16:13:18 +010059static const uint32_t i965_primary_formats[] = {
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010060 DRM_FORMAT_C8,
61 DRM_FORMAT_RGB565,
62 DRM_FORMAT_XRGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070063 DRM_FORMAT_XBGR8888,
Damien Lespiau6c0fd452015-05-19 12:29:16 +010064 DRM_FORMAT_XRGB2101010,
65 DRM_FORMAT_XBGR2101010,
66};
67
68static const uint32_t skl_primary_formats[] = {
69 DRM_FORMAT_C8,
70 DRM_FORMAT_RGB565,
71 DRM_FORMAT_XRGB8888,
72 DRM_FORMAT_XBGR8888,
Damien Lespiau67fe7dc2015-05-15 19:06:00 +010073 DRM_FORMAT_ARGB8888,
Matt Roper465c1202014-05-29 08:06:54 -070074 DRM_FORMAT_ABGR8888,
75 DRM_FORMAT_XRGB2101010,
Matt Roper465c1202014-05-29 08:06:54 -070076 DRM_FORMAT_XBGR2101010,
Kumar, Maheshea916ea2015-09-03 16:17:09 +053077 DRM_FORMAT_YUYV,
78 DRM_FORMAT_YVYU,
79 DRM_FORMAT_UYVY,
80 DRM_FORMAT_VYUY,
Matt Roper465c1202014-05-29 08:06:54 -070081};
82
Matt Roper3d7d6512014-06-10 08:28:13 -070083/* Cursor formats */
84static const uint32_t intel_cursor_formats[] = {
85 DRM_FORMAT_ARGB8888,
86};
87
Chris Wilson6b383a72010-09-13 13:54:26 +010088static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080089
Jesse Barnesf1f644d2013-06-27 00:39:25 +030090static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020091 struct intel_crtc_state *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030092static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020093 struct intel_crtc_state *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030094
Jesse Barneseb1bfe82014-02-12 12:26:25 -080095static int intel_framebuffer_init(struct drm_device *dev,
96 struct intel_framebuffer *ifb,
97 struct drm_mode_fb_cmd2 *mode_cmd,
98 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +020099static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
100static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +0200101static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -0700102 struct intel_link_m_n *m_n,
103 struct intel_link_m_n *m2_n2);
Daniel Vetter29407aa2014-04-24 23:55:08 +0200104static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +0200105static void haswell_set_pipeconf(struct drm_crtc *crtc);
106static void intel_set_pipe_csc(struct drm_crtc *crtc);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200107static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200108 const struct intel_crtc_state *pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +0200109static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200110 const struct intel_crtc_state *pipe_config);
Maarten Lankhorst613d2b22015-07-21 13:28:58 +0200111static void intel_begin_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
112static void intel_finish_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
Chandra Konduru549e2bf2015-04-07 15:28:38 -0700113static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
114 struct intel_crtc_state *crtc_state);
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200115static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
116 int num_connectors);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +0200117static void skylake_pfit_enable(struct intel_crtc *crtc);
118static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force);
119static void ironlake_pfit_enable(struct intel_crtc *crtc);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +0200120static void intel_modeset_setup_hw_state(struct drm_device *dev);
Matt Roper200757f2015-12-03 11:37:36 -0800121static void intel_pre_disable_primary(struct drm_crtc *crtc);
Damien Lespiaue7457a92013-08-08 22:28:59 +0100122
Jesse Barnes79e53942008-11-07 14:24:08 -0800123typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400124 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -0800125} intel_range_t;
126
127typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -0400128 int dot_limit;
129 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800130} intel_p2_t;
131
Ma Lingd4906092009-03-18 20:13:27 +0800132typedef struct intel_limit intel_limit_t;
133struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -0400134 intel_range_t dot, vco, n, m, m1, m2, p, p1;
135 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +0800136};
Jesse Barnes79e53942008-11-07 14:24:08 -0800137
Ville Syrjäläbfa7df02015-09-24 23:29:18 +0300138/* returns HPLL frequency in kHz */
139static int valleyview_get_vco(struct drm_i915_private *dev_priv)
140{
141 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
142
143 /* Obtain SKU information */
144 mutex_lock(&dev_priv->sb_lock);
145 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
146 CCK_FUSE_HPLL_FREQ_MASK;
147 mutex_unlock(&dev_priv->sb_lock);
148
149 return vco_freq[hpll_freq] * 1000;
150}
151
152static int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
153 const char *name, u32 reg)
154{
155 u32 val;
156 int divider;
157
158 if (dev_priv->hpll_freq == 0)
159 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
160
161 mutex_lock(&dev_priv->sb_lock);
162 val = vlv_cck_read(dev_priv, reg);
163 mutex_unlock(&dev_priv->sb_lock);
164
165 divider = val & CCK_FREQUENCY_VALUES;
166
167 WARN((val & CCK_FREQUENCY_STATUS) !=
168 (divider << CCK_FREQUENCY_STATUS_SHIFT),
169 "%s change in progress\n", name);
170
171 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
172}
173
Daniel Vetterd2acd212012-10-20 20:57:43 +0200174int
175intel_pch_rawclk(struct drm_device *dev)
176{
177 struct drm_i915_private *dev_priv = dev->dev_private;
178
179 WARN_ON(!HAS_PCH_SPLIT(dev));
180
181 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
182}
183
Jani Nikula79e50a42015-08-26 10:58:20 +0300184/* hrawclock is 1/4 the FSB frequency */
185int intel_hrawclk(struct drm_device *dev)
186{
187 struct drm_i915_private *dev_priv = dev->dev_private;
188 uint32_t clkcfg;
189
190 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
Wayne Boyer666a4532015-12-09 12:29:35 -0800191 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Jani Nikula79e50a42015-08-26 10:58:20 +0300192 return 200;
193
194 clkcfg = I915_READ(CLKCFG);
195 switch (clkcfg & CLKCFG_FSB_MASK) {
196 case CLKCFG_FSB_400:
197 return 100;
198 case CLKCFG_FSB_533:
199 return 133;
200 case CLKCFG_FSB_667:
201 return 166;
202 case CLKCFG_FSB_800:
203 return 200;
204 case CLKCFG_FSB_1067:
205 return 266;
206 case CLKCFG_FSB_1333:
207 return 333;
208 /* these two are just a guess; one of them might be right */
209 case CLKCFG_FSB_1600:
210 case CLKCFG_FSB_1600_ALT:
211 return 400;
212 default:
213 return 133;
214 }
215}
216
Ville Syrjäläbfa7df02015-09-24 23:29:18 +0300217static void intel_update_czclk(struct drm_i915_private *dev_priv)
218{
Wayne Boyer666a4532015-12-09 12:29:35 -0800219 if (!(IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)))
Ville Syrjäläbfa7df02015-09-24 23:29:18 +0300220 return;
221
222 dev_priv->czclk_freq = vlv_get_cck_clock_hpll(dev_priv, "czclk",
223 CCK_CZ_CLOCK_CONTROL);
224
225 DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv->czclk_freq);
226}
227
Chris Wilson021357a2010-09-07 20:54:59 +0100228static inline u32 /* units of 100MHz */
229intel_fdi_link_freq(struct drm_device *dev)
230{
Chris Wilson8b99e682010-10-13 09:59:17 +0100231 if (IS_GEN5(dev)) {
232 struct drm_i915_private *dev_priv = dev->dev_private;
233 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
234 } else
235 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100236}
237
Daniel Vetter5d536e22013-07-06 12:52:06 +0200238static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400239 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200240 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200241 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400242 .m = { .min = 96, .max = 140 },
243 .m1 = { .min = 18, .max = 26 },
244 .m2 = { .min = 6, .max = 16 },
245 .p = { .min = 4, .max = 128 },
246 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700247 .p2 = { .dot_limit = 165000,
248 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700249};
250
Daniel Vetter5d536e22013-07-06 12:52:06 +0200251static const intel_limit_t intel_limits_i8xx_dvo = {
252 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200253 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200254 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200255 .m = { .min = 96, .max = 140 },
256 .m1 = { .min = 18, .max = 26 },
257 .m2 = { .min = 6, .max = 16 },
258 .p = { .min = 4, .max = 128 },
259 .p1 = { .min = 2, .max = 33 },
260 .p2 = { .dot_limit = 165000,
261 .p2_slow = 4, .p2_fast = 4 },
262};
263
Keith Packarde4b36692009-06-05 19:22:17 -0700264static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400265 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200266 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200267 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400268 .m = { .min = 96, .max = 140 },
269 .m1 = { .min = 18, .max = 26 },
270 .m2 = { .min = 6, .max = 16 },
271 .p = { .min = 4, .max = 128 },
272 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700273 .p2 = { .dot_limit = 165000,
274 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700275};
Eric Anholt273e27c2011-03-30 13:01:10 -0700276
Keith Packarde4b36692009-06-05 19:22:17 -0700277static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400278 .dot = { .min = 20000, .max = 400000 },
279 .vco = { .min = 1400000, .max = 2800000 },
280 .n = { .min = 1, .max = 6 },
281 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100282 .m1 = { .min = 8, .max = 18 },
283 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400284 .p = { .min = 5, .max = 80 },
285 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700286 .p2 = { .dot_limit = 200000,
287 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700288};
289
290static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400291 .dot = { .min = 20000, .max = 400000 },
292 .vco = { .min = 1400000, .max = 2800000 },
293 .n = { .min = 1, .max = 6 },
294 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100295 .m1 = { .min = 8, .max = 18 },
296 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400297 .p = { .min = 7, .max = 98 },
298 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700299 .p2 = { .dot_limit = 112000,
300 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700301};
302
Eric Anholt273e27c2011-03-30 13:01:10 -0700303
Keith Packarde4b36692009-06-05 19:22:17 -0700304static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700305 .dot = { .min = 25000, .max = 270000 },
306 .vco = { .min = 1750000, .max = 3500000},
307 .n = { .min = 1, .max = 4 },
308 .m = { .min = 104, .max = 138 },
309 .m1 = { .min = 17, .max = 23 },
310 .m2 = { .min = 5, .max = 11 },
311 .p = { .min = 10, .max = 30 },
312 .p1 = { .min = 1, .max = 3},
313 .p2 = { .dot_limit = 270000,
314 .p2_slow = 10,
315 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800316 },
Keith Packarde4b36692009-06-05 19:22:17 -0700317};
318
319static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700320 .dot = { .min = 22000, .max = 400000 },
321 .vco = { .min = 1750000, .max = 3500000},
322 .n = { .min = 1, .max = 4 },
323 .m = { .min = 104, .max = 138 },
324 .m1 = { .min = 16, .max = 23 },
325 .m2 = { .min = 5, .max = 11 },
326 .p = { .min = 5, .max = 80 },
327 .p1 = { .min = 1, .max = 8},
328 .p2 = { .dot_limit = 165000,
329 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700330};
331
332static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700333 .dot = { .min = 20000, .max = 115000 },
334 .vco = { .min = 1750000, .max = 3500000 },
335 .n = { .min = 1, .max = 3 },
336 .m = { .min = 104, .max = 138 },
337 .m1 = { .min = 17, .max = 23 },
338 .m2 = { .min = 5, .max = 11 },
339 .p = { .min = 28, .max = 112 },
340 .p1 = { .min = 2, .max = 8 },
341 .p2 = { .dot_limit = 0,
342 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800343 },
Keith Packarde4b36692009-06-05 19:22:17 -0700344};
345
346static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700347 .dot = { .min = 80000, .max = 224000 },
348 .vco = { .min = 1750000, .max = 3500000 },
349 .n = { .min = 1, .max = 3 },
350 .m = { .min = 104, .max = 138 },
351 .m1 = { .min = 17, .max = 23 },
352 .m2 = { .min = 5, .max = 11 },
353 .p = { .min = 14, .max = 42 },
354 .p1 = { .min = 2, .max = 6 },
355 .p2 = { .dot_limit = 0,
356 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800357 },
Keith Packarde4b36692009-06-05 19:22:17 -0700358};
359
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500360static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400361 .dot = { .min = 20000, .max = 400000},
362 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700363 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400364 .n = { .min = 3, .max = 6 },
365 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700366 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400367 .m1 = { .min = 0, .max = 0 },
368 .m2 = { .min = 0, .max = 254 },
369 .p = { .min = 5, .max = 80 },
370 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700371 .p2 = { .dot_limit = 200000,
372 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700373};
374
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500375static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400376 .dot = { .min = 20000, .max = 400000 },
377 .vco = { .min = 1700000, .max = 3500000 },
378 .n = { .min = 3, .max = 6 },
379 .m = { .min = 2, .max = 256 },
380 .m1 = { .min = 0, .max = 0 },
381 .m2 = { .min = 0, .max = 254 },
382 .p = { .min = 7, .max = 112 },
383 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700384 .p2 = { .dot_limit = 112000,
385 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700386};
387
Eric Anholt273e27c2011-03-30 13:01:10 -0700388/* Ironlake / Sandybridge
389 *
390 * We calculate clock using (register_value + 2) for N/M1/M2, so here
391 * the range value for them is (actual_value - 2).
392 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800393static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700394 .dot = { .min = 25000, .max = 350000 },
395 .vco = { .min = 1760000, .max = 3510000 },
396 .n = { .min = 1, .max = 5 },
397 .m = { .min = 79, .max = 127 },
398 .m1 = { .min = 12, .max = 22 },
399 .m2 = { .min = 5, .max = 9 },
400 .p = { .min = 5, .max = 80 },
401 .p1 = { .min = 1, .max = 8 },
402 .p2 = { .dot_limit = 225000,
403 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700404};
405
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800406static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700407 .dot = { .min = 25000, .max = 350000 },
408 .vco = { .min = 1760000, .max = 3510000 },
409 .n = { .min = 1, .max = 3 },
410 .m = { .min = 79, .max = 118 },
411 .m1 = { .min = 12, .max = 22 },
412 .m2 = { .min = 5, .max = 9 },
413 .p = { .min = 28, .max = 112 },
414 .p1 = { .min = 2, .max = 8 },
415 .p2 = { .dot_limit = 225000,
416 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800417};
418
419static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700420 .dot = { .min = 25000, .max = 350000 },
421 .vco = { .min = 1760000, .max = 3510000 },
422 .n = { .min = 1, .max = 3 },
423 .m = { .min = 79, .max = 127 },
424 .m1 = { .min = 12, .max = 22 },
425 .m2 = { .min = 5, .max = 9 },
426 .p = { .min = 14, .max = 56 },
427 .p1 = { .min = 2, .max = 8 },
428 .p2 = { .dot_limit = 225000,
429 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800430};
431
Eric Anholt273e27c2011-03-30 13:01:10 -0700432/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800433static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700434 .dot = { .min = 25000, .max = 350000 },
435 .vco = { .min = 1760000, .max = 3510000 },
436 .n = { .min = 1, .max = 2 },
437 .m = { .min = 79, .max = 126 },
438 .m1 = { .min = 12, .max = 22 },
439 .m2 = { .min = 5, .max = 9 },
440 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400441 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700442 .p2 = { .dot_limit = 225000,
443 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800444};
445
446static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700447 .dot = { .min = 25000, .max = 350000 },
448 .vco = { .min = 1760000, .max = 3510000 },
449 .n = { .min = 1, .max = 3 },
450 .m = { .min = 79, .max = 126 },
451 .m1 = { .min = 12, .max = 22 },
452 .m2 = { .min = 5, .max = 9 },
453 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400454 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700455 .p2 = { .dot_limit = 225000,
456 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800457};
458
Ville Syrjälädc730512013-09-24 21:26:30 +0300459static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300460 /*
461 * These are the data rate limits (measured in fast clocks)
462 * since those are the strictest limits we have. The fast
463 * clock and actual rate limits are more relaxed, so checking
464 * them would make no difference.
465 */
466 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200467 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700468 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700469 .m1 = { .min = 2, .max = 3 },
470 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300471 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300472 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700473};
474
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300475static const intel_limit_t intel_limits_chv = {
476 /*
477 * These are the data rate limits (measured in fast clocks)
478 * since those are the strictest limits we have. The fast
479 * clock and actual rate limits are more relaxed, so checking
480 * them would make no difference.
481 */
482 .dot = { .min = 25000 * 5, .max = 540000 * 5},
Ville Syrjälä17fe1022015-02-26 21:01:52 +0200483 .vco = { .min = 4800000, .max = 6480000 },
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300484 .n = { .min = 1, .max = 1 },
485 .m1 = { .min = 2, .max = 2 },
486 .m2 = { .min = 24 << 22, .max = 175 << 22 },
487 .p1 = { .min = 2, .max = 4 },
488 .p2 = { .p2_slow = 1, .p2_fast = 14 },
489};
490
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200491static const intel_limit_t intel_limits_bxt = {
492 /* FIXME: find real dot limits */
493 .dot = { .min = 0, .max = INT_MAX },
Vandana Kannane6292552015-07-01 17:02:57 +0530494 .vco = { .min = 4800000, .max = 6700000 },
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200495 .n = { .min = 1, .max = 1 },
496 .m1 = { .min = 2, .max = 2 },
497 /* FIXME: find real m2 limits */
498 .m2 = { .min = 2 << 22, .max = 255 << 22 },
499 .p1 = { .min = 2, .max = 4 },
500 .p2 = { .p2_slow = 1, .p2_fast = 20 },
501};
502
Ander Conselvan de Oliveiracdba9542015-06-01 12:49:51 +0200503static bool
504needs_modeset(struct drm_crtc_state *state)
505{
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200506 return drm_atomic_crtc_needs_modeset(state);
Ander Conselvan de Oliveiracdba9542015-06-01 12:49:51 +0200507}
508
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300509/**
510 * Returns whether any output on the specified pipe is of the specified type
511 */
Damien Lespiau40935612014-10-29 11:16:59 +0000512bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300513{
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300514 struct drm_device *dev = crtc->base.dev;
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300515 struct intel_encoder *encoder;
516
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +0300517 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300518 if (encoder->type == type)
519 return true;
520
521 return false;
522}
523
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200524/**
525 * Returns whether any output on the specified pipe will have the specified
526 * type after a staged modeset is complete, i.e., the same as
527 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
528 * encoder->crtc.
529 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200530static bool intel_pipe_will_have_type(const struct intel_crtc_state *crtc_state,
531 int type)
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200532{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200533 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +0300534 struct drm_connector *connector;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200535 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200536 struct intel_encoder *encoder;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200537 int i, num_connectors = 0;
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200538
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +0300539 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200540 if (connector_state->crtc != crtc_state->base.crtc)
541 continue;
542
543 num_connectors++;
544
545 encoder = to_intel_encoder(connector_state->best_encoder);
546 if (encoder->type == type)
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200547 return true;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200548 }
549
550 WARN_ON(num_connectors == 0);
Ander Conselvan de Oliveirad0737e12014-10-29 11:32:30 +0200551
552 return false;
553}
554
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200555static const intel_limit_t *
556intel_ironlake_limit(struct intel_crtc_state *crtc_state, int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800557{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200558 struct drm_device *dev = crtc_state->base.crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800559 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800560
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200561 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100562 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000563 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800564 limit = &intel_limits_ironlake_dual_lvds_100m;
565 else
566 limit = &intel_limits_ironlake_dual_lvds;
567 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000568 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800569 limit = &intel_limits_ironlake_single_lvds_100m;
570 else
571 limit = &intel_limits_ironlake_single_lvds;
572 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200573 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800574 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800575
576 return limit;
577}
578
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200579static const intel_limit_t *
580intel_g4x_limit(struct intel_crtc_state *crtc_state)
Ma Ling044c7c42009-03-18 20:13:23 +0800581{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200582 struct drm_device *dev = crtc_state->base.crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800583 const intel_limit_t *limit;
584
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200585 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100586 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700587 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800588 else
Keith Packarde4b36692009-06-05 19:22:17 -0700589 limit = &intel_limits_g4x_single_channel_lvds;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200590 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI) ||
591 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700592 limit = &intel_limits_g4x_hdmi;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200593 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700594 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800595 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700596 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800597
598 return limit;
599}
600
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200601static const intel_limit_t *
602intel_limit(struct intel_crtc_state *crtc_state, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800603{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200604 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800605 const intel_limit_t *limit;
606
Imre Deak5ab7b0b2015-03-06 03:29:25 +0200607 if (IS_BROXTON(dev))
608 limit = &intel_limits_bxt;
609 else if (HAS_PCH_SPLIT(dev))
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200610 limit = intel_ironlake_limit(crtc_state, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800611 else if (IS_G4X(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200612 limit = intel_g4x_limit(crtc_state);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500613 } else if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200614 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500615 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800616 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500617 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300618 } else if (IS_CHERRYVIEW(dev)) {
619 limit = &intel_limits_chv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700620 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300621 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100622 } else if (!IS_GEN2(dev)) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200623 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100624 limit = &intel_limits_i9xx_lvds;
625 else
626 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800627 } else {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200628 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700629 limit = &intel_limits_i8xx_lvds;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200630 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700631 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200632 else
633 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800634 }
635 return limit;
636}
637
Imre Deakdccbea32015-06-22 23:35:51 +0300638/*
639 * Platform specific helpers to calculate the port PLL loopback- (clock.m),
640 * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast
641 * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic.
642 * The helpers' return value is the rate of the clock that is fed to the
643 * display engine's pipe which can be the above fast dot clock rate or a
644 * divided-down version of it.
645 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500646/* m1 is reserved as 0 in Pineview, n is a ring counter */
Imre Deakdccbea32015-06-22 23:35:51 +0300647static int pnv_calc_dpll_params(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800648{
Shaohua Li21778322009-02-23 15:19:16 +0800649 clock->m = clock->m2 + 2;
650 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200651 if (WARN_ON(clock->n == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300652 return 0;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300653 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
654 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300655
656 return clock->dot;
Shaohua Li21778322009-02-23 15:19:16 +0800657}
658
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200659static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
660{
661 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
662}
663
Imre Deakdccbea32015-06-22 23:35:51 +0300664static int i9xx_calc_dpll_params(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800665{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200666 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800667 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200668 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300669 return 0;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300670 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
671 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300672
673 return clock->dot;
Jesse Barnes79e53942008-11-07 14:24:08 -0800674}
675
Imre Deakdccbea32015-06-22 23:35:51 +0300676static int vlv_calc_dpll_params(int refclk, intel_clock_t *clock)
Imre Deak589eca62015-06-22 23:35:50 +0300677{
678 clock->m = clock->m1 * clock->m2;
679 clock->p = clock->p1 * clock->p2;
680 if (WARN_ON(clock->n == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300681 return 0;
Imre Deak589eca62015-06-22 23:35:50 +0300682 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
683 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300684
685 return clock->dot / 5;
Imre Deak589eca62015-06-22 23:35:50 +0300686}
687
Imre Deakdccbea32015-06-22 23:35:51 +0300688int chv_calc_dpll_params(int refclk, intel_clock_t *clock)
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300689{
690 clock->m = clock->m1 * clock->m2;
691 clock->p = clock->p1 * clock->p2;
692 if (WARN_ON(clock->n == 0 || clock->p == 0))
Imre Deakdccbea32015-06-22 23:35:51 +0300693 return 0;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300694 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
695 clock->n << 22);
696 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Imre Deakdccbea32015-06-22 23:35:51 +0300697
698 return clock->dot / 5;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300699}
700
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800701#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800702/**
703 * Returns whether the given set of divisors are valid for a given refclk with
704 * the given connectors.
705 */
706
Chris Wilson1b894b52010-12-14 20:04:54 +0000707static bool intel_PLL_is_valid(struct drm_device *dev,
708 const intel_limit_t *limit,
709 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800710{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300711 if (clock->n < limit->n.min || limit->n.max < clock->n)
712 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800713 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400714 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800715 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400716 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800717 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400718 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300719
Wayne Boyer666a4532015-12-09 12:29:35 -0800720 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) &&
721 !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev))
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300722 if (clock->m1 <= clock->m2)
723 INTELPllInvalid("m1 <= m2\n");
724
Wayne Boyer666a4532015-12-09 12:29:35 -0800725 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev)) {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300726 if (clock->p < limit->p.min || limit->p.max < clock->p)
727 INTELPllInvalid("p out of range\n");
728 if (clock->m < limit->m.min || limit->m.max < clock->m)
729 INTELPllInvalid("m out of range\n");
730 }
731
Jesse Barnes79e53942008-11-07 14:24:08 -0800732 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400733 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800734 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
735 * connector, etc., rather than just a single range.
736 */
737 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400738 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800739
740 return true;
741}
742
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300743static int
744i9xx_select_p2_div(const intel_limit_t *limit,
745 const struct intel_crtc_state *crtc_state,
746 int target)
Jesse Barnes79e53942008-11-07 14:24:08 -0800747{
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300748 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800749
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200750 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800751 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100752 * For LVDS just rely on its current settings for dual-channel.
753 * We haven't figured out how to reliably set up different
754 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800755 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100756 if (intel_is_dual_link_lvds(dev))
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300757 return limit->p2.p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800758 else
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300759 return limit->p2.p2_slow;
Jesse Barnes79e53942008-11-07 14:24:08 -0800760 } else {
761 if (target < limit->p2.dot_limit)
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300762 return limit->p2.p2_slow;
Jesse Barnes79e53942008-11-07 14:24:08 -0800763 else
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300764 return limit->p2.p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -0800765 }
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300766}
767
768static bool
769i9xx_find_best_dpll(const intel_limit_t *limit,
770 struct intel_crtc_state *crtc_state,
771 int target, int refclk, intel_clock_t *match_clock,
772 intel_clock_t *best_clock)
773{
774 struct drm_device *dev = crtc_state->base.crtc->dev;
775 intel_clock_t clock;
776 int err = target;
Jesse Barnes79e53942008-11-07 14:24:08 -0800777
Akshay Joshi0206e352011-08-16 15:34:10 -0400778 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800779
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300780 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
781
Zhao Yakui42158662009-11-20 11:24:18 +0800782 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
783 clock.m1++) {
784 for (clock.m2 = limit->m2.min;
785 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200786 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800787 break;
788 for (clock.n = limit->n.min;
789 clock.n <= limit->n.max; clock.n++) {
790 for (clock.p1 = limit->p1.min;
791 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800792 int this_err;
793
Imre Deakdccbea32015-06-22 23:35:51 +0300794 i9xx_calc_dpll_params(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000795 if (!intel_PLL_is_valid(dev, limit,
796 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800797 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800798 if (match_clock &&
799 clock.p != match_clock->p)
800 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800801
802 this_err = abs(clock.dot - target);
803 if (this_err < err) {
804 *best_clock = clock;
805 err = this_err;
806 }
807 }
808 }
809 }
810 }
811
812 return (err != target);
813}
814
Ma Lingd4906092009-03-18 20:13:27 +0800815static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200816pnv_find_best_dpll(const intel_limit_t *limit,
817 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200818 int target, int refclk, intel_clock_t *match_clock,
819 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200820{
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300821 struct drm_device *dev = crtc_state->base.crtc->dev;
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200822 intel_clock_t clock;
823 int err = target;
824
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200825 memset(best_clock, 0, sizeof(*best_clock));
826
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300827 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
828
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200829 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
830 clock.m1++) {
831 for (clock.m2 = limit->m2.min;
832 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200833 for (clock.n = limit->n.min;
834 clock.n <= limit->n.max; clock.n++) {
835 for (clock.p1 = limit->p1.min;
836 clock.p1 <= limit->p1.max; clock.p1++) {
837 int this_err;
838
Imre Deakdccbea32015-06-22 23:35:51 +0300839 pnv_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800840 if (!intel_PLL_is_valid(dev, limit,
841 &clock))
842 continue;
843 if (match_clock &&
844 clock.p != match_clock->p)
845 continue;
846
847 this_err = abs(clock.dot - target);
848 if (this_err < err) {
849 *best_clock = clock;
850 err = this_err;
851 }
852 }
853 }
854 }
855 }
856
857 return (err != target);
858}
859
Ma Lingd4906092009-03-18 20:13:27 +0800860static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200861g4x_find_best_dpll(const intel_limit_t *limit,
862 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200863 int target, int refclk, intel_clock_t *match_clock,
864 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800865{
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300866 struct drm_device *dev = crtc_state->base.crtc->dev;
Ma Lingd4906092009-03-18 20:13:27 +0800867 intel_clock_t clock;
868 int max_n;
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300869 bool found = false;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400870 /* approximately equals target * 0.00585 */
871 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800872
873 memset(best_clock, 0, sizeof(*best_clock));
Ville Syrjälä3b1429d2015-06-18 13:47:22 +0300874
875 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
876
Ma Lingd4906092009-03-18 20:13:27 +0800877 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200878 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800879 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200880 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800881 for (clock.m1 = limit->m1.max;
882 clock.m1 >= limit->m1.min; clock.m1--) {
883 for (clock.m2 = limit->m2.max;
884 clock.m2 >= limit->m2.min; clock.m2--) {
885 for (clock.p1 = limit->p1.max;
886 clock.p1 >= limit->p1.min; clock.p1--) {
887 int this_err;
888
Imre Deakdccbea32015-06-22 23:35:51 +0300889 i9xx_calc_dpll_params(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000890 if (!intel_PLL_is_valid(dev, limit,
891 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800892 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000893
894 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800895 if (this_err < err_most) {
896 *best_clock = clock;
897 err_most = this_err;
898 max_n = clock.n;
899 found = true;
900 }
901 }
902 }
903 }
904 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800905 return found;
906}
Ma Lingd4906092009-03-18 20:13:27 +0800907
Imre Deakd5dd62b2015-03-17 11:40:03 +0200908/*
909 * Check if the calculated PLL configuration is more optimal compared to the
910 * best configuration and error found so far. Return the calculated error.
911 */
912static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
913 const intel_clock_t *calculated_clock,
914 const intel_clock_t *best_clock,
915 unsigned int best_error_ppm,
916 unsigned int *error_ppm)
917{
Imre Deak9ca3ba02015-03-17 11:40:05 +0200918 /*
919 * For CHV ignore the error and consider only the P value.
920 * Prefer a bigger P value based on HW requirements.
921 */
922 if (IS_CHERRYVIEW(dev)) {
923 *error_ppm = 0;
924
925 return calculated_clock->p > best_clock->p;
926 }
927
Imre Deak24be4e42015-03-17 11:40:04 +0200928 if (WARN_ON_ONCE(!target_freq))
929 return false;
930
Imre Deakd5dd62b2015-03-17 11:40:03 +0200931 *error_ppm = div_u64(1000000ULL *
932 abs(target_freq - calculated_clock->dot),
933 target_freq);
934 /*
935 * Prefer a better P value over a better (smaller) error if the error
936 * is small. Ensure this preference for future configurations too by
937 * setting the error to 0.
938 */
939 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
940 *error_ppm = 0;
941
942 return true;
943 }
944
945 return *error_ppm + 10 < best_error_ppm;
946}
947
Zhenyu Wang2c072452009-06-05 15:38:42 +0800948static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200949vlv_find_best_dpll(const intel_limit_t *limit,
950 struct intel_crtc_state *crtc_state,
Daniel Vetteree9300b2013-06-03 22:40:22 +0200951 int target, int refclk, intel_clock_t *match_clock,
952 intel_clock_t *best_clock)
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700953{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +0200954 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +0300955 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300956 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300957 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300958 /* min update 19.2 MHz */
959 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300960 bool found = false;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700961
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300962 target *= 5; /* fast clock */
963
964 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700965
966 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300967 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300968 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300969 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300970 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300971 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700972 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300973 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Imre Deakd5dd62b2015-03-17 11:40:03 +0200974 unsigned int ppm;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300975
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300976 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
977 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300978
Imre Deakdccbea32015-06-22 23:35:51 +0300979 vlv_calc_dpll_params(refclk, &clock);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300980
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300981 if (!intel_PLL_is_valid(dev, limit,
982 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300983 continue;
984
Imre Deakd5dd62b2015-03-17 11:40:03 +0200985 if (!vlv_PLL_is_optimal(dev, target,
986 &clock,
987 best_clock,
988 bestppm, &ppm))
989 continue;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300990
Imre Deakd5dd62b2015-03-17 11:40:03 +0200991 *best_clock = clock;
992 bestppm = ppm;
993 found = true;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700994 }
995 }
996 }
997 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700998
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300999 return found;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07001000}
Keith Packarda4fc5ed2009-04-07 16:16:42 -07001001
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001002static bool
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02001003chv_find_best_dpll(const intel_limit_t *limit,
1004 struct intel_crtc_state *crtc_state,
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001005 int target, int refclk, intel_clock_t *match_clock,
1006 intel_clock_t *best_clock)
1007{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02001008 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ander Conselvan de Oliveiraa919ff12014-10-20 13:46:43 +03001009 struct drm_device *dev = crtc->base.dev;
Imre Deak9ca3ba02015-03-17 11:40:05 +02001010 unsigned int best_error_ppm;
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001011 intel_clock_t clock;
1012 uint64_t m2;
1013 int found = false;
1014
1015 memset(best_clock, 0, sizeof(*best_clock));
Imre Deak9ca3ba02015-03-17 11:40:05 +02001016 best_error_ppm = 1000000;
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001017
1018 /*
1019 * Based on hardware doc, the n always set to 1, and m1 always
1020 * set to 2. If requires to support 200Mhz refclk, we need to
1021 * revisit this because n may not 1 anymore.
1022 */
1023 clock.n = 1, clock.m1 = 2;
1024 target *= 5; /* fast clock */
1025
1026 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
1027 for (clock.p2 = limit->p2.p2_fast;
1028 clock.p2 >= limit->p2.p2_slow;
1029 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Imre Deak9ca3ba02015-03-17 11:40:05 +02001030 unsigned int error_ppm;
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001031
1032 clock.p = clock.p1 * clock.p2;
1033
1034 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
1035 clock.n) << 22, refclk * clock.m1);
1036
1037 if (m2 > INT_MAX/clock.m1)
1038 continue;
1039
1040 clock.m2 = m2;
1041
Imre Deakdccbea32015-06-22 23:35:51 +03001042 chv_calc_dpll_params(refclk, &clock);
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001043
1044 if (!intel_PLL_is_valid(dev, limit, &clock))
1045 continue;
1046
Imre Deak9ca3ba02015-03-17 11:40:05 +02001047 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
1048 best_error_ppm, &error_ppm))
1049 continue;
1050
1051 *best_clock = clock;
1052 best_error_ppm = error_ppm;
1053 found = true;
Chon Ming Leeef9348c2014-04-09 13:28:18 +03001054 }
1055 }
1056
1057 return found;
1058}
1059
Imre Deak5ab7b0b2015-03-06 03:29:25 +02001060bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
1061 intel_clock_t *best_clock)
1062{
1063 int refclk = i9xx_get_refclk(crtc_state, 0);
1064
1065 return chv_find_best_dpll(intel_limit(crtc_state, refclk), crtc_state,
1066 target_clock, refclk, NULL, best_clock);
1067}
1068
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001069bool intel_crtc_active(struct drm_crtc *crtc)
1070{
1071 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1072
1073 /* Be paranoid as we can arrive here with only partial
1074 * state retrieved from the hardware during setup.
1075 *
Damien Lespiau241bfc32013-09-25 16:45:37 +01001076 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001077 * as Haswell has gained clock readout/fastboot support.
1078 *
Dave Airlie66e514c2014-04-03 07:51:54 +10001079 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001080 * properly reconstruct framebuffers.
Matt Roperc3d1f432015-03-09 10:19:23 -07001081 *
1082 * FIXME: The intel_crtc->active here should be switched to
1083 * crtc->state->active once we have proper CRTC states wired up
1084 * for atomic.
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001085 */
Matt Roperc3d1f432015-03-09 10:19:23 -07001086 return intel_crtc->active && crtc->primary->state->fb &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001087 intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +03001088}
1089
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001090enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1091 enum pipe pipe)
1092{
1093 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1094 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1095
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001096 return intel_crtc->config->cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -02001097}
1098
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001099static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1100{
1101 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001102 i915_reg_t reg = PIPEDSL(pipe);
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001103 u32 line1, line2;
1104 u32 line_mask;
1105
1106 if (IS_GEN2(dev))
1107 line_mask = DSL_LINEMASK_GEN2;
1108 else
1109 line_mask = DSL_LINEMASK_GEN3;
1110
1111 line1 = I915_READ(reg) & line_mask;
Daniel Vetter6adfb1e2015-07-07 09:10:40 +02001112 msleep(5);
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001113 line2 = I915_READ(reg) & line_mask;
1114
1115 return line1 == line2;
1116}
1117
Keith Packardab7ad7f2010-10-03 00:33:06 -07001118/*
1119 * intel_wait_for_pipe_off - wait for pipe to turn off
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001120 * @crtc: crtc whose pipe to wait for
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001121 *
1122 * After disabling a pipe, we can't wait for vblank in the usual way,
1123 * spinning on the vblank interrupt status bit, since we won't actually
1124 * see an interrupt when the pipe is disabled.
1125 *
Keith Packardab7ad7f2010-10-03 00:33:06 -07001126 * On Gen4 and above:
1127 * wait for the pipe register state bit to turn off
1128 *
1129 * Otherwise:
1130 * wait for the display line value to settle (it usually
1131 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +01001132 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001133 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001134static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001135{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001136 struct drm_device *dev = crtc->base.dev;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001137 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001138 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03001139 enum pipe pipe = crtc->pipe;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001140
Keith Packardab7ad7f2010-10-03 00:33:06 -07001141 if (INTEL_INFO(dev)->gen >= 4) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001142 i915_reg_t reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001143
Keith Packardab7ad7f2010-10-03 00:33:06 -07001144 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +01001145 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1146 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 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -07001149 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +03001150 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001151 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001152 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001153}
1154
Jesse Barnesb24e7172011-01-04 15:09:30 -08001155static const char *state_string(bool enabled)
1156{
1157 return enabled ? "on" : "off";
1158}
1159
1160/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001161void assert_pll(struct drm_i915_private *dev_priv,
1162 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001163{
Jesse Barnesb24e7172011-01-04 15:09:30 -08001164 u32 val;
1165 bool cur_state;
1166
Ville Syrjälä649636e2015-09-22 19:50:01 +03001167 val = I915_READ(DPLL(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001168 cur_state = !!(val & DPLL_VCO_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001169 I915_STATE_WARN(cur_state != state,
Jesse Barnesb24e7172011-01-04 15:09:30 -08001170 "PLL state assertion failure (expected %s, current %s)\n",
1171 state_string(state), state_string(cur_state));
1172}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001173
Jani Nikula23538ef2013-08-27 15:12:22 +03001174/* XXX: the dsi pll is shared between MIPI DSI ports */
1175static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1176{
1177 u32 val;
1178 bool cur_state;
1179
Ville Syrjäläa5805162015-05-26 20:42:30 +03001180 mutex_lock(&dev_priv->sb_lock);
Jani Nikula23538ef2013-08-27 15:12:22 +03001181 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001182 mutex_unlock(&dev_priv->sb_lock);
Jani Nikula23538ef2013-08-27 15:12:22 +03001183
1184 cur_state = val & DSI_PLL_VCO_EN;
Rob Clarke2c719b2014-12-15 13:56:32 -05001185 I915_STATE_WARN(cur_state != state,
Jani Nikula23538ef2013-08-27 15:12:22 +03001186 "DSI PLL state assertion failure (expected %s, current %s)\n",
1187 state_string(state), state_string(cur_state));
1188}
1189#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1190#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1191
Daniel Vetter55607e82013-06-16 21:42:39 +02001192struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001193intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001194{
Daniel Vettere2b78262013-06-07 23:10:03 +02001195 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1196
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001197 if (crtc->config->shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001198 return NULL;
1199
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001200 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001201}
1202
Jesse Barnesb24e7172011-01-04 15:09:30 -08001203/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001204void assert_shared_dpll(struct drm_i915_private *dev_priv,
1205 struct intel_shared_dpll *pll,
1206 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001207{
Jesse Barnes040484a2011-01-03 12:14:26 -08001208 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001209 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001210
Chris Wilson92b27b02012-05-20 18:10:50 +01001211 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001212 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001213 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001214
Daniel Vetter53589012013-06-05 13:34:16 +02001215 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Rob Clarke2c719b2014-12-15 13:56:32 -05001216 I915_STATE_WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001217 "%s assertion failure (expected %s, current %s)\n",
1218 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001219}
Jesse Barnes040484a2011-01-03 12:14:26 -08001220
1221static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1222 enum pipe pipe, bool state)
1223{
Jesse Barnes040484a2011-01-03 12:14:26 -08001224 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 */
Ville Syrjälä649636e2015-09-22 19:50:01 +03001230 u32 val = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
Paulo Zanoniad80a812012-10-24 16:06:19 -02001231 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001232 } else {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001233 u32 val = I915_READ(FDI_TX_CTL(pipe));
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001234 cur_state = !!(val & FDI_TX_ENABLE);
1235 }
Rob Clarke2c719b2014-12-15 13:56:32 -05001236 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001237 "FDI TX state assertion failure (expected %s, current %s)\n",
1238 state_string(state), state_string(cur_state));
1239}
1240#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1241#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1242
1243static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1244 enum pipe pipe, bool state)
1245{
Jesse Barnes040484a2011-01-03 12:14:26 -08001246 u32 val;
1247 bool cur_state;
1248
Ville Syrjälä649636e2015-09-22 19:50:01 +03001249 val = I915_READ(FDI_RX_CTL(pipe));
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001250 cur_state = !!(val & FDI_RX_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001251 I915_STATE_WARN(cur_state != state,
Jesse Barnes040484a2011-01-03 12:14:26 -08001252 "FDI RX state assertion failure (expected %s, current %s)\n",
1253 state_string(state), state_string(cur_state));
1254}
1255#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1256#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1257
1258static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1259 enum pipe pipe)
1260{
Jesse Barnes040484a2011-01-03 12:14:26 -08001261 u32 val;
1262
1263 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001264 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001265 return;
1266
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001267 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001268 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001269 return;
1270
Ville Syrjälä649636e2015-09-22 19:50:01 +03001271 val = I915_READ(FDI_TX_CTL(pipe));
Rob Clarke2c719b2014-12-15 13:56:32 -05001272 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 -08001273}
1274
Daniel Vetter55607e82013-06-16 21:42:39 +02001275void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1276 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001277{
Jesse Barnes040484a2011-01-03 12:14:26 -08001278 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001279 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001280
Ville Syrjälä649636e2015-09-22 19:50:01 +03001281 val = I915_READ(FDI_RX_CTL(pipe));
Daniel Vetter55607e82013-06-16 21:42:39 +02001282 cur_state = !!(val & FDI_RX_PLL_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001283 I915_STATE_WARN(cur_state != state,
Daniel Vetter55607e82013-06-16 21:42:39 +02001284 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1285 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001286}
1287
Daniel Vetterb680c372014-09-19 18:27:27 +02001288void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1289 enum pipe pipe)
Jesse Barnesea0760c2011-01-04 15:09:32 -08001290{
Jani Nikulabedd4db2014-08-22 15:04:13 +03001291 struct drm_device *dev = dev_priv->dev;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001292 i915_reg_t pp_reg;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001293 u32 val;
1294 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001295 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001296
Jani Nikulabedd4db2014-08-22 15:04:13 +03001297 if (WARN_ON(HAS_DDI(dev)))
1298 return;
1299
1300 if (HAS_PCH_SPLIT(dev)) {
1301 u32 port_sel;
1302
Jesse Barnesea0760c2011-01-04 15:09:32 -08001303 pp_reg = PCH_PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001304 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1305
1306 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1307 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1308 panel_pipe = PIPE_B;
1309 /* XXX: else fix for eDP */
Wayne Boyer666a4532015-12-09 12:29:35 -08001310 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Jani Nikulabedd4db2014-08-22 15:04:13 +03001311 /* presumably write lock depends on pipe, not port select */
1312 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1313 panel_pipe = pipe;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001314 } else {
1315 pp_reg = PP_CONTROL;
Jani Nikulabedd4db2014-08-22 15:04:13 +03001316 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1317 panel_pipe = PIPE_B;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001318 }
1319
1320 val = I915_READ(pp_reg);
1321 if (!(val & PANEL_POWER_ON) ||
Jani Nikulaec49ba22014-08-21 15:06:25 +03001322 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
Jesse Barnesea0760c2011-01-04 15:09:32 -08001323 locked = false;
1324
Rob Clarke2c719b2014-12-15 13:56:32 -05001325 I915_STATE_WARN(panel_pipe == pipe && locked,
Jesse Barnesea0760c2011-01-04 15:09:32 -08001326 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001327 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001328}
1329
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001330static void assert_cursor(struct drm_i915_private *dev_priv,
1331 enum pipe pipe, bool state)
1332{
1333 struct drm_device *dev = dev_priv->dev;
1334 bool cur_state;
1335
Paulo Zanonid9d82082014-02-27 16:30:56 -03001336 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä0b87c242015-09-22 19:47:51 +03001337 cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001338 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001339 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001340
Rob Clarke2c719b2014-12-15 13:56:32 -05001341 I915_STATE_WARN(cur_state != state,
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001342 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1343 pipe_name(pipe), state_string(state), state_string(cur_state));
1344}
1345#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1346#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1347
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001348void assert_pipe(struct drm_i915_private *dev_priv,
1349 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001350{
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001351 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001352 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1353 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001354
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001355 /* if we need the pipe quirk it must be always on */
1356 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1357 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Daniel Vetter8e636782012-01-22 01:36:48 +01001358 state = true;
1359
Daniel Vetterf458ebb2014-09-30 10:56:39 +02001360 if (!intel_display_power_is_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001361 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001362 cur_state = false;
1363 } else {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001364 u32 val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni69310162013-01-29 16:35:19 -02001365 cur_state = !!(val & PIPECONF_ENABLE);
1366 }
1367
Rob Clarke2c719b2014-12-15 13:56:32 -05001368 I915_STATE_WARN(cur_state != state,
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001369 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001370 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001371}
1372
Chris Wilson931872f2012-01-16 23:01:13 +00001373static void assert_plane(struct drm_i915_private *dev_priv,
1374 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001375{
Jesse Barnesb24e7172011-01-04 15:09:30 -08001376 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001377 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001378
Ville Syrjälä649636e2015-09-22 19:50:01 +03001379 val = I915_READ(DSPCNTR(plane));
Chris Wilson931872f2012-01-16 23:01:13 +00001380 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001381 I915_STATE_WARN(cur_state != state,
Chris Wilson931872f2012-01-16 23:01:13 +00001382 "plane %c assertion failure (expected %s, current %s)\n",
1383 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001384}
1385
Chris Wilson931872f2012-01-16 23:01:13 +00001386#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1387#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1388
Jesse Barnesb24e7172011-01-04 15:09:30 -08001389static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1390 enum pipe pipe)
1391{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001392 struct drm_device *dev = dev_priv->dev;
Ville Syrjälä649636e2015-09-22 19:50:01 +03001393 int i;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001394
Ville Syrjälä653e1022013-06-04 13:49:05 +03001395 /* Primary planes are fixed to pipes on gen4+ */
1396 if (INTEL_INFO(dev)->gen >= 4) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001397 u32 val = I915_READ(DSPCNTR(pipe));
Rob Clarke2c719b2014-12-15 13:56:32 -05001398 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001399 "plane %c assertion failure, should be disabled but not\n",
1400 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001401 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001402 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001403
Jesse Barnesb24e7172011-01-04 15:09:30 -08001404 /* Need to check both planes against the pipe */
Damien Lespiau055e3932014-08-18 13:49:10 +01001405 for_each_pipe(dev_priv, i) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001406 u32 val = I915_READ(DSPCNTR(i));
1407 enum pipe cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
Jesse Barnesb24e7172011-01-04 15:09:30 -08001408 DISPPLANE_SEL_PIPE_SHIFT;
Rob Clarke2c719b2014-12-15 13:56:32 -05001409 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001410 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1411 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001412 }
1413}
1414
Jesse Barnes19332d72013-03-28 09:55:38 -07001415static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1416 enum pipe pipe)
1417{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001418 struct drm_device *dev = dev_priv->dev;
Ville Syrjälä649636e2015-09-22 19:50:01 +03001419 int sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001420
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001421 if (INTEL_INFO(dev)->gen >= 9) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001422 for_each_sprite(dev_priv, pipe, sprite) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001423 u32 val = I915_READ(PLANE_CTL(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001424 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
Damien Lespiau7feb8b82014-03-12 21:05:38 +00001425 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1426 sprite, pipe_name(pipe));
1427 }
Wayne Boyer666a4532015-12-09 12:29:35 -08001428 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Damien Lespiau3bdcfc02015-02-28 14:54:09 +00001429 for_each_sprite(dev_priv, pipe, sprite) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001430 u32 val = I915_READ(SPCNTR(pipe, sprite));
Rob Clarke2c719b2014-12-15 13:56:32 -05001431 I915_STATE_WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001432 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001433 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001434 }
1435 } else if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001436 u32 val = I915_READ(SPRCTL(pipe));
Rob Clarke2c719b2014-12-15 13:56:32 -05001437 I915_STATE_WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001438 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001439 plane_name(pipe), pipe_name(pipe));
1440 } else if (INTEL_INFO(dev)->gen >= 5) {
Ville Syrjälä649636e2015-09-22 19:50:01 +03001441 u32 val = I915_READ(DVSCNTR(pipe));
Rob Clarke2c719b2014-12-15 13:56:32 -05001442 I915_STATE_WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001443 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1444 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001445 }
1446}
1447
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001448static void assert_vblank_disabled(struct drm_crtc *crtc)
1449{
Rob Clarke2c719b2014-12-15 13:56:32 -05001450 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
Ville Syrjälä08c71e52014-08-06 14:49:45 +03001451 drm_crtc_vblank_put(crtc);
1452}
1453
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001454static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001455{
1456 u32 val;
1457 bool enabled;
1458
Rob Clarke2c719b2014-12-15 13:56:32 -05001459 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001460
Jesse Barnes92f25842011-01-04 15:09:34 -08001461 val = I915_READ(PCH_DREF_CONTROL);
1462 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1463 DREF_SUPERSPREAD_SOURCE_MASK));
Rob Clarke2c719b2014-12-15 13:56:32 -05001464 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
Jesse Barnes92f25842011-01-04 15:09:34 -08001465}
1466
Daniel Vetterab9412b2013-05-03 11:49:46 +02001467static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1468 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001469{
Jesse Barnes92f25842011-01-04 15:09:34 -08001470 u32 val;
1471 bool enabled;
1472
Ville Syrjälä649636e2015-09-22 19:50:01 +03001473 val = I915_READ(PCH_TRANSCONF(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001474 enabled = !!(val & TRANS_ENABLE);
Rob Clarke2c719b2014-12-15 13:56:32 -05001475 I915_STATE_WARN(enabled,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001476 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1477 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001478}
1479
Keith Packard4e634382011-08-06 10:39:45 -07001480static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1481 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001482{
1483 if ((val & DP_PORT_EN) == 0)
1484 return false;
1485
1486 if (HAS_PCH_CPT(dev_priv->dev)) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001487 u32 trans_dp_ctl = I915_READ(TRANS_DP_CTL(pipe));
Keith Packardf0575e92011-07-25 22:12:43 -07001488 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1489 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001490 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1491 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1492 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001493 } else {
1494 if ((val & DP_PIPE_MASK) != (pipe << 30))
1495 return false;
1496 }
1497 return true;
1498}
1499
Keith Packard1519b992011-08-06 10:35:34 -07001500static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1501 enum pipe pipe, u32 val)
1502{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001503 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001504 return false;
1505
1506 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001507 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001508 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001509 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1510 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1511 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001512 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001513 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001514 return false;
1515 }
1516 return true;
1517}
1518
1519static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1520 enum pipe pipe, u32 val)
1521{
1522 if ((val & LVDS_PORT_EN) == 0)
1523 return false;
1524
1525 if (HAS_PCH_CPT(dev_priv->dev)) {
1526 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1527 return false;
1528 } else {
1529 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1530 return false;
1531 }
1532 return true;
1533}
1534
1535static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1536 enum pipe pipe, u32 val)
1537{
1538 if ((val & ADPA_DAC_ENABLE) == 0)
1539 return false;
1540 if (HAS_PCH_CPT(dev_priv->dev)) {
1541 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1542 return false;
1543 } else {
1544 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1545 return false;
1546 }
1547 return true;
1548}
1549
Jesse Barnes291906f2011-02-02 12:28:03 -08001550static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001551 enum pipe pipe, i915_reg_t reg,
1552 u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001553{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001554 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001555 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001556 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001557 i915_mmio_reg_offset(reg), pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001558
Rob Clarke2c719b2014-12-15 13:56:32 -05001559 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001560 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001561 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001562}
1563
1564static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001565 enum pipe pipe, i915_reg_t reg)
Jesse Barnes291906f2011-02-02 12:28:03 -08001566{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001567 u32 val = I915_READ(reg);
Rob Clarke2c719b2014-12-15 13:56:32 -05001568 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001569 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001570 i915_mmio_reg_offset(reg), pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001571
Rob Clarke2c719b2014-12-15 13:56:32 -05001572 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001573 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001574 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001575}
1576
1577static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1578 enum pipe pipe)
1579{
Jesse Barnes291906f2011-02-02 12:28:03 -08001580 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001581
Keith Packardf0575e92011-07-25 22:12:43 -07001582 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1583 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1584 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001585
Ville Syrjälä649636e2015-09-22 19:50:01 +03001586 val = I915_READ(PCH_ADPA);
Rob Clarke2c719b2014-12-15 13:56:32 -05001587 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001588 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001589 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001590
Ville Syrjälä649636e2015-09-22 19:50:01 +03001591 val = I915_READ(PCH_LVDS);
Rob Clarke2c719b2014-12-15 13:56:32 -05001592 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001593 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001594 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001595
Paulo Zanonie2debe92013-02-18 19:00:27 -03001596 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1597 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1598 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001599}
1600
Ville Syrjäläd288f652014-10-28 13:20:22 +02001601static void vlv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001602 const struct intel_crtc_state *pipe_config)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001603{
Daniel Vetter426115c2013-07-11 22:13:42 +02001604 struct drm_device *dev = crtc->base.dev;
1605 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001606 i915_reg_t reg = DPLL(crtc->pipe);
Ville Syrjäläd288f652014-10-28 13:20:22 +02001607 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001608
Daniel Vetter426115c2013-07-11 22:13:42 +02001609 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001610
Daniel Vetter87442f72013-06-06 00:52:17 +02001611 /* PLL is protected by panel, make sure we can write it */
Jani Nikula6a9e7362014-08-22 15:06:35 +03001612 if (IS_MOBILE(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001613 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001614
Daniel Vetter426115c2013-07-11 22:13:42 +02001615 I915_WRITE(reg, dpll);
1616 POSTING_READ(reg);
1617 udelay(150);
1618
1619 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1620 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1621
Ville Syrjäläd288f652014-10-28 13:20:22 +02001622 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
Daniel Vetter426115c2013-07-11 22:13:42 +02001623 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001624
1625 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001626 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001627 POSTING_READ(reg);
1628 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001629 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001630 POSTING_READ(reg);
1631 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001632 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001633 POSTING_READ(reg);
1634 udelay(150); /* wait for warmup */
1635}
1636
Ville Syrjäläd288f652014-10-28 13:20:22 +02001637static void chv_enable_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001638 const struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001639{
1640 struct drm_device *dev = crtc->base.dev;
1641 struct drm_i915_private *dev_priv = dev->dev_private;
1642 int pipe = crtc->pipe;
1643 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001644 u32 tmp;
1645
1646 assert_pipe_disabled(dev_priv, crtc->pipe);
1647
Ville Syrjäläa5805162015-05-26 20:42:30 +03001648 mutex_lock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001649
1650 /* Enable back the 10bit clock to display controller */
1651 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1652 tmp |= DPIO_DCLKP_EN;
1653 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1654
Ville Syrjälä54433e92015-05-26 20:42:31 +03001655 mutex_unlock(&dev_priv->sb_lock);
1656
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001657 /*
1658 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1659 */
1660 udelay(1);
1661
1662 /* Enable PLL */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001663 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001664
1665 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001666 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001667 DRM_ERROR("PLL %d failed to lock\n", pipe);
1668
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001669 /* not sure when this should be written */
Ville Syrjäläd288f652014-10-28 13:20:22 +02001670 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001671 POSTING_READ(DPLL_MD(pipe));
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001672}
1673
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001674static int intel_num_dvo_pipes(struct drm_device *dev)
1675{
1676 struct intel_crtc *crtc;
1677 int count = 0;
1678
1679 for_each_intel_crtc(dev, crtc)
Maarten Lankhorst3538b9d2015-06-01 12:50:10 +02001680 count += crtc->base.state->active &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001681 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001682
1683 return count;
1684}
1685
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001686static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001687{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001688 struct drm_device *dev = crtc->base.dev;
1689 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001690 i915_reg_t reg = DPLL(crtc->pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001691 u32 dpll = crtc->config->dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001692
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001693 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001694
1695 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001696 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001697
1698 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001699 if (IS_MOBILE(dev) && !IS_I830(dev))
1700 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001701
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001702 /* Enable DVO 2x clock on both PLLs if necessary */
1703 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1704 /*
1705 * It appears to be important that we don't enable this
1706 * for the current pipe before otherwise configuring the
1707 * PLL. No idea how this should be handled if multiple
1708 * DVO outputs are enabled simultaneosly.
1709 */
1710 dpll |= DPLL_DVO_2X_MODE;
1711 I915_WRITE(DPLL(!crtc->pipe),
1712 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1713 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001714
Ville Syrjäläc2b63372015-10-07 22:08:25 +03001715 /*
1716 * Apparently we need to have VGA mode enabled prior to changing
1717 * the P1/P2 dividers. Otherwise the DPLL will keep using the old
1718 * dividers, even though the register value does change.
1719 */
1720 I915_WRITE(reg, 0);
1721
Ville Syrjälä8e7a65a2015-10-07 22:08:24 +03001722 I915_WRITE(reg, dpll);
1723
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001724 /* Wait for the clocks to stabilize. */
1725 POSTING_READ(reg);
1726 udelay(150);
1727
1728 if (INTEL_INFO(dev)->gen >= 4) {
1729 I915_WRITE(DPLL_MD(crtc->pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001730 crtc->config->dpll_hw_state.dpll_md);
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001731 } else {
1732 /* The pixel multiplier can only be updated once the
1733 * DPLL is enabled and the clocks are stable.
1734 *
1735 * So write it again.
1736 */
1737 I915_WRITE(reg, dpll);
1738 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001739
1740 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001741 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001742 POSTING_READ(reg);
1743 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001744 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001745 POSTING_READ(reg);
1746 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001747 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001748 POSTING_READ(reg);
1749 udelay(150); /* wait for warmup */
1750}
1751
1752/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001753 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001754 * @dev_priv: i915 private structure
1755 * @pipe: pipe PLL to disable
1756 *
1757 * Disable the PLL for @pipe, making sure the pipe is off first.
1758 *
1759 * Note! This is for pre-ILK only.
1760 */
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001761static void i9xx_disable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001762{
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001763 struct drm_device *dev = crtc->base.dev;
1764 struct drm_i915_private *dev_priv = dev->dev_private;
1765 enum pipe pipe = crtc->pipe;
1766
1767 /* Disable DVO 2x clock on both PLLs if necessary */
1768 if (IS_I830(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03001769 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
Maarten Lankhorst3538b9d2015-06-01 12:50:10 +02001770 !intel_num_dvo_pipes(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03001771 I915_WRITE(DPLL(PIPE_B),
1772 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1773 I915_WRITE(DPLL(PIPE_A),
1774 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1775 }
1776
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03001777 /* Don't disable pipe or pipe PLLs if needed */
1778 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1779 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001780 return;
1781
1782 /* Make sure the pipe isn't still relying on us */
1783 assert_pipe_disabled(dev_priv, pipe);
1784
Ville Syrjäläb8afb912015-06-29 15:25:48 +03001785 I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS);
Daniel Vetter50b44a42013-06-05 13:34:33 +02001786 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001787}
1788
Jesse Barnesf6071162013-10-01 10:41:38 -07001789static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1790{
Ville Syrjäläb8afb912015-06-29 15:25:48 +03001791 u32 val;
Jesse Barnesf6071162013-10-01 10:41:38 -07001792
1793 /* Make sure the pipe isn't still relying on us */
1794 assert_pipe_disabled(dev_priv, pipe);
1795
Imre Deake5cbfbf2014-01-09 17:08:16 +02001796 /*
1797 * Leave integrated clock source and reference clock enabled for pipe B.
1798 * The latter is needed for VGA hotplug / manual detection.
1799 */
Ville Syrjäläb8afb912015-06-29 15:25:48 +03001800 val = DPLL_VGA_MODE_DIS;
Jesse Barnesf6071162013-10-01 10:41:38 -07001801 if (pipe == PIPE_B)
Ville Syrjälä60bfe442015-06-29 15:25:49 +03001802 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REF_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001803 I915_WRITE(DPLL(pipe), val);
1804 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001805
1806}
1807
1808static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1809{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001810 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001811 u32 val;
1812
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001813 /* Make sure the pipe isn't still relying on us */
1814 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001815
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001816 /* Set PLL en = 0 */
Ville Syrjälä60bfe442015-06-29 15:25:49 +03001817 val = DPLL_SSC_REF_CLK_CHV |
1818 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001819 if (pipe != PIPE_A)
1820 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1821 I915_WRITE(DPLL(pipe), val);
1822 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001823
Ville Syrjäläa5805162015-05-26 20:42:30 +03001824 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläd7520482014-04-09 13:28:59 +03001825
1826 /* Disable 10bit clock to display controller */
1827 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1828 val &= ~DPIO_DCLKP_EN;
1829 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1830
Ville Syrjäläa5805162015-05-26 20:42:30 +03001831 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001832}
1833
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001834void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001835 struct intel_digital_port *dport,
1836 unsigned int expected_mask)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001837{
1838 u32 port_mask;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001839 i915_reg_t dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001840
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001841 switch (dport->port) {
1842 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001843 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001844 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001845 break;
1846 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001847 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001848 dpll_reg = DPLL(0);
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001849 expected_mask <<= 4;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001850 break;
1851 case PORT_D:
1852 port_mask = DPLL_PORTD_READY_MASK;
1853 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001854 break;
1855 default:
1856 BUG();
1857 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001858
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001859 if (wait_for((I915_READ(dpll_reg) & port_mask) == expected_mask, 1000))
1860 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1861 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001862}
1863
Daniel Vetterb14b1052014-04-24 23:55:13 +02001864static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1865{
1866 struct drm_device *dev = crtc->base.dev;
1867 struct drm_i915_private *dev_priv = dev->dev_private;
1868 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1869
Chris Wilsonbe19f0f2014-05-28 16:16:42 +01001870 if (WARN_ON(pll == NULL))
1871 return;
1872
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001873 WARN_ON(!pll->config.crtc_mask);
Daniel Vetterb14b1052014-04-24 23:55:13 +02001874 if (pll->active == 0) {
1875 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1876 WARN_ON(pll->on);
1877 assert_shared_dpll_disabled(dev_priv, pll);
1878
1879 pll->mode_set(dev_priv, pll);
1880 }
1881}
1882
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001883/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001884 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001885 * @dev_priv: i915 private structure
1886 * @pipe: pipe PLL to enable
1887 *
1888 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1889 * drives the transcoder clock.
1890 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001891static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001892{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001893 struct drm_device *dev = crtc->base.dev;
1894 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001895 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001896
Daniel Vetter87a875b2013-06-05 13:34:19 +02001897 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001898 return;
1899
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02001900 if (WARN_ON(pll->config.crtc_mask == 0))
Chris Wilson48da64a2012-05-13 20:16:12 +01001901 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001902
Damien Lespiau74dd6922014-07-29 18:06:17 +01001903 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
Daniel Vetter46edb022013-06-05 13:34:12 +02001904 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001905 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001906
Daniel Vettercdbd2312013-06-05 13:34:03 +02001907 if (pll->active++) {
1908 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001909 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001910 return;
1911 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001912 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001913
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001914 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1915
Daniel Vetter46edb022013-06-05 13:34:12 +02001916 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001917 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001918 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001919}
1920
Damien Lespiauf6daaec2014-08-09 23:00:56 +01001921static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001922{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001923 struct drm_device *dev = crtc->base.dev;
1924 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001925 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001926
Jesse Barnes92f25842011-01-04 15:09:34 -08001927 /* PCH only available on ILK+ */
Jesse Barnes80aa9312015-08-03 13:09:11 -07001928 if (INTEL_INFO(dev)->gen < 5)
1929 return;
1930
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +02001931 if (pll == NULL)
1932 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001933
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +02001934 if (WARN_ON(!(pll->config.crtc_mask & (1 << drm_crtc_index(&crtc->base)))))
Chris Wilson48da64a2012-05-13 20:16:12 +01001935 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001936
Daniel Vetter46edb022013-06-05 13:34:12 +02001937 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1938 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001939 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001940
Chris Wilson48da64a2012-05-13 20:16:12 +01001941 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001942 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001943 return;
1944 }
1945
Daniel Vettere9d69442013-06-05 13:34:15 +02001946 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001947 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001948 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001949 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001950
Daniel Vetter46edb022013-06-05 13:34:12 +02001951 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001952 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001953 pll->on = false;
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03001954
1955 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
Jesse Barnes92f25842011-01-04 15:09:34 -08001956}
1957
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001958static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1959 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001960{
Daniel Vetter23670b322012-11-01 09:15:30 +01001961 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001962 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001963 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001964 i915_reg_t reg;
1965 uint32_t val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001966
1967 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03001968 BUG_ON(!HAS_PCH_SPLIT(dev));
Jesse Barnes040484a2011-01-03 12:14:26 -08001969
1970 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001971 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001972 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001973
1974 /* FDI must be feeding us bits for PCH ports */
1975 assert_fdi_tx_enabled(dev_priv, pipe);
1976 assert_fdi_rx_enabled(dev_priv, pipe);
1977
Daniel Vetter23670b322012-11-01 09:15:30 +01001978 if (HAS_PCH_CPT(dev)) {
1979 /* Workaround: Set the timing override bit before enabling the
1980 * pch transcoder. */
1981 reg = TRANS_CHICKEN2(pipe);
1982 val = I915_READ(reg);
1983 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1984 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001985 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001986
Daniel Vetterab9412b2013-05-03 11:49:46 +02001987 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001988 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001989 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001990
1991 if (HAS_PCH_IBX(dev_priv->dev)) {
1992 /*
Ville Syrjäläc5de7c62015-05-05 17:06:22 +03001993 * Make the BPC in transcoder be consistent with
1994 * that in pipeconf reg. For HDMI we must use 8bpc
1995 * here for both 8bpc and 12bpc.
Jesse Barnese9bcff52011-06-24 12:19:20 -07001996 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001997 val &= ~PIPECONF_BPC_MASK;
Ville Syrjäläc5de7c62015-05-05 17:06:22 +03001998 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_HDMI))
1999 val |= PIPECONF_8BPC;
2000 else
2001 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07002002 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002003
2004 val &= ~TRANS_INTERLACE_MASK;
2005 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02002006 if (HAS_PCH_IBX(dev_priv->dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03002007 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02002008 val |= TRANS_LEGACY_INTERLACED_ILK;
2009 else
2010 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02002011 else
2012 val |= TRANS_PROGRESSIVE;
2013
Jesse Barnes040484a2011-01-03 12:14:26 -08002014 I915_WRITE(reg, val | TRANS_ENABLE);
2015 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03002016 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08002017}
2018
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002019static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02002020 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08002021{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002022 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002023
2024 /* PCH only available on ILK+ */
Ville Syrjälä55522f32014-09-03 14:09:53 +03002025 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002026
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002027 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01002028 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02002029 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002030
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002031 /* Workaround: set timing override bit. */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03002032 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
Daniel Vetter23670b322012-11-01 09:15:30 +01002033 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03002034 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002035
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02002036 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02002037 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002038
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02002039 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
2040 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02002041 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002042 else
2043 val |= TRANS_PROGRESSIVE;
2044
Daniel Vetterab9412b2013-05-03 11:49:46 +02002045 I915_WRITE(LPT_TRANSCONF, val);
2046 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02002047 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002048}
2049
Paulo Zanonib8a4f402012-10-31 18:12:42 -02002050static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
2051 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08002052{
Daniel Vetter23670b322012-11-01 09:15:30 +01002053 struct drm_device *dev = dev_priv->dev;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002054 i915_reg_t reg;
2055 uint32_t val;
Jesse Barnes040484a2011-01-03 12:14:26 -08002056
2057 /* FDI relies on the transcoder */
2058 assert_fdi_tx_disabled(dev_priv, pipe);
2059 assert_fdi_rx_disabled(dev_priv, pipe);
2060
Jesse Barnes291906f2011-02-02 12:28:03 -08002061 /* Ports must be off as well */
2062 assert_pch_ports_disabled(dev_priv, pipe);
2063
Daniel Vetterab9412b2013-05-03 11:49:46 +02002064 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002065 val = I915_READ(reg);
2066 val &= ~TRANS_ENABLE;
2067 I915_WRITE(reg, val);
2068 /* wait for PCH transcoder off, transcoder state */
2069 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03002070 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01002071
Ville Syrjäläc4656132015-10-29 21:25:56 +02002072 if (HAS_PCH_CPT(dev)) {
Daniel Vetter23670b322012-11-01 09:15:30 +01002073 /* Workaround: Clear the timing override chicken bit again. */
2074 reg = TRANS_CHICKEN2(pipe);
2075 val = I915_READ(reg);
2076 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
2077 I915_WRITE(reg, val);
2078 }
Jesse Barnes040484a2011-01-03 12:14:26 -08002079}
2080
Paulo Zanoniab4d9662012-10-31 18:12:55 -02002081static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002082{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002083 u32 val;
2084
Daniel Vetterab9412b2013-05-03 11:49:46 +02002085 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002086 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02002087 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02002088 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02002089 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02002090 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02002091
2092 /* Workaround: clear timing override bit. */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03002093 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
Daniel Vetter23670b322012-11-01 09:15:30 +01002094 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03002095 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
Jesse Barnes92f25842011-01-04 15:09:34 -08002096}
2097
2098/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002099 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02002100 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002101 *
Paulo Zanoni03722642014-01-17 13:51:09 -02002102 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002103 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002104 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02002105static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002106{
Paulo Zanoni03722642014-01-17 13:51:09 -02002107 struct drm_device *dev = crtc->base.dev;
2108 struct drm_i915_private *dev_priv = dev->dev_private;
2109 enum pipe pipe = crtc->pipe;
Ville Syrjälä1a70a7282015-10-29 21:25:50 +02002110 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter1a240d42012-11-29 22:18:51 +01002111 enum pipe pch_transcoder;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002112 i915_reg_t reg;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002113 u32 val;
2114
Ville Syrjälä9e2ee2d2015-06-24 21:59:35 +03002115 DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe));
2116
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002117 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002118 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02002119 assert_sprites_disabled(dev_priv, pipe);
2120
Paulo Zanoni681e5812012-12-06 11:12:38 -02002121 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002122 pch_transcoder = TRANSCODER_A;
2123 else
2124 pch_transcoder = pipe;
2125
Jesse Barnesb24e7172011-01-04 15:09:30 -08002126 /*
2127 * A pipe without a PLL won't actually be able to drive bits from
2128 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2129 * need the check.
2130 */
Imre Deak50360402015-01-16 00:55:16 -08002131 if (HAS_GMCH_DISPLAY(dev_priv->dev))
Jani Nikulaa65347b2015-11-27 12:21:46 +02002132 if (crtc->config->has_dsi_encoder)
Jani Nikula23538ef2013-08-27 15:12:22 +03002133 assert_dsi_pll_enabled(dev_priv);
2134 else
2135 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002136 else {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002137 if (crtc->config->has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002138 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002139 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002140 assert_fdi_tx_pll_enabled(dev_priv,
2141 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002142 }
2143 /* FIXME: assert CPU port conditions for SNB+ */
2144 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002145
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002146 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002147 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002148 if (val & PIPECONF_ENABLE) {
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002149 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2150 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
Chris Wilson00d70b12011-03-17 07:18:29 +00002151 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002152 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002153
2154 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002155 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002156}
2157
2158/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002159 * intel_disable_pipe - disable a pipe, asserting requirements
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002160 * @crtc: crtc whose pipes is to be disabled
Jesse Barnesb24e7172011-01-04 15:09:30 -08002161 *
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002162 * Disable the pipe of @crtc, making sure that various hardware
2163 * specific requirements are met, if applicable, e.g. plane
2164 * disabled, panel fitter off, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08002165 *
2166 * Will wait until the pipe has shut down before returning.
2167 */
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002168static void intel_disable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002169{
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002170 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002171 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03002172 enum pipe pipe = crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002173 i915_reg_t reg;
Jesse Barnesb24e7172011-01-04 15:09:30 -08002174 u32 val;
2175
Ville Syrjälä9e2ee2d2015-06-24 21:59:35 +03002176 DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe));
2177
Jesse Barnesb24e7172011-01-04 15:09:30 -08002178 /*
2179 * Make sure planes won't keep trying to pump pixels to us,
2180 * or we might hang the display.
2181 */
2182 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002183 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002184 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002185
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002186 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002187 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002188 if ((val & PIPECONF_ENABLE) == 0)
2189 return;
2190
Ville Syrjälä67adc642014-08-15 01:21:57 +03002191 /*
2192 * Double wide has implications for planes
2193 * so best keep it disabled when not needed.
2194 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002195 if (crtc->config->double_wide)
Ville Syrjälä67adc642014-08-15 01:21:57 +03002196 val &= ~PIPECONF_DOUBLE_WIDE;
2197
2198 /* Don't disable pipe or pipe PLLs if needed */
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03002199 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2200 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
Ville Syrjälä67adc642014-08-15 01:21:57 +03002201 val &= ~PIPECONF_ENABLE;
2202
2203 I915_WRITE(reg, val);
2204 if ((val & PIPECONF_ENABLE) == 0)
2205 intel_wait_for_pipe_off(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002206}
2207
Chris Wilson693db182013-03-05 14:52:39 +00002208static bool need_vtd_wa(struct drm_device *dev)
2209{
2210#ifdef CONFIG_INTEL_IOMMU
2211 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2212 return true;
2213#endif
2214 return false;
2215}
2216
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002217unsigned int
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002218intel_tile_height(struct drm_device *dev, uint32_t pixel_format,
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01002219 uint64_t fb_format_modifier, unsigned int plane)
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002220{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002221 unsigned int tile_height;
2222 uint32_t pixel_bytes;
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002223
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002224 switch (fb_format_modifier) {
2225 case DRM_FORMAT_MOD_NONE:
2226 tile_height = 1;
2227 break;
2228 case I915_FORMAT_MOD_X_TILED:
2229 tile_height = IS_GEN2(dev) ? 16 : 8;
2230 break;
2231 case I915_FORMAT_MOD_Y_TILED:
2232 tile_height = 32;
2233 break;
2234 case I915_FORMAT_MOD_Yf_TILED:
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01002235 pixel_bytes = drm_format_plane_cpp(pixel_format, plane);
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002236 switch (pixel_bytes) {
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002237 default:
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002238 case 1:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002239 tile_height = 64;
2240 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002241 case 2:
2242 case 4:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002243 tile_height = 32;
2244 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002245 case 8:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002246 tile_height = 16;
2247 break;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002248 case 16:
Damien Lespiaub5d0e9b2015-02-27 11:15:19 +00002249 WARN_ONCE(1,
2250 "128-bit pixels are not supported for display!");
2251 tile_height = 16;
2252 break;
2253 }
2254 break;
2255 default:
2256 MISSING_CASE(fb_format_modifier);
2257 tile_height = 1;
2258 break;
2259 }
Daniel Vetter091df6c2015-02-10 17:16:10 +00002260
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00002261 return tile_height;
2262}
2263
2264unsigned int
2265intel_fb_align_height(struct drm_device *dev, unsigned int height,
2266 uint32_t pixel_format, uint64_t fb_format_modifier)
2267{
2268 return ALIGN(height, intel_tile_height(dev, pixel_format,
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01002269 fb_format_modifier, 0));
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002270}
2271
Daniel Vetter75c82a52015-10-14 16:51:04 +02002272static void
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002273intel_fill_fb_ggtt_view(struct i915_ggtt_view *view, struct drm_framebuffer *fb,
2274 const struct drm_plane_state *plane_state)
2275{
Daniel Vettera6d09182015-10-14 16:51:05 +02002276 struct intel_rotation_info *info = &view->params.rotation_info;
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01002277 unsigned int tile_height, tile_pitch;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002278
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002279 *view = i915_ggtt_view_normal;
2280
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002281 if (!plane_state)
Daniel Vetter75c82a52015-10-14 16:51:04 +02002282 return;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002283
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002284 if (!intel_rotation_90_or_270(plane_state->rotation))
Daniel Vetter75c82a52015-10-14 16:51:04 +02002285 return;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002286
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02002287 *view = i915_ggtt_view_rotated;
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002288
2289 info->height = fb->height;
2290 info->pixel_format = fb->pixel_format;
2291 info->pitch = fb->pitches[0];
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01002292 info->uv_offset = fb->offsets[1];
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00002293 info->fb_modifier = fb->modifier[0];
2294
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01002295 tile_height = intel_tile_height(fb->dev, fb->pixel_format,
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01002296 fb->modifier[0], 0);
Tvrtko Ursulin84fe03f2015-06-23 14:26:46 +01002297 tile_pitch = PAGE_SIZE / tile_height;
2298 info->width_pages = DIV_ROUND_UP(fb->pitches[0], tile_pitch);
2299 info->height_pages = DIV_ROUND_UP(fb->height, tile_height);
2300 info->size = info->width_pages * info->height_pages * PAGE_SIZE;
2301
Tvrtko Ursulin89e3e142015-09-21 10:45:34 +01002302 if (info->pixel_format == DRM_FORMAT_NV12) {
2303 tile_height = intel_tile_height(fb->dev, fb->pixel_format,
2304 fb->modifier[0], 1);
2305 tile_pitch = PAGE_SIZE / tile_height;
2306 info->width_pages_uv = DIV_ROUND_UP(fb->pitches[0], tile_pitch);
2307 info->height_pages_uv = DIV_ROUND_UP(fb->height / 2,
2308 tile_height);
2309 info->size_uv = info->width_pages_uv * info->height_pages_uv *
2310 PAGE_SIZE;
2311 }
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002312}
2313
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002314static unsigned int intel_linear_alignment(struct drm_i915_private *dev_priv)
2315{
2316 if (INTEL_INFO(dev_priv)->gen >= 9)
2317 return 256 * 1024;
Ville Syrjälä985b8bb2015-06-11 16:31:15 +03002318 else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) ||
Wayne Boyer666a4532015-12-09 12:29:35 -08002319 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002320 return 128 * 1024;
2321 else if (INTEL_INFO(dev_priv)->gen >= 4)
2322 return 4 * 1024;
2323 else
Ville Syrjälä44c59052015-06-11 16:31:16 +03002324 return 0;
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002325}
2326
Chris Wilson127bd2a2010-07-23 23:32:05 +01002327int
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002328intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2329 struct drm_framebuffer *fb,
Maarten Lankhorst7580d772015-08-18 13:40:06 +02002330 const struct drm_plane_state *plane_state)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002331{
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002332 struct drm_device *dev = fb->dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002333 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin850c4cd2014-10-30 16:39:38 +00002334 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002335 struct i915_ggtt_view view;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002336 u32 alignment;
2337 int ret;
2338
Matt Roperebcdd392014-07-09 16:22:11 -07002339 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2340
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002341 switch (fb->modifier[0]) {
2342 case DRM_FORMAT_MOD_NONE:
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002343 alignment = intel_linear_alignment(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002344 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002345 case I915_FORMAT_MOD_X_TILED:
Damien Lespiau1fada4c2013-07-03 21:06:02 +01002346 if (INTEL_INFO(dev)->gen >= 9)
2347 alignment = 256 * 1024;
2348 else {
2349 /* pin() will align the object as required by fence */
2350 alignment = 0;
2351 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002352 break;
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002353 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiau1327b9a2015-02-27 11:15:20 +00002354 case I915_FORMAT_MOD_Yf_TILED:
2355 if (WARN_ONCE(INTEL_INFO(dev)->gen < 9,
2356 "Y tiling bo slipped through, driver bug!\n"))
2357 return -EINVAL;
2358 alignment = 1 * 1024 * 1024;
2359 break;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002360 default:
Tvrtko Ursulin7b911ad2015-02-10 17:16:15 +00002361 MISSING_CASE(fb->modifier[0]);
2362 return -EINVAL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002363 }
2364
Daniel Vetter75c82a52015-10-14 16:51:04 +02002365 intel_fill_fb_ggtt_view(&view, fb, plane_state);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002366
Chris Wilson693db182013-03-05 14:52:39 +00002367 /* Note that the w/a also requires 64 PTE of padding following the
2368 * bo. We currently fill all unused PTE with the shadow page and so
2369 * we should always have valid PTE following the scanout preventing
2370 * the VT-d warning.
2371 */
2372 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2373 alignment = 256 * 1024;
2374
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002375 /*
2376 * Global gtt pte registers are special registers which actually forward
2377 * writes to a chunk of system memory. Which means that there is no risk
2378 * that the register values disappear as soon as we call
2379 * intel_runtime_pm_put(), so it is correct to wrap only the
2380 * pin/unpin/fence and not more.
2381 */
2382 intel_runtime_pm_get(dev_priv);
2383
Maarten Lankhorst7580d772015-08-18 13:40:06 +02002384 ret = i915_gem_object_pin_to_display_plane(obj, alignment,
2385 &view);
Chris Wilson48b956c2010-09-14 12:50:34 +01002386 if (ret)
Maarten Lankhorstb26a6b32015-09-23 13:27:09 +02002387 goto err_pm;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002388
2389 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2390 * fence, whereas 965+ only requires a fence if using
2391 * framebuffer compression. For simplicity, we always install
2392 * a fence as the cost is not that onerous.
2393 */
Vivek Kasireddy98072162015-10-29 18:54:38 -07002394 if (view.type == I915_GGTT_VIEW_NORMAL) {
2395 ret = i915_gem_object_get_fence(obj);
2396 if (ret == -EDEADLK) {
2397 /*
2398 * -EDEADLK means there are no free fences
2399 * no pending flips.
2400 *
2401 * This is propagated to atomic, but it uses
2402 * -EDEADLK to force a locking recovery, so
2403 * change the returned error to -EBUSY.
2404 */
2405 ret = -EBUSY;
2406 goto err_unpin;
2407 } else if (ret)
2408 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002409
Vivek Kasireddy98072162015-10-29 18:54:38 -07002410 i915_gem_object_pin_fence(obj);
2411 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002412
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002413 intel_runtime_pm_put(dev_priv);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002414 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002415
2416err_unpin:
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002417 i915_gem_object_unpin_from_display_plane(obj, &view);
Maarten Lankhorstb26a6b32015-09-23 13:27:09 +02002418err_pm:
Paulo Zanonid6dd6842014-08-15 15:59:32 -03002419 intel_runtime_pm_put(dev_priv);
Chris Wilson48b956c2010-09-14 12:50:34 +01002420 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002421}
2422
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002423static void intel_unpin_fb_obj(struct drm_framebuffer *fb,
2424 const struct drm_plane_state *plane_state)
Chris Wilson1690e1e2011-12-14 13:57:08 +01002425{
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002426 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002427 struct i915_ggtt_view view;
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +00002428
Matt Roperebcdd392014-07-09 16:22:11 -07002429 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2430
Daniel Vetter75c82a52015-10-14 16:51:04 +02002431 intel_fill_fb_ggtt_view(&view, fb, plane_state);
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002432
Vivek Kasireddy98072162015-10-29 18:54:38 -07002433 if (view.type == I915_GGTT_VIEW_NORMAL)
2434 i915_gem_object_unpin_fence(obj);
2435
Tvrtko Ursulinf64b98c2015-03-23 11:10:35 +00002436 i915_gem_object_unpin_from_display_plane(obj, &view);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002437}
2438
Daniel Vetterc2c75132012-07-05 12:17:30 +02002439/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2440 * is assumed to be a power-of-two. */
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002441unsigned long intel_gen4_compute_page_offset(struct drm_i915_private *dev_priv,
2442 int *x, int *y,
Chris Wilsonbc752862013-02-21 20:04:31 +00002443 unsigned int tiling_mode,
2444 unsigned int cpp,
2445 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002446{
Chris Wilsonbc752862013-02-21 20:04:31 +00002447 if (tiling_mode != I915_TILING_NONE) {
2448 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002449
Chris Wilsonbc752862013-02-21 20:04:31 +00002450 tile_rows = *y / 8;
2451 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002452
Chris Wilsonbc752862013-02-21 20:04:31 +00002453 tiles = *x / (512/cpp);
2454 *x %= 512/cpp;
2455
2456 return tile_rows * pitch * 8 + tiles * 4096;
2457 } else {
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002458 unsigned int alignment = intel_linear_alignment(dev_priv) - 1;
Chris Wilsonbc752862013-02-21 20:04:31 +00002459 unsigned int offset;
2460
2461 offset = *y * pitch + *x * cpp;
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002462 *y = (offset & alignment) / pitch;
2463 *x = ((offset & alignment) - *y * pitch) / cpp;
2464 return offset & ~alignment;
Chris Wilsonbc752862013-02-21 20:04:31 +00002465 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002466}
2467
Damien Lespiaub35d63f2015-01-20 12:51:50 +00002468static int i9xx_format_to_fourcc(int format)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002469{
2470 switch (format) {
2471 case DISPPLANE_8BPP:
2472 return DRM_FORMAT_C8;
2473 case DISPPLANE_BGRX555:
2474 return DRM_FORMAT_XRGB1555;
2475 case DISPPLANE_BGRX565:
2476 return DRM_FORMAT_RGB565;
2477 default:
2478 case DISPPLANE_BGRX888:
2479 return DRM_FORMAT_XRGB8888;
2480 case DISPPLANE_RGBX888:
2481 return DRM_FORMAT_XBGR8888;
2482 case DISPPLANE_BGRX101010:
2483 return DRM_FORMAT_XRGB2101010;
2484 case DISPPLANE_RGBX101010:
2485 return DRM_FORMAT_XBGR2101010;
2486 }
2487}
2488
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00002489static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2490{
2491 switch (format) {
2492 case PLANE_CTL_FORMAT_RGB_565:
2493 return DRM_FORMAT_RGB565;
2494 default:
2495 case PLANE_CTL_FORMAT_XRGB_8888:
2496 if (rgb_order) {
2497 if (alpha)
2498 return DRM_FORMAT_ABGR8888;
2499 else
2500 return DRM_FORMAT_XBGR8888;
2501 } else {
2502 if (alpha)
2503 return DRM_FORMAT_ARGB8888;
2504 else
2505 return DRM_FORMAT_XRGB8888;
2506 }
2507 case PLANE_CTL_FORMAT_XRGB_2101010:
2508 if (rgb_order)
2509 return DRM_FORMAT_XBGR2101010;
2510 else
2511 return DRM_FORMAT_XRGB2101010;
2512 }
2513}
2514
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002515static bool
Daniel Vetterf6936e22015-03-26 12:17:05 +01002516intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2517 struct intel_initial_plane_config *plane_config)
Jesse Barnes46f297f2014-03-07 08:57:48 -08002518{
2519 struct drm_device *dev = crtc->base.dev;
Paulo Zanoni3badb492015-09-23 12:52:23 -03002520 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002521 struct drm_i915_gem_object *obj = NULL;
2522 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Damien Lespiau2d140302015-02-05 17:22:18 +00002523 struct drm_framebuffer *fb = &plane_config->fb->base;
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002524 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2525 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2526 PAGE_SIZE);
2527
2528 size_aligned -= base_aligned;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002529
Chris Wilsonff2652e2014-03-10 08:07:02 +00002530 if (plane_config->size == 0)
2531 return false;
2532
Paulo Zanoni3badb492015-09-23 12:52:23 -03002533 /* If the FB is too big, just don't use it since fbdev is not very
2534 * important and we should probably use that space with FBC or other
2535 * features. */
2536 if (size_aligned * 2 > dev_priv->gtt.stolen_usable_size)
2537 return false;
2538
Daniel Vetterf37b5c22015-02-10 23:12:27 +01002539 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2540 base_aligned,
2541 base_aligned,
2542 size_aligned);
Jesse Barnes46f297f2014-03-07 08:57:48 -08002543 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002544 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002545
Damien Lespiau49af4492015-01-20 12:51:44 +00002546 obj->tiling_mode = plane_config->tiling;
2547 if (obj->tiling_mode == I915_TILING_X)
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002548 obj->stride = fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002549
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002550 mode_cmd.pixel_format = fb->pixel_format;
2551 mode_cmd.width = fb->width;
2552 mode_cmd.height = fb->height;
2553 mode_cmd.pitches[0] = fb->pitches[0];
Daniel Vetter18c52472015-02-10 17:16:09 +00002554 mode_cmd.modifier[0] = fb->modifier[0];
2555 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002556
2557 mutex_lock(&dev->struct_mutex);
Damien Lespiau6bf129d2015-02-05 17:22:16 +00002558 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002559 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002560 DRM_DEBUG_KMS("intel fb init failed\n");
2561 goto out_unref_obj;
2562 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002563 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002564
Daniel Vetterf6936e22015-03-26 12:17:05 +01002565 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002566 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002567
2568out_unref_obj:
2569 drm_gem_object_unreference(&obj->base);
2570 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002571 return false;
2572}
2573
Matt Roperafd65eb2015-02-03 13:10:04 -08002574/* Update plane->state->fb to match plane->fb after driver-internal updates */
2575static void
2576update_state_fb(struct drm_plane *plane)
2577{
2578 if (plane->fb == plane->state->fb)
2579 return;
2580
2581 if (plane->state->fb)
2582 drm_framebuffer_unreference(plane->state->fb);
2583 plane->state->fb = plane->fb;
2584 if (plane->state->fb)
2585 drm_framebuffer_reference(plane->state->fb);
2586}
2587
Damien Lespiau5724dbd2015-01-20 12:51:52 +00002588static void
Daniel Vetterf6936e22015-03-26 12:17:05 +01002589intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2590 struct intel_initial_plane_config *plane_config)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002591{
2592 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnesd9ceb812014-10-09 12:57:43 -07002593 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002594 struct drm_crtc *c;
2595 struct intel_crtc *i;
Matt Roper2ff8fde2014-07-08 07:50:07 -07002596 struct drm_i915_gem_object *obj;
Daniel Vetter88595ac2015-03-26 12:42:24 +01002597 struct drm_plane *primary = intel_crtc->base.primary;
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002598 struct drm_plane_state *plane_state = primary->state;
Matt Roper200757f2015-12-03 11:37:36 -08002599 struct drm_crtc_state *crtc_state = intel_crtc->base.state;
2600 struct intel_plane *intel_plane = to_intel_plane(primary);
Daniel Vetter88595ac2015-03-26 12:42:24 +01002601 struct drm_framebuffer *fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002602
Damien Lespiau2d140302015-02-05 17:22:18 +00002603 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002604 return;
2605
Daniel Vetterf6936e22015-03-26 12:17:05 +01002606 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002607 fb = &plane_config->fb->base;
2608 goto valid_fb;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002609 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002610
Damien Lespiau2d140302015-02-05 17:22:18 +00002611 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002612
2613 /*
2614 * Failed to alloc the obj, check to see if we should share
2615 * an fb with another CRTC instead
2616 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002617 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002618 i = to_intel_crtc(c);
2619
2620 if (c == &intel_crtc->base)
2621 continue;
2622
Matt Roper2ff8fde2014-07-08 07:50:07 -07002623 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002624 continue;
2625
Daniel Vetter88595ac2015-03-26 12:42:24 +01002626 fb = c->primary->fb;
2627 if (!fb)
Matt Roper2ff8fde2014-07-08 07:50:07 -07002628 continue;
2629
Daniel Vetter88595ac2015-03-26 12:42:24 +01002630 obj = intel_fb_obj(fb);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002631 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002632 drm_framebuffer_reference(fb);
2633 goto valid_fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002634 }
2635 }
Daniel Vetter88595ac2015-03-26 12:42:24 +01002636
Matt Roper200757f2015-12-03 11:37:36 -08002637 /*
2638 * We've failed to reconstruct the BIOS FB. Current display state
2639 * indicates that the primary plane is visible, but has a NULL FB,
2640 * which will lead to problems later if we don't fix it up. The
2641 * simplest solution is to just disable the primary plane now and
2642 * pretend the BIOS never had it enabled.
2643 */
2644 to_intel_plane_state(plane_state)->visible = false;
2645 crtc_state->plane_mask &= ~(1 << drm_plane_index(primary));
2646 intel_pre_disable_primary(&intel_crtc->base);
2647 intel_plane->disable_plane(primary, &intel_crtc->base);
2648
Daniel Vetter88595ac2015-03-26 12:42:24 +01002649 return;
2650
2651valid_fb:
Ville Syrjäläf44e2652015-11-13 19:16:13 +02002652 plane_state->src_x = 0;
2653 plane_state->src_y = 0;
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002654 plane_state->src_w = fb->width << 16;
2655 plane_state->src_h = fb->height << 16;
2656
Ville Syrjäläf44e2652015-11-13 19:16:13 +02002657 plane_state->crtc_x = 0;
2658 plane_state->crtc_y = 0;
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002659 plane_state->crtc_w = fb->width;
2660 plane_state->crtc_h = fb->height;
2661
Daniel Vetter88595ac2015-03-26 12:42:24 +01002662 obj = intel_fb_obj(fb);
2663 if (obj->tiling_mode != I915_TILING_NONE)
2664 dev_priv->preserve_bios_swizzle = true;
2665
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002666 drm_framebuffer_reference(fb);
2667 primary->fb = primary->state->fb = fb;
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002668 primary->crtc = primary->state->crtc = &intel_crtc->base;
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002669 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
Ville Syrjäläa9ff8712015-06-24 21:59:34 +03002670 obj->frontbuffer_bits |= to_intel_plane(primary)->frontbuffer_bit;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002671}
2672
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002673static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2674 struct drm_framebuffer *fb,
2675 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002676{
2677 struct drm_device *dev = crtc->dev;
2678 struct drm_i915_private *dev_priv = dev->dev_private;
2679 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002680 struct drm_plane *primary = crtc->primary;
2681 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002682 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002683 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002684 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002685 u32 dspcntr;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002686 i915_reg_t reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302687 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002688
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002689 if (!visible || !fb) {
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002690 I915_WRITE(reg, 0);
2691 if (INTEL_INFO(dev)->gen >= 4)
2692 I915_WRITE(DSPSURF(plane), 0);
2693 else
2694 I915_WRITE(DSPADDR(plane), 0);
2695 POSTING_READ(reg);
2696 return;
2697 }
2698
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002699 obj = intel_fb_obj(fb);
2700 if (WARN_ON(obj == NULL))
2701 return;
2702
2703 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2704
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002705 dspcntr = DISPPLANE_GAMMA_ENABLE;
2706
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002707 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002708
2709 if (INTEL_INFO(dev)->gen < 4) {
2710 if (intel_crtc->pipe == PIPE_B)
2711 dspcntr |= DISPPLANE_SEL_PIPE_B;
2712
2713 /* pipesrc and dspsize control the size that is scaled from,
2714 * which should always be the user's requested size.
2715 */
2716 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002717 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2718 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002719 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002720 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2721 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002722 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2723 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002724 I915_WRITE(PRIMPOS(plane), 0);
2725 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002726 }
2727
Ville Syrjälä57779d02012-10-31 17:50:14 +02002728 switch (fb->pixel_format) {
2729 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002730 dspcntr |= DISPPLANE_8BPP;
2731 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002732 case DRM_FORMAT_XRGB1555:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002733 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002734 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002735 case DRM_FORMAT_RGB565:
2736 dspcntr |= DISPPLANE_BGRX565;
2737 break;
2738 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002739 dspcntr |= DISPPLANE_BGRX888;
2740 break;
2741 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002742 dspcntr |= DISPPLANE_RGBX888;
2743 break;
2744 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002745 dspcntr |= DISPPLANE_BGRX101010;
2746 break;
2747 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002748 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002749 break;
2750 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002751 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002752 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002753
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002754 if (INTEL_INFO(dev)->gen >= 4 &&
2755 obj->tiling_mode != I915_TILING_NONE)
2756 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002757
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002758 if (IS_G4X(dev))
2759 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2760
Ville Syrjäläb98971272014-08-27 16:51:22 +03002761 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002762
Daniel Vetterc2c75132012-07-05 12:17:30 +02002763 if (INTEL_INFO(dev)->gen >= 4) {
2764 intel_crtc->dspaddr_offset =
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002765 intel_gen4_compute_page_offset(dev_priv,
2766 &x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002767 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002768 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002769 linear_offset -= intel_crtc->dspaddr_offset;
2770 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002771 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002772 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002773
Matt Roper8e7d6882015-01-21 16:35:41 -08002774 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302775 dspcntr |= DISPPLANE_ROTATE_180;
2776
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002777 x += (intel_crtc->config->pipe_src_w - 1);
2778 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302779
2780 /* Finding the last pixel of the last line of the display
2781 data and adding to linear_offset*/
2782 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002783 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2784 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302785 }
2786
Paulo Zanoni2db33662015-09-14 15:20:03 -03002787 intel_crtc->adjusted_x = x;
2788 intel_crtc->adjusted_y = y;
2789
Sonika Jindal48404c12014-08-22 14:06:04 +05302790 I915_WRITE(reg, dspcntr);
2791
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002792 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002793 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002794 I915_WRITE(DSPSURF(plane),
2795 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002796 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002797 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002798 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002799 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002800 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002801}
2802
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002803static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2804 struct drm_framebuffer *fb,
2805 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002806{
2807 struct drm_device *dev = crtc->dev;
2808 struct drm_i915_private *dev_priv = dev->dev_private;
2809 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002810 struct drm_plane *primary = crtc->primary;
2811 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002812 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002813 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002814 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002815 u32 dspcntr;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002816 i915_reg_t reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302817 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002818
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002819 if (!visible || !fb) {
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002820 I915_WRITE(reg, 0);
2821 I915_WRITE(DSPSURF(plane), 0);
2822 POSTING_READ(reg);
2823 return;
2824 }
2825
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002826 obj = intel_fb_obj(fb);
2827 if (WARN_ON(obj == NULL))
2828 return;
2829
2830 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2831
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002832 dspcntr = DISPPLANE_GAMMA_ENABLE;
2833
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002834 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002835
2836 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2837 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2838
Ville Syrjälä57779d02012-10-31 17:50:14 +02002839 switch (fb->pixel_format) {
2840 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002841 dspcntr |= DISPPLANE_8BPP;
2842 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002843 case DRM_FORMAT_RGB565:
2844 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002845 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002846 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002847 dspcntr |= DISPPLANE_BGRX888;
2848 break;
2849 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002850 dspcntr |= DISPPLANE_RGBX888;
2851 break;
2852 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002853 dspcntr |= DISPPLANE_BGRX101010;
2854 break;
2855 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002856 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002857 break;
2858 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002859 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002860 }
2861
2862 if (obj->tiling_mode != I915_TILING_NONE)
2863 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002864
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002865 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002866 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002867
Ville Syrjäläb98971272014-08-27 16:51:22 +03002868 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002869 intel_crtc->dspaddr_offset =
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002870 intel_gen4_compute_page_offset(dev_priv,
2871 &x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002872 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002873 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002874 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002875 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302876 dspcntr |= DISPPLANE_ROTATE_180;
2877
2878 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002879 x += (intel_crtc->config->pipe_src_w - 1);
2880 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302881
2882 /* Finding the last pixel of the last line of the display
2883 data and adding to linear_offset*/
2884 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002885 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2886 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302887 }
2888 }
2889
Paulo Zanoni2db33662015-09-14 15:20:03 -03002890 intel_crtc->adjusted_x = x;
2891 intel_crtc->adjusted_y = y;
2892
Sonika Jindal48404c12014-08-22 14:06:04 +05302893 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002894
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002895 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002896 I915_WRITE(DSPSURF(plane),
2897 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002898 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002899 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2900 } else {
2901 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2902 I915_WRITE(DSPLINOFF(plane), linear_offset);
2903 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002904 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002905}
2906
Damien Lespiaub3218032015-02-27 11:15:18 +00002907u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2908 uint32_t pixel_format)
2909{
2910 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2911
2912 /*
2913 * The stride is either expressed as a multiple of 64 bytes
2914 * chunks for linear buffers or in number of tiles for tiled
2915 * buffers.
2916 */
2917 switch (fb_modifier) {
2918 case DRM_FORMAT_MOD_NONE:
2919 return 64;
2920 case I915_FORMAT_MOD_X_TILED:
2921 if (INTEL_INFO(dev)->gen == 2)
2922 return 128;
2923 return 512;
2924 case I915_FORMAT_MOD_Y_TILED:
2925 /* No need to check for old gens and Y tiling since this is
2926 * about the display engine and those will be blocked before
2927 * we get here.
2928 */
2929 return 128;
2930 case I915_FORMAT_MOD_Yf_TILED:
2931 if (bits_per_pixel == 8)
2932 return 64;
2933 else
2934 return 128;
2935 default:
2936 MISSING_CASE(fb_modifier);
2937 return 64;
2938 }
2939}
2940
Mika Kuoppala44eb0cb2015-10-30 13:26:15 +02002941u32 intel_plane_obj_offset(struct intel_plane *intel_plane,
2942 struct drm_i915_gem_object *obj,
2943 unsigned int plane)
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002944{
Daniel Vetterce7f1722015-10-14 16:51:06 +02002945 struct i915_ggtt_view view;
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002946 struct i915_vma *vma;
Mika Kuoppala44eb0cb2015-10-30 13:26:15 +02002947 u64 offset;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002948
Daniel Vetterce7f1722015-10-14 16:51:06 +02002949 intel_fill_fb_ggtt_view(&view, intel_plane->base.fb,
2950 intel_plane->base.state);
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002951
Daniel Vetterce7f1722015-10-14 16:51:06 +02002952 vma = i915_gem_obj_to_ggtt_view(obj, &view);
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002953 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
Daniel Vetterce7f1722015-10-14 16:51:06 +02002954 view.type))
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002955 return -1;
2956
Mika Kuoppala44eb0cb2015-10-30 13:26:15 +02002957 offset = vma->node.start;
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002958
2959 if (plane == 1) {
Daniel Vettera6d09182015-10-14 16:51:05 +02002960 offset += vma->ggtt_view.params.rotation_info.uv_start_page *
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002961 PAGE_SIZE;
2962 }
2963
Mika Kuoppala44eb0cb2015-10-30 13:26:15 +02002964 WARN_ON(upper_32_bits(offset));
2965
2966 return lower_32_bits(offset);
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002967}
2968
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02002969static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
2970{
2971 struct drm_device *dev = intel_crtc->base.dev;
2972 struct drm_i915_private *dev_priv = dev->dev_private;
2973
2974 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
2975 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
2976 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02002977}
2978
Chandra Kondurua1b22782015-04-07 15:28:45 -07002979/*
2980 * This function detaches (aka. unbinds) unused scalers in hardware
2981 */
Maarten Lankhorst05832362015-06-15 12:33:48 +02002982static void skl_detach_scalers(struct intel_crtc *intel_crtc)
Chandra Kondurua1b22782015-04-07 15:28:45 -07002983{
Chandra Kondurua1b22782015-04-07 15:28:45 -07002984 struct intel_crtc_scaler_state *scaler_state;
2985 int i;
2986
Chandra Kondurua1b22782015-04-07 15:28:45 -07002987 scaler_state = &intel_crtc->config->scaler_state;
2988
2989 /* loop through and disable scalers that aren't in use */
2990 for (i = 0; i < intel_crtc->num_scalers; i++) {
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02002991 if (!scaler_state->scalers[i].in_use)
2992 skl_detach_scaler(intel_crtc, i);
Chandra Kondurua1b22782015-04-07 15:28:45 -07002993 }
2994}
2995
Chandra Konduru6156a452015-04-27 13:48:39 -07002996u32 skl_plane_ctl_format(uint32_t pixel_format)
2997{
Chandra Konduru6156a452015-04-27 13:48:39 -07002998 switch (pixel_format) {
Damien Lespiaud161cf72015-05-12 16:13:17 +01002999 case DRM_FORMAT_C8:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003000 return PLANE_CTL_FORMAT_INDEXED;
Chandra Konduru6156a452015-04-27 13:48:39 -07003001 case DRM_FORMAT_RGB565:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003002 return PLANE_CTL_FORMAT_RGB_565;
Chandra Konduru6156a452015-04-27 13:48:39 -07003003 case DRM_FORMAT_XBGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003004 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
Chandra Konduru6156a452015-04-27 13:48:39 -07003005 case DRM_FORMAT_XRGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003006 return PLANE_CTL_FORMAT_XRGB_8888;
Chandra Konduru6156a452015-04-27 13:48:39 -07003007 /*
3008 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
3009 * to be already pre-multiplied. We need to add a knob (or a different
3010 * DRM_FORMAT) for user-space to configure that.
3011 */
3012 case DRM_FORMAT_ABGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003013 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
Chandra Konduru6156a452015-04-27 13:48:39 -07003014 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003015 case DRM_FORMAT_ARGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003016 return PLANE_CTL_FORMAT_XRGB_8888 |
Chandra Konduru6156a452015-04-27 13:48:39 -07003017 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003018 case DRM_FORMAT_XRGB2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003019 return PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07003020 case DRM_FORMAT_XBGR2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003021 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07003022 case DRM_FORMAT_YUYV:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003023 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
Chandra Konduru6156a452015-04-27 13:48:39 -07003024 case DRM_FORMAT_YVYU:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003025 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
Chandra Konduru6156a452015-04-27 13:48:39 -07003026 case DRM_FORMAT_UYVY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003027 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003028 case DRM_FORMAT_VYUY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003029 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003030 default:
Damien Lespiau4249eee2015-05-12 16:13:16 +01003031 MISSING_CASE(pixel_format);
Chandra Konduru6156a452015-04-27 13:48:39 -07003032 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003033
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003034 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003035}
3036
3037u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
3038{
Chandra Konduru6156a452015-04-27 13:48:39 -07003039 switch (fb_modifier) {
3040 case DRM_FORMAT_MOD_NONE:
3041 break;
3042 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003043 return PLANE_CTL_TILED_X;
Chandra Konduru6156a452015-04-27 13:48:39 -07003044 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003045 return PLANE_CTL_TILED_Y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003046 case I915_FORMAT_MOD_Yf_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003047 return PLANE_CTL_TILED_YF;
Chandra Konduru6156a452015-04-27 13:48:39 -07003048 default:
3049 MISSING_CASE(fb_modifier);
3050 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003051
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003052 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003053}
3054
3055u32 skl_plane_ctl_rotation(unsigned int rotation)
3056{
Chandra Konduru6156a452015-04-27 13:48:39 -07003057 switch (rotation) {
3058 case BIT(DRM_ROTATE_0):
3059 break;
Sonika Jindal1e8df162015-05-20 13:40:48 +05303060 /*
3061 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
3062 * while i915 HW rotation is clockwise, thats why this swapping.
3063 */
Chandra Konduru6156a452015-04-27 13:48:39 -07003064 case BIT(DRM_ROTATE_90):
Sonika Jindal1e8df162015-05-20 13:40:48 +05303065 return PLANE_CTL_ROTATE_270;
Chandra Konduru6156a452015-04-27 13:48:39 -07003066 case BIT(DRM_ROTATE_180):
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003067 return PLANE_CTL_ROTATE_180;
Chandra Konduru6156a452015-04-27 13:48:39 -07003068 case BIT(DRM_ROTATE_270):
Sonika Jindal1e8df162015-05-20 13:40:48 +05303069 return PLANE_CTL_ROTATE_90;
Chandra Konduru6156a452015-04-27 13:48:39 -07003070 default:
3071 MISSING_CASE(rotation);
3072 }
3073
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003074 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003075}
3076
Damien Lespiau70d21f02013-07-03 21:06:04 +01003077static void skylake_update_primary_plane(struct drm_crtc *crtc,
3078 struct drm_framebuffer *fb,
3079 int x, int y)
3080{
3081 struct drm_device *dev = crtc->dev;
3082 struct drm_i915_private *dev_priv = dev->dev_private;
3083 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003084 struct drm_plane *plane = crtc->primary;
3085 bool visible = to_intel_plane_state(plane->state)->visible;
Damien Lespiau70d21f02013-07-03 21:06:04 +01003086 struct drm_i915_gem_object *obj;
3087 int pipe = intel_crtc->pipe;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303088 u32 plane_ctl, stride_div, stride;
3089 u32 tile_height, plane_offset, plane_size;
3090 unsigned int rotation;
3091 int x_offset, y_offset;
Mika Kuoppala44eb0cb2015-10-30 13:26:15 +02003092 u32 surf_addr;
Chandra Konduru6156a452015-04-27 13:48:39 -07003093 struct intel_crtc_state *crtc_state = intel_crtc->config;
3094 struct intel_plane_state *plane_state;
3095 int src_x = 0, src_y = 0, src_w = 0, src_h = 0;
3096 int dst_x = 0, dst_y = 0, dst_w = 0, dst_h = 0;
3097 int scaler_id = -1;
3098
Chandra Konduru6156a452015-04-27 13:48:39 -07003099 plane_state = to_intel_plane_state(plane->state);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003100
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003101 if (!visible || !fb) {
Damien Lespiau70d21f02013-07-03 21:06:04 +01003102 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3103 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3104 POSTING_READ(PLANE_CTL(pipe, 0));
3105 return;
3106 }
3107
3108 plane_ctl = PLANE_CTL_ENABLE |
3109 PLANE_CTL_PIPE_GAMMA_ENABLE |
3110 PLANE_CTL_PIPE_CSC_ENABLE;
3111
Chandra Konduru6156a452015-04-27 13:48:39 -07003112 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3113 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003114 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303115
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303116 rotation = plane->state->rotation;
Chandra Konduru6156a452015-04-27 13:48:39 -07003117 plane_ctl |= skl_plane_ctl_rotation(rotation);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003118
Damien Lespiaub3218032015-02-27 11:15:18 +00003119 obj = intel_fb_obj(fb);
3120 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
3121 fb->pixel_format);
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01003122 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303123
Paulo Zanonia42e5a22015-09-30 17:05:43 -03003124 WARN_ON(drm_rect_width(&plane_state->src) == 0);
Chandra Konduru6156a452015-04-27 13:48:39 -07003125
Paulo Zanonia42e5a22015-09-30 17:05:43 -03003126 scaler_id = plane_state->scaler_id;
3127 src_x = plane_state->src.x1 >> 16;
3128 src_y = plane_state->src.y1 >> 16;
3129 src_w = drm_rect_width(&plane_state->src) >> 16;
3130 src_h = drm_rect_height(&plane_state->src) >> 16;
3131 dst_x = plane_state->dst.x1;
3132 dst_y = plane_state->dst.y1;
3133 dst_w = drm_rect_width(&plane_state->dst);
3134 dst_h = drm_rect_height(&plane_state->dst);
3135
3136 WARN_ON(x != src_x || y != src_y);
Chandra Konduru6156a452015-04-27 13:48:39 -07003137
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303138 if (intel_rotation_90_or_270(rotation)) {
3139 /* stride = Surface height in tiles */
Chandra Konduru2614f172015-05-08 20:22:46 -07003140 tile_height = intel_tile_height(dev, fb->pixel_format,
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01003141 fb->modifier[0], 0);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303142 stride = DIV_ROUND_UP(fb->height, tile_height);
Chandra Konduru6156a452015-04-27 13:48:39 -07003143 x_offset = stride * tile_height - y - src_h;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303144 y_offset = x;
Chandra Konduru6156a452015-04-27 13:48:39 -07003145 plane_size = (src_w - 1) << 16 | (src_h - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303146 } else {
3147 stride = fb->pitches[0] / stride_div;
3148 x_offset = x;
3149 y_offset = y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003150 plane_size = (src_h - 1) << 16 | (src_w - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303151 }
3152 plane_offset = y_offset << 16 | x_offset;
Damien Lespiaub3218032015-02-27 11:15:18 +00003153
Paulo Zanoni2db33662015-09-14 15:20:03 -03003154 intel_crtc->adjusted_x = x_offset;
3155 intel_crtc->adjusted_y = y_offset;
3156
Damien Lespiau70d21f02013-07-03 21:06:04 +01003157 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303158 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3159 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3160 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
Chandra Konduru6156a452015-04-27 13:48:39 -07003161
3162 if (scaler_id >= 0) {
3163 uint32_t ps_ctrl = 0;
3164
3165 WARN_ON(!dst_w || !dst_h);
3166 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3167 crtc_state->scaler_state.scalers[scaler_id].mode;
3168 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3169 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3170 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3171 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3172 I915_WRITE(PLANE_POS(pipe, 0), 0);
3173 } else {
3174 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3175 }
3176
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003177 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003178
3179 POSTING_READ(PLANE_SURF(pipe, 0));
3180}
3181
Jesse Barnes17638cd2011-06-24 12:19:23 -07003182/* Assume fb object is pinned & idle & fenced and just update base pointers */
3183static int
3184intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3185 int x, int y, enum mode_set_atomic state)
3186{
3187 struct drm_device *dev = crtc->dev;
3188 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003189
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03003190 if (dev_priv->fbc.deactivate)
3191 dev_priv->fbc.deactivate(dev_priv);
Jesse Barnes81255562010-08-02 12:07:50 -07003192
Daniel Vetter29b9bde2014-04-24 23:55:01 +02003193 dev_priv->display.update_primary_plane(crtc, fb, x, y);
3194
3195 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07003196}
3197
Ville Syrjälä75147472014-11-24 18:28:11 +02003198static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02003199{
Ville Syrjälä96a02912013-02-18 19:08:49 +02003200 struct drm_crtc *crtc;
3201
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003202 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02003203 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3204 enum plane plane = intel_crtc->plane;
3205
3206 intel_prepare_page_flip(dev, plane);
3207 intel_finish_page_flip_plane(dev, plane);
3208 }
Ville Syrjälä75147472014-11-24 18:28:11 +02003209}
3210
3211static void intel_update_primary_planes(struct drm_device *dev)
3212{
Ville Syrjälä75147472014-11-24 18:28:11 +02003213 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003214
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003215 for_each_crtc(dev, crtc) {
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003216 struct intel_plane *plane = to_intel_plane(crtc->primary);
3217 struct intel_plane_state *plane_state;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003218
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003219 drm_modeset_lock_crtc(crtc, &plane->base);
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003220 plane_state = to_intel_plane_state(plane->base.state);
3221
Maarten Lankhorstf029ee82015-09-23 16:29:37 +02003222 if (crtc->state->active && plane_state->base.fb)
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003223 plane->commit_plane(&plane->base, plane_state);
3224
3225 drm_modeset_unlock_crtc(crtc);
Ville Syrjälä96a02912013-02-18 19:08:49 +02003226 }
3227}
3228
Ville Syrjälä75147472014-11-24 18:28:11 +02003229void intel_prepare_reset(struct drm_device *dev)
3230{
3231 /* no reset support for gen2 */
3232 if (IS_GEN2(dev))
3233 return;
3234
3235 /* reset doesn't touch the display */
3236 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
3237 return;
3238
3239 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003240 /*
3241 * Disabling the crtcs gracefully seems nicer. Also the
3242 * g33 docs say we should at least disable all the planes.
3243 */
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02003244 intel_display_suspend(dev);
Ville Syrjälä75147472014-11-24 18:28:11 +02003245}
3246
3247void intel_finish_reset(struct drm_device *dev)
3248{
3249 struct drm_i915_private *dev_priv = to_i915(dev);
3250
3251 /*
3252 * Flips in the rings will be nuked by the reset,
3253 * so complete all pending flips so that user space
3254 * will get its events and not get stuck.
3255 */
3256 intel_complete_page_flips(dev);
3257
3258 /* no reset support for gen2 */
3259 if (IS_GEN2(dev))
3260 return;
3261
3262 /* reset doesn't touch the display */
3263 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
3264 /*
3265 * Flips in the rings have been nuked by the reset,
3266 * so update the base address of all primary
3267 * planes to the the last fb to make sure we're
3268 * showing the correct fb after a reset.
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003269 *
3270 * FIXME: Atomic will make this obsolete since we won't schedule
3271 * CS-based flips (which might get lost in gpu resets) any more.
Ville Syrjälä75147472014-11-24 18:28:11 +02003272 */
3273 intel_update_primary_planes(dev);
3274 return;
3275 }
3276
3277 /*
3278 * The display has been reset as well,
3279 * so need a full re-initialization.
3280 */
3281 intel_runtime_pm_disable_interrupts(dev_priv);
3282 intel_runtime_pm_enable_interrupts(dev_priv);
3283
3284 intel_modeset_init_hw(dev);
3285
3286 spin_lock_irq(&dev_priv->irq_lock);
3287 if (dev_priv->display.hpd_irq_setup)
3288 dev_priv->display.hpd_irq_setup(dev);
3289 spin_unlock_irq(&dev_priv->irq_lock);
3290
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +02003291 intel_display_resume(dev);
Ville Syrjälä75147472014-11-24 18:28:11 +02003292
3293 intel_hpd_init(dev_priv);
3294
3295 drm_modeset_unlock_all(dev);
3296}
3297
Chris Wilson7d5e3792014-03-04 13:15:08 +00003298static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3299{
3300 struct drm_device *dev = crtc->dev;
3301 struct drm_i915_private *dev_priv = dev->dev_private;
3302 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003303 bool pending;
3304
3305 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3306 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3307 return false;
3308
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003309 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003310 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003311 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003312
3313 return pending;
3314}
3315
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003316static void intel_update_pipe_config(struct intel_crtc *crtc,
3317 struct intel_crtc_state *old_crtc_state)
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003318{
3319 struct drm_device *dev = crtc->base.dev;
3320 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003321 struct intel_crtc_state *pipe_config =
3322 to_intel_crtc_state(crtc->base.state);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003323
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003324 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3325 crtc->base.mode = crtc->base.state->mode;
3326
3327 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3328 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3329 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003330
Maarten Lankhorst44522d82015-08-27 15:44:02 +02003331 if (HAS_DDI(dev))
3332 intel_set_pipe_csc(&crtc->base);
3333
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003334 /*
3335 * Update pipe size and adjust fitter if needed: the reason for this is
3336 * that in compute_mode_changes we check the native mode (not the pfit
3337 * mode) to see if we can flip rather than do a full mode set. In the
3338 * fastboot case, we'll flip, but if we don't update the pipesrc and
3339 * pfit state, we'll end up with a big fb scanned out into the wrong
3340 * sized surface.
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003341 */
3342
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003343 I915_WRITE(PIPESRC(crtc->pipe),
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003344 ((pipe_config->pipe_src_w - 1) << 16) |
3345 (pipe_config->pipe_src_h - 1));
3346
3347 /* on skylake this is done by detaching scalers */
3348 if (INTEL_INFO(dev)->gen >= 9) {
3349 skl_detach_scalers(crtc);
3350
3351 if (pipe_config->pch_pfit.enabled)
3352 skylake_pfit_enable(crtc);
3353 } else if (HAS_PCH_SPLIT(dev)) {
3354 if (pipe_config->pch_pfit.enabled)
3355 ironlake_pfit_enable(crtc);
3356 else if (old_crtc_state->pch_pfit.enabled)
3357 ironlake_pfit_disable(crtc, true);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003358 }
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003359}
3360
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003361static void intel_fdi_normal_train(struct drm_crtc *crtc)
3362{
3363 struct drm_device *dev = crtc->dev;
3364 struct drm_i915_private *dev_priv = dev->dev_private;
3365 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3366 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003367 i915_reg_t reg;
3368 u32 temp;
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003369
3370 /* enable normal train */
3371 reg = FDI_TX_CTL(pipe);
3372 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003373 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003374 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3375 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003376 } else {
3377 temp &= ~FDI_LINK_TRAIN_NONE;
3378 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003379 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003380 I915_WRITE(reg, temp);
3381
3382 reg = FDI_RX_CTL(pipe);
3383 temp = I915_READ(reg);
3384 if (HAS_PCH_CPT(dev)) {
3385 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3386 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3387 } else {
3388 temp &= ~FDI_LINK_TRAIN_NONE;
3389 temp |= FDI_LINK_TRAIN_NONE;
3390 }
3391 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3392
3393 /* wait one idle pattern time */
3394 POSTING_READ(reg);
3395 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003396
3397 /* IVB wants error correction enabled */
3398 if (IS_IVYBRIDGE(dev))
3399 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3400 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003401}
3402
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003403/* The FDI link training functions for ILK/Ibexpeak. */
3404static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3405{
3406 struct drm_device *dev = crtc->dev;
3407 struct drm_i915_private *dev_priv = dev->dev_private;
3408 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3409 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003410 i915_reg_t reg;
3411 u32 temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003412
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003413 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003414 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003415
Adam Jacksone1a44742010-06-25 15:32:14 -04003416 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3417 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003418 reg = FDI_RX_IMR(pipe);
3419 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003420 temp &= ~FDI_RX_SYMBOL_LOCK;
3421 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003422 I915_WRITE(reg, temp);
3423 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003424 udelay(150);
3425
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003426 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003427 reg = FDI_TX_CTL(pipe);
3428 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003429 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003430 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003431 temp &= ~FDI_LINK_TRAIN_NONE;
3432 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003433 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003434
Chris Wilson5eddb702010-09-11 13:48:45 +01003435 reg = FDI_RX_CTL(pipe);
3436 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003437 temp &= ~FDI_LINK_TRAIN_NONE;
3438 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003439 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3440
3441 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003442 udelay(150);
3443
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003444 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003445 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3446 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3447 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003448
Chris Wilson5eddb702010-09-11 13:48:45 +01003449 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003450 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003451 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003452 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3453
3454 if ((temp & FDI_RX_BIT_LOCK)) {
3455 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003456 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003457 break;
3458 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003459 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003460 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003461 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003462
3463 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003464 reg = FDI_TX_CTL(pipe);
3465 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003466 temp &= ~FDI_LINK_TRAIN_NONE;
3467 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003468 I915_WRITE(reg, temp);
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_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003474 I915_WRITE(reg, temp);
3475
3476 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003477 udelay(150);
3478
Chris Wilson5eddb702010-09-11 13:48:45 +01003479 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003480 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003481 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003482 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3483
3484 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003485 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003486 DRM_DEBUG_KMS("FDI train 2 done.\n");
3487 break;
3488 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003489 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003490 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003491 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003492
3493 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003494
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003495}
3496
Akshay Joshi0206e352011-08-16 15:34:10 -04003497static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003498 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3499 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3500 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3501 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3502};
3503
3504/* The FDI link training functions for SNB/Cougarpoint. */
3505static void gen6_fdi_link_train(struct drm_crtc *crtc)
3506{
3507 struct drm_device *dev = crtc->dev;
3508 struct drm_i915_private *dev_priv = dev->dev_private;
3509 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3510 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003511 i915_reg_t reg;
3512 u32 temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003513
Adam Jacksone1a44742010-06-25 15:32:14 -04003514 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3515 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003516 reg = FDI_RX_IMR(pipe);
3517 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003518 temp &= ~FDI_RX_SYMBOL_LOCK;
3519 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003520 I915_WRITE(reg, temp);
3521
3522 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003523 udelay(150);
3524
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003525 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003526 reg = FDI_TX_CTL(pipe);
3527 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003528 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003529 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003530 temp &= ~FDI_LINK_TRAIN_NONE;
3531 temp |= FDI_LINK_TRAIN_PATTERN_1;
3532 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3533 /* SNB-B */
3534 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003535 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003536
Daniel Vetterd74cf322012-10-26 10:58:13 +02003537 I915_WRITE(FDI_RX_MISC(pipe),
3538 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3539
Chris Wilson5eddb702010-09-11 13:48:45 +01003540 reg = FDI_RX_CTL(pipe);
3541 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003542 if (HAS_PCH_CPT(dev)) {
3543 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3544 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3545 } else {
3546 temp &= ~FDI_LINK_TRAIN_NONE;
3547 temp |= FDI_LINK_TRAIN_PATTERN_1;
3548 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003549 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3550
3551 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003552 udelay(150);
3553
Akshay Joshi0206e352011-08-16 15:34:10 -04003554 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003555 reg = FDI_TX_CTL(pipe);
3556 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003557 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3558 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003559 I915_WRITE(reg, temp);
3560
3561 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003562 udelay(500);
3563
Sean Paulfa37d392012-03-02 12:53:39 -05003564 for (retry = 0; retry < 5; retry++) {
3565 reg = FDI_RX_IIR(pipe);
3566 temp = I915_READ(reg);
3567 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3568 if (temp & FDI_RX_BIT_LOCK) {
3569 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3570 DRM_DEBUG_KMS("FDI train 1 done.\n");
3571 break;
3572 }
3573 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003574 }
Sean Paulfa37d392012-03-02 12:53:39 -05003575 if (retry < 5)
3576 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003577 }
3578 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003579 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003580
3581 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003582 reg = FDI_TX_CTL(pipe);
3583 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003584 temp &= ~FDI_LINK_TRAIN_NONE;
3585 temp |= FDI_LINK_TRAIN_PATTERN_2;
3586 if (IS_GEN6(dev)) {
3587 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3588 /* SNB-B */
3589 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3590 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003591 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003592
Chris Wilson5eddb702010-09-11 13:48:45 +01003593 reg = FDI_RX_CTL(pipe);
3594 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003595 if (HAS_PCH_CPT(dev)) {
3596 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3597 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3598 } else {
3599 temp &= ~FDI_LINK_TRAIN_NONE;
3600 temp |= FDI_LINK_TRAIN_PATTERN_2;
3601 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003602 I915_WRITE(reg, temp);
3603
3604 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003605 udelay(150);
3606
Akshay Joshi0206e352011-08-16 15:34:10 -04003607 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003608 reg = FDI_TX_CTL(pipe);
3609 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003610 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3611 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003612 I915_WRITE(reg, temp);
3613
3614 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003615 udelay(500);
3616
Sean Paulfa37d392012-03-02 12:53:39 -05003617 for (retry = 0; retry < 5; retry++) {
3618 reg = FDI_RX_IIR(pipe);
3619 temp = I915_READ(reg);
3620 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3621 if (temp & FDI_RX_SYMBOL_LOCK) {
3622 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3623 DRM_DEBUG_KMS("FDI train 2 done.\n");
3624 break;
3625 }
3626 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003627 }
Sean Paulfa37d392012-03-02 12:53:39 -05003628 if (retry < 5)
3629 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003630 }
3631 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003632 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003633
3634 DRM_DEBUG_KMS("FDI train done.\n");
3635}
3636
Jesse Barnes357555c2011-04-28 15:09:55 -07003637/* Manual link training for Ivy Bridge A0 parts */
3638static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3639{
3640 struct drm_device *dev = crtc->dev;
3641 struct drm_i915_private *dev_priv = dev->dev_private;
3642 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3643 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003644 i915_reg_t reg;
3645 u32 temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003646
3647 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3648 for train result */
3649 reg = FDI_RX_IMR(pipe);
3650 temp = I915_READ(reg);
3651 temp &= ~FDI_RX_SYMBOL_LOCK;
3652 temp &= ~FDI_RX_BIT_LOCK;
3653 I915_WRITE(reg, temp);
3654
3655 POSTING_READ(reg);
3656 udelay(150);
3657
Daniel Vetter01a415f2012-10-27 15:58:40 +02003658 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3659 I915_READ(FDI_RX_IIR(pipe)));
3660
Jesse Barnes139ccd32013-08-19 11:04:55 -07003661 /* Try each vswing and preemphasis setting twice before moving on */
3662 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3663 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003664 reg = FDI_TX_CTL(pipe);
3665 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003666 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3667 temp &= ~FDI_TX_ENABLE;
3668 I915_WRITE(reg, temp);
3669
3670 reg = FDI_RX_CTL(pipe);
3671 temp = I915_READ(reg);
3672 temp &= ~FDI_LINK_TRAIN_AUTO;
3673 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3674 temp &= ~FDI_RX_ENABLE;
3675 I915_WRITE(reg, temp);
3676
3677 /* enable CPU FDI TX and PCH FDI RX */
3678 reg = FDI_TX_CTL(pipe);
3679 temp = I915_READ(reg);
3680 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003681 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003682 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003683 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003684 temp |= snb_b_fdi_train_param[j/2];
3685 temp |= FDI_COMPOSITE_SYNC;
3686 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3687
3688 I915_WRITE(FDI_RX_MISC(pipe),
3689 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3690
3691 reg = FDI_RX_CTL(pipe);
3692 temp = I915_READ(reg);
3693 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3694 temp |= FDI_COMPOSITE_SYNC;
3695 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3696
3697 POSTING_READ(reg);
3698 udelay(1); /* should be 0.5us */
3699
3700 for (i = 0; i < 4; i++) {
3701 reg = FDI_RX_IIR(pipe);
3702 temp = I915_READ(reg);
3703 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3704
3705 if (temp & FDI_RX_BIT_LOCK ||
3706 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3707 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3708 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3709 i);
3710 break;
3711 }
3712 udelay(1); /* should be 0.5us */
3713 }
3714 if (i == 4) {
3715 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3716 continue;
3717 }
3718
3719 /* Train 2 */
3720 reg = FDI_TX_CTL(pipe);
3721 temp = I915_READ(reg);
3722 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3723 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3724 I915_WRITE(reg, temp);
3725
3726 reg = FDI_RX_CTL(pipe);
3727 temp = I915_READ(reg);
3728 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3729 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003730 I915_WRITE(reg, temp);
3731
3732 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003733 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003734
Jesse Barnes139ccd32013-08-19 11:04:55 -07003735 for (i = 0; i < 4; i++) {
3736 reg = FDI_RX_IIR(pipe);
3737 temp = I915_READ(reg);
3738 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003739
Jesse Barnes139ccd32013-08-19 11:04:55 -07003740 if (temp & FDI_RX_SYMBOL_LOCK ||
3741 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3742 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3743 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3744 i);
3745 goto train_done;
3746 }
3747 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003748 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003749 if (i == 4)
3750 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003751 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003752
Jesse Barnes139ccd32013-08-19 11:04:55 -07003753train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003754 DRM_DEBUG_KMS("FDI train done.\n");
3755}
3756
Daniel Vetter88cefb62012-08-12 19:27:14 +02003757static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003758{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003759 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003760 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003761 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003762 i915_reg_t reg;
3763 u32 temp;
Jesse Barnesc64e3112010-09-10 11:27:03 -07003764
Jesse Barnes0e23b992010-09-10 11:10:00 -07003765 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003766 reg = FDI_RX_CTL(pipe);
3767 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003768 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003769 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003770 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003771 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3772
3773 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003774 udelay(200);
3775
3776 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003777 temp = I915_READ(reg);
3778 I915_WRITE(reg, temp | FDI_PCDCLK);
3779
3780 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003781 udelay(200);
3782
Paulo Zanoni20749732012-11-23 15:30:38 -02003783 /* Enable CPU FDI TX PLL, always on for Ironlake */
3784 reg = FDI_TX_CTL(pipe);
3785 temp = I915_READ(reg);
3786 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3787 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003788
Paulo Zanoni20749732012-11-23 15:30:38 -02003789 POSTING_READ(reg);
3790 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003791 }
3792}
3793
Daniel Vetter88cefb62012-08-12 19:27:14 +02003794static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3795{
3796 struct drm_device *dev = intel_crtc->base.dev;
3797 struct drm_i915_private *dev_priv = dev->dev_private;
3798 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003799 i915_reg_t reg;
3800 u32 temp;
Daniel Vetter88cefb62012-08-12 19:27:14 +02003801
3802 /* Switch from PCDclk to Rawclk */
3803 reg = FDI_RX_CTL(pipe);
3804 temp = I915_READ(reg);
3805 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3806
3807 /* Disable CPU FDI TX PLL */
3808 reg = FDI_TX_CTL(pipe);
3809 temp = I915_READ(reg);
3810 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3811
3812 POSTING_READ(reg);
3813 udelay(100);
3814
3815 reg = FDI_RX_CTL(pipe);
3816 temp = I915_READ(reg);
3817 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3818
3819 /* Wait for the clocks to turn off. */
3820 POSTING_READ(reg);
3821 udelay(100);
3822}
3823
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003824static void ironlake_fdi_disable(struct drm_crtc *crtc)
3825{
3826 struct drm_device *dev = crtc->dev;
3827 struct drm_i915_private *dev_priv = dev->dev_private;
3828 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3829 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003830 i915_reg_t reg;
3831 u32 temp;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003832
3833 /* disable CPU FDI tx and PCH FDI rx */
3834 reg = FDI_TX_CTL(pipe);
3835 temp = I915_READ(reg);
3836 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3837 POSTING_READ(reg);
3838
3839 reg = FDI_RX_CTL(pipe);
3840 temp = I915_READ(reg);
3841 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003842 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003843 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3844
3845 POSTING_READ(reg);
3846 udelay(100);
3847
3848 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003849 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003850 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003851
3852 /* still set train pattern 1 */
3853 reg = FDI_TX_CTL(pipe);
3854 temp = I915_READ(reg);
3855 temp &= ~FDI_LINK_TRAIN_NONE;
3856 temp |= FDI_LINK_TRAIN_PATTERN_1;
3857 I915_WRITE(reg, temp);
3858
3859 reg = FDI_RX_CTL(pipe);
3860 temp = I915_READ(reg);
3861 if (HAS_PCH_CPT(dev)) {
3862 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3863 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3864 } else {
3865 temp &= ~FDI_LINK_TRAIN_NONE;
3866 temp |= FDI_LINK_TRAIN_PATTERN_1;
3867 }
3868 /* BPC in FDI rx is consistent with that in PIPECONF */
3869 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003870 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003871 I915_WRITE(reg, temp);
3872
3873 POSTING_READ(reg);
3874 udelay(100);
3875}
3876
Chris Wilson5dce5b932014-01-20 10:17:36 +00003877bool intel_has_pending_fb_unpin(struct drm_device *dev)
3878{
3879 struct intel_crtc *crtc;
3880
3881 /* Note that we don't need to be called with mode_config.lock here
3882 * as our list of CRTC objects is static for the lifetime of the
3883 * device and so cannot disappear as we iterate. Similarly, we can
3884 * happily treat the predicates as racy, atomic checks as userspace
3885 * cannot claim and pin a new fb without at least acquring the
3886 * struct_mutex and so serialising with us.
3887 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003888 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003889 if (atomic_read(&crtc->unpin_work_count) == 0)
3890 continue;
3891
3892 if (crtc->unpin_work)
3893 intel_wait_for_vblank(dev, crtc->pipe);
3894
3895 return true;
3896 }
3897
3898 return false;
3899}
3900
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003901static void page_flip_completed(struct intel_crtc *intel_crtc)
3902{
3903 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3904 struct intel_unpin_work *work = intel_crtc->unpin_work;
3905
3906 /* ensure that the unpin work is consistent wrt ->pending. */
3907 smp_rmb();
3908 intel_crtc->unpin_work = NULL;
3909
3910 if (work->event)
3911 drm_send_vblank_event(intel_crtc->base.dev,
3912 intel_crtc->pipe,
3913 work->event);
3914
3915 drm_crtc_vblank_put(&intel_crtc->base);
3916
3917 wake_up_all(&dev_priv->pending_flip_queue);
3918 queue_work(dev_priv->wq, &work->work);
3919
3920 trace_i915_flip_complete(intel_crtc->plane,
3921 work->pending_flip_obj);
3922}
3923
Maarten Lankhorst5008e872015-08-18 13:40:05 +02003924static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003925{
Chris Wilson0f911282012-04-17 10:05:38 +01003926 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003927 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst5008e872015-08-18 13:40:05 +02003928 long ret;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003929
Daniel Vetter2c10d572012-12-20 21:24:07 +01003930 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Maarten Lankhorst5008e872015-08-18 13:40:05 +02003931
3932 ret = wait_event_interruptible_timeout(
3933 dev_priv->pending_flip_queue,
3934 !intel_crtc_has_pending_flip(crtc),
3935 60*HZ);
3936
3937 if (ret < 0)
3938 return ret;
3939
3940 if (ret == 0) {
Chris Wilson9c787942014-09-05 07:13:25 +01003941 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003942
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003943 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003944 if (intel_crtc->unpin_work) {
3945 WARN_ONCE(1, "Removing stuck page flip\n");
3946 page_flip_completed(intel_crtc);
3947 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003948 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003949 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003950
Maarten Lankhorst5008e872015-08-18 13:40:05 +02003951 return 0;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003952}
3953
Ville Syrjälä060f02d2015-12-04 22:21:34 +02003954static void lpt_disable_iclkip(struct drm_i915_private *dev_priv)
3955{
3956 u32 temp;
3957
3958 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3959
3960 mutex_lock(&dev_priv->sb_lock);
3961
3962 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
3963 temp |= SBI_SSCCTL_DISABLE;
3964 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
3965
3966 mutex_unlock(&dev_priv->sb_lock);
3967}
3968
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003969/* Program iCLKIP clock to the desired frequency */
3970static void lpt_program_iclkip(struct drm_crtc *crtc)
3971{
3972 struct drm_device *dev = crtc->dev;
3973 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003974 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003975 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3976 u32 temp;
3977
Ville Syrjälä060f02d2015-12-04 22:21:34 +02003978 lpt_disable_iclkip(dev_priv);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003979
3980 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003981 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003982 auxdiv = 1;
3983 divsel = 0x41;
3984 phaseinc = 0x20;
3985 } else {
3986 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003987 * but the adjusted_mode->crtc_clock in in KHz. To get the
3988 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003989 * convert the virtual clock precision to KHz here for higher
3990 * precision.
3991 */
3992 u32 iclk_virtual_root_freq = 172800 * 1000;
3993 u32 iclk_pi_range = 64;
3994 u32 desired_divisor, msb_divisor_value, pi_value;
3995
Ville Syrjäläa2572f52015-12-04 22:20:21 +02003996 desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq, clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003997 msb_divisor_value = desired_divisor / iclk_pi_range;
3998 pi_value = desired_divisor % iclk_pi_range;
3999
4000 auxdiv = 0;
4001 divsel = msb_divisor_value - 2;
4002 phaseinc = pi_value;
4003 }
4004
4005 /* This should not happen with any sane values */
4006 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
4007 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
4008 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
4009 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
4010
4011 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 +03004012 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004013 auxdiv,
4014 divsel,
4015 phasedir,
4016 phaseinc);
4017
Ville Syrjälä060f02d2015-12-04 22:21:34 +02004018 mutex_lock(&dev_priv->sb_lock);
4019
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004020 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004021 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004022 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
4023 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
4024 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
4025 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
4026 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
4027 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004028 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004029
4030 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004031 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004032 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4033 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004034 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004035
4036 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004037 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004038 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004039 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004040
Ville Syrjälä060f02d2015-12-04 22:21:34 +02004041 mutex_unlock(&dev_priv->sb_lock);
4042
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004043 /* Wait for initialization time */
4044 udelay(24);
4045
4046 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
4047}
4048
Daniel Vetter275f01b22013-05-03 11:49:47 +02004049static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4050 enum pipe pch_transcoder)
4051{
4052 struct drm_device *dev = crtc->base.dev;
4053 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004054 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02004055
4056 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4057 I915_READ(HTOTAL(cpu_transcoder)));
4058 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4059 I915_READ(HBLANK(cpu_transcoder)));
4060 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4061 I915_READ(HSYNC(cpu_transcoder)));
4062
4063 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4064 I915_READ(VTOTAL(cpu_transcoder)));
4065 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4066 I915_READ(VBLANK(cpu_transcoder)));
4067 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4068 I915_READ(VSYNC(cpu_transcoder)));
4069 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4070 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4071}
4072
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004073static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004074{
4075 struct drm_i915_private *dev_priv = dev->dev_private;
4076 uint32_t temp;
4077
4078 temp = I915_READ(SOUTH_CHICKEN1);
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004079 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004080 return;
4081
4082 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4083 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4084
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004085 temp &= ~FDI_BC_BIFURCATION_SELECT;
4086 if (enable)
4087 temp |= FDI_BC_BIFURCATION_SELECT;
4088
4089 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004090 I915_WRITE(SOUTH_CHICKEN1, temp);
4091 POSTING_READ(SOUTH_CHICKEN1);
4092}
4093
4094static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4095{
4096 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004097
4098 switch (intel_crtc->pipe) {
4099 case PIPE_A:
4100 break;
4101 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004102 if (intel_crtc->config->fdi_lanes > 2)
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004103 cpt_set_fdi_bc_bifurcation(dev, false);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004104 else
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004105 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004106
4107 break;
4108 case PIPE_C:
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004109 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004110
4111 break;
4112 default:
4113 BUG();
4114 }
4115}
4116
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004117/* Return which DP Port should be selected for Transcoder DP control */
4118static enum port
4119intel_trans_dp_port_sel(struct drm_crtc *crtc)
4120{
4121 struct drm_device *dev = crtc->dev;
4122 struct intel_encoder *encoder;
4123
4124 for_each_encoder_on_crtc(dev, crtc, encoder) {
4125 if (encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
4126 encoder->type == INTEL_OUTPUT_EDP)
4127 return enc_to_dig_port(&encoder->base)->port;
4128 }
4129
4130 return -1;
4131}
4132
Jesse Barnesf67a5592011-01-05 10:31:48 -08004133/*
4134 * Enable PCH resources required for PCH ports:
4135 * - PCH PLLs
4136 * - FDI training & RX/TX
4137 * - update transcoder timings
4138 * - DP transcoding bits
4139 * - transcoder
4140 */
4141static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08004142{
4143 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004144 struct drm_i915_private *dev_priv = dev->dev_private;
4145 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4146 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004147 u32 temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004148
Daniel Vetterab9412b2013-05-03 11:49:46 +02004149 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01004150
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004151 if (IS_IVYBRIDGE(dev))
4152 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4153
Daniel Vettercd986ab2012-10-26 10:58:12 +02004154 /* Write the TU size bits before fdi link training, so that error
4155 * detection works. */
4156 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4157 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4158
Ville Syrjälä3860b2e2015-11-20 22:09:18 +02004159 /*
4160 * Sometimes spurious CPU pipe underruns happen during FDI
4161 * training, at least with VGA+HDMI cloning. Suppress them.
4162 */
4163 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4164
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004165 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07004166 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004167
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004168 /* We need to program the right clock selection before writing the pixel
4169 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004170 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004171 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004172
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004173 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004174 temp |= TRANS_DPLL_ENABLE(pipe);
4175 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004176 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004177 temp |= sel;
4178 else
4179 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004180 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004181 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004182
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004183 /* XXX: pch pll's can be enabled any time before we enable the PCH
4184 * transcoder, and we actually should do this to not upset any PCH
4185 * transcoder that already use the clock when we share it.
4186 *
4187 * Note that enable_shared_dpll tries to do the right thing, but
4188 * get_shared_dpll unconditionally resets the pll - we need that to have
4189 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02004190 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004191
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08004192 /* set transcoder timing, panel must allow it */
4193 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02004194 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004195
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004196 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08004197
Ville Syrjälä3860b2e2015-11-20 22:09:18 +02004198 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4199
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004200 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004201 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Ville Syrjälä9c4edae2015-10-29 21:25:51 +02004202 const struct drm_display_mode *adjusted_mode =
4203 &intel_crtc->config->base.adjusted_mode;
Daniel Vetterdfd07d72012-12-17 11:21:38 +01004204 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004205 i915_reg_t reg = TRANS_DP_CTL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01004206 temp = I915_READ(reg);
4207 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08004208 TRANS_DP_SYNC_MASK |
4209 TRANS_DP_BPC_MASK);
Ville Syrjäläe3ef4472015-05-05 17:17:31 +03004210 temp |= TRANS_DP_OUTPUT_ENABLE;
Jesse Barnes9325c9f2011-06-24 12:19:21 -07004211 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004212
Ville Syrjälä9c4edae2015-10-29 21:25:51 +02004213 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004214 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Ville Syrjälä9c4edae2015-10-29 21:25:51 +02004215 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004216 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004217
4218 switch (intel_trans_dp_port_sel(crtc)) {
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004219 case PORT_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01004220 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004221 break;
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004222 case PORT_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01004223 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004224 break;
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004225 case PORT_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01004226 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004227 break;
4228 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02004229 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004230 }
4231
Chris Wilson5eddb702010-09-11 13:48:45 +01004232 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004233 }
4234
Paulo Zanonib8a4f402012-10-31 18:12:42 -02004235 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004236}
4237
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004238static void lpt_pch_enable(struct drm_crtc *crtc)
4239{
4240 struct drm_device *dev = crtc->dev;
4241 struct drm_i915_private *dev_priv = dev->dev_private;
4242 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004243 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004244
Daniel Vetterab9412b2013-05-03 11:49:46 +02004245 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004246
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02004247 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004248
Paulo Zanoni0540e482012-10-31 18:12:40 -02004249 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02004250 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004251
Paulo Zanoni937bb612012-10-31 18:12:47 -02004252 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004253}
4254
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004255struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
4256 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004257{
Daniel Vettere2b78262013-06-07 23:10:03 +02004258 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004259 struct intel_shared_dpll *pll;
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004260 struct intel_shared_dpll_config *shared_dpll;
Daniel Vettere2b78262013-06-07 23:10:03 +02004261 enum intel_dpll_id i;
Maarten Lankhorst00490c22015-11-16 14:42:12 +01004262 int max = dev_priv->num_shared_dpll;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004263
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004264 shared_dpll = intel_atomic_get_shared_dpll_state(crtc_state->base.state);
4265
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004266 if (HAS_PCH_IBX(dev_priv->dev)) {
4267 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02004268 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004269 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004270
Daniel Vetter46edb022013-06-05 13:34:12 +02004271 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4272 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004273
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004274 WARN_ON(shared_dpll[i].crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004275
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004276 goto found;
4277 }
4278
Satheeshakrishna Mbcddf6102014-08-22 09:49:10 +05304279 if (IS_BROXTON(dev_priv->dev)) {
4280 /* PLL is attached to port in bxt */
4281 struct intel_encoder *encoder;
4282 struct intel_digital_port *intel_dig_port;
4283
4284 encoder = intel_ddi_get_crtc_new_encoder(crtc_state);
4285 if (WARN_ON(!encoder))
4286 return NULL;
4287
4288 intel_dig_port = enc_to_dig_port(&encoder->base);
4289 /* 1:1 mapping between ports and PLLs */
4290 i = (enum intel_dpll_id)intel_dig_port->port;
4291 pll = &dev_priv->shared_dplls[i];
4292 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4293 crtc->base.base.id, pll->name);
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004294 WARN_ON(shared_dpll[i].crtc_mask);
Satheeshakrishna Mbcddf6102014-08-22 09:49:10 +05304295
4296 goto found;
Maarten Lankhorst00490c22015-11-16 14:42:12 +01004297 } else if (INTEL_INFO(dev_priv)->gen < 9 && HAS_DDI(dev_priv))
4298 /* Do not consider SPLL */
4299 max = 2;
Satheeshakrishna Mbcddf6102014-08-22 09:49:10 +05304300
Maarten Lankhorst00490c22015-11-16 14:42:12 +01004301 for (i = 0; i < max; i++) {
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004302 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004303
4304 /* Only want to check enabled timings first */
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004305 if (shared_dpll[i].crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004306 continue;
4307
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004308 if (memcmp(&crtc_state->dpll_hw_state,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004309 &shared_dpll[i].hw_state,
4310 sizeof(crtc_state->dpll_hw_state)) == 0) {
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004311 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004312 crtc->base.base.id, pll->name,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004313 shared_dpll[i].crtc_mask,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004314 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004315 goto found;
4316 }
4317 }
4318
4319 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004320 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4321 pll = &dev_priv->shared_dplls[i];
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004322 if (shared_dpll[i].crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02004323 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4324 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004325 goto found;
4326 }
4327 }
4328
4329 return NULL;
4330
4331found:
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004332 if (shared_dpll[i].crtc_mask == 0)
4333 shared_dpll[i].hw_state =
4334 crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004335
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004336 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02004337 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4338 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02004339
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004340 shared_dpll[i].crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004341
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004342 return pll;
4343}
4344
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004345static void intel_shared_dpll_commit(struct drm_atomic_state *state)
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004346{
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004347 struct drm_i915_private *dev_priv = to_i915(state->dev);
4348 struct intel_shared_dpll_config *shared_dpll;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004349 struct intel_shared_dpll *pll;
4350 enum intel_dpll_id i;
4351
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004352 if (!to_intel_atomic_state(state)->dpll_set)
4353 return;
4354
4355 shared_dpll = to_intel_atomic_state(state)->shared_dpll;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004356 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4357 pll = &dev_priv->shared_dplls[i];
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004358 pll->config = shared_dpll[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004359 }
4360}
4361
Daniel Vettera1520312013-05-03 11:49:50 +02004362static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004363{
4364 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004365 i915_reg_t dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004366 u32 temp;
4367
4368 temp = I915_READ(dslreg);
4369 udelay(500);
4370 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004371 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004372 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004373 }
4374}
4375
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004376static int
4377skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4378 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4379 int src_w, int src_h, int dst_w, int dst_h)
Chandra Kondurua1b22782015-04-07 15:28:45 -07004380{
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004381 struct intel_crtc_scaler_state *scaler_state =
4382 &crtc_state->scaler_state;
4383 struct intel_crtc *intel_crtc =
4384 to_intel_crtc(crtc_state->base.crtc);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004385 int need_scaling;
Chandra Konduru6156a452015-04-27 13:48:39 -07004386
4387 need_scaling = intel_rotation_90_or_270(rotation) ?
4388 (src_h != dst_w || src_w != dst_h):
4389 (src_w != dst_w || src_h != dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004390
4391 /*
4392 * if plane is being disabled or scaler is no more required or force detach
4393 * - free scaler binded to this plane/crtc
4394 * - in order to do this, update crtc->scaler_usage
4395 *
4396 * Here scaler state in crtc_state is set free so that
4397 * scaler can be assigned to other user. Actual register
4398 * update to free the scaler is done in plane/panel-fit programming.
4399 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4400 */
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004401 if (force_detach || !need_scaling) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004402 if (*scaler_id >= 0) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004403 scaler_state->scaler_users &= ~(1 << scaler_user);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004404 scaler_state->scalers[*scaler_id].in_use = 0;
4405
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004406 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4407 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4408 intel_crtc->pipe, scaler_user, *scaler_id,
Chandra Kondurua1b22782015-04-07 15:28:45 -07004409 scaler_state->scaler_users);
4410 *scaler_id = -1;
4411 }
4412 return 0;
4413 }
4414
4415 /* range checks */
4416 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4417 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4418
4419 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4420 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004421 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
Chandra Kondurua1b22782015-04-07 15:28:45 -07004422 "size is out of scaler range\n",
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004423 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004424 return -EINVAL;
4425 }
4426
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004427 /* mark this plane as a scaler user in crtc_state */
4428 scaler_state->scaler_users |= (1 << scaler_user);
4429 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4430 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4431 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4432 scaler_state->scaler_users);
4433
4434 return 0;
4435}
4436
4437/**
4438 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4439 *
4440 * @state: crtc's scaler state
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004441 *
4442 * Return
4443 * 0 - scaler_usage updated successfully
4444 * error - requested scaling cannot be supported or other error condition
4445 */
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004446int skl_update_scaler_crtc(struct intel_crtc_state *state)
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004447{
4448 struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03004449 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004450
4451 DRM_DEBUG_KMS("Updating scaler for [CRTC:%i] scaler_user index %u.%u\n",
4452 intel_crtc->base.base.id, intel_crtc->pipe, SKL_CRTC_INDEX);
4453
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004454 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004455 &state->scaler_state.scaler_id, DRM_ROTATE_0,
4456 state->pipe_src_w, state->pipe_src_h,
Ville Syrjäläaad941d2015-09-25 16:38:56 +03004457 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004458}
4459
4460/**
4461 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4462 *
4463 * @state: crtc's scaler state
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004464 * @plane_state: atomic plane state to update
4465 *
4466 * Return
4467 * 0 - scaler_usage updated successfully
4468 * error - requested scaling cannot be supported or other error condition
4469 */
Maarten Lankhorstda20eab2015-06-15 12:33:44 +02004470static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4471 struct intel_plane_state *plane_state)
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004472{
4473
4474 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Maarten Lankhorstda20eab2015-06-15 12:33:44 +02004475 struct intel_plane *intel_plane =
4476 to_intel_plane(plane_state->base.plane);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004477 struct drm_framebuffer *fb = plane_state->base.fb;
4478 int ret;
4479
4480 bool force_detach = !fb || !plane_state->visible;
4481
4482 DRM_DEBUG_KMS("Updating scaler for [PLANE:%d] scaler_user index %u.%u\n",
4483 intel_plane->base.base.id, intel_crtc->pipe,
4484 drm_plane_index(&intel_plane->base));
4485
4486 ret = skl_update_scaler(crtc_state, force_detach,
4487 drm_plane_index(&intel_plane->base),
4488 &plane_state->scaler_id,
4489 plane_state->base.rotation,
4490 drm_rect_width(&plane_state->src) >> 16,
4491 drm_rect_height(&plane_state->src) >> 16,
4492 drm_rect_width(&plane_state->dst),
4493 drm_rect_height(&plane_state->dst));
4494
4495 if (ret || plane_state->scaler_id < 0)
4496 return ret;
4497
Chandra Kondurua1b22782015-04-07 15:28:45 -07004498 /* check colorkey */
Maarten Lankhorst818ed962015-06-15 12:33:54 +02004499 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004500 DRM_DEBUG_KMS("[PLANE:%d] scaling with color key not allowed",
Maarten Lankhorst818ed962015-06-15 12:33:54 +02004501 intel_plane->base.base.id);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004502 return -EINVAL;
4503 }
4504
4505 /* Check src format */
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004506 switch (fb->pixel_format) {
4507 case DRM_FORMAT_RGB565:
4508 case DRM_FORMAT_XBGR8888:
4509 case DRM_FORMAT_XRGB8888:
4510 case DRM_FORMAT_ABGR8888:
4511 case DRM_FORMAT_ARGB8888:
4512 case DRM_FORMAT_XRGB2101010:
4513 case DRM_FORMAT_XBGR2101010:
4514 case DRM_FORMAT_YUYV:
4515 case DRM_FORMAT_YVYU:
4516 case DRM_FORMAT_UYVY:
4517 case DRM_FORMAT_VYUY:
4518 break;
4519 default:
4520 DRM_DEBUG_KMS("[PLANE:%d] FB:%d unsupported scaling format 0x%x\n",
4521 intel_plane->base.base.id, fb->base.id, fb->pixel_format);
4522 return -EINVAL;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004523 }
4524
Chandra Kondurua1b22782015-04-07 15:28:45 -07004525 return 0;
4526}
4527
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004528static void skylake_scaler_disable(struct intel_crtc *crtc)
4529{
4530 int i;
4531
4532 for (i = 0; i < crtc->num_scalers; i++)
4533 skl_detach_scaler(crtc, i);
4534}
4535
4536static void skylake_pfit_enable(struct intel_crtc *crtc)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004537{
4538 struct drm_device *dev = crtc->base.dev;
4539 struct drm_i915_private *dev_priv = dev->dev_private;
4540 int pipe = crtc->pipe;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004541 struct intel_crtc_scaler_state *scaler_state =
4542 &crtc->config->scaler_state;
4543
4544 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4545
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004546 if (crtc->config->pch_pfit.enabled) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004547 int id;
4548
4549 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4550 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4551 return;
4552 }
4553
4554 id = scaler_state->scaler_id;
4555 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4556 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4557 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4558 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4559
4560 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004561 }
4562}
4563
Jesse Barnesb074cec2013-04-25 12:55:02 -07004564static void ironlake_pfit_enable(struct intel_crtc *crtc)
4565{
4566 struct drm_device *dev = crtc->base.dev;
4567 struct drm_i915_private *dev_priv = dev->dev_private;
4568 int pipe = crtc->pipe;
4569
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004570 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004571 /* Force use of hard-coded filter coefficients
4572 * as some pre-programmed values are broken,
4573 * e.g. x201.
4574 */
4575 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4576 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4577 PF_PIPE_SEL_IVB(pipe));
4578 else
4579 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004580 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4581 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004582 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004583}
4584
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004585void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004586{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004587 struct drm_device *dev = crtc->base.dev;
4588 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004589
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004590 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004591 return;
4592
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004593 /* We can only enable IPS after we enable a plane and wait for a vblank */
4594 intel_wait_for_vblank(dev, crtc->pipe);
4595
Paulo Zanonid77e4532013-09-24 13:52:55 -03004596 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004597 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004598 mutex_lock(&dev_priv->rps.hw_lock);
4599 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4600 mutex_unlock(&dev_priv->rps.hw_lock);
4601 /* Quoting Art Runyan: "its not safe to expect any particular
4602 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004603 * mailbox." Moreover, the mailbox may return a bogus state,
4604 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004605 */
4606 } else {
4607 I915_WRITE(IPS_CTL, IPS_ENABLE);
4608 /* The bit only becomes 1 in the next vblank, so this wait here
4609 * is essentially intel_wait_for_vblank. If we don't have this
4610 * and don't wait for vblanks until the end of crtc_enable, then
4611 * the HW state readout code will complain that the expected
4612 * IPS_CTL value is not the one we read. */
4613 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4614 DRM_ERROR("Timed out waiting for IPS enable\n");
4615 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004616}
4617
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004618void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004619{
4620 struct drm_device *dev = crtc->base.dev;
4621 struct drm_i915_private *dev_priv = dev->dev_private;
4622
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004623 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004624 return;
4625
4626 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004627 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004628 mutex_lock(&dev_priv->rps.hw_lock);
4629 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4630 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004631 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4632 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4633 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004634 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004635 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004636 POSTING_READ(IPS_CTL);
4637 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004638
4639 /* We need to wait for a vblank before we can disable the plane. */
4640 intel_wait_for_vblank(dev, crtc->pipe);
4641}
4642
4643/** Loads the palette/gamma unit for the CRTC with the prepared values */
4644static void intel_crtc_load_lut(struct drm_crtc *crtc)
4645{
4646 struct drm_device *dev = crtc->dev;
4647 struct drm_i915_private *dev_priv = dev->dev_private;
4648 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4649 enum pipe pipe = intel_crtc->pipe;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004650 int i;
4651 bool reenable_ips = false;
4652
4653 /* The clocks have to be on to load the palette. */
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004654 if (!crtc->state->active)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004655 return;
4656
Imre Deak50360402015-01-16 00:55:16 -08004657 if (HAS_GMCH_DISPLAY(dev_priv->dev)) {
Jani Nikulaa65347b2015-11-27 12:21:46 +02004658 if (intel_crtc->config->has_dsi_encoder)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004659 assert_dsi_pll_enabled(dev_priv);
4660 else
4661 assert_pll_enabled(dev_priv, pipe);
4662 }
4663
Paulo Zanonid77e4532013-09-24 13:52:55 -03004664 /* Workaround : Do not read or write the pipe palette/gamma data while
4665 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4666 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004667 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004668 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4669 GAMMA_MODE_MODE_SPLIT)) {
4670 hsw_disable_ips(intel_crtc);
4671 reenable_ips = true;
4672 }
4673
4674 for (i = 0; i < 256; i++) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004675 i915_reg_t palreg;
Ville Syrjäläf65a9c52015-09-18 20:03:28 +03004676
4677 if (HAS_GMCH_DISPLAY(dev))
4678 palreg = PALETTE(pipe, i);
4679 else
4680 palreg = LGC_PALETTE(pipe, i);
4681
4682 I915_WRITE(palreg,
Paulo Zanonid77e4532013-09-24 13:52:55 -03004683 (intel_crtc->lut_r[i] << 16) |
4684 (intel_crtc->lut_g[i] << 8) |
4685 intel_crtc->lut_b[i]);
4686 }
4687
4688 if (reenable_ips)
4689 hsw_enable_ips(intel_crtc);
4690}
4691
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004692static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004693{
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004694 if (intel_crtc->overlay) {
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004695 struct drm_device *dev = intel_crtc->base.dev;
4696 struct drm_i915_private *dev_priv = dev->dev_private;
4697
4698 mutex_lock(&dev->struct_mutex);
4699 dev_priv->mm.interruptible = false;
4700 (void) intel_overlay_switch_off(intel_crtc->overlay);
4701 dev_priv->mm.interruptible = true;
4702 mutex_unlock(&dev->struct_mutex);
4703 }
4704
4705 /* Let userspace switch the overlay on again. In most cases userspace
4706 * has to recompute where to put it anyway.
4707 */
4708}
4709
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004710/**
4711 * intel_post_enable_primary - Perform operations after enabling primary plane
4712 * @crtc: the CRTC whose primary plane was just enabled
4713 *
4714 * Performs potentially sleeping operations that must be done after the primary
4715 * plane is enabled, such as updating FBC and IPS. Note that this may be
4716 * called due to an explicit primary plane update, or due to an implicit
4717 * re-enable that is caused when a sprite plane is updated to no longer
4718 * completely hide the primary plane.
4719 */
4720static void
4721intel_post_enable_primary(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004722{
4723 struct drm_device *dev = crtc->dev;
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004724 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004725 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4726 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004727
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004728 /*
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004729 * 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
Ville Syrjäläaca7b682015-10-30 19:22:21 +02004746 /* Underruns don't always raise interrupts, so check manually. */
4747 intel_check_cpu_fifo_underruns(dev_priv);
4748 intel_check_pch_fifo_underruns(dev_priv);
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004749}
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;
Maarten Lankhorst92826fc2015-12-03 13:49:13 +01004805 struct intel_crtc_state *pipe_config =
4806 to_intel_crtc_state(crtc->base.state);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004807 struct drm_device *dev = crtc->base.dev;
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004808
4809 if (atomic->wait_vblank)
4810 intel_wait_for_vblank(dev, crtc->pipe);
4811
4812 intel_frontbuffer_flip(dev, atomic->fb_bits);
4813
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +01004814 crtc->wm.cxsr_allowed = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +03004815
Maarten Lankhorstb9001112015-11-19 16:07:16 +01004816 if (pipe_config->wm_changed && pipe_config->base.active)
Ville Syrjäläf015c552015-06-24 22:00:02 +03004817 intel_update_watermarks(&crtc->base);
4818
Paulo Zanonic80ac852015-07-02 19:25:13 -03004819 if (atomic->update_fbc)
Paulo Zanoni754d1132015-10-13 19:13:25 -03004820 intel_fbc_update(crtc);
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;
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +01004833 struct intel_crtc_state *pipe_config =
4834 to_intel_crtc_state(crtc->base.state);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004835
Paulo Zanonic80ac852015-07-02 19:25:13 -03004836 if (atomic->disable_fbc)
Paulo Zanonid029bca2015-10-15 10:44:46 -03004837 intel_fbc_deactivate(crtc);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004838
Rodrigo Vivi066cf552015-06-26 13:55:54 -07004839 if (crtc->atomic.disable_ips)
4840 hsw_disable_ips(crtc);
4841
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004842 if (atomic->pre_disable_primary)
4843 intel_pre_disable_primary(&crtc->base);
Ville Syrjälä852eb002015-06-24 22:00:07 +03004844
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +01004845 if (pipe_config->disable_cxsr) {
Ville Syrjälä852eb002015-06-24 22:00:07 +03004846 crtc->wm.cxsr_allowed = false;
4847 intel_set_memory_cxsr(dev_priv, false);
4848 }
Maarten Lankhorst92826fc2015-12-03 13:49:13 +01004849
4850 if (!needs_modeset(&pipe_config->base) && pipe_config->wm_changed)
4851 intel_update_watermarks(&crtc->base);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004852}
4853
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004854static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004855{
4856 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004857 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004858 struct drm_plane *p;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004859 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004860
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004861 intel_crtc_dpms_overlay_disable(intel_crtc);
Maarten Lankhorst27321ae2015-04-21 17:12:52 +03004862
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004863 drm_for_each_plane_mask(p, dev, plane_mask)
4864 to_intel_plane(p)->disable_plane(p, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004865
Daniel Vetterf99d7062014-06-19 16:01:59 +02004866 /*
4867 * FIXME: Once we grow proper nuclear flip support out of this we need
4868 * to compute the mask of flip planes precisely. For the time being
4869 * consider this a flip to a NULL plane.
4870 */
4871 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004872}
4873
Jesse Barnesf67a5592011-01-05 10:31:48 -08004874static void ironlake_crtc_enable(struct drm_crtc *crtc)
4875{
4876 struct drm_device *dev = crtc->dev;
4877 struct drm_i915_private *dev_priv = dev->dev_private;
4878 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004879 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004880 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004881
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004882 if (WARN_ON(intel_crtc->active))
Jesse Barnesf67a5592011-01-05 10:31:48 -08004883 return;
4884
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004885 if (intel_crtc->config->has_pch_encoder)
Ville Syrjälä81b088c2015-10-30 19:21:31 +02004886 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
4887
4888 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004889 intel_prepare_shared_dpll(intel_crtc);
4890
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004891 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05304892 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004893
4894 intel_set_pipe_timings(intel_crtc);
4895
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004896 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004897 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004898 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004899 }
4900
4901 ironlake_set_pipeconf(crtc);
4902
Jesse Barnesf67a5592011-01-05 10:31:48 -08004903 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004904
Daniel Vettera72e4c92014-09-30 10:56:47 +02004905 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004906
Daniel Vetterf6736a12013-06-05 13:34:30 +02004907 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004908 if (encoder->pre_enable)
4909 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004910
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004911 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004912 /* Note: FDI PLL enabling _must_ be done before we enable the
4913 * cpu pipes, hence this is separate from all the other fdi/pch
4914 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004915 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004916 } else {
4917 assert_fdi_tx_disabled(dev_priv, pipe);
4918 assert_fdi_rx_disabled(dev_priv, pipe);
4919 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004920
Jesse Barnesb074cec2013-04-25 12:55:02 -07004921 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004922
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004923 /*
4924 * On ILK+ LUT must be loaded before the pipe is running but with
4925 * clocks enabled
4926 */
4927 intel_crtc_load_lut(crtc);
4928
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004929 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004930 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004931
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004932 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004933 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004934
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004935 assert_vblank_disabled(crtc);
4936 drm_crtc_vblank_on(crtc);
4937
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004938 for_each_encoder_on_crtc(dev, crtc, encoder)
4939 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004940
4941 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004942 cpt_verify_modeset(dev, intel_crtc->pipe);
Ville Syrjälä37ca8d42015-10-30 19:20:27 +02004943
4944 /* Must wait for vblank to avoid spurious PCH FIFO underruns */
4945 if (intel_crtc->config->has_pch_encoder)
4946 intel_wait_for_vblank(dev, pipe);
4947 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanonid029bca2015-10-15 10:44:46 -03004948
4949 intel_fbc_enable(intel_crtc);
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);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004967
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004968 if (WARN_ON(intel_crtc->active))
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004969 return;
4970
Ville Syrjälä81b088c2015-10-30 19:21:31 +02004971 if (intel_crtc->config->has_pch_encoder)
4972 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4973 false);
4974
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004975 if (intel_crtc_to_shared_dpll(intel_crtc))
4976 intel_enable_shared_dpll(intel_crtc);
4977
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004978 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05304979 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter229fca92014-04-24 23:55:09 +02004980
4981 intel_set_pipe_timings(intel_crtc);
4982
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004983 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4984 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4985 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07004986 }
4987
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004988 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02004989 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004990 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02004991 }
4992
4993 haswell_set_pipeconf(crtc);
4994
4995 intel_set_pipe_csc(crtc);
4996
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004997 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004998
Daniel Vetter6b698512015-11-28 11:05:39 +01004999 if (intel_crtc->config->has_pch_encoder)
5000 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5001 else
5002 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5003
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305004 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005005 if (encoder->pre_enable)
5006 encoder->pre_enable(encoder);
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305007 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005008
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005009 if (intel_crtc->config->has_pch_encoder)
Imre Deak4fe94672014-06-25 22:01:49 +03005010 dev_priv->display.fdi_link_train(crtc);
Imre Deak4fe94672014-06-25 22:01:49 +03005011
Jani Nikulaa65347b2015-11-27 12:21:46 +02005012 if (!intel_crtc->config->has_dsi_encoder)
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305013 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005014
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005015 if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02005016 skylake_pfit_enable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005017 else
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005018 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005019
5020 /*
5021 * On ILK+ LUT must be loaded before the pipe is running but with
5022 * clocks enabled
5023 */
5024 intel_crtc_load_lut(crtc);
5025
Paulo Zanoni1f544382012-10-24 11:32:00 -02005026 intel_ddi_set_pipe_settings(crtc);
Jani Nikulaa65347b2015-11-27 12:21:46 +02005027 if (!intel_crtc->config->has_dsi_encoder)
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305028 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005029
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005030 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005031 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005032
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005033 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02005034 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005035
Jani Nikulaa65347b2015-11-27 12:21:46 +02005036 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10005037 intel_ddi_set_vc_payload_alloc(crtc, true);
5038
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005039 assert_vblank_disabled(crtc);
5040 drm_crtc_vblank_on(crtc);
5041
Jani Nikula8807e552013-08-30 19:40:32 +03005042 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005043 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005044 intel_opregion_notify_encoder(encoder, true);
5045 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005046
Daniel Vetter6b698512015-11-28 11:05:39 +01005047 if (intel_crtc->config->has_pch_encoder) {
5048 intel_wait_for_vblank(dev, pipe);
5049 intel_wait_for_vblank(dev, pipe);
5050 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005051 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5052 true);
Daniel Vetter6b698512015-11-28 11:05:39 +01005053 }
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005054
Paulo Zanonie4916942013-09-20 16:21:19 -03005055 /* If we change the relative order between pipe/planes enabling, we need
5056 * to change the workaround. */
Maarten Lankhorst99d736a2015-06-01 12:50:09 +02005057 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
5058 if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) {
5059 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5060 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5061 }
Paulo Zanonid029bca2015-10-15 10:44:46 -03005062
5063 intel_fbc_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005064}
5065
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005066static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005067{
5068 struct drm_device *dev = crtc->base.dev;
5069 struct drm_i915_private *dev_priv = dev->dev_private;
5070 int pipe = crtc->pipe;
5071
5072 /* To avoid upsetting the power well on haswell only disable the pfit if
5073 * it's in use. The hw state code will make sure we get this right. */
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005074 if (force || crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005075 I915_WRITE(PF_CTL(pipe), 0);
5076 I915_WRITE(PF_WIN_POS(pipe), 0);
5077 I915_WRITE(PF_WIN_SZ(pipe), 0);
5078 }
5079}
5080
Jesse Barnes6be4a602010-09-10 10:26:01 -07005081static void ironlake_crtc_disable(struct drm_crtc *crtc)
5082{
5083 struct drm_device *dev = crtc->dev;
5084 struct drm_i915_private *dev_priv = dev->dev_private;
5085 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005086 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005087 int pipe = intel_crtc->pipe;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005088
Ville Syrjälä37ca8d42015-10-30 19:20:27 +02005089 if (intel_crtc->config->has_pch_encoder)
5090 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
5091
Daniel Vetterea9d7582012-07-10 10:42:52 +02005092 for_each_encoder_on_crtc(dev, crtc, encoder)
5093 encoder->disable(encoder);
5094
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005095 drm_crtc_vblank_off(crtc);
5096 assert_vblank_disabled(crtc);
5097
Ville Syrjälä3860b2e2015-11-20 22:09:18 +02005098 /*
5099 * Sometimes spurious CPU pipe underruns happen when the
5100 * pipe is already disabled, but FDI RX/TX is still enabled.
5101 * Happens at least with VGA+HDMI cloning. Suppress them.
5102 */
5103 if (intel_crtc->config->has_pch_encoder)
5104 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5105
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005106 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005107
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005108 ironlake_pfit_disable(intel_crtc, false);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005109
Ville Syrjälä3860b2e2015-11-20 22:09:18 +02005110 if (intel_crtc->config->has_pch_encoder) {
Ville Syrjälä5a74f702015-05-05 17:17:38 +03005111 ironlake_fdi_disable(crtc);
Ville Syrjälä3860b2e2015-11-20 22:09:18 +02005112 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5113 }
Ville Syrjälä5a74f702015-05-05 17:17:38 +03005114
Daniel Vetterbf49ec82012-09-06 22:15:40 +02005115 for_each_encoder_on_crtc(dev, crtc, encoder)
5116 if (encoder->post_disable)
5117 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005118
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005119 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02005120 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005121
Daniel Vetterd925c592013-06-05 13:34:04 +02005122 if (HAS_PCH_CPT(dev)) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005123 i915_reg_t reg;
5124 u32 temp;
5125
Daniel Vetterd925c592013-06-05 13:34:04 +02005126 /* disable TRANS_DP_CTL */
5127 reg = TRANS_DP_CTL(pipe);
5128 temp = I915_READ(reg);
5129 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5130 TRANS_DP_PORT_SEL_MASK);
5131 temp |= TRANS_DP_PORT_SEL_NONE;
5132 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005133
Daniel Vetterd925c592013-06-05 13:34:04 +02005134 /* disable DPLL_SEL */
5135 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02005136 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02005137 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005138 }
Daniel Vetterd925c592013-06-05 13:34:04 +02005139
Daniel Vetterd925c592013-06-05 13:34:04 +02005140 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005141 }
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005142
5143 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanonid029bca2015-10-15 10:44:46 -03005144
5145 intel_fbc_disable_crtc(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005146}
5147
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005148static void haswell_crtc_disable(struct drm_crtc *crtc)
5149{
5150 struct drm_device *dev = crtc->dev;
5151 struct drm_i915_private *dev_priv = dev->dev_private;
5152 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5153 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005154 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005155
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005156 if (intel_crtc->config->has_pch_encoder)
5157 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5158 false);
5159
Jani Nikula8807e552013-08-30 19:40:32 +03005160 for_each_encoder_on_crtc(dev, crtc, encoder) {
5161 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005162 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005163 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005164
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005165 drm_crtc_vblank_off(crtc);
5166 assert_vblank_disabled(crtc);
5167
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005168 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005169
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005170 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03005171 intel_ddi_set_vc_payload_alloc(crtc, false);
5172
Jani Nikulaa65347b2015-11-27 12:21:46 +02005173 if (!intel_crtc->config->has_dsi_encoder)
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305174 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005175
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005176 if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02005177 skylake_scaler_disable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005178 else
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005179 ironlake_pfit_disable(intel_crtc, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005180
Jani Nikulaa65347b2015-11-27 12:21:46 +02005181 if (!intel_crtc->config->has_dsi_encoder)
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305182 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005183
Imre Deak97b040a2014-06-25 22:01:50 +03005184 for_each_encoder_on_crtc(dev, crtc, encoder)
5185 if (encoder->post_disable)
5186 encoder->post_disable(encoder);
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005187
Ville Syrjälä92966a32015-12-08 16:05:48 +02005188 if (intel_crtc->config->has_pch_encoder) {
5189 lpt_disable_pch_transcoder(dev_priv);
Ville Syrjälä503a74e2015-12-04 22:22:14 +02005190 lpt_disable_iclkip(dev_priv);
Ville Syrjälä92966a32015-12-08 16:05:48 +02005191 intel_ddi_fdi_disable(crtc);
5192
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005193 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5194 true);
Ville Syrjälä92966a32015-12-08 16:05:48 +02005195 }
Paulo Zanonid029bca2015-10-15 10:44:46 -03005196
5197 intel_fbc_disable_crtc(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005198}
5199
Jesse Barnes2dd24552013-04-25 12:55:01 -07005200static void i9xx_pfit_enable(struct intel_crtc *crtc)
5201{
5202 struct drm_device *dev = crtc->base.dev;
5203 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005204 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07005205
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02005206 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07005207 return;
5208
Daniel Vetterc0b03412013-05-28 12:05:54 +02005209 /*
5210 * The panel fitter should only be adjusted whilst the pipe is disabled,
5211 * according to register description and PRM.
5212 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07005213 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5214 assert_pipe_disabled(dev_priv, crtc->pipe);
5215
Jesse Barnesb074cec2013-04-25 12:55:02 -07005216 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5217 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02005218
5219 /* Border color in case we don't scale up to the full screen. Black by
5220 * default, change to something else for debugging. */
5221 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07005222}
5223
Dave Airlied05410f2014-06-05 13:22:59 +10005224static enum intel_display_power_domain port_to_power_domain(enum port port)
5225{
5226 switch (port) {
5227 case PORT_A:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005228 return POWER_DOMAIN_PORT_DDI_A_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005229 case PORT_B:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005230 return POWER_DOMAIN_PORT_DDI_B_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005231 case PORT_C:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005232 return POWER_DOMAIN_PORT_DDI_C_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005233 case PORT_D:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005234 return POWER_DOMAIN_PORT_DDI_D_LANES;
Xiong Zhangd8e19f92015-08-13 18:00:12 +08005235 case PORT_E:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005236 return POWER_DOMAIN_PORT_DDI_E_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005237 default:
Imre Deakb9fec162015-11-18 15:57:25 +02005238 MISSING_CASE(port);
Dave Airlied05410f2014-06-05 13:22:59 +10005239 return POWER_DOMAIN_PORT_OTHER;
5240 }
5241}
5242
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005243static enum intel_display_power_domain port_to_aux_power_domain(enum port port)
5244{
5245 switch (port) {
5246 case PORT_A:
5247 return POWER_DOMAIN_AUX_A;
5248 case PORT_B:
5249 return POWER_DOMAIN_AUX_B;
5250 case PORT_C:
5251 return POWER_DOMAIN_AUX_C;
5252 case PORT_D:
5253 return POWER_DOMAIN_AUX_D;
5254 case PORT_E:
5255 /* FIXME: Check VBT for actual wiring of PORT E */
5256 return POWER_DOMAIN_AUX_D;
5257 default:
Imre Deakb9fec162015-11-18 15:57:25 +02005258 MISSING_CASE(port);
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005259 return POWER_DOMAIN_AUX_A;
5260 }
5261}
5262
Imre Deak319be8a2014-03-04 19:22:57 +02005263enum intel_display_power_domain
5264intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02005265{
Imre Deak319be8a2014-03-04 19:22:57 +02005266 struct drm_device *dev = intel_encoder->base.dev;
5267 struct intel_digital_port *intel_dig_port;
5268
5269 switch (intel_encoder->type) {
5270 case INTEL_OUTPUT_UNKNOWN:
5271 /* Only DDI platforms should ever use this output type */
5272 WARN_ON_ONCE(!HAS_DDI(dev));
5273 case INTEL_OUTPUT_DISPLAYPORT:
5274 case INTEL_OUTPUT_HDMI:
5275 case INTEL_OUTPUT_EDP:
5276 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10005277 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10005278 case INTEL_OUTPUT_DP_MST:
5279 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5280 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02005281 case INTEL_OUTPUT_ANALOG:
5282 return POWER_DOMAIN_PORT_CRT;
5283 case INTEL_OUTPUT_DSI:
5284 return POWER_DOMAIN_PORT_DSI;
5285 default:
5286 return POWER_DOMAIN_PORT_OTHER;
5287 }
5288}
5289
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005290enum intel_display_power_domain
5291intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder)
5292{
5293 struct drm_device *dev = intel_encoder->base.dev;
5294 struct intel_digital_port *intel_dig_port;
5295
5296 switch (intel_encoder->type) {
5297 case INTEL_OUTPUT_UNKNOWN:
Imre Deak651174a2015-11-18 15:57:24 +02005298 case INTEL_OUTPUT_HDMI:
5299 /*
5300 * Only DDI platforms should ever use these output types.
5301 * We can get here after the HDMI detect code has already set
5302 * the type of the shared encoder. Since we can't be sure
5303 * what's the status of the given connectors, play safe and
5304 * run the DP detection too.
5305 */
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005306 WARN_ON_ONCE(!HAS_DDI(dev));
5307 case INTEL_OUTPUT_DISPLAYPORT:
5308 case INTEL_OUTPUT_EDP:
5309 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
5310 return port_to_aux_power_domain(intel_dig_port->port);
5311 case INTEL_OUTPUT_DP_MST:
5312 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5313 return port_to_aux_power_domain(intel_dig_port->port);
5314 default:
Imre Deakb9fec162015-11-18 15:57:25 +02005315 MISSING_CASE(intel_encoder->type);
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005316 return POWER_DOMAIN_AUX_A;
5317 }
5318}
5319
Imre Deak319be8a2014-03-04 19:22:57 +02005320static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
5321{
5322 struct drm_device *dev = crtc->dev;
5323 struct intel_encoder *intel_encoder;
5324 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5325 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02005326 unsigned long mask;
Ville Syrjälä1a70a7282015-10-29 21:25:50 +02005327 enum transcoder transcoder = intel_crtc->config->cpu_transcoder;
Imre Deak77d22dc2014-03-05 16:20:52 +02005328
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005329 if (!crtc->state->active)
5330 return 0;
5331
Imre Deak77d22dc2014-03-05 16:20:52 +02005332 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5333 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005334 if (intel_crtc->config->pch_pfit.enabled ||
5335 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02005336 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5337
Imre Deak319be8a2014-03-04 19:22:57 +02005338 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5339 mask |= BIT(intel_display_port_power_domain(intel_encoder));
5340
Imre Deak77d22dc2014-03-05 16:20:52 +02005341 return mask;
5342}
5343
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005344static unsigned long modeset_get_crtc_power_domains(struct drm_crtc *crtc)
5345{
5346 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5347 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5348 enum intel_display_power_domain domain;
5349 unsigned long domains, new_domains, old_domains;
5350
5351 old_domains = intel_crtc->enabled_power_domains;
5352 intel_crtc->enabled_power_domains = new_domains = get_crtc_power_domains(crtc);
5353
5354 domains = new_domains & ~old_domains;
5355
5356 for_each_power_domain(domain, domains)
5357 intel_display_power_get(dev_priv, domain);
5358
5359 return old_domains & ~new_domains;
5360}
5361
5362static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5363 unsigned long domains)
5364{
5365 enum intel_display_power_domain domain;
5366
5367 for_each_power_domain(domain, domains)
5368 intel_display_power_put(dev_priv, domain);
5369}
5370
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005371static void modeset_update_crtc_power_domains(struct drm_atomic_state *state)
Imre Deak77d22dc2014-03-05 16:20:52 +02005372{
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01005373 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005374 struct drm_device *dev = state->dev;
Imre Deak77d22dc2014-03-05 16:20:52 +02005375 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005376 unsigned long put_domains[I915_MAX_PIPES] = {};
5377 struct drm_crtc_state *crtc_state;
5378 struct drm_crtc *crtc;
5379 int i;
Imre Deak77d22dc2014-03-05 16:20:52 +02005380
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005381 for_each_crtc_in_state(state, crtc, crtc_state, i) {
5382 if (needs_modeset(crtc->state))
5383 put_domains[to_intel_crtc(crtc)->pipe] =
5384 modeset_get_crtc_power_domains(crtc);
Imre Deak77d22dc2014-03-05 16:20:52 +02005385 }
5386
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01005387 if (dev_priv->display.modeset_commit_cdclk &&
5388 intel_state->dev_cdclk != dev_priv->cdclk_freq)
5389 dev_priv->display.modeset_commit_cdclk(state);
Ville Syrjälä50f6e502014-11-06 14:49:12 +02005390
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005391 for (i = 0; i < I915_MAX_PIPES; i++)
5392 if (put_domains[i])
5393 modeset_put_power_domains(dev_priv, put_domains[i]);
Imre Deak77d22dc2014-03-05 16:20:52 +02005394}
5395
Mika Kaholaadafdc62015-08-18 14:36:59 +03005396static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5397{
5398 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5399
5400 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5401 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5402 return max_cdclk_freq;
5403 else if (IS_CHERRYVIEW(dev_priv))
5404 return max_cdclk_freq*95/100;
5405 else if (INTEL_INFO(dev_priv)->gen < 4)
5406 return 2*max_cdclk_freq*90/100;
5407 else
5408 return max_cdclk_freq*90/100;
5409}
5410
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005411static void intel_update_max_cdclk(struct drm_device *dev)
5412{
5413 struct drm_i915_private *dev_priv = dev->dev_private;
5414
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07005415 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005416 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
5417
5418 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
5419 dev_priv->max_cdclk_freq = 675000;
5420 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
5421 dev_priv->max_cdclk_freq = 540000;
5422 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
5423 dev_priv->max_cdclk_freq = 450000;
5424 else
5425 dev_priv->max_cdclk_freq = 337500;
5426 } else if (IS_BROADWELL(dev)) {
5427 /*
5428 * FIXME with extra cooling we can allow
5429 * 540 MHz for ULX and 675 Mhz for ULT.
5430 * How can we know if extra cooling is
5431 * available? PCI ID, VTB, something else?
5432 */
5433 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5434 dev_priv->max_cdclk_freq = 450000;
5435 else if (IS_BDW_ULX(dev))
5436 dev_priv->max_cdclk_freq = 450000;
5437 else if (IS_BDW_ULT(dev))
5438 dev_priv->max_cdclk_freq = 540000;
5439 else
5440 dev_priv->max_cdclk_freq = 675000;
Mika Kahola0904dea2015-06-12 10:11:32 +03005441 } else if (IS_CHERRYVIEW(dev)) {
5442 dev_priv->max_cdclk_freq = 320000;
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005443 } else if (IS_VALLEYVIEW(dev)) {
5444 dev_priv->max_cdclk_freq = 400000;
5445 } else {
5446 /* otherwise assume cdclk is fixed */
5447 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5448 }
5449
Mika Kaholaadafdc62015-08-18 14:36:59 +03005450 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5451
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005452 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5453 dev_priv->max_cdclk_freq);
Mika Kaholaadafdc62015-08-18 14:36:59 +03005454
5455 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5456 dev_priv->max_dotclk_freq);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005457}
5458
5459static void intel_update_cdclk(struct drm_device *dev)
5460{
5461 struct drm_i915_private *dev_priv = dev->dev_private;
5462
5463 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
5464 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5465 dev_priv->cdclk_freq);
5466
5467 /*
5468 * Program the gmbus_freq based on the cdclk frequency.
5469 * BSpec erroneously claims we should aim for 4MHz, but
5470 * in fact 1MHz is the correct frequency.
5471 */
Wayne Boyer666a4532015-12-09 12:29:35 -08005472 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005473 /*
5474 * Program the gmbus_freq based on the cdclk frequency.
5475 * BSpec erroneously claims we should aim for 4MHz, but
5476 * in fact 1MHz is the correct frequency.
5477 */
5478 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
5479 }
5480
5481 if (dev_priv->max_cdclk_freq == 0)
5482 intel_update_max_cdclk(dev);
5483}
5484
Damien Lespiau70d0c572015-06-04 18:21:29 +01005485static void broxton_set_cdclk(struct drm_device *dev, int frequency)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305486{
5487 struct drm_i915_private *dev_priv = dev->dev_private;
5488 uint32_t divider;
5489 uint32_t ratio;
5490 uint32_t current_freq;
5491 int ret;
5492
5493 /* frequency = 19.2MHz * ratio / 2 / div{1,1.5,2,4} */
5494 switch (frequency) {
5495 case 144000:
5496 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
5497 ratio = BXT_DE_PLL_RATIO(60);
5498 break;
5499 case 288000:
5500 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
5501 ratio = BXT_DE_PLL_RATIO(60);
5502 break;
5503 case 384000:
5504 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
5505 ratio = BXT_DE_PLL_RATIO(60);
5506 break;
5507 case 576000:
5508 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5509 ratio = BXT_DE_PLL_RATIO(60);
5510 break;
5511 case 624000:
5512 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5513 ratio = BXT_DE_PLL_RATIO(65);
5514 break;
5515 case 19200:
5516 /*
5517 * Bypass frequency with DE PLL disabled. Init ratio, divider
5518 * to suppress GCC warning.
5519 */
5520 ratio = 0;
5521 divider = 0;
5522 break;
5523 default:
5524 DRM_ERROR("unsupported CDCLK freq %d", frequency);
5525
5526 return;
5527 }
5528
5529 mutex_lock(&dev_priv->rps.hw_lock);
5530 /* Inform power controller of upcoming frequency change */
5531 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5532 0x80000000);
5533 mutex_unlock(&dev_priv->rps.hw_lock);
5534
5535 if (ret) {
5536 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
5537 ret, frequency);
5538 return;
5539 }
5540
5541 current_freq = I915_READ(CDCLK_CTL) & CDCLK_FREQ_DECIMAL_MASK;
5542 /* convert from .1 fixpoint MHz with -1MHz offset to kHz */
5543 current_freq = current_freq * 500 + 1000;
5544
5545 /*
5546 * DE PLL has to be disabled when
5547 * - setting to 19.2MHz (bypass, PLL isn't used)
5548 * - before setting to 624MHz (PLL needs toggling)
5549 * - before setting to any frequency from 624MHz (PLL needs toggling)
5550 */
5551 if (frequency == 19200 || frequency == 624000 ||
5552 current_freq == 624000) {
5553 I915_WRITE(BXT_DE_PLL_ENABLE, ~BXT_DE_PLL_PLL_ENABLE);
5554 /* Timeout 200us */
5555 if (wait_for(!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK),
5556 1))
5557 DRM_ERROR("timout waiting for DE PLL unlock\n");
5558 }
5559
5560 if (frequency != 19200) {
5561 uint32_t val;
5562
5563 val = I915_READ(BXT_DE_PLL_CTL);
5564 val &= ~BXT_DE_PLL_RATIO_MASK;
5565 val |= ratio;
5566 I915_WRITE(BXT_DE_PLL_CTL, val);
5567
5568 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5569 /* Timeout 200us */
5570 if (wait_for(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK, 1))
5571 DRM_ERROR("timeout waiting for DE PLL lock\n");
5572
5573 val = I915_READ(CDCLK_CTL);
5574 val &= ~BXT_CDCLK_CD2X_DIV_SEL_MASK;
5575 val |= divider;
5576 /*
5577 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5578 * enable otherwise.
5579 */
5580 val &= ~BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5581 if (frequency >= 500000)
5582 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5583
5584 val &= ~CDCLK_FREQ_DECIMAL_MASK;
5585 /* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5586 val |= (frequency - 1000) / 500;
5587 I915_WRITE(CDCLK_CTL, val);
5588 }
5589
5590 mutex_lock(&dev_priv->rps.hw_lock);
5591 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5592 DIV_ROUND_UP(frequency, 25000));
5593 mutex_unlock(&dev_priv->rps.hw_lock);
5594
5595 if (ret) {
5596 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
5597 ret, frequency);
5598 return;
5599 }
5600
Damien Lespiaua47871b2015-06-04 18:21:34 +01005601 intel_update_cdclk(dev);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305602}
5603
5604void broxton_init_cdclk(struct drm_device *dev)
5605{
5606 struct drm_i915_private *dev_priv = dev->dev_private;
5607 uint32_t val;
5608
5609 /*
5610 * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT
5611 * or else the reset will hang because there is no PCH to respond.
5612 * Move the handshake programming to initialization sequence.
5613 * Previously was left up to BIOS.
5614 */
5615 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5616 val &= ~RESET_PCH_HANDSHAKE_ENABLE;
5617 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
5618
5619 /* Enable PG1 for cdclk */
5620 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5621
5622 /* check if cd clock is enabled */
5623 if (I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_PLL_ENABLE) {
5624 DRM_DEBUG_KMS("Display already initialized\n");
5625 return;
5626 }
5627
5628 /*
5629 * FIXME:
5630 * - The initial CDCLK needs to be read from VBT.
5631 * Need to make this change after VBT has changes for BXT.
5632 * - check if setting the max (or any) cdclk freq is really necessary
5633 * here, it belongs to modeset time
5634 */
5635 broxton_set_cdclk(dev, 624000);
5636
5637 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005638 POSTING_READ(DBUF_CTL);
5639
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305640 udelay(10);
5641
5642 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5643 DRM_ERROR("DBuf power enable timeout!\n");
5644}
5645
5646void broxton_uninit_cdclk(struct drm_device *dev)
5647{
5648 struct drm_i915_private *dev_priv = dev->dev_private;
5649
5650 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005651 POSTING_READ(DBUF_CTL);
5652
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305653 udelay(10);
5654
5655 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5656 DRM_ERROR("DBuf power disable timeout!\n");
5657
5658 /* Set minimum (bypass) frequency, in effect turning off the DE PLL */
5659 broxton_set_cdclk(dev, 19200);
5660
5661 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5662}
5663
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005664static const struct skl_cdclk_entry {
5665 unsigned int freq;
5666 unsigned int vco;
5667} skl_cdclk_frequencies[] = {
5668 { .freq = 308570, .vco = 8640 },
5669 { .freq = 337500, .vco = 8100 },
5670 { .freq = 432000, .vco = 8640 },
5671 { .freq = 450000, .vco = 8100 },
5672 { .freq = 540000, .vco = 8100 },
5673 { .freq = 617140, .vco = 8640 },
5674 { .freq = 675000, .vco = 8100 },
5675};
5676
5677static unsigned int skl_cdclk_decimal(unsigned int freq)
5678{
5679 return (freq - 1000) / 500;
5680}
5681
5682static unsigned int skl_cdclk_get_vco(unsigned int freq)
5683{
5684 unsigned int i;
5685
5686 for (i = 0; i < ARRAY_SIZE(skl_cdclk_frequencies); i++) {
5687 const struct skl_cdclk_entry *e = &skl_cdclk_frequencies[i];
5688
5689 if (e->freq == freq)
5690 return e->vco;
5691 }
5692
5693 return 8100;
5694}
5695
5696static void
5697skl_dpll0_enable(struct drm_i915_private *dev_priv, unsigned int required_vco)
5698{
5699 unsigned int min_freq;
5700 u32 val;
5701
5702 /* select the minimum CDCLK before enabling DPLL 0 */
5703 val = I915_READ(CDCLK_CTL);
5704 val &= ~CDCLK_FREQ_SEL_MASK | ~CDCLK_FREQ_DECIMAL_MASK;
5705 val |= CDCLK_FREQ_337_308;
5706
5707 if (required_vco == 8640)
5708 min_freq = 308570;
5709 else
5710 min_freq = 337500;
5711
5712 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_freq);
5713
5714 I915_WRITE(CDCLK_CTL, val);
5715 POSTING_READ(CDCLK_CTL);
5716
5717 /*
5718 * We always enable DPLL0 with the lowest link rate possible, but still
5719 * taking into account the VCO required to operate the eDP panel at the
5720 * desired frequency. The usual DP link rates operate with a VCO of
5721 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
5722 * The modeset code is responsible for the selection of the exact link
5723 * rate later on, with the constraint of choosing a frequency that
5724 * works with required_vco.
5725 */
5726 val = I915_READ(DPLL_CTRL1);
5727
5728 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
5729 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
5730 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
5731 if (required_vco == 8640)
5732 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
5733 SKL_DPLL0);
5734 else
5735 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
5736 SKL_DPLL0);
5737
5738 I915_WRITE(DPLL_CTRL1, val);
5739 POSTING_READ(DPLL_CTRL1);
5740
5741 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
5742
5743 if (wait_for(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK, 5))
5744 DRM_ERROR("DPLL0 not locked\n");
5745}
5746
5747static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
5748{
5749 int ret;
5750 u32 val;
5751
5752 /* inform PCU we want to change CDCLK */
5753 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
5754 mutex_lock(&dev_priv->rps.hw_lock);
5755 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
5756 mutex_unlock(&dev_priv->rps.hw_lock);
5757
5758 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
5759}
5760
5761static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
5762{
5763 unsigned int i;
5764
5765 for (i = 0; i < 15; i++) {
5766 if (skl_cdclk_pcu_ready(dev_priv))
5767 return true;
5768 udelay(10);
5769 }
5770
5771 return false;
5772}
5773
5774static void skl_set_cdclk(struct drm_i915_private *dev_priv, unsigned int freq)
5775{
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005776 struct drm_device *dev = dev_priv->dev;
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005777 u32 freq_select, pcu_ack;
5778
5779 DRM_DEBUG_DRIVER("Changing CDCLK to %dKHz\n", freq);
5780
5781 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
5782 DRM_ERROR("failed to inform PCU about cdclk change\n");
5783 return;
5784 }
5785
5786 /* set CDCLK_CTL */
5787 switch(freq) {
5788 case 450000:
5789 case 432000:
5790 freq_select = CDCLK_FREQ_450_432;
5791 pcu_ack = 1;
5792 break;
5793 case 540000:
5794 freq_select = CDCLK_FREQ_540;
5795 pcu_ack = 2;
5796 break;
5797 case 308570:
5798 case 337500:
5799 default:
5800 freq_select = CDCLK_FREQ_337_308;
5801 pcu_ack = 0;
5802 break;
5803 case 617140:
5804 case 675000:
5805 freq_select = CDCLK_FREQ_675_617;
5806 pcu_ack = 3;
5807 break;
5808 }
5809
5810 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(freq));
5811 POSTING_READ(CDCLK_CTL);
5812
5813 /* inform PCU of the change */
5814 mutex_lock(&dev_priv->rps.hw_lock);
5815 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
5816 mutex_unlock(&dev_priv->rps.hw_lock);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005817
5818 intel_update_cdclk(dev);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005819}
5820
5821void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
5822{
5823 /* disable DBUF power */
5824 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
5825 POSTING_READ(DBUF_CTL);
5826
5827 udelay(10);
5828
5829 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5830 DRM_ERROR("DBuf power disable timeout\n");
5831
Imre Deakab96c1ee2015-11-04 19:24:18 +02005832 /* disable DPLL0 */
5833 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
5834 if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1))
5835 DRM_ERROR("Couldn't disable DPLL0\n");
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005836}
5837
5838void skl_init_cdclk(struct drm_i915_private *dev_priv)
5839{
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005840 unsigned int required_vco;
5841
Gary Wang39d9b852015-08-28 16:40:34 +08005842 /* DPLL0 not enabled (happens on early BIOS versions) */
5843 if (!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_ENABLE)) {
5844 /* enable DPLL0 */
5845 required_vco = skl_cdclk_get_vco(dev_priv->skl_boot_cdclk);
5846 skl_dpll0_enable(dev_priv, required_vco);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005847 }
5848
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005849 /* set CDCLK to the frequency the BIOS chose */
5850 skl_set_cdclk(dev_priv, dev_priv->skl_boot_cdclk);
5851
5852 /* enable DBUF power */
5853 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
5854 POSTING_READ(DBUF_CTL);
5855
5856 udelay(10);
5857
5858 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5859 DRM_ERROR("DBuf power enable timeout\n");
5860}
5861
Shobhit Kumarc73666f2015-10-20 18:13:12 +05305862int skl_sanitize_cdclk(struct drm_i915_private *dev_priv)
5863{
5864 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
5865 uint32_t cdctl = I915_READ(CDCLK_CTL);
5866 int freq = dev_priv->skl_boot_cdclk;
5867
Shobhit Kumarf1b391a2015-11-05 18:05:32 +05305868 /*
5869 * check if the pre-os intialized the display
5870 * There is SWF18 scratchpad register defined which is set by the
5871 * pre-os which can be used by the OS drivers to check the status
5872 */
5873 if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0)
5874 goto sanitize;
5875
Shobhit Kumarc73666f2015-10-20 18:13:12 +05305876 /* Is PLL enabled and locked ? */
5877 if (!((lcpll1 & LCPLL_PLL_ENABLE) && (lcpll1 & LCPLL_PLL_LOCK)))
5878 goto sanitize;
5879
5880 /* DPLL okay; verify the cdclock
5881 *
5882 * Noticed in some instances that the freq selection is correct but
5883 * decimal part is programmed wrong from BIOS where pre-os does not
5884 * enable display. Verify the same as well.
5885 */
5886 if (cdctl == ((cdctl & CDCLK_FREQ_SEL_MASK) | skl_cdclk_decimal(freq)))
5887 /* All well; nothing to sanitize */
5888 return false;
5889sanitize:
5890 /*
5891 * As of now initialize with max cdclk till
5892 * we get dynamic cdclk support
5893 * */
5894 dev_priv->skl_boot_cdclk = dev_priv->max_cdclk_freq;
5895 skl_init_cdclk(dev_priv);
5896
5897 /* we did have to sanitize */
5898 return true;
5899}
5900
Jesse Barnes30a970c2013-11-04 13:48:12 -08005901/* Adjust CDclk dividers to allow high res or save power if possible */
5902static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5903{
5904 struct drm_i915_private *dev_priv = dev->dev_private;
5905 u32 val, cmd;
5906
Vandana Kannan164dfd22014-11-24 13:37:41 +05305907 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5908 != dev_priv->cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02005909
Ville Syrjälädfcab172014-06-13 13:37:47 +03005910 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08005911 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03005912 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005913 cmd = 1;
5914 else
5915 cmd = 0;
5916
5917 mutex_lock(&dev_priv->rps.hw_lock);
5918 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5919 val &= ~DSPFREQGUAR_MASK;
5920 val |= (cmd << DSPFREQGUAR_SHIFT);
5921 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5922 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5923 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5924 50)) {
5925 DRM_ERROR("timed out waiting for CDclk change\n");
5926 }
5927 mutex_unlock(&dev_priv->rps.hw_lock);
5928
Ville Syrjälä54433e92015-05-26 20:42:31 +03005929 mutex_lock(&dev_priv->sb_lock);
5930
Ville Syrjälädfcab172014-06-13 13:37:47 +03005931 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005932 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005933
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005934 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005935
Jesse Barnes30a970c2013-11-04 13:48:12 -08005936 /* adjust cdclk divider */
5937 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Vandana Kannan87d5d252015-09-24 23:29:17 +03005938 val &= ~CCK_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005939 val |= divider;
5940 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03005941
5942 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
Vandana Kannan87d5d252015-09-24 23:29:17 +03005943 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
Ville Syrjäläa877e802014-06-13 13:37:52 +03005944 50))
5945 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08005946 }
5947
Jesse Barnes30a970c2013-11-04 13:48:12 -08005948 /* adjust self-refresh exit latency value */
5949 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5950 val &= ~0x7f;
5951
5952 /*
5953 * For high bandwidth configs, we set a higher latency in the bunit
5954 * so that the core display fetch happens in time to avoid underruns.
5955 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03005956 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005957 val |= 4500 / 250; /* 4.5 usec */
5958 else
5959 val |= 3000 / 250; /* 3.0 usec */
5960 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
Ville Syrjälä54433e92015-05-26 20:42:31 +03005961
Ville Syrjäläa5805162015-05-26 20:42:30 +03005962 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005963
Ville Syrjäläb6283052015-06-03 15:45:07 +03005964 intel_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005965}
5966
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005967static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5968{
5969 struct drm_i915_private *dev_priv = dev->dev_private;
5970 u32 val, cmd;
5971
Vandana Kannan164dfd22014-11-24 13:37:41 +05305972 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5973 != dev_priv->cdclk_freq);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005974
5975 switch (cdclk) {
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005976 case 333333:
5977 case 320000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005978 case 266667:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005979 case 200000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005980 break;
5981 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01005982 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005983 return;
5984 }
5985
Ville Syrjälä9d0d3fd2015-03-02 20:07:17 +02005986 /*
5987 * Specs are full of misinformation, but testing on actual
5988 * hardware has shown that we just need to write the desired
5989 * CCK divider into the Punit register.
5990 */
5991 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5992
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005993 mutex_lock(&dev_priv->rps.hw_lock);
5994 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5995 val &= ~DSPFREQGUAR_MASK_CHV;
5996 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
5997 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5998 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5999 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
6000 50)) {
6001 DRM_ERROR("timed out waiting for CDclk change\n");
6002 }
6003 mutex_unlock(&dev_priv->rps.hw_lock);
6004
Ville Syrjäläb6283052015-06-03 15:45:07 +03006005 intel_update_cdclk(dev);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006006}
6007
Jesse Barnes30a970c2013-11-04 13:48:12 -08006008static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
6009 int max_pixclk)
6010{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03006011 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006012 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03006013
Jesse Barnes30a970c2013-11-04 13:48:12 -08006014 /*
6015 * Really only a few cases to deal with, as only 4 CDclks are supported:
6016 * 200MHz
6017 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03006018 * 320/333MHz (depends on HPLL freq)
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006019 * 400MHz (VLV only)
6020 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
6021 * of the lower bin and adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03006022 *
6023 * We seem to get an unstable or solid color picture at 200MHz.
6024 * Not sure what's wrong. For now use 200MHz only when all pipes
6025 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08006026 */
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006027 if (!IS_CHERRYVIEW(dev_priv) &&
6028 max_pixclk > freq_320*limit/100)
Ville Syrjälädfcab172014-06-13 13:37:47 +03006029 return 400000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006030 else if (max_pixclk > 266667*limit/100)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03006031 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03006032 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03006033 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03006034 else
6035 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006036}
6037
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306038static int broxton_calc_cdclk(struct drm_i915_private *dev_priv,
6039 int max_pixclk)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006040{
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306041 /*
6042 * FIXME:
6043 * - remove the guardband, it's not needed on BXT
6044 * - set 19.2MHz bypass frequency if there are no active pipes
6045 */
6046 if (max_pixclk > 576000*9/10)
6047 return 624000;
6048 else if (max_pixclk > 384000*9/10)
6049 return 576000;
6050 else if (max_pixclk > 288000*9/10)
6051 return 384000;
6052 else if (max_pixclk > 144000*9/10)
6053 return 288000;
6054 else
6055 return 144000;
6056}
6057
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03006058/* Compute the max pixel clock for new configuration. Uses atomic state if
6059 * that's non-NULL, look at current state otherwise. */
6060static int intel_mode_max_pixclk(struct drm_device *dev,
6061 struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006062{
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006063 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
6064 struct drm_i915_private *dev_priv = dev->dev_private;
6065 struct drm_crtc *crtc;
6066 struct drm_crtc_state *crtc_state;
6067 unsigned max_pixclk = 0, i;
6068 enum pipe pipe;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006069
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006070 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
6071 sizeof(intel_state->min_pixclk));
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006072
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006073 for_each_crtc_in_state(state, crtc, crtc_state, i) {
6074 int pixclk = 0;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006075
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006076 if (crtc_state->enable)
6077 pixclk = crtc_state->adjusted_mode.crtc_clock;
6078
6079 intel_state->min_pixclk[i] = pixclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006080 }
6081
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006082 if (!intel_state->active_crtcs)
6083 return 0;
6084
6085 for_each_pipe(dev_priv, pipe)
6086 max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk);
6087
Jesse Barnes30a970c2013-11-04 13:48:12 -08006088 return max_pixclk;
6089}
6090
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006091static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006092{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006093 struct drm_device *dev = state->dev;
6094 struct drm_i915_private *dev_priv = dev->dev_private;
6095 int max_pixclk = intel_mode_max_pixclk(dev, state);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006096 struct intel_atomic_state *intel_state =
6097 to_intel_atomic_state(state);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006098
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006099 if (max_pixclk < 0)
6100 return max_pixclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006101
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006102 intel_state->cdclk = intel_state->dev_cdclk =
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006103 valleyview_calc_cdclk(dev_priv, max_pixclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306104
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006105 if (!intel_state->active_crtcs)
6106 intel_state->dev_cdclk = valleyview_calc_cdclk(dev_priv, 0);
6107
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006108 return 0;
6109}
Jesse Barnes30a970c2013-11-04 13:48:12 -08006110
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006111static int broxton_modeset_calc_cdclk(struct drm_atomic_state *state)
6112{
6113 struct drm_device *dev = state->dev;
6114 struct drm_i915_private *dev_priv = dev->dev_private;
6115 int max_pixclk = intel_mode_max_pixclk(dev, state);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006116 struct intel_atomic_state *intel_state =
6117 to_intel_atomic_state(state);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006118
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006119 if (max_pixclk < 0)
6120 return max_pixclk;
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006121
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006122 intel_state->cdclk = intel_state->dev_cdclk =
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006123 broxton_calc_cdclk(dev_priv, max_pixclk);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006124
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006125 if (!intel_state->active_crtcs)
6126 intel_state->dev_cdclk = broxton_calc_cdclk(dev_priv, 0);
6127
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006128 return 0;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006129}
6130
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006131static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
6132{
6133 unsigned int credits, default_credits;
6134
6135 if (IS_CHERRYVIEW(dev_priv))
6136 default_credits = PFI_CREDIT(12);
6137 else
6138 default_credits = PFI_CREDIT(8);
6139
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03006140 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006141 /* CHV suggested value is 31 or 63 */
6142 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjäläfcc00082015-05-26 20:22:40 +03006143 credits = PFI_CREDIT_63;
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006144 else
6145 credits = PFI_CREDIT(15);
6146 } else {
6147 credits = default_credits;
6148 }
6149
6150 /*
6151 * WA - write default credits before re-programming
6152 * FIXME: should we also set the resend bit here?
6153 */
6154 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6155 default_credits);
6156
6157 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6158 credits | PFI_CREDIT_RESEND);
6159
6160 /*
6161 * FIXME is this guaranteed to clear
6162 * immediately or should we poll for it?
6163 */
6164 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6165}
6166
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006167static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006168{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03006169 struct drm_device *dev = old_state->dev;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006170 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006171 struct intel_atomic_state *old_intel_state =
6172 to_intel_atomic_state(old_state);
6173 unsigned req_cdclk = old_intel_state->dev_cdclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006174
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006175 /*
6176 * FIXME: We can end up here with all power domains off, yet
6177 * with a CDCLK frequency other than the minimum. To account
6178 * for this take the PIPE-A power domain, which covers the HW
6179 * blocks needed for the following programming. This can be
6180 * removed once it's guaranteed that we get here either with
6181 * the minimum CDCLK set, or the required power domains
6182 * enabled.
6183 */
6184 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006185
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006186 if (IS_CHERRYVIEW(dev))
6187 cherryview_set_cdclk(dev, req_cdclk);
6188 else
6189 valleyview_set_cdclk(dev, req_cdclk);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006190
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006191 vlv_program_pfi_credits(dev_priv);
Imre Deak738c05c2014-11-19 16:25:37 +02006192
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006193 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006194}
6195
Jesse Barnes89b667f2013-04-18 14:51:36 -07006196static void valleyview_crtc_enable(struct drm_crtc *crtc)
6197{
6198 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006199 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006200 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6201 struct intel_encoder *encoder;
6202 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006203
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006204 if (WARN_ON(intel_crtc->active))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006205 return;
6206
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006207 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05306208 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006209
6210 intel_set_pipe_timings(intel_crtc);
6211
Ville Syrjäläc14b0482014-10-16 20:52:34 +03006212 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
6213 struct drm_i915_private *dev_priv = dev->dev_private;
6214
6215 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6216 I915_WRITE(CHV_CANVAS(pipe), 0);
6217 }
6218
Daniel Vetter5b18e572014-04-24 23:55:06 +02006219 i9xx_set_pipeconf(intel_crtc);
6220
Jesse Barnes89b667f2013-04-18 14:51:36 -07006221 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006222
Daniel Vettera72e4c92014-09-30 10:56:47 +02006223 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006224
Jesse Barnes89b667f2013-04-18 14:51:36 -07006225 for_each_encoder_on_crtc(dev, crtc, encoder)
6226 if (encoder->pre_pll_enable)
6227 encoder->pre_pll_enable(encoder);
6228
Jani Nikulaa65347b2015-11-27 12:21:46 +02006229 if (!intel_crtc->config->has_dsi_encoder) {
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006230 if (IS_CHERRYVIEW(dev)) {
6231 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006232 chv_enable_pll(intel_crtc, intel_crtc->config);
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006233 } else {
6234 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006235 vlv_enable_pll(intel_crtc, intel_crtc->config);
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006236 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006237 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07006238
6239 for_each_encoder_on_crtc(dev, crtc, encoder)
6240 if (encoder->pre_enable)
6241 encoder->pre_enable(encoder);
6242
Jesse Barnes2dd24552013-04-25 12:55:01 -07006243 i9xx_pfit_enable(intel_crtc);
6244
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006245 intel_crtc_load_lut(crtc);
6246
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006247 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006248
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006249 assert_vblank_disabled(crtc);
6250 drm_crtc_vblank_on(crtc);
6251
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006252 for_each_encoder_on_crtc(dev, crtc, encoder)
6253 encoder->enable(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006254}
6255
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006256static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6257{
6258 struct drm_device *dev = crtc->base.dev;
6259 struct drm_i915_private *dev_priv = dev->dev_private;
6260
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006261 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6262 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006263}
6264
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006265static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08006266{
6267 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006268 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006269 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006270 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006271 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08006272
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006273 if (WARN_ON(intel_crtc->active))
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006274 return;
6275
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006276 i9xx_set_pll_dividers(intel_crtc);
6277
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006278 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05306279 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006280
6281 intel_set_pipe_timings(intel_crtc);
6282
Daniel Vetter5b18e572014-04-24 23:55:06 +02006283 i9xx_set_pipeconf(intel_crtc);
6284
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006285 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01006286
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006287 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006288 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006289
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02006290 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02006291 if (encoder->pre_enable)
6292 encoder->pre_enable(encoder);
6293
Daniel Vetterf6736a12013-06-05 13:34:30 +02006294 i9xx_enable_pll(intel_crtc);
6295
Jesse Barnes2dd24552013-04-25 12:55:01 -07006296 i9xx_pfit_enable(intel_crtc);
6297
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006298 intel_crtc_load_lut(crtc);
6299
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03006300 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006301 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006302
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006303 assert_vblank_disabled(crtc);
6304 drm_crtc_vblank_on(crtc);
6305
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006306 for_each_encoder_on_crtc(dev, crtc, encoder)
6307 encoder->enable(encoder);
Paulo Zanonid029bca2015-10-15 10:44:46 -03006308
6309 intel_fbc_enable(intel_crtc);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006310}
6311
Daniel Vetter87476d62013-04-11 16:29:06 +02006312static void i9xx_pfit_disable(struct intel_crtc *crtc)
6313{
6314 struct drm_device *dev = crtc->base.dev;
6315 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02006316
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006317 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02006318 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02006319
6320 assert_pipe_disabled(dev_priv, crtc->pipe);
6321
Daniel Vetter328d8e82013-05-08 10:36:31 +02006322 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6323 I915_READ(PFIT_CONTROL));
6324 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02006325}
6326
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006327static void i9xx_crtc_disable(struct drm_crtc *crtc)
6328{
6329 struct drm_device *dev = crtc->dev;
6330 struct drm_i915_private *dev_priv = dev->dev_private;
6331 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006332 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006333 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006334
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006335 /*
6336 * On gen2 planes are double buffered but the pipe isn't, so we must
6337 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03006338 * We also need to wait on all gmch platforms because of the
6339 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006340 */
Imre Deak564ed192014-06-13 14:54:21 +03006341 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006342
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006343 for_each_encoder_on_crtc(dev, crtc, encoder)
6344 encoder->disable(encoder);
6345
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006346 drm_crtc_vblank_off(crtc);
6347 assert_vblank_disabled(crtc);
6348
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03006349 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006350
Daniel Vetter87476d62013-04-11 16:29:06 +02006351 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006352
Jesse Barnes89b667f2013-04-18 14:51:36 -07006353 for_each_encoder_on_crtc(dev, crtc, encoder)
6354 if (encoder->post_disable)
6355 encoder->post_disable(encoder);
6356
Jani Nikulaa65347b2015-11-27 12:21:46 +02006357 if (!intel_crtc->config->has_dsi_encoder) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006358 if (IS_CHERRYVIEW(dev))
6359 chv_disable_pll(dev_priv, pipe);
6360 else if (IS_VALLEYVIEW(dev))
6361 vlv_disable_pll(dev_priv, pipe);
6362 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006363 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006364 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006365
Ville Syrjäläd6db9952015-07-08 23:45:49 +03006366 for_each_encoder_on_crtc(dev, crtc, encoder)
6367 if (encoder->post_pll_disable)
6368 encoder->post_pll_disable(encoder);
6369
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006370 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006371 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Paulo Zanonid029bca2015-10-15 10:44:46 -03006372
6373 intel_fbc_disable_crtc(intel_crtc);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006374}
6375
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006376static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006377{
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006378 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006379 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006380 enum intel_display_power_domain domain;
6381 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02006382
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006383 if (!intel_crtc->active)
6384 return;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006385
Maarten Lankhorsta5392052015-06-15 12:33:52 +02006386 if (to_intel_plane_state(crtc->primary->state)->visible) {
Maarten Lankhorstfc32b1f2015-10-19 17:09:23 +02006387 WARN_ON(intel_crtc->unpin_work);
6388
Maarten Lankhorsta5392052015-06-15 12:33:52 +02006389 intel_pre_disable_primary(crtc);
Maarten Lankhorst54a419612015-11-23 10:25:28 +01006390
6391 intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary));
6392 to_intel_plane_state(crtc->primary->state)->visible = false;
Maarten Lankhorsta5392052015-06-15 12:33:52 +02006393 }
6394
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006395 dev_priv->display.crtc_disable(crtc);
Matt Roper37d90782015-09-24 15:53:06 -07006396 intel_crtc->active = false;
6397 intel_update_watermarks(crtc);
Maarten Lankhorst1f7457b2015-07-13 11:55:05 +02006398 intel_disable_shared_dpll(intel_crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006399
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006400 domains = intel_crtc->enabled_power_domains;
6401 for_each_power_domain(domain, domains)
6402 intel_display_power_put(dev_priv, domain);
6403 intel_crtc->enabled_power_domains = 0;
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006404
6405 dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe);
6406 dev_priv->min_pixclk[intel_crtc->pipe] = 0;
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006407}
6408
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006409/*
6410 * turn all crtc's off, but do not adjust state
6411 * This has to be paired with a call to intel_modeset_setup_hw_state.
6412 */
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006413int intel_display_suspend(struct drm_device *dev)
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006414{
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006415 struct drm_mode_config *config = &dev->mode_config;
6416 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
6417 struct drm_atomic_state *state;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006418 struct drm_crtc *crtc;
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006419 unsigned crtc_mask = 0;
6420 int ret = 0;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006421
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006422 if (WARN_ON(!ctx))
6423 return 0;
6424
6425 lockdep_assert_held(&ctx->ww_ctx);
6426 state = drm_atomic_state_alloc(dev);
6427 if (WARN_ON(!state))
6428 return -ENOMEM;
6429
6430 state->acquire_ctx = ctx;
6431 state->allow_modeset = true;
6432
6433 for_each_crtc(dev, crtc) {
6434 struct drm_crtc_state *crtc_state =
6435 drm_atomic_get_crtc_state(state, crtc);
6436
6437 ret = PTR_ERR_OR_ZERO(crtc_state);
6438 if (ret)
6439 goto free;
6440
6441 if (!crtc_state->active)
6442 continue;
6443
6444 crtc_state->active = false;
6445 crtc_mask |= 1 << drm_crtc_index(crtc);
6446 }
6447
6448 if (crtc_mask) {
Maarten Lankhorst74c090b2015-07-13 16:30:30 +02006449 ret = drm_atomic_commit(state);
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006450
6451 if (!ret) {
6452 for_each_crtc(dev, crtc)
6453 if (crtc_mask & (1 << drm_crtc_index(crtc)))
6454 crtc->state->active = true;
6455
6456 return ret;
6457 }
6458 }
6459
6460free:
6461 if (ret)
6462 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
6463 drm_atomic_state_free(state);
6464 return ret;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006465}
6466
Chris Wilsonea5b2132010-08-04 13:50:23 +01006467void intel_encoder_destroy(struct drm_encoder *encoder)
6468{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006469 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01006470
Chris Wilsonea5b2132010-08-04 13:50:23 +01006471 drm_encoder_cleanup(encoder);
6472 kfree(intel_encoder);
6473}
6474
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006475/* Cross check the actual hw state with our own modeset state tracking (and it's
6476 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02006477static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006478{
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006479 struct drm_crtc *crtc = connector->base.state->crtc;
6480
6481 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6482 connector->base.base.id,
6483 connector->base.name);
6484
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006485 if (connector->get_hw_state(connector)) {
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006486 struct intel_encoder *encoder = connector->encoder;
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006487 struct drm_connector_state *conn_state = connector->base.state;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006488
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006489 I915_STATE_WARN(!crtc,
6490 "connector enabled without attached crtc\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006491
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006492 if (!crtc)
6493 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006494
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006495 I915_STATE_WARN(!crtc->state->active,
6496 "connector is active, but attached crtc isn't\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006497
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006498 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006499 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006500
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006501 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006502 "atomic encoder doesn't match attached encoder\n");
Dave Airlie36cd7442014-05-02 13:44:18 +10006503
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006504 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006505 "attached encoder crtc differs from connector crtc\n");
6506 } else {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02006507 I915_STATE_WARN(crtc && crtc->state->active,
6508 "attached crtc is active, but connector isn't\n");
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006509 I915_STATE_WARN(!crtc && connector->base.state->best_encoder,
6510 "best encoder set without crtc!\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006511 }
6512}
6513
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006514int intel_connector_init(struct intel_connector *connector)
6515{
6516 struct drm_connector_state *connector_state;
6517
6518 connector_state = kzalloc(sizeof *connector_state, GFP_KERNEL);
6519 if (!connector_state)
6520 return -ENOMEM;
6521
6522 connector->base.state = connector_state;
6523 return 0;
6524}
6525
6526struct intel_connector *intel_connector_alloc(void)
6527{
6528 struct intel_connector *connector;
6529
6530 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6531 if (!connector)
6532 return NULL;
6533
6534 if (intel_connector_init(connector) < 0) {
6535 kfree(connector);
6536 return NULL;
6537 }
6538
6539 return connector;
6540}
6541
Daniel Vetterf0947c32012-07-02 13:10:34 +02006542/* Simple connector->get_hw_state implementation for encoders that support only
6543 * one connector and no cloning and hence the encoder state determines the state
6544 * of the connector. */
6545bool intel_connector_get_hw_state(struct intel_connector *connector)
6546{
Daniel Vetter24929352012-07-02 20:28:59 +02006547 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02006548 struct intel_encoder *encoder = connector->encoder;
6549
6550 return encoder->get_hw_state(encoder, &pipe);
6551}
6552
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006553static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006554{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006555 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6556 return crtc_state->fdi_lanes;
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006557
6558 return 0;
6559}
6560
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006561static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006562 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006563{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006564 struct drm_atomic_state *state = pipe_config->base.state;
6565 struct intel_crtc *other_crtc;
6566 struct intel_crtc_state *other_crtc_state;
6567
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006568 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6569 pipe_name(pipe), pipe_config->fdi_lanes);
6570 if (pipe_config->fdi_lanes > 4) {
6571 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6572 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006573 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006574 }
6575
Paulo Zanonibafb6552013-11-02 21:07:44 -07006576 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006577 if (pipe_config->fdi_lanes > 2) {
6578 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6579 pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006580 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006581 } else {
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006582 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006583 }
6584 }
6585
6586 if (INTEL_INFO(dev)->num_pipes == 2)
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006587 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006588
6589 /* Ivybridge 3 pipe is really complicated */
6590 switch (pipe) {
6591 case PIPE_A:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006592 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006593 case PIPE_B:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006594 if (pipe_config->fdi_lanes <= 2)
6595 return 0;
6596
6597 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6598 other_crtc_state =
6599 intel_atomic_get_crtc_state(state, other_crtc);
6600 if (IS_ERR(other_crtc_state))
6601 return PTR_ERR(other_crtc_state);
6602
6603 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006604 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6605 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006606 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006607 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006608 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006609 case PIPE_C:
Ville Syrjälä251cc672015-03-11 18:52:30 +02006610 if (pipe_config->fdi_lanes > 2) {
6611 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6612 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006613 return -EINVAL;
Ville Syrjälä251cc672015-03-11 18:52:30 +02006614 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006615
6616 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6617 other_crtc_state =
6618 intel_atomic_get_crtc_state(state, other_crtc);
6619 if (IS_ERR(other_crtc_state))
6620 return PTR_ERR(other_crtc_state);
6621
6622 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006623 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006624 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006625 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006626 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006627 default:
6628 BUG();
6629 }
6630}
6631
Daniel Vettere29c22c2013-02-21 00:00:16 +01006632#define RETRY 1
6633static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006634 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02006635{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006636 struct drm_device *dev = intel_crtc->base.dev;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03006637 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006638 int lane, link_bw, fdi_dotclock, ret;
6639 bool needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006640
Daniel Vettere29c22c2013-02-21 00:00:16 +01006641retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02006642 /* FDI is a binary signal running at ~2.7GHz, encoding
6643 * each output octet as 10 bits. The actual frequency
6644 * is stored as a divider into a 100MHz clock, and the
6645 * mode pixel clock is stored in units of 1KHz.
6646 * Hence the bw of each lane in terms of the mode signal
6647 * is:
6648 */
6649 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
6650
Damien Lespiau241bfc32013-09-25 16:45:37 +01006651 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006652
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006653 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006654 pipe_config->pipe_bpp);
6655
6656 pipe_config->fdi_lanes = lane;
6657
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006658 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006659 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006660
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006661 ret = ironlake_check_fdi_lanes(intel_crtc->base.dev,
6662 intel_crtc->pipe, pipe_config);
6663 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01006664 pipe_config->pipe_bpp -= 2*3;
6665 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6666 pipe_config->pipe_bpp);
6667 needs_recompute = true;
6668 pipe_config->bw_constrained = true;
6669
6670 goto retry;
6671 }
6672
6673 if (needs_recompute)
6674 return RETRY;
6675
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006676 return ret;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006677}
6678
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006679static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
6680 struct intel_crtc_state *pipe_config)
6681{
6682 if (pipe_config->pipe_bpp > 24)
6683 return false;
6684
6685 /* HSW can handle pixel rate up to cdclk? */
6686 if (IS_HASWELL(dev_priv->dev))
6687 return true;
6688
6689 /*
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03006690 * We compare against max which means we must take
6691 * the increased cdclk requirement into account when
6692 * calculating the new cdclk.
6693 *
6694 * Should measure whether using a lower cdclk w/o IPS
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006695 */
6696 return ilk_pipe_pixel_rate(pipe_config) <=
6697 dev_priv->max_cdclk_freq * 95 / 100;
6698}
6699
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006700static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006701 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006702{
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006703 struct drm_device *dev = crtc->base.dev;
6704 struct drm_i915_private *dev_priv = dev->dev_private;
6705
Jani Nikulad330a952014-01-21 11:24:25 +02006706 pipe_config->ips_enabled = i915.enable_ips &&
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006707 hsw_crtc_supports_ips(crtc) &&
6708 pipe_config_supports_ips(dev_priv, pipe_config);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006709}
6710
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006711static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc)
6712{
6713 const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6714
6715 /* GDG double wide on either pipe, otherwise pipe A only */
6716 return INTEL_INFO(dev_priv)->gen < 4 &&
6717 (crtc->pipe == PIPE_A || IS_I915G(dev_priv));
6718}
6719
Daniel Vettera43f6e02013-06-07 23:10:32 +02006720static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006721 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08006722{
Daniel Vettera43f6e02013-06-07 23:10:32 +02006723 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02006724 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03006725 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01006726
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006727 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006728 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006729 int clock_limit = dev_priv->max_cdclk_freq * 9 / 10;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006730
6731 /*
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006732 * Enable double wide mode when the dot clock
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006733 * is > 90% of the (display) core speed.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006734 */
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006735 if (intel_crtc_supports_double_wide(crtc) &&
6736 adjusted_mode->crtc_clock > clock_limit) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006737 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006738 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006739 }
6740
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006741 if (adjusted_mode->crtc_clock > clock_limit) {
6742 DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n",
6743 adjusted_mode->crtc_clock, clock_limit,
6744 yesno(pipe_config->double_wide));
Daniel Vettere29c22c2013-02-21 00:00:16 +01006745 return -EINVAL;
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006746 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08006747 }
Chris Wilson89749352010-09-12 18:25:19 +01006748
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006749 /*
6750 * Pipe horizontal size must be even in:
6751 * - DVO ganged mode
6752 * - LVDS dual channel mode
6753 * - Double wide pipe
6754 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006755 if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006756 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6757 pipe_config->pipe_src_w &= ~1;
6758
Damien Lespiau8693a822013-05-03 18:48:11 +01006759 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6760 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03006761 */
6762 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
Ville Syrjäläaad941d2015-09-25 16:38:56 +03006763 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006764 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03006765
Damien Lespiauf5adf942013-06-24 18:29:34 +01006766 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02006767 hsw_compute_ips_config(crtc, pipe_config);
6768
Daniel Vetter877d48d2013-04-19 11:24:43 +02006769 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02006770 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02006771
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +02006772 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006773}
6774
Ville Syrjälä1652d192015-03-31 14:12:01 +03006775static int skylake_get_display_clock_speed(struct drm_device *dev)
6776{
6777 struct drm_i915_private *dev_priv = to_i915(dev);
6778 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
6779 uint32_t cdctl = I915_READ(CDCLK_CTL);
6780 uint32_t linkrate;
6781
Damien Lespiau414355a2015-06-04 18:21:31 +01006782 if (!(lcpll1 & LCPLL_PLL_ENABLE))
Ville Syrjälä1652d192015-03-31 14:12:01 +03006783 return 24000; /* 24MHz is the cd freq with NSSC ref */
Ville Syrjälä1652d192015-03-31 14:12:01 +03006784
6785 if ((cdctl & CDCLK_FREQ_SEL_MASK) == CDCLK_FREQ_540)
6786 return 540000;
6787
6788 linkrate = (I915_READ(DPLL_CTRL1) &
Damien Lespiau71cd8422015-04-30 16:39:17 +01006789 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) >> 1;
Ville Syrjälä1652d192015-03-31 14:12:01 +03006790
Damien Lespiau71cd8422015-04-30 16:39:17 +01006791 if (linkrate == DPLL_CTRL1_LINK_RATE_2160 ||
6792 linkrate == DPLL_CTRL1_LINK_RATE_1080) {
Ville Syrjälä1652d192015-03-31 14:12:01 +03006793 /* vco 8640 */
6794 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6795 case CDCLK_FREQ_450_432:
6796 return 432000;
6797 case CDCLK_FREQ_337_308:
6798 return 308570;
6799 case CDCLK_FREQ_675_617:
6800 return 617140;
6801 default:
6802 WARN(1, "Unknown cd freq selection\n");
6803 }
6804 } else {
6805 /* vco 8100 */
6806 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6807 case CDCLK_FREQ_450_432:
6808 return 450000;
6809 case CDCLK_FREQ_337_308:
6810 return 337500;
6811 case CDCLK_FREQ_675_617:
6812 return 675000;
6813 default:
6814 WARN(1, "Unknown cd freq selection\n");
6815 }
6816 }
6817
6818 /* error case, do as if DPLL0 isn't enabled */
6819 return 24000;
6820}
6821
Bob Paauweacd3f3d2015-06-23 14:14:26 -07006822static int broxton_get_display_clock_speed(struct drm_device *dev)
6823{
6824 struct drm_i915_private *dev_priv = to_i915(dev);
6825 uint32_t cdctl = I915_READ(CDCLK_CTL);
6826 uint32_t pll_ratio = I915_READ(BXT_DE_PLL_CTL) & BXT_DE_PLL_RATIO_MASK;
6827 uint32_t pll_enab = I915_READ(BXT_DE_PLL_ENABLE);
6828 int cdclk;
6829
6830 if (!(pll_enab & BXT_DE_PLL_PLL_ENABLE))
6831 return 19200;
6832
6833 cdclk = 19200 * pll_ratio / 2;
6834
6835 switch (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) {
6836 case BXT_CDCLK_CD2X_DIV_SEL_1:
6837 return cdclk; /* 576MHz or 624MHz */
6838 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
6839 return cdclk * 2 / 3; /* 384MHz */
6840 case BXT_CDCLK_CD2X_DIV_SEL_2:
6841 return cdclk / 2; /* 288MHz */
6842 case BXT_CDCLK_CD2X_DIV_SEL_4:
6843 return cdclk / 4; /* 144MHz */
6844 }
6845
6846 /* error case, do as if DE PLL isn't enabled */
6847 return 19200;
6848}
6849
Ville Syrjälä1652d192015-03-31 14:12:01 +03006850static int broadwell_get_display_clock_speed(struct drm_device *dev)
6851{
6852 struct drm_i915_private *dev_priv = dev->dev_private;
6853 uint32_t lcpll = I915_READ(LCPLL_CTL);
6854 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6855
6856 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6857 return 800000;
6858 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6859 return 450000;
6860 else if (freq == LCPLL_CLK_FREQ_450)
6861 return 450000;
6862 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6863 return 540000;
6864 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6865 return 337500;
6866 else
6867 return 675000;
6868}
6869
6870static int haswell_get_display_clock_speed(struct drm_device *dev)
6871{
6872 struct drm_i915_private *dev_priv = dev->dev_private;
6873 uint32_t lcpll = I915_READ(LCPLL_CTL);
6874 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6875
6876 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6877 return 800000;
6878 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6879 return 450000;
6880 else if (freq == LCPLL_CLK_FREQ_450)
6881 return 450000;
6882 else if (IS_HSW_ULT(dev))
6883 return 337500;
6884 else
6885 return 540000;
Jesse Barnes79e53942008-11-07 14:24:08 -08006886}
6887
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006888static int valleyview_get_display_clock_speed(struct drm_device *dev)
6889{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03006890 return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk",
6891 CCK_DISPLAY_CLOCK_CONTROL);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006892}
6893
Ville Syrjäläb37a6432015-03-31 14:11:54 +03006894static int ilk_get_display_clock_speed(struct drm_device *dev)
6895{
6896 return 450000;
6897}
6898
Jesse Barnese70236a2009-09-21 10:42:27 -07006899static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08006900{
Jesse Barnese70236a2009-09-21 10:42:27 -07006901 return 400000;
6902}
Jesse Barnes79e53942008-11-07 14:24:08 -08006903
Jesse Barnese70236a2009-09-21 10:42:27 -07006904static int i915_get_display_clock_speed(struct drm_device *dev)
6905{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006906 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006907}
Jesse Barnes79e53942008-11-07 14:24:08 -08006908
Jesse Barnese70236a2009-09-21 10:42:27 -07006909static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6910{
6911 return 200000;
6912}
Jesse Barnes79e53942008-11-07 14:24:08 -08006913
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006914static int pnv_get_display_clock_speed(struct drm_device *dev)
6915{
6916 u16 gcfgc = 0;
6917
6918 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6919
6920 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6921 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006922 return 266667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006923 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006924 return 333333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006925 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006926 return 444444;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006927 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6928 return 200000;
6929 default:
6930 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6931 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006932 return 133333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006933 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006934 return 166667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006935 }
6936}
6937
Jesse Barnese70236a2009-09-21 10:42:27 -07006938static int i915gm_get_display_clock_speed(struct drm_device *dev)
6939{
6940 u16 gcfgc = 0;
6941
6942 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6943
6944 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Ville Syrjäläe907f172015-03-31 14:09:47 +03006945 return 133333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006946 else {
6947 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6948 case GC_DISPLAY_CLOCK_333_MHZ:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006949 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006950 default:
6951 case GC_DISPLAY_CLOCK_190_200_MHZ:
6952 return 190000;
6953 }
6954 }
6955}
Jesse Barnes79e53942008-11-07 14:24:08 -08006956
Jesse Barnese70236a2009-09-21 10:42:27 -07006957static int i865_get_display_clock_speed(struct drm_device *dev)
6958{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006959 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07006960}
6961
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006962static int i85x_get_display_clock_speed(struct drm_device *dev)
Jesse Barnese70236a2009-09-21 10:42:27 -07006963{
6964 u16 hpllcc = 0;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006965
Ville Syrjälä65cd2b32015-05-22 11:22:32 +03006966 /*
6967 * 852GM/852GMV only supports 133 MHz and the HPLLCC
6968 * encoding is different :(
6969 * FIXME is this the right way to detect 852GM/852GMV?
6970 */
6971 if (dev->pdev->revision == 0x1)
6972 return 133333;
6973
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006974 pci_bus_read_config_word(dev->pdev->bus,
6975 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
6976
Jesse Barnese70236a2009-09-21 10:42:27 -07006977 /* Assume that the hardware is in the high speed state. This
6978 * should be the default.
6979 */
6980 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
6981 case GC_CLOCK_133_200:
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006982 case GC_CLOCK_133_200_2:
Jesse Barnese70236a2009-09-21 10:42:27 -07006983 case GC_CLOCK_100_200:
6984 return 200000;
6985 case GC_CLOCK_166_250:
6986 return 250000;
6987 case GC_CLOCK_100_133:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006988 return 133333;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006989 case GC_CLOCK_133_266:
6990 case GC_CLOCK_133_266_2:
6991 case GC_CLOCK_166_266:
6992 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07006993 }
6994
6995 /* Shouldn't happen */
6996 return 0;
6997}
6998
6999static int i830_get_display_clock_speed(struct drm_device *dev)
7000{
Ville Syrjäläe907f172015-03-31 14:09:47 +03007001 return 133333;
Jesse Barnes79e53942008-11-07 14:24:08 -08007002}
7003
Ville Syrjälä34edce22015-05-22 11:22:33 +03007004static unsigned int intel_hpll_vco(struct drm_device *dev)
7005{
7006 struct drm_i915_private *dev_priv = dev->dev_private;
7007 static const unsigned int blb_vco[8] = {
7008 [0] = 3200000,
7009 [1] = 4000000,
7010 [2] = 5333333,
7011 [3] = 4800000,
7012 [4] = 6400000,
7013 };
7014 static const unsigned int pnv_vco[8] = {
7015 [0] = 3200000,
7016 [1] = 4000000,
7017 [2] = 5333333,
7018 [3] = 4800000,
7019 [4] = 2666667,
7020 };
7021 static const unsigned int cl_vco[8] = {
7022 [0] = 3200000,
7023 [1] = 4000000,
7024 [2] = 5333333,
7025 [3] = 6400000,
7026 [4] = 3333333,
7027 [5] = 3566667,
7028 [6] = 4266667,
7029 };
7030 static const unsigned int elk_vco[8] = {
7031 [0] = 3200000,
7032 [1] = 4000000,
7033 [2] = 5333333,
7034 [3] = 4800000,
7035 };
7036 static const unsigned int ctg_vco[8] = {
7037 [0] = 3200000,
7038 [1] = 4000000,
7039 [2] = 5333333,
7040 [3] = 6400000,
7041 [4] = 2666667,
7042 [5] = 4266667,
7043 };
7044 const unsigned int *vco_table;
7045 unsigned int vco;
7046 uint8_t tmp = 0;
7047
7048 /* FIXME other chipsets? */
7049 if (IS_GM45(dev))
7050 vco_table = ctg_vco;
7051 else if (IS_G4X(dev))
7052 vco_table = elk_vco;
7053 else if (IS_CRESTLINE(dev))
7054 vco_table = cl_vco;
7055 else if (IS_PINEVIEW(dev))
7056 vco_table = pnv_vco;
7057 else if (IS_G33(dev))
7058 vco_table = blb_vco;
7059 else
7060 return 0;
7061
7062 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
7063
7064 vco = vco_table[tmp & 0x7];
7065 if (vco == 0)
7066 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
7067 else
7068 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
7069
7070 return vco;
7071}
7072
7073static int gm45_get_display_clock_speed(struct drm_device *dev)
7074{
7075 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7076 uint16_t tmp = 0;
7077
7078 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7079
7080 cdclk_sel = (tmp >> 12) & 0x1;
7081
7082 switch (vco) {
7083 case 2666667:
7084 case 4000000:
7085 case 5333333:
7086 return cdclk_sel ? 333333 : 222222;
7087 case 3200000:
7088 return cdclk_sel ? 320000 : 228571;
7089 default:
7090 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
7091 return 222222;
7092 }
7093}
7094
7095static int i965gm_get_display_clock_speed(struct drm_device *dev)
7096{
7097 static const uint8_t div_3200[] = { 16, 10, 8 };
7098 static const uint8_t div_4000[] = { 20, 12, 10 };
7099 static const uint8_t div_5333[] = { 24, 16, 14 };
7100 const uint8_t *div_table;
7101 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7102 uint16_t tmp = 0;
7103
7104 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7105
7106 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
7107
7108 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7109 goto fail;
7110
7111 switch (vco) {
7112 case 3200000:
7113 div_table = div_3200;
7114 break;
7115 case 4000000:
7116 div_table = div_4000;
7117 break;
7118 case 5333333:
7119 div_table = div_5333;
7120 break;
7121 default:
7122 goto fail;
7123 }
7124
7125 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7126
Damien Lespiaucaf4e252015-06-04 16:56:18 +01007127fail:
Ville Syrjälä34edce22015-05-22 11:22:33 +03007128 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
7129 return 200000;
7130}
7131
7132static int g33_get_display_clock_speed(struct drm_device *dev)
7133{
7134 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
7135 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
7136 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
7137 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
7138 const uint8_t *div_table;
7139 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7140 uint16_t tmp = 0;
7141
7142 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7143
7144 cdclk_sel = (tmp >> 4) & 0x7;
7145
7146 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7147 goto fail;
7148
7149 switch (vco) {
7150 case 3200000:
7151 div_table = div_3200;
7152 break;
7153 case 4000000:
7154 div_table = div_4000;
7155 break;
7156 case 4800000:
7157 div_table = div_4800;
7158 break;
7159 case 5333333:
7160 div_table = div_5333;
7161 break;
7162 default:
7163 goto fail;
7164 }
7165
7166 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7167
Damien Lespiaucaf4e252015-06-04 16:56:18 +01007168fail:
Ville Syrjälä34edce22015-05-22 11:22:33 +03007169 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7170 return 190476;
7171}
7172
Zhenyu Wang2c072452009-06-05 15:38:42 +08007173static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007174intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007175{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007176 while (*num > DATA_LINK_M_N_MASK ||
7177 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08007178 *num >>= 1;
7179 *den >>= 1;
7180 }
7181}
7182
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007183static void compute_m_n(unsigned int m, unsigned int n,
7184 uint32_t *ret_m, uint32_t *ret_n)
7185{
7186 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7187 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7188 intel_reduce_m_n_ratio(ret_m, ret_n);
7189}
7190
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007191void
7192intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7193 int pixel_clock, int link_clock,
7194 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007195{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007196 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007197
7198 compute_m_n(bits_per_pixel * pixel_clock,
7199 link_clock * nlanes * 8,
7200 &m_n->gmch_m, &m_n->gmch_n);
7201
7202 compute_m_n(pixel_clock, link_clock,
7203 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08007204}
7205
Chris Wilsona7615032011-01-12 17:04:08 +00007206static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7207{
Jani Nikulad330a952014-01-21 11:24:25 +02007208 if (i915.panel_use_ssc >= 0)
7209 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007210 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07007211 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00007212}
7213
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007214static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
7215 int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007216{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007217 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007218 struct drm_i915_private *dev_priv = dev->dev_private;
7219 int refclk;
7220
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007221 WARN_ON(!crtc_state->base.state);
7222
Wayne Boyer666a4532015-12-09 12:29:35 -08007223 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev) || IS_BROXTON(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02007224 refclk = 100000;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007225 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007226 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007227 refclk = dev_priv->vbt.lvds_ssc_freq;
7228 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007229 } else if (!IS_GEN2(dev)) {
7230 refclk = 96000;
7231 } else {
7232 refclk = 48000;
7233 }
7234
7235 return refclk;
7236}
7237
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007238static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007239{
Daniel Vetter7df00d72013-05-21 21:54:55 +02007240 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007241}
Daniel Vetterf47709a2013-03-28 10:42:02 +01007242
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007243static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7244{
7245 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007246}
7247
Daniel Vetterf47709a2013-03-28 10:42:02 +01007248static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007249 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08007250 intel_clock_t *reduced_clock)
7251{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007252 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007253 u32 fp, fp2 = 0;
7254
7255 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007256 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007257 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007258 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007259 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007260 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007261 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007262 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007263 }
7264
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007265 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007266
Daniel Vetterf47709a2013-03-28 10:42:02 +01007267 crtc->lowfreq_avail = false;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007268 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Rodrigo Viviab585de2015-03-24 12:40:09 -07007269 reduced_clock) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007270 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007271 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007272 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007273 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007274 }
7275}
7276
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007277static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7278 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07007279{
7280 u32 reg_val;
7281
7282 /*
7283 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7284 * and set it to a reasonable value instead.
7285 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007286 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007287 reg_val &= 0xffffff00;
7288 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007289 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007290
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007291 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007292 reg_val &= 0x8cffffff;
7293 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007294 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007295
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007296 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007297 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007298 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007299
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007300 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007301 reg_val &= 0x00ffffff;
7302 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007303 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007304}
7305
Daniel Vetterb5518422013-05-03 11:49:48 +02007306static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7307 struct intel_link_m_n *m_n)
7308{
7309 struct drm_device *dev = crtc->base.dev;
7310 struct drm_i915_private *dev_priv = dev->dev_private;
7311 int pipe = crtc->pipe;
7312
Daniel Vettere3b95f12013-05-03 11:49:49 +02007313 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7314 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7315 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7316 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007317}
7318
7319static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07007320 struct intel_link_m_n *m_n,
7321 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02007322{
7323 struct drm_device *dev = crtc->base.dev;
7324 struct drm_i915_private *dev_priv = dev->dev_private;
7325 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007326 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02007327
7328 if (INTEL_INFO(dev)->gen >= 5) {
7329 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7330 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7331 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7332 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07007333 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7334 * for gen < 8) and if DRRS is supported (to make sure the
7335 * registers are not unnecessarily accessed).
7336 */
Durgadoss R44395bf2015-02-13 15:33:02 +05307337 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007338 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07007339 I915_WRITE(PIPE_DATA_M2(transcoder),
7340 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7341 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7342 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7343 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7344 }
Daniel Vetterb5518422013-05-03 11:49:48 +02007345 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02007346 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7347 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7348 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7349 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007350 }
7351}
7352
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307353void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007354{
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307355 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7356
7357 if (m_n == M1_N1) {
7358 dp_m_n = &crtc->config->dp_m_n;
7359 dp_m2_n2 = &crtc->config->dp_m2_n2;
7360 } else if (m_n == M2_N2) {
7361
7362 /*
7363 * M2_N2 registers are not supported. Hence m2_n2 divider value
7364 * needs to be programmed into M1_N1.
7365 */
7366 dp_m_n = &crtc->config->dp_m2_n2;
7367 } else {
7368 DRM_ERROR("Unsupported divider value\n");
7369 return;
7370 }
7371
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007372 if (crtc->config->has_pch_encoder)
7373 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007374 else
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307375 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007376}
7377
Daniel Vetter251ac862015-06-18 10:30:24 +02007378static void vlv_compute_dpll(struct intel_crtc *crtc,
7379 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007380{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007381 u32 dpll, dpll_md;
7382
7383 /*
7384 * Enable DPIO clock input. We should never disable the reference
7385 * clock for pipe B, since VGA hotplug / manual detection depends
7386 * on it.
7387 */
Ville Syrjälä60bfe442015-06-29 15:25:49 +03007388 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REF_CLK_ENABLE_VLV |
7389 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_REF_CLK_VLV;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007390 /* We should never disable this, set it here for state tracking */
7391 if (crtc->pipe == PIPE_B)
7392 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7393 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02007394 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007395
Ville Syrjäläd288f652014-10-28 13:20:22 +02007396 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007397 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02007398 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007399}
7400
Ville Syrjäläd288f652014-10-28 13:20:22 +02007401static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007402 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007403{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007404 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007405 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007406 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007407 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007408 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007409 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007410
Ville Syrjäläa5805162015-05-26 20:42:30 +03007411 mutex_lock(&dev_priv->sb_lock);
Daniel Vetter09153002012-12-12 14:06:44 +01007412
Ville Syrjäläd288f652014-10-28 13:20:22 +02007413 bestn = pipe_config->dpll.n;
7414 bestm1 = pipe_config->dpll.m1;
7415 bestm2 = pipe_config->dpll.m2;
7416 bestp1 = pipe_config->dpll.p1;
7417 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007418
Jesse Barnes89b667f2013-04-18 14:51:36 -07007419 /* See eDP HDMI DPIO driver vbios notes doc */
7420
7421 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007422 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007423 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007424
7425 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007426 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007427
7428 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007429 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007430 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007431 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007432
7433 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007434 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007435
7436 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007437 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7438 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7439 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007440 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07007441
7442 /*
7443 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7444 * but we don't support that).
7445 * Note: don't use the DAC post divider as it seems unstable.
7446 */
7447 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007448 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007449
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007450 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007451 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007452
Jesse Barnes89b667f2013-04-18 14:51:36 -07007453 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02007454 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007455 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
7456 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007457 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b01202013-07-05 19:21:38 +03007458 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007459 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007460 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007461 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007462
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02007463 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07007464 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007465 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007466 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007467 0x0df40000);
7468 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007469 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007470 0x0df70000);
7471 } else { /* HDMI or VGA */
7472 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007473 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007474 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007475 0x0df70000);
7476 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007477 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007478 0x0df40000);
7479 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007480
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007481 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007482 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007483 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
7484 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07007485 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007486 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007487
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007488 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007489 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007490}
7491
Daniel Vetter251ac862015-06-18 10:30:24 +02007492static void chv_compute_dpll(struct intel_crtc *crtc,
7493 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007494{
Ville Syrjälä60bfe442015-06-29 15:25:49 +03007495 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
7496 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007497 DPLL_VCO_ENABLE;
7498 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02007499 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007500
Ville Syrjäläd288f652014-10-28 13:20:22 +02007501 pipe_config->dpll_hw_state.dpll_md =
7502 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007503}
7504
Ville Syrjäläd288f652014-10-28 13:20:22 +02007505static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007506 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007507{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007508 struct drm_device *dev = crtc->base.dev;
7509 struct drm_i915_private *dev_priv = dev->dev_private;
7510 int pipe = crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02007511 i915_reg_t dpll_reg = DPLL(crtc->pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007512 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307513 u32 loopfilter, tribuf_calcntr;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007514 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307515 u32 dpio_val;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307516 int vco;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007517
Ville Syrjäläd288f652014-10-28 13:20:22 +02007518 bestn = pipe_config->dpll.n;
7519 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7520 bestm1 = pipe_config->dpll.m1;
7521 bestm2 = pipe_config->dpll.m2 >> 22;
7522 bestp1 = pipe_config->dpll.p1;
7523 bestp2 = pipe_config->dpll.p2;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307524 vco = pipe_config->dpll.vco;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307525 dpio_val = 0;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307526 loopfilter = 0;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007527
7528 /*
7529 * Enable Refclk and SSC
7530 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007531 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007532 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007533
Ville Syrjäläa5805162015-05-26 20:42:30 +03007534 mutex_lock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007535
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007536 /* p1 and p2 divider */
7537 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7538 5 << DPIO_CHV_S1_DIV_SHIFT |
7539 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7540 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7541 1 << DPIO_CHV_K_DIV_SHIFT);
7542
7543 /* Feedback post-divider - m2 */
7544 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7545
7546 /* Feedback refclk divider - n and m1 */
7547 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7548 DPIO_CHV_M1_DIV_BY_2 |
7549 1 << DPIO_CHV_N_DIV_SHIFT);
7550
7551 /* M2 fraction division */
Ville Syrjälä25a25df2015-07-08 23:45:47 +03007552 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007553
7554 /* M2 fraction division enable */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307555 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7556 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7557 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7558 if (bestm2_frac)
7559 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7560 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007561
Vijay Purushothamande3a0fd2015-03-05 19:32:06 +05307562 /* Program digital lock detect threshold */
7563 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7564 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7565 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7566 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7567 if (!bestm2_frac)
7568 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7569 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7570
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007571 /* Loop filter */
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307572 if (vco == 5400000) {
7573 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7574 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7575 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7576 tribuf_calcntr = 0x9;
7577 } else if (vco <= 6200000) {
7578 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7579 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7580 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7581 tribuf_calcntr = 0x9;
7582 } else if (vco <= 6480000) {
7583 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7584 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7585 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7586 tribuf_calcntr = 0x8;
7587 } else {
7588 /* Not supported. Apply the same limits as in the max case */
7589 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7590 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7591 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7592 tribuf_calcntr = 0;
7593 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007594 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7595
Ville Syrjälä968040b2015-03-11 22:52:08 +02007596 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307597 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7598 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7599 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7600
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007601 /* AFC Recal */
7602 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7603 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7604 DPIO_AFC_RECAL);
7605
Ville Syrjäläa5805162015-05-26 20:42:30 +03007606 mutex_unlock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007607}
7608
Ville Syrjäläd288f652014-10-28 13:20:22 +02007609/**
7610 * vlv_force_pll_on - forcibly enable just the PLL
7611 * @dev_priv: i915 private structure
7612 * @pipe: pipe PLL to enable
7613 * @dpll: PLL configuration
7614 *
7615 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7616 * in cases where we need the PLL enabled even when @pipe is not going to
7617 * be enabled.
7618 */
7619void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7620 const struct dpll *dpll)
7621{
7622 struct intel_crtc *crtc =
7623 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007624 struct intel_crtc_state pipe_config = {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007625 .base.crtc = &crtc->base,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007626 .pixel_multiplier = 1,
7627 .dpll = *dpll,
7628 };
7629
7630 if (IS_CHERRYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02007631 chv_compute_dpll(crtc, &pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +02007632 chv_prepare_pll(crtc, &pipe_config);
7633 chv_enable_pll(crtc, &pipe_config);
7634 } else {
Daniel Vetter251ac862015-06-18 10:30:24 +02007635 vlv_compute_dpll(crtc, &pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +02007636 vlv_prepare_pll(crtc, &pipe_config);
7637 vlv_enable_pll(crtc, &pipe_config);
7638 }
7639}
7640
7641/**
7642 * vlv_force_pll_off - forcibly disable just the PLL
7643 * @dev_priv: i915 private structure
7644 * @pipe: pipe PLL to disable
7645 *
7646 * Disable the PLL for @pipe. To be used in cases where we need
7647 * the PLL enabled even when @pipe is not going to be enabled.
7648 */
7649void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7650{
7651 if (IS_CHERRYVIEW(dev))
7652 chv_disable_pll(to_i915(dev), pipe);
7653 else
7654 vlv_disable_pll(to_i915(dev), pipe);
7655}
7656
Daniel Vetter251ac862015-06-18 10:30:24 +02007657static void i9xx_compute_dpll(struct intel_crtc *crtc,
7658 struct intel_crtc_state *crtc_state,
7659 intel_clock_t *reduced_clock,
7660 int num_connectors)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007661{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007662 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007663 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007664 u32 dpll;
7665 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007666 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007667
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007668 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307669
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007670 is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7671 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007672
7673 dpll = DPLL_VGA_MODE_DIS;
7674
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007675 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007676 dpll |= DPLLB_MODE_LVDS;
7677 else
7678 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007679
Daniel Vetteref1b4602013-06-01 17:17:04 +02007680 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007681 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02007682 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007683 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02007684
7685 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007686 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007687
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007688 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007689 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007690
7691 /* compute bitmask from p1 value */
7692 if (IS_PINEVIEW(dev))
7693 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7694 else {
7695 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7696 if (IS_G4X(dev) && reduced_clock)
7697 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7698 }
7699 switch (clock->p2) {
7700 case 5:
7701 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7702 break;
7703 case 7:
7704 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7705 break;
7706 case 10:
7707 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7708 break;
7709 case 14:
7710 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7711 break;
7712 }
7713 if (INTEL_INFO(dev)->gen >= 4)
7714 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7715
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007716 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007717 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007718 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007719 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7720 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7721 else
7722 dpll |= PLL_REF_INPUT_DREFCLK;
7723
7724 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007725 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007726
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007727 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007728 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007729 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007730 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007731 }
7732}
7733
Daniel Vetter251ac862015-06-18 10:30:24 +02007734static void i8xx_compute_dpll(struct intel_crtc *crtc,
7735 struct intel_crtc_state *crtc_state,
7736 intel_clock_t *reduced_clock,
7737 int num_connectors)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007738{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007739 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007740 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007741 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007742 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007743
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007744 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307745
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007746 dpll = DPLL_VGA_MODE_DIS;
7747
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007748 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007749 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7750 } else {
7751 if (clock->p1 == 2)
7752 dpll |= PLL_P1_DIVIDE_BY_TWO;
7753 else
7754 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7755 if (clock->p2 == 4)
7756 dpll |= PLL_P2_DIVIDE_BY_4;
7757 }
7758
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007759 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02007760 dpll |= DPLL_DVO_2X_MODE;
7761
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007762 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007763 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7764 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7765 else
7766 dpll |= PLL_REF_INPUT_DREFCLK;
7767
7768 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007769 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007770}
7771
Daniel Vetter8a654f32013-06-01 17:16:22 +02007772static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007773{
7774 struct drm_device *dev = intel_crtc->base.dev;
7775 struct drm_i915_private *dev_priv = dev->dev_private;
7776 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007777 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03007778 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007779 uint32_t crtc_vtotal, crtc_vblank_end;
7780 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007781
7782 /* We need to be careful not to changed the adjusted mode, for otherwise
7783 * the hw state checker will get angry at the mismatch. */
7784 crtc_vtotal = adjusted_mode->crtc_vtotal;
7785 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007786
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007787 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007788 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007789 crtc_vtotal -= 1;
7790 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007791
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007792 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007793 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7794 else
7795 vsyncshift = adjusted_mode->crtc_hsync_start -
7796 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007797 if (vsyncshift < 0)
7798 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007799 }
7800
7801 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007802 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007803
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007804 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007805 (adjusted_mode->crtc_hdisplay - 1) |
7806 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007807 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007808 (adjusted_mode->crtc_hblank_start - 1) |
7809 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007810 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007811 (adjusted_mode->crtc_hsync_start - 1) |
7812 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7813
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007814 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007815 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007816 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007817 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007818 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007819 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007820 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007821 (adjusted_mode->crtc_vsync_start - 1) |
7822 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7823
Paulo Zanonib5e508d2012-10-24 11:34:43 -02007824 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7825 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7826 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7827 * bits. */
7828 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7829 (pipe == PIPE_B || pipe == PIPE_C))
7830 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7831
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007832 /* pipesrc controls the size that is scaled from, which should
7833 * always be the user's requested size.
7834 */
7835 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007836 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7837 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007838}
7839
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007840static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007841 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007842{
7843 struct drm_device *dev = crtc->base.dev;
7844 struct drm_i915_private *dev_priv = dev->dev_private;
7845 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7846 uint32_t tmp;
7847
7848 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007849 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7850 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007851 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007852 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7853 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007854 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007855 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7856 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007857
7858 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007859 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7860 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007861 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007862 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7863 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007864 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007865 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7866 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007867
7868 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007869 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7870 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7871 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007872 }
7873
7874 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03007875 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7876 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7877
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007878 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7879 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007880}
7881
Daniel Vetterf6a83282014-02-11 15:28:57 -08007882void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007883 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03007884{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007885 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7886 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7887 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7888 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007889
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007890 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7891 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7892 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7893 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007894
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007895 mode->flags = pipe_config->base.adjusted_mode.flags;
Maarten Lankhorstcd13f5a2015-07-14 14:12:02 +02007896 mode->type = DRM_MODE_TYPE_DRIVER;
Jesse Barnesbabea612013-06-26 18:57:38 +03007897
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007898 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7899 mode->flags |= pipe_config->base.adjusted_mode.flags;
Maarten Lankhorstcd13f5a2015-07-14 14:12:02 +02007900
7901 mode->hsync = drm_mode_hsync(mode);
7902 mode->vrefresh = drm_mode_vrefresh(mode);
7903 drm_mode_set_name(mode);
Jesse Barnesbabea612013-06-26 18:57:38 +03007904}
7905
Daniel Vetter84b046f2013-02-19 18:48:54 +01007906static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7907{
7908 struct drm_device *dev = intel_crtc->base.dev;
7909 struct drm_i915_private *dev_priv = dev->dev_private;
7910 uint32_t pipeconf;
7911
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007912 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007913
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03007914 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7915 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7916 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02007917
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007918 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007919 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007920
Daniel Vetterff9ce462013-04-24 14:57:17 +02007921 /* only g4x and later have fancy bpc/dither controls */
Wayne Boyer666a4532015-12-09 12:29:35 -08007922 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007923 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007924 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02007925 pipeconf |= PIPECONF_DITHER_EN |
7926 PIPECONF_DITHER_TYPE_SP;
7927
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007928 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007929 case 18:
7930 pipeconf |= PIPECONF_6BPC;
7931 break;
7932 case 24:
7933 pipeconf |= PIPECONF_8BPC;
7934 break;
7935 case 30:
7936 pipeconf |= PIPECONF_10BPC;
7937 break;
7938 default:
7939 /* Case prevented by intel_choose_pipe_bpp_dither. */
7940 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01007941 }
7942 }
7943
7944 if (HAS_PIPE_CXSR(dev)) {
7945 if (intel_crtc->lowfreq_avail) {
7946 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7947 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7948 } else {
7949 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01007950 }
7951 }
7952
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007953 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007954 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007955 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007956 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7957 else
7958 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7959 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01007960 pipeconf |= PIPECONF_PROGRESSIVE;
7961
Wayne Boyer666a4532015-12-09 12:29:35 -08007962 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
7963 intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007964 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03007965
Daniel Vetter84b046f2013-02-19 18:48:54 +01007966 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7967 POSTING_READ(PIPECONF(intel_crtc->pipe));
7968}
7969
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007970static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
7971 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007972{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007973 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007974 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07007975 int refclk, num_connectors = 0;
Daniel Vetterc329a4e2015-06-18 10:30:23 +02007976 intel_clock_t clock;
7977 bool ok;
Ma Lingd4906092009-03-18 20:13:27 +08007978 const intel_limit_t *limit;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007979 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03007980 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007981 struct drm_connector_state *connector_state;
7982 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -08007983
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03007984 memset(&crtc_state->dpll_hw_state, 0,
7985 sizeof(crtc_state->dpll_hw_state));
7986
Jani Nikulaa65347b2015-11-27 12:21:46 +02007987 if (crtc_state->has_dsi_encoder)
Daniel Vetter5b18e572014-04-24 23:55:06 +02007988 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007989
Jani Nikulaa65347b2015-11-27 12:21:46 +02007990 for_each_connector_in_state(state, connector, connector_state, i) {
7991 if (connector_state->crtc == &crtc->base)
7992 num_connectors++;
7993 }
7994
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007995 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007996 refclk = i9xx_get_refclk(crtc_state, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03007997
Jani Nikulae9fd1c02013-08-27 15:12:23 +03007998 /*
7999 * Returns a set of divisors for the desired target clock with
8000 * the given refclk, or FALSE. The returned values represent
8001 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
8002 * 2) / p1 / p2.
8003 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008004 limit = intel_limit(crtc_state, refclk);
8005 ok = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008006 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008007 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03008008 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008009 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8010 return -EINVAL;
8011 }
Eric Anholtf564048e2011-03-30 13:01:02 -07008012
Jani Nikulaf2335332013-09-13 11:03:09 +03008013 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008014 crtc_state->dpll.n = clock.n;
8015 crtc_state->dpll.m1 = clock.m1;
8016 crtc_state->dpll.m2 = clock.m2;
8017 crtc_state->dpll.p1 = clock.p1;
8018 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01008019 }
Eric Anholtf564048e2011-03-30 13:01:02 -07008020
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008021 if (IS_GEN2(dev)) {
Daniel Vetterc329a4e2015-06-18 10:30:23 +02008022 i8xx_compute_dpll(crtc, crtc_state, NULL,
Daniel Vetter251ac862015-06-18 10:30:24 +02008023 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03008024 } else if (IS_CHERRYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02008025 chv_compute_dpll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008026 } else if (IS_VALLEYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02008027 vlv_compute_dpll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008028 } else {
Daniel Vetterc329a4e2015-06-18 10:30:23 +02008029 i9xx_compute_dpll(crtc, crtc_state, NULL,
Daniel Vetter251ac862015-06-18 10:30:24 +02008030 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008031 }
Eric Anholtf564048e2011-03-30 13:01:02 -07008032
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008033 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07008034}
8035
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008036static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008037 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008038{
8039 struct drm_device *dev = crtc->base.dev;
8040 struct drm_i915_private *dev_priv = dev->dev_private;
8041 uint32_t tmp;
8042
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02008043 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
8044 return;
8045
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008046 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02008047 if (!(tmp & PFIT_ENABLE))
8048 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008049
Daniel Vetter06922822013-07-11 13:35:40 +02008050 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008051 if (INTEL_INFO(dev)->gen < 4) {
8052 if (crtc->pipe != PIPE_B)
8053 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008054 } else {
8055 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
8056 return;
8057 }
8058
Daniel Vetter06922822013-07-11 13:35:40 +02008059 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008060 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
8061 if (INTEL_INFO(dev)->gen < 5)
8062 pipe_config->gmch_pfit.lvds_border_bits =
8063 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
8064}
8065
Jesse Barnesacbec812013-09-20 11:29:32 -07008066static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008067 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07008068{
8069 struct drm_device *dev = crtc->base.dev;
8070 struct drm_i915_private *dev_priv = dev->dev_private;
8071 int pipe = pipe_config->cpu_transcoder;
8072 intel_clock_t clock;
8073 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07008074 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07008075
Shobhit Kumarf573de52014-07-30 20:32:37 +05308076 /* In case of MIPI DPLL will not even be used */
8077 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
8078 return;
8079
Ville Syrjäläa5805162015-05-26 20:42:30 +03008080 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08008081 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Ville Syrjäläa5805162015-05-26 20:42:30 +03008082 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesacbec812013-09-20 11:29:32 -07008083
8084 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
8085 clock.m2 = mdiv & DPIO_M2DIV_MASK;
8086 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
8087 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
8088 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
8089
Imre Deakdccbea32015-06-22 23:35:51 +03008090 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07008091}
8092
Damien Lespiau5724dbd2015-01-20 12:51:52 +00008093static void
8094i9xx_get_initial_plane_config(struct intel_crtc *crtc,
8095 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008096{
8097 struct drm_device *dev = crtc->base.dev;
8098 struct drm_i915_private *dev_priv = dev->dev_private;
8099 u32 val, base, offset;
8100 int pipe = crtc->pipe, plane = crtc->plane;
8101 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00008102 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008103 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00008104 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008105
Damien Lespiau42a7b082015-02-05 19:35:13 +00008106 val = I915_READ(DSPCNTR(plane));
8107 if (!(val & DISPLAY_PLANE_ENABLE))
8108 return;
8109
Damien Lespiaud9806c92015-01-21 14:07:19 +00008110 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00008111 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008112 DRM_DEBUG_KMS("failed to alloc fb\n");
8113 return;
8114 }
8115
Damien Lespiau1b842c82015-01-21 13:50:54 +00008116 fb = &intel_fb->base;
8117
Daniel Vetter18c52472015-02-10 17:16:09 +00008118 if (INTEL_INFO(dev)->gen >= 4) {
8119 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008120 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00008121 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8122 }
8123 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008124
8125 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00008126 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008127 fb->pixel_format = fourcc;
8128 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008129
8130 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008131 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008132 offset = I915_READ(DSPTILEOFF(plane));
8133 else
8134 offset = I915_READ(DSPLINOFF(plane));
8135 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8136 } else {
8137 base = I915_READ(DSPADDR(plane));
8138 }
8139 plane_config->base = base;
8140
8141 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008142 fb->width = ((val >> 16) & 0xfff) + 1;
8143 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008144
8145 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008146 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008147
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008148 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00008149 fb->pixel_format,
8150 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008151
Daniel Vetterf37b5c22015-02-10 23:12:27 +01008152 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008153
Damien Lespiau2844a922015-01-20 12:51:48 +00008154 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8155 pipe_name(pipe), plane, fb->width, fb->height,
8156 fb->bits_per_pixel, base, fb->pitches[0],
8157 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008158
Damien Lespiau2d140302015-02-05 17:22:18 +00008159 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008160}
8161
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008162static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008163 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008164{
8165 struct drm_device *dev = crtc->base.dev;
8166 struct drm_i915_private *dev_priv = dev->dev_private;
8167 int pipe = pipe_config->cpu_transcoder;
8168 enum dpio_channel port = vlv_pipe_to_channel(pipe);
8169 intel_clock_t clock;
Imre Deak0d7b6b12015-07-02 14:29:58 +03008170 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008171 int refclk = 100000;
8172
Ville Syrjäläa5805162015-05-26 20:42:30 +03008173 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008174 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8175 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8176 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8177 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
Imre Deak0d7b6b12015-07-02 14:29:58 +03008178 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
Ville Syrjäläa5805162015-05-26 20:42:30 +03008179 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008180
8181 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
Imre Deak0d7b6b12015-07-02 14:29:58 +03008182 clock.m2 = (pll_dw0 & 0xff) << 22;
8183 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8184 clock.m2 |= pll_dw2 & 0x3fffff;
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008185 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8186 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8187 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8188
Imre Deakdccbea32015-06-22 23:35:51 +03008189 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008190}
8191
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008192static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008193 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008194{
8195 struct drm_device *dev = crtc->base.dev;
8196 struct drm_i915_private *dev_priv = dev->dev_private;
8197 uint32_t tmp;
8198
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008199 if (!intel_display_power_is_enabled(dev_priv,
8200 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02008201 return false;
8202
Daniel Vettere143a212013-07-04 12:01:15 +02008203 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008204 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02008205
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008206 tmp = I915_READ(PIPECONF(crtc->pipe));
8207 if (!(tmp & PIPECONF_ENABLE))
8208 return false;
8209
Wayne Boyer666a4532015-12-09 12:29:35 -08008210 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Ville Syrjälä42571ae2013-09-06 23:29:00 +03008211 switch (tmp & PIPECONF_BPC_MASK) {
8212 case PIPECONF_6BPC:
8213 pipe_config->pipe_bpp = 18;
8214 break;
8215 case PIPECONF_8BPC:
8216 pipe_config->pipe_bpp = 24;
8217 break;
8218 case PIPECONF_10BPC:
8219 pipe_config->pipe_bpp = 30;
8220 break;
8221 default:
8222 break;
8223 }
8224 }
8225
Wayne Boyer666a4532015-12-09 12:29:35 -08008226 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
8227 (tmp & PIPECONF_COLOR_RANGE_SELECT))
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02008228 pipe_config->limited_color_range = true;
8229
Ville Syrjälä282740f2013-09-04 18:30:03 +03008230 if (INTEL_INFO(dev)->gen < 4)
8231 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8232
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008233 intel_get_pipe_timings(crtc, pipe_config);
8234
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008235 i9xx_get_pfit_config(crtc, pipe_config);
8236
Daniel Vetter6c49f242013-06-06 12:45:25 +02008237 if (INTEL_INFO(dev)->gen >= 4) {
8238 tmp = I915_READ(DPLL_MD(crtc->pipe));
8239 pipe_config->pixel_multiplier =
8240 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8241 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008242 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02008243 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
8244 tmp = I915_READ(DPLL(crtc->pipe));
8245 pipe_config->pixel_multiplier =
8246 ((tmp & SDVO_MULTIPLIER_MASK)
8247 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8248 } else {
8249 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8250 * port and will be fixed up in the encoder->get_config
8251 * function. */
8252 pipe_config->pixel_multiplier = 1;
8253 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008254 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
Wayne Boyer666a4532015-12-09 12:29:35 -08008255 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03008256 /*
8257 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8258 * on 830. Filter it out here so that we don't
8259 * report errors due to that.
8260 */
8261 if (IS_I830(dev))
8262 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8263
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008264 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8265 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03008266 } else {
8267 /* Mask out read-only status bits. */
8268 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8269 DPLL_PORTC_READY_MASK |
8270 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008271 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008272
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008273 if (IS_CHERRYVIEW(dev))
8274 chv_crtc_clock_get(crtc, pipe_config);
8275 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07008276 vlv_crtc_clock_get(crtc, pipe_config);
8277 else
8278 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03008279
Ville Syrjälä0f646142015-08-26 19:39:18 +03008280 /*
8281 * Normally the dotclock is filled in by the encoder .get_config()
8282 * but in case the pipe is enabled w/o any ports we need a sane
8283 * default.
8284 */
8285 pipe_config->base.adjusted_mode.crtc_clock =
8286 pipe_config->port_clock / pipe_config->pixel_multiplier;
8287
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008288 return true;
8289}
8290
Paulo Zanonidde86e22012-12-01 12:04:25 -02008291static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07008292{
8293 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008294 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008295 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008296 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008297 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008298 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07008299 bool has_ck505 = false;
8300 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008301
8302 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01008303 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07008304 switch (encoder->type) {
8305 case INTEL_OUTPUT_LVDS:
8306 has_panel = true;
8307 has_lvds = true;
8308 break;
8309 case INTEL_OUTPUT_EDP:
8310 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03008311 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07008312 has_cpu_edp = true;
8313 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008314 default:
8315 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008316 }
8317 }
8318
Keith Packard99eb6a02011-09-26 14:29:12 -07008319 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008320 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07008321 can_ssc = has_ck505;
8322 } else {
8323 has_ck505 = false;
8324 can_ssc = true;
8325 }
8326
Imre Deak2de69052013-05-08 13:14:04 +03008327 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
8328 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008329
8330 /* Ironlake: try to setup display ref clock before DPLL
8331 * enabling. This is only under driver's control after
8332 * PCH B stepping, previous chipset stepping should be
8333 * ignoring this setting.
8334 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008335 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008336
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008337 /* As we must carefully and slowly disable/enable each source in turn,
8338 * compute the final state we want first and check if we need to
8339 * make any changes at all.
8340 */
8341 final = val;
8342 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07008343 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008344 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07008345 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008346 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8347
8348 final &= ~DREF_SSC_SOURCE_MASK;
8349 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
8350 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008351
Keith Packard199e5d72011-09-22 12:01:57 -07008352 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008353 final |= DREF_SSC_SOURCE_ENABLE;
8354
8355 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8356 final |= DREF_SSC1_ENABLE;
8357
8358 if (has_cpu_edp) {
8359 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8360 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
8361 else
8362 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
8363 } else
8364 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8365 } else {
8366 final |= DREF_SSC_SOURCE_DISABLE;
8367 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8368 }
8369
8370 if (final == val)
8371 return;
8372
8373 /* Always enable nonspread source */
8374 val &= ~DREF_NONSPREAD_SOURCE_MASK;
8375
8376 if (has_ck505)
8377 val |= DREF_NONSPREAD_CK505_ENABLE;
8378 else
8379 val |= DREF_NONSPREAD_SOURCE_ENABLE;
8380
8381 if (has_panel) {
8382 val &= ~DREF_SSC_SOURCE_MASK;
8383 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008384
Keith Packard199e5d72011-09-22 12:01:57 -07008385 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07008386 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07008387 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008388 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02008389 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008390 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008391
8392 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008393 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008394 POSTING_READ(PCH_DREF_CONTROL);
8395 udelay(200);
8396
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008397 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008398
8399 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07008400 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07008401 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07008402 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008403 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02008404 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008405 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07008406 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008407 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008408
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008409 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008410 POSTING_READ(PCH_DREF_CONTROL);
8411 udelay(200);
8412 } else {
8413 DRM_DEBUG_KMS("Disabling SSC entirely\n");
8414
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008415 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07008416
8417 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008418 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008419
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008420 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008421 POSTING_READ(PCH_DREF_CONTROL);
8422 udelay(200);
8423
8424 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008425 val &= ~DREF_SSC_SOURCE_MASK;
8426 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008427
8428 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008429 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008430
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008431 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008432 POSTING_READ(PCH_DREF_CONTROL);
8433 udelay(200);
8434 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008435
8436 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008437}
8438
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008439static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02008440{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008441 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02008442
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008443 tmp = I915_READ(SOUTH_CHICKEN2);
8444 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
8445 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008446
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008447 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
8448 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
8449 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02008450
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008451 tmp = I915_READ(SOUTH_CHICKEN2);
8452 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
8453 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008454
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008455 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
8456 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
8457 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008458}
8459
8460/* WaMPhyProgramming:hsw */
8461static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
8462{
8463 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02008464
8465 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
8466 tmp &= ~(0xFF << 24);
8467 tmp |= (0x12 << 24);
8468 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
8469
Paulo Zanonidde86e22012-12-01 12:04:25 -02008470 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
8471 tmp |= (1 << 11);
8472 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
8473
8474 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
8475 tmp |= (1 << 11);
8476 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
8477
Paulo Zanonidde86e22012-12-01 12:04:25 -02008478 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
8479 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8480 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
8481
8482 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
8483 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8484 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
8485
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008486 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
8487 tmp &= ~(7 << 13);
8488 tmp |= (5 << 13);
8489 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008490
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008491 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8492 tmp &= ~(7 << 13);
8493 tmp |= (5 << 13);
8494 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008495
8496 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8497 tmp &= ~0xFF;
8498 tmp |= 0x1C;
8499 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8500
8501 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8502 tmp &= ~0xFF;
8503 tmp |= 0x1C;
8504 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8505
8506 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8507 tmp &= ~(0xFF << 16);
8508 tmp |= (0x1C << 16);
8509 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8510
8511 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8512 tmp &= ~(0xFF << 16);
8513 tmp |= (0x1C << 16);
8514 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8515
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008516 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8517 tmp |= (1 << 27);
8518 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008519
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008520 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8521 tmp |= (1 << 27);
8522 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008523
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008524 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
8525 tmp &= ~(0xF << 28);
8526 tmp |= (4 << 28);
8527 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008528
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008529 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8530 tmp &= ~(0xF << 28);
8531 tmp |= (4 << 28);
8532 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008533}
8534
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008535/* Implements 3 different sequences from BSpec chapter "Display iCLK
8536 * Programming" based on the parameters passed:
8537 * - Sequence to enable CLKOUT_DP
8538 * - Sequence to enable CLKOUT_DP without spread
8539 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8540 */
8541static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8542 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008543{
8544 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008545 uint32_t reg, tmp;
8546
8547 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8548 with_spread = true;
Ville Syrjäläc2699522015-08-27 23:55:59 +03008549 if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n"))
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008550 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008551
Ville Syrjäläa5805162015-05-26 20:42:30 +03008552 mutex_lock(&dev_priv->sb_lock);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008553
8554 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8555 tmp &= ~SBI_SSCCTL_DISABLE;
8556 tmp |= SBI_SSCCTL_PATHALT;
8557 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8558
8559 udelay(24);
8560
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008561 if (with_spread) {
8562 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8563 tmp &= ~SBI_SSCCTL_PATHALT;
8564 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008565
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008566 if (with_fdi) {
8567 lpt_reset_fdi_mphy(dev_priv);
8568 lpt_program_fdi_mphy(dev_priv);
8569 }
8570 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02008571
Ville Syrjäläc2699522015-08-27 23:55:59 +03008572 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008573 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8574 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8575 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01008576
Ville Syrjäläa5805162015-05-26 20:42:30 +03008577 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008578}
8579
Paulo Zanoni47701c32013-07-23 11:19:25 -03008580/* Sequence to disable CLKOUT_DP */
8581static void lpt_disable_clkout_dp(struct drm_device *dev)
8582{
8583 struct drm_i915_private *dev_priv = dev->dev_private;
8584 uint32_t reg, tmp;
8585
Ville Syrjäläa5805162015-05-26 20:42:30 +03008586 mutex_lock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008587
Ville Syrjäläc2699522015-08-27 23:55:59 +03008588 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
Paulo Zanoni47701c32013-07-23 11:19:25 -03008589 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8590 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8591 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8592
8593 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8594 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8595 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8596 tmp |= SBI_SSCCTL_PATHALT;
8597 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8598 udelay(32);
8599 }
8600 tmp |= SBI_SSCCTL_DISABLE;
8601 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8602 }
8603
Ville Syrjäläa5805162015-05-26 20:42:30 +03008604 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008605}
8606
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02008607#define BEND_IDX(steps) ((50 + (steps)) / 5)
8608
8609static const uint16_t sscdivintphase[] = {
8610 [BEND_IDX( 50)] = 0x3B23,
8611 [BEND_IDX( 45)] = 0x3B23,
8612 [BEND_IDX( 40)] = 0x3C23,
8613 [BEND_IDX( 35)] = 0x3C23,
8614 [BEND_IDX( 30)] = 0x3D23,
8615 [BEND_IDX( 25)] = 0x3D23,
8616 [BEND_IDX( 20)] = 0x3E23,
8617 [BEND_IDX( 15)] = 0x3E23,
8618 [BEND_IDX( 10)] = 0x3F23,
8619 [BEND_IDX( 5)] = 0x3F23,
8620 [BEND_IDX( 0)] = 0x0025,
8621 [BEND_IDX( -5)] = 0x0025,
8622 [BEND_IDX(-10)] = 0x0125,
8623 [BEND_IDX(-15)] = 0x0125,
8624 [BEND_IDX(-20)] = 0x0225,
8625 [BEND_IDX(-25)] = 0x0225,
8626 [BEND_IDX(-30)] = 0x0325,
8627 [BEND_IDX(-35)] = 0x0325,
8628 [BEND_IDX(-40)] = 0x0425,
8629 [BEND_IDX(-45)] = 0x0425,
8630 [BEND_IDX(-50)] = 0x0525,
8631};
8632
8633/*
8634 * Bend CLKOUT_DP
8635 * steps -50 to 50 inclusive, in steps of 5
8636 * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz)
8637 * change in clock period = -(steps / 10) * 5.787 ps
8638 */
8639static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps)
8640{
8641 uint32_t tmp;
8642 int idx = BEND_IDX(steps);
8643
8644 if (WARN_ON(steps % 5 != 0))
8645 return;
8646
8647 if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase)))
8648 return;
8649
8650 mutex_lock(&dev_priv->sb_lock);
8651
8652 if (steps % 10 != 0)
8653 tmp = 0xAAAAAAAB;
8654 else
8655 tmp = 0x00000000;
8656 intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK);
8657
8658 tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK);
8659 tmp &= 0xffff0000;
8660 tmp |= sscdivintphase[idx];
8661 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK);
8662
8663 mutex_unlock(&dev_priv->sb_lock);
8664}
8665
8666#undef BEND_IDX
8667
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008668static void lpt_init_pch_refclk(struct drm_device *dev)
8669{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008670 struct intel_encoder *encoder;
8671 bool has_vga = false;
8672
Damien Lespiaub2784e12014-08-05 11:29:37 +01008673 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008674 switch (encoder->type) {
8675 case INTEL_OUTPUT_ANALOG:
8676 has_vga = true;
8677 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008678 default:
8679 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008680 }
8681 }
8682
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02008683 if (has_vga) {
8684 lpt_bend_clkout_dp(to_i915(dev), 0);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008685 lpt_enable_clkout_dp(dev, true, true);
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02008686 } else {
Paulo Zanoni47701c32013-07-23 11:19:25 -03008687 lpt_disable_clkout_dp(dev);
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02008688 }
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008689}
8690
Paulo Zanonidde86e22012-12-01 12:04:25 -02008691/*
8692 * Initialize reference clocks when the driver loads
8693 */
8694void intel_init_pch_refclk(struct drm_device *dev)
8695{
8696 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8697 ironlake_init_pch_refclk(dev);
8698 else if (HAS_PCH_LPT(dev))
8699 lpt_init_pch_refclk(dev);
8700}
8701
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008702static int ironlake_get_refclk(struct intel_crtc_state *crtc_state)
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008703{
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008704 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008705 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008706 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008707 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008708 struct drm_connector_state *connector_state;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008709 struct intel_encoder *encoder;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008710 int num_connectors = 0, i;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008711 bool is_lvds = false;
8712
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008713 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008714 if (connector_state->crtc != crtc_state->base.crtc)
8715 continue;
8716
8717 encoder = to_intel_encoder(connector_state->best_encoder);
8718
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008719 switch (encoder->type) {
8720 case INTEL_OUTPUT_LVDS:
8721 is_lvds = true;
8722 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008723 default:
8724 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008725 }
8726 num_connectors++;
8727 }
8728
8729 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008730 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008731 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008732 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008733 }
8734
8735 return 120000;
8736}
8737
Daniel Vetter6ff93602013-04-19 11:24:36 +02008738static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03008739{
8740 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
8741 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8742 int pipe = intel_crtc->pipe;
8743 uint32_t val;
8744
Daniel Vetter78114072013-06-13 00:54:57 +02008745 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03008746
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008747 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03008748 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008749 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008750 break;
8751 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008752 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008753 break;
8754 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008755 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008756 break;
8757 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008758 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008759 break;
8760 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03008761 /* Case prevented by intel_choose_pipe_bpp_dither. */
8762 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03008763 }
8764
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008765 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03008766 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8767
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008768 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03008769 val |= PIPECONF_INTERLACED_ILK;
8770 else
8771 val |= PIPECONF_PROGRESSIVE;
8772
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008773 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008774 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008775
Paulo Zanonic8203562012-09-12 10:06:29 -03008776 I915_WRITE(PIPECONF(pipe), val);
8777 POSTING_READ(PIPECONF(pipe));
8778}
8779
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008780/*
8781 * Set up the pipe CSC unit.
8782 *
8783 * Currently only full range RGB to limited range RGB conversion
8784 * is supported, but eventually this should handle various
8785 * RGB<->YCbCr scenarios as well.
8786 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01008787static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008788{
8789 struct drm_device *dev = crtc->dev;
8790 struct drm_i915_private *dev_priv = dev->dev_private;
8791 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8792 int pipe = intel_crtc->pipe;
8793 uint16_t coeff = 0x7800; /* 1.0 */
8794
8795 /*
8796 * TODO: Check what kind of values actually come out of the pipe
8797 * with these coeff/postoff values and adjust to get the best
8798 * accuracy. Perhaps we even need to take the bpc value into
8799 * consideration.
8800 */
8801
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008802 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008803 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
8804
8805 /*
8806 * GY/GU and RY/RU should be the other way around according
8807 * to BSpec, but reality doesn't agree. Just set them up in
8808 * a way that results in the correct picture.
8809 */
8810 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
8811 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
8812
8813 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
8814 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
8815
8816 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
8817 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
8818
8819 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
8820 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
8821 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
8822
8823 if (INTEL_INFO(dev)->gen > 6) {
8824 uint16_t postoff = 0;
8825
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008826 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02008827 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008828
8829 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
8830 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
8831 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
8832
8833 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
8834 } else {
8835 uint32_t mode = CSC_MODE_YUV_TO_RGB;
8836
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008837 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008838 mode |= CSC_BLACK_SCREEN_OFFSET;
8839
8840 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
8841 }
8842}
8843
Daniel Vetter6ff93602013-04-19 11:24:36 +02008844static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008845{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008846 struct drm_device *dev = crtc->dev;
8847 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008848 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008849 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008850 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008851 uint32_t val;
8852
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008853 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008854
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008855 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008856 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8857
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008858 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008859 val |= PIPECONF_INTERLACED_ILK;
8860 else
8861 val |= PIPECONF_PROGRESSIVE;
8862
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008863 I915_WRITE(PIPECONF(cpu_transcoder), val);
8864 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008865
8866 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
8867 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008868
Satheeshakrishna M3cdf122c2014-04-08 15:46:53 +05308869 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008870 val = 0;
8871
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008872 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008873 case 18:
8874 val |= PIPEMISC_DITHER_6_BPC;
8875 break;
8876 case 24:
8877 val |= PIPEMISC_DITHER_8_BPC;
8878 break;
8879 case 30:
8880 val |= PIPEMISC_DITHER_10_BPC;
8881 break;
8882 case 36:
8883 val |= PIPEMISC_DITHER_12_BPC;
8884 break;
8885 default:
8886 /* Case prevented by pipe_config_set_bpp. */
8887 BUG();
8888 }
8889
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008890 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008891 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8892
8893 I915_WRITE(PIPEMISC(pipe), val);
8894 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008895}
8896
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008897static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008898 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008899 intel_clock_t *clock,
8900 bool *has_reduced_clock,
8901 intel_clock_t *reduced_clock)
8902{
8903 struct drm_device *dev = crtc->dev;
8904 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008905 int refclk;
8906 const intel_limit_t *limit;
Daniel Vetterc329a4e2015-06-18 10:30:23 +02008907 bool ret;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008908
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008909 refclk = ironlake_get_refclk(crtc_state);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008910
8911 /*
8912 * Returns a set of divisors for the desired target clock with the given
8913 * refclk, or FALSE. The returned values represent the clock equation:
8914 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
8915 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008916 limit = intel_limit(crtc_state, refclk);
8917 ret = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008918 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02008919 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008920 if (!ret)
8921 return false;
8922
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008923 return true;
8924}
8925
Paulo Zanonid4b19312012-11-29 11:29:32 -02008926int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
8927{
8928 /*
8929 * Account for spread spectrum to avoid
8930 * oversubscribing the link. Max center spread
8931 * is 2.5%; use 5% for safety's sake.
8932 */
8933 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02008934 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02008935}
8936
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008937static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02008938{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008939 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03008940}
8941
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008942static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008943 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008944 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008945 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008946{
8947 struct drm_crtc *crtc = &intel_crtc->base;
8948 struct drm_device *dev = crtc->dev;
8949 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008950 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008951 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008952 struct drm_connector_state *connector_state;
8953 struct intel_encoder *encoder;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008954 uint32_t dpll;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008955 int factor, num_connectors = 0, i;
Daniel Vetter09ede542013-04-30 14:01:45 +02008956 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008957
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008958 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008959 if (connector_state->crtc != crtc_state->base.crtc)
8960 continue;
8961
8962 encoder = to_intel_encoder(connector_state->best_encoder);
8963
8964 switch (encoder->type) {
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008965 case INTEL_OUTPUT_LVDS:
8966 is_lvds = true;
8967 break;
8968 case INTEL_OUTPUT_SDVO:
8969 case INTEL_OUTPUT_HDMI:
8970 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008971 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008972 default:
8973 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008974 }
8975
8976 num_connectors++;
8977 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008978
Chris Wilsonc1858122010-12-03 21:35:48 +00008979 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07008980 factor = 21;
8981 if (is_lvds) {
8982 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008983 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02008984 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07008985 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008986 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07008987 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00008988
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008989 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02008990 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00008991
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008992 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
8993 *fp2 |= FP_CB_TUNE;
8994
Chris Wilson5eddb702010-09-11 13:48:45 +01008995 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08008996
Eric Anholta07d6782011-03-30 13:01:08 -07008997 if (is_lvds)
8998 dpll |= DPLLB_MODE_LVDS;
8999 else
9000 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02009001
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009002 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02009003 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02009004
9005 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02009006 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009007 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02009008 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08009009
Eric Anholta07d6782011-03-30 13:01:08 -07009010 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009011 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07009012 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009013 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07009014
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009015 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07009016 case 5:
9017 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
9018 break;
9019 case 7:
9020 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
9021 break;
9022 case 10:
9023 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
9024 break;
9025 case 14:
9026 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
9027 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08009028 }
9029
Daniel Vetterb4c09f32013-04-30 14:01:42 +02009030 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05009031 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08009032 else
9033 dpll |= PLL_REF_INPUT_DREFCLK;
9034
Daniel Vetter959e16d2013-06-05 13:34:21 +02009035 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03009036}
9037
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009038static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
9039 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08009040{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009041 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08009042 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02009043 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03009044 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01009045 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02009046 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08009047
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03009048 memset(&crtc_state->dpll_hw_state, 0,
9049 sizeof(crtc_state->dpll_hw_state));
9050
Ville Syrjälä7905df22015-11-25 16:35:30 +02009051 is_lvds = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08009052
Paulo Zanoni5dc52982012-10-05 12:05:56 -03009053 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
9054 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
9055
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009056 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03009057 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009058 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08009059 DRM_ERROR("Couldn't find PLL settings for mode!\n");
9060 return -EINVAL;
9061 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01009062 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009063 if (!crtc_state->clock_set) {
9064 crtc_state->dpll.n = clock.n;
9065 crtc_state->dpll.m1 = clock.m1;
9066 crtc_state->dpll.m2 = clock.m2;
9067 crtc_state->dpll.p1 = clock.p1;
9068 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01009069 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009070
Paulo Zanoni5dc52982012-10-05 12:05:56 -03009071 /* 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 +02009072 if (crtc_state->has_pch_encoder) {
9073 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02009074 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02009075 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02009076
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009077 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02009078 &fp, &reduced_clock,
9079 has_reduced_clock ? &fp2 : NULL);
9080
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009081 crtc_state->dpll_hw_state.dpll = dpll;
9082 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02009083 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009084 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02009085 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009086 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02009087
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009088 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009089 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03009090 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009091 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07009092 return -EINVAL;
9093 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02009094 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009095
Rodrigo Viviab585de2015-03-24 12:40:09 -07009096 if (is_lvds && has_reduced_clock)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009097 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02009098 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009099 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02009100
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02009101 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009102}
9103
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009104static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
9105 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02009106{
9107 struct drm_device *dev = crtc->base.dev;
9108 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009109 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02009110
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009111 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
9112 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
9113 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
9114 & ~TU_SIZE_MASK;
9115 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
9116 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
9117 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9118}
9119
9120static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
9121 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009122 struct intel_link_m_n *m_n,
9123 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009124{
9125 struct drm_device *dev = crtc->base.dev;
9126 struct drm_i915_private *dev_priv = dev->dev_private;
9127 enum pipe pipe = crtc->pipe;
9128
9129 if (INTEL_INFO(dev)->gen >= 5) {
9130 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
9131 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
9132 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
9133 & ~TU_SIZE_MASK;
9134 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
9135 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
9136 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009137 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
9138 * gen < 8) and if DRRS is supported (to make sure the
9139 * registers are not unnecessarily read).
9140 */
9141 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009142 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009143 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
9144 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
9145 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
9146 & ~TU_SIZE_MASK;
9147 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
9148 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
9149 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9150 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009151 } else {
9152 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
9153 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
9154 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
9155 & ~TU_SIZE_MASK;
9156 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
9157 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
9158 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9159 }
9160}
9161
9162void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009163 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009164{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02009165 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009166 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
9167 else
9168 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009169 &pipe_config->dp_m_n,
9170 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009171}
9172
Daniel Vetter72419202013-04-04 13:28:53 +02009173static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009174 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02009175{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009176 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009177 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02009178}
9179
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009180static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009181 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009182{
9183 struct drm_device *dev = crtc->base.dev;
9184 struct drm_i915_private *dev_priv = dev->dev_private;
Chandra Kondurua1b22782015-04-07 15:28:45 -07009185 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9186 uint32_t ps_ctrl = 0;
9187 int id = -1;
9188 int i;
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009189
Chandra Kondurua1b22782015-04-07 15:28:45 -07009190 /* find scaler attached to this pipe */
9191 for (i = 0; i < crtc->num_scalers; i++) {
9192 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9193 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9194 id = i;
9195 pipe_config->pch_pfit.enabled = true;
9196 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9197 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9198 break;
9199 }
9200 }
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009201
Chandra Kondurua1b22782015-04-07 15:28:45 -07009202 scaler_state->scaler_id = id;
9203 if (id >= 0) {
9204 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9205 } else {
9206 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009207 }
9208}
9209
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009210static void
9211skylake_get_initial_plane_config(struct intel_crtc *crtc,
9212 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009213{
9214 struct drm_device *dev = crtc->base.dev;
9215 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau40f46282015-02-27 11:15:21 +00009216 u32 val, base, offset, stride_mult, tiling;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009217 int pipe = crtc->pipe;
9218 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009219 unsigned int aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009220 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009221 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009222
Damien Lespiaud9806c92015-01-21 14:07:19 +00009223 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009224 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009225 DRM_DEBUG_KMS("failed to alloc fb\n");
9226 return;
9227 }
9228
Damien Lespiau1b842c82015-01-21 13:50:54 +00009229 fb = &intel_fb->base;
9230
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009231 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00009232 if (!(val & PLANE_CTL_ENABLE))
9233 goto error;
9234
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009235 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9236 fourcc = skl_format_to_fourcc(pixel_format,
9237 val & PLANE_CTL_ORDER_RGBX,
9238 val & PLANE_CTL_ALPHA_MASK);
9239 fb->pixel_format = fourcc;
9240 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9241
Damien Lespiau40f46282015-02-27 11:15:21 +00009242 tiling = val & PLANE_CTL_TILED_MASK;
9243 switch (tiling) {
9244 case PLANE_CTL_TILED_LINEAR:
9245 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9246 break;
9247 case PLANE_CTL_TILED_X:
9248 plane_config->tiling = I915_TILING_X;
9249 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9250 break;
9251 case PLANE_CTL_TILED_Y:
9252 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9253 break;
9254 case PLANE_CTL_TILED_YF:
9255 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9256 break;
9257 default:
9258 MISSING_CASE(tiling);
9259 goto error;
9260 }
9261
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009262 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9263 plane_config->base = base;
9264
9265 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9266
9267 val = I915_READ(PLANE_SIZE(pipe, 0));
9268 fb->height = ((val >> 16) & 0xfff) + 1;
9269 fb->width = ((val >> 0) & 0x1fff) + 1;
9270
9271 val = I915_READ(PLANE_STRIDE(pipe, 0));
Damien Lespiau40f46282015-02-27 11:15:21 +00009272 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
9273 fb->pixel_format);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009274 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9275
9276 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009277 fb->pixel_format,
9278 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009279
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009280 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009281
9282 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9283 pipe_name(pipe), fb->width, fb->height,
9284 fb->bits_per_pixel, base, fb->pitches[0],
9285 plane_config->size);
9286
Damien Lespiau2d140302015-02-05 17:22:18 +00009287 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009288 return;
9289
9290error:
9291 kfree(fb);
9292}
9293
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009294static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009295 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009296{
9297 struct drm_device *dev = crtc->base.dev;
9298 struct drm_i915_private *dev_priv = dev->dev_private;
9299 uint32_t tmp;
9300
9301 tmp = I915_READ(PF_CTL(crtc->pipe));
9302
9303 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009304 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009305 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9306 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02009307
9308 /* We currently do not free assignements of panel fitters on
9309 * ivb/hsw (since we don't use the higher upscaling modes which
9310 * differentiates them) so just WARN about this case for now. */
9311 if (IS_GEN7(dev)) {
9312 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9313 PF_PIPE_SEL_IVB(crtc->pipe));
9314 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009315 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009316}
9317
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009318static void
9319ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9320 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009321{
9322 struct drm_device *dev = crtc->base.dev;
9323 struct drm_i915_private *dev_priv = dev->dev_private;
9324 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009325 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009326 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009327 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009328 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009329 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009330
Damien Lespiau42a7b082015-02-05 19:35:13 +00009331 val = I915_READ(DSPCNTR(pipe));
9332 if (!(val & DISPLAY_PLANE_ENABLE))
9333 return;
9334
Damien Lespiaud9806c92015-01-21 14:07:19 +00009335 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009336 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009337 DRM_DEBUG_KMS("failed to alloc fb\n");
9338 return;
9339 }
9340
Damien Lespiau1b842c82015-01-21 13:50:54 +00009341 fb = &intel_fb->base;
9342
Daniel Vetter18c52472015-02-10 17:16:09 +00009343 if (INTEL_INFO(dev)->gen >= 4) {
9344 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00009345 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00009346 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9347 }
9348 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009349
9350 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00009351 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009352 fb->pixel_format = fourcc;
9353 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009354
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009355 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009356 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009357 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009358 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00009359 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009360 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009361 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009362 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009363 }
9364 plane_config->base = base;
9365
9366 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009367 fb->width = ((val >> 16) & 0xfff) + 1;
9368 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009369
9370 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009371 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009372
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009373 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009374 fb->pixel_format,
9375 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009376
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009377 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009378
Damien Lespiau2844a922015-01-20 12:51:48 +00009379 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9380 pipe_name(pipe), fb->width, fb->height,
9381 fb->bits_per_pixel, base, fb->pitches[0],
9382 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009383
Damien Lespiau2d140302015-02-05 17:22:18 +00009384 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009385}
9386
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009387static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009388 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009389{
9390 struct drm_device *dev = crtc->base.dev;
9391 struct drm_i915_private *dev_priv = dev->dev_private;
9392 uint32_t tmp;
9393
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009394 if (!intel_display_power_is_enabled(dev_priv,
9395 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03009396 return false;
9397
Daniel Vettere143a212013-07-04 12:01:15 +02009398 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009399 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02009400
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009401 tmp = I915_READ(PIPECONF(crtc->pipe));
9402 if (!(tmp & PIPECONF_ENABLE))
9403 return false;
9404
Ville Syrjälä42571ae2013-09-06 23:29:00 +03009405 switch (tmp & PIPECONF_BPC_MASK) {
9406 case PIPECONF_6BPC:
9407 pipe_config->pipe_bpp = 18;
9408 break;
9409 case PIPECONF_8BPC:
9410 pipe_config->pipe_bpp = 24;
9411 break;
9412 case PIPECONF_10BPC:
9413 pipe_config->pipe_bpp = 30;
9414 break;
9415 case PIPECONF_12BPC:
9416 pipe_config->pipe_bpp = 36;
9417 break;
9418 default:
9419 break;
9420 }
9421
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009422 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9423 pipe_config->limited_color_range = true;
9424
Daniel Vetterab9412b2013-05-03 11:49:46 +02009425 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02009426 struct intel_shared_dpll *pll;
9427
Daniel Vetter88adfff2013-03-28 10:42:01 +01009428 pipe_config->has_pch_encoder = true;
9429
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009430 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9431 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9432 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02009433
9434 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009435
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009436 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02009437 pipe_config->shared_dpll =
9438 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009439 } else {
9440 tmp = I915_READ(PCH_DPLL_SEL);
9441 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
9442 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
9443 else
9444 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
9445 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02009446
9447 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9448
9449 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9450 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009451
9452 tmp = pipe_config->dpll_hw_state.dpll;
9453 pipe_config->pixel_multiplier =
9454 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9455 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03009456
9457 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009458 } else {
9459 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009460 }
9461
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009462 intel_get_pipe_timings(crtc, pipe_config);
9463
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009464 ironlake_get_pfit_config(crtc, pipe_config);
9465
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009466 return true;
9467}
9468
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009469static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9470{
9471 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009472 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009473
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009474 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05009475 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009476 pipe_name(crtc->pipe));
9477
Rob Clarke2c719b2014-12-15 13:56:32 -05009478 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
9479 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
Ville Syrjälä01403de2015-09-18 20:03:33 +03009480 I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
9481 I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009482 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
9483 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009484 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03009485 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05009486 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03009487 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009488 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009489 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009490 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009491 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009492 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009493
Paulo Zanoni9926ada2014-04-01 19:39:47 -03009494 /*
9495 * In theory we can still leave IRQs enabled, as long as only the HPD
9496 * interrupts remain enabled. We used to check for that, but since it's
9497 * gen-specific and since we only disable LCPLL after we fully disable
9498 * the interrupts, the check below should be enough.
9499 */
Rob Clarke2c719b2014-12-15 13:56:32 -05009500 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009501}
9502
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009503static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
9504{
9505 struct drm_device *dev = dev_priv->dev;
9506
9507 if (IS_HASWELL(dev))
9508 return I915_READ(D_COMP_HSW);
9509 else
9510 return I915_READ(D_COMP_BDW);
9511}
9512
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009513static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
9514{
9515 struct drm_device *dev = dev_priv->dev;
9516
9517 if (IS_HASWELL(dev)) {
9518 mutex_lock(&dev_priv->rps.hw_lock);
9519 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
9520 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03009521 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009522 mutex_unlock(&dev_priv->rps.hw_lock);
9523 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009524 I915_WRITE(D_COMP_BDW, val);
9525 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009526 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009527}
9528
9529/*
9530 * This function implements pieces of two sequences from BSpec:
9531 * - Sequence for display software to disable LCPLL
9532 * - Sequence for display software to allow package C8+
9533 * The steps implemented here are just the steps that actually touch the LCPLL
9534 * register. Callers should take care of disabling all the display engine
9535 * functions, doing the mode unset, fixing interrupts, etc.
9536 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009537static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9538 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009539{
9540 uint32_t val;
9541
9542 assert_can_disable_lcpll(dev_priv);
9543
9544 val = I915_READ(LCPLL_CTL);
9545
9546 if (switch_to_fclk) {
9547 val |= LCPLL_CD_SOURCE_FCLK;
9548 I915_WRITE(LCPLL_CTL, val);
9549
9550 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9551 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9552 DRM_ERROR("Switching to FCLK failed\n");
9553
9554 val = I915_READ(LCPLL_CTL);
9555 }
9556
9557 val |= LCPLL_PLL_DISABLE;
9558 I915_WRITE(LCPLL_CTL, val);
9559 POSTING_READ(LCPLL_CTL);
9560
9561 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
9562 DRM_ERROR("LCPLL still locked\n");
9563
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009564 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009565 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009566 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009567 ndelay(100);
9568
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009569 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9570 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009571 DRM_ERROR("D_COMP RCOMP still in progress\n");
9572
9573 if (allow_power_down) {
9574 val = I915_READ(LCPLL_CTL);
9575 val |= LCPLL_POWER_DOWN_ALLOW;
9576 I915_WRITE(LCPLL_CTL, val);
9577 POSTING_READ(LCPLL_CTL);
9578 }
9579}
9580
9581/*
9582 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9583 * source.
9584 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009585static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009586{
9587 uint32_t val;
9588
9589 val = I915_READ(LCPLL_CTL);
9590
9591 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9592 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9593 return;
9594
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009595 /*
9596 * Make sure we're not on PC8 state before disabling PC8, otherwise
9597 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009598 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02009599 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03009600
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009601 if (val & LCPLL_POWER_DOWN_ALLOW) {
9602 val &= ~LCPLL_POWER_DOWN_ALLOW;
9603 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02009604 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009605 }
9606
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009607 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009608 val |= D_COMP_COMP_FORCE;
9609 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009610 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009611
9612 val = I915_READ(LCPLL_CTL);
9613 val &= ~LCPLL_PLL_DISABLE;
9614 I915_WRITE(LCPLL_CTL, val);
9615
9616 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
9617 DRM_ERROR("LCPLL not locked yet\n");
9618
9619 if (val & LCPLL_CD_SOURCE_FCLK) {
9620 val = I915_READ(LCPLL_CTL);
9621 val &= ~LCPLL_CD_SOURCE_FCLK;
9622 I915_WRITE(LCPLL_CTL, val);
9623
9624 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9625 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9626 DRM_ERROR("Switching back to LCPLL failed\n");
9627 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03009628
Mika Kuoppala59bad942015-01-16 11:34:40 +02009629 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ville Syrjäläb6283052015-06-03 15:45:07 +03009630 intel_update_cdclk(dev_priv->dev);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009631}
9632
Paulo Zanoni765dab672014-03-07 20:08:18 -03009633/*
9634 * Package states C8 and deeper are really deep PC states that can only be
9635 * reached when all the devices on the system allow it, so even if the graphics
9636 * device allows PC8+, it doesn't mean the system will actually get to these
9637 * states. Our driver only allows PC8+ when going into runtime PM.
9638 *
9639 * The requirements for PC8+ are that all the outputs are disabled, the power
9640 * well is disabled and most interrupts are disabled, and these are also
9641 * requirements for runtime PM. When these conditions are met, we manually do
9642 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9643 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9644 * hang the machine.
9645 *
9646 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9647 * the state of some registers, so when we come back from PC8+ we need to
9648 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9649 * need to take care of the registers kept by RC6. Notice that this happens even
9650 * if we don't put the device in PCI D3 state (which is what currently happens
9651 * because of the runtime PM support).
9652 *
9653 * For more, read "Display Sequences for Package C8" on the hardware
9654 * documentation.
9655 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009656void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009657{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009658 struct drm_device *dev = dev_priv->dev;
9659 uint32_t val;
9660
Paulo Zanonic67a4702013-08-19 13:18:09 -03009661 DRM_DEBUG_KMS("Enabling package C8+\n");
9662
Ville Syrjäläc2699522015-08-27 23:55:59 +03009663 if (HAS_PCH_LPT_LP(dev)) {
Paulo Zanonic67a4702013-08-19 13:18:09 -03009664 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9665 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9666 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9667 }
9668
9669 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009670 hsw_disable_lcpll(dev_priv, true, true);
9671}
9672
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009673void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009674{
9675 struct drm_device *dev = dev_priv->dev;
9676 uint32_t val;
9677
Paulo Zanonic67a4702013-08-19 13:18:09 -03009678 DRM_DEBUG_KMS("Disabling package C8+\n");
9679
9680 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009681 lpt_init_pch_refclk(dev);
9682
Ville Syrjäläc2699522015-08-27 23:55:59 +03009683 if (HAS_PCH_LPT_LP(dev)) {
Paulo Zanonic67a4702013-08-19 13:18:09 -03009684 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9685 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
9686 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9687 }
9688
9689 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009690}
9691
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009692static void broxton_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309693{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03009694 struct drm_device *dev = old_state->dev;
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01009695 struct intel_atomic_state *old_intel_state =
9696 to_intel_atomic_state(old_state);
9697 unsigned int req_cdclk = old_intel_state->dev_cdclk;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309698
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009699 broxton_set_cdclk(dev, req_cdclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309700}
9701
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009702/* compute the max rate for new configuration */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009703static int ilk_max_pixel_rate(struct drm_atomic_state *state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009704{
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009705 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
9706 struct drm_i915_private *dev_priv = state->dev->dev_private;
9707 struct drm_crtc *crtc;
9708 struct drm_crtc_state *cstate;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009709 struct intel_crtc_state *crtc_state;
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009710 unsigned max_pixel_rate = 0, i;
9711 enum pipe pipe;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009712
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009713 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
9714 sizeof(intel_state->min_pixclk));
9715
9716 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009717 int pixel_rate;
9718
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009719 crtc_state = to_intel_crtc_state(cstate);
9720 if (!crtc_state->base.enable) {
9721 intel_state->min_pixclk[i] = 0;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009722 continue;
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009723 }
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009724
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009725 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009726
9727 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009728 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009729 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
9730
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009731 intel_state->min_pixclk[i] = pixel_rate;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009732 }
9733
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009734 if (!intel_state->active_crtcs)
9735 return 0;
9736
9737 for_each_pipe(dev_priv, pipe)
9738 max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate);
9739
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009740 return max_pixel_rate;
9741}
9742
9743static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
9744{
9745 struct drm_i915_private *dev_priv = dev->dev_private;
9746 uint32_t val, data;
9747 int ret;
9748
9749 if (WARN((I915_READ(LCPLL_CTL) &
9750 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
9751 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
9752 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
9753 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
9754 "trying to change cdclk frequency with cdclk not enabled\n"))
9755 return;
9756
9757 mutex_lock(&dev_priv->rps.hw_lock);
9758 ret = sandybridge_pcode_write(dev_priv,
9759 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
9760 mutex_unlock(&dev_priv->rps.hw_lock);
9761 if (ret) {
9762 DRM_ERROR("failed to inform pcode about cdclk change\n");
9763 return;
9764 }
9765
9766 val = I915_READ(LCPLL_CTL);
9767 val |= LCPLL_CD_SOURCE_FCLK;
9768 I915_WRITE(LCPLL_CTL, val);
9769
9770 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9771 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9772 DRM_ERROR("Switching to FCLK failed\n");
9773
9774 val = I915_READ(LCPLL_CTL);
9775 val &= ~LCPLL_CLK_FREQ_MASK;
9776
9777 switch (cdclk) {
9778 case 450000:
9779 val |= LCPLL_CLK_FREQ_450;
9780 data = 0;
9781 break;
9782 case 540000:
9783 val |= LCPLL_CLK_FREQ_54O_BDW;
9784 data = 1;
9785 break;
9786 case 337500:
9787 val |= LCPLL_CLK_FREQ_337_5_BDW;
9788 data = 2;
9789 break;
9790 case 675000:
9791 val |= LCPLL_CLK_FREQ_675_BDW;
9792 data = 3;
9793 break;
9794 default:
9795 WARN(1, "invalid cdclk frequency\n");
9796 return;
9797 }
9798
9799 I915_WRITE(LCPLL_CTL, val);
9800
9801 val = I915_READ(LCPLL_CTL);
9802 val &= ~LCPLL_CD_SOURCE_FCLK;
9803 I915_WRITE(LCPLL_CTL, val);
9804
9805 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9806 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9807 DRM_ERROR("Switching back to LCPLL failed\n");
9808
9809 mutex_lock(&dev_priv->rps.hw_lock);
9810 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
9811 mutex_unlock(&dev_priv->rps.hw_lock);
9812
9813 intel_update_cdclk(dev);
9814
9815 WARN(cdclk != dev_priv->cdclk_freq,
9816 "cdclk requested %d kHz but got %d kHz\n",
9817 cdclk, dev_priv->cdclk_freq);
9818}
9819
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009820static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009821{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009822 struct drm_i915_private *dev_priv = to_i915(state->dev);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01009823 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009824 int max_pixclk = ilk_max_pixel_rate(state);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009825 int cdclk;
9826
9827 /*
9828 * FIXME should also account for plane ratio
9829 * once 64bpp pixel formats are supported.
9830 */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009831 if (max_pixclk > 540000)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009832 cdclk = 675000;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009833 else if (max_pixclk > 450000)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009834 cdclk = 540000;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009835 else if (max_pixclk > 337500)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009836 cdclk = 450000;
9837 else
9838 cdclk = 337500;
9839
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009840 if (cdclk > dev_priv->max_cdclk_freq) {
Maarten Lankhorst63ba5342015-11-24 11:29:03 +01009841 DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9842 cdclk, dev_priv->max_cdclk_freq);
9843 return -EINVAL;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009844 }
9845
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01009846 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
9847 if (!intel_state->active_crtcs)
9848 intel_state->dev_cdclk = 337500;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009849
9850 return 0;
9851}
9852
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009853static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009854{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009855 struct drm_device *dev = old_state->dev;
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01009856 struct intel_atomic_state *old_intel_state =
9857 to_intel_atomic_state(old_state);
9858 unsigned req_cdclk = old_intel_state->dev_cdclk;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009859
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009860 broadwell_set_cdclk(dev, req_cdclk);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009861}
9862
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009863static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9864 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03009865{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009866 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03009867 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03009868
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009869 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02009870
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02009871 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009872}
9873
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309874static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9875 enum port port,
9876 struct intel_crtc_state *pipe_config)
9877{
9878 switch (port) {
9879 case PORT_A:
9880 pipe_config->ddi_pll_sel = SKL_DPLL0;
9881 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9882 break;
9883 case PORT_B:
9884 pipe_config->ddi_pll_sel = SKL_DPLL1;
9885 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9886 break;
9887 case PORT_C:
9888 pipe_config->ddi_pll_sel = SKL_DPLL2;
9889 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9890 break;
9891 default:
9892 DRM_ERROR("Incorrect port type\n");
9893 }
9894}
9895
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009896static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9897 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009898 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009899{
Damien Lespiau3148ade2014-11-21 16:14:56 +00009900 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009901
9902 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9903 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9904
9905 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00009906 case SKL_DPLL0:
9907 /*
9908 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
9909 * of the shared DPLL framework and thus needs to be read out
9910 * separately
9911 */
9912 dpll_ctl1 = I915_READ(DPLL_CTRL1);
9913 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
9914 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009915 case SKL_DPLL1:
9916 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9917 break;
9918 case SKL_DPLL2:
9919 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9920 break;
9921 case SKL_DPLL3:
9922 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9923 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009924 }
9925}
9926
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009927static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9928 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009929 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009930{
9931 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9932
9933 switch (pipe_config->ddi_pll_sel) {
9934 case PORT_CLK_SEL_WRPLL1:
9935 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
9936 break;
9937 case PORT_CLK_SEL_WRPLL2:
9938 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
9939 break;
Maarten Lankhorst00490c22015-11-16 14:42:12 +01009940 case PORT_CLK_SEL_SPLL:
9941 pipe_config->shared_dpll = DPLL_ID_SPLL;
Ville Syrjälä79bd23d2015-12-01 23:32:07 +02009942 break;
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009943 }
9944}
9945
Daniel Vetter26804af2014-06-25 22:01:55 +03009946static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009947 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03009948{
9949 struct drm_device *dev = crtc->base.dev;
9950 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009951 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03009952 enum port port;
9953 uint32_t tmp;
9954
9955 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
9956
9957 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
9958
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07009959 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009960 skylake_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309961 else if (IS_BROXTON(dev))
9962 bxt_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009963 else
9964 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03009965
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009966 if (pipe_config->shared_dpll >= 0) {
9967 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9968
9969 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9970 &pipe_config->dpll_hw_state));
9971 }
9972
Daniel Vetter26804af2014-06-25 22:01:55 +03009973 /*
9974 * Haswell has only FDI/PCH transcoder A. It is which is connected to
9975 * DDI E. So just check whether this pipe is wired to DDI E and whether
9976 * the PCH transcoder is on.
9977 */
Damien Lespiauca370452013-12-03 13:56:24 +00009978 if (INTEL_INFO(dev)->gen < 9 &&
9979 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03009980 pipe_config->has_pch_encoder = true;
9981
9982 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
9983 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9984 FDI_DP_PORT_WIDTH_SHIFT) + 1;
9985
9986 ironlake_get_fdi_m_n_config(crtc, pipe_config);
9987 }
9988}
9989
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009990static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009991 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009992{
9993 struct drm_device *dev = crtc->base.dev;
9994 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009995 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009996 uint32_t tmp;
9997
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009998 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +02009999 POWER_DOMAIN_PIPE(crtc->pipe)))
10000 return false;
10001
Daniel Vettere143a212013-07-04 12:01:15 +020010002 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010003 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
10004
Daniel Vettereccb1402013-05-22 00:50:22 +020010005 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
10006 if (tmp & TRANS_DDI_FUNC_ENABLE) {
10007 enum pipe trans_edp_pipe;
10008 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
10009 default:
10010 WARN(1, "unknown pipe linked to edp transcoder\n");
10011 case TRANS_DDI_EDP_INPUT_A_ONOFF:
10012 case TRANS_DDI_EDP_INPUT_A_ON:
10013 trans_edp_pipe = PIPE_A;
10014 break;
10015 case TRANS_DDI_EDP_INPUT_B_ONOFF:
10016 trans_edp_pipe = PIPE_B;
10017 break;
10018 case TRANS_DDI_EDP_INPUT_C_ONOFF:
10019 trans_edp_pipe = PIPE_C;
10020 break;
10021 }
10022
10023 if (trans_edp_pipe == crtc->pipe)
10024 pipe_config->cpu_transcoder = TRANSCODER_EDP;
10025 }
10026
Daniel Vetterf458ebb2014-09-30 10:56:39 +020010027 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +020010028 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -030010029 return false;
10030
Daniel Vettereccb1402013-05-22 00:50:22 +020010031 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010032 if (!(tmp & PIPECONF_ENABLE))
10033 return false;
10034
Daniel Vetter26804af2014-06-25 22:01:55 +030010035 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010036
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010037 intel_get_pipe_timings(crtc, pipe_config);
10038
Chandra Kondurua1b22782015-04-07 15:28:45 -070010039 if (INTEL_INFO(dev)->gen >= 9) {
10040 skl_init_scalers(dev, crtc, pipe_config);
10041 }
10042
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010043 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Chandra Konduruaf99ced2015-05-11 14:35:47 -070010044
10045 if (INTEL_INFO(dev)->gen >= 9) {
10046 pipe_config->scaler_state.scaler_id = -1;
10047 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
10048 }
10049
Jesse Barnesbd2e2442014-11-13 17:51:47 +000010050 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
Rodrigo Vivi1c132b42015-09-02 15:19:26 -070010051 if (INTEL_INFO(dev)->gen >= 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +000010052 skylake_get_pfit_config(crtc, pipe_config);
Jesse Barnesff6d9f52015-01-21 17:19:54 -080010053 else
Rodrigo Vivi1c132b42015-09-02 15:19:26 -070010054 ironlake_get_pfit_config(crtc, pipe_config);
Jesse Barnesbd2e2442014-11-13 17:51:47 +000010055 }
Daniel Vetter88adfff2013-03-28 10:42:01 +010010056
Jesse Barnese59150d2014-01-07 13:30:45 -080010057 if (IS_HASWELL(dev))
10058 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
10059 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010060
Clint Taylorebb69c92014-09-30 10:30:22 -070010061 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
10062 pipe_config->pixel_multiplier =
10063 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
10064 } else {
10065 pipe_config->pixel_multiplier = 1;
10066 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010067
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010068 return true;
10069}
10070
Ville Syrjälä663f3122015-12-14 13:16:48 +020010071static void i845_update_cursor(struct drm_crtc *crtc, u32 base, bool on)
Chris Wilson560b85b2010-08-07 11:01:38 +010010072{
10073 struct drm_device *dev = crtc->dev;
10074 struct drm_i915_private *dev_priv = dev->dev_private;
10075 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +030010076 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +010010077
Ville Syrjälä663f3122015-12-14 13:16:48 +020010078 if (on) {
Matt Roper3dd512f2015-02-27 10:12:00 -080010079 unsigned int width = intel_crtc->base.cursor->state->crtc_w;
10080 unsigned int height = intel_crtc->base.cursor->state->crtc_h;
Ville Syrjälädc41c152014-08-13 11:57:05 +030010081 unsigned int stride = roundup_pow_of_two(width) * 4;
10082
10083 switch (stride) {
10084 default:
10085 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
10086 width, stride);
10087 stride = 256;
10088 /* fallthrough */
10089 case 256:
10090 case 512:
10091 case 1024:
10092 case 2048:
10093 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +030010094 }
10095
Ville Syrjälädc41c152014-08-13 11:57:05 +030010096 cntl |= CURSOR_ENABLE |
10097 CURSOR_GAMMA_ENABLE |
10098 CURSOR_FORMAT_ARGB |
10099 CURSOR_STRIDE(stride);
10100
10101 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +030010102 }
Chris Wilson560b85b2010-08-07 11:01:38 +010010103
Ville Syrjälädc41c152014-08-13 11:57:05 +030010104 if (intel_crtc->cursor_cntl != 0 &&
10105 (intel_crtc->cursor_base != base ||
10106 intel_crtc->cursor_size != size ||
10107 intel_crtc->cursor_cntl != cntl)) {
10108 /* On these chipsets we can only modify the base/size/stride
10109 * whilst the cursor is disabled.
10110 */
Ville Syrjälä0b87c242015-09-22 19:47:51 +030010111 I915_WRITE(CURCNTR(PIPE_A), 0);
10112 POSTING_READ(CURCNTR(PIPE_A));
Ville Syrjälädc41c152014-08-13 11:57:05 +030010113 intel_crtc->cursor_cntl = 0;
10114 }
10115
Ville Syrjälä99d1f382014-09-12 20:53:32 +030010116 if (intel_crtc->cursor_base != base) {
Ville Syrjälä0b87c242015-09-22 19:47:51 +030010117 I915_WRITE(CURBASE(PIPE_A), base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +030010118 intel_crtc->cursor_base = base;
10119 }
Ville Syrjälädc41c152014-08-13 11:57:05 +030010120
10121 if (intel_crtc->cursor_size != size) {
10122 I915_WRITE(CURSIZE, size);
10123 intel_crtc->cursor_size = size;
10124 }
10125
Chris Wilson4b0e3332014-05-30 16:35:26 +030010126 if (intel_crtc->cursor_cntl != cntl) {
Ville Syrjälä0b87c242015-09-22 19:47:51 +030010127 I915_WRITE(CURCNTR(PIPE_A), cntl);
10128 POSTING_READ(CURCNTR(PIPE_A));
Chris Wilson4b0e3332014-05-30 16:35:26 +030010129 intel_crtc->cursor_cntl = cntl;
10130 }
Chris Wilson560b85b2010-08-07 11:01:38 +010010131}
10132
Ville Syrjälä663f3122015-12-14 13:16:48 +020010133static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base, bool on)
Chris Wilson560b85b2010-08-07 11:01:38 +010010134{
10135 struct drm_device *dev = crtc->dev;
10136 struct drm_i915_private *dev_priv = dev->dev_private;
10137 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10138 int pipe = intel_crtc->pipe;
Ville Syrjälä663f3122015-12-14 13:16:48 +020010139 uint32_t cntl = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +010010140
Ville Syrjälä663f3122015-12-14 13:16:48 +020010141 if (on) {
Chris Wilson4b0e3332014-05-30 16:35:26 +030010142 cntl = MCURSOR_GAMMA_ENABLE;
Matt Roper3dd512f2015-02-27 10:12:00 -080010143 switch (intel_crtc->base.cursor->state->crtc_w) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +053010144 case 64:
10145 cntl |= CURSOR_MODE_64_ARGB_AX;
10146 break;
10147 case 128:
10148 cntl |= CURSOR_MODE_128_ARGB_AX;
10149 break;
10150 case 256:
10151 cntl |= CURSOR_MODE_256_ARGB_AX;
10152 break;
10153 default:
Matt Roper3dd512f2015-02-27 10:12:00 -080010154 MISSING_CASE(intel_crtc->base.cursor->state->crtc_w);
Sagar Kamble4726e0b2014-03-10 17:06:23 +053010155 return;
Chris Wilson560b85b2010-08-07 11:01:38 +010010156 }
Chris Wilson4b0e3332014-05-30 16:35:26 +030010157 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +030010158
Bob Paauwefc6f93b2015-08-31 14:03:30 -070010159 if (HAS_DDI(dev))
Ville Syrjälä47bf17a2014-09-12 20:53:33 +030010160 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +010010161 }
Chris Wilson4b0e3332014-05-30 16:35:26 +030010162
Matt Roper8e7d6882015-01-21 16:35:41 -080010163 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010164 cntl |= CURSOR_ROTATE_180;
10165
Chris Wilson4b0e3332014-05-30 16:35:26 +030010166 if (intel_crtc->cursor_cntl != cntl) {
10167 I915_WRITE(CURCNTR(pipe), cntl);
10168 POSTING_READ(CURCNTR(pipe));
10169 intel_crtc->cursor_cntl = cntl;
10170 }
10171
Jesse Barnes65a21cd2011-10-12 11:10:21 -070010172 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010173 I915_WRITE(CURBASE(pipe), base);
10174 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +030010175
10176 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -070010177}
10178
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010179/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +010010180static void intel_crtc_update_cursor(struct drm_crtc *crtc,
10181 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010182{
10183 struct drm_device *dev = crtc->dev;
10184 struct drm_i915_private *dev_priv = dev->dev_private;
10185 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10186 int pipe = intel_crtc->pipe;
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010187 struct drm_plane_state *cursor_state = crtc->cursor->state;
10188 int x = cursor_state->crtc_x;
10189 int y = cursor_state->crtc_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +030010190 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010191
Ville Syrjälä663f3122015-12-14 13:16:48 +020010192 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010193
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010194 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjälä663f3122015-12-14 13:16:48 +020010195 on = false;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +030010196
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010197 if (y >= intel_crtc->config->pipe_src_h)
Ville Syrjälä663f3122015-12-14 13:16:48 +020010198 on = false;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010199
10200 if (x < 0) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010201 if (x + cursor_state->crtc_w <= 0)
Ville Syrjälä663f3122015-12-14 13:16:48 +020010202 on = false;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010203
10204 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10205 x = -x;
10206 }
10207 pos |= x << CURSOR_X_SHIFT;
10208
10209 if (y < 0) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010210 if (y + cursor_state->crtc_h <= 0)
Ville Syrjälä663f3122015-12-14 13:16:48 +020010211 on = false;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010212
10213 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10214 y = -y;
10215 }
10216 pos |= y << CURSOR_Y_SHIFT;
10217
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010218 I915_WRITE(CURPOS(pipe), pos);
10219
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010220 /* ILK+ do this automagically */
10221 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -080010222 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010223 base += (cursor_state->crtc_h *
10224 cursor_state->crtc_w - 1) * 4;
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010225 }
10226
Ville Syrjälä8ac54662014-08-12 19:39:54 +030010227 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä663f3122015-12-14 13:16:48 +020010228 i845_update_cursor(crtc, base, on);
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010229 else
Ville Syrjälä663f3122015-12-14 13:16:48 +020010230 i9xx_update_cursor(crtc, base, on);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010231}
10232
Ville Syrjälädc41c152014-08-13 11:57:05 +030010233static bool cursor_size_ok(struct drm_device *dev,
10234 uint32_t width, uint32_t height)
10235{
10236 if (width == 0 || height == 0)
10237 return false;
10238
10239 /*
10240 * 845g/865g are special in that they are only limited by
10241 * the width of their cursors, the height is arbitrary up to
10242 * the precision of the register. Everything else requires
10243 * square cursors, limited to a few power-of-two sizes.
10244 */
10245 if (IS_845G(dev) || IS_I865G(dev)) {
10246 if ((width & 63) != 0)
10247 return false;
10248
10249 if (width > (IS_845G(dev) ? 64 : 512))
10250 return false;
10251
10252 if (height > 1023)
10253 return false;
10254 } else {
10255 switch (width | height) {
10256 case 256:
10257 case 128:
10258 if (IS_GEN2(dev))
10259 return false;
10260 case 64:
10261 break;
10262 default:
10263 return false;
10264 }
10265 }
10266
10267 return true;
10268}
10269
Jesse Barnes79e53942008-11-07 14:24:08 -080010270static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +010010271 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -080010272{
James Simmons72034252010-08-03 01:33:19 +010010273 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -080010274 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080010275
James Simmons72034252010-08-03 01:33:19 +010010276 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -080010277 intel_crtc->lut_r[i] = red[i] >> 8;
10278 intel_crtc->lut_g[i] = green[i] >> 8;
10279 intel_crtc->lut_b[i] = blue[i] >> 8;
10280 }
10281
10282 intel_crtc_load_lut(crtc);
10283}
10284
Jesse Barnes79e53942008-11-07 14:24:08 -080010285/* VESA 640x480x72Hz mode to set on the pipe */
10286static struct drm_display_mode load_detect_mode = {
10287 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10288 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10289};
10290
Daniel Vettera8bb6812014-02-10 18:00:39 +010010291struct drm_framebuffer *
10292__intel_framebuffer_create(struct drm_device *dev,
10293 struct drm_mode_fb_cmd2 *mode_cmd,
10294 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +010010295{
10296 struct intel_framebuffer *intel_fb;
10297 int ret;
10298
10299 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Lukas Wunnerdcb13942015-07-04 11:50:58 +020010300 if (!intel_fb)
Chris Wilsond2dff872011-04-19 08:36:26 +010010301 return ERR_PTR(-ENOMEM);
Chris Wilsond2dff872011-04-19 08:36:26 +010010302
10303 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010304 if (ret)
10305 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +010010306
10307 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010308
Lukas Wunnerdcb13942015-07-04 11:50:58 +020010309err:
10310 kfree(intel_fb);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010311 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +010010312}
10313
Daniel Vetterb5ea6422014-03-02 21:18:00 +010010314static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +010010315intel_framebuffer_create(struct drm_device *dev,
10316 struct drm_mode_fb_cmd2 *mode_cmd,
10317 struct drm_i915_gem_object *obj)
10318{
10319 struct drm_framebuffer *fb;
10320 int ret;
10321
10322 ret = i915_mutex_lock_interruptible(dev);
10323 if (ret)
10324 return ERR_PTR(ret);
10325 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10326 mutex_unlock(&dev->struct_mutex);
10327
10328 return fb;
10329}
10330
Chris Wilsond2dff872011-04-19 08:36:26 +010010331static u32
10332intel_framebuffer_pitch_for_width(int width, int bpp)
10333{
10334 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10335 return ALIGN(pitch, 64);
10336}
10337
10338static u32
10339intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10340{
10341 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +020010342 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +010010343}
10344
10345static struct drm_framebuffer *
10346intel_framebuffer_create_for_mode(struct drm_device *dev,
10347 struct drm_display_mode *mode,
10348 int depth, int bpp)
10349{
Lukas Wunnerdcb13942015-07-04 11:50:58 +020010350 struct drm_framebuffer *fb;
Chris Wilsond2dff872011-04-19 08:36:26 +010010351 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +000010352 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +010010353
10354 obj = i915_gem_alloc_object(dev,
10355 intel_framebuffer_size_for_mode(mode, bpp));
10356 if (obj == NULL)
10357 return ERR_PTR(-ENOMEM);
10358
10359 mode_cmd.width = mode->hdisplay;
10360 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -080010361 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
10362 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +000010363 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +010010364
Lukas Wunnerdcb13942015-07-04 11:50:58 +020010365 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
10366 if (IS_ERR(fb))
10367 drm_gem_object_unreference_unlocked(&obj->base);
10368
10369 return fb;
Chris Wilsond2dff872011-04-19 08:36:26 +010010370}
10371
10372static struct drm_framebuffer *
10373mode_fits_in_fbdev(struct drm_device *dev,
10374 struct drm_display_mode *mode)
10375{
Daniel Vetter06957262015-08-10 13:34:08 +020010376#ifdef CONFIG_DRM_FBDEV_EMULATION
Chris Wilsond2dff872011-04-19 08:36:26 +010010377 struct drm_i915_private *dev_priv = dev->dev_private;
10378 struct drm_i915_gem_object *obj;
10379 struct drm_framebuffer *fb;
10380
Daniel Vetter4c0e5522014-02-14 16:35:54 +010010381 if (!dev_priv->fbdev)
10382 return NULL;
10383
10384 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +010010385 return NULL;
10386
Jesse Barnes8bcd4552014-02-07 12:10:38 -080010387 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +010010388 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +010010389
Jesse Barnes8bcd4552014-02-07 12:10:38 -080010390 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010391 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
10392 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +010010393 return NULL;
10394
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010395 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +010010396 return NULL;
10397
10398 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +020010399#else
10400 return NULL;
10401#endif
Chris Wilsond2dff872011-04-19 08:36:26 +010010402}
10403
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010404static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
10405 struct drm_crtc *crtc,
10406 struct drm_display_mode *mode,
10407 struct drm_framebuffer *fb,
10408 int x, int y)
10409{
10410 struct drm_plane_state *plane_state;
10411 int hdisplay, vdisplay;
10412 int ret;
10413
10414 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
10415 if (IS_ERR(plane_state))
10416 return PTR_ERR(plane_state);
10417
10418 if (mode)
10419 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
10420 else
10421 hdisplay = vdisplay = 0;
10422
10423 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
10424 if (ret)
10425 return ret;
10426 drm_atomic_set_fb_for_plane(plane_state, fb);
10427 plane_state->crtc_x = 0;
10428 plane_state->crtc_y = 0;
10429 plane_state->crtc_w = hdisplay;
10430 plane_state->crtc_h = vdisplay;
10431 plane_state->src_x = x << 16;
10432 plane_state->src_y = y << 16;
10433 plane_state->src_w = hdisplay << 16;
10434 plane_state->src_h = vdisplay << 16;
10435
10436 return 0;
10437}
10438
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010439bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +010010440 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -050010441 struct intel_load_detect_pipe *old,
10442 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080010443{
10444 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010445 struct intel_encoder *intel_encoder =
10446 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -080010447 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +010010448 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -080010449 struct drm_crtc *crtc = NULL;
10450 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +020010451 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -050010452 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010453 struct drm_atomic_state *state = NULL;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010454 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010455 struct intel_crtc_state *crtc_state;
Rob Clark51fd3712013-11-19 12:10:12 -050010456 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -080010457
Chris Wilsond2dff872011-04-19 08:36:26 +010010458 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030010459 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030010460 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010010461
Rob Clark51fd3712013-11-19 12:10:12 -050010462retry:
10463 ret = drm_modeset_lock(&config->connection_mutex, ctx);
10464 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010465 goto fail;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020010466
Jesse Barnes79e53942008-11-07 14:24:08 -080010467 /*
10468 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +010010469 *
Jesse Barnes79e53942008-11-07 14:24:08 -080010470 * - if the connector already has an assigned crtc, use it (but make
10471 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +010010472 *
Jesse Barnes79e53942008-11-07 14:24:08 -080010473 * - try to find the first unused crtc that can drive this connector,
10474 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -080010475 */
10476
10477 /* See if we already have a CRTC for this connector */
10478 if (encoder->crtc) {
10479 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +010010480
Rob Clark51fd3712013-11-19 12:10:12 -050010481 ret = drm_modeset_lock(&crtc->mutex, ctx);
10482 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010483 goto fail;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +010010484 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10485 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010486 goto fail;
Daniel Vetter7b240562012-12-12 00:35:33 +010010487
Daniel Vetter24218aa2012-08-12 19:27:11 +020010488 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +010010489 old->load_detect_temp = false;
10490
10491 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +020010492 if (connector->dpms != DRM_MODE_DPMS_ON)
10493 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +010010494
Chris Wilson71731882011-04-19 23:10:58 +010010495 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -080010496 }
10497
10498 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010499 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -080010500 i++;
10501 if (!(encoder->possible_crtcs & (1 << i)))
10502 continue;
Matt Roper83d65732015-02-25 13:12:16 -080010503 if (possible_crtc->state->enable)
Ville Syrjäläa4592492014-08-11 13:15:36 +030010504 continue;
Ville Syrjäläa4592492014-08-11 13:15:36 +030010505
10506 crtc = possible_crtc;
10507 break;
Jesse Barnes79e53942008-11-07 14:24:08 -080010508 }
10509
10510 /*
10511 * If we didn't find an unused CRTC, don't use any.
10512 */
10513 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +010010514 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010515 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010516 }
10517
Rob Clark51fd3712013-11-19 12:10:12 -050010518 ret = drm_modeset_lock(&crtc->mutex, ctx);
10519 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010520 goto fail;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +010010521 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10522 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010523 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010524
10525 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter24218aa2012-08-12 19:27:11 +020010526 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +010010527 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +010010528 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -080010529
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010530 state = drm_atomic_state_alloc(dev);
10531 if (!state)
10532 return false;
10533
10534 state->acquire_ctx = ctx;
10535
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010536 connector_state = drm_atomic_get_connector_state(state, connector);
10537 if (IS_ERR(connector_state)) {
10538 ret = PTR_ERR(connector_state);
10539 goto fail;
10540 }
10541
10542 connector_state->crtc = crtc;
10543 connector_state->best_encoder = &intel_encoder->base;
10544
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010545 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10546 if (IS_ERR(crtc_state)) {
10547 ret = PTR_ERR(crtc_state);
10548 goto fail;
10549 }
10550
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020010551 crtc_state->base.active = crtc_state->base.enable = true;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010552
Chris Wilson64927112011-04-20 07:25:26 +010010553 if (!mode)
10554 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -080010555
Chris Wilsond2dff872011-04-19 08:36:26 +010010556 /* We need a framebuffer large enough to accommodate all accesses
10557 * that the plane may generate whilst we perform load detection.
10558 * We can not rely on the fbcon either being present (we get called
10559 * during its initialisation to detect all boot displays, or it may
10560 * not even exist) or that it is large enough to satisfy the
10561 * requested mode.
10562 */
Daniel Vetter94352cf2012-07-05 22:51:56 +020010563 fb = mode_fits_in_fbdev(dev, mode);
10564 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +010010565 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020010566 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
10567 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +010010568 } else
10569 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020010570 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +010010571 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010572 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010573 }
Chris Wilsond2dff872011-04-19 08:36:26 +010010574
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010575 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
10576 if (ret)
10577 goto fail;
10578
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030010579 drm_mode_copy(&crtc_state->base.mode, mode);
10580
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020010581 if (drm_atomic_commit(state)) {
Chris Wilson64927112011-04-20 07:25:26 +010010582 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +010010583 if (old->release_fb)
10584 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010585 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010586 }
Daniel Vetter9128b042015-03-03 17:31:21 +010010587 crtc->primary->crtc = crtc;
Chris Wilson71731882011-04-19 23:10:58 +010010588
Jesse Barnes79e53942008-11-07 14:24:08 -080010589 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -070010590 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +010010591 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010592
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010593fail:
Ander Conselvan de Oliveirae5d958e2015-04-21 17:12:57 +030010594 drm_atomic_state_free(state);
10595 state = NULL;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010596
Rob Clark51fd3712013-11-19 12:10:12 -050010597 if (ret == -EDEADLK) {
10598 drm_modeset_backoff(ctx);
10599 goto retry;
10600 }
10601
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010602 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -080010603}
10604
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010605void intel_release_load_detect_pipe(struct drm_connector *connector,
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020010606 struct intel_load_detect_pipe *old,
10607 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080010608{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010609 struct drm_device *dev = connector->dev;
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010610 struct intel_encoder *intel_encoder =
10611 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +010010612 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +010010613 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010614 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010615 struct drm_atomic_state *state;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010616 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010617 struct intel_crtc_state *crtc_state;
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010618 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080010619
Chris Wilsond2dff872011-04-19 08:36:26 +010010620 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030010621 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030010622 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010010623
Chris Wilson8261b192011-04-19 23:18:09 +010010624 if (old->load_detect_temp) {
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010625 state = drm_atomic_state_alloc(dev);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010626 if (!state)
10627 goto fail;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010628
10629 state->acquire_ctx = ctx;
10630
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010631 connector_state = drm_atomic_get_connector_state(state, connector);
10632 if (IS_ERR(connector_state))
10633 goto fail;
10634
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010635 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10636 if (IS_ERR(crtc_state))
10637 goto fail;
10638
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010639 connector_state->best_encoder = NULL;
10640 connector_state->crtc = NULL;
10641
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020010642 crtc_state->base.enable = crtc_state->base.active = false;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010643
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010644 ret = intel_modeset_setup_plane_state(state, crtc, NULL, NULL,
10645 0, 0);
10646 if (ret)
10647 goto fail;
10648
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020010649 ret = drm_atomic_commit(state);
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030010650 if (ret)
10651 goto fail;
Chris Wilsond2dff872011-04-19 08:36:26 +010010652
Daniel Vetter36206362012-12-10 20:42:17 +010010653 if (old->release_fb) {
10654 drm_framebuffer_unregister_private(old->release_fb);
10655 drm_framebuffer_unreference(old->release_fb);
10656 }
Chris Wilsond2dff872011-04-19 08:36:26 +010010657
Chris Wilson0622a532011-04-21 09:32:11 +010010658 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080010659 }
10660
Eric Anholtc751ce42010-03-25 11:48:48 -070010661 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +020010662 if (old->dpms_mode != DRM_MODE_DPMS_ON)
10663 connector->funcs->dpms(connector, old->dpms_mode);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010664
10665 return;
10666fail:
10667 DRM_DEBUG_KMS("Couldn't release load detect pipe.\n");
10668 drm_atomic_state_free(state);
Jesse Barnes79e53942008-11-07 14:24:08 -080010669}
10670
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010671static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010672 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010673{
10674 struct drm_i915_private *dev_priv = dev->dev_private;
10675 u32 dpll = pipe_config->dpll_hw_state.dpll;
10676
10677 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +020010678 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010679 else if (HAS_PCH_SPLIT(dev))
10680 return 120000;
10681 else if (!IS_GEN2(dev))
10682 return 96000;
10683 else
10684 return 48000;
10685}
10686
Jesse Barnes79e53942008-11-07 14:24:08 -080010687/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010688static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010689 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -080010690{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010691 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080010692 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010693 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010694 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -080010695 u32 fp;
10696 intel_clock_t clock;
Imre Deakdccbea32015-06-22 23:35:51 +030010697 int port_clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010698 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -080010699
10700 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +030010701 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010702 else
Ville Syrjälä293623f2013-09-13 16:18:46 +030010703 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -080010704
10705 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010706 if (IS_PINEVIEW(dev)) {
10707 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
10708 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +080010709 } else {
10710 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
10711 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
10712 }
10713
Chris Wilsona6c45cf2010-09-17 00:32:17 +010010714 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010715 if (IS_PINEVIEW(dev))
10716 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
10717 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +080010718 else
10719 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -080010720 DPLL_FPA01_P1_POST_DIV_SHIFT);
10721
10722 switch (dpll & DPLL_MODE_MASK) {
10723 case DPLLB_MODE_DAC_SERIAL:
10724 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
10725 5 : 10;
10726 break;
10727 case DPLLB_MODE_LVDS:
10728 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
10729 7 : 14;
10730 break;
10731 default:
Zhao Yakui28c97732009-10-09 11:39:41 +080010732 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -080010733 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010734 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080010735 }
10736
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010737 if (IS_PINEVIEW(dev))
Imre Deakdccbea32015-06-22 23:35:51 +030010738 port_clock = pnv_calc_dpll_params(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010739 else
Imre Deakdccbea32015-06-22 23:35:51 +030010740 port_clock = i9xx_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010741 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +020010742 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010743 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -080010744
10745 if (is_lvds) {
10746 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10747 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010748
10749 if (lvds & LVDS_CLKB_POWER_UP)
10750 clock.p2 = 7;
10751 else
10752 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -080010753 } else {
10754 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10755 clock.p1 = 2;
10756 else {
10757 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10758 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10759 }
10760 if (dpll & PLL_P2_DIVIDE_BY_4)
10761 clock.p2 = 4;
10762 else
10763 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -080010764 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010765
Imre Deakdccbea32015-06-22 23:35:51 +030010766 port_clock = i9xx_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010767 }
10768
Ville Syrjälä18442d02013-09-13 16:00:08 +030010769 /*
10770 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +010010771 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +030010772 * encoder's get_config() function.
10773 */
Imre Deakdccbea32015-06-22 23:35:51 +030010774 pipe_config->port_clock = port_clock;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010775}
10776
Ville Syrjälä6878da02013-09-13 15:59:11 +030010777int intel_dotclock_calculate(int link_freq,
10778 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010779{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010780 /*
10781 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010782 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010783 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010784 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010785 *
10786 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010787 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -080010788 */
10789
Ville Syrjälä6878da02013-09-13 15:59:11 +030010790 if (!m_n->link_n)
10791 return 0;
10792
10793 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10794}
10795
Ville Syrjälä18442d02013-09-13 16:00:08 +030010796static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010797 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +030010798{
10799 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +030010800
10801 /* read out port_clock from the DPLL */
10802 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +030010803
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010804 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +030010805 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +010010806 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +030010807 * agree once we know their relationship in the encoder's
10808 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010809 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010810 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +030010811 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
10812 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -080010813}
10814
10815/** Returns the currently programmed mode of the given pipe. */
10816struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10817 struct drm_crtc *crtc)
10818{
Jesse Barnes548f2452011-02-17 10:40:53 -080010819 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010820 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010821 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010822 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010823 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -020010824 int htot = I915_READ(HTOTAL(cpu_transcoder));
10825 int hsync = I915_READ(HSYNC(cpu_transcoder));
10826 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10827 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +030010828 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -080010829
10830 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10831 if (!mode)
10832 return NULL;
10833
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010834 /*
10835 * Construct a pipe_config sufficient for getting the clock info
10836 * back out of crtc_clock_get.
10837 *
10838 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10839 * to use a real value here instead.
10840 */
Ville Syrjälä293623f2013-09-13 16:18:46 +030010841 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010842 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010843 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10844 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10845 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010846 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
10847
Ville Syrjälä773ae032013-09-23 17:48:20 +030010848 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -080010849 mode->hdisplay = (htot & 0xffff) + 1;
10850 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10851 mode->hsync_start = (hsync & 0xffff) + 1;
10852 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10853 mode->vdisplay = (vtot & 0xffff) + 1;
10854 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10855 mode->vsync_start = (vsync & 0xffff) + 1;
10856 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10857
10858 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -080010859
10860 return mode;
10861}
10862
Chris Wilsonf047e392012-07-21 12:31:41 +010010863void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -070010864{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010865 struct drm_i915_private *dev_priv = dev->dev_private;
10866
Chris Wilsonf62a0072014-02-21 17:55:39 +000010867 if (dev_priv->mm.busy)
10868 return;
10869
Paulo Zanoni43694d62014-03-07 20:08:08 -030010870 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -030010871 i915_update_gfx_val(dev_priv);
Chris Wilson43cf3bf2015-03-18 09:48:22 +000010872 if (INTEL_INFO(dev)->gen >= 6)
10873 gen6_rps_busy(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +000010874 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +010010875}
10876
10877void intel_mark_idle(struct drm_device *dev)
10878{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010879 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +000010880
Chris Wilsonf62a0072014-02-21 17:55:39 +000010881 if (!dev_priv->mm.busy)
10882 return;
10883
10884 dev_priv->mm.busy = false;
10885
Damien Lespiau3d13ef22014-02-07 19:12:47 +000010886 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +010010887 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -030010888
Paulo Zanoni43694d62014-03-07 20:08:08 -030010889 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +010010890}
10891
Jesse Barnes79e53942008-11-07 14:24:08 -080010892static void intel_crtc_destroy(struct drm_crtc *crtc)
10893{
10894 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010895 struct drm_device *dev = crtc->dev;
10896 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +020010897
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010898 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010899 work = intel_crtc->unpin_work;
10900 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010901 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010902
10903 if (work) {
10904 cancel_work_sync(&work->work);
10905 kfree(work);
10906 }
Jesse Barnes79e53942008-11-07 14:24:08 -080010907
10908 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010909
Jesse Barnes79e53942008-11-07 14:24:08 -080010910 kfree(intel_crtc);
10911}
10912
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010913static void intel_unpin_work_fn(struct work_struct *__work)
10914{
10915 struct intel_unpin_work *work =
10916 container_of(__work, struct intel_unpin_work, work);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010917 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
10918 struct drm_device *dev = crtc->base.dev;
10919 struct drm_plane *primary = crtc->base.primary;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010920
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010921 mutex_lock(&dev->struct_mutex);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010922 intel_unpin_fb_obj(work->old_fb, primary->state);
Chris Wilson05394f32010-11-08 19:18:58 +000010923 drm_gem_object_unreference(&work->pending_flip_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +000010924
John Harrisonf06cc1b2014-11-24 18:49:37 +000010925 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +000010926 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010927 mutex_unlock(&dev->struct_mutex);
10928
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010929 intel_frontbuffer_flip_complete(dev, to_intel_plane(primary)->frontbuffer_bit);
Chris Wilson89ed88b2015-02-16 14:31:49 +000010930 drm_framebuffer_unreference(work->old_fb);
Daniel Vetterf99d7062014-06-19 16:01:59 +020010931
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010932 BUG_ON(atomic_read(&crtc->unpin_work_count) == 0);
10933 atomic_dec(&crtc->unpin_work_count);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010934
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010935 kfree(work);
10936}
10937
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010938static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +010010939 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010940{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010941 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10942 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010943 unsigned long flags;
10944
10945 /* Ignore early vblank irqs */
10946 if (intel_crtc == NULL)
10947 return;
10948
Daniel Vetterf3260382014-09-15 14:55:23 +020010949 /*
10950 * This is called both by irq handlers and the reset code (to complete
10951 * lost pageflips) so needs the full irqsave spinlocks.
10952 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010953 spin_lock_irqsave(&dev->event_lock, flags);
10954 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +000010955
10956 /* Ensure we don't miss a work->pending update ... */
10957 smp_rmb();
10958
10959 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010960 spin_unlock_irqrestore(&dev->event_lock, flags);
10961 return;
10962 }
10963
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010964 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +010010965
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010966 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010967}
10968
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010969void intel_finish_page_flip(struct drm_device *dev, int pipe)
10970{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010971 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010972 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10973
Mario Kleiner49b14a52010-12-09 07:00:07 +010010974 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010975}
10976
10977void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
10978{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010979 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010980 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
10981
Mario Kleiner49b14a52010-12-09 07:00:07 +010010982 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010983}
10984
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010985/* Is 'a' after or equal to 'b'? */
10986static bool g4x_flip_count_after_eq(u32 a, u32 b)
10987{
10988 return !((a - b) & 0x80000000);
10989}
10990
10991static bool page_flip_finished(struct intel_crtc *crtc)
10992{
10993 struct drm_device *dev = crtc->base.dev;
10994 struct drm_i915_private *dev_priv = dev->dev_private;
10995
Ville Syrjäläbdfa7542014-05-27 21:33:09 +030010996 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
10997 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
10998 return true;
10999
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011000 /*
11001 * The relevant registers doen't exist on pre-ctg.
11002 * As the flip done interrupt doesn't trigger for mmio
11003 * flips on gmch platforms, a flip count check isn't
11004 * really needed there. But since ctg has the registers,
11005 * include it in the check anyway.
11006 */
11007 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
11008 return true;
11009
11010 /*
11011 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
11012 * used the same base address. In that case the mmio flip might
11013 * have completed, but the CS hasn't even executed the flip yet.
11014 *
11015 * A flip count check isn't enough as the CS might have updated
11016 * the base address just after start of vblank, but before we
11017 * managed to process the interrupt. This means we'd complete the
11018 * CS flip too soon.
11019 *
11020 * Combining both checks should get us a good enough result. It may
11021 * still happen that the CS flip has been executed, but has not
11022 * yet actually completed. But in case the base address is the same
11023 * anyway, we don't really care.
11024 */
11025 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
11026 crtc->unpin_work->gtt_offset &&
Ville Syrjäläfd8f507c2015-09-18 20:03:42 +030011027 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_G4X(crtc->pipe)),
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011028 crtc->unpin_work->flip_count);
11029}
11030
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011031void intel_prepare_page_flip(struct drm_device *dev, int plane)
11032{
Jani Nikulafbee40d2014-03-31 14:27:18 +030011033 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011034 struct intel_crtc *intel_crtc =
11035 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
11036 unsigned long flags;
11037
Daniel Vetterf3260382014-09-15 14:55:23 +020011038
11039 /*
11040 * This is called both by irq handlers and the reset code (to complete
11041 * lost pageflips) so needs the full irqsave spinlocks.
11042 *
11043 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +000011044 * generate a page-flip completion irq, i.e. every modeset
11045 * is also accompanied by a spurious intel_prepare_page_flip().
11046 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011047 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011048 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +000011049 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011050 spin_unlock_irqrestore(&dev->event_lock, flags);
11051}
11052
Chris Wilson60426392015-10-10 10:44:32 +010011053static inline void intel_mark_page_flip_active(struct intel_unpin_work *work)
Chris Wilsone7d841c2012-12-03 11:36:30 +000011054{
11055 /* Ensure that the work item is consistent when activating it ... */
11056 smp_wmb();
Chris Wilson60426392015-10-10 10:44:32 +010011057 atomic_set(&work->pending, INTEL_FLIP_PENDING);
Chris Wilsone7d841c2012-12-03 11:36:30 +000011058 /* and that it is marked active as soon as the irq could fire. */
11059 smp_wmb();
11060}
11061
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011062static int intel_gen2_queue_flip(struct drm_device *dev,
11063 struct drm_crtc *crtc,
11064 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011065 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011066 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011067 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011068{
John Harrison6258fbe2015-05-29 17:43:48 +010011069 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011070 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011071 u32 flip_mask;
11072 int ret;
11073
John Harrison5fb9de12015-05-29 17:44:07 +010011074 ret = intel_ring_begin(req, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011075 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011076 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011077
11078 /* Can't queue multiple flips, so wait for the previous
11079 * one to finish before executing the next.
11080 */
11081 if (intel_crtc->plane)
11082 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11083 else
11084 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011085 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11086 intel_ring_emit(ring, MI_NOOP);
11087 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11088 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11089 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011090 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020011091 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +000011092
Chris Wilson60426392015-10-10 10:44:32 +010011093 intel_mark_page_flip_active(intel_crtc->unpin_work);
Chris Wilson83d40922012-04-17 19:35:53 +010011094 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011095}
11096
11097static int intel_gen3_queue_flip(struct drm_device *dev,
11098 struct drm_crtc *crtc,
11099 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011100 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011101 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011102 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011103{
John Harrison6258fbe2015-05-29 17:43:48 +010011104 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011105 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011106 u32 flip_mask;
11107 int ret;
11108
John Harrison5fb9de12015-05-29 17:44:07 +010011109 ret = intel_ring_begin(req, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011110 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011111 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011112
11113 if (intel_crtc->plane)
11114 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11115 else
11116 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011117 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11118 intel_ring_emit(ring, MI_NOOP);
11119 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
11120 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11121 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011122 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020011123 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011124
Chris Wilson60426392015-10-10 10:44:32 +010011125 intel_mark_page_flip_active(intel_crtc->unpin_work);
Chris Wilson83d40922012-04-17 19:35:53 +010011126 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011127}
11128
11129static int intel_gen4_queue_flip(struct drm_device *dev,
11130 struct drm_crtc *crtc,
11131 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011132 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011133 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011134 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011135{
John Harrison6258fbe2015-05-29 17:43:48 +010011136 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011137 struct drm_i915_private *dev_priv = dev->dev_private;
11138 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11139 uint32_t pf, pipesrc;
11140 int ret;
11141
John Harrison5fb9de12015-05-29 17:44:07 +010011142 ret = intel_ring_begin(req, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011143 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011144 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011145
11146 /* i965+ uses the linear or tiled offsets from the
11147 * Display Registers (which do not change across a page-flip)
11148 * so we need only reprogram the base address.
11149 */
Daniel Vetter6d90c952012-04-26 23:28:05 +020011150 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11151 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11152 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011153 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +020011154 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011155
11156 /* XXX Enabling the panel-fitter across page-flip is so far
11157 * untested on non-native modes, so ignore it for now.
11158 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
11159 */
11160 pf = 0;
11161 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011162 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000011163
Chris Wilson60426392015-10-10 10:44:32 +010011164 intel_mark_page_flip_active(intel_crtc->unpin_work);
Chris Wilson83d40922012-04-17 19:35:53 +010011165 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011166}
11167
11168static int intel_gen6_queue_flip(struct drm_device *dev,
11169 struct drm_crtc *crtc,
11170 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011171 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011172 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011173 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011174{
John Harrison6258fbe2015-05-29 17:43:48 +010011175 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011176 struct drm_i915_private *dev_priv = dev->dev_private;
11177 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11178 uint32_t pf, pipesrc;
11179 int ret;
11180
John Harrison5fb9de12015-05-29 17:44:07 +010011181 ret = intel_ring_begin(req, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011182 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011183 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011184
Daniel Vetter6d90c952012-04-26 23:28:05 +020011185 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11186 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11187 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011188 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011189
Chris Wilson99d9acd2012-04-17 20:37:00 +010011190 /* Contrary to the suggestions in the documentation,
11191 * "Enable Panel Fitter" does not seem to be required when page
11192 * flipping with a non-native mode, and worse causes a normal
11193 * modeset to fail.
11194 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
11195 */
11196 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011197 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011198 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000011199
Chris Wilson60426392015-10-10 10:44:32 +010011200 intel_mark_page_flip_active(intel_crtc->unpin_work);
Chris Wilson83d40922012-04-17 19:35:53 +010011201 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011202}
11203
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011204static int intel_gen7_queue_flip(struct drm_device *dev,
11205 struct drm_crtc *crtc,
11206 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011207 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011208 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011209 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011210{
John Harrison6258fbe2015-05-29 17:43:48 +010011211 struct intel_engine_cs *ring = req->ring;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011212 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011213 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +010011214 int len, ret;
11215
Robin Schroereba905b2014-05-18 02:24:50 +020011216 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011217 case PLANE_A:
11218 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11219 break;
11220 case PLANE_B:
11221 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11222 break;
11223 case PLANE_C:
11224 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11225 break;
11226 default:
11227 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011228 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011229 }
11230
Chris Wilsonffe74d72013-08-26 20:58:12 +010011231 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +010011232 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +010011233 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +010011234 /*
11235 * On Gen 8, SRM is now taking an extra dword to accommodate
11236 * 48bits addresses, and we need a NOOP for the batch size to
11237 * stay even.
11238 */
11239 if (IS_GEN8(dev))
11240 len += 2;
11241 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010011242
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011243 /*
11244 * BSpec MI_DISPLAY_FLIP for IVB:
11245 * "The full packet must be contained within the same cache line."
11246 *
11247 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11248 * cacheline, if we ever start emitting more commands before
11249 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11250 * then do the cacheline alignment, and finally emit the
11251 * MI_DISPLAY_FLIP.
11252 */
John Harrisonbba09b12015-05-29 17:44:06 +010011253 ret = intel_ring_cacheline_align(req);
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011254 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011255 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011256
John Harrison5fb9de12015-05-29 17:44:07 +010011257 ret = intel_ring_begin(req, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011258 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011259 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011260
Chris Wilsonffe74d72013-08-26 20:58:12 +010011261 /* Unmask the flip-done completion message. Note that the bspec says that
11262 * we should do this for both the BCS and RCS, and that we must not unmask
11263 * more than one flip event at any time (or ensure that one flip message
11264 * can be sent by waiting for flip-done prior to queueing new flips).
11265 * Experimentation says that BCS works despite DERRMR masking all
11266 * flip-done completion events and that unmasking all planes at once
11267 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11268 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11269 */
11270 if (ring->id == RCS) {
11271 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
Ville Syrjäläf92a9162015-11-04 23:20:07 +020011272 intel_ring_emit_reg(ring, DERRMR);
Chris Wilsonffe74d72013-08-26 20:58:12 +010011273 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
11274 DERRMR_PIPEB_PRI_FLIP_DONE |
11275 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +010011276 if (IS_GEN8(dev))
Arun Siluveryf1afe242015-08-04 16:22:20 +010011277 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8 |
Damien Lespiauf4768282014-04-07 20:24:34 +010011278 MI_SRM_LRM_GLOBAL_GTT);
11279 else
Arun Siluveryf1afe242015-08-04 16:22:20 +010011280 intel_ring_emit(ring, MI_STORE_REGISTER_MEM |
Damien Lespiauf4768282014-04-07 20:24:34 +010011281 MI_SRM_LRM_GLOBAL_GTT);
Ville Syrjäläf92a9162015-11-04 23:20:07 +020011282 intel_ring_emit_reg(ring, DERRMR);
Chris Wilsonffe74d72013-08-26 20:58:12 +010011283 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +010011284 if (IS_GEN8(dev)) {
11285 intel_ring_emit(ring, 0);
11286 intel_ring_emit(ring, MI_NOOP);
11287 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010011288 }
11289
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011290 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +020011291 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011292 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011293 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +000011294
Chris Wilson60426392015-10-10 10:44:32 +010011295 intel_mark_page_flip_active(intel_crtc->unpin_work);
Chris Wilson83d40922012-04-17 19:35:53 +010011296 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011297}
11298
Sourab Gupta84c33a62014-06-02 16:47:17 +053011299static bool use_mmio_flip(struct intel_engine_cs *ring,
11300 struct drm_i915_gem_object *obj)
11301{
11302 /*
11303 * This is not being used for older platforms, because
11304 * non-availability of flip done interrupt forces us to use
11305 * CS flips. Older platforms derive flip done using some clever
11306 * tricks involving the flip_pending status bits and vblank irqs.
11307 * So using MMIO flips there would disrupt this mechanism.
11308 */
11309
Chris Wilson8e09bf82014-07-08 10:40:30 +010011310 if (ring == NULL)
11311 return true;
11312
Sourab Gupta84c33a62014-06-02 16:47:17 +053011313 if (INTEL_INFO(ring->dev)->gen < 5)
11314 return false;
11315
11316 if (i915.use_mmio_flip < 0)
11317 return false;
11318 else if (i915.use_mmio_flip > 0)
11319 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +010011320 else if (i915.enable_execlists)
11321 return true;
Alex Goinsfd8e0582015-11-25 18:43:38 -080011322 else if (obj->base.dma_buf &&
11323 !reservation_object_test_signaled_rcu(obj->base.dma_buf->resv,
11324 false))
11325 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011326 else
Chris Wilsonb4716182015-04-27 13:41:17 +010011327 return ring != i915_gem_request_get_ring(obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011328}
11329
Chris Wilson60426392015-10-10 10:44:32 +010011330static void skl_do_mmio_flip(struct intel_crtc *intel_crtc,
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011331 unsigned int rotation,
Chris Wilson60426392015-10-10 10:44:32 +010011332 struct intel_unpin_work *work)
Damien Lespiauff944562014-11-20 14:58:16 +000011333{
11334 struct drm_device *dev = intel_crtc->base.dev;
11335 struct drm_i915_private *dev_priv = dev->dev_private;
11336 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
Damien Lespiauff944562014-11-20 14:58:16 +000011337 const enum pipe pipe = intel_crtc->pipe;
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011338 u32 ctl, stride, tile_height;
Damien Lespiauff944562014-11-20 14:58:16 +000011339
11340 ctl = I915_READ(PLANE_CTL(pipe, 0));
11341 ctl &= ~PLANE_CTL_TILED_MASK;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011342 switch (fb->modifier[0]) {
11343 case DRM_FORMAT_MOD_NONE:
11344 break;
11345 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauff944562014-11-20 14:58:16 +000011346 ctl |= PLANE_CTL_TILED_X;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011347 break;
11348 case I915_FORMAT_MOD_Y_TILED:
11349 ctl |= PLANE_CTL_TILED_Y;
11350 break;
11351 case I915_FORMAT_MOD_Yf_TILED:
11352 ctl |= PLANE_CTL_TILED_YF;
11353 break;
11354 default:
11355 MISSING_CASE(fb->modifier[0]);
11356 }
Damien Lespiauff944562014-11-20 14:58:16 +000011357
11358 /*
11359 * The stride is either expressed as a multiple of 64 bytes chunks for
11360 * linear buffers or in number of tiles for tiled buffers.
11361 */
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011362 if (intel_rotation_90_or_270(rotation)) {
11363 /* stride = Surface height in tiles */
11364 tile_height = intel_tile_height(dev, fb->pixel_format,
11365 fb->modifier[0], 0);
11366 stride = DIV_ROUND_UP(fb->height, tile_height);
11367 } else {
11368 stride = fb->pitches[0] /
11369 intel_fb_stride_alignment(dev, fb->modifier[0],
11370 fb->pixel_format);
11371 }
Damien Lespiauff944562014-11-20 14:58:16 +000011372
11373 /*
11374 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
11375 * PLANE_SURF updates, the update is then guaranteed to be atomic.
11376 */
11377 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
11378 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
11379
Chris Wilson60426392015-10-10 10:44:32 +010011380 I915_WRITE(PLANE_SURF(pipe, 0), work->gtt_offset);
Damien Lespiauff944562014-11-20 14:58:16 +000011381 POSTING_READ(PLANE_SURF(pipe, 0));
11382}
11383
Chris Wilson60426392015-10-10 10:44:32 +010011384static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc,
11385 struct intel_unpin_work *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011386{
11387 struct drm_device *dev = intel_crtc->base.dev;
11388 struct drm_i915_private *dev_priv = dev->dev_private;
11389 struct intel_framebuffer *intel_fb =
11390 to_intel_framebuffer(intel_crtc->base.primary->fb);
11391 struct drm_i915_gem_object *obj = intel_fb->obj;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020011392 i915_reg_t reg = DSPCNTR(intel_crtc->plane);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011393 u32 dspcntr;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011394
Sourab Gupta84c33a62014-06-02 16:47:17 +053011395 dspcntr = I915_READ(reg);
11396
Damien Lespiauc5d97472014-10-25 00:11:11 +010011397 if (obj->tiling_mode != I915_TILING_NONE)
11398 dspcntr |= DISPPLANE_TILED;
11399 else
11400 dspcntr &= ~DISPPLANE_TILED;
11401
Sourab Gupta84c33a62014-06-02 16:47:17 +053011402 I915_WRITE(reg, dspcntr);
11403
Chris Wilson60426392015-10-10 10:44:32 +010011404 I915_WRITE(DSPSURF(intel_crtc->plane), work->gtt_offset);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011405 POSTING_READ(DSPSURF(intel_crtc->plane));
Damien Lespiauff944562014-11-20 14:58:16 +000011406}
11407
11408/*
11409 * XXX: This is the temporary way to update the plane registers until we get
11410 * around to using the usual plane update functions for MMIO flips
11411 */
Chris Wilson60426392015-10-10 10:44:32 +010011412static void intel_do_mmio_flip(struct intel_mmio_flip *mmio_flip)
Damien Lespiauff944562014-11-20 14:58:16 +000011413{
Chris Wilson60426392015-10-10 10:44:32 +010011414 struct intel_crtc *crtc = mmio_flip->crtc;
11415 struct intel_unpin_work *work;
Damien Lespiauff944562014-11-20 14:58:16 +000011416
Chris Wilson60426392015-10-10 10:44:32 +010011417 spin_lock_irq(&crtc->base.dev->event_lock);
11418 work = crtc->unpin_work;
11419 spin_unlock_irq(&crtc->base.dev->event_lock);
11420 if (work == NULL)
11421 return;
Damien Lespiauff944562014-11-20 14:58:16 +000011422
Chris Wilson60426392015-10-10 10:44:32 +010011423 intel_mark_page_flip_active(work);
Damien Lespiauff944562014-11-20 14:58:16 +000011424
Chris Wilson60426392015-10-10 10:44:32 +010011425 intel_pipe_update_start(crtc);
11426
11427 if (INTEL_INFO(mmio_flip->i915)->gen >= 9)
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011428 skl_do_mmio_flip(crtc, mmio_flip->rotation, work);
Damien Lespiauff944562014-11-20 14:58:16 +000011429 else
11430 /* use_mmio_flip() retricts MMIO flips to ilk+ */
Chris Wilson60426392015-10-10 10:44:32 +010011431 ilk_do_mmio_flip(crtc, work);
Damien Lespiauff944562014-11-20 14:58:16 +000011432
Chris Wilson60426392015-10-10 10:44:32 +010011433 intel_pipe_update_end(crtc);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011434}
11435
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020011436static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011437{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011438 struct intel_mmio_flip *mmio_flip =
11439 container_of(work, struct intel_mmio_flip, work);
Alex Goinsfd8e0582015-11-25 18:43:38 -080011440 struct intel_framebuffer *intel_fb =
11441 to_intel_framebuffer(mmio_flip->crtc->base.primary->fb);
11442 struct drm_i915_gem_object *obj = intel_fb->obj;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011443
Chris Wilson60426392015-10-10 10:44:32 +010011444 if (mmio_flip->req) {
Daniel Vettereed29a52015-05-21 14:21:25 +020011445 WARN_ON(__i915_wait_request(mmio_flip->req,
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011446 mmio_flip->crtc->reset_counter,
Chris Wilsonbcafc4e2015-04-27 13:41:21 +010011447 false, NULL,
11448 &mmio_flip->i915->rps.mmioflips));
Chris Wilson60426392015-10-10 10:44:32 +010011449 i915_gem_request_unreference__unlocked(mmio_flip->req);
11450 }
Sourab Gupta84c33a62014-06-02 16:47:17 +053011451
Alex Goinsfd8e0582015-11-25 18:43:38 -080011452 /* For framebuffer backed by dmabuf, wait for fence */
11453 if (obj->base.dma_buf)
11454 WARN_ON(reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv,
11455 false, false,
11456 MAX_SCHEDULE_TIMEOUT) < 0);
11457
Chris Wilson60426392015-10-10 10:44:32 +010011458 intel_do_mmio_flip(mmio_flip);
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011459 kfree(mmio_flip);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011460}
11461
11462static int intel_queue_mmio_flip(struct drm_device *dev,
11463 struct drm_crtc *crtc,
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011464 struct drm_i915_gem_object *obj)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011465{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011466 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011467
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011468 mmio_flip = kmalloc(sizeof(*mmio_flip), GFP_KERNEL);
11469 if (mmio_flip == NULL)
11470 return -ENOMEM;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011471
Chris Wilsonbcafc4e2015-04-27 13:41:21 +010011472 mmio_flip->i915 = to_i915(dev);
Daniel Vettereed29a52015-05-21 14:21:25 +020011473 mmio_flip->req = i915_gem_request_reference(obj->last_write_req);
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011474 mmio_flip->crtc = to_intel_crtc(crtc);
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011475 mmio_flip->rotation = crtc->primary->state->rotation;
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011476
11477 INIT_WORK(&mmio_flip->work, intel_mmio_flip_work_func);
11478 schedule_work(&mmio_flip->work);
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +020011479
Sourab Gupta84c33a62014-06-02 16:47:17 +053011480 return 0;
11481}
11482
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011483static int intel_default_queue_flip(struct drm_device *dev,
11484 struct drm_crtc *crtc,
11485 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011486 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011487 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011488 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011489{
11490 return -ENODEV;
11491}
11492
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011493static bool __intel_pageflip_stall_check(struct drm_device *dev,
11494 struct drm_crtc *crtc)
11495{
11496 struct drm_i915_private *dev_priv = dev->dev_private;
11497 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11498 struct intel_unpin_work *work = intel_crtc->unpin_work;
11499 u32 addr;
11500
11501 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
11502 return true;
11503
Chris Wilson908565c2015-08-12 13:08:22 +010011504 if (atomic_read(&work->pending) < INTEL_FLIP_PENDING)
11505 return false;
11506
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011507 if (!work->enable_stall_check)
11508 return false;
11509
11510 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +010011511 if (work->flip_queued_req &&
11512 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011513 return false;
11514
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011515 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011516 }
11517
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011518 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011519 return false;
11520
11521 /* Potential stall - if we see that the flip has happened,
11522 * assume a missed interrupt. */
11523 if (INTEL_INFO(dev)->gen >= 4)
11524 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
11525 else
11526 addr = I915_READ(DSPADDR(intel_crtc->plane));
11527
11528 /* There is a potential issue here with a false positive after a flip
11529 * to the same address. We could address this by checking for a
11530 * non-incrementing frame counter.
11531 */
11532 return addr == work->gtt_offset;
11533}
11534
11535void intel_check_page_flip(struct drm_device *dev, int pipe)
11536{
11537 struct drm_i915_private *dev_priv = dev->dev_private;
11538 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11539 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011540 struct intel_unpin_work *work;
Daniel Vetterf3260382014-09-15 14:55:23 +020011541
Dave Gordon6c51d462015-03-06 15:34:26 +000011542 WARN_ON(!in_interrupt());
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011543
11544 if (crtc == NULL)
11545 return;
11546
Daniel Vetterf3260382014-09-15 14:55:23 +020011547 spin_lock(&dev->event_lock);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011548 work = intel_crtc->unpin_work;
11549 if (work != NULL && __intel_pageflip_stall_check(dev, crtc)) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011550 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
Chris Wilson6ad790c2015-04-07 16:20:31 +010011551 work->flip_queued_vblank, drm_vblank_count(dev, pipe));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011552 page_flip_completed(intel_crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011553 work = NULL;
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011554 }
Chris Wilson6ad790c2015-04-07 16:20:31 +010011555 if (work != NULL &&
11556 drm_vblank_count(dev, pipe) - work->flip_queued_vblank > 1)
11557 intel_queue_rps_boost_for_request(dev, work->flip_queued_req);
Daniel Vetterf3260382014-09-15 14:55:23 +020011558 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011559}
11560
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011561static int intel_crtc_page_flip(struct drm_crtc *crtc,
11562 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011563 struct drm_pending_vblank_event *event,
11564 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011565{
11566 struct drm_device *dev = crtc->dev;
11567 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -070011568 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -070011569 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011570 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080011571 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +020011572 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011573 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +010011574 struct intel_engine_cs *ring;
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011575 bool mmio_flip;
John Harrison91af1272015-06-18 13:14:56 +010011576 struct drm_i915_gem_request *request = NULL;
Chris Wilson52e68632010-08-08 10:15:59 +010011577 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011578
Matt Roper2ff8fde2014-07-08 07:50:07 -070011579 /*
11580 * drm_mode_page_flip_ioctl() should already catch this, but double
11581 * check to be safe. In the future we may enable pageflipping from
11582 * a disabled primary plane.
11583 */
11584 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
11585 return -EBUSY;
11586
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011587 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -070011588 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011589 return -EINVAL;
11590
11591 /*
11592 * TILEOFF/LINOFF registers can't be changed via MI display flips.
11593 * Note that pitch changes could also affect these register.
11594 */
11595 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -070011596 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
11597 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011598 return -EINVAL;
11599
Chris Wilsonf900db42014-02-20 09:26:13 +000011600 if (i915_terminally_wedged(&dev_priv->gpu_error))
11601 goto out_hang;
11602
Daniel Vetterb14c5672013-09-19 12:18:32 +020011603 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011604 if (work == NULL)
11605 return -ENOMEM;
11606
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011607 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011608 work->crtc = crtc;
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011609 work->old_fb = old_fb;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011610 INIT_WORK(&work->work, intel_unpin_work_fn);
11611
Daniel Vetter87b6b102014-05-15 15:33:46 +020011612 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011613 if (ret)
11614 goto free_work;
11615
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011616 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011617 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011618 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011619 /* Before declaring the flip queue wedged, check if
11620 * the hardware completed the operation behind our backs.
11621 */
11622 if (__intel_pageflip_stall_check(dev, crtc)) {
11623 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
11624 page_flip_completed(intel_crtc);
11625 } else {
11626 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011627 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +010011628
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011629 drm_crtc_vblank_put(crtc);
11630 kfree(work);
11631 return -EBUSY;
11632 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011633 }
11634 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011635 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011636
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011637 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
11638 flush_workqueue(dev_priv->wq);
11639
Jesse Barnes75dfca82010-02-10 15:09:44 -080011640 /* Reference the objects for the scheduled work. */
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011641 drm_framebuffer_reference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +000011642 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011643
Matt Roperf4510a22014-04-01 15:22:40 -070011644 crtc->primary->fb = fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011645 update_state_fb(crtc->primary);
Matt Roper1ed1f962015-01-30 16:22:36 -080011646
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011647 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011648
Chris Wilson89ed88b2015-02-16 14:31:49 +000011649 ret = i915_mutex_lock_interruptible(dev);
11650 if (ret)
11651 goto cleanup;
11652
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011653 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +020011654 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011655
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011656 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Ville Syrjäläfd8f507c2015-09-18 20:03:42 +030011657 work->flip_count = I915_READ(PIPE_FLIPCOUNT_G4X(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011658
Wayne Boyer666a4532015-12-09 12:29:35 -080011659 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011660 ring = &dev_priv->ring[BCS];
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011661 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
Chris Wilson8e09bf82014-07-08 10:40:30 +010011662 /* vlv: DISPLAY_FLIP fails to change tiling */
11663 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +000011664 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +010011665 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011666 } else if (INTEL_INFO(dev)->gen >= 7) {
Chris Wilsonb4716182015-04-27 13:41:17 +010011667 ring = i915_gem_request_get_ring(obj->last_write_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011668 if (ring == NULL || ring->id != RCS)
11669 ring = &dev_priv->ring[BCS];
11670 } else {
11671 ring = &dev_priv->ring[RCS];
11672 }
11673
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011674 mmio_flip = use_mmio_flip(ring, obj);
11675
11676 /* When using CS flips, we want to emit semaphores between rings.
11677 * However, when using mmio flips we will create a task to do the
11678 * synchronisation, so all we want here is to pin the framebuffer
11679 * into the display plane and skip any waits.
11680 */
Maarten Lankhorst7580d772015-08-18 13:40:06 +020011681 if (!mmio_flip) {
11682 ret = i915_gem_object_sync(obj, ring, &request);
11683 if (ret)
11684 goto cleanup_pending;
11685 }
11686
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011687 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb,
Maarten Lankhorst7580d772015-08-18 13:40:06 +020011688 crtc->primary->state);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011689 if (ret)
11690 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011691
Tvrtko Ursulindedf2782015-09-21 10:45:35 +010011692 work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary),
11693 obj, 0);
11694 work->gtt_offset += intel_crtc->dspaddr_offset;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011695
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011696 if (mmio_flip) {
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011697 ret = intel_queue_mmio_flip(dev, crtc, obj);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011698 if (ret)
11699 goto cleanup_unpin;
11700
John Harrisonf06cc1b2014-11-24 18:49:37 +000011701 i915_gem_request_assign(&work->flip_queued_req,
11702 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011703 } else {
John Harrison6258fbe2015-05-29 17:43:48 +010011704 if (!request) {
11705 ret = i915_gem_request_alloc(ring, ring->default_context, &request);
11706 if (ret)
11707 goto cleanup_unpin;
11708 }
11709
11710 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request,
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011711 page_flip_flags);
11712 if (ret)
11713 goto cleanup_unpin;
11714
John Harrison6258fbe2015-05-29 17:43:48 +010011715 i915_gem_request_assign(&work->flip_queued_req, request);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011716 }
11717
John Harrison91af1272015-06-18 13:14:56 +010011718 if (request)
John Harrison75289872015-05-29 17:43:49 +010011719 i915_add_request_no_flush(request);
John Harrison91af1272015-06-18 13:14:56 +010011720
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011721 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011722 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011723
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011724 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011725 to_intel_plane(primary)->frontbuffer_bit);
Paulo Zanonic80ac852015-07-02 19:25:13 -030011726 mutex_unlock(&dev->struct_mutex);
Daniel Vettera071fa02014-06-18 23:28:09 +020011727
Paulo Zanonid029bca2015-10-15 10:44:46 -030011728 intel_fbc_deactivate(intel_crtc);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011729 intel_frontbuffer_flip_prepare(dev,
11730 to_intel_plane(primary)->frontbuffer_bit);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011731
Jesse Barnese5510fa2010-07-01 16:48:37 -070011732 trace_i915_flip_request(intel_crtc->plane, obj);
11733
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011734 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +010011735
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011736cleanup_unpin:
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011737 intel_unpin_fb_obj(fb, crtc->primary->state);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011738cleanup_pending:
John Harrison91af1272015-06-18 13:14:56 +010011739 if (request)
11740 i915_gem_request_cancel(request);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011741 atomic_dec(&intel_crtc->unpin_work_count);
Chris Wilson89ed88b2015-02-16 14:31:49 +000011742 mutex_unlock(&dev->struct_mutex);
11743cleanup:
Matt Roperf4510a22014-04-01 15:22:40 -070011744 crtc->primary->fb = old_fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011745 update_state_fb(crtc->primary);
Chris Wilson96b099f2010-06-07 14:03:04 +010011746
Chris Wilson89ed88b2015-02-16 14:31:49 +000011747 drm_gem_object_unreference_unlocked(&obj->base);
11748 drm_framebuffer_unreference(work->old_fb);
11749
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011750 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011751 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011752 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011753
Daniel Vetter87b6b102014-05-15 15:33:46 +020011754 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011755free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +010011756 kfree(work);
11757
Chris Wilsonf900db42014-02-20 09:26:13 +000011758 if (ret == -EIO) {
Maarten Lankhorst02e0efb2015-06-12 11:15:40 +020011759 struct drm_atomic_state *state;
11760 struct drm_plane_state *plane_state;
11761
Chris Wilsonf900db42014-02-20 09:26:13 +000011762out_hang:
Maarten Lankhorst02e0efb2015-06-12 11:15:40 +020011763 state = drm_atomic_state_alloc(dev);
11764 if (!state)
11765 return -ENOMEM;
11766 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
11767
11768retry:
11769 plane_state = drm_atomic_get_plane_state(state, primary);
11770 ret = PTR_ERR_OR_ZERO(plane_state);
11771 if (!ret) {
11772 drm_atomic_set_fb_for_plane(plane_state, fb);
11773
11774 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
11775 if (!ret)
11776 ret = drm_atomic_commit(state);
11777 }
11778
11779 if (ret == -EDEADLK) {
11780 drm_modeset_backoff(state->acquire_ctx);
11781 drm_atomic_state_clear(state);
11782 goto retry;
11783 }
11784
11785 if (ret)
11786 drm_atomic_state_free(state);
11787
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011788 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011789 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +020011790 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011791 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011792 }
Chris Wilsonf900db42014-02-20 09:26:13 +000011793 }
Chris Wilson96b099f2010-06-07 14:03:04 +010011794 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011795}
11796
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011797
11798/**
11799 * intel_wm_need_update - Check whether watermarks need updating
11800 * @plane: drm plane
11801 * @state: new plane state
11802 *
11803 * Check current plane state versus the new one to determine whether
11804 * watermarks need to be recalculated.
11805 *
11806 * Returns true or false.
11807 */
11808static bool intel_wm_need_update(struct drm_plane *plane,
11809 struct drm_plane_state *state)
11810{
Matt Roperd21fbe82015-09-24 15:53:12 -070011811 struct intel_plane_state *new = to_intel_plane_state(state);
11812 struct intel_plane_state *cur = to_intel_plane_state(plane->state);
11813
11814 /* Update watermarks on tiling or size changes. */
Maarten Lankhorst92826fc2015-12-03 13:49:13 +010011815 if (new->visible != cur->visible)
11816 return true;
11817
11818 if (!cur->base.fb || !new->base.fb)
11819 return false;
11820
11821 if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] ||
11822 cur->base.rotation != new->base.rotation ||
Matt Roperd21fbe82015-09-24 15:53:12 -070011823 drm_rect_width(&new->src) != drm_rect_width(&cur->src) ||
11824 drm_rect_height(&new->src) != drm_rect_height(&cur->src) ||
11825 drm_rect_width(&new->dst) != drm_rect_width(&cur->dst) ||
11826 drm_rect_height(&new->dst) != drm_rect_height(&cur->dst))
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011827 return true;
11828
11829 return false;
11830}
11831
Matt Roperd21fbe82015-09-24 15:53:12 -070011832static bool needs_scaling(struct intel_plane_state *state)
11833{
11834 int src_w = drm_rect_width(&state->src) >> 16;
11835 int src_h = drm_rect_height(&state->src) >> 16;
11836 int dst_w = drm_rect_width(&state->dst);
11837 int dst_h = drm_rect_height(&state->dst);
11838
11839 return (src_w != dst_w || src_h != dst_h);
11840}
11841
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011842int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
11843 struct drm_plane_state *plane_state)
11844{
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +010011845 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state);
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011846 struct drm_crtc *crtc = crtc_state->crtc;
11847 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11848 struct drm_plane *plane = plane_state->plane;
11849 struct drm_device *dev = crtc->dev;
11850 struct drm_i915_private *dev_priv = dev->dev_private;
11851 struct intel_plane_state *old_plane_state =
11852 to_intel_plane_state(plane->state);
11853 int idx = intel_crtc->base.base.id, ret;
11854 int i = drm_plane_index(plane);
11855 bool mode_changed = needs_modeset(crtc_state);
11856 bool was_crtc_enabled = crtc->state->active;
11857 bool is_crtc_enabled = crtc_state->active;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011858 bool turn_off, turn_on, visible, was_visible;
11859 struct drm_framebuffer *fb = plane_state->fb;
11860
11861 if (crtc_state && INTEL_INFO(dev)->gen >= 9 &&
11862 plane->type != DRM_PLANE_TYPE_CURSOR) {
11863 ret = skl_update_scaler_plane(
11864 to_intel_crtc_state(crtc_state),
11865 to_intel_plane_state(plane_state));
11866 if (ret)
11867 return ret;
11868 }
11869
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011870 was_visible = old_plane_state->visible;
11871 visible = to_intel_plane_state(plane_state)->visible;
11872
11873 if (!was_crtc_enabled && WARN_ON(was_visible))
11874 was_visible = false;
11875
Maarten Lankhorst35c08f42015-12-03 14:31:07 +010011876 /*
11877 * Visibility is calculated as if the crtc was on, but
11878 * after scaler setup everything depends on it being off
11879 * when the crtc isn't active.
11880 */
11881 if (!is_crtc_enabled)
11882 to_intel_plane_state(plane_state)->visible = visible = false;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011883
11884 if (!was_visible && !visible)
11885 return 0;
11886
11887 turn_off = was_visible && (!visible || mode_changed);
11888 turn_on = visible && (!was_visible || mode_changed);
11889
11890 DRM_DEBUG_ATOMIC("[CRTC:%i] has [PLANE:%i] with fb %i\n", idx,
11891 plane->base.id, fb ? fb->base.id : -1);
11892
11893 DRM_DEBUG_ATOMIC("[PLANE:%i] visible %i -> %i, off %i, on %i, ms %i\n",
11894 plane->base.id, was_visible, visible,
11895 turn_off, turn_on, mode_changed);
11896
Maarten Lankhorst92826fc2015-12-03 13:49:13 +010011897 if (turn_on || turn_off) {
11898 pipe_config->wm_changed = true;
11899
Ville Syrjälä852eb002015-06-24 22:00:07 +030011900 /* must disable cxsr around plane enable/disable */
11901 if (plane->type != DRM_PLANE_TYPE_CURSOR) {
11902 if (is_crtc_enabled)
11903 intel_crtc->atomic.wait_vblank = true;
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +010011904 pipe_config->disable_cxsr = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +030011905 }
11906 } else if (intel_wm_need_update(plane, plane_state)) {
Maarten Lankhorst92826fc2015-12-03 13:49:13 +010011907 pipe_config->wm_changed = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +030011908 }
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011909
Rodrigo Vivi8be6ca82015-08-24 16:38:23 -070011910 if (visible || was_visible)
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011911 intel_crtc->atomic.fb_bits |=
11912 to_intel_plane(plane)->frontbuffer_bit;
11913
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011914 switch (plane->type) {
11915 case DRM_PLANE_TYPE_PRIMARY:
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011916 intel_crtc->atomic.pre_disable_primary = turn_off;
11917 intel_crtc->atomic.post_enable_primary = turn_on;
11918
Rodrigo Vivi066cf552015-06-26 13:55:54 -070011919 if (turn_off) {
11920 /*
11921 * FIXME: Actually if we will still have any other
11922 * plane enabled on the pipe we could let IPS enabled
11923 * still, but for now lets consider that when we make
11924 * primary invisible by setting DSPCNTR to 0 on
11925 * update_primary_plane function IPS needs to be
11926 * disable.
11927 */
11928 intel_crtc->atomic.disable_ips = true;
11929
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011930 intel_crtc->atomic.disable_fbc = true;
Rodrigo Vivi066cf552015-06-26 13:55:54 -070011931 }
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011932
11933 /*
11934 * FBC does not work on some platforms for rotated
11935 * planes, so disable it when rotation is not 0 and
11936 * update it when rotation is set back to 0.
11937 *
11938 * FIXME: This is redundant with the fbc update done in
11939 * the primary plane enable function except that that
11940 * one is done too late. We eventually need to unify
11941 * this.
11942 */
11943
11944 if (visible &&
11945 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11946 dev_priv->fbc.crtc == intel_crtc &&
11947 plane_state->rotation != BIT(DRM_ROTATE_0))
11948 intel_crtc->atomic.disable_fbc = true;
11949
11950 /*
11951 * BDW signals flip done immediately if the plane
11952 * is disabled, even if the plane enable is already
11953 * armed to occur at the next vblank :(
11954 */
11955 if (turn_on && IS_BROADWELL(dev))
11956 intel_crtc->atomic.wait_vblank = true;
11957
11958 intel_crtc->atomic.update_fbc |= visible || mode_changed;
11959 break;
11960 case DRM_PLANE_TYPE_CURSOR:
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011961 break;
11962 case DRM_PLANE_TYPE_OVERLAY:
Matt Roperd21fbe82015-09-24 15:53:12 -070011963 /*
11964 * WaCxSRDisabledForSpriteScaling:ivb
11965 *
11966 * cstate->update_wm was already set above, so this flag will
11967 * take effect when we commit and program watermarks.
11968 */
11969 if (IS_IVYBRIDGE(dev) &&
11970 needs_scaling(to_intel_plane_state(plane_state)) &&
11971 !needs_scaling(old_plane_state)) {
11972 to_intel_crtc_state(crtc_state)->disable_lp_wm = true;
11973 } else if (turn_off && !mode_changed) {
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011974 intel_crtc->atomic.wait_vblank = true;
11975 intel_crtc->atomic.update_sprite_watermarks |=
11976 1 << i;
11977 }
Matt Roperd21fbe82015-09-24 15:53:12 -070011978
11979 break;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011980 }
11981 return 0;
11982}
11983
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011984static bool encoders_cloneable(const struct intel_encoder *a,
11985 const struct intel_encoder *b)
11986{
11987 /* masks could be asymmetric, so check both ways */
11988 return a == b || (a->cloneable & (1 << b->type) &&
11989 b->cloneable & (1 << a->type));
11990}
11991
11992static bool check_single_encoder_cloning(struct drm_atomic_state *state,
11993 struct intel_crtc *crtc,
11994 struct intel_encoder *encoder)
11995{
11996 struct intel_encoder *source_encoder;
11997 struct drm_connector *connector;
11998 struct drm_connector_state *connector_state;
11999 int i;
12000
12001 for_each_connector_in_state(state, connector, connector_state, i) {
12002 if (connector_state->crtc != &crtc->base)
12003 continue;
12004
12005 source_encoder =
12006 to_intel_encoder(connector_state->best_encoder);
12007 if (!encoders_cloneable(encoder, source_encoder))
12008 return false;
12009 }
12010
12011 return true;
12012}
12013
12014static bool check_encoder_cloning(struct drm_atomic_state *state,
12015 struct intel_crtc *crtc)
12016{
12017 struct intel_encoder *encoder;
12018 struct drm_connector *connector;
12019 struct drm_connector_state *connector_state;
12020 int i;
12021
12022 for_each_connector_in_state(state, connector, connector_state, i) {
12023 if (connector_state->crtc != &crtc->base)
12024 continue;
12025
12026 encoder = to_intel_encoder(connector_state->best_encoder);
12027 if (!check_single_encoder_cloning(state, crtc, encoder))
12028 return false;
12029 }
12030
12031 return true;
12032}
12033
12034static int intel_crtc_atomic_check(struct drm_crtc *crtc,
12035 struct drm_crtc_state *crtc_state)
12036{
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +020012037 struct drm_device *dev = crtc->dev;
Maarten Lankhorstad421372015-06-15 12:33:42 +020012038 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012039 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +020012040 struct intel_crtc_state *pipe_config =
12041 to_intel_crtc_state(crtc_state);
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012042 struct drm_atomic_state *state = crtc_state->state;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012043 int ret;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012044 bool mode_changed = needs_modeset(crtc_state);
12045
12046 if (mode_changed && !check_encoder_cloning(state, intel_crtc)) {
12047 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
12048 return -EINVAL;
12049 }
12050
Ville Syrjälä852eb002015-06-24 22:00:07 +030012051 if (mode_changed && !crtc_state->active)
Maarten Lankhorst92826fc2015-12-03 13:49:13 +010012052 pipe_config->wm_changed = true;
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +020012053
Maarten Lankhorstad421372015-06-15 12:33:42 +020012054 if (mode_changed && crtc_state->enable &&
12055 dev_priv->display.crtc_compute_clock &&
12056 !WARN_ON(pipe_config->shared_dpll != DPLL_ID_PRIVATE)) {
12057 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
12058 pipe_config);
12059 if (ret)
12060 return ret;
12061 }
12062
Maarten Lankhorste435d6e2015-07-13 16:30:15 +020012063 ret = 0;
Matt Roper86c8bbb2015-09-24 15:53:16 -070012064 if (dev_priv->display.compute_pipe_wm) {
12065 ret = dev_priv->display.compute_pipe_wm(intel_crtc, state);
12066 if (ret)
12067 return ret;
12068 }
12069
Maarten Lankhorste435d6e2015-07-13 16:30:15 +020012070 if (INTEL_INFO(dev)->gen >= 9) {
12071 if (mode_changed)
12072 ret = skl_update_scaler_crtc(pipe_config);
12073
12074 if (!ret)
12075 ret = intel_atomic_setup_scalers(dev, intel_crtc,
12076 pipe_config);
12077 }
12078
12079 return ret;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012080}
12081
Jani Nikula65b38e02015-04-13 11:26:56 +030012082static const struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010012083 .mode_set_base_atomic = intel_pipe_set_base_atomic,
12084 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -080012085 .atomic_begin = intel_begin_crtc_commit,
12086 .atomic_flush = intel_finish_crtc_commit,
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012087 .atomic_check = intel_crtc_atomic_check,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010012088};
12089
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020012090static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
12091{
12092 struct intel_connector *connector;
12093
12094 for_each_intel_connector(dev, connector) {
12095 if (connector->base.encoder) {
12096 connector->base.state->best_encoder =
12097 connector->base.encoder;
12098 connector->base.state->crtc =
12099 connector->base.encoder->crtc;
12100 } else {
12101 connector->base.state->best_encoder = NULL;
12102 connector->base.state->crtc = NULL;
12103 }
12104 }
12105}
12106
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012107static void
Robin Schroereba905b2014-05-18 02:24:50 +020012108connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012109 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012110{
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012111 int bpp = pipe_config->pipe_bpp;
12112
12113 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
12114 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030012115 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012116
12117 /* Don't use an invalid EDID bpc value */
12118 if (connector->base.display_info.bpc &&
12119 connector->base.display_info.bpc * 3 < bpp) {
12120 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
12121 bpp, connector->base.display_info.bpc*3);
12122 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
12123 }
12124
12125 /* Clamp bpp to 8 on screens without EDID 1.4 */
12126 if (connector->base.display_info.bpc == 0 && bpp > 24) {
12127 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
12128 bpp);
12129 pipe_config->pipe_bpp = 24;
12130 }
12131}
12132
12133static int
12134compute_baseline_pipe_bpp(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012135 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012136{
12137 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012138 struct drm_atomic_state *state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012139 struct drm_connector *connector;
12140 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012141 int bpp, i;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012142
Wayne Boyer666a4532015-12-09 12:29:35 -080012143 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)))
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012144 bpp = 10*3;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012145 else if (INTEL_INFO(dev)->gen >= 5)
12146 bpp = 12*3;
12147 else
12148 bpp = 8*3;
12149
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012150
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012151 pipe_config->pipe_bpp = bpp;
12152
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012153 state = pipe_config->base.state;
12154
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012155 /* Clamp display bpp to EDID value */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012156 for_each_connector_in_state(state, connector, connector_state, i) {
12157 if (connector_state->crtc != &crtc->base)
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012158 continue;
12159
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012160 connected_sink_compute_bpp(to_intel_connector(connector),
12161 pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012162 }
12163
12164 return bpp;
12165}
12166
Daniel Vetter644db712013-09-19 14:53:58 +020012167static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
12168{
12169 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
12170 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010012171 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020012172 mode->crtc_hdisplay, mode->crtc_hsync_start,
12173 mode->crtc_hsync_end, mode->crtc_htotal,
12174 mode->crtc_vdisplay, mode->crtc_vsync_start,
12175 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
12176}
12177
Daniel Vetterc0b03412013-05-28 12:05:54 +020012178static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012179 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020012180 const char *context)
12181{
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012182 struct drm_device *dev = crtc->base.dev;
12183 struct drm_plane *plane;
12184 struct intel_plane *intel_plane;
12185 struct intel_plane_state *state;
12186 struct drm_framebuffer *fb;
12187
12188 DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id,
12189 context, pipe_config, pipe_name(crtc->pipe));
Daniel Vetterc0b03412013-05-28 12:05:54 +020012190
12191 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
12192 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
12193 pipe_config->pipe_bpp, pipe_config->dither);
12194 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
12195 pipe_config->has_pch_encoder,
12196 pipe_config->fdi_lanes,
12197 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
12198 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
12199 pipe_config->fdi_m_n.tu);
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012200 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 +030012201 pipe_config->has_dp_encoder,
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012202 pipe_config->lane_count,
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012203 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
12204 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
12205 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012206
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012207 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 -070012208 pipe_config->has_dp_encoder,
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012209 pipe_config->lane_count,
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012210 pipe_config->dp_m2_n2.gmch_m,
12211 pipe_config->dp_m2_n2.gmch_n,
12212 pipe_config->dp_m2_n2.link_m,
12213 pipe_config->dp_m2_n2.link_n,
12214 pipe_config->dp_m2_n2.tu);
12215
Daniel Vetter55072d12014-11-20 16:10:28 +010012216 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
12217 pipe_config->has_audio,
12218 pipe_config->has_infoframe);
12219
Daniel Vetterc0b03412013-05-28 12:05:54 +020012220 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012221 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012222 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012223 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
12224 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030012225 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030012226 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
12227 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Tvrtko Ursulin0ec463d2015-05-13 16:51:08 +010012228 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
12229 crtc->num_scalers,
12230 pipe_config->scaler_state.scaler_users,
12231 pipe_config->scaler_state.scaler_id);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012232 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
12233 pipe_config->gmch_pfit.control,
12234 pipe_config->gmch_pfit.pgm_ratios,
12235 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010012236 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020012237 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010012238 pipe_config->pch_pfit.size,
12239 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030012240 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030012241 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012242
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012243 if (IS_BROXTON(dev)) {
Imre Deak05712c12015-06-18 17:25:54 +030012244 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012245 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
Imre Deakc8453332015-06-18 17:25:55 +030012246 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012247 pipe_config->ddi_pll_sel,
12248 pipe_config->dpll_hw_state.ebb0,
Imre Deak05712c12015-06-18 17:25:54 +030012249 pipe_config->dpll_hw_state.ebb4,
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012250 pipe_config->dpll_hw_state.pll0,
12251 pipe_config->dpll_hw_state.pll1,
12252 pipe_config->dpll_hw_state.pll2,
12253 pipe_config->dpll_hw_state.pll3,
12254 pipe_config->dpll_hw_state.pll6,
12255 pipe_config->dpll_hw_state.pll8,
Imre Deak05712c12015-06-18 17:25:54 +030012256 pipe_config->dpll_hw_state.pll9,
Imre Deakc8453332015-06-18 17:25:55 +030012257 pipe_config->dpll_hw_state.pll10,
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012258 pipe_config->dpll_hw_state.pcsdw12);
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070012259 } else if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012260 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: "
12261 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
12262 pipe_config->ddi_pll_sel,
12263 pipe_config->dpll_hw_state.ctrl1,
12264 pipe_config->dpll_hw_state.cfgcr1,
12265 pipe_config->dpll_hw_state.cfgcr2);
12266 } else if (HAS_DDI(dev)) {
Maarten Lankhorst00490c22015-11-16 14:42:12 +010012267 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: wrpll: 0x%x spll: 0x%x\n",
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012268 pipe_config->ddi_pll_sel,
Maarten Lankhorst00490c22015-11-16 14:42:12 +010012269 pipe_config->dpll_hw_state.wrpll,
12270 pipe_config->dpll_hw_state.spll);
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012271 } else {
12272 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
12273 "fp0: 0x%x, fp1: 0x%x\n",
12274 pipe_config->dpll_hw_state.dpll,
12275 pipe_config->dpll_hw_state.dpll_md,
12276 pipe_config->dpll_hw_state.fp0,
12277 pipe_config->dpll_hw_state.fp1);
12278 }
12279
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012280 DRM_DEBUG_KMS("planes on this crtc\n");
12281 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
12282 intel_plane = to_intel_plane(plane);
12283 if (intel_plane->pipe != crtc->pipe)
12284 continue;
12285
12286 state = to_intel_plane_state(plane->state);
12287 fb = state->base.fb;
12288 if (!fb) {
12289 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d "
12290 "disabled, scaler_id = %d\n",
12291 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12292 plane->base.id, intel_plane->pipe,
12293 (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1,
12294 drm_plane_index(plane), state->scaler_id);
12295 continue;
12296 }
12297
12298 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled",
12299 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12300 plane->base.id, intel_plane->pipe,
12301 crtc->base.primary == plane ? 0 : intel_plane->plane + 1,
12302 drm_plane_index(plane));
12303 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x",
12304 fb->base.id, fb->width, fb->height, fb->pixel_format);
12305 DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n",
12306 state->scaler_id,
12307 state->src.x1 >> 16, state->src.y1 >> 16,
12308 drm_rect_width(&state->src) >> 16,
12309 drm_rect_height(&state->src) >> 16,
12310 state->dst.x1, state->dst.y1,
12311 drm_rect_width(&state->dst), drm_rect_height(&state->dst));
12312 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020012313}
12314
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012315static bool check_digital_port_conflicts(struct drm_atomic_state *state)
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012316{
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012317 struct drm_device *dev = state->dev;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012318 struct drm_connector *connector;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012319 unsigned int used_ports = 0;
12320
12321 /*
12322 * Walk the connector list instead of the encoder
12323 * list to detect the problem on ddi platforms
12324 * where there's just one encoder per digital port.
12325 */
Ville Syrjälä0bff4852015-12-10 18:22:31 +020012326 drm_for_each_connector(connector, dev) {
12327 struct drm_connector_state *connector_state;
12328 struct intel_encoder *encoder;
12329
12330 connector_state = drm_atomic_get_existing_connector_state(state, connector);
12331 if (!connector_state)
12332 connector_state = connector->state;
12333
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012334 if (!connector_state->best_encoder)
12335 continue;
12336
12337 encoder = to_intel_encoder(connector_state->best_encoder);
12338
12339 WARN_ON(!connector_state->crtc);
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012340
12341 switch (encoder->type) {
12342 unsigned int port_mask;
12343 case INTEL_OUTPUT_UNKNOWN:
12344 if (WARN_ON(!HAS_DDI(dev)))
12345 break;
12346 case INTEL_OUTPUT_DISPLAYPORT:
12347 case INTEL_OUTPUT_HDMI:
12348 case INTEL_OUTPUT_EDP:
12349 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
12350
12351 /* the same port mustn't appear more than once */
12352 if (used_ports & port_mask)
12353 return false;
12354
12355 used_ports |= port_mask;
12356 default:
12357 break;
12358 }
12359 }
12360
12361 return true;
12362}
12363
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012364static void
12365clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12366{
12367 struct drm_crtc_state tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012368 struct intel_crtc_scaler_state scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012369 struct intel_dpll_hw_state dpll_hw_state;
12370 enum intel_dpll_id shared_dpll;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012371 uint32_t ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012372 bool force_thru;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012373
Ander Conselvan de Oliveira7546a382015-05-20 09:03:27 +030012374 /* FIXME: before the switch to atomic started, a new pipe_config was
12375 * kzalloc'd. Code that depends on any field being zero should be
12376 * fixed, so that the crtc_state can be safely duplicated. For now,
12377 * only fields that are know to not cause problems are preserved. */
12378
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012379 tmp_state = crtc_state->base;
Chandra Konduru663a3642015-04-07 15:28:41 -070012380 scaler_state = crtc_state->scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012381 shared_dpll = crtc_state->shared_dpll;
12382 dpll_hw_state = crtc_state->dpll_hw_state;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012383 ddi_pll_sel = crtc_state->ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012384 force_thru = crtc_state->pch_pfit.force_thru;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012385
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012386 memset(crtc_state, 0, sizeof *crtc_state);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012387
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012388 crtc_state->base = tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012389 crtc_state->scaler_state = scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012390 crtc_state->shared_dpll = shared_dpll;
12391 crtc_state->dpll_hw_state = dpll_hw_state;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012392 crtc_state->ddi_pll_sel = ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012393 crtc_state->pch_pfit.force_thru = force_thru;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012394}
12395
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012396static int
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012397intel_modeset_pipe_config(struct drm_crtc *crtc,
Maarten Lankhorstb3592832015-06-15 12:33:38 +020012398 struct intel_crtc_state *pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020012399{
Maarten Lankhorstb3592832015-06-15 12:33:38 +020012400 struct drm_atomic_state *state = pipe_config->base.state;
Daniel Vetter7758a112012-07-08 19:40:39 +020012401 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012402 struct drm_connector *connector;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012403 struct drm_connector_state *connector_state;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012404 int base_bpp, ret = -EINVAL;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012405 int i;
Daniel Vettere29c22c2013-02-21 00:00:16 +010012406 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020012407
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012408 clear_intel_crtc_state(pipe_config);
Daniel Vetter7758a112012-07-08 19:40:39 +020012409
Daniel Vettere143a212013-07-04 12:01:15 +020012410 pipe_config->cpu_transcoder =
12411 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012412
Imre Deak2960bc92013-07-30 13:36:32 +030012413 /*
12414 * Sanitize sync polarity flags based on requested ones. If neither
12415 * positive or negative polarity is requested, treat this as meaning
12416 * negative polarity.
12417 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012418 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012419 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012420 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012421
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012422 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012423 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012424 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012425
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012426 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
12427 pipe_config);
12428 if (base_bpp < 0)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012429 goto fail;
12430
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012431 /*
12432 * Determine the real pipe dimensions. Note that stereo modes can
12433 * increase the actual pipe size due to the frame doubling and
12434 * insertion of additional space for blanks between the frame. This
12435 * is stored in the crtc timings. We use the requested mode to do this
12436 * computation to clearly distinguish it from the adjusted mode, which
12437 * can be changed by the connectors in the below retry loop.
12438 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012439 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080012440 &pipe_config->pipe_src_w,
12441 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012442
Daniel Vettere29c22c2013-02-21 00:00:16 +010012443encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020012444 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020012445 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020012446 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020012447
Daniel Vetter135c81b2013-07-21 21:37:09 +020012448 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012449 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
12450 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020012451
Daniel Vetter7758a112012-07-08 19:40:39 +020012452 /* Pass our mode to the connectors and the CRTC to give them a chance to
12453 * adjust it according to limitations or connector properties, and also
12454 * a chance to reject the mode entirely.
12455 */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012456 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012457 if (connector_state->crtc != crtc)
12458 continue;
12459
12460 encoder = to_intel_encoder(connector_state->best_encoder);
12461
Daniel Vetterefea6e82013-07-21 21:36:59 +020012462 if (!(encoder->compute_config(encoder, pipe_config))) {
12463 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020012464 goto fail;
12465 }
12466 }
12467
Daniel Vetterff9a6752013-06-01 17:16:21 +020012468 /* Set default port clock if not overwritten by the encoder. Needs to be
12469 * done afterwards in case the encoder adjusts the mode. */
12470 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012471 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010012472 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020012473
Daniel Vettera43f6e02013-06-07 23:10:32 +020012474 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010012475 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020012476 DRM_DEBUG_KMS("CRTC fixup failed\n");
12477 goto fail;
12478 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010012479
12480 if (ret == RETRY) {
12481 if (WARN(!retry, "loop in pipe configuration computation\n")) {
12482 ret = -EINVAL;
12483 goto fail;
12484 }
12485
12486 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
12487 retry = false;
12488 goto encoder_retry;
12489 }
12490
Daniel Vettere8fa4272015-08-12 11:43:34 +020012491 /* Dithering seems to not pass-through bits correctly when it should, so
12492 * only enable it on 6bpc panels. */
12493 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
Daniel Vetter62f0ace2015-08-26 18:57:26 +020012494 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012495 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012496
Daniel Vetter7758a112012-07-08 19:40:39 +020012497fail:
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012498 return ret;
Daniel Vetter7758a112012-07-08 19:40:39 +020012499}
12500
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012501static void
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020012502intel_modeset_update_crtc_state(struct drm_atomic_state *state)
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012503{
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012504 struct drm_crtc *crtc;
12505 struct drm_crtc_state *crtc_state;
Maarten Lankhorst8a75d152015-07-13 16:30:14 +020012506 int i;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012507
Ville Syrjälä76688512014-01-10 11:28:06 +020012508 /* Double check state. */
Maarten Lankhorst8a75d152015-07-13 16:30:14 +020012509 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst3cb480b2015-06-01 12:49:49 +020012510 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +020012511
12512 /* Update hwmode for vblank functions */
12513 if (crtc->state->active)
12514 crtc->hwmode = crtc->state->adjusted_mode;
12515 else
12516 crtc->hwmode.crtc_clock = 0;
Maarten Lankhorst61067a52015-09-23 16:29:36 +020012517
12518 /*
12519 * Update legacy state to satisfy fbc code. This can
12520 * be removed when fbc uses the atomic state.
12521 */
12522 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
12523 struct drm_plane_state *plane_state = crtc->primary->state;
12524
12525 crtc->primary->fb = plane_state->fb;
12526 crtc->x = plane_state->src_x >> 16;
12527 crtc->y = plane_state->src_y >> 16;
12528 }
Daniel Vetterea9d7582012-07-10 10:42:52 +020012529 }
Daniel Vetterea9d7582012-07-10 10:42:52 +020012530}
12531
Ville Syrjälä3bd26262013-09-06 23:29:02 +030012532static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030012533{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030012534 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030012535
12536 if (clock1 == clock2)
12537 return true;
12538
12539 if (!clock1 || !clock2)
12540 return false;
12541
12542 diff = abs(clock1 - clock2);
12543
12544 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
12545 return true;
12546
12547 return false;
12548}
12549
Daniel Vetter25c5b262012-07-08 22:08:04 +020012550#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
12551 list_for_each_entry((intel_crtc), \
12552 &(dev)->mode_config.crtc_list, \
12553 base.head) \
Jani Nikula95150bd2015-11-24 21:21:56 +020012554 for_each_if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020012555
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012556static bool
12557intel_compare_m_n(unsigned int m, unsigned int n,
12558 unsigned int m2, unsigned int n2,
12559 bool exact)
12560{
12561 if (m == m2 && n == n2)
12562 return true;
12563
12564 if (exact || !m || !n || !m2 || !n2)
12565 return false;
12566
12567 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
12568
12569 if (m > m2) {
12570 while (m > m2) {
12571 m2 <<= 1;
12572 n2 <<= 1;
12573 }
12574 } else if (m < m2) {
12575 while (m < m2) {
12576 m <<= 1;
12577 n <<= 1;
12578 }
12579 }
12580
12581 return m == m2 && n == n2;
12582}
12583
12584static bool
12585intel_compare_link_m_n(const struct intel_link_m_n *m_n,
12586 struct intel_link_m_n *m2_n2,
12587 bool adjust)
12588{
12589 if (m_n->tu == m2_n2->tu &&
12590 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
12591 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
12592 intel_compare_m_n(m_n->link_m, m_n->link_n,
12593 m2_n2->link_m, m2_n2->link_n, !adjust)) {
12594 if (adjust)
12595 *m2_n2 = *m_n;
12596
12597 return true;
12598 }
12599
12600 return false;
12601}
12602
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012603static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020012604intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012605 struct intel_crtc_state *current_config,
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012606 struct intel_crtc_state *pipe_config,
12607 bool adjust)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012608{
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012609 bool ret = true;
12610
12611#define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
12612 do { \
12613 if (!adjust) \
12614 DRM_ERROR(fmt, ##__VA_ARGS__); \
12615 else \
12616 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
12617 } while (0)
12618
Daniel Vetter66e985c2013-06-05 13:34:20 +020012619#define PIPE_CONF_CHECK_X(name) \
12620 if (current_config->name != pipe_config->name) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012621 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Daniel Vetter66e985c2013-06-05 13:34:20 +020012622 "(expected 0x%08x, found 0x%08x)\n", \
12623 current_config->name, \
12624 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012625 ret = false; \
Daniel Vetter66e985c2013-06-05 13:34:20 +020012626 }
12627
Daniel Vetter08a24032013-04-19 11:25:34 +020012628#define PIPE_CONF_CHECK_I(name) \
12629 if (current_config->name != pipe_config->name) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012630 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Daniel Vetter08a24032013-04-19 11:25:34 +020012631 "(expected %i, found %i)\n", \
12632 current_config->name, \
12633 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012634 ret = false; \
12635 }
12636
12637#define PIPE_CONF_CHECK_M_N(name) \
12638 if (!intel_compare_link_m_n(&current_config->name, \
12639 &pipe_config->name,\
12640 adjust)) { \
12641 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12642 "(expected tu %i gmch %i/%i link %i/%i, " \
12643 "found tu %i, gmch %i/%i link %i/%i)\n", \
12644 current_config->name.tu, \
12645 current_config->name.gmch_m, \
12646 current_config->name.gmch_n, \
12647 current_config->name.link_m, \
12648 current_config->name.link_n, \
12649 pipe_config->name.tu, \
12650 pipe_config->name.gmch_m, \
12651 pipe_config->name.gmch_n, \
12652 pipe_config->name.link_m, \
12653 pipe_config->name.link_n); \
12654 ret = false; \
12655 }
12656
12657#define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
12658 if (!intel_compare_link_m_n(&current_config->name, \
12659 &pipe_config->name, adjust) && \
12660 !intel_compare_link_m_n(&current_config->alt_name, \
12661 &pipe_config->name, adjust)) { \
12662 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12663 "(expected tu %i gmch %i/%i link %i/%i, " \
12664 "or tu %i gmch %i/%i link %i/%i, " \
12665 "found tu %i, gmch %i/%i link %i/%i)\n", \
12666 current_config->name.tu, \
12667 current_config->name.gmch_m, \
12668 current_config->name.gmch_n, \
12669 current_config->name.link_m, \
12670 current_config->name.link_n, \
12671 current_config->alt_name.tu, \
12672 current_config->alt_name.gmch_m, \
12673 current_config->alt_name.gmch_n, \
12674 current_config->alt_name.link_m, \
12675 current_config->alt_name.link_n, \
12676 pipe_config->name.tu, \
12677 pipe_config->name.gmch_m, \
12678 pipe_config->name.gmch_n, \
12679 pipe_config->name.link_m, \
12680 pipe_config->name.link_n); \
12681 ret = false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010012682 }
12683
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012684/* This is required for BDW+ where there is only one set of registers for
12685 * switching between high and low RR.
12686 * This macro can be used whenever a comparison has to be made between one
12687 * hw state and multiple sw state variables.
12688 */
12689#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
12690 if ((current_config->name != pipe_config->name) && \
12691 (current_config->alt_name != pipe_config->name)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012692 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012693 "(expected %i or %i, found %i)\n", \
12694 current_config->name, \
12695 current_config->alt_name, \
12696 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012697 ret = false; \
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012698 }
12699
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012700#define PIPE_CONF_CHECK_FLAGS(name, mask) \
12701 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012702 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012703 "(expected %i, found %i)\n", \
12704 current_config->name & (mask), \
12705 pipe_config->name & (mask)); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012706 ret = false; \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012707 }
12708
Ville Syrjälä5e550652013-09-06 23:29:07 +030012709#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
12710 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012711 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Ville Syrjälä5e550652013-09-06 23:29:07 +030012712 "(expected %i, found %i)\n", \
12713 current_config->name, \
12714 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012715 ret = false; \
Ville Syrjälä5e550652013-09-06 23:29:07 +030012716 }
12717
Daniel Vetterbb760062013-06-06 14:55:52 +020012718#define PIPE_CONF_QUIRK(quirk) \
12719 ((current_config->quirks | pipe_config->quirks) & (quirk))
12720
Daniel Vettereccb1402013-05-22 00:50:22 +020012721 PIPE_CONF_CHECK_I(cpu_transcoder);
12722
Daniel Vetter08a24032013-04-19 11:25:34 +020012723 PIPE_CONF_CHECK_I(has_pch_encoder);
12724 PIPE_CONF_CHECK_I(fdi_lanes);
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012725 PIPE_CONF_CHECK_M_N(fdi_m_n);
Daniel Vetter08a24032013-04-19 11:25:34 +020012726
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012727 PIPE_CONF_CHECK_I(has_dp_encoder);
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012728 PIPE_CONF_CHECK_I(lane_count);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012729
12730 if (INTEL_INFO(dev)->gen < 8) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012731 PIPE_CONF_CHECK_M_N(dp_m_n);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012732
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012733 if (current_config->has_drrs)
12734 PIPE_CONF_CHECK_M_N(dp_m2_n2);
12735 } else
12736 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012737
Jani Nikulaa65347b2015-11-27 12:21:46 +020012738 PIPE_CONF_CHECK_I(has_dsi_encoder);
12739
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012740 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
12741 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
12742 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
12743 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
12744 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
12745 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012746
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012747 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
12748 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
12749 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
12750 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
12751 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
12752 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012753
Daniel Vetterc93f54c2013-06-27 19:47:19 +020012754 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b52014-04-24 23:54:47 +020012755 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020012756 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
Wayne Boyer666a4532015-12-09 12:29:35 -080012757 IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020012758 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080012759 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020012760
Daniel Vetter9ed109a2014-04-24 23:54:52 +020012761 PIPE_CONF_CHECK_I(has_audio);
12762
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012763 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012764 DRM_MODE_FLAG_INTERLACE);
12765
Daniel Vetterbb760062013-06-06 14:55:52 +020012766 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012767 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012768 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012769 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012770 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012771 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012772 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012773 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012774 DRM_MODE_FLAG_NVSYNC);
12775 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070012776
Ville Syrjälä333b8ca2015-09-03 21:50:16 +030012777 PIPE_CONF_CHECK_X(gmch_pfit.control);
Daniel Vettere2ff2d42015-07-15 14:15:50 +020012778 /* pfit ratios are autocomputed by the hw on gen4+ */
12779 if (INTEL_INFO(dev)->gen < 4)
12780 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
Ville Syrjälä333b8ca2015-09-03 21:50:16 +030012781 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
Daniel Vetter99535992014-04-13 12:00:33 +020012782
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020012783 if (!adjust) {
12784 PIPE_CONF_CHECK_I(pipe_src_w);
12785 PIPE_CONF_CHECK_I(pipe_src_h);
12786
12787 PIPE_CONF_CHECK_I(pch_pfit.enabled);
12788 if (current_config->pch_pfit.enabled) {
12789 PIPE_CONF_CHECK_X(pch_pfit.pos);
12790 PIPE_CONF_CHECK_X(pch_pfit.size);
12791 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020012792
Maarten Lankhorst7aefe2b2015-09-14 11:30:10 +020012793 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
12794 }
Chandra Kondurua1b22782015-04-07 15:28:45 -070012795
Jesse Barnese59150d2014-01-07 13:30:45 -080012796 /* BDW+ don't expose a synchronous way to read the state */
12797 if (IS_HASWELL(dev))
12798 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030012799
Ville Syrjälä282740f2013-09-04 18:30:03 +030012800 PIPE_CONF_CHECK_I(double_wide);
12801
Daniel Vetter26804af2014-06-25 22:01:55 +030012802 PIPE_CONF_CHECK_X(ddi_pll_sel);
12803
Daniel Vetterc0d43d62013-06-07 23:11:08 +020012804 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012805 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020012806 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012807 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
12808 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030012809 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Maarten Lankhorst00490c22015-11-16 14:42:12 +010012810 PIPE_CONF_CHECK_X(dpll_hw_state.spll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000012811 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
12812 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
12813 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020012814
Ville Syrjälä42571ae2013-09-06 23:29:00 +030012815 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
12816 PIPE_CONF_CHECK_I(pipe_bpp);
12817
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012818 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080012819 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030012820
Daniel Vetter66e985c2013-06-05 13:34:20 +020012821#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020012822#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012823#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012824#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030012825#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020012826#undef PIPE_CONF_QUIRK
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012827#undef INTEL_ERR_OR_DBG_KMS
Daniel Vetter627eb5a2013-04-29 19:33:42 +020012828
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012829 return ret;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012830}
12831
Damien Lespiau08db6652014-11-04 17:06:52 +000012832static void check_wm_state(struct drm_device *dev)
12833{
12834 struct drm_i915_private *dev_priv = dev->dev_private;
12835 struct skl_ddb_allocation hw_ddb, *sw_ddb;
12836 struct intel_crtc *intel_crtc;
12837 int plane;
12838
12839 if (INTEL_INFO(dev)->gen < 9)
12840 return;
12841
12842 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
12843 sw_ddb = &dev_priv->wm.skl_hw.ddb;
12844
12845 for_each_intel_crtc(dev, intel_crtc) {
12846 struct skl_ddb_entry *hw_entry, *sw_entry;
12847 const enum pipe pipe = intel_crtc->pipe;
12848
12849 if (!intel_crtc->active)
12850 continue;
12851
12852 /* planes */
Damien Lespiaudd740782015-02-28 14:54:08 +000012853 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau08db6652014-11-04 17:06:52 +000012854 hw_entry = &hw_ddb.plane[pipe][plane];
12855 sw_entry = &sw_ddb->plane[pipe][plane];
12856
12857 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12858 continue;
12859
12860 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
12861 "(expected (%u,%u), found (%u,%u))\n",
12862 pipe_name(pipe), plane + 1,
12863 sw_entry->start, sw_entry->end,
12864 hw_entry->start, hw_entry->end);
12865 }
12866
12867 /* cursor */
Matt Roper4969d332015-09-24 15:53:10 -070012868 hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR];
12869 sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR];
Damien Lespiau08db6652014-11-04 17:06:52 +000012870
12871 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12872 continue;
12873
12874 DRM_ERROR("mismatch in DDB state pipe %c cursor "
12875 "(expected (%u,%u), found (%u,%u))\n",
12876 pipe_name(pipe),
12877 sw_entry->start, sw_entry->end,
12878 hw_entry->start, hw_entry->end);
12879 }
12880}
12881
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012882static void
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012883check_connector_state(struct drm_device *dev,
12884 struct drm_atomic_state *old_state)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012885{
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012886 struct drm_connector_state *old_conn_state;
12887 struct drm_connector *connector;
12888 int i;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012889
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012890 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
12891 struct drm_encoder *encoder = connector->encoder;
12892 struct drm_connector_state *state = connector->state;
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012893
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012894 /* This also checks the encoder/connector hw state with the
12895 * ->get_hw_state callbacks. */
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012896 intel_connector_check_state(to_intel_connector(connector));
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012897
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012898 I915_STATE_WARN(state->best_encoder != encoder,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012899 "connector's atomic encoder doesn't match legacy encoder\n");
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012900 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012901}
12902
12903static void
12904check_encoder_state(struct drm_device *dev)
12905{
12906 struct intel_encoder *encoder;
12907 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012908
Damien Lespiaub2784e12014-08-05 11:29:37 +010012909 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012910 bool enabled = false;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012911 enum pipe pipe;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012912
12913 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
12914 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030012915 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012916
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012917 for_each_intel_connector(dev, connector) {
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012918 if (connector->base.state->best_encoder != &encoder->base)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012919 continue;
12920 enabled = true;
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012921
12922 I915_STATE_WARN(connector->base.state->crtc !=
12923 encoder->base.crtc,
12924 "connector's crtc doesn't match encoder crtc\n");
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012925 }
Dave Airlie0e32b392014-05-02 14:02:48 +100012926
Rob Clarke2c719b2014-12-15 13:56:32 -050012927 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012928 "encoder's enabled state mismatch "
12929 "(expected %i, found %i)\n",
12930 !!encoder->base.crtc, enabled);
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012931
12932 if (!encoder->base.crtc) {
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012933 bool active;
12934
12935 active = encoder->get_hw_state(encoder, &pipe);
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012936 I915_STATE_WARN(active,
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012937 "encoder detached but still enabled on pipe %c.\n",
12938 pipe_name(pipe));
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012939 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012940 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012941}
12942
12943static void
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012944check_crtc_state(struct drm_device *dev, struct drm_atomic_state *old_state)
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012945{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012946 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012947 struct intel_encoder *encoder;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012948 struct drm_crtc_state *old_crtc_state;
12949 struct drm_crtc *crtc;
12950 int i;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012951
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012952 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
12953 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12954 struct intel_crtc_state *pipe_config, *sw_config;
Maarten Lankhorst7b89b8d2015-08-05 12:37:03 +020012955 bool active;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012956
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020012957 if (!needs_modeset(crtc->state) &&
12958 !to_intel_crtc_state(crtc->state)->update_pipe)
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012959 continue;
12960
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012961 __drm_atomic_helper_crtc_destroy_state(crtc, old_crtc_state);
12962 pipe_config = to_intel_crtc_state(old_crtc_state);
12963 memset(pipe_config, 0, sizeof(*pipe_config));
12964 pipe_config->base.crtc = crtc;
12965 pipe_config->base.state = old_state;
12966
12967 DRM_DEBUG_KMS("[CRTC:%d]\n",
12968 crtc->base.id);
12969
12970 active = dev_priv->display.get_pipe_config(intel_crtc,
12971 pipe_config);
12972
12973 /* hw state is inconsistent with the pipe quirk */
12974 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
12975 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
12976 active = crtc->state->active;
12977
12978 I915_STATE_WARN(crtc->state->active != active,
12979 "crtc active state doesn't match with hw state "
12980 "(expected %i, found %i)\n", crtc->state->active, active);
12981
12982 I915_STATE_WARN(intel_crtc->active != crtc->state->active,
12983 "transitional active state does not match atomic hw state "
12984 "(expected %i, found %i)\n", crtc->state->active, intel_crtc->active);
12985
12986 for_each_encoder_on_crtc(dev, crtc, encoder) {
12987 enum pipe pipe;
12988
12989 active = encoder->get_hw_state(encoder, &pipe);
12990 I915_STATE_WARN(active != crtc->state->active,
12991 "[ENCODER:%i] active %i with crtc active %i\n",
12992 encoder->base.base.id, active, crtc->state->active);
12993
12994 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
12995 "Encoder connected to wrong pipe %c\n",
12996 pipe_name(pipe));
12997
12998 if (active)
12999 encoder->get_config(encoder, pipe_config);
13000 }
13001
13002 if (!crtc->state->active)
13003 continue;
13004
13005 sw_config = to_intel_crtc_state(crtc->state);
13006 if (!intel_pipe_config_compare(dev, sw_config,
13007 pipe_config, false)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050013008 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013009 intel_dump_pipe_config(intel_crtc, pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020013010 "[hw state]");
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013011 intel_dump_pipe_config(intel_crtc, sw_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020013012 "[sw state]");
13013 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013014 }
13015}
13016
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013017static void
13018check_shared_dpll_state(struct drm_device *dev)
13019{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013020 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013021 struct intel_crtc *crtc;
13022 struct intel_dpll_hw_state dpll_hw_state;
13023 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020013024
13025 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13026 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13027 int enabled_crtcs = 0, active_crtcs = 0;
13028 bool active;
13029
13030 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
13031
13032 DRM_DEBUG_KMS("%s\n", pll->name);
13033
13034 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
13035
Rob Clarke2c719b2014-12-15 13:56:32 -050013036 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020013037 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013038 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050013039 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020013040 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050013041 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020013042 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050013043 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020013044 "pll on state mismatch (expected %i, found %i)\n",
13045 pll->on, active);
13046
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013047 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080013048 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
Daniel Vetter53589012013-06-05 13:34:16 +020013049 enabled_crtcs++;
13050 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
13051 active_crtcs++;
13052 }
Rob Clarke2c719b2014-12-15 13:56:32 -050013053 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020013054 "pll active crtcs mismatch (expected %i, found %i)\n",
13055 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050013056 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020013057 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013058 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020013059
Rob Clarke2c719b2014-12-15 13:56:32 -050013060 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020013061 sizeof(dpll_hw_state)),
13062 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020013063 }
Daniel Vettere2e1ed42012-07-08 21:14:38 +020013064}
13065
Maarten Lankhorstee165b12015-08-05 12:37:00 +020013066static void
13067intel_modeset_check_state(struct drm_device *dev,
13068 struct drm_atomic_state *old_state)
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013069{
Damien Lespiau08db6652014-11-04 17:06:52 +000013070 check_wm_state(dev);
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020013071 check_connector_state(dev, old_state);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013072 check_encoder_state(dev);
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013073 check_crtc_state(dev, old_state);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013074 check_shared_dpll_state(dev);
13075}
13076
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020013077void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030013078 int dotclock)
13079{
13080 /*
13081 * FDI already provided one idea for the dotclock.
13082 * Yell if the encoder disagrees.
13083 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013084 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030013085 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013086 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030013087}
13088
Ville Syrjälä80715b22014-05-15 20:23:23 +030013089static void update_scanline_offset(struct intel_crtc *crtc)
13090{
13091 struct drm_device *dev = crtc->base.dev;
13092
13093 /*
13094 * The scanline counter increments at the leading edge of hsync.
13095 *
13096 * On most platforms it starts counting from vtotal-1 on the
13097 * first active line. That means the scanline counter value is
13098 * always one less than what we would expect. Ie. just after
13099 * start of vblank, which also occurs at start of hsync (on the
13100 * last active line), the scanline counter will read vblank_start-1.
13101 *
13102 * On gen2 the scanline counter starts counting from 1 instead
13103 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
13104 * to keep the value positive), instead of adding one.
13105 *
13106 * On HSW+ the behaviour of the scanline counter depends on the output
13107 * type. For DP ports it behaves like most other platforms, but on HDMI
13108 * there's an extra 1 line difference. So we need to add two instead of
13109 * one to the value.
13110 */
13111 if (IS_GEN2(dev)) {
Ville Syrjälä124abe02015-09-08 13:40:45 +030013112 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030013113 int vtotal;
13114
Ville Syrjälä124abe02015-09-08 13:40:45 +030013115 vtotal = adjusted_mode->crtc_vtotal;
13116 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
Ville Syrjälä80715b22014-05-15 20:23:23 +030013117 vtotal /= 2;
13118
13119 crtc->scanline_offset = vtotal - 1;
13120 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030013121 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030013122 crtc->scanline_offset = 2;
13123 } else
13124 crtc->scanline_offset = 1;
13125}
13126
Maarten Lankhorstad421372015-06-15 12:33:42 +020013127static void intel_modeset_clear_plls(struct drm_atomic_state *state)
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013128{
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030013129 struct drm_device *dev = state->dev;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013130 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstad421372015-06-15 12:33:42 +020013131 struct intel_shared_dpll_config *shared_dpll = NULL;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013132 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013133 struct intel_crtc_state *intel_crtc_state;
13134 struct drm_crtc *crtc;
13135 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013136 int i;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013137
13138 if (!dev_priv->display.crtc_compute_clock)
Maarten Lankhorstad421372015-06-15 12:33:42 +020013139 return;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013140
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013141 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstad421372015-06-15 12:33:42 +020013142 int dpll;
13143
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013144 intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030013145 intel_crtc_state = to_intel_crtc_state(crtc_state);
Maarten Lankhorstad421372015-06-15 12:33:42 +020013146 dpll = intel_crtc_state->shared_dpll;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013147
Maarten Lankhorstad421372015-06-15 12:33:42 +020013148 if (!needs_modeset(crtc_state) || dpll == DPLL_ID_PRIVATE)
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030013149 continue;
13150
Maarten Lankhorstad421372015-06-15 12:33:42 +020013151 intel_crtc_state->shared_dpll = DPLL_ID_PRIVATE;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013152
Maarten Lankhorstad421372015-06-15 12:33:42 +020013153 if (!shared_dpll)
13154 shared_dpll = intel_atomic_get_shared_dpll_state(state);
13155
13156 shared_dpll[dpll].crtc_mask &= ~(1 << intel_crtc->pipe);
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013157 }
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013158}
13159
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020013160/*
13161 * This implements the workaround described in the "notes" section of the mode
13162 * set sequence documentation. When going from no pipes or single pipe to
13163 * multiple pipes, and planes are enabled after the pipe, we need to wait at
13164 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
13165 */
13166static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
13167{
13168 struct drm_crtc_state *crtc_state;
13169 struct intel_crtc *intel_crtc;
13170 struct drm_crtc *crtc;
13171 struct intel_crtc_state *first_crtc_state = NULL;
13172 struct intel_crtc_state *other_crtc_state = NULL;
13173 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
13174 int i;
13175
13176 /* look at all crtc's that are going to be enabled in during modeset */
13177 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13178 intel_crtc = to_intel_crtc(crtc);
13179
13180 if (!crtc_state->active || !needs_modeset(crtc_state))
13181 continue;
13182
13183 if (first_crtc_state) {
13184 other_crtc_state = to_intel_crtc_state(crtc_state);
13185 break;
13186 } else {
13187 first_crtc_state = to_intel_crtc_state(crtc_state);
13188 first_pipe = intel_crtc->pipe;
13189 }
13190 }
13191
13192 /* No workaround needed? */
13193 if (!first_crtc_state)
13194 return 0;
13195
13196 /* w/a possibly needed, check how many crtc's are already enabled. */
13197 for_each_intel_crtc(state->dev, intel_crtc) {
13198 struct intel_crtc_state *pipe_config;
13199
13200 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
13201 if (IS_ERR(pipe_config))
13202 return PTR_ERR(pipe_config);
13203
13204 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
13205
13206 if (!pipe_config->base.active ||
13207 needs_modeset(&pipe_config->base))
13208 continue;
13209
13210 /* 2 or more enabled crtcs means no need for w/a */
13211 if (enabled_pipe != INVALID_PIPE)
13212 return 0;
13213
13214 enabled_pipe = intel_crtc->pipe;
13215 }
13216
13217 if (enabled_pipe != INVALID_PIPE)
13218 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
13219 else if (other_crtc_state)
13220 other_crtc_state->hsw_workaround_pipe = first_pipe;
13221
13222 return 0;
13223}
13224
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013225static int intel_modeset_all_pipes(struct drm_atomic_state *state)
13226{
13227 struct drm_crtc *crtc;
13228 struct drm_crtc_state *crtc_state;
13229 int ret = 0;
13230
13231 /* add all active pipes to the state */
13232 for_each_crtc(state->dev, crtc) {
13233 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13234 if (IS_ERR(crtc_state))
13235 return PTR_ERR(crtc_state);
13236
13237 if (!crtc_state->active || needs_modeset(crtc_state))
13238 continue;
13239
13240 crtc_state->mode_changed = true;
13241
13242 ret = drm_atomic_add_affected_connectors(state, crtc);
13243 if (ret)
13244 break;
13245
13246 ret = drm_atomic_add_affected_planes(state, crtc);
13247 if (ret)
13248 break;
13249 }
13250
13251 return ret;
13252}
13253
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013254static int intel_modeset_checks(struct drm_atomic_state *state)
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013255{
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013256 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
13257 struct drm_i915_private *dev_priv = state->dev->dev_private;
13258 struct drm_crtc *crtc;
13259 struct drm_crtc_state *crtc_state;
13260 int ret = 0, i;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013261
Maarten Lankhorstb3592832015-06-15 12:33:38 +020013262 if (!check_digital_port_conflicts(state)) {
13263 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
13264 return -EINVAL;
13265 }
13266
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013267 intel_state->modeset = true;
13268 intel_state->active_crtcs = dev_priv->active_crtcs;
13269
13270 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13271 if (crtc_state->active)
13272 intel_state->active_crtcs |= 1 << i;
13273 else
13274 intel_state->active_crtcs &= ~(1 << i);
13275 }
13276
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013277 /*
13278 * See if the config requires any additional preparation, e.g.
13279 * to adjust global state with pipes off. We need to do this
13280 * here so we can get the modeset_pipe updated config for the new
13281 * mode set on this crtc. For other crtcs we need to use the
13282 * adjusted_mode bits in the crtc directly.
13283 */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013284 if (dev_priv->display.modeset_calc_cdclk) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013285 ret = dev_priv->display.modeset_calc_cdclk(state);
13286
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010013287 if (!ret && intel_state->dev_cdclk != dev_priv->cdclk_freq)
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013288 ret = intel_modeset_all_pipes(state);
13289
13290 if (ret < 0)
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013291 return ret;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013292 } else
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010013293 to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013294
Maarten Lankhorstad421372015-06-15 12:33:42 +020013295 intel_modeset_clear_plls(state);
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013296
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013297 if (IS_HASWELL(dev_priv))
Maarten Lankhorstad421372015-06-15 12:33:42 +020013298 return haswell_mode_set_planes_workaround(state);
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020013299
Maarten Lankhorstad421372015-06-15 12:33:42 +020013300 return 0;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013301}
13302
Matt Roperaa363132015-09-24 15:53:18 -070013303/*
13304 * Handle calculation of various watermark data at the end of the atomic check
13305 * phase. The code here should be run after the per-crtc and per-plane 'check'
13306 * handlers to ensure that all derived state has been updated.
13307 */
13308static void calc_watermark_data(struct drm_atomic_state *state)
13309{
13310 struct drm_device *dev = state->dev;
13311 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
13312 struct drm_crtc *crtc;
13313 struct drm_crtc_state *cstate;
13314 struct drm_plane *plane;
13315 struct drm_plane_state *pstate;
13316
13317 /*
13318 * Calculate watermark configuration details now that derived
13319 * plane/crtc state is all properly updated.
13320 */
13321 drm_for_each_crtc(crtc, dev) {
13322 cstate = drm_atomic_get_existing_crtc_state(state, crtc) ?:
13323 crtc->state;
13324
13325 if (cstate->active)
13326 intel_state->wm_config.num_pipes_active++;
13327 }
13328 drm_for_each_legacy_plane(plane, dev) {
13329 pstate = drm_atomic_get_existing_plane_state(state, plane) ?:
13330 plane->state;
13331
13332 if (!to_intel_plane_state(pstate)->visible)
13333 continue;
13334
13335 intel_state->wm_config.sprites_enabled = true;
13336 if (pstate->crtc_w != pstate->src_w >> 16 ||
13337 pstate->crtc_h != pstate->src_h >> 16)
13338 intel_state->wm_config.sprites_scaled = true;
13339 }
13340}
13341
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013342/**
13343 * intel_atomic_check - validate state object
13344 * @dev: drm device
13345 * @state: state to validate
13346 */
13347static int intel_atomic_check(struct drm_device *dev,
13348 struct drm_atomic_state *state)
Daniel Vettera6778b32012-07-02 09:56:42 +020013349{
Matt Roperaa363132015-09-24 15:53:18 -070013350 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013351 struct drm_crtc *crtc;
13352 struct drm_crtc_state *crtc_state;
13353 int ret, i;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013354 bool any_ms = false;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013355
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013356 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vettera6778b32012-07-02 09:56:42 +020013357 if (ret)
13358 return ret;
13359
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013360 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013361 struct intel_crtc_state *pipe_config =
13362 to_intel_crtc_state(crtc_state);
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013363
Maarten Lankhorstba8af3e2015-11-16 12:49:14 +010013364 memset(&to_intel_crtc(crtc)->atomic, 0,
13365 sizeof(struct intel_crtc_atomic_commit));
13366
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013367 /* Catch I915_MODE_FLAG_INHERITED */
13368 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
13369 crtc_state->mode_changed = true;
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013370
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013371 if (!crtc_state->enable) {
13372 if (needs_modeset(crtc_state))
13373 any_ms = true;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013374 continue;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013375 }
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013376
Daniel Vetter26495482015-07-15 14:15:52 +020013377 if (!needs_modeset(crtc_state))
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013378 continue;
13379
Daniel Vetter26495482015-07-15 14:15:52 +020013380 /* FIXME: For only active_changed we shouldn't need to do any
13381 * state recomputation at all. */
13382
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013383 ret = drm_atomic_add_affected_connectors(state, crtc);
13384 if (ret)
13385 return ret;
Maarten Lankhorstb3592832015-06-15 12:33:38 +020013386
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013387 ret = intel_modeset_pipe_config(crtc, pipe_config);
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013388 if (ret)
13389 return ret;
13390
Jani Nikula73831232015-11-19 10:26:30 +020013391 if (i915.fastboot &&
13392 intel_pipe_config_compare(state->dev,
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013393 to_intel_crtc_state(crtc->state),
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013394 pipe_config, true)) {
Daniel Vetter26495482015-07-15 14:15:52 +020013395 crtc_state->mode_changed = false;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013396 to_intel_crtc_state(crtc_state)->update_pipe = true;
Daniel Vetter26495482015-07-15 14:15:52 +020013397 }
13398
13399 if (needs_modeset(crtc_state)) {
13400 any_ms = true;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013401
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013402 ret = drm_atomic_add_affected_planes(state, crtc);
13403 if (ret)
13404 return ret;
13405 }
13406
Daniel Vetter26495482015-07-15 14:15:52 +020013407 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
13408 needs_modeset(crtc_state) ?
13409 "[modeset]" : "[fastset]");
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013410 }
13411
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013412 if (any_ms) {
13413 ret = intel_modeset_checks(state);
13414
13415 if (ret)
13416 return ret;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013417 } else
Matt Roperaa363132015-09-24 15:53:18 -070013418 intel_state->cdclk = to_i915(state->dev)->cdclk_freq;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013419
Matt Roperaa363132015-09-24 15:53:18 -070013420 ret = drm_atomic_helper_check_planes(state->dev, state);
13421 if (ret)
13422 return ret;
13423
13424 calc_watermark_data(state);
13425
13426 return 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020013427}
13428
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013429static int intel_atomic_prepare_commit(struct drm_device *dev,
13430 struct drm_atomic_state *state,
13431 bool async)
13432{
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013433 struct drm_i915_private *dev_priv = dev->dev_private;
13434 struct drm_plane_state *plane_state;
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013435 struct drm_crtc_state *crtc_state;
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013436 struct drm_plane *plane;
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013437 struct drm_crtc *crtc;
13438 int i, ret;
13439
13440 if (async) {
13441 DRM_DEBUG_KMS("i915 does not yet support async commit\n");
13442 return -EINVAL;
13443 }
13444
13445 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13446 ret = intel_crtc_wait_for_pending_flips(crtc);
13447 if (ret)
13448 return ret;
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013449
13450 if (atomic_read(&to_intel_crtc(crtc)->unpin_work_count) >= 2)
13451 flush_workqueue(dev_priv->wq);
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013452 }
13453
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013454 ret = mutex_lock_interruptible(&dev->struct_mutex);
13455 if (ret)
13456 return ret;
13457
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013458 ret = drm_atomic_helper_prepare_planes(dev, state);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013459 if (!ret && !async && !i915_reset_in_progress(&dev_priv->gpu_error)) {
13460 u32 reset_counter;
13461
13462 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
13463 mutex_unlock(&dev->struct_mutex);
13464
13465 for_each_plane_in_state(state, plane, plane_state, i) {
13466 struct intel_plane_state *intel_plane_state =
13467 to_intel_plane_state(plane_state);
13468
13469 if (!intel_plane_state->wait_req)
13470 continue;
13471
13472 ret = __i915_wait_request(intel_plane_state->wait_req,
13473 reset_counter, true,
13474 NULL, NULL);
13475
13476 /* Swallow -EIO errors to allow updates during hw lockup. */
13477 if (ret == -EIO)
13478 ret = 0;
13479
13480 if (ret)
13481 break;
13482 }
13483
13484 if (!ret)
13485 return 0;
13486
13487 mutex_lock(&dev->struct_mutex);
13488 drm_atomic_helper_cleanup_planes(dev, state);
13489 }
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013490
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013491 mutex_unlock(&dev->struct_mutex);
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013492 return ret;
13493}
13494
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013495/**
13496 * intel_atomic_commit - commit validated state object
13497 * @dev: DRM device
13498 * @state: the top-level driver state object
13499 * @async: asynchronous commit
13500 *
13501 * This function commits a top-level state object that has been validated
13502 * with drm_atomic_helper_check().
13503 *
13504 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
13505 * we can only handle plane-related operations and do not yet support
13506 * asynchronous commit.
13507 *
13508 * RETURNS
13509 * Zero for success or -errno.
13510 */
13511static int intel_atomic_commit(struct drm_device *dev,
13512 struct drm_atomic_state *state,
13513 bool async)
Daniel Vettera6778b32012-07-02 09:56:42 +020013514{
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013515 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Jani Nikulafbee40d2014-03-31 14:27:18 +030013516 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013517 struct drm_crtc_state *crtc_state;
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013518 struct drm_crtc *crtc;
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013519 int ret = 0, i;
13520 bool hw_check = intel_state->modeset;
Daniel Vettera6778b32012-07-02 09:56:42 +020013521
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013522 ret = intel_atomic_prepare_commit(dev, state, async);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013523 if (ret) {
13524 DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret);
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030013525 return ret;
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013526 }
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030013527
Maarten Lankhorst1c5e19f2015-06-01 12:50:06 +020013528 drm_atomic_helper_swap_state(dev, state);
Matt Roperaa363132015-09-24 15:53:18 -070013529 dev_priv->wm.config = to_intel_atomic_state(state)->wm_config;
Maarten Lankhorst1c5e19f2015-06-01 12:50:06 +020013530
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013531 if (intel_state->modeset) {
13532 memcpy(dev_priv->min_pixclk, intel_state->min_pixclk,
13533 sizeof(intel_state->min_pixclk));
13534 dev_priv->active_crtcs = intel_state->active_crtcs;
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010013535 dev_priv->atomic_cdclk_freq = intel_state->cdclk;
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013536 }
13537
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013538 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013539 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13540
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013541 if (!needs_modeset(crtc->state))
13542 continue;
13543
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013544 intel_pre_plane_update(intel_crtc);
Daniel Vetter460da9162013-03-27 00:44:51 +010013545
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013546 if (crtc_state->active) {
13547 intel_crtc_disable_planes(crtc, crtc_state->plane_mask);
13548 dev_priv->display.crtc_disable(crtc);
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +020013549 intel_crtc->active = false;
13550 intel_disable_shared_dpll(intel_crtc);
Ville Syrjälä9bbc8258a2015-11-20 22:09:20 +020013551
13552 /*
13553 * Underruns don't always raise
13554 * interrupts, so check manually.
13555 */
13556 intel_check_cpu_fifo_underruns(dev_priv);
13557 intel_check_pch_fifo_underruns(dev_priv);
Maarten Lankhorstb9001112015-11-19 16:07:16 +010013558
13559 if (!crtc->state->active)
13560 intel_update_watermarks(crtc);
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013561 }
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010013562 }
Daniel Vetter7758a112012-07-08 19:40:39 +020013563
Daniel Vetterea9d7582012-07-10 10:42:52 +020013564 /* Only after disabling all output pipelines that will be changed can we
13565 * update the the output configuration. */
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013566 intel_modeset_update_crtc_state(state);
Daniel Vetterea9d7582012-07-10 10:42:52 +020013567
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013568 if (intel_state->modeset) {
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013569 intel_shared_dpll_commit(state);
13570
13571 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013572 modeset_update_crtc_power_domains(state);
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013573 }
Daniel Vetter47fab732012-10-26 10:58:18 +020013574
Daniel Vettera6778b32012-07-02 09:56:42 +020013575 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013576 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013577 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13578 bool modeset = needs_modeset(crtc->state);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013579 bool update_pipe = !modeset &&
13580 to_intel_crtc_state(crtc->state)->update_pipe;
13581 unsigned long put_domains = 0;
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013582
Patrik Jakobsson9f836f92015-11-16 16:20:01 +010013583 if (modeset)
13584 intel_display_power_get(dev_priv, POWER_DOMAIN_MODESET);
13585
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013586 if (modeset && crtc->state->active) {
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013587 update_scanline_offset(to_intel_crtc(crtc));
13588 dev_priv->display.crtc_enable(crtc);
13589 }
13590
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013591 if (update_pipe) {
13592 put_domains = modeset_get_crtc_power_domains(crtc);
13593
13594 /* make sure intel_modeset_check_state runs */
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013595 hw_check = true;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013596 }
13597
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013598 if (!modeset)
13599 intel_pre_plane_update(intel_crtc);
13600
Maarten Lankhorst6173ee22015-09-23 16:29:39 +020013601 if (crtc->state->active &&
13602 (crtc->state->planes_changed || update_pipe))
Maarten Lankhorst62852622015-09-23 16:29:38 +020013603 drm_atomic_helper_commit_planes_on_crtc(crtc_state);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013604
13605 if (put_domains)
13606 modeset_put_power_domains(dev_priv, put_domains);
13607
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013608 intel_post_plane_update(intel_crtc);
Patrik Jakobsson9f836f92015-11-16 16:20:01 +010013609
13610 if (modeset)
13611 intel_display_power_put(dev_priv, POWER_DOMAIN_MODESET);
Ville Syrjälä80715b22014-05-15 20:23:23 +030013612 }
Daniel Vettera6778b32012-07-02 09:56:42 +020013613
Daniel Vettera6778b32012-07-02 09:56:42 +020013614 /* FIXME: add subpixel order */
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013615
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013616 drm_atomic_helper_wait_for_vblanks(dev, state);
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013617
13618 mutex_lock(&dev->struct_mutex);
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030013619 drm_atomic_helper_cleanup_planes(dev, state);
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013620 mutex_unlock(&dev->struct_mutex);
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013621
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013622 if (hw_check)
Maarten Lankhorstee165b12015-08-05 12:37:00 +020013623 intel_modeset_check_state(dev, state);
13624
13625 drm_atomic_state_free(state);
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013626
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013627 return 0;
Daniel Vetterf30da182013-04-11 20:22:50 +020013628}
13629
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013630void intel_crtc_restore_mode(struct drm_crtc *crtc)
13631{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013632 struct drm_device *dev = crtc->dev;
13633 struct drm_atomic_state *state;
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013634 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013635 int ret;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013636
13637 state = drm_atomic_state_alloc(dev);
13638 if (!state) {
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013639 DRM_DEBUG_KMS("[CRTC:%d] crtc restore failed, out of memory",
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013640 crtc->base.id);
13641 return;
13642 }
13643
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013644 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013645
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013646retry:
13647 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13648 ret = PTR_ERR_OR_ZERO(crtc_state);
13649 if (!ret) {
13650 if (!crtc_state->active)
13651 goto out;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013652
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013653 crtc_state->mode_changed = true;
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013654 ret = drm_atomic_commit(state);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013655 }
13656
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013657 if (ret == -EDEADLK) {
13658 drm_atomic_state_clear(state);
13659 drm_modeset_backoff(state->acquire_ctx);
13660 goto retry;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030013661 }
13662
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013663 if (ret)
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013664out:
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013665 drm_atomic_state_free(state);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013666}
13667
Daniel Vetter25c5b262012-07-08 22:08:04 +020013668#undef for_each_intel_crtc_masked
13669
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013670static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013671 .gamma_set = intel_crtc_gamma_set,
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013672 .set_config = drm_atomic_helper_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013673 .destroy = intel_crtc_destroy,
13674 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080013675 .atomic_duplicate_state = intel_crtc_duplicate_state,
13676 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013677};
13678
Daniel Vetter53589012013-06-05 13:34:16 +020013679static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
13680 struct intel_shared_dpll *pll,
13681 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013682{
Daniel Vetter53589012013-06-05 13:34:16 +020013683 uint32_t val;
13684
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013685 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013686 return false;
13687
Daniel Vetter53589012013-06-05 13:34:16 +020013688 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020013689 hw_state->dpll = val;
13690 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
13691 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020013692
13693 return val & DPLL_VCO_ENABLE;
13694}
13695
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013696static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
13697 struct intel_shared_dpll *pll)
13698{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013699 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
13700 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013701}
13702
Daniel Vettere7b903d2013-06-05 13:34:14 +020013703static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
13704 struct intel_shared_dpll *pll)
13705{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013706 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020013707 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020013708
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013709 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013710
13711 /* Wait for the clocks to stabilize. */
13712 POSTING_READ(PCH_DPLL(pll->id));
13713 udelay(150);
13714
13715 /* The pixel multiplier can only be updated once the
13716 * DPLL is enabled and the clocks are stable.
13717 *
13718 * So write it again.
13719 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013720 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013721 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013722 udelay(200);
13723}
13724
13725static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
13726 struct intel_shared_dpll *pll)
13727{
13728 struct drm_device *dev = dev_priv->dev;
13729 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013730
13731 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013732 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020013733 if (intel_crtc_to_shared_dpll(crtc) == pll)
13734 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
13735 }
13736
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013737 I915_WRITE(PCH_DPLL(pll->id), 0);
13738 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013739 udelay(200);
13740}
13741
Daniel Vetter46edb022013-06-05 13:34:12 +020013742static char *ibx_pch_dpll_names[] = {
13743 "PCH DPLL A",
13744 "PCH DPLL B",
13745};
13746
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013747static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013748{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013749 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013750 int i;
13751
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013752 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013753
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013754 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020013755 dev_priv->shared_dplls[i].id = i;
13756 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013757 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013758 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
13759 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020013760 dev_priv->shared_dplls[i].get_hw_state =
13761 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013762 }
13763}
13764
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013765static void intel_shared_dpll_init(struct drm_device *dev)
13766{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013767 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013768
Daniel Vetter9cd86932014-06-25 22:01:57 +030013769 if (HAS_DDI(dev))
13770 intel_ddi_pll_init(dev);
13771 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013772 ibx_pch_dpll_init(dev);
13773 else
13774 dev_priv->num_shared_dpll = 0;
13775
13776 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013777}
13778
Matt Roper6beb8c232014-12-01 15:40:14 -080013779/**
13780 * intel_prepare_plane_fb - Prepare fb for usage on plane
13781 * @plane: drm plane to prepare for
13782 * @fb: framebuffer to prepare for presentation
13783 *
13784 * Prepares a framebuffer for usage on a display plane. Generally this
13785 * involves pinning the underlying object and updating the frontbuffer tracking
13786 * bits. Some older platforms need special physical address handling for
13787 * cursor planes.
13788 *
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013789 * Must be called with struct_mutex held.
13790 *
Matt Roper6beb8c232014-12-01 15:40:14 -080013791 * Returns 0 on success, negative error code on failure.
13792 */
13793int
13794intel_prepare_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013795 const struct drm_plane_state *new_state)
Matt Roper465c1202014-05-29 08:06:54 -070013796{
13797 struct drm_device *dev = plane->dev;
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013798 struct drm_framebuffer *fb = new_state->fb;
Matt Roper6beb8c232014-12-01 15:40:14 -080013799 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper6beb8c232014-12-01 15:40:14 -080013800 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013801 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb);
Matt Roper6beb8c232014-12-01 15:40:14 -080013802 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070013803
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013804 if (!obj && !old_obj)
Matt Roper465c1202014-05-29 08:06:54 -070013805 return 0;
13806
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013807 if (old_obj) {
13808 struct drm_crtc_state *crtc_state =
13809 drm_atomic_get_existing_crtc_state(new_state->state, plane->state->crtc);
13810
13811 /* Big Hammer, we also need to ensure that any pending
13812 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
13813 * current scanout is retired before unpinning the old
13814 * framebuffer. Note that we rely on userspace rendering
13815 * into the buffer attached to the pipe they are waiting
13816 * on. If not, userspace generates a GPU hang with IPEHR
13817 * point to the MI_WAIT_FOR_EVENT.
13818 *
13819 * This should only fail upon a hung GPU, in which case we
13820 * can safely continue.
13821 */
13822 if (needs_modeset(crtc_state))
13823 ret = i915_gem_object_wait_rendering(old_obj, true);
13824
13825 /* Swallow -EIO errors to allow updates during hw lockup. */
13826 if (ret && ret != -EIO)
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013827 return ret;
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013828 }
13829
Alex Goins3c28ff22015-11-25 18:43:39 -080013830 /* For framebuffer backed by dmabuf, wait for fence */
13831 if (obj && obj->base.dma_buf) {
13832 ret = reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv,
13833 false, true,
13834 MAX_SCHEDULE_TIMEOUT);
13835 if (ret == -ERESTARTSYS)
13836 return ret;
13837
13838 WARN_ON(ret < 0);
13839 }
13840
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013841 if (!obj) {
13842 ret = 0;
13843 } else if (plane->type == DRM_PLANE_TYPE_CURSOR &&
Matt Roper6beb8c232014-12-01 15:40:14 -080013844 INTEL_INFO(dev)->cursor_needs_physical) {
13845 int align = IS_I830(dev) ? 16 * 1024 : 256;
13846 ret = i915_gem_object_attach_phys(obj, align);
13847 if (ret)
13848 DRM_DEBUG_KMS("failed to attach phys object\n");
13849 } else {
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013850 ret = intel_pin_and_fence_fb_obj(plane, fb, new_state);
Matt Roper6beb8c232014-12-01 15:40:14 -080013851 }
13852
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013853 if (ret == 0) {
13854 if (obj) {
13855 struct intel_plane_state *plane_state =
13856 to_intel_plane_state(new_state);
13857
13858 i915_gem_request_assign(&plane_state->wait_req,
13859 obj->last_write_req);
13860 }
13861
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030013862 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013863 }
Matt Roper6beb8c232014-12-01 15:40:14 -080013864
Matt Roper6beb8c232014-12-01 15:40:14 -080013865 return ret;
13866}
13867
Matt Roper38f3ce32014-12-02 07:45:25 -080013868/**
13869 * intel_cleanup_plane_fb - Cleans up an fb after plane use
13870 * @plane: drm plane to clean up for
13871 * @fb: old framebuffer that was on plane
13872 *
13873 * Cleans up a framebuffer that has just been removed from a plane.
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013874 *
13875 * Must be called with struct_mutex held.
Matt Roper38f3ce32014-12-02 07:45:25 -080013876 */
13877void
13878intel_cleanup_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013879 const struct drm_plane_state *old_state)
Matt Roper38f3ce32014-12-02 07:45:25 -080013880{
13881 struct drm_device *dev = plane->dev;
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013882 struct intel_plane *intel_plane = to_intel_plane(plane);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013883 struct intel_plane_state *old_intel_state;
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013884 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb);
13885 struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb);
Matt Roper38f3ce32014-12-02 07:45:25 -080013886
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013887 old_intel_state = to_intel_plane_state(old_state);
13888
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013889 if (!obj && !old_obj)
Matt Roper38f3ce32014-12-02 07:45:25 -080013890 return;
13891
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013892 if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR ||
13893 !INTEL_INFO(dev)->cursor_needs_physical))
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013894 intel_unpin_fb_obj(old_state->fb, old_state);
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013895
13896 /* prepare_fb aborted? */
13897 if ((old_obj && (old_obj->frontbuffer_bits & intel_plane->frontbuffer_bit)) ||
13898 (obj && !(obj->frontbuffer_bits & intel_plane->frontbuffer_bit)))
13899 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013900
13901 i915_gem_request_assign(&old_intel_state->wait_req, NULL);
13902
Matt Roper465c1202014-05-29 08:06:54 -070013903}
13904
Chandra Konduru6156a452015-04-27 13:48:39 -070013905int
13906skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
13907{
13908 int max_scale;
13909 struct drm_device *dev;
13910 struct drm_i915_private *dev_priv;
13911 int crtc_clock, cdclk;
13912
Maarten Lankhorstbf8a0af2015-11-24 11:29:02 +010013913 if (!intel_crtc || !crtc_state->base.enable)
Chandra Konduru6156a452015-04-27 13:48:39 -070013914 return DRM_PLANE_HELPER_NO_SCALING;
13915
13916 dev = intel_crtc->base.dev;
13917 dev_priv = dev->dev_private;
13918 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013919 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
Chandra Konduru6156a452015-04-27 13:48:39 -070013920
Tvrtko Ursulin54bf1ce2015-10-20 17:17:07 +010013921 if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock))
Chandra Konduru6156a452015-04-27 13:48:39 -070013922 return DRM_PLANE_HELPER_NO_SCALING;
13923
13924 /*
13925 * skl max scale is lower of:
13926 * close to 3 but not 3, -1 is for that purpose
13927 * or
13928 * cdclk/crtc_clock
13929 */
13930 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
13931
13932 return max_scale;
13933}
13934
Matt Roper465c1202014-05-29 08:06:54 -070013935static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013936intel_check_primary_plane(struct drm_plane *plane,
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013937 struct intel_crtc_state *crtc_state,
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013938 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070013939{
Matt Roper2b875c22014-12-01 15:40:13 -080013940 struct drm_crtc *crtc = state->base.crtc;
13941 struct drm_framebuffer *fb = state->base.fb;
Chandra Konduru6156a452015-04-27 13:48:39 -070013942 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013943 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
13944 bool can_position = false;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013945
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013946 /* use scaler when colorkey is not required */
13947 if (INTEL_INFO(plane->dev)->gen >= 9 &&
Maarten Lankhorst818ed962015-06-15 12:33:54 +020013948 state->ckey.flags == I915_SET_COLORKEY_NONE) {
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013949 min_scale = 1;
13950 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
Sonika Jindald8106362015-04-10 14:37:28 +053013951 can_position = true;
Chandra Konduru6156a452015-04-27 13:48:39 -070013952 }
Sonika Jindald8106362015-04-10 14:37:28 +053013953
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013954 return drm_plane_helper_check_update(plane, crtc, fb, &state->src,
13955 &state->dst, &state->clip,
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020013956 min_scale, max_scale,
13957 can_position, true,
13958 &state->visible);
Matt Roper465c1202014-05-29 08:06:54 -070013959}
13960
Gustavo Padovan14af2932014-10-24 14:51:31 +010013961static void
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013962intel_commit_primary_plane(struct drm_plane *plane,
13963 struct intel_plane_state *state)
13964{
Matt Roper2b875c22014-12-01 15:40:13 -080013965 struct drm_crtc *crtc = state->base.crtc;
13966 struct drm_framebuffer *fb = state->base.fb;
13967 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053013968 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Ropercf4c7c12014-12-04 10:27:42 -080013969
Matt Roperea2c67b2014-12-23 10:41:52 -080013970 crtc = crtc ? crtc : plane->crtc;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013971
Maarten Lankhorstd4b08632015-09-10 16:07:56 +020013972 dev_priv->display.update_primary_plane(crtc, fb,
13973 state->src.x1 >> 16,
13974 state->src.y1 >> 16);
Matt Roper32b7eee2014-12-24 07:59:06 -080013975}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013976
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013977static void
13978intel_disable_primary_plane(struct drm_plane *plane,
Maarten Lankhorst7fabf5e2015-06-15 12:33:47 +020013979 struct drm_crtc *crtc)
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013980{
13981 struct drm_device *dev = plane->dev;
13982 struct drm_i915_private *dev_priv = dev->dev_private;
13983
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013984 dev_priv->display.update_primary_plane(crtc, NULL, 0, 0);
13985}
13986
Maarten Lankhorst613d2b22015-07-21 13:28:58 +020013987static void intel_begin_crtc_commit(struct drm_crtc *crtc,
13988 struct drm_crtc_state *old_crtc_state)
Matt Roper32b7eee2014-12-24 07:59:06 -080013989{
13990 struct drm_device *dev = crtc->dev;
Matt Roper32b7eee2014-12-24 07:59:06 -080013991 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013992 struct intel_crtc_state *old_intel_state =
13993 to_intel_crtc_state(old_crtc_state);
13994 bool modeset = needs_modeset(crtc->state);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013995
Matt Roperc34c9ee2014-12-23 10:41:50 -080013996 /* Perform vblank evasion around commit operation */
Maarten Lankhorst62852622015-09-23 16:29:38 +020013997 intel_pipe_update_start(intel_crtc);
Maarten Lankhorst05832362015-06-15 12:33:48 +020013998
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013999 if (modeset)
14000 return;
14001
14002 if (to_intel_crtc_state(crtc->state)->update_pipe)
14003 intel_update_pipe_config(intel_crtc, old_intel_state);
14004 else if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorst05832362015-06-15 12:33:48 +020014005 skl_detach_scalers(intel_crtc);
Matt Roper32b7eee2014-12-24 07:59:06 -080014006}
14007
Maarten Lankhorst613d2b22015-07-21 13:28:58 +020014008static void intel_finish_crtc_commit(struct drm_crtc *crtc,
14009 struct drm_crtc_state *old_crtc_state)
Matt Roper32b7eee2014-12-24 07:59:06 -080014010{
Matt Roper32b7eee2014-12-24 07:59:06 -080014011 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper32b7eee2014-12-24 07:59:06 -080014012
Maarten Lankhorst62852622015-09-23 16:29:38 +020014013 intel_pipe_update_end(intel_crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030014014}
14015
Matt Ropercf4c7c12014-12-04 10:27:42 -080014016/**
Matt Roper4a3b8762014-12-23 10:41:51 -080014017 * intel_plane_destroy - destroy a plane
14018 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080014019 *
Matt Roper4a3b8762014-12-23 10:41:51 -080014020 * Common destruction function for all types of planes (primary, cursor,
14021 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080014022 */
Matt Roper4a3b8762014-12-23 10:41:51 -080014023void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070014024{
14025 struct intel_plane *intel_plane = to_intel_plane(plane);
14026 drm_plane_cleanup(plane);
14027 kfree(intel_plane);
14028}
14029
Matt Roper65a3fea2015-01-21 16:35:42 -080014030const struct drm_plane_funcs intel_plane_funcs = {
Matt Roper70a101f2015-04-08 18:56:53 -070014031 .update_plane = drm_atomic_helper_update_plane,
14032 .disable_plane = drm_atomic_helper_disable_plane,
Matt Roper3d7d6512014-06-10 08:28:13 -070014033 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080014034 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080014035 .atomic_get_property = intel_plane_atomic_get_property,
14036 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080014037 .atomic_duplicate_state = intel_plane_duplicate_state,
14038 .atomic_destroy_state = intel_plane_destroy_state,
14039
Matt Roper465c1202014-05-29 08:06:54 -070014040};
14041
14042static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
14043 int pipe)
14044{
14045 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080014046 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070014047 const uint32_t *intel_primary_formats;
Thierry Reding45e37432015-08-12 16:54:28 +020014048 unsigned int num_formats;
Matt Roper465c1202014-05-29 08:06:54 -070014049
14050 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
14051 if (primary == NULL)
14052 return NULL;
14053
Matt Roper8e7d6882015-01-21 16:35:41 -080014054 state = intel_create_plane_state(&primary->base);
14055 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080014056 kfree(primary);
14057 return NULL;
14058 }
Matt Roper8e7d6882015-01-21 16:35:41 -080014059 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080014060
Matt Roper465c1202014-05-29 08:06:54 -070014061 primary->can_scale = false;
14062 primary->max_downscale = 1;
Chandra Konduru6156a452015-04-27 13:48:39 -070014063 if (INTEL_INFO(dev)->gen >= 9) {
14064 primary->can_scale = true;
Chandra Konduruaf99ced2015-05-11 14:35:47 -070014065 state->scaler_id = -1;
Chandra Konduru6156a452015-04-27 13:48:39 -070014066 }
Matt Roper465c1202014-05-29 08:06:54 -070014067 primary->pipe = pipe;
14068 primary->plane = pipe;
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030014069 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
Matt Roperc59cb172014-12-01 15:40:16 -080014070 primary->check_plane = intel_check_primary_plane;
14071 primary->commit_plane = intel_commit_primary_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030014072 primary->disable_plane = intel_disable_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070014073 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
14074 primary->plane = !pipe;
14075
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014076 if (INTEL_INFO(dev)->gen >= 9) {
14077 intel_primary_formats = skl_primary_formats;
14078 num_formats = ARRAY_SIZE(skl_primary_formats);
14079 } else if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau568db4f2015-05-12 16:13:18 +010014080 intel_primary_formats = i965_primary_formats;
14081 num_formats = ARRAY_SIZE(i965_primary_formats);
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014082 } else {
14083 intel_primary_formats = i8xx_primary_formats;
14084 num_formats = ARRAY_SIZE(i8xx_primary_formats);
Matt Roper465c1202014-05-29 08:06:54 -070014085 }
14086
14087 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080014088 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070014089 intel_primary_formats, num_formats,
14090 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053014091
Sonika Jindal3b7a5112015-04-10 14:37:29 +053014092 if (INTEL_INFO(dev)->gen >= 4)
14093 intel_create_rotation_property(dev, primary);
Sonika Jindal48404c12014-08-22 14:06:04 +053014094
Matt Roperea2c67b2014-12-23 10:41:52 -080014095 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
14096
Matt Roper465c1202014-05-29 08:06:54 -070014097 return &primary->base;
14098}
14099
Sonika Jindal3b7a5112015-04-10 14:37:29 +053014100void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
14101{
14102 if (!dev->mode_config.rotation_property) {
14103 unsigned long flags = BIT(DRM_ROTATE_0) |
14104 BIT(DRM_ROTATE_180);
14105
14106 if (INTEL_INFO(dev)->gen >= 9)
14107 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
14108
14109 dev->mode_config.rotation_property =
14110 drm_mode_create_rotation_property(dev, flags);
14111 }
14112 if (dev->mode_config.rotation_property)
14113 drm_object_attach_property(&plane->base.base,
14114 dev->mode_config.rotation_property,
14115 plane->base.state->rotation);
14116}
14117
Matt Roper3d7d6512014-06-10 08:28:13 -070014118static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030014119intel_check_cursor_plane(struct drm_plane *plane,
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020014120 struct intel_crtc_state *crtc_state,
Gustavo Padovan852e7872014-09-05 17:22:31 -030014121 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070014122{
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020014123 struct drm_crtc *crtc = crtc_state->base.crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080014124 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014125 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Ville Syrjäläb29ec922015-12-18 19:24:39 +020014126 enum pipe pipe = to_intel_plane(plane)->pipe;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014127 unsigned stride;
14128 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030014129
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020014130 ret = drm_plane_helper_check_update(plane, crtc, fb, &state->src,
14131 &state->dst, &state->clip,
Gustavo Padovan852e7872014-09-05 17:22:31 -030014132 DRM_PLANE_HELPER_NO_SCALING,
14133 DRM_PLANE_HELPER_NO_SCALING,
14134 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014135 if (ret)
14136 return ret;
14137
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014138 /* if we want to turn off the cursor ignore width and height */
14139 if (!obj)
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020014140 return 0;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014141
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014142 /* Check for which cursor types we support */
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020014143 if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) {
Matt Roperea2c67b2014-12-23 10:41:52 -080014144 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
14145 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014146 return -EINVAL;
14147 }
14148
Matt Roperea2c67b2014-12-23 10:41:52 -080014149 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
14150 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014151 DRM_DEBUG_KMS("buffer is too small\n");
14152 return -ENOMEM;
14153 }
14154
Ville Syrjälä3a656b52015-03-09 21:08:37 +020014155 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014156 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020014157 return -EINVAL;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014158 }
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014159
Ville Syrjäläb29ec922015-12-18 19:24:39 +020014160 /*
14161 * There's something wrong with the cursor on CHV pipe C.
14162 * If it straddles the left edge of the screen then
14163 * moving it away from the edge or disabling it often
14164 * results in a pipe underrun, and often that can lead to
14165 * dead pipe (constant underrun reported, and it scans
14166 * out just a solid color). To recover from that, the
14167 * display power well must be turned off and on again.
14168 * Refuse the put the cursor into that compromised position.
14169 */
14170 if (IS_CHERRYVIEW(plane->dev) && pipe == PIPE_C &&
14171 state->visible && state->base.crtc_x < 0) {
14172 DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n");
14173 return -EINVAL;
14174 }
14175
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020014176 return 0;
Gustavo Padovan852e7872014-09-05 17:22:31 -030014177}
14178
Matt Roperf4a2cf22014-12-01 15:40:12 -080014179static void
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030014180intel_disable_cursor_plane(struct drm_plane *plane,
Maarten Lankhorst7fabf5e2015-06-15 12:33:47 +020014181 struct drm_crtc *crtc)
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030014182{
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030014183 intel_crtc_update_cursor(crtc, false);
14184}
14185
14186static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030014187intel_commit_cursor_plane(struct drm_plane *plane,
14188 struct intel_plane_state *state)
14189{
Matt Roper2b875c22014-12-01 15:40:13 -080014190 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080014191 struct drm_device *dev = plane->dev;
14192 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080014193 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080014194 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070014195
Matt Roperea2c67b2014-12-23 10:41:52 -080014196 crtc = crtc ? crtc : plane->crtc;
14197 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070014198
Matt Roperf4a2cf22014-12-01 15:40:12 -080014199 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080014200 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080014201 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080014202 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080014203 else
Gustavo Padovana912f122014-12-01 15:40:10 -080014204 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080014205
Gustavo Padovana912f122014-12-01 15:40:10 -080014206 intel_crtc->cursor_addr = addr;
Gustavo Padovana912f122014-12-01 15:40:10 -080014207
Maarten Lankhorst62852622015-09-23 16:29:38 +020014208 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070014209}
Gustavo Padovan852e7872014-09-05 17:22:31 -030014210
Matt Roper3d7d6512014-06-10 08:28:13 -070014211static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
14212 int pipe)
14213{
14214 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080014215 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070014216
14217 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
14218 if (cursor == NULL)
14219 return NULL;
14220
Matt Roper8e7d6882015-01-21 16:35:41 -080014221 state = intel_create_plane_state(&cursor->base);
14222 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080014223 kfree(cursor);
14224 return NULL;
14225 }
Matt Roper8e7d6882015-01-21 16:35:41 -080014226 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080014227
Matt Roper3d7d6512014-06-10 08:28:13 -070014228 cursor->can_scale = false;
14229 cursor->max_downscale = 1;
14230 cursor->pipe = pipe;
14231 cursor->plane = pipe;
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030014232 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
Matt Roperc59cb172014-12-01 15:40:16 -080014233 cursor->check_plane = intel_check_cursor_plane;
14234 cursor->commit_plane = intel_commit_cursor_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030014235 cursor->disable_plane = intel_disable_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070014236
14237 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080014238 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070014239 intel_cursor_formats,
14240 ARRAY_SIZE(intel_cursor_formats),
14241 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070014242
14243 if (INTEL_INFO(dev)->gen >= 4) {
14244 if (!dev->mode_config.rotation_property)
14245 dev->mode_config.rotation_property =
14246 drm_mode_create_rotation_property(dev,
14247 BIT(DRM_ROTATE_0) |
14248 BIT(DRM_ROTATE_180));
14249 if (dev->mode_config.rotation_property)
14250 drm_object_attach_property(&cursor->base.base,
14251 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080014252 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070014253 }
14254
Chandra Konduruaf99ced2015-05-11 14:35:47 -070014255 if (INTEL_INFO(dev)->gen >=9)
14256 state->scaler_id = -1;
14257
Matt Roperea2c67b2014-12-23 10:41:52 -080014258 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
14259
Matt Roper3d7d6512014-06-10 08:28:13 -070014260 return &cursor->base;
14261}
14262
Chandra Konduru549e2bf2015-04-07 15:28:38 -070014263static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
14264 struct intel_crtc_state *crtc_state)
14265{
14266 int i;
14267 struct intel_scaler *intel_scaler;
14268 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
14269
14270 for (i = 0; i < intel_crtc->num_scalers; i++) {
14271 intel_scaler = &scaler_state->scalers[i];
14272 intel_scaler->in_use = 0;
Chandra Konduru549e2bf2015-04-07 15:28:38 -070014273 intel_scaler->mode = PS_SCALER_MODE_DYN;
14274 }
14275
14276 scaler_state->scaler_id = -1;
14277}
14278
Hannes Ederb358d0a2008-12-18 21:18:47 +010014279static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080014280{
Jani Nikulafbee40d2014-03-31 14:27:18 +030014281 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080014282 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014283 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070014284 struct drm_plane *primary = NULL;
14285 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070014286 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080014287
Daniel Vetter955382f2013-09-19 14:05:45 +020014288 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080014289 if (intel_crtc == NULL)
14290 return;
14291
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014292 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
14293 if (!crtc_state)
14294 goto fail;
Ander Conselvan de Oliveira550acef2015-04-21 17:13:24 +030014295 intel_crtc->config = crtc_state;
14296 intel_crtc->base.state = &crtc_state->base;
Matt Roper07878242015-02-25 11:43:26 -080014297 crtc_state->base.crtc = &intel_crtc->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014298
Chandra Konduru549e2bf2015-04-07 15:28:38 -070014299 /* initialize shared scalers */
14300 if (INTEL_INFO(dev)->gen >= 9) {
14301 if (pipe == PIPE_C)
14302 intel_crtc->num_scalers = 1;
14303 else
14304 intel_crtc->num_scalers = SKL_NUM_SCALERS;
14305
14306 skl_init_scalers(dev, intel_crtc, crtc_state);
14307 }
14308
Matt Roper465c1202014-05-29 08:06:54 -070014309 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070014310 if (!primary)
14311 goto fail;
14312
14313 cursor = intel_cursor_plane_create(dev, pipe);
14314 if (!cursor)
14315 goto fail;
14316
Matt Roper465c1202014-05-29 08:06:54 -070014317 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070014318 cursor, &intel_crtc_funcs);
14319 if (ret)
14320 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080014321
14322 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080014323 for (i = 0; i < 256; i++) {
14324 intel_crtc->lut_r[i] = i;
14325 intel_crtc->lut_g[i] = i;
14326 intel_crtc->lut_b[i] = i;
14327 }
14328
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020014329 /*
14330 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020014331 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020014332 */
Jesse Barnes80824002009-09-10 15:28:06 -070014333 intel_crtc->pipe = pipe;
14334 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010014335 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080014336 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010014337 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070014338 }
14339
Chris Wilson4b0e3332014-05-30 16:35:26 +030014340 intel_crtc->cursor_base = ~0;
14341 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030014342 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030014343
Ville Syrjälä852eb002015-06-24 22:00:07 +030014344 intel_crtc->wm.cxsr_allowed = true;
14345
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080014346 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
14347 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
14348 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
14349 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
14350
Jesse Barnes79e53942008-11-07 14:24:08 -080014351 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020014352
14353 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070014354 return;
14355
14356fail:
14357 if (primary)
14358 drm_plane_cleanup(primary);
14359 if (cursor)
14360 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014361 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070014362 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080014363}
14364
Jesse Barnes752aa882013-10-31 18:55:49 +020014365enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
14366{
14367 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020014368 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020014369
Rob Clark51fd3712013-11-19 12:10:12 -050014370 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020014371
Ville Syrjäläd3babd32014-11-07 11:16:01 +020014372 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020014373 return INVALID_PIPE;
14374
14375 return to_intel_crtc(encoder->crtc)->pipe;
14376}
14377
Carl Worth08d7b3d2009-04-29 14:43:54 -070014378int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000014379 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070014380{
Carl Worth08d7b3d2009-04-29 14:43:54 -070014381 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040014382 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020014383 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014384
Rob Clark7707e652014-07-17 23:30:04 -040014385 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070014386
Rob Clark7707e652014-07-17 23:30:04 -040014387 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070014388 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030014389 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014390 }
14391
Rob Clark7707e652014-07-17 23:30:04 -040014392 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020014393 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014394
Daniel Vetterc05422d2009-08-11 16:05:30 +020014395 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014396}
14397
Daniel Vetter66a92782012-07-12 20:08:18 +020014398static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080014399{
Daniel Vetter66a92782012-07-12 20:08:18 +020014400 struct drm_device *dev = encoder->base.dev;
14401 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080014402 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080014403 int entry = 0;
14404
Damien Lespiaub2784e12014-08-05 11:29:37 +010014405 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020014406 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020014407 index_mask |= (1 << entry);
14408
Jesse Barnes79e53942008-11-07 14:24:08 -080014409 entry++;
14410 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010014411
Jesse Barnes79e53942008-11-07 14:24:08 -080014412 return index_mask;
14413}
14414
Chris Wilson4d302442010-12-14 19:21:29 +000014415static bool has_edp_a(struct drm_device *dev)
14416{
14417 struct drm_i915_private *dev_priv = dev->dev_private;
14418
14419 if (!IS_MOBILE(dev))
14420 return false;
14421
14422 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
14423 return false;
14424
Damien Lespiaue3589902014-02-07 19:12:50 +000014425 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000014426 return false;
14427
14428 return true;
14429}
14430
Jesse Barnes84b4e042014-06-25 08:24:29 -070014431static bool intel_crt_present(struct drm_device *dev)
14432{
14433 struct drm_i915_private *dev_priv = dev->dev_private;
14434
Damien Lespiau884497e2013-12-03 13:56:23 +000014435 if (INTEL_INFO(dev)->gen >= 9)
14436 return false;
14437
Damien Lespiaucf404ce2014-10-01 20:04:15 +010014438 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070014439 return false;
14440
14441 if (IS_CHERRYVIEW(dev))
14442 return false;
14443
Ville Syrjälä65e472e2015-12-01 23:28:55 +020014444 if (HAS_PCH_LPT_H(dev) && I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED)
14445 return false;
14446
Ville Syrjälä70ac54d2015-12-01 23:29:56 +020014447 /* DDI E can't be used if DDI A requires 4 lanes */
14448 if (HAS_DDI(dev) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)
14449 return false;
14450
Ville Syrjäläe4abb732015-12-01 23:31:33 +020014451 if (!dev_priv->vbt.int_crt_support)
Jesse Barnes84b4e042014-06-25 08:24:29 -070014452 return false;
14453
14454 return true;
14455}
14456
Jesse Barnes79e53942008-11-07 14:24:08 -080014457static void intel_setup_outputs(struct drm_device *dev)
14458{
Eric Anholt725e30a2009-01-22 13:01:02 -080014459 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010014460 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014461 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080014462
Daniel Vetterc9093352013-06-06 22:22:47 +020014463 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014464
Jesse Barnes84b4e042014-06-25 08:24:29 -070014465 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020014466 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014467
Vandana Kannanc776eb22014-08-19 12:05:01 +053014468 if (IS_BROXTON(dev)) {
14469 /*
14470 * FIXME: Broxton doesn't support port detection via the
14471 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
14472 * detect the ports.
14473 */
14474 intel_ddi_init(dev, PORT_A);
14475 intel_ddi_init(dev, PORT_B);
14476 intel_ddi_init(dev, PORT_C);
14477 } else if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014478 int found;
14479
Jesse Barnesde31fac2015-03-06 15:53:32 -080014480 /*
14481 * Haswell uses DDI functions to detect digital outputs.
14482 * On SKL pre-D0 the strap isn't connected, so we assume
14483 * it's there.
14484 */
Ville Syrjälä77179402015-09-18 20:03:35 +030014485 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
Jesse Barnesde31fac2015-03-06 15:53:32 -080014486 /* WaIgnoreDDIAStrap: skl */
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070014487 if (found || IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014488 intel_ddi_init(dev, PORT_A);
14489
14490 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
14491 * register */
14492 found = I915_READ(SFUSE_STRAP);
14493
14494 if (found & SFUSE_STRAP_DDIB_DETECTED)
14495 intel_ddi_init(dev, PORT_B);
14496 if (found & SFUSE_STRAP_DDIC_DETECTED)
14497 intel_ddi_init(dev, PORT_C);
14498 if (found & SFUSE_STRAP_DDID_DETECTED)
14499 intel_ddi_init(dev, PORT_D);
Rodrigo Vivi2800e4c2015-08-07 17:35:21 -070014500 /*
14501 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
14502 */
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070014503 if ((IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) &&
Rodrigo Vivi2800e4c2015-08-07 17:35:21 -070014504 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
14505 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
14506 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
14507 intel_ddi_init(dev, PORT_E);
14508
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014509 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014510 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020014511 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020014512
14513 if (has_edp_a(dev))
14514 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014515
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014516 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080014517 /* PCH SDVOB multiplex with HDMIB */
Ville Syrjälä2a5c0832015-11-06 21:29:59 +020014518 found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014519 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014520 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014521 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014522 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014523 }
14524
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014525 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014526 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014527
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014528 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014529 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014530
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014531 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014532 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014533
Daniel Vetter270b3042012-10-27 15:52:05 +020014534 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014535 intel_dp_init(dev, PCH_DP_D, PORT_D);
Wayne Boyer666a4532015-12-09 12:29:35 -080014536 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014537 /*
14538 * The DP_DETECTED bit is the latched state of the DDC
14539 * SDA pin at boot. However since eDP doesn't require DDC
14540 * (no way to plug in a DP->HDMI dongle) the DDC pins for
14541 * eDP ports may have been muxed to an alternate function.
14542 * Thus we can't rely on the DP_DETECTED bit alone to detect
14543 * eDP ports. Consult the VBT as well as DP_DETECTED to
14544 * detect eDP ports.
14545 */
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014546 if (I915_READ(VLV_HDMIB) & SDVO_DETECTED &&
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014547 !intel_dp_is_edp(dev, PORT_B))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014548 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
14549 if (I915_READ(VLV_DP_B) & DP_DETECTED ||
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014550 intel_dp_is_edp(dev, PORT_B))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014551 intel_dp_init(dev, VLV_DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030014552
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014553 if (I915_READ(VLV_HDMIC) & SDVO_DETECTED &&
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014554 !intel_dp_is_edp(dev, PORT_C))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014555 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
14556 if (I915_READ(VLV_DP_C) & DP_DETECTED ||
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014557 intel_dp_is_edp(dev, PORT_C))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014558 intel_dp_init(dev, VLV_DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053014559
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014560 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014561 /* eDP not supported on port D, so don't check VBT */
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014562 if (I915_READ(CHV_HDMID) & SDVO_DETECTED)
14563 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
14564 if (I915_READ(CHV_DP_D) & DP_DETECTED)
14565 intel_dp_init(dev, CHV_DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014566 }
14567
Jani Nikula3cfca972013-08-27 15:12:26 +030014568 intel_dsi_init(dev);
Daniel Vetter09da55d2015-07-07 11:44:32 +020014569 } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014570 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080014571
Paulo Zanonie2debe92013-02-18 19:00:27 -030014572 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014573 DRM_DEBUG_KMS("probing SDVOB\n");
Ville Syrjälä2a5c0832015-11-06 21:29:59 +020014574 found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B);
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014575 if (!found && IS_G4X(dev)) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014576 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014577 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014578 }
Ma Ling27185ae2009-08-24 13:50:23 +080014579
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014580 if (!found && IS_G4X(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014581 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080014582 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014583
14584 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014585
Paulo Zanonie2debe92013-02-18 19:00:27 -030014586 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014587 DRM_DEBUG_KMS("probing SDVOC\n");
Ville Syrjälä2a5c0832015-11-06 21:29:59 +020014588 found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014589 }
Ma Ling27185ae2009-08-24 13:50:23 +080014590
Paulo Zanonie2debe92013-02-18 19:00:27 -030014591 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014592
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014593 if (IS_G4X(dev)) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014594 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014595 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014596 }
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014597 if (IS_G4X(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014598 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080014599 }
Ma Ling27185ae2009-08-24 13:50:23 +080014600
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014601 if (IS_G4X(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030014602 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014603 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070014604 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014605 intel_dvo_init(dev);
14606
Zhenyu Wang103a1962009-11-27 11:44:36 +080014607 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014608 intel_tv_init(dev);
14609
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080014610 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070014611
Damien Lespiaub2784e12014-08-05 11:29:37 +010014612 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010014613 encoder->base.possible_crtcs = encoder->crtc_mask;
14614 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020014615 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080014616 }
Chris Wilson47356eb2011-01-11 17:06:04 +000014617
Paulo Zanonidde86e22012-12-01 12:04:25 -020014618 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020014619
14620 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014621}
14622
14623static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
14624{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014625 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080014626 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080014627
Daniel Vetteref2d6332014-02-10 18:00:38 +010014628 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014629 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010014630 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014631 drm_gem_object_unreference(&intel_fb->obj->base);
14632 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080014633 kfree(intel_fb);
14634}
14635
14636static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000014637 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080014638 unsigned int *handle)
14639{
14640 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000014641 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080014642
Chris Wilsoncc917ab2015-10-13 14:22:26 +010014643 if (obj->userptr.mm) {
14644 DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n");
14645 return -EINVAL;
14646 }
14647
Chris Wilson05394f32010-11-08 19:18:58 +000014648 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080014649}
14650
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014651static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
14652 struct drm_file *file,
14653 unsigned flags, unsigned color,
14654 struct drm_clip_rect *clips,
14655 unsigned num_clips)
14656{
14657 struct drm_device *dev = fb->dev;
14658 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
14659 struct drm_i915_gem_object *obj = intel_fb->obj;
14660
14661 mutex_lock(&dev->struct_mutex);
Paulo Zanoni74b4ea12015-07-14 16:29:14 -030014662 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014663 mutex_unlock(&dev->struct_mutex);
14664
14665 return 0;
14666}
14667
Jesse Barnes79e53942008-11-07 14:24:08 -080014668static const struct drm_framebuffer_funcs intel_fb_funcs = {
14669 .destroy = intel_user_framebuffer_destroy,
14670 .create_handle = intel_user_framebuffer_create_handle,
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014671 .dirty = intel_user_framebuffer_dirty,
Jesse Barnes79e53942008-11-07 14:24:08 -080014672};
14673
Damien Lespiaub3218032015-02-27 11:15:18 +000014674static
14675u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
14676 uint32_t pixel_format)
14677{
14678 u32 gen = INTEL_INFO(dev)->gen;
14679
14680 if (gen >= 9) {
14681 /* "The stride in bytes must not exceed the of the size of 8K
14682 * pixels and 32K bytes."
14683 */
14684 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
Wayne Boyer666a4532015-12-09 12:29:35 -080014685 } else if (gen >= 5 && !IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
Damien Lespiaub3218032015-02-27 11:15:18 +000014686 return 32*1024;
14687 } else if (gen >= 4) {
14688 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14689 return 16*1024;
14690 else
14691 return 32*1024;
14692 } else if (gen >= 3) {
14693 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14694 return 8*1024;
14695 else
14696 return 16*1024;
14697 } else {
14698 /* XXX DSPC is limited to 4k tiled */
14699 return 8*1024;
14700 }
14701}
14702
Daniel Vetterb5ea6422014-03-02 21:18:00 +010014703static int intel_framebuffer_init(struct drm_device *dev,
14704 struct intel_framebuffer *intel_fb,
14705 struct drm_mode_fb_cmd2 *mode_cmd,
14706 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080014707{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +000014708 unsigned int aligned_height;
Jesse Barnes79e53942008-11-07 14:24:08 -080014709 int ret;
Damien Lespiaub3218032015-02-27 11:15:18 +000014710 u32 pitch_limit, stride_alignment;
Jesse Barnes79e53942008-11-07 14:24:08 -080014711
Daniel Vetterdd4916c2013-10-09 21:23:51 +020014712 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
14713
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014714 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
14715 /* Enforce that fb modifier and tiling mode match, but only for
14716 * X-tiled. This is needed for FBC. */
14717 if (!!(obj->tiling_mode == I915_TILING_X) !=
14718 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
14719 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
14720 return -EINVAL;
14721 }
14722 } else {
14723 if (obj->tiling_mode == I915_TILING_X)
14724 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
14725 else if (obj->tiling_mode == I915_TILING_Y) {
14726 DRM_DEBUG("No Y tiling for legacy addfb\n");
14727 return -EINVAL;
14728 }
14729 }
14730
Tvrtko Ursulin9a8f0a12015-02-27 11:15:24 +000014731 /* Passed in modifier sanity checking. */
14732 switch (mode_cmd->modifier[0]) {
14733 case I915_FORMAT_MOD_Y_TILED:
14734 case I915_FORMAT_MOD_Yf_TILED:
14735 if (INTEL_INFO(dev)->gen < 9) {
14736 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
14737 mode_cmd->modifier[0]);
14738 return -EINVAL;
14739 }
14740 case DRM_FORMAT_MOD_NONE:
14741 case I915_FORMAT_MOD_X_TILED:
14742 break;
14743 default:
Jesse Barnesc0f40422015-03-23 12:43:50 -070014744 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
14745 mode_cmd->modifier[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010014746 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014747 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014748
Damien Lespiaub3218032015-02-27 11:15:18 +000014749 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
14750 mode_cmd->pixel_format);
14751 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
14752 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
14753 mode_cmd->pitches[0], stride_alignment);
Chris Wilson57cd6502010-08-08 12:34:44 +010014754 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014755 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014756
Damien Lespiaub3218032015-02-27 11:15:18 +000014757 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
14758 mode_cmd->pixel_format);
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014759 if (mode_cmd->pitches[0] > pitch_limit) {
Damien Lespiaub3218032015-02-27 11:15:18 +000014760 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
14761 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014762 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014763 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014764 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014765 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014766
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014767 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014768 mode_cmd->pitches[0] != obj->stride) {
14769 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
14770 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014771 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014772 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014773
Ville Syrjälä57779d02012-10-31 17:50:14 +020014774 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014775 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020014776 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014777 case DRM_FORMAT_RGB565:
14778 case DRM_FORMAT_XRGB8888:
14779 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014780 break;
14781 case DRM_FORMAT_XRGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014782 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014783 DRM_DEBUG("unsupported pixel format: %s\n",
14784 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014785 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014786 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020014787 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +020014788 case DRM_FORMAT_ABGR8888:
Wayne Boyer666a4532015-12-09 12:29:35 -080014789 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
14790 INTEL_INFO(dev)->gen < 9) {
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014791 DRM_DEBUG("unsupported pixel format: %s\n",
14792 drm_get_format_name(mode_cmd->pixel_format));
14793 return -EINVAL;
14794 }
14795 break;
14796 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014797 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014798 case DRM_FORMAT_XBGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014799 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014800 DRM_DEBUG("unsupported pixel format: %s\n",
14801 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014802 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014803 }
Jesse Barnesb5626742011-06-24 12:19:27 -070014804 break;
Damien Lespiau75312082015-05-15 19:06:01 +010014805 case DRM_FORMAT_ABGR2101010:
Wayne Boyer666a4532015-12-09 12:29:35 -080014806 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
Damien Lespiau75312082015-05-15 19:06:01 +010014807 DRM_DEBUG("unsupported pixel format: %s\n",
14808 drm_get_format_name(mode_cmd->pixel_format));
14809 return -EINVAL;
14810 }
14811 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020014812 case DRM_FORMAT_YUYV:
14813 case DRM_FORMAT_UYVY:
14814 case DRM_FORMAT_YVYU:
14815 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014816 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014817 DRM_DEBUG("unsupported pixel format: %s\n",
14818 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014819 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014820 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014821 break;
14822 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014823 DRM_DEBUG("unsupported pixel format: %s\n",
14824 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010014825 return -EINVAL;
14826 }
14827
Ville Syrjälä90f9a332012-10-31 17:50:19 +020014828 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
14829 if (mode_cmd->offsets[0] != 0)
14830 return -EINVAL;
14831
Damien Lespiauec2c9812015-01-20 12:51:45 +000014832 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +000014833 mode_cmd->pixel_format,
14834 mode_cmd->modifier[0]);
Daniel Vetter53155c02013-10-09 21:55:33 +020014835 /* FIXME drm helper for size checks (especially planar formats)? */
14836 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
14837 return -EINVAL;
14838
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014839 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
14840 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020014841 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014842
Jesse Barnes79e53942008-11-07 14:24:08 -080014843 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
14844 if (ret) {
14845 DRM_ERROR("framebuffer init failed %d\n", ret);
14846 return ret;
14847 }
14848
Jesse Barnes79e53942008-11-07 14:24:08 -080014849 return 0;
14850}
14851
Jesse Barnes79e53942008-11-07 14:24:08 -080014852static struct drm_framebuffer *
14853intel_user_framebuffer_create(struct drm_device *dev,
14854 struct drm_file *filp,
Ville Syrjälä1eb834512015-11-11 19:11:29 +020014855 const struct drm_mode_fb_cmd2 *user_mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080014856{
Lukas Wunnerdcb13942015-07-04 11:50:58 +020014857 struct drm_framebuffer *fb;
Chris Wilson05394f32010-11-08 19:18:58 +000014858 struct drm_i915_gem_object *obj;
Ville Syrjälä76dc3762015-11-11 19:11:28 +020014859 struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd;
Jesse Barnes79e53942008-11-07 14:24:08 -080014860
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014861 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
Ville Syrjälä76dc3762015-11-11 19:11:28 +020014862 mode_cmd.handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000014863 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010014864 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080014865
Daniel Vetter92907cb2015-11-23 09:04:05 +010014866 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
Lukas Wunnerdcb13942015-07-04 11:50:58 +020014867 if (IS_ERR(fb))
14868 drm_gem_object_unreference_unlocked(&obj->base);
14869
14870 return fb;
Jesse Barnes79e53942008-11-07 14:24:08 -080014871}
14872
Daniel Vetter06957262015-08-10 13:34:08 +020014873#ifndef CONFIG_DRM_FBDEV_EMULATION
Daniel Vetter0632fef2013-10-08 17:44:49 +020014874static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020014875{
14876}
14877#endif
14878
Jesse Barnes79e53942008-11-07 14:24:08 -080014879static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080014880 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020014881 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080014882 .atomic_check = intel_atomic_check,
14883 .atomic_commit = intel_atomic_commit,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +020014884 .atomic_state_alloc = intel_atomic_state_alloc,
14885 .atomic_state_clear = intel_atomic_state_clear,
Jesse Barnes79e53942008-11-07 14:24:08 -080014886};
14887
Jesse Barnese70236a2009-09-21 10:42:27 -070014888/* Set up chip specific display functions */
14889static void intel_init_display(struct drm_device *dev)
14890{
14891 struct drm_i915_private *dev_priv = dev->dev_private;
14892
Daniel Vetteree9300b2013-06-03 22:40:22 +020014893 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
14894 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030014895 else if (IS_CHERRYVIEW(dev))
14896 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020014897 else if (IS_VALLEYVIEW(dev))
14898 dev_priv->display.find_dpll = vlv_find_best_dpll;
14899 else if (IS_PINEVIEW(dev))
14900 dev_priv->display.find_dpll = pnv_find_best_dpll;
14901 else
14902 dev_priv->display.find_dpll = i9xx_find_best_dpll;
14903
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014904 if (INTEL_INFO(dev)->gen >= 9) {
14905 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014906 dev_priv->display.get_initial_plane_config =
14907 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014908 dev_priv->display.crtc_compute_clock =
14909 haswell_crtc_compute_clock;
14910 dev_priv->display.crtc_enable = haswell_crtc_enable;
14911 dev_priv->display.crtc_disable = haswell_crtc_disable;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014912 dev_priv->display.update_primary_plane =
14913 skylake_update_primary_plane;
14914 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014915 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014916 dev_priv->display.get_initial_plane_config =
14917 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020014918 dev_priv->display.crtc_compute_clock =
14919 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020014920 dev_priv->display.crtc_enable = haswell_crtc_enable;
14921 dev_priv->display.crtc_disable = haswell_crtc_disable;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014922 dev_priv->display.update_primary_plane =
14923 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030014924 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014925 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014926 dev_priv->display.get_initial_plane_config =
14927 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020014928 dev_priv->display.crtc_compute_clock =
14929 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014930 dev_priv->display.crtc_enable = ironlake_crtc_enable;
14931 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014932 dev_priv->display.update_primary_plane =
14933 ironlake_update_primary_plane;
Wayne Boyer666a4532015-12-09 12:29:35 -080014934 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Jesse Barnes89b667f2013-04-18 14:51:36 -070014935 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014936 dev_priv->display.get_initial_plane_config =
14937 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014938 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014939 dev_priv->display.crtc_enable = valleyview_crtc_enable;
14940 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014941 dev_priv->display.update_primary_plane =
14942 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014943 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014944 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014945 dev_priv->display.get_initial_plane_config =
14946 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014947 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014948 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14949 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014950 dev_priv->display.update_primary_plane =
14951 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014952 }
Jesse Barnese70236a2009-09-21 10:42:27 -070014953
Jesse Barnese70236a2009-09-21 10:42:27 -070014954 /* Returns the core display clock speed */
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070014955 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
Ville Syrjälä1652d192015-03-31 14:12:01 +030014956 dev_priv->display.get_display_clock_speed =
14957 skylake_get_display_clock_speed;
Bob Paauweacd3f3d2015-06-23 14:14:26 -070014958 else if (IS_BROXTON(dev))
14959 dev_priv->display.get_display_clock_speed =
14960 broxton_get_display_clock_speed;
Ville Syrjälä1652d192015-03-31 14:12:01 +030014961 else if (IS_BROADWELL(dev))
14962 dev_priv->display.get_display_clock_speed =
14963 broadwell_get_display_clock_speed;
14964 else if (IS_HASWELL(dev))
14965 dev_priv->display.get_display_clock_speed =
14966 haswell_get_display_clock_speed;
Wayne Boyer666a4532015-12-09 12:29:35 -080014967 else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070014968 dev_priv->display.get_display_clock_speed =
14969 valleyview_get_display_clock_speed;
Ville Syrjäläb37a6432015-03-31 14:11:54 +030014970 else if (IS_GEN5(dev))
14971 dev_priv->display.get_display_clock_speed =
14972 ilk_get_display_clock_speed;
Ville Syrjäläa7c66cd2015-03-31 14:11:56 +030014973 else if (IS_I945G(dev) || IS_BROADWATER(dev) ||
Ville Syrjälä34edce22015-05-22 11:22:33 +030014974 IS_GEN6(dev) || IS_IVYBRIDGE(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014975 dev_priv->display.get_display_clock_speed =
14976 i945_get_display_clock_speed;
Ville Syrjälä34edce22015-05-22 11:22:33 +030014977 else if (IS_GM45(dev))
14978 dev_priv->display.get_display_clock_speed =
14979 gm45_get_display_clock_speed;
14980 else if (IS_CRESTLINE(dev))
14981 dev_priv->display.get_display_clock_speed =
14982 i965gm_get_display_clock_speed;
14983 else if (IS_PINEVIEW(dev))
14984 dev_priv->display.get_display_clock_speed =
14985 pnv_get_display_clock_speed;
14986 else if (IS_G33(dev) || IS_G4X(dev))
14987 dev_priv->display.get_display_clock_speed =
14988 g33_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070014989 else if (IS_I915G(dev))
14990 dev_priv->display.get_display_clock_speed =
14991 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020014992 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014993 dev_priv->display.get_display_clock_speed =
14994 i9xx_misc_get_display_clock_speed;
14995 else if (IS_I915GM(dev))
14996 dev_priv->display.get_display_clock_speed =
14997 i915gm_get_display_clock_speed;
14998 else if (IS_I865G(dev))
14999 dev_priv->display.get_display_clock_speed =
15000 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020015001 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070015002 dev_priv->display.get_display_clock_speed =
Ville Syrjälä1b1d2712015-05-22 11:22:31 +030015003 i85x_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030015004 else { /* 830 */
15005 WARN(!IS_I830(dev), "Unknown platform. Assuming 133 MHz CDCLK\n");
Jesse Barnese70236a2009-09-21 10:42:27 -070015006 dev_priv->display.get_display_clock_speed =
15007 i830_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030015008 }
Jesse Barnese70236a2009-09-21 10:42:27 -070015009
Jani Nikula7c10a2b2014-10-27 16:26:43 +020015010 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015011 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015012 } else if (IS_GEN6(dev)) {
15013 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015014 } else if (IS_IVYBRIDGE(dev)) {
15015 /* FIXME: detect B0+ stepping and use auto training */
15016 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030015017 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015018 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020015019 if (IS_BROADWELL(dev)) {
15020 dev_priv->display.modeset_commit_cdclk =
15021 broadwell_modeset_commit_cdclk;
15022 dev_priv->display.modeset_calc_cdclk =
15023 broadwell_modeset_calc_cdclk;
15024 }
Wayne Boyer666a4532015-12-09 12:29:35 -080015025 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020015026 dev_priv->display.modeset_commit_cdclk =
15027 valleyview_modeset_commit_cdclk;
15028 dev_priv->display.modeset_calc_cdclk =
15029 valleyview_modeset_calc_cdclk;
Vandana Kannanf8437dd12014-11-24 13:37:39 +053015030 } else if (IS_BROXTON(dev)) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020015031 dev_priv->display.modeset_commit_cdclk =
15032 broxton_modeset_commit_cdclk;
15033 dev_priv->display.modeset_calc_cdclk =
15034 broxton_modeset_calc_cdclk;
Jesse Barnese70236a2009-09-21 10:42:27 -070015035 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070015036
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070015037 switch (INTEL_INFO(dev)->gen) {
15038 case 2:
15039 dev_priv->display.queue_flip = intel_gen2_queue_flip;
15040 break;
15041
15042 case 3:
15043 dev_priv->display.queue_flip = intel_gen3_queue_flip;
15044 break;
15045
15046 case 4:
15047 case 5:
15048 dev_priv->display.queue_flip = intel_gen4_queue_flip;
15049 break;
15050
15051 case 6:
15052 dev_priv->display.queue_flip = intel_gen6_queue_flip;
15053 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070015054 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070015055 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070015056 dev_priv->display.queue_flip = intel_gen7_queue_flip;
15057 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000015058 case 9:
Tvrtko Ursulinba343e02015-02-10 17:16:12 +000015059 /* Drop through - unsupported since execlist only. */
15060 default:
15061 /* Default just returns -ENODEV to indicate unsupported */
15062 dev_priv->display.queue_flip = intel_default_queue_flip;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070015063 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020015064
Ville Syrjäläe39b9992014-09-04 14:53:14 +030015065 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070015066}
15067
Jesse Barnesb690e962010-07-19 13:53:12 -070015068/*
15069 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
15070 * resume, or other times. This quirk makes sure that's the case for
15071 * affected systems.
15072 */
Akshay Joshi0206e352011-08-16 15:34:10 -040015073static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070015074{
15075 struct drm_i915_private *dev_priv = dev->dev_private;
15076
15077 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020015078 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070015079}
15080
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030015081static void quirk_pipeb_force(struct drm_device *dev)
15082{
15083 struct drm_i915_private *dev_priv = dev->dev_private;
15084
15085 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
15086 DRM_INFO("applying pipe b force quirk\n");
15087}
15088
Keith Packard435793d2011-07-12 14:56:22 -070015089/*
15090 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
15091 */
15092static void quirk_ssc_force_disable(struct drm_device *dev)
15093{
15094 struct drm_i915_private *dev_priv = dev->dev_private;
15095 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020015096 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070015097}
15098
Carsten Emde4dca20e2012-03-15 15:56:26 +010015099/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010015100 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
15101 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010015102 */
15103static void quirk_invert_brightness(struct drm_device *dev)
15104{
15105 struct drm_i915_private *dev_priv = dev->dev_private;
15106 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020015107 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070015108}
15109
Scot Doyle9c72cc62014-07-03 23:27:50 +000015110/* Some VBT's incorrectly indicate no backlight is present */
15111static void quirk_backlight_present(struct drm_device *dev)
15112{
15113 struct drm_i915_private *dev_priv = dev->dev_private;
15114 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
15115 DRM_INFO("applying backlight present quirk\n");
15116}
15117
Jesse Barnesb690e962010-07-19 13:53:12 -070015118struct intel_quirk {
15119 int device;
15120 int subsystem_vendor;
15121 int subsystem_device;
15122 void (*hook)(struct drm_device *dev);
15123};
15124
Egbert Eich5f85f172012-10-14 15:46:38 +020015125/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
15126struct intel_dmi_quirk {
15127 void (*hook)(struct drm_device *dev);
15128 const struct dmi_system_id (*dmi_id_list)[];
15129};
15130
15131static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
15132{
15133 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
15134 return 1;
15135}
15136
15137static const struct intel_dmi_quirk intel_dmi_quirks[] = {
15138 {
15139 .dmi_id_list = &(const struct dmi_system_id[]) {
15140 {
15141 .callback = intel_dmi_reverse_brightness,
15142 .ident = "NCR Corporation",
15143 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
15144 DMI_MATCH(DMI_PRODUCT_NAME, ""),
15145 },
15146 },
15147 { } /* terminating entry */
15148 },
15149 .hook = quirk_invert_brightness,
15150 },
15151};
15152
Ben Widawskyc43b5632012-04-16 14:07:40 -070015153static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070015154 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
15155 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
15156
Jesse Barnesb690e962010-07-19 13:53:12 -070015157 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
15158 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
15159
Ville Syrjälä5f080c02014-08-15 01:22:06 +030015160 /* 830 needs to leave pipe A & dpll A up */
15161 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
15162
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030015163 /* 830 needs to leave pipe B & dpll B up */
15164 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
15165
Keith Packard435793d2011-07-12 14:56:22 -070015166 /* Lenovo U160 cannot use SSC on LVDS */
15167 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020015168
15169 /* Sony Vaio Y cannot use SSC on LVDS */
15170 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010015171
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010015172 /* Acer Aspire 5734Z must invert backlight brightness */
15173 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
15174
15175 /* Acer/eMachines G725 */
15176 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
15177
15178 /* Acer/eMachines e725 */
15179 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
15180
15181 /* Acer/Packard Bell NCL20 */
15182 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
15183
15184 /* Acer Aspire 4736Z */
15185 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020015186
15187 /* Acer Aspire 5336 */
15188 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000015189
15190 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
15191 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000015192
Scot Doyledfb3d47b2014-08-21 16:08:02 +000015193 /* Acer C720 Chromebook (Core i3 4005U) */
15194 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
15195
jens steinb2a96012014-10-28 20:25:53 +010015196 /* Apple Macbook 2,1 (Core 2 T7400) */
15197 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
15198
Jani Nikula1b9448b02015-11-05 11:49:59 +020015199 /* Apple Macbook 4,1 */
15200 { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present },
15201
Scot Doyled4967d82014-07-03 23:27:52 +000015202 /* Toshiba CB35 Chromebook (Celeron 2955U) */
15203 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000015204
15205 /* HP Chromebook 14 (Celeron 2955U) */
15206 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020015207
15208 /* Dell Chromebook 11 */
15209 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jani Nikula9be64ee2015-10-30 14:50:24 +020015210
15211 /* Dell Chromebook 11 (2015 version) */
15212 { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070015213};
15214
15215static void intel_init_quirks(struct drm_device *dev)
15216{
15217 struct pci_dev *d = dev->pdev;
15218 int i;
15219
15220 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
15221 struct intel_quirk *q = &intel_quirks[i];
15222
15223 if (d->device == q->device &&
15224 (d->subsystem_vendor == q->subsystem_vendor ||
15225 q->subsystem_vendor == PCI_ANY_ID) &&
15226 (d->subsystem_device == q->subsystem_device ||
15227 q->subsystem_device == PCI_ANY_ID))
15228 q->hook(dev);
15229 }
Egbert Eich5f85f172012-10-14 15:46:38 +020015230 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
15231 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
15232 intel_dmi_quirks[i].hook(dev);
15233 }
Jesse Barnesb690e962010-07-19 13:53:12 -070015234}
15235
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015236/* Disable the VGA plane that we never use */
15237static void i915_disable_vga(struct drm_device *dev)
15238{
15239 struct drm_i915_private *dev_priv = dev->dev_private;
15240 u8 sr1;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020015241 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015242
Ville Syrjälä2b37c612014-01-22 21:32:38 +020015243 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015244 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070015245 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015246 sr1 = inb(VGA_SR_DATA);
15247 outb(sr1 | 1<<5, VGA_SR_DATA);
15248 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
15249 udelay(300);
15250
Ville Syrjälä01f5a622014-12-16 18:38:37 +020015251 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015252 POSTING_READ(vga_reg);
15253}
15254
Daniel Vetterf8175862012-04-10 15:50:11 +020015255void intel_modeset_init_hw(struct drm_device *dev)
15256{
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010015257 struct drm_i915_private *dev_priv = dev->dev_private;
15258
Ville Syrjäläb6283052015-06-03 15:45:07 +030015259 intel_update_cdclk(dev);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010015260
15261 dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq;
15262
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030015263 intel_prepare_ddi(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020015264 intel_init_clock_gating(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +020015265 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020015266}
15267
Jesse Barnes79e53942008-11-07 14:24:08 -080015268void intel_modeset_init(struct drm_device *dev)
15269{
Jesse Barnes652c3932009-08-17 13:31:43 -070015270 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000015271 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000015272 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080015273 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080015274
15275 drm_mode_config_init(dev);
15276
15277 dev->mode_config.min_width = 0;
15278 dev->mode_config.min_height = 0;
15279
Dave Airlie019d96c2011-09-29 16:20:42 +010015280 dev->mode_config.preferred_depth = 24;
15281 dev->mode_config.prefer_shadow = 1;
15282
Tvrtko Ursulin25bab382015-02-10 17:16:16 +000015283 dev->mode_config.allow_fb_modifiers = true;
15284
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020015285 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080015286
Jesse Barnesb690e962010-07-19 13:53:12 -070015287 intel_init_quirks(dev);
15288
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030015289 intel_init_pm(dev);
15290
Ben Widawskye3c74752013-04-05 13:12:39 -070015291 if (INTEL_INFO(dev)->num_pipes == 0)
15292 return;
15293
Lukas Wunner69f92f62015-07-15 13:57:35 +020015294 /*
15295 * There may be no VBT; and if the BIOS enabled SSC we can
15296 * just keep using it to avoid unnecessary flicker. Whereas if the
15297 * BIOS isn't using it, don't assume it will work even if the VBT
15298 * indicates as much.
15299 */
15300 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
15301 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
15302 DREF_SSC1_ENABLE);
15303
15304 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
15305 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
15306 bios_lvds_use_ssc ? "en" : "dis",
15307 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
15308 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
15309 }
15310 }
15311
Jesse Barnese70236a2009-09-21 10:42:27 -070015312 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020015313 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070015314
Chris Wilsona6c45cf2010-09-17 00:32:17 +010015315 if (IS_GEN2(dev)) {
15316 dev->mode_config.max_width = 2048;
15317 dev->mode_config.max_height = 2048;
15318 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070015319 dev->mode_config.max_width = 4096;
15320 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080015321 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010015322 dev->mode_config.max_width = 8192;
15323 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080015324 }
Damien Lespiau068be562014-03-28 14:17:49 +000015325
Ville Syrjälädc41c152014-08-13 11:57:05 +030015326 if (IS_845G(dev) || IS_I865G(dev)) {
15327 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
15328 dev->mode_config.cursor_height = 1023;
15329 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000015330 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
15331 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
15332 } else {
15333 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
15334 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
15335 }
15336
Ben Widawsky5d4545a2013-01-17 12:45:15 -080015337 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080015338
Zhao Yakui28c97732009-10-09 11:39:41 +080015339 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070015340 INTEL_INFO(dev)->num_pipes,
15341 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080015342
Damien Lespiau055e3932014-08-18 13:49:10 +010015343 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000015344 intel_crtc_init(dev, pipe);
Damien Lespiau3bdcfc02015-02-28 14:54:09 +000015345 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +000015346 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070015347 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030015348 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000015349 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070015350 }
Jesse Barnes79e53942008-11-07 14:24:08 -080015351 }
15352
Ville Syrjäläbfa7df02015-09-24 23:29:18 +030015353 intel_update_czclk(dev_priv);
15354 intel_update_cdclk(dev);
15355
Daniel Vettere72f9fb2013-06-05 13:34:06 +020015356 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010015357
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015358 /* Just disable it once at startup */
15359 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080015360 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000015361
Daniel Vetter6e9f7982014-05-29 23:54:47 +020015362 drm_modeset_lock_all(dev);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015363 intel_modeset_setup_hw_state(dev);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020015364 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080015365
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015366 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorsteeebeac2015-07-14 12:33:29 +020015367 struct intel_initial_plane_config plane_config = {};
15368
Jesse Barnes46f297f2014-03-07 08:57:48 -080015369 if (!crtc->active)
15370 continue;
15371
Jesse Barnes46f297f2014-03-07 08:57:48 -080015372 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080015373 * Note that reserving the BIOS fb up front prevents us
15374 * from stuffing other stolen allocations like the ring
15375 * on top. This prevents some ugliness at boot time, and
15376 * can even allow for smooth boot transitions if the BIOS
15377 * fb is large enough for the active pipe configuration.
15378 */
Maarten Lankhorsteeebeac2015-07-14 12:33:29 +020015379 dev_priv->display.get_initial_plane_config(crtc,
15380 &plane_config);
15381
15382 /*
15383 * If the fb is shared between multiple heads, we'll
15384 * just get the first one.
15385 */
15386 intel_find_initial_plane_obj(crtc, &plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080015387 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010015388}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080015389
Daniel Vetter7fad7982012-07-04 17:51:47 +020015390static void intel_enable_pipe_a(struct drm_device *dev)
15391{
15392 struct intel_connector *connector;
15393 struct drm_connector *crt = NULL;
15394 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030015395 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020015396
15397 /* We can't just switch on the pipe A, we need to set things up with a
15398 * proper mode and output configuration. As a gross hack, enable pipe A
15399 * by enabling the load detect pipe once. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015400 for_each_intel_connector(dev, connector) {
Daniel Vetter7fad7982012-07-04 17:51:47 +020015401 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
15402 crt = &connector->base;
15403 break;
15404 }
15405 }
15406
15407 if (!crt)
15408 return;
15409
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030015410 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020015411 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
Daniel Vetter7fad7982012-07-04 17:51:47 +020015412}
15413
Daniel Vetterfa555832012-10-10 23:14:00 +020015414static bool
15415intel_check_plane_mapping(struct intel_crtc *crtc)
15416{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070015417 struct drm_device *dev = crtc->base.dev;
15418 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä649636e2015-09-22 19:50:01 +030015419 u32 val;
Daniel Vetterfa555832012-10-10 23:14:00 +020015420
Ben Widawsky7eb552a2013-03-13 14:05:41 -070015421 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020015422 return true;
15423
Ville Syrjälä649636e2015-09-22 19:50:01 +030015424 val = I915_READ(DSPCNTR(!crtc->plane));
Daniel Vetterfa555832012-10-10 23:14:00 +020015425
15426 if ((val & DISPLAY_PLANE_ENABLE) &&
15427 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
15428 return false;
15429
15430 return true;
15431}
15432
Ville Syrjälä02e93c32015-08-26 19:39:19 +030015433static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
15434{
15435 struct drm_device *dev = crtc->base.dev;
15436 struct intel_encoder *encoder;
15437
15438 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
15439 return true;
15440
15441 return false;
15442}
15443
Daniel Vetter24929352012-07-02 20:28:59 +020015444static void intel_sanitize_crtc(struct intel_crtc *crtc)
15445{
15446 struct drm_device *dev = crtc->base.dev;
15447 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020015448 i915_reg_t reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020015449
Daniel Vetter24929352012-07-02 20:28:59 +020015450 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter24929352012-07-02 20:28:59 +020015451 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
15452
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030015453 /* restore vblank interrupts to correct state */
Daniel Vetter96256042015-02-13 21:03:42 +010015454 drm_crtc_vblank_reset(&crtc->base);
Ville Syrjäläd297e102014-08-06 14:50:01 +030015455 if (crtc->active) {
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015456 struct intel_plane *plane;
15457
Daniel Vetter96256042015-02-13 21:03:42 +010015458 drm_crtc_vblank_on(&crtc->base);
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015459
15460 /* Disable everything but the primary plane */
15461 for_each_intel_plane_on_crtc(dev, crtc, plane) {
15462 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
15463 continue;
15464
15465 plane->disable_plane(&plane->base, &crtc->base);
15466 }
Daniel Vetter96256042015-02-13 21:03:42 +010015467 }
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030015468
Daniel Vetter24929352012-07-02 20:28:59 +020015469 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020015470 * disable the crtc (and hence change the state) if it is wrong. Note
15471 * that gen4+ has a fixed plane -> pipe mapping. */
15472 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020015473 bool plane;
15474
Daniel Vetter24929352012-07-02 20:28:59 +020015475 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
15476 crtc->base.base.id);
15477
15478 /* Pipe has the wrong plane attached and the plane is active.
15479 * Temporarily change the plane mapping and disable everything
15480 * ... */
15481 plane = crtc->plane;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030015482 to_intel_plane_state(crtc->base.primary->state)->visible = true;
Daniel Vetter24929352012-07-02 20:28:59 +020015483 crtc->plane = !plane;
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015484 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020015485 crtc->plane = plane;
Daniel Vetter24929352012-07-02 20:28:59 +020015486 }
Daniel Vetter24929352012-07-02 20:28:59 +020015487
Daniel Vetter7fad7982012-07-04 17:51:47 +020015488 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
15489 crtc->pipe == PIPE_A && !crtc->active) {
15490 /* BIOS forgot to enable pipe A, this mostly happens after
15491 * resume. Force-enable the pipe to fix this, the update_dpms
15492 * call below we restore the pipe to the right state, but leave
15493 * the required bits on. */
15494 intel_enable_pipe_a(dev);
15495 }
15496
Daniel Vetter24929352012-07-02 20:28:59 +020015497 /* Adjust the state of the output pipe according to whether we
15498 * have active connectors/encoders. */
Ville Syrjälä02e93c32015-08-26 19:39:19 +030015499 if (!intel_crtc_has_encoders(crtc))
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015500 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020015501
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +020015502 if (crtc->active != crtc->base.state->active) {
Ville Syrjälä02e93c32015-08-26 19:39:19 +030015503 struct intel_encoder *encoder;
Daniel Vetter24929352012-07-02 20:28:59 +020015504
15505 /* This can happen either due to bugs in the get_hw_state
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015506 * functions or because of calls to intel_crtc_disable_noatomic,
15507 * or because the pipe is force-enabled due to the
Daniel Vetter24929352012-07-02 20:28:59 +020015508 * pipe A quirk. */
15509 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
15510 crtc->base.base.id,
Matt Roper83d65732015-02-25 13:12:16 -080015511 crtc->base.state->enable ? "enabled" : "disabled",
Daniel Vetter24929352012-07-02 20:28:59 +020015512 crtc->active ? "enabled" : "disabled");
15513
Maarten Lankhorst4be40c92015-07-14 13:45:32 +020015514 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, NULL) < 0);
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020015515 crtc->base.state->active = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020015516 crtc->base.enabled = crtc->active;
15517
15518 /* Because we only establish the connector -> encoder ->
15519 * crtc links if something is active, this means the
15520 * crtc is now deactivated. Break the links. connector
15521 * -> encoder links are only establish when things are
15522 * actually up, hence no need to break them. */
15523 WARN_ON(crtc->active);
15524
Maarten Lankhorst2d406bb2015-08-05 12:37:09 +020015525 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Daniel Vetter24929352012-07-02 20:28:59 +020015526 encoder->base.crtc = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015527 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020015528
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030015529 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010015530 /*
15531 * We start out with underrun reporting disabled to avoid races.
15532 * For correct bookkeeping mark this on active crtcs.
15533 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020015534 * Also on gmch platforms we dont have any hardware bits to
15535 * disable the underrun reporting. Which means we need to start
15536 * out with underrun reporting disabled also on inactive pipes,
15537 * since otherwise we'll complain about the garbage we read when
15538 * e.g. coming up after runtime pm.
15539 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010015540 * No protection against concurrent access is required - at
15541 * worst a fifo underrun happens which also sets this to false.
15542 */
15543 crtc->cpu_fifo_underrun_disabled = true;
15544 crtc->pch_fifo_underrun_disabled = true;
15545 }
Daniel Vetter24929352012-07-02 20:28:59 +020015546}
15547
15548static void intel_sanitize_encoder(struct intel_encoder *encoder)
15549{
15550 struct intel_connector *connector;
15551 struct drm_device *dev = encoder->base.dev;
Maarten Lankhorst873ffe62015-08-05 12:37:07 +020015552 bool active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020015553
15554 /* We need to check both for a crtc link (meaning that the
15555 * encoder is active and trying to read from a pipe) and the
15556 * pipe itself being active. */
15557 bool has_active_crtc = encoder->base.crtc &&
15558 to_intel_crtc(encoder->base.crtc)->active;
15559
Maarten Lankhorst873ffe62015-08-05 12:37:07 +020015560 for_each_intel_connector(dev, connector) {
15561 if (connector->base.encoder != &encoder->base)
15562 continue;
15563
15564 active = true;
15565 break;
15566 }
15567
15568 if (active && !has_active_crtc) {
Daniel Vetter24929352012-07-02 20:28:59 +020015569 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
15570 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015571 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020015572
15573 /* Connector is active, but has no active pipe. This is
15574 * fallout from our resume register restoring. Disable
15575 * the encoder manually again. */
15576 if (encoder->base.crtc) {
15577 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
15578 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015579 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020015580 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030015581 if (encoder->post_disable)
15582 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020015583 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020015584 encoder->base.crtc = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015585
15586 /* Inconsistent output/port/pipe state happens presumably due to
15587 * a bug in one of the get_hw_state functions. Or someplace else
15588 * in our code, like the register restore mess on resume. Clamp
15589 * things to off as a safer default. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015590 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020015591 if (connector->encoder != encoder)
15592 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020015593 connector->base.dpms = DRM_MODE_DPMS_OFF;
15594 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015595 }
15596 }
15597 /* Enabled encoders without active connectors will be fixed in
15598 * the crtc fixup. */
15599}
15600
Imre Deak04098752014-02-18 00:02:16 +020015601void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015602{
15603 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020015604 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015605
Imre Deak04098752014-02-18 00:02:16 +020015606 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
15607 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
15608 i915_disable_vga(dev);
15609 }
15610}
15611
15612void i915_redisable_vga(struct drm_device *dev)
15613{
15614 struct drm_i915_private *dev_priv = dev->dev_private;
15615
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030015616 /* This function can be called both from intel_modeset_setup_hw_state or
15617 * at a very early point in our resume sequence, where the power well
15618 * structures are not yet restored. Since this function is at a very
15619 * paranoid "someone might have enabled VGA while we were not looking"
15620 * level, just check if the power well is enabled instead of trying to
15621 * follow the "don't touch the power well if we don't need it" policy
15622 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015623 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030015624 return;
15625
Imre Deak04098752014-02-18 00:02:16 +020015626 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015627}
15628
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015629static bool primary_get_hw_state(struct intel_plane *plane)
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015630{
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015631 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015632
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015633 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015634}
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015635
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015636/* FIXME read out full plane state for all planes */
15637static void readout_plane_state(struct intel_crtc *crtc)
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015638{
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015639 struct drm_plane *primary = crtc->base.primary;
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015640 struct intel_plane_state *plane_state =
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015641 to_intel_plane_state(primary->state);
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015642
Matt Roper19b8d382015-09-24 15:53:17 -070015643 plane_state->visible = crtc->active &&
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015644 primary_get_hw_state(to_intel_plane(primary));
15645
15646 if (plane_state->visible)
15647 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015648}
15649
Daniel Vetter30e984d2013-06-05 13:34:17 +020015650static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020015651{
15652 struct drm_i915_private *dev_priv = dev->dev_private;
15653 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020015654 struct intel_crtc *crtc;
15655 struct intel_encoder *encoder;
15656 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020015657 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020015658
Maarten Lankhorst565602d2015-12-10 12:33:57 +010015659 dev_priv->active_crtcs = 0;
15660
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015661 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorst565602d2015-12-10 12:33:57 +010015662 struct intel_crtc_state *crtc_state = crtc->config;
15663 int pixclk = 0;
Daniel Vetter3b117c82013-04-17 20:15:07 +020015664
Maarten Lankhorst565602d2015-12-10 12:33:57 +010015665 __drm_atomic_helper_crtc_destroy_state(&crtc->base, &crtc_state->base);
15666 memset(crtc_state, 0, sizeof(*crtc_state));
15667 crtc_state->base.crtc = &crtc->base;
Daniel Vetter24929352012-07-02 20:28:59 +020015668
Maarten Lankhorst565602d2015-12-10 12:33:57 +010015669 crtc_state->base.active = crtc_state->base.enable =
15670 dev_priv->display.get_pipe_config(crtc, crtc_state);
15671
15672 crtc->base.enabled = crtc_state->base.enable;
15673 crtc->active = crtc_state->base.active;
15674
15675 if (crtc_state->base.active) {
15676 dev_priv->active_crtcs |= 1 << crtc->pipe;
15677
15678 if (IS_BROADWELL(dev_priv)) {
15679 pixclk = ilk_pipe_pixel_rate(crtc_state);
15680
15681 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
15682 if (crtc_state->ips_enabled)
15683 pixclk = DIV_ROUND_UP(pixclk * 100, 95);
15684 } else if (IS_VALLEYVIEW(dev_priv) ||
15685 IS_CHERRYVIEW(dev_priv) ||
15686 IS_BROXTON(dev_priv))
15687 pixclk = crtc_state->base.adjusted_mode.crtc_clock;
15688 else
15689 WARN_ON(dev_priv->display.modeset_calc_cdclk);
15690 }
15691
15692 dev_priv->min_pixclk[crtc->pipe] = pixclk;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030015693
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015694 readout_plane_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020015695
15696 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
15697 crtc->base.base.id,
15698 crtc->active ? "enabled" : "disabled");
15699 }
15700
Daniel Vetter53589012013-06-05 13:34:16 +020015701 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15702 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15703
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015704 pll->on = pll->get_hw_state(dev_priv, pll,
15705 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020015706 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015707 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015708 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015709 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020015710 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015711 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015712 }
Daniel Vetter53589012013-06-05 13:34:16 +020015713 }
Daniel Vetter53589012013-06-05 13:34:16 +020015714
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015715 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015716 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015717
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015718 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015719 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020015720 }
15721
Damien Lespiaub2784e12014-08-05 11:29:37 +010015722 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015723 pipe = 0;
15724
15725 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070015726 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15727 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015728 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020015729 } else {
15730 encoder->base.crtc = NULL;
15731 }
15732
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015733 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020015734 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015735 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020015736 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015737 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020015738 }
15739
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015740 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020015741 if (connector->get_hw_state(connector)) {
15742 connector->base.dpms = DRM_MODE_DPMS_ON;
Daniel Vetter24929352012-07-02 20:28:59 +020015743 connector->base.encoder = &connector->encoder->base;
15744 } else {
15745 connector->base.dpms = DRM_MODE_DPMS_OFF;
15746 connector->base.encoder = NULL;
15747 }
15748 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
15749 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030015750 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020015751 connector->base.encoder ? "enabled" : "disabled");
15752 }
Ville Syrjälä7f4c6282015-09-10 18:59:07 +030015753
15754 for_each_intel_crtc(dev, crtc) {
15755 crtc->base.hwmode = crtc->config->base.adjusted_mode;
15756
15757 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
15758 if (crtc->base.state->active) {
15759 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
15760 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
15761 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
15762
15763 /*
15764 * The initial mode needs to be set in order to keep
15765 * the atomic core happy. It wants a valid mode if the
15766 * crtc's enabled, so we do the above call.
15767 *
15768 * At this point some state updated by the connectors
15769 * in their ->detect() callback has not run yet, so
15770 * no recalculation can be done yet.
15771 *
15772 * Even if we could do a recalculation and modeset
15773 * right now it would cause a double modeset if
15774 * fbdev or userspace chooses a different initial mode.
15775 *
15776 * If that happens, someone indicated they wanted a
15777 * mode change, which means it's safe to do a full
15778 * recalculation.
15779 */
15780 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
Ville Syrjälä9eca68322015-09-10 18:59:10 +030015781
15782 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
15783 update_scanline_offset(crtc);
Ville Syrjälä7f4c6282015-09-10 18:59:07 +030015784 }
15785 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020015786}
15787
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015788/* Scan out the current hw modeset state,
15789 * and sanitizes it to the current state
15790 */
15791static void
15792intel_modeset_setup_hw_state(struct drm_device *dev)
Daniel Vetter30e984d2013-06-05 13:34:17 +020015793{
15794 struct drm_i915_private *dev_priv = dev->dev_private;
15795 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015796 struct intel_crtc *crtc;
15797 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020015798 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015799
15800 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020015801
15802 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010015803 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015804 intel_sanitize_encoder(encoder);
15805 }
15806
Damien Lespiau055e3932014-08-18 13:49:10 +010015807 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020015808 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15809 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015810 intel_dump_pipe_config(crtc, crtc->config,
15811 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020015812 }
Daniel Vetter9a935852012-07-05 22:34:27 +020015813
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020015814 intel_modeset_update_connector_atomic_state(dev);
15815
Daniel Vetter35c95372013-07-17 06:55:04 +020015816 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15817 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15818
15819 if (!pll->on || pll->active)
15820 continue;
15821
15822 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
15823
15824 pll->disable(dev_priv, pll);
15825 pll->on = false;
15826 }
15827
Wayne Boyer666a4532015-12-09 12:29:35 -080015828 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Ville Syrjälä6eb1a682015-06-24 22:00:03 +030015829 vlv_wm_get_hw_state(dev);
15830 else if (IS_GEN9(dev))
Pradeep Bhat30789992014-11-04 17:06:45 +000015831 skl_wm_get_hw_state(dev);
15832 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030015833 ilk_wm_get_hw_state(dev);
Maarten Lankhorst292b9902015-07-13 16:30:27 +020015834
15835 for_each_intel_crtc(dev, crtc) {
15836 unsigned long put_domains;
15837
15838 put_domains = modeset_get_crtc_power_domains(&crtc->base);
15839 if (WARN_ON(put_domains))
15840 modeset_put_power_domains(dev_priv, put_domains);
15841 }
15842 intel_display_set_init_power(dev_priv, false);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015843}
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030015844
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015845void intel_display_resume(struct drm_device *dev)
15846{
15847 struct drm_atomic_state *state = drm_atomic_state_alloc(dev);
15848 struct intel_connector *conn;
15849 struct intel_plane *plane;
15850 struct drm_crtc *crtc;
15851 int ret;
Daniel Vetterf30da182013-04-11 20:22:50 +020015852
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015853 if (!state)
15854 return;
15855
15856 state->acquire_ctx = dev->mode_config.acquire_ctx;
15857
15858 /* preserve complete old state, including dpll */
15859 intel_atomic_get_shared_dpll_state(state);
15860
15861 for_each_crtc(dev, crtc) {
15862 struct drm_crtc_state *crtc_state =
15863 drm_atomic_get_crtc_state(state, crtc);
15864
15865 ret = PTR_ERR_OR_ZERO(crtc_state);
15866 if (ret)
15867 goto err;
15868
15869 /* force a restore */
15870 crtc_state->mode_changed = true;
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010015871 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020015872
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015873 for_each_intel_plane(dev, plane) {
15874 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(state, &plane->base));
15875 if (ret)
15876 goto err;
15877 }
15878
15879 for_each_intel_connector(dev, conn) {
15880 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(state, &conn->base));
15881 if (ret)
15882 goto err;
15883 }
15884
15885 intel_modeset_setup_hw_state(dev);
15886
15887 i915_redisable_vga(dev);
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020015888 ret = drm_atomic_commit(state);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015889 if (!ret)
15890 return;
15891
15892err:
15893 DRM_ERROR("Restoring old state failed with %i\n", ret);
15894 drm_atomic_state_free(state);
Chris Wilson2c7111d2011-03-29 10:40:27 +010015895}
15896
15897void intel_modeset_gem_init(struct drm_device *dev)
15898{
Jesse Barnes484b41d2014-03-07 08:57:55 -080015899 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070015900 struct drm_i915_gem_object *obj;
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015901 int ret;
Jesse Barnes484b41d2014-03-07 08:57:55 -080015902
Imre Deakae484342014-03-31 15:10:44 +030015903 mutex_lock(&dev->struct_mutex);
15904 intel_init_gt_powersave(dev);
15905 mutex_unlock(&dev->struct_mutex);
15906
Chris Wilson1833b132012-05-09 11:56:28 +010015907 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020015908
15909 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080015910
15911 /*
15912 * Make sure any fbs we allocated at startup are properly
15913 * pinned & fenced. When we do the allocation it's too early
15914 * for this.
15915 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010015916 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070015917 obj = intel_fb_obj(c->primary->fb);
15918 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080015919 continue;
15920
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015921 mutex_lock(&dev->struct_mutex);
15922 ret = intel_pin_and_fence_fb_obj(c->primary,
15923 c->primary->fb,
Maarten Lankhorst7580d772015-08-18 13:40:06 +020015924 c->primary->state);
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015925 mutex_unlock(&dev->struct_mutex);
15926 if (ret) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080015927 DRM_ERROR("failed to pin boot fb on pipe %d\n",
15928 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100015929 drm_framebuffer_unreference(c->primary->fb);
15930 c->primary->fb = NULL;
Maarten Lankhorst36750f22015-06-01 12:49:54 +020015931 c->primary->crtc = c->primary->state->crtc = NULL;
Matt Roperafd65eb2015-02-03 13:10:04 -080015932 update_state_fb(c->primary);
Maarten Lankhorst36750f22015-06-01 12:49:54 +020015933 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
Jesse Barnes484b41d2014-03-07 08:57:55 -080015934 }
15935 }
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020015936
15937 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080015938}
15939
Imre Deak4932e2c2014-02-11 17:12:48 +020015940void intel_connector_unregister(struct intel_connector *intel_connector)
15941{
15942 struct drm_connector *connector = &intel_connector->base;
15943
15944 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010015945 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020015946}
15947
Jesse Barnes79e53942008-11-07 14:24:08 -080015948void intel_modeset_cleanup(struct drm_device *dev)
15949{
Jesse Barnes652c3932009-08-17 13:31:43 -070015950 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula19c80542015-12-16 12:48:16 +020015951 struct intel_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070015952
Imre Deak2eb52522014-11-19 15:30:05 +020015953 intel_disable_gt_powersave(dev);
15954
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020015955 intel_backlight_unregister(dev);
15956
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015957 /*
15958 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020015959 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015960 * experience fancy races otherwise.
15961 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020015962 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070015963
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015964 /*
15965 * Due to the hpd irq storm handling the hotplug work can re-arm the
15966 * poll handlers. Hence disable polling after hpd handling is shut down.
15967 */
Keith Packardf87ea762010-10-03 19:36:26 -070015968 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020015969
Jesse Barnes723bfd72010-10-07 16:01:13 -070015970 intel_unregister_dsm_handler();
15971
Paulo Zanoni7733b492015-07-07 15:26:04 -030015972 intel_fbc_disable(dev_priv);
Kristian Høgsberg69341a52009-11-11 12:19:17 -050015973
Chris Wilson1630fe72011-07-08 12:22:42 +010015974 /* flush any delayed tasks or pending work */
15975 flush_scheduled_work();
15976
Jani Nikuladb31af1d2013-11-08 16:48:53 +020015977 /* destroy the backlight and sysfs files before encoders/connectors */
Jani Nikula19c80542015-12-16 12:48:16 +020015978 for_each_intel_connector(dev, connector)
15979 connector->unregister(connector);
Paulo Zanonid9255d52013-09-26 20:05:59 -030015980
Jesse Barnes79e53942008-11-07 14:24:08 -080015981 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010015982
15983 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030015984
15985 mutex_lock(&dev->struct_mutex);
15986 intel_cleanup_gt_powersave(dev);
15987 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080015988}
15989
Dave Airlie28d52042009-09-21 14:33:58 +100015990/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080015991 * Return which encoder is currently attached for connector.
15992 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010015993struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080015994{
Chris Wilsondf0e9242010-09-09 16:20:55 +010015995 return &intel_attached_encoder(connector)->base;
15996}
Jesse Barnes79e53942008-11-07 14:24:08 -080015997
Chris Wilsondf0e9242010-09-09 16:20:55 +010015998void intel_connector_attach_encoder(struct intel_connector *connector,
15999 struct intel_encoder *encoder)
16000{
16001 connector->encoder = encoder;
16002 drm_mode_connector_attach_encoder(&connector->base,
16003 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080016004}
Dave Airlie28d52042009-09-21 14:33:58 +100016005
16006/*
16007 * set vga decode state - true == enable VGA decode
16008 */
16009int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
16010{
16011 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000016012 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100016013 u16 gmch_ctrl;
16014
Chris Wilson75fa0412014-02-07 18:37:02 -020016015 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
16016 DRM_ERROR("failed to read control word\n");
16017 return -EIO;
16018 }
16019
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020016020 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
16021 return 0;
16022
Dave Airlie28d52042009-09-21 14:33:58 +100016023 if (state)
16024 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
16025 else
16026 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020016027
16028 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
16029 DRM_ERROR("failed to write control word\n");
16030 return -EIO;
16031 }
16032
Dave Airlie28d52042009-09-21 14:33:58 +100016033 return 0;
16034}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016035
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016036struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030016037
16038 u32 power_well_driver;
16039
Chris Wilson63b66e52013-08-08 15:12:06 +020016040 int num_transcoders;
16041
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016042 struct intel_cursor_error_state {
16043 u32 control;
16044 u32 position;
16045 u32 base;
16046 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010016047 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016048
16049 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020016050 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016051 u32 source;
Imre Deakf301b1e12014-04-18 15:55:04 +030016052 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010016053 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016054
16055 struct intel_plane_error_state {
16056 u32 control;
16057 u32 stride;
16058 u32 size;
16059 u32 pos;
16060 u32 addr;
16061 u32 surface;
16062 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010016063 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020016064
16065 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020016066 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020016067 enum transcoder cpu_transcoder;
16068
16069 u32 conf;
16070
16071 u32 htotal;
16072 u32 hblank;
16073 u32 hsync;
16074 u32 vtotal;
16075 u32 vblank;
16076 u32 vsync;
16077 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016078};
16079
16080struct intel_display_error_state *
16081intel_display_capture_error_state(struct drm_device *dev)
16082{
Jani Nikulafbee40d2014-03-31 14:27:18 +030016083 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016084 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020016085 int transcoders[] = {
16086 TRANSCODER_A,
16087 TRANSCODER_B,
16088 TRANSCODER_C,
16089 TRANSCODER_EDP,
16090 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016091 int i;
16092
Chris Wilson63b66e52013-08-08 15:12:06 +020016093 if (INTEL_INFO(dev)->num_pipes == 0)
16094 return NULL;
16095
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020016096 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016097 if (error == NULL)
16098 return NULL;
16099
Imre Deak190be112013-11-25 17:15:31 +020016100 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030016101 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
16102
Damien Lespiau055e3932014-08-18 13:49:10 +010016103 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020016104 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020016105 __intel_display_power_is_enabled(dev_priv,
16106 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020016107 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020016108 continue;
16109
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030016110 error->cursor[i].control = I915_READ(CURCNTR(i));
16111 error->cursor[i].position = I915_READ(CURPOS(i));
16112 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016113
16114 error->plane[i].control = I915_READ(DSPCNTR(i));
16115 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030016116 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030016117 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030016118 error->plane[i].pos = I915_READ(DSPPOS(i));
16119 }
Paulo Zanonica291362013-03-06 20:03:14 -030016120 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
16121 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016122 if (INTEL_INFO(dev)->gen >= 4) {
16123 error->plane[i].surface = I915_READ(DSPSURF(i));
16124 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
16125 }
16126
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016127 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e12014-04-18 15:55:04 +030016128
Sonika Jindal3abfce72014-07-21 15:23:43 +053016129 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e12014-04-18 15:55:04 +030016130 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020016131 }
16132
16133 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
16134 if (HAS_DDI(dev_priv->dev))
16135 error->num_transcoders++; /* Account for eDP. */
16136
16137 for (i = 0; i < error->num_transcoders; i++) {
16138 enum transcoder cpu_transcoder = transcoders[i];
16139
Imre Deakddf9c532013-11-27 22:02:02 +020016140 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020016141 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020016142 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020016143 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020016144 continue;
16145
Chris Wilson63b66e52013-08-08 15:12:06 +020016146 error->transcoder[i].cpu_transcoder = cpu_transcoder;
16147
16148 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
16149 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
16150 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
16151 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
16152 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
16153 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
16154 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016155 }
16156
16157 return error;
16158}
16159
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016160#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
16161
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016162void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016163intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016164 struct drm_device *dev,
16165 struct intel_display_error_state *error)
16166{
Damien Lespiau055e3932014-08-18 13:49:10 +010016167 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016168 int i;
16169
Chris Wilson63b66e52013-08-08 15:12:06 +020016170 if (!error)
16171 return;
16172
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016173 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020016174 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016175 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030016176 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010016177 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016178 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020016179 err_printf(m, " Power: %s\n",
16180 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016181 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e12014-04-18 15:55:04 +030016182 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016183
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016184 err_printf(m, "Plane [%d]:\n", i);
16185 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
16186 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030016187 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016188 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
16189 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030016190 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030016191 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016192 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016193 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016194 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
16195 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016196 }
16197
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016198 err_printf(m, "Cursor [%d]:\n", i);
16199 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
16200 err_printf(m, " POS: %08x\n", error->cursor[i].position);
16201 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016202 }
Chris Wilson63b66e52013-08-08 15:12:06 +020016203
16204 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010016205 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020016206 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020016207 err_printf(m, " Power: %s\n",
16208 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020016209 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
16210 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
16211 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
16212 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
16213 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
16214 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
16215 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
16216 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016217}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030016218
16219void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
16220{
16221 struct intel_crtc *crtc;
16222
16223 for_each_intel_crtc(dev, crtc) {
16224 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030016225
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020016226 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030016227
16228 work = crtc->unpin_work;
16229
16230 if (work && work->event &&
16231 work->event->base.file_priv == file) {
16232 kfree(work->event);
16233 work->event = NULL;
16234 }
16235
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020016236 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030016237 }
16238}