blob: ab0b406ee8caa88af3e08bb92db28d2d09eb0c1b [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);
Matt Roper0a8d8a82015-12-03 11:37:38 -08002601 struct intel_plane_state *intel_state =
2602 to_intel_plane_state(plane_state);
Daniel Vetter88595ac2015-03-26 12:42:24 +01002603 struct drm_framebuffer *fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002604
Damien Lespiau2d140302015-02-05 17:22:18 +00002605 if (!plane_config->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002606 return;
2607
Daniel Vetterf6936e22015-03-26 12:17:05 +01002608 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002609 fb = &plane_config->fb->base;
2610 goto valid_fb;
Damien Lespiauf55548b2015-02-05 18:30:20 +00002611 }
Jesse Barnes484b41d2014-03-07 08:57:55 -08002612
Damien Lespiau2d140302015-02-05 17:22:18 +00002613 kfree(plane_config->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002614
2615 /*
2616 * Failed to alloc the obj, check to see if we should share
2617 * an fb with another CRTC instead
2618 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002619 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002620 i = to_intel_crtc(c);
2621
2622 if (c == &intel_crtc->base)
2623 continue;
2624
Matt Roper2ff8fde2014-07-08 07:50:07 -07002625 if (!i->active)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002626 continue;
2627
Daniel Vetter88595ac2015-03-26 12:42:24 +01002628 fb = c->primary->fb;
2629 if (!fb)
Matt Roper2ff8fde2014-07-08 07:50:07 -07002630 continue;
2631
Daniel Vetter88595ac2015-03-26 12:42:24 +01002632 obj = intel_fb_obj(fb);
Matt Roper2ff8fde2014-07-08 07:50:07 -07002633 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
Daniel Vetter88595ac2015-03-26 12:42:24 +01002634 drm_framebuffer_reference(fb);
2635 goto valid_fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002636 }
2637 }
Daniel Vetter88595ac2015-03-26 12:42:24 +01002638
Matt Roper200757f2015-12-03 11:37:36 -08002639 /*
2640 * We've failed to reconstruct the BIOS FB. Current display state
2641 * indicates that the primary plane is visible, but has a NULL FB,
2642 * which will lead to problems later if we don't fix it up. The
2643 * simplest solution is to just disable the primary plane now and
2644 * pretend the BIOS never had it enabled.
2645 */
2646 to_intel_plane_state(plane_state)->visible = false;
2647 crtc_state->plane_mask &= ~(1 << drm_plane_index(primary));
2648 intel_pre_disable_primary(&intel_crtc->base);
2649 intel_plane->disable_plane(primary, &intel_crtc->base);
2650
Daniel Vetter88595ac2015-03-26 12:42:24 +01002651 return;
2652
2653valid_fb:
Ville Syrjäläf44e2652015-11-13 19:16:13 +02002654 plane_state->src_x = 0;
2655 plane_state->src_y = 0;
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002656 plane_state->src_w = fb->width << 16;
2657 plane_state->src_h = fb->height << 16;
2658
Ville Syrjäläf44e2652015-11-13 19:16:13 +02002659 plane_state->crtc_x = 0;
2660 plane_state->crtc_y = 0;
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002661 plane_state->crtc_w = fb->width;
2662 plane_state->crtc_h = fb->height;
2663
Matt Roper0a8d8a82015-12-03 11:37:38 -08002664 intel_state->src.x1 = plane_state->src_x;
2665 intel_state->src.y1 = plane_state->src_y;
2666 intel_state->src.x2 = plane_state->src_x + plane_state->src_w;
2667 intel_state->src.y2 = plane_state->src_y + plane_state->src_h;
2668 intel_state->dst.x1 = plane_state->crtc_x;
2669 intel_state->dst.y1 = plane_state->crtc_y;
2670 intel_state->dst.x2 = plane_state->crtc_x + plane_state->crtc_w;
2671 intel_state->dst.y2 = plane_state->crtc_y + plane_state->crtc_h;
2672
Daniel Vetter88595ac2015-03-26 12:42:24 +01002673 obj = intel_fb_obj(fb);
2674 if (obj->tiling_mode != I915_TILING_NONE)
2675 dev_priv->preserve_bios_swizzle = true;
2676
Maarten Lankhorstbe5651f2015-07-13 16:30:18 +02002677 drm_framebuffer_reference(fb);
2678 primary->fb = primary->state->fb = fb;
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002679 primary->crtc = primary->state->crtc = &intel_crtc->base;
Maarten Lankhorst36750f22015-06-01 12:49:54 +02002680 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
Ville Syrjäläa9ff8712015-06-24 21:59:34 +03002681 obj->frontbuffer_bits |= to_intel_plane(primary)->frontbuffer_bit;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002682}
2683
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002684static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2685 struct drm_framebuffer *fb,
2686 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002687{
2688 struct drm_device *dev = crtc->dev;
2689 struct drm_i915_private *dev_priv = dev->dev_private;
2690 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002691 struct drm_plane *primary = crtc->primary;
2692 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002693 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002694 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002695 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002696 u32 dspcntr;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002697 i915_reg_t reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302698 int pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002699
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002700 if (!visible || !fb) {
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002701 I915_WRITE(reg, 0);
2702 if (INTEL_INFO(dev)->gen >= 4)
2703 I915_WRITE(DSPSURF(plane), 0);
2704 else
2705 I915_WRITE(DSPADDR(plane), 0);
2706 POSTING_READ(reg);
2707 return;
2708 }
2709
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002710 obj = intel_fb_obj(fb);
2711 if (WARN_ON(obj == NULL))
2712 return;
2713
2714 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2715
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002716 dspcntr = DISPPLANE_GAMMA_ENABLE;
2717
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002718 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002719
2720 if (INTEL_INFO(dev)->gen < 4) {
2721 if (intel_crtc->pipe == PIPE_B)
2722 dspcntr |= DISPPLANE_SEL_PIPE_B;
2723
2724 /* pipesrc and dspsize control the size that is scaled from,
2725 * which should always be the user's requested size.
2726 */
2727 I915_WRITE(DSPSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002728 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2729 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002730 I915_WRITE(DSPPOS(plane), 0);
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002731 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2732 I915_WRITE(PRIMSIZE(plane),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002733 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2734 (intel_crtc->config->pipe_src_w - 1));
Ville Syrjäläc14b0482014-10-16 20:52:34 +03002735 I915_WRITE(PRIMPOS(plane), 0);
2736 I915_WRITE(PRIMCNSTALPHA(plane), 0);
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002737 }
2738
Ville Syrjälä57779d02012-10-31 17:50:14 +02002739 switch (fb->pixel_format) {
2740 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002741 dspcntr |= DISPPLANE_8BPP;
2742 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002743 case DRM_FORMAT_XRGB1555:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002744 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002745 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002746 case DRM_FORMAT_RGB565:
2747 dspcntr |= DISPPLANE_BGRX565;
2748 break;
2749 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002750 dspcntr |= DISPPLANE_BGRX888;
2751 break;
2752 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002753 dspcntr |= DISPPLANE_RGBX888;
2754 break;
2755 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002756 dspcntr |= DISPPLANE_BGRX101010;
2757 break;
2758 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002759 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002760 break;
2761 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002762 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002763 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002764
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002765 if (INTEL_INFO(dev)->gen >= 4 &&
2766 obj->tiling_mode != I915_TILING_NONE)
2767 dspcntr |= DISPPLANE_TILED;
Jesse Barnes81255562010-08-02 12:07:50 -07002768
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002769 if (IS_G4X(dev))
2770 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2771
Ville Syrjäläb98971272014-08-27 16:51:22 +03002772 linear_offset = y * fb->pitches[0] + x * pixel_size;
Jesse Barnes81255562010-08-02 12:07:50 -07002773
Daniel Vetterc2c75132012-07-05 12:17:30 +02002774 if (INTEL_INFO(dev)->gen >= 4) {
2775 intel_crtc->dspaddr_offset =
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002776 intel_gen4_compute_page_offset(dev_priv,
2777 &x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002778 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002779 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002780 linear_offset -= intel_crtc->dspaddr_offset;
2781 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002782 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002783 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002784
Matt Roper8e7d6882015-01-21 16:35:41 -08002785 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302786 dspcntr |= DISPPLANE_ROTATE_180;
2787
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002788 x += (intel_crtc->config->pipe_src_w - 1);
2789 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302790
2791 /* Finding the last pixel of the last line of the display
2792 data and adding to linear_offset*/
2793 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002794 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2795 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302796 }
2797
Paulo Zanoni2db33662015-09-14 15:20:03 -03002798 intel_crtc->adjusted_x = x;
2799 intel_crtc->adjusted_y = y;
2800
Sonika Jindal48404c12014-08-22 14:06:04 +05302801 I915_WRITE(reg, dspcntr);
2802
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002803 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002804 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002805 I915_WRITE(DSPSURF(plane),
2806 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002807 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002808 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002809 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002810 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002811 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002812}
2813
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002814static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2815 struct drm_framebuffer *fb,
2816 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002817{
2818 struct drm_device *dev = crtc->dev;
2819 struct drm_i915_private *dev_priv = dev->dev_private;
2820 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002821 struct drm_plane *primary = crtc->primary;
2822 bool visible = to_intel_plane_state(primary->state)->visible;
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002823 struct drm_i915_gem_object *obj;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002824 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002825 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002826 u32 dspcntr;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002827 i915_reg_t reg = DSPCNTR(plane);
Sonika Jindal48404c12014-08-22 14:06:04 +05302828 int pixel_size;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002829
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03002830 if (!visible || !fb) {
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002831 I915_WRITE(reg, 0);
2832 I915_WRITE(DSPSURF(plane), 0);
2833 POSTING_READ(reg);
2834 return;
2835 }
2836
Ville Syrjäläc9ba6fa2014-08-27 17:48:41 +03002837 obj = intel_fb_obj(fb);
2838 if (WARN_ON(obj == NULL))
2839 return;
2840
2841 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2842
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002843 dspcntr = DISPPLANE_GAMMA_ENABLE;
2844
Ville Syrjäläfdd508a62014-08-08 21:51:11 +03002845 dspcntr |= DISPLAY_PLANE_ENABLE;
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002846
2847 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2848 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
2849
Ville Syrjälä57779d02012-10-31 17:50:14 +02002850 switch (fb->pixel_format) {
2851 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002852 dspcntr |= DISPPLANE_8BPP;
2853 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002854 case DRM_FORMAT_RGB565:
2855 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002856 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002857 case DRM_FORMAT_XRGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002858 dspcntr |= DISPPLANE_BGRX888;
2859 break;
2860 case DRM_FORMAT_XBGR8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002861 dspcntr |= DISPPLANE_RGBX888;
2862 break;
2863 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002864 dspcntr |= DISPPLANE_BGRX101010;
2865 break;
2866 case DRM_FORMAT_XBGR2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002867 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002868 break;
2869 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002870 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002871 }
2872
2873 if (obj->tiling_mode != I915_TILING_NONE)
2874 dspcntr |= DISPPLANE_TILED;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002875
Ville Syrjäläf45651b2014-08-08 21:51:10 +03002876 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002877 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002878
Ville Syrjäläb98971272014-08-27 16:51:22 +03002879 linear_offset = y * fb->pitches[0] + x * pixel_size;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002880 intel_crtc->dspaddr_offset =
Ville Syrjälä4e9a86b2015-06-11 16:31:14 +03002881 intel_gen4_compute_page_offset(dev_priv,
2882 &x, &y, obj->tiling_mode,
Ville Syrjäläb98971272014-08-27 16:51:22 +03002883 pixel_size,
Chris Wilsonbc752862013-02-21 20:04:31 +00002884 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002885 linear_offset -= intel_crtc->dspaddr_offset;
Matt Roper8e7d6882015-01-21 16:35:41 -08002886 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
Sonika Jindal48404c12014-08-22 14:06:04 +05302887 dspcntr |= DISPPLANE_ROTATE_180;
2888
2889 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002890 x += (intel_crtc->config->pipe_src_w - 1);
2891 y += (intel_crtc->config->pipe_src_h - 1);
Sonika Jindal48404c12014-08-22 14:06:04 +05302892
2893 /* Finding the last pixel of the last line of the display
2894 data and adding to linear_offset*/
2895 linear_offset +=
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002896 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2897 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
Sonika Jindal48404c12014-08-22 14:06:04 +05302898 }
2899 }
2900
Paulo Zanoni2db33662015-09-14 15:20:03 -03002901 intel_crtc->adjusted_x = x;
2902 intel_crtc->adjusted_y = y;
2903
Sonika Jindal48404c12014-08-22 14:06:04 +05302904 I915_WRITE(reg, dspcntr);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002905
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002906 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002907 I915_WRITE(DSPSURF(plane),
2908 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002909 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002910 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2911 } else {
2912 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2913 I915_WRITE(DSPLINOFF(plane), linear_offset);
2914 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002915 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002916}
2917
Damien Lespiaub3218032015-02-27 11:15:18 +00002918u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2919 uint32_t pixel_format)
2920{
2921 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2922
2923 /*
2924 * The stride is either expressed as a multiple of 64 bytes
2925 * chunks for linear buffers or in number of tiles for tiled
2926 * buffers.
2927 */
2928 switch (fb_modifier) {
2929 case DRM_FORMAT_MOD_NONE:
2930 return 64;
2931 case I915_FORMAT_MOD_X_TILED:
2932 if (INTEL_INFO(dev)->gen == 2)
2933 return 128;
2934 return 512;
2935 case I915_FORMAT_MOD_Y_TILED:
2936 /* No need to check for old gens and Y tiling since this is
2937 * about the display engine and those will be blocked before
2938 * we get here.
2939 */
2940 return 128;
2941 case I915_FORMAT_MOD_Yf_TILED:
2942 if (bits_per_pixel == 8)
2943 return 64;
2944 else
2945 return 128;
2946 default:
2947 MISSING_CASE(fb_modifier);
2948 return 64;
2949 }
2950}
2951
Mika Kuoppala44eb0cb2015-10-30 13:26:15 +02002952u32 intel_plane_obj_offset(struct intel_plane *intel_plane,
2953 struct drm_i915_gem_object *obj,
2954 unsigned int plane)
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002955{
Daniel Vetterce7f1722015-10-14 16:51:06 +02002956 struct i915_ggtt_view view;
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002957 struct i915_vma *vma;
Mika Kuoppala44eb0cb2015-10-30 13:26:15 +02002958 u64 offset;
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002959
Daniel Vetterce7f1722015-10-14 16:51:06 +02002960 intel_fill_fb_ggtt_view(&view, intel_plane->base.fb,
2961 intel_plane->base.state);
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002962
Daniel Vetterce7f1722015-10-14 16:51:06 +02002963 vma = i915_gem_obj_to_ggtt_view(obj, &view);
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002964 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
Daniel Vetterce7f1722015-10-14 16:51:06 +02002965 view.type))
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002966 return -1;
2967
Mika Kuoppala44eb0cb2015-10-30 13:26:15 +02002968 offset = vma->node.start;
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002969
2970 if (plane == 1) {
Daniel Vettera6d09182015-10-14 16:51:05 +02002971 offset += vma->ggtt_view.params.rotation_info.uv_start_page *
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01002972 PAGE_SIZE;
2973 }
2974
Mika Kuoppala44eb0cb2015-10-30 13:26:15 +02002975 WARN_ON(upper_32_bits(offset));
2976
2977 return lower_32_bits(offset);
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00002978}
2979
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02002980static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
2981{
2982 struct drm_device *dev = intel_crtc->base.dev;
2983 struct drm_i915_private *dev_priv = dev->dev_private;
2984
2985 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
2986 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
2987 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02002988}
2989
Chandra Kondurua1b22782015-04-07 15:28:45 -07002990/*
2991 * This function detaches (aka. unbinds) unused scalers in hardware
2992 */
Maarten Lankhorst05832362015-06-15 12:33:48 +02002993static void skl_detach_scalers(struct intel_crtc *intel_crtc)
Chandra Kondurua1b22782015-04-07 15:28:45 -07002994{
Chandra Kondurua1b22782015-04-07 15:28:45 -07002995 struct intel_crtc_scaler_state *scaler_state;
2996 int i;
2997
Chandra Kondurua1b22782015-04-07 15:28:45 -07002998 scaler_state = &intel_crtc->config->scaler_state;
2999
3000 /* loop through and disable scalers that aren't in use */
3001 for (i = 0; i < intel_crtc->num_scalers; i++) {
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02003002 if (!scaler_state->scalers[i].in_use)
3003 skl_detach_scaler(intel_crtc, i);
Chandra Kondurua1b22782015-04-07 15:28:45 -07003004 }
3005}
3006
Chandra Konduru6156a452015-04-27 13:48:39 -07003007u32 skl_plane_ctl_format(uint32_t pixel_format)
3008{
Chandra Konduru6156a452015-04-27 13:48:39 -07003009 switch (pixel_format) {
Damien Lespiaud161cf72015-05-12 16:13:17 +01003010 case DRM_FORMAT_C8:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003011 return PLANE_CTL_FORMAT_INDEXED;
Chandra Konduru6156a452015-04-27 13:48:39 -07003012 case DRM_FORMAT_RGB565:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003013 return PLANE_CTL_FORMAT_RGB_565;
Chandra Konduru6156a452015-04-27 13:48:39 -07003014 case DRM_FORMAT_XBGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003015 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
Chandra Konduru6156a452015-04-27 13:48:39 -07003016 case DRM_FORMAT_XRGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003017 return PLANE_CTL_FORMAT_XRGB_8888;
Chandra Konduru6156a452015-04-27 13:48:39 -07003018 /*
3019 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
3020 * to be already pre-multiplied. We need to add a knob (or a different
3021 * DRM_FORMAT) for user-space to configure that.
3022 */
3023 case DRM_FORMAT_ABGR8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003024 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
Chandra Konduru6156a452015-04-27 13:48:39 -07003025 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003026 case DRM_FORMAT_ARGB8888:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003027 return PLANE_CTL_FORMAT_XRGB_8888 |
Chandra Konduru6156a452015-04-27 13:48:39 -07003028 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003029 case DRM_FORMAT_XRGB2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003030 return PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07003031 case DRM_FORMAT_XBGR2101010:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003032 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
Chandra Konduru6156a452015-04-27 13:48:39 -07003033 case DRM_FORMAT_YUYV:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003034 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
Chandra Konduru6156a452015-04-27 13:48:39 -07003035 case DRM_FORMAT_YVYU:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003036 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
Chandra Konduru6156a452015-04-27 13:48:39 -07003037 case DRM_FORMAT_UYVY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003038 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003039 case DRM_FORMAT_VYUY:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003040 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
Chandra Konduru6156a452015-04-27 13:48:39 -07003041 default:
Damien Lespiau4249eee2015-05-12 16:13:16 +01003042 MISSING_CASE(pixel_format);
Chandra Konduru6156a452015-04-27 13:48:39 -07003043 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003044
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003045 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003046}
3047
3048u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
3049{
Chandra Konduru6156a452015-04-27 13:48:39 -07003050 switch (fb_modifier) {
3051 case DRM_FORMAT_MOD_NONE:
3052 break;
3053 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003054 return PLANE_CTL_TILED_X;
Chandra Konduru6156a452015-04-27 13:48:39 -07003055 case I915_FORMAT_MOD_Y_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003056 return PLANE_CTL_TILED_Y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003057 case I915_FORMAT_MOD_Yf_TILED:
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003058 return PLANE_CTL_TILED_YF;
Chandra Konduru6156a452015-04-27 13:48:39 -07003059 default:
3060 MISSING_CASE(fb_modifier);
3061 }
Damien Lespiau8cfcba42015-05-12 16:13:14 +01003062
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003063 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003064}
3065
3066u32 skl_plane_ctl_rotation(unsigned int rotation)
3067{
Chandra Konduru6156a452015-04-27 13:48:39 -07003068 switch (rotation) {
3069 case BIT(DRM_ROTATE_0):
3070 break;
Sonika Jindal1e8df162015-05-20 13:40:48 +05303071 /*
3072 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
3073 * while i915 HW rotation is clockwise, thats why this swapping.
3074 */
Chandra Konduru6156a452015-04-27 13:48:39 -07003075 case BIT(DRM_ROTATE_90):
Sonika Jindal1e8df162015-05-20 13:40:48 +05303076 return PLANE_CTL_ROTATE_270;
Chandra Konduru6156a452015-04-27 13:48:39 -07003077 case BIT(DRM_ROTATE_180):
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003078 return PLANE_CTL_ROTATE_180;
Chandra Konduru6156a452015-04-27 13:48:39 -07003079 case BIT(DRM_ROTATE_270):
Sonika Jindal1e8df162015-05-20 13:40:48 +05303080 return PLANE_CTL_ROTATE_90;
Chandra Konduru6156a452015-04-27 13:48:39 -07003081 default:
3082 MISSING_CASE(rotation);
3083 }
3084
Damien Lespiauc34ce3d2015-05-15 15:07:02 +01003085 return 0;
Chandra Konduru6156a452015-04-27 13:48:39 -07003086}
3087
Damien Lespiau70d21f02013-07-03 21:06:04 +01003088static void skylake_update_primary_plane(struct drm_crtc *crtc,
3089 struct drm_framebuffer *fb,
3090 int x, int y)
3091{
3092 struct drm_device *dev = crtc->dev;
3093 struct drm_i915_private *dev_priv = dev->dev_private;
3094 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003095 struct drm_plane *plane = crtc->primary;
3096 bool visible = to_intel_plane_state(plane->state)->visible;
Damien Lespiau70d21f02013-07-03 21:06:04 +01003097 struct drm_i915_gem_object *obj;
3098 int pipe = intel_crtc->pipe;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303099 u32 plane_ctl, stride_div, stride;
3100 u32 tile_height, plane_offset, plane_size;
3101 unsigned int rotation;
3102 int x_offset, y_offset;
Mika Kuoppala44eb0cb2015-10-30 13:26:15 +02003103 u32 surf_addr;
Chandra Konduru6156a452015-04-27 13:48:39 -07003104 struct intel_crtc_state *crtc_state = intel_crtc->config;
3105 struct intel_plane_state *plane_state;
3106 int src_x = 0, src_y = 0, src_w = 0, src_h = 0;
3107 int dst_x = 0, dst_y = 0, dst_w = 0, dst_h = 0;
3108 int scaler_id = -1;
3109
Chandra Konduru6156a452015-04-27 13:48:39 -07003110 plane_state = to_intel_plane_state(plane->state);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003111
Maarten Lankhorstb70709a2015-04-21 17:12:53 +03003112 if (!visible || !fb) {
Damien Lespiau70d21f02013-07-03 21:06:04 +01003113 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3114 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3115 POSTING_READ(PLANE_CTL(pipe, 0));
3116 return;
3117 }
3118
3119 plane_ctl = PLANE_CTL_ENABLE |
3120 PLANE_CTL_PIPE_GAMMA_ENABLE |
3121 PLANE_CTL_PIPE_CSC_ENABLE;
3122
Chandra Konduru6156a452015-04-27 13:48:39 -07003123 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3124 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003125 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303126
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303127 rotation = plane->state->rotation;
Chandra Konduru6156a452015-04-27 13:48:39 -07003128 plane_ctl |= skl_plane_ctl_rotation(rotation);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003129
Damien Lespiaub3218032015-02-27 11:15:18 +00003130 obj = intel_fb_obj(fb);
3131 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
3132 fb->pixel_format);
Tvrtko Ursulindedf2782015-09-21 10:45:35 +01003133 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303134
Paulo Zanonia42e5a22015-09-30 17:05:43 -03003135 WARN_ON(drm_rect_width(&plane_state->src) == 0);
Chandra Konduru6156a452015-04-27 13:48:39 -07003136
Paulo Zanonia42e5a22015-09-30 17:05:43 -03003137 scaler_id = plane_state->scaler_id;
3138 src_x = plane_state->src.x1 >> 16;
3139 src_y = plane_state->src.y1 >> 16;
3140 src_w = drm_rect_width(&plane_state->src) >> 16;
3141 src_h = drm_rect_height(&plane_state->src) >> 16;
3142 dst_x = plane_state->dst.x1;
3143 dst_y = plane_state->dst.y1;
3144 dst_w = drm_rect_width(&plane_state->dst);
3145 dst_h = drm_rect_height(&plane_state->dst);
3146
3147 WARN_ON(x != src_x || y != src_y);
Chandra Konduru6156a452015-04-27 13:48:39 -07003148
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303149 if (intel_rotation_90_or_270(rotation)) {
3150 /* stride = Surface height in tiles */
Chandra Konduru2614f172015-05-08 20:22:46 -07003151 tile_height = intel_tile_height(dev, fb->pixel_format,
Tvrtko Ursulinfe47ea02015-09-21 10:45:32 +01003152 fb->modifier[0], 0);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303153 stride = DIV_ROUND_UP(fb->height, tile_height);
Chandra Konduru6156a452015-04-27 13:48:39 -07003154 x_offset = stride * tile_height - y - src_h;
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303155 y_offset = x;
Chandra Konduru6156a452015-04-27 13:48:39 -07003156 plane_size = (src_w - 1) << 16 | (src_h - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303157 } else {
3158 stride = fb->pitches[0] / stride_div;
3159 x_offset = x;
3160 y_offset = y;
Chandra Konduru6156a452015-04-27 13:48:39 -07003161 plane_size = (src_h - 1) << 16 | (src_w - 1);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303162 }
3163 plane_offset = y_offset << 16 | x_offset;
Damien Lespiaub3218032015-02-27 11:15:18 +00003164
Paulo Zanoni2db33662015-09-14 15:20:03 -03003165 intel_crtc->adjusted_x = x_offset;
3166 intel_crtc->adjusted_y = y_offset;
3167
Damien Lespiau70d21f02013-07-03 21:06:04 +01003168 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
Sonika Jindal3b7a5112015-04-10 14:37:29 +05303169 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3170 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3171 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
Chandra Konduru6156a452015-04-27 13:48:39 -07003172
3173 if (scaler_id >= 0) {
3174 uint32_t ps_ctrl = 0;
3175
3176 WARN_ON(!dst_w || !dst_h);
3177 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3178 crtc_state->scaler_state.scalers[scaler_id].mode;
3179 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3180 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3181 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3182 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3183 I915_WRITE(PLANE_POS(pipe, 0), 0);
3184 } else {
3185 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3186 }
3187
Tvrtko Ursulin121920f2015-03-23 11:10:37 +00003188 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
Damien Lespiau70d21f02013-07-03 21:06:04 +01003189
3190 POSTING_READ(PLANE_SURF(pipe, 0));
3191}
3192
Jesse Barnes17638cd2011-06-24 12:19:23 -07003193/* Assume fb object is pinned & idle & fenced and just update base pointers */
3194static int
3195intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3196 int x, int y, enum mode_set_atomic state)
3197{
3198 struct drm_device *dev = crtc->dev;
3199 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07003200
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03003201 if (dev_priv->fbc.deactivate)
3202 dev_priv->fbc.deactivate(dev_priv);
Jesse Barnes81255562010-08-02 12:07:50 -07003203
Daniel Vetter29b9bde2014-04-24 23:55:01 +02003204 dev_priv->display.update_primary_plane(crtc, fb, x, y);
3205
3206 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07003207}
3208
Ville Syrjälä75147472014-11-24 18:28:11 +02003209static void intel_complete_page_flips(struct drm_device *dev)
Ville Syrjälä96a02912013-02-18 19:08:49 +02003210{
Ville Syrjälä96a02912013-02-18 19:08:49 +02003211 struct drm_crtc *crtc;
3212
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003213 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02003214 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3215 enum plane plane = intel_crtc->plane;
3216
3217 intel_prepare_page_flip(dev, plane);
3218 intel_finish_page_flip_plane(dev, plane);
3219 }
Ville Syrjälä75147472014-11-24 18:28:11 +02003220}
3221
3222static void intel_update_primary_planes(struct drm_device *dev)
3223{
Ville Syrjälä75147472014-11-24 18:28:11 +02003224 struct drm_crtc *crtc;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003225
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003226 for_each_crtc(dev, crtc) {
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003227 struct intel_plane *plane = to_intel_plane(crtc->primary);
3228 struct intel_plane_state *plane_state;
Ville Syrjälä96a02912013-02-18 19:08:49 +02003229
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003230 drm_modeset_lock_crtc(crtc, &plane->base);
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003231 plane_state = to_intel_plane_state(plane->base.state);
3232
Maarten Lankhorstf029ee82015-09-23 16:29:37 +02003233 if (crtc->state->active && plane_state->base.fb)
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003234 plane->commit_plane(&plane->base, plane_state);
3235
3236 drm_modeset_unlock_crtc(crtc);
Ville Syrjälä96a02912013-02-18 19:08:49 +02003237 }
3238}
3239
Ville Syrjälä75147472014-11-24 18:28:11 +02003240void intel_prepare_reset(struct drm_device *dev)
3241{
3242 /* no reset support for gen2 */
3243 if (IS_GEN2(dev))
3244 return;
3245
3246 /* reset doesn't touch the display */
3247 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
3248 return;
3249
3250 drm_modeset_lock_all(dev);
Ville Syrjäläf98ce922014-11-21 21:54:30 +02003251 /*
3252 * Disabling the crtcs gracefully seems nicer. Also the
3253 * g33 docs say we should at least disable all the planes.
3254 */
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02003255 intel_display_suspend(dev);
Ville Syrjälä75147472014-11-24 18:28:11 +02003256}
3257
3258void intel_finish_reset(struct drm_device *dev)
3259{
3260 struct drm_i915_private *dev_priv = to_i915(dev);
3261
3262 /*
3263 * Flips in the rings will be nuked by the reset,
3264 * so complete all pending flips so that user space
3265 * will get its events and not get stuck.
3266 */
3267 intel_complete_page_flips(dev);
3268
3269 /* no reset support for gen2 */
3270 if (IS_GEN2(dev))
3271 return;
3272
3273 /* reset doesn't touch the display */
3274 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
3275 /*
3276 * Flips in the rings have been nuked by the reset,
3277 * so update the base address of all primary
3278 * planes to the the last fb to make sure we're
3279 * showing the correct fb after a reset.
Maarten Lankhorst11c22da2015-09-10 16:07:58 +02003280 *
3281 * FIXME: Atomic will make this obsolete since we won't schedule
3282 * CS-based flips (which might get lost in gpu resets) any more.
Ville Syrjälä75147472014-11-24 18:28:11 +02003283 */
3284 intel_update_primary_planes(dev);
3285 return;
3286 }
3287
3288 /*
3289 * The display has been reset as well,
3290 * so need a full re-initialization.
3291 */
3292 intel_runtime_pm_disable_interrupts(dev_priv);
3293 intel_runtime_pm_enable_interrupts(dev_priv);
3294
3295 intel_modeset_init_hw(dev);
3296
3297 spin_lock_irq(&dev_priv->irq_lock);
3298 if (dev_priv->display.hpd_irq_setup)
3299 dev_priv->display.hpd_irq_setup(dev);
3300 spin_unlock_irq(&dev_priv->irq_lock);
3301
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +02003302 intel_display_resume(dev);
Ville Syrjälä75147472014-11-24 18:28:11 +02003303
3304 intel_hpd_init(dev_priv);
3305
3306 drm_modeset_unlock_all(dev);
3307}
3308
Chris Wilson7d5e3792014-03-04 13:15:08 +00003309static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3310{
3311 struct drm_device *dev = crtc->dev;
3312 struct drm_i915_private *dev_priv = dev->dev_private;
3313 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003314 bool pending;
3315
3316 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3317 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3318 return false;
3319
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003320 spin_lock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003321 pending = to_intel_crtc(crtc)->unpin_work != NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003322 spin_unlock_irq(&dev->event_lock);
Chris Wilson7d5e3792014-03-04 13:15:08 +00003323
3324 return pending;
3325}
3326
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003327static void intel_update_pipe_config(struct intel_crtc *crtc,
3328 struct intel_crtc_state *old_crtc_state)
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003329{
3330 struct drm_device *dev = crtc->base.dev;
3331 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003332 struct intel_crtc_state *pipe_config =
3333 to_intel_crtc_state(crtc->base.state);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003334
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003335 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3336 crtc->base.mode = crtc->base.state->mode;
3337
3338 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3339 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3340 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003341
Maarten Lankhorst44522d82015-08-27 15:44:02 +02003342 if (HAS_DDI(dev))
3343 intel_set_pipe_csc(&crtc->base);
3344
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003345 /*
3346 * Update pipe size and adjust fitter if needed: the reason for this is
3347 * that in compute_mode_changes we check the native mode (not the pfit
3348 * mode) to see if we can flip rather than do a full mode set. In the
3349 * fastboot case, we'll flip, but if we don't update the pipesrc and
3350 * pfit state, we'll end up with a big fb scanned out into the wrong
3351 * sized surface.
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003352 */
3353
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003354 I915_WRITE(PIPESRC(crtc->pipe),
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02003355 ((pipe_config->pipe_src_w - 1) << 16) |
3356 (pipe_config->pipe_src_h - 1));
3357
3358 /* on skylake this is done by detaching scalers */
3359 if (INTEL_INFO(dev)->gen >= 9) {
3360 skl_detach_scalers(crtc);
3361
3362 if (pipe_config->pch_pfit.enabled)
3363 skylake_pfit_enable(crtc);
3364 } else if (HAS_PCH_SPLIT(dev)) {
3365 if (pipe_config->pch_pfit.enabled)
3366 ironlake_pfit_enable(crtc);
3367 else if (old_crtc_state->pch_pfit.enabled)
3368 ironlake_pfit_disable(crtc, true);
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003369 }
Gustavo Padovane30e8f72014-09-10 12:04:17 -03003370}
3371
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003372static void intel_fdi_normal_train(struct drm_crtc *crtc)
3373{
3374 struct drm_device *dev = crtc->dev;
3375 struct drm_i915_private *dev_priv = dev->dev_private;
3376 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3377 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003378 i915_reg_t reg;
3379 u32 temp;
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003380
3381 /* enable normal train */
3382 reg = FDI_TX_CTL(pipe);
3383 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07003384 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07003385 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3386 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07003387 } else {
3388 temp &= ~FDI_LINK_TRAIN_NONE;
3389 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07003390 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003391 I915_WRITE(reg, temp);
3392
3393 reg = FDI_RX_CTL(pipe);
3394 temp = I915_READ(reg);
3395 if (HAS_PCH_CPT(dev)) {
3396 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3397 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3398 } else {
3399 temp &= ~FDI_LINK_TRAIN_NONE;
3400 temp |= FDI_LINK_TRAIN_NONE;
3401 }
3402 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3403
3404 /* wait one idle pattern time */
3405 POSTING_READ(reg);
3406 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07003407
3408 /* IVB wants error correction enabled */
3409 if (IS_IVYBRIDGE(dev))
3410 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3411 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003412}
3413
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003414/* The FDI link training functions for ILK/Ibexpeak. */
3415static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3416{
3417 struct drm_device *dev = crtc->dev;
3418 struct drm_i915_private *dev_priv = dev->dev_private;
3419 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3420 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003421 i915_reg_t reg;
3422 u32 temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003423
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03003424 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003425 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003426
Adam Jacksone1a44742010-06-25 15:32:14 -04003427 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3428 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003429 reg = FDI_RX_IMR(pipe);
3430 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003431 temp &= ~FDI_RX_SYMBOL_LOCK;
3432 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003433 I915_WRITE(reg, temp);
3434 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003435 udelay(150);
3436
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003437 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003438 reg = FDI_TX_CTL(pipe);
3439 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003440 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003441 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003442 temp &= ~FDI_LINK_TRAIN_NONE;
3443 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003444 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003445
Chris Wilson5eddb702010-09-11 13:48:45 +01003446 reg = FDI_RX_CTL(pipe);
3447 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003448 temp &= ~FDI_LINK_TRAIN_NONE;
3449 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01003450 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3451
3452 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003453 udelay(150);
3454
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003455 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01003456 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3457 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3458 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07003459
Chris Wilson5eddb702010-09-11 13:48:45 +01003460 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003461 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003462 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003463 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3464
3465 if ((temp & FDI_RX_BIT_LOCK)) {
3466 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003467 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003468 break;
3469 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003470 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003471 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003472 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003473
3474 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003475 reg = FDI_TX_CTL(pipe);
3476 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003477 temp &= ~FDI_LINK_TRAIN_NONE;
3478 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003479 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003480
Chris Wilson5eddb702010-09-11 13:48:45 +01003481 reg = FDI_RX_CTL(pipe);
3482 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003483 temp &= ~FDI_LINK_TRAIN_NONE;
3484 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01003485 I915_WRITE(reg, temp);
3486
3487 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003488 udelay(150);
3489
Chris Wilson5eddb702010-09-11 13:48:45 +01003490 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04003491 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003492 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003493 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3494
3495 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003496 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003497 DRM_DEBUG_KMS("FDI train 2 done.\n");
3498 break;
3499 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003500 }
Adam Jacksone1a44742010-06-25 15:32:14 -04003501 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01003502 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003503
3504 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07003505
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003506}
3507
Akshay Joshi0206e352011-08-16 15:34:10 -04003508static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003509 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3510 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3511 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3512 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3513};
3514
3515/* The FDI link training functions for SNB/Cougarpoint. */
3516static void gen6_fdi_link_train(struct drm_crtc *crtc)
3517{
3518 struct drm_device *dev = crtc->dev;
3519 struct drm_i915_private *dev_priv = dev->dev_private;
3520 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3521 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003522 i915_reg_t reg;
3523 u32 temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003524
Adam Jacksone1a44742010-06-25 15:32:14 -04003525 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3526 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01003527 reg = FDI_RX_IMR(pipe);
3528 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003529 temp &= ~FDI_RX_SYMBOL_LOCK;
3530 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01003531 I915_WRITE(reg, temp);
3532
3533 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04003534 udelay(150);
3535
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003536 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01003537 reg = FDI_TX_CTL(pipe);
3538 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003539 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003540 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003541 temp &= ~FDI_LINK_TRAIN_NONE;
3542 temp |= FDI_LINK_TRAIN_PATTERN_1;
3543 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3544 /* SNB-B */
3545 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01003546 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003547
Daniel Vetterd74cf322012-10-26 10:58:13 +02003548 I915_WRITE(FDI_RX_MISC(pipe),
3549 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3550
Chris Wilson5eddb702010-09-11 13:48:45 +01003551 reg = FDI_RX_CTL(pipe);
3552 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003553 if (HAS_PCH_CPT(dev)) {
3554 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3555 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3556 } else {
3557 temp &= ~FDI_LINK_TRAIN_NONE;
3558 temp |= FDI_LINK_TRAIN_PATTERN_1;
3559 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003560 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3561
3562 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003563 udelay(150);
3564
Akshay Joshi0206e352011-08-16 15:34:10 -04003565 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003566 reg = FDI_TX_CTL(pipe);
3567 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003568 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3569 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003570 I915_WRITE(reg, temp);
3571
3572 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003573 udelay(500);
3574
Sean Paulfa37d392012-03-02 12:53:39 -05003575 for (retry = 0; retry < 5; retry++) {
3576 reg = FDI_RX_IIR(pipe);
3577 temp = I915_READ(reg);
3578 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3579 if (temp & FDI_RX_BIT_LOCK) {
3580 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3581 DRM_DEBUG_KMS("FDI train 1 done.\n");
3582 break;
3583 }
3584 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003585 }
Sean Paulfa37d392012-03-02 12:53:39 -05003586 if (retry < 5)
3587 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003588 }
3589 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003590 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003591
3592 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01003593 reg = FDI_TX_CTL(pipe);
3594 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003595 temp &= ~FDI_LINK_TRAIN_NONE;
3596 temp |= FDI_LINK_TRAIN_PATTERN_2;
3597 if (IS_GEN6(dev)) {
3598 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3599 /* SNB-B */
3600 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3601 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003602 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003603
Chris Wilson5eddb702010-09-11 13:48:45 +01003604 reg = FDI_RX_CTL(pipe);
3605 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003606 if (HAS_PCH_CPT(dev)) {
3607 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3608 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3609 } else {
3610 temp &= ~FDI_LINK_TRAIN_NONE;
3611 temp |= FDI_LINK_TRAIN_PATTERN_2;
3612 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003613 I915_WRITE(reg, temp);
3614
3615 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003616 udelay(150);
3617
Akshay Joshi0206e352011-08-16 15:34:10 -04003618 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003619 reg = FDI_TX_CTL(pipe);
3620 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003621 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3622 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003623 I915_WRITE(reg, temp);
3624
3625 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003626 udelay(500);
3627
Sean Paulfa37d392012-03-02 12:53:39 -05003628 for (retry = 0; retry < 5; retry++) {
3629 reg = FDI_RX_IIR(pipe);
3630 temp = I915_READ(reg);
3631 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3632 if (temp & FDI_RX_SYMBOL_LOCK) {
3633 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3634 DRM_DEBUG_KMS("FDI train 2 done.\n");
3635 break;
3636 }
3637 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003638 }
Sean Paulfa37d392012-03-02 12:53:39 -05003639 if (retry < 5)
3640 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003641 }
3642 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003643 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003644
3645 DRM_DEBUG_KMS("FDI train done.\n");
3646}
3647
Jesse Barnes357555c2011-04-28 15:09:55 -07003648/* Manual link training for Ivy Bridge A0 parts */
3649static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3650{
3651 struct drm_device *dev = crtc->dev;
3652 struct drm_i915_private *dev_priv = dev->dev_private;
3653 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3654 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003655 i915_reg_t reg;
3656 u32 temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003657
3658 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3659 for train result */
3660 reg = FDI_RX_IMR(pipe);
3661 temp = I915_READ(reg);
3662 temp &= ~FDI_RX_SYMBOL_LOCK;
3663 temp &= ~FDI_RX_BIT_LOCK;
3664 I915_WRITE(reg, temp);
3665
3666 POSTING_READ(reg);
3667 udelay(150);
3668
Daniel Vetter01a415f2012-10-27 15:58:40 +02003669 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3670 I915_READ(FDI_RX_IIR(pipe)));
3671
Jesse Barnes139ccd32013-08-19 11:04:55 -07003672 /* Try each vswing and preemphasis setting twice before moving on */
3673 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3674 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003675 reg = FDI_TX_CTL(pipe);
3676 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003677 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3678 temp &= ~FDI_TX_ENABLE;
3679 I915_WRITE(reg, temp);
3680
3681 reg = FDI_RX_CTL(pipe);
3682 temp = I915_READ(reg);
3683 temp &= ~FDI_LINK_TRAIN_AUTO;
3684 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3685 temp &= ~FDI_RX_ENABLE;
3686 I915_WRITE(reg, temp);
3687
3688 /* enable CPU FDI TX and PCH FDI RX */
3689 reg = FDI_TX_CTL(pipe);
3690 temp = I915_READ(reg);
3691 temp &= ~FDI_DP_PORT_WIDTH_MASK;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003692 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003693 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003694 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003695 temp |= snb_b_fdi_train_param[j/2];
3696 temp |= FDI_COMPOSITE_SYNC;
3697 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3698
3699 I915_WRITE(FDI_RX_MISC(pipe),
3700 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3701
3702 reg = FDI_RX_CTL(pipe);
3703 temp = I915_READ(reg);
3704 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3705 temp |= FDI_COMPOSITE_SYNC;
3706 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3707
3708 POSTING_READ(reg);
3709 udelay(1); /* should be 0.5us */
3710
3711 for (i = 0; i < 4; i++) {
3712 reg = FDI_RX_IIR(pipe);
3713 temp = I915_READ(reg);
3714 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3715
3716 if (temp & FDI_RX_BIT_LOCK ||
3717 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3718 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3719 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3720 i);
3721 break;
3722 }
3723 udelay(1); /* should be 0.5us */
3724 }
3725 if (i == 4) {
3726 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3727 continue;
3728 }
3729
3730 /* Train 2 */
3731 reg = FDI_TX_CTL(pipe);
3732 temp = I915_READ(reg);
3733 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3734 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3735 I915_WRITE(reg, temp);
3736
3737 reg = FDI_RX_CTL(pipe);
3738 temp = I915_READ(reg);
3739 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3740 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003741 I915_WRITE(reg, temp);
3742
3743 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003744 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003745
Jesse Barnes139ccd32013-08-19 11:04:55 -07003746 for (i = 0; i < 4; i++) {
3747 reg = FDI_RX_IIR(pipe);
3748 temp = I915_READ(reg);
3749 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003750
Jesse Barnes139ccd32013-08-19 11:04:55 -07003751 if (temp & FDI_RX_SYMBOL_LOCK ||
3752 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3753 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3754 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3755 i);
3756 goto train_done;
3757 }
3758 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003759 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003760 if (i == 4)
3761 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003762 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003763
Jesse Barnes139ccd32013-08-19 11:04:55 -07003764train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003765 DRM_DEBUG_KMS("FDI train done.\n");
3766}
3767
Daniel Vetter88cefb62012-08-12 19:27:14 +02003768static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003769{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003770 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003771 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003772 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003773 i915_reg_t reg;
3774 u32 temp;
Jesse Barnesc64e3112010-09-10 11:27:03 -07003775
Jesse Barnes0e23b992010-09-10 11:10:00 -07003776 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003777 reg = FDI_RX_CTL(pipe);
3778 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003779 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003780 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003781 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003782 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3783
3784 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003785 udelay(200);
3786
3787 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003788 temp = I915_READ(reg);
3789 I915_WRITE(reg, temp | FDI_PCDCLK);
3790
3791 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003792 udelay(200);
3793
Paulo Zanoni20749732012-11-23 15:30:38 -02003794 /* Enable CPU FDI TX PLL, always on for Ironlake */
3795 reg = FDI_TX_CTL(pipe);
3796 temp = I915_READ(reg);
3797 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3798 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003799
Paulo Zanoni20749732012-11-23 15:30:38 -02003800 POSTING_READ(reg);
3801 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003802 }
3803}
3804
Daniel Vetter88cefb62012-08-12 19:27:14 +02003805static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3806{
3807 struct drm_device *dev = intel_crtc->base.dev;
3808 struct drm_i915_private *dev_priv = dev->dev_private;
3809 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003810 i915_reg_t reg;
3811 u32 temp;
Daniel Vetter88cefb62012-08-12 19:27:14 +02003812
3813 /* Switch from PCDclk to Rawclk */
3814 reg = FDI_RX_CTL(pipe);
3815 temp = I915_READ(reg);
3816 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3817
3818 /* Disable CPU FDI TX PLL */
3819 reg = FDI_TX_CTL(pipe);
3820 temp = I915_READ(reg);
3821 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3822
3823 POSTING_READ(reg);
3824 udelay(100);
3825
3826 reg = FDI_RX_CTL(pipe);
3827 temp = I915_READ(reg);
3828 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3829
3830 /* Wait for the clocks to turn off. */
3831 POSTING_READ(reg);
3832 udelay(100);
3833}
3834
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003835static void ironlake_fdi_disable(struct drm_crtc *crtc)
3836{
3837 struct drm_device *dev = crtc->dev;
3838 struct drm_i915_private *dev_priv = dev->dev_private;
3839 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3840 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003841 i915_reg_t reg;
3842 u32 temp;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003843
3844 /* disable CPU FDI tx and PCH FDI rx */
3845 reg = FDI_TX_CTL(pipe);
3846 temp = I915_READ(reg);
3847 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3848 POSTING_READ(reg);
3849
3850 reg = FDI_RX_CTL(pipe);
3851 temp = I915_READ(reg);
3852 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003853 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003854 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3855
3856 POSTING_READ(reg);
3857 udelay(100);
3858
3859 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003860 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003861 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003862
3863 /* still set train pattern 1 */
3864 reg = FDI_TX_CTL(pipe);
3865 temp = I915_READ(reg);
3866 temp &= ~FDI_LINK_TRAIN_NONE;
3867 temp |= FDI_LINK_TRAIN_PATTERN_1;
3868 I915_WRITE(reg, temp);
3869
3870 reg = FDI_RX_CTL(pipe);
3871 temp = I915_READ(reg);
3872 if (HAS_PCH_CPT(dev)) {
3873 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3874 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3875 } else {
3876 temp &= ~FDI_LINK_TRAIN_NONE;
3877 temp |= FDI_LINK_TRAIN_PATTERN_1;
3878 }
3879 /* BPC in FDI rx is consistent with that in PIPECONF */
3880 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003881 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003882 I915_WRITE(reg, temp);
3883
3884 POSTING_READ(reg);
3885 udelay(100);
3886}
3887
Chris Wilson5dce5b932014-01-20 10:17:36 +00003888bool intel_has_pending_fb_unpin(struct drm_device *dev)
3889{
3890 struct intel_crtc *crtc;
3891
3892 /* Note that we don't need to be called with mode_config.lock here
3893 * as our list of CRTC objects is static for the lifetime of the
3894 * device and so cannot disappear as we iterate. Similarly, we can
3895 * happily treat the predicates as racy, atomic checks as userspace
3896 * cannot claim and pin a new fb without at least acquring the
3897 * struct_mutex and so serialising with us.
3898 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003899 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003900 if (atomic_read(&crtc->unpin_work_count) == 0)
3901 continue;
3902
3903 if (crtc->unpin_work)
3904 intel_wait_for_vblank(dev, crtc->pipe);
3905
3906 return true;
3907 }
3908
3909 return false;
3910}
3911
Chris Wilsond6bbafa2014-09-05 07:13:24 +01003912static void page_flip_completed(struct intel_crtc *intel_crtc)
3913{
3914 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3915 struct intel_unpin_work *work = intel_crtc->unpin_work;
3916
3917 /* ensure that the unpin work is consistent wrt ->pending. */
3918 smp_rmb();
3919 intel_crtc->unpin_work = NULL;
3920
3921 if (work->event)
3922 drm_send_vblank_event(intel_crtc->base.dev,
3923 intel_crtc->pipe,
3924 work->event);
3925
3926 drm_crtc_vblank_put(&intel_crtc->base);
3927
3928 wake_up_all(&dev_priv->pending_flip_queue);
3929 queue_work(dev_priv->wq, &work->work);
3930
3931 trace_i915_flip_complete(intel_crtc->plane,
3932 work->pending_flip_obj);
3933}
3934
Maarten Lankhorst5008e872015-08-18 13:40:05 +02003935static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003936{
Chris Wilson0f911282012-04-17 10:05:38 +01003937 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003938 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst5008e872015-08-18 13:40:05 +02003939 long ret;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003940
Daniel Vetter2c10d572012-12-20 21:24:07 +01003941 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
Maarten Lankhorst5008e872015-08-18 13:40:05 +02003942
3943 ret = wait_event_interruptible_timeout(
3944 dev_priv->pending_flip_queue,
3945 !intel_crtc_has_pending_flip(crtc),
3946 60*HZ);
3947
3948 if (ret < 0)
3949 return ret;
3950
3951 if (ret == 0) {
Chris Wilson9c787942014-09-05 07:13:25 +01003952 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2c10d572012-12-20 21:24:07 +01003953
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003954 spin_lock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003955 if (intel_crtc->unpin_work) {
3956 WARN_ONCE(1, "Removing stuck page flip\n");
3957 page_flip_completed(intel_crtc);
3958 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +02003959 spin_unlock_irq(&dev->event_lock);
Chris Wilson9c787942014-09-05 07:13:25 +01003960 }
Chris Wilson5bb61642012-09-27 21:25:58 +01003961
Maarten Lankhorst5008e872015-08-18 13:40:05 +02003962 return 0;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003963}
3964
Ville Syrjälä060f02d2015-12-04 22:21:34 +02003965static void lpt_disable_iclkip(struct drm_i915_private *dev_priv)
3966{
3967 u32 temp;
3968
3969 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3970
3971 mutex_lock(&dev_priv->sb_lock);
3972
3973 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
3974 temp |= SBI_SSCCTL_DISABLE;
3975 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
3976
3977 mutex_unlock(&dev_priv->sb_lock);
3978}
3979
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003980/* Program iCLKIP clock to the desired frequency */
3981static void lpt_program_iclkip(struct drm_crtc *crtc)
3982{
3983 struct drm_device *dev = crtc->dev;
3984 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003985 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003986 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3987 u32 temp;
3988
Ville Syrjälä060f02d2015-12-04 22:21:34 +02003989 lpt_disable_iclkip(dev_priv);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003990
3991 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003992 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003993 auxdiv = 1;
3994 divsel = 0x41;
3995 phaseinc = 0x20;
3996 } else {
3997 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003998 * but the adjusted_mode->crtc_clock in in KHz. To get the
3999 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004000 * convert the virtual clock precision to KHz here for higher
4001 * precision.
4002 */
4003 u32 iclk_virtual_root_freq = 172800 * 1000;
4004 u32 iclk_pi_range = 64;
4005 u32 desired_divisor, msb_divisor_value, pi_value;
4006
Ville Syrjäläa2572f52015-12-04 22:20:21 +02004007 desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq, clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004008 msb_divisor_value = desired_divisor / iclk_pi_range;
4009 pi_value = desired_divisor % iclk_pi_range;
4010
4011 auxdiv = 0;
4012 divsel = msb_divisor_value - 2;
4013 phaseinc = pi_value;
4014 }
4015
4016 /* This should not happen with any sane values */
4017 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
4018 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
4019 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
4020 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
4021
4022 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 +03004023 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004024 auxdiv,
4025 divsel,
4026 phasedir,
4027 phaseinc);
4028
Ville Syrjälä060f02d2015-12-04 22:21:34 +02004029 mutex_lock(&dev_priv->sb_lock);
4030
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004031 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004032 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004033 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
4034 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
4035 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
4036 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
4037 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
4038 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004039 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004040
4041 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004042 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004043 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4044 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004045 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004046
4047 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004048 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004049 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02004050 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004051
Ville Syrjälä060f02d2015-12-04 22:21:34 +02004052 mutex_unlock(&dev_priv->sb_lock);
4053
Eugeni Dodonove615efe2012-05-09 15:37:26 -03004054 /* Wait for initialization time */
4055 udelay(24);
4056
4057 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
4058}
4059
Daniel Vetter275f01b22013-05-03 11:49:47 +02004060static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4061 enum pipe pch_transcoder)
4062{
4063 struct drm_device *dev = crtc->base.dev;
4064 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004065 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
Daniel Vetter275f01b22013-05-03 11:49:47 +02004066
4067 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4068 I915_READ(HTOTAL(cpu_transcoder)));
4069 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4070 I915_READ(HBLANK(cpu_transcoder)));
4071 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4072 I915_READ(HSYNC(cpu_transcoder)));
4073
4074 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4075 I915_READ(VTOTAL(cpu_transcoder)));
4076 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4077 I915_READ(VBLANK(cpu_transcoder)));
4078 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4079 I915_READ(VSYNC(cpu_transcoder)));
4080 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4081 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4082}
4083
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004084static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004085{
4086 struct drm_i915_private *dev_priv = dev->dev_private;
4087 uint32_t temp;
4088
4089 temp = I915_READ(SOUTH_CHICKEN1);
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004090 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004091 return;
4092
4093 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4094 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4095
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004096 temp &= ~FDI_BC_BIFURCATION_SELECT;
4097 if (enable)
4098 temp |= FDI_BC_BIFURCATION_SELECT;
4099
4100 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004101 I915_WRITE(SOUTH_CHICKEN1, temp);
4102 POSTING_READ(SOUTH_CHICKEN1);
4103}
4104
4105static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4106{
4107 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004108
4109 switch (intel_crtc->pipe) {
4110 case PIPE_A:
4111 break;
4112 case PIPE_B:
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004113 if (intel_crtc->config->fdi_lanes > 2)
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004114 cpt_set_fdi_bc_bifurcation(dev, false);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004115 else
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004116 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004117
4118 break;
4119 case PIPE_C:
Ander Conselvan de Oliveira003632d2015-03-11 13:35:43 +02004120 cpt_set_fdi_bc_bifurcation(dev, true);
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004121
4122 break;
4123 default:
4124 BUG();
4125 }
4126}
4127
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004128/* Return which DP Port should be selected for Transcoder DP control */
4129static enum port
4130intel_trans_dp_port_sel(struct drm_crtc *crtc)
4131{
4132 struct drm_device *dev = crtc->dev;
4133 struct intel_encoder *encoder;
4134
4135 for_each_encoder_on_crtc(dev, crtc, encoder) {
4136 if (encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
4137 encoder->type == INTEL_OUTPUT_EDP)
4138 return enc_to_dig_port(&encoder->base)->port;
4139 }
4140
4141 return -1;
4142}
4143
Jesse Barnesf67a5592011-01-05 10:31:48 -08004144/*
4145 * Enable PCH resources required for PCH ports:
4146 * - PCH PLLs
4147 * - FDI training & RX/TX
4148 * - update transcoder timings
4149 * - DP transcoding bits
4150 * - transcoder
4151 */
4152static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08004153{
4154 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004155 struct drm_i915_private *dev_priv = dev->dev_private;
4156 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4157 int pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004158 u32 temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004159
Daniel Vetterab9412b2013-05-03 11:49:46 +02004160 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01004161
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01004162 if (IS_IVYBRIDGE(dev))
4163 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4164
Daniel Vettercd986ab2012-10-26 10:58:12 +02004165 /* Write the TU size bits before fdi link training, so that error
4166 * detection works. */
4167 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4168 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4169
Ville Syrjälä3860b2e2015-11-20 22:09:18 +02004170 /*
4171 * Sometimes spurious CPU pipe underruns happen during FDI
4172 * training, at least with VGA+HDMI cloning. Suppress them.
4173 */
4174 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4175
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004176 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07004177 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004178
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004179 /* We need to program the right clock selection before writing the pixel
4180 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004181 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004182 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004183
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004184 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004185 temp |= TRANS_DPLL_ENABLE(pipe);
4186 sel = TRANS_DPLLB_SEL(pipe);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004187 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004188 temp |= sel;
4189 else
4190 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004191 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004192 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004193
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004194 /* XXX: pch pll's can be enabled any time before we enable the PCH
4195 * transcoder, and we actually should do this to not upset any PCH
4196 * transcoder that already use the clock when we share it.
4197 *
4198 * Note that enable_shared_dpll tries to do the right thing, but
4199 * get_shared_dpll unconditionally resets the pll - we need that to have
4200 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02004201 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02004202
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08004203 /* set transcoder timing, panel must allow it */
4204 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02004205 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004206
Paulo Zanoni303b81e2012-10-31 18:12:23 -02004207 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08004208
Ville Syrjälä3860b2e2015-11-20 22:09:18 +02004209 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4210
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004211 /* For PCH DP, enable TRANS_DP_CTL */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004212 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
Ville Syrjälä9c4edae2015-10-29 21:25:51 +02004213 const struct drm_display_mode *adjusted_mode =
4214 &intel_crtc->config->base.adjusted_mode;
Daniel Vetterdfd07d72012-12-17 11:21:38 +01004215 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004216 i915_reg_t reg = TRANS_DP_CTL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01004217 temp = I915_READ(reg);
4218 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08004219 TRANS_DP_SYNC_MASK |
4220 TRANS_DP_BPC_MASK);
Ville Syrjäläe3ef4472015-05-05 17:17:31 +03004221 temp |= TRANS_DP_OUTPUT_ENABLE;
Jesse Barnes9325c9f2011-06-24 12:19:21 -07004222 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004223
Ville Syrjälä9c4edae2015-10-29 21:25:51 +02004224 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004225 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Ville Syrjälä9c4edae2015-10-29 21:25:51 +02004226 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01004227 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004228
4229 switch (intel_trans_dp_port_sel(crtc)) {
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004230 case PORT_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01004231 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004232 break;
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004233 case PORT_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01004234 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004235 break;
Ville Syrjäläc48b5302015-11-04 23:19:56 +02004236 case PORT_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01004237 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004238 break;
4239 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02004240 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004241 }
4242
Chris Wilson5eddb702010-09-11 13:48:45 +01004243 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07004244 }
4245
Paulo Zanonib8a4f402012-10-31 18:12:42 -02004246 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004247}
4248
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004249static void lpt_pch_enable(struct drm_crtc *crtc)
4250{
4251 struct drm_device *dev = crtc->dev;
4252 struct drm_i915_private *dev_priv = dev->dev_private;
4253 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004254 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004255
Daniel Vetterab9412b2013-05-03 11:49:46 +02004256 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004257
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02004258 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004259
Paulo Zanoni0540e482012-10-31 18:12:40 -02004260 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02004261 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004262
Paulo Zanoni937bb612012-10-31 18:12:47 -02004263 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004264}
4265
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004266struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
4267 struct intel_crtc_state *crtc_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004268{
Daniel Vettere2b78262013-06-07 23:10:03 +02004269 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004270 struct intel_shared_dpll *pll;
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004271 struct intel_shared_dpll_config *shared_dpll;
Daniel Vettere2b78262013-06-07 23:10:03 +02004272 enum intel_dpll_id i;
Maarten Lankhorst00490c22015-11-16 14:42:12 +01004273 int max = dev_priv->num_shared_dpll;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004274
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004275 shared_dpll = intel_atomic_get_shared_dpll_state(crtc_state->base.state);
4276
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004277 if (HAS_PCH_IBX(dev_priv->dev)) {
4278 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02004279 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004280 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004281
Daniel Vetter46edb022013-06-05 13:34:12 +02004282 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4283 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004284
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004285 WARN_ON(shared_dpll[i].crtc_mask);
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004286
Daniel Vetter98b6bd92012-05-20 20:00:25 +02004287 goto found;
4288 }
4289
Satheeshakrishna Mbcddf6102014-08-22 09:49:10 +05304290 if (IS_BROXTON(dev_priv->dev)) {
4291 /* PLL is attached to port in bxt */
4292 struct intel_encoder *encoder;
4293 struct intel_digital_port *intel_dig_port;
4294
4295 encoder = intel_ddi_get_crtc_new_encoder(crtc_state);
4296 if (WARN_ON(!encoder))
4297 return NULL;
4298
4299 intel_dig_port = enc_to_dig_port(&encoder->base);
4300 /* 1:1 mapping between ports and PLLs */
4301 i = (enum intel_dpll_id)intel_dig_port->port;
4302 pll = &dev_priv->shared_dplls[i];
4303 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4304 crtc->base.base.id, pll->name);
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004305 WARN_ON(shared_dpll[i].crtc_mask);
Satheeshakrishna Mbcddf6102014-08-22 09:49:10 +05304306
4307 goto found;
Maarten Lankhorst00490c22015-11-16 14:42:12 +01004308 } else if (INTEL_INFO(dev_priv)->gen < 9 && HAS_DDI(dev_priv))
4309 /* Do not consider SPLL */
4310 max = 2;
Satheeshakrishna Mbcddf6102014-08-22 09:49:10 +05304311
Maarten Lankhorst00490c22015-11-16 14:42:12 +01004312 for (i = 0; i < max; i++) {
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004313 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004314
4315 /* Only want to check enabled timings first */
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004316 if (shared_dpll[i].crtc_mask == 0)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004317 continue;
4318
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004319 if (memcmp(&crtc_state->dpll_hw_state,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004320 &shared_dpll[i].hw_state,
4321 sizeof(crtc_state->dpll_hw_state)) == 0) {
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004322 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02004323 crtc->base.base.id, pll->name,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004324 shared_dpll[i].crtc_mask,
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004325 pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004326 goto found;
4327 }
4328 }
4329
4330 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004331 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4332 pll = &dev_priv->shared_dplls[i];
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004333 if (shared_dpll[i].crtc_mask == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02004334 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4335 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004336 goto found;
4337 }
4338 }
4339
4340 return NULL;
4341
4342found:
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004343 if (shared_dpll[i].crtc_mask == 0)
4344 shared_dpll[i].hw_state =
4345 crtc_state->dpll_hw_state;
Daniel Vetterf2a69f42014-05-20 15:19:19 +02004346
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02004347 crtc_state->shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02004348 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4349 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02004350
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004351 shared_dpll[i].crtc_mask |= 1 << crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004352
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004353 return pll;
4354}
4355
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004356static void intel_shared_dpll_commit(struct drm_atomic_state *state)
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004357{
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004358 struct drm_i915_private *dev_priv = to_i915(state->dev);
4359 struct intel_shared_dpll_config *shared_dpll;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004360 struct intel_shared_dpll *pll;
4361 enum intel_dpll_id i;
4362
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004363 if (!to_intel_atomic_state(state)->dpll_set)
4364 return;
4365
4366 shared_dpll = to_intel_atomic_state(state)->shared_dpll;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004367 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4368 pll = &dev_priv->shared_dplls[i];
Maarten Lankhorstde419ab2015-06-04 10:21:28 +02004369 pll->config = shared_dpll[i];
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02004370 }
4371}
4372
Daniel Vettera1520312013-05-03 11:49:50 +02004373static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07004374{
4375 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004376 i915_reg_t dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07004377 u32 temp;
4378
4379 temp = I915_READ(dslreg);
4380 udelay(500);
4381 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07004382 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03004383 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07004384 }
4385}
4386
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004387static int
4388skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4389 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4390 int src_w, int src_h, int dst_w, int dst_h)
Chandra Kondurua1b22782015-04-07 15:28:45 -07004391{
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004392 struct intel_crtc_scaler_state *scaler_state =
4393 &crtc_state->scaler_state;
4394 struct intel_crtc *intel_crtc =
4395 to_intel_crtc(crtc_state->base.crtc);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004396 int need_scaling;
Chandra Konduru6156a452015-04-27 13:48:39 -07004397
4398 need_scaling = intel_rotation_90_or_270(rotation) ?
4399 (src_h != dst_w || src_w != dst_h):
4400 (src_w != dst_w || src_h != dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004401
4402 /*
4403 * if plane is being disabled or scaler is no more required or force detach
4404 * - free scaler binded to this plane/crtc
4405 * - in order to do this, update crtc->scaler_usage
4406 *
4407 * Here scaler state in crtc_state is set free so that
4408 * scaler can be assigned to other user. Actual register
4409 * update to free the scaler is done in plane/panel-fit programming.
4410 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4411 */
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004412 if (force_detach || !need_scaling) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004413 if (*scaler_id >= 0) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004414 scaler_state->scaler_users &= ~(1 << scaler_user);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004415 scaler_state->scalers[*scaler_id].in_use = 0;
4416
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004417 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4418 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4419 intel_crtc->pipe, scaler_user, *scaler_id,
Chandra Kondurua1b22782015-04-07 15:28:45 -07004420 scaler_state->scaler_users);
4421 *scaler_id = -1;
4422 }
4423 return 0;
4424 }
4425
4426 /* range checks */
4427 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4428 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4429
4430 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4431 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004432 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
Chandra Kondurua1b22782015-04-07 15:28:45 -07004433 "size is out of scaler range\n",
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004434 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004435 return -EINVAL;
4436 }
4437
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004438 /* mark this plane as a scaler user in crtc_state */
4439 scaler_state->scaler_users |= (1 << scaler_user);
4440 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4441 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4442 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4443 scaler_state->scaler_users);
4444
4445 return 0;
4446}
4447
4448/**
4449 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4450 *
4451 * @state: crtc's scaler state
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004452 *
4453 * Return
4454 * 0 - scaler_usage updated successfully
4455 * error - requested scaling cannot be supported or other error condition
4456 */
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004457int skl_update_scaler_crtc(struct intel_crtc_state *state)
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004458{
4459 struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03004460 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004461
4462 DRM_DEBUG_KMS("Updating scaler for [CRTC:%i] scaler_user index %u.%u\n",
4463 intel_crtc->base.base.id, intel_crtc->pipe, SKL_CRTC_INDEX);
4464
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004465 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004466 &state->scaler_state.scaler_id, DRM_ROTATE_0,
4467 state->pipe_src_w, state->pipe_src_h,
Ville Syrjäläaad941d2015-09-25 16:38:56 +03004468 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004469}
4470
4471/**
4472 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4473 *
4474 * @state: crtc's scaler state
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004475 * @plane_state: atomic plane state to update
4476 *
4477 * Return
4478 * 0 - scaler_usage updated successfully
4479 * error - requested scaling cannot be supported or other error condition
4480 */
Maarten Lankhorstda20eab2015-06-15 12:33:44 +02004481static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4482 struct intel_plane_state *plane_state)
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004483{
4484
4485 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Maarten Lankhorstda20eab2015-06-15 12:33:44 +02004486 struct intel_plane *intel_plane =
4487 to_intel_plane(plane_state->base.plane);
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004488 struct drm_framebuffer *fb = plane_state->base.fb;
4489 int ret;
4490
4491 bool force_detach = !fb || !plane_state->visible;
4492
4493 DRM_DEBUG_KMS("Updating scaler for [PLANE:%d] scaler_user index %u.%u\n",
4494 intel_plane->base.base.id, intel_crtc->pipe,
4495 drm_plane_index(&intel_plane->base));
4496
4497 ret = skl_update_scaler(crtc_state, force_detach,
4498 drm_plane_index(&intel_plane->base),
4499 &plane_state->scaler_id,
4500 plane_state->base.rotation,
4501 drm_rect_width(&plane_state->src) >> 16,
4502 drm_rect_height(&plane_state->src) >> 16,
4503 drm_rect_width(&plane_state->dst),
4504 drm_rect_height(&plane_state->dst));
4505
4506 if (ret || plane_state->scaler_id < 0)
4507 return ret;
4508
Chandra Kondurua1b22782015-04-07 15:28:45 -07004509 /* check colorkey */
Maarten Lankhorst818ed962015-06-15 12:33:54 +02004510 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004511 DRM_DEBUG_KMS("[PLANE:%d] scaling with color key not allowed",
Maarten Lankhorst818ed962015-06-15 12:33:54 +02004512 intel_plane->base.base.id);
Chandra Kondurua1b22782015-04-07 15:28:45 -07004513 return -EINVAL;
4514 }
4515
4516 /* Check src format */
Maarten Lankhorst86adf9d2015-06-22 09:50:32 +02004517 switch (fb->pixel_format) {
4518 case DRM_FORMAT_RGB565:
4519 case DRM_FORMAT_XBGR8888:
4520 case DRM_FORMAT_XRGB8888:
4521 case DRM_FORMAT_ABGR8888:
4522 case DRM_FORMAT_ARGB8888:
4523 case DRM_FORMAT_XRGB2101010:
4524 case DRM_FORMAT_XBGR2101010:
4525 case DRM_FORMAT_YUYV:
4526 case DRM_FORMAT_YVYU:
4527 case DRM_FORMAT_UYVY:
4528 case DRM_FORMAT_VYUY:
4529 break;
4530 default:
4531 DRM_DEBUG_KMS("[PLANE:%d] FB:%d unsupported scaling format 0x%x\n",
4532 intel_plane->base.base.id, fb->base.id, fb->pixel_format);
4533 return -EINVAL;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004534 }
4535
Chandra Kondurua1b22782015-04-07 15:28:45 -07004536 return 0;
4537}
4538
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02004539static void skylake_scaler_disable(struct intel_crtc *crtc)
4540{
4541 int i;
4542
4543 for (i = 0; i < crtc->num_scalers; i++)
4544 skl_detach_scaler(crtc, i);
4545}
4546
4547static void skylake_pfit_enable(struct intel_crtc *crtc)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004548{
4549 struct drm_device *dev = crtc->base.dev;
4550 struct drm_i915_private *dev_priv = dev->dev_private;
4551 int pipe = crtc->pipe;
Chandra Kondurua1b22782015-04-07 15:28:45 -07004552 struct intel_crtc_scaler_state *scaler_state =
4553 &crtc->config->scaler_state;
4554
4555 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4556
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004557 if (crtc->config->pch_pfit.enabled) {
Chandra Kondurua1b22782015-04-07 15:28:45 -07004558 int id;
4559
4560 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4561 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4562 return;
4563 }
4564
4565 id = scaler_state->scaler_id;
4566 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4567 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4568 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4569 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4570
4571 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00004572 }
4573}
4574
Jesse Barnesb074cec2013-04-25 12:55:02 -07004575static void ironlake_pfit_enable(struct intel_crtc *crtc)
4576{
4577 struct drm_device *dev = crtc->base.dev;
4578 struct drm_i915_private *dev_priv = dev->dev_private;
4579 int pipe = crtc->pipe;
4580
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004581 if (crtc->config->pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07004582 /* Force use of hard-coded filter coefficients
4583 * as some pre-programmed values are broken,
4584 * e.g. x201.
4585 */
4586 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4587 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4588 PF_PIPE_SEL_IVB(pipe));
4589 else
4590 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004591 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4592 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08004593 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004594}
4595
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004596void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004597{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004598 struct drm_device *dev = crtc->base.dev;
4599 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004600
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004601 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004602 return;
4603
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004604 /* We can only enable IPS after we enable a plane and wait for a vblank */
4605 intel_wait_for_vblank(dev, crtc->pipe);
4606
Paulo Zanonid77e4532013-09-24 13:52:55 -03004607 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03004608 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004609 mutex_lock(&dev_priv->rps.hw_lock);
4610 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4611 mutex_unlock(&dev_priv->rps.hw_lock);
4612 /* Quoting Art Runyan: "its not safe to expect any particular
4613 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08004614 * mailbox." Moreover, the mailbox may return a bogus state,
4615 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004616 */
4617 } else {
4618 I915_WRITE(IPS_CTL, IPS_ENABLE);
4619 /* The bit only becomes 1 in the next vblank, so this wait here
4620 * is essentially intel_wait_for_vblank. If we don't have this
4621 * and don't wait for vblanks until the end of crtc_enable, then
4622 * the HW state readout code will complain that the expected
4623 * IPS_CTL value is not the one we read. */
4624 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4625 DRM_ERROR("Timed out waiting for IPS enable\n");
4626 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004627}
4628
Ville Syrjälä20bc86732013-10-01 18:02:17 +03004629void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004630{
4631 struct drm_device *dev = crtc->base.dev;
4632 struct drm_i915_private *dev_priv = dev->dev_private;
4633
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004634 if (!crtc->config->ips_enabled)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004635 return;
4636
4637 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004638 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004639 mutex_lock(&dev_priv->rps.hw_lock);
4640 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4641 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07004642 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4643 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4644 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08004645 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07004646 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08004647 POSTING_READ(IPS_CTL);
4648 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03004649
4650 /* We need to wait for a vblank before we can disable the plane. */
4651 intel_wait_for_vblank(dev, crtc->pipe);
4652}
4653
4654/** Loads the palette/gamma unit for the CRTC with the prepared values */
4655static void intel_crtc_load_lut(struct drm_crtc *crtc)
4656{
4657 struct drm_device *dev = crtc->dev;
4658 struct drm_i915_private *dev_priv = dev->dev_private;
4659 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4660 enum pipe pipe = intel_crtc->pipe;
Paulo Zanonid77e4532013-09-24 13:52:55 -03004661 int i;
4662 bool reenable_ips = false;
4663
4664 /* The clocks have to be on to load the palette. */
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004665 if (!crtc->state->active)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004666 return;
4667
Imre Deak50360402015-01-16 00:55:16 -08004668 if (HAS_GMCH_DISPLAY(dev_priv->dev)) {
Jani Nikulaa65347b2015-11-27 12:21:46 +02004669 if (intel_crtc->config->has_dsi_encoder)
Paulo Zanonid77e4532013-09-24 13:52:55 -03004670 assert_dsi_pll_enabled(dev_priv);
4671 else
4672 assert_pll_enabled(dev_priv, pipe);
4673 }
4674
Paulo Zanonid77e4532013-09-24 13:52:55 -03004675 /* Workaround : Do not read or write the pipe palette/gamma data while
4676 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4677 */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004678 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03004679 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4680 GAMMA_MODE_MODE_SPLIT)) {
4681 hsw_disable_ips(intel_crtc);
4682 reenable_ips = true;
4683 }
4684
4685 for (i = 0; i < 256; i++) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004686 i915_reg_t palreg;
Ville Syrjäläf65a9c52015-09-18 20:03:28 +03004687
4688 if (HAS_GMCH_DISPLAY(dev))
4689 palreg = PALETTE(pipe, i);
4690 else
4691 palreg = LGC_PALETTE(pipe, i);
4692
4693 I915_WRITE(palreg,
Paulo Zanonid77e4532013-09-24 13:52:55 -03004694 (intel_crtc->lut_r[i] << 16) |
4695 (intel_crtc->lut_g[i] << 8) |
4696 intel_crtc->lut_b[i]);
4697 }
4698
4699 if (reenable_ips)
4700 hsw_enable_ips(intel_crtc);
4701}
4702
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004703static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004704{
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004705 if (intel_crtc->overlay) {
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004706 struct drm_device *dev = intel_crtc->base.dev;
4707 struct drm_i915_private *dev_priv = dev->dev_private;
4708
4709 mutex_lock(&dev->struct_mutex);
4710 dev_priv->mm.interruptible = false;
4711 (void) intel_overlay_switch_off(intel_crtc->overlay);
4712 dev_priv->mm.interruptible = true;
4713 mutex_unlock(&dev->struct_mutex);
4714 }
4715
4716 /* Let userspace switch the overlay on again. In most cases userspace
4717 * has to recompute where to put it anyway.
4718 */
4719}
4720
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004721/**
4722 * intel_post_enable_primary - Perform operations after enabling primary plane
4723 * @crtc: the CRTC whose primary plane was just enabled
4724 *
4725 * Performs potentially sleeping operations that must be done after the primary
4726 * plane is enabled, such as updating FBC and IPS. Note that this may be
4727 * called due to an explicit primary plane update, or due to an implicit
4728 * re-enable that is caused when a sprite plane is updated to no longer
4729 * completely hide the primary plane.
4730 */
4731static void
4732intel_post_enable_primary(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004733{
4734 struct drm_device *dev = crtc->dev;
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004735 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004736 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4737 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004738
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004739 /*
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004740 * FIXME IPS should be fine as long as one plane is
4741 * enabled, but in practice it seems to have problems
4742 * when going from primary only to sprite only and vice
4743 * versa.
4744 */
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004745 hsw_enable_ips(intel_crtc);
4746
Daniel Vetterf99d7062014-06-19 16:01:59 +02004747 /*
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004748 * Gen2 reports pipe underruns whenever all planes are disabled.
4749 * So don't enable underrun reporting before at least some planes
4750 * are enabled.
4751 * FIXME: Need to fix the logic to work when we turn off all planes
4752 * but leave the pipe running.
Daniel Vetterf99d7062014-06-19 16:01:59 +02004753 */
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004754 if (IS_GEN2(dev))
4755 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4756
Ville Syrjäläaca7b682015-10-30 19:22:21 +02004757 /* Underruns don't always raise interrupts, so check manually. */
4758 intel_check_cpu_fifo_underruns(dev_priv);
4759 intel_check_pch_fifo_underruns(dev_priv);
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004760}
4761
4762/**
4763 * intel_pre_disable_primary - Perform operations before disabling primary plane
4764 * @crtc: the CRTC whose primary plane is to be disabled
4765 *
4766 * Performs potentially sleeping operations that must be done before the
4767 * primary plane is disabled, such as updating FBC and IPS. Note that this may
4768 * be called due to an explicit primary plane update, or due to an implicit
4769 * disable that is caused when a sprite plane completely hides the primary
4770 * plane.
4771 */
4772static void
4773intel_pre_disable_primary(struct drm_crtc *crtc)
4774{
4775 struct drm_device *dev = crtc->dev;
4776 struct drm_i915_private *dev_priv = dev->dev_private;
4777 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4778 int pipe = intel_crtc->pipe;
4779
4780 /*
4781 * Gen2 reports pipe underruns whenever all planes are disabled.
4782 * So diasble underrun reporting before all the planes get disabled.
4783 * FIXME: Need to fix the logic to work when we turn off all planes
4784 * but leave the pipe running.
4785 */
4786 if (IS_GEN2(dev))
4787 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4788
4789 /*
4790 * Vblank time updates from the shadow to live plane control register
4791 * are blocked if the memory self-refresh mode is active at that
4792 * moment. So to make sure the plane gets truly disabled, disable
4793 * first the self-refresh mode. The self-refresh enable bit in turn
4794 * will be checked/applied by the HW only at the next frame start
4795 * event which is after the vblank start event, so we need to have a
4796 * wait-for-vblank between disabling the plane and the pipe.
4797 */
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03004798 if (HAS_GMCH_DISPLAY(dev)) {
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004799 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03004800 dev_priv->wm.vlv.cxsr = false;
4801 intel_wait_for_vblank(dev, pipe);
4802 }
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004803
Maarten Lankhorst87d43002015-04-21 17:12:54 +03004804 /*
4805 * FIXME IPS should be fine as long as one plane is
4806 * enabled, but in practice it seems to have problems
4807 * when going from primary only to sprite only and vice
4808 * versa.
4809 */
4810 hsw_disable_ips(intel_crtc);
4811}
4812
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004813static void intel_post_plane_update(struct intel_crtc *crtc)
4814{
4815 struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
Maarten Lankhorst92826fc2015-12-03 13:49:13 +01004816 struct intel_crtc_state *pipe_config =
4817 to_intel_crtc_state(crtc->base.state);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004818 struct drm_device *dev = crtc->base.dev;
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004819
4820 if (atomic->wait_vblank)
4821 intel_wait_for_vblank(dev, crtc->pipe);
4822
4823 intel_frontbuffer_flip(dev, atomic->fb_bits);
4824
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +01004825 crtc->wm.cxsr_allowed = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +03004826
Maarten Lankhorstb9001112015-11-19 16:07:16 +01004827 if (pipe_config->wm_changed && pipe_config->base.active)
Ville Syrjäläf015c552015-06-24 22:00:02 +03004828 intel_update_watermarks(&crtc->base);
4829
Paulo Zanonic80ac852015-07-02 19:25:13 -03004830 if (atomic->update_fbc)
Paulo Zanoni754d1132015-10-13 19:13:25 -03004831 intel_fbc_update(crtc);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004832
4833 if (atomic->post_enable_primary)
4834 intel_post_enable_primary(&crtc->base);
4835
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004836 memset(atomic, 0, sizeof(*atomic));
4837}
4838
4839static void intel_pre_plane_update(struct intel_crtc *crtc)
4840{
4841 struct drm_device *dev = crtc->base.dev;
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +02004842 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004843 struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +01004844 struct intel_crtc_state *pipe_config =
4845 to_intel_crtc_state(crtc->base.state);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004846
Paulo Zanonic80ac852015-07-02 19:25:13 -03004847 if (atomic->disable_fbc)
Paulo Zanonid029bca2015-10-15 10:44:46 -03004848 intel_fbc_deactivate(crtc);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004849
Rodrigo Vivi066cf552015-06-26 13:55:54 -07004850 if (crtc->atomic.disable_ips)
4851 hsw_disable_ips(crtc);
4852
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004853 if (atomic->pre_disable_primary)
4854 intel_pre_disable_primary(&crtc->base);
Ville Syrjälä852eb002015-06-24 22:00:07 +03004855
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +01004856 if (pipe_config->disable_cxsr) {
Ville Syrjälä852eb002015-06-24 22:00:07 +03004857 crtc->wm.cxsr_allowed = false;
4858 intel_set_memory_cxsr(dev_priv, false);
4859 }
Maarten Lankhorst92826fc2015-12-03 13:49:13 +01004860
4861 if (!needs_modeset(&pipe_config->base) && pipe_config->wm_changed)
4862 intel_update_watermarks(&crtc->base);
Maarten Lankhorstac21b222015-06-15 12:33:49 +02004863}
4864
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004865static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004866{
4867 struct drm_device *dev = crtc->dev;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004868 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004869 struct drm_plane *p;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004870 int pipe = intel_crtc->pipe;
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004871
Maarten Lankhorst7cac9452015-04-21 17:12:55 +03004872 intel_crtc_dpms_overlay_disable(intel_crtc);
Maarten Lankhorst27321ae2015-04-21 17:12:52 +03004873
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +02004874 drm_for_each_plane_mask(p, dev, plane_mask)
4875 to_intel_plane(p)->disable_plane(p, crtc);
Ville Syrjäläf98551a2014-05-22 17:48:06 +03004876
Daniel Vetterf99d7062014-06-19 16:01:59 +02004877 /*
4878 * FIXME: Once we grow proper nuclear flip support out of this we need
4879 * to compute the mask of flip planes precisely. For the time being
4880 * consider this a flip to a NULL plane.
4881 */
4882 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004883}
4884
Jesse Barnesf67a5592011-01-05 10:31:48 -08004885static void ironlake_crtc_enable(struct drm_crtc *crtc)
4886{
4887 struct drm_device *dev = crtc->dev;
4888 struct drm_i915_private *dev_priv = dev->dev_private;
4889 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004890 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004891 int pipe = intel_crtc->pipe;
Jesse Barnesf67a5592011-01-05 10:31:48 -08004892
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004893 if (WARN_ON(intel_crtc->active))
Jesse Barnesf67a5592011-01-05 10:31:48 -08004894 return;
4895
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004896 if (intel_crtc->config->has_pch_encoder)
Ville Syrjälä81b088c2015-10-30 19:21:31 +02004897 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
4898
4899 if (intel_crtc->config->has_pch_encoder)
Daniel Vetterb14b1052014-04-24 23:55:13 +02004900 intel_prepare_shared_dpll(intel_crtc);
4901
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004902 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05304903 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004904
4905 intel_set_pipe_timings(intel_crtc);
4906
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004907 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter29407aa2014-04-24 23:55:08 +02004908 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004909 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter29407aa2014-04-24 23:55:08 +02004910 }
4911
4912 ironlake_set_pipeconf(crtc);
4913
Jesse Barnesf67a5592011-01-05 10:31:48 -08004914 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004915
Daniel Vettera72e4c92014-09-30 10:56:47 +02004916 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanoni86642812013-04-12 17:57:57 -03004917
Daniel Vetterf6736a12013-06-05 13:34:30 +02004918 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02004919 if (encoder->pre_enable)
4920 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004921
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004922 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02004923 /* Note: FDI PLL enabling _must_ be done before we enable the
4924 * cpu pipes, hence this is separate from all the other fdi/pch
4925 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02004926 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02004927 } else {
4928 assert_fdi_tx_disabled(dev_priv, pipe);
4929 assert_fdi_rx_disabled(dev_priv, pipe);
4930 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08004931
Jesse Barnesb074cec2013-04-25 12:55:02 -07004932 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004933
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02004934 /*
4935 * On ILK+ LUT must be loaded before the pipe is running but with
4936 * clocks enabled
4937 */
4938 intel_crtc_load_lut(crtc);
4939
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004940 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004941 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08004942
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004943 if (intel_crtc->config->has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08004944 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004945
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01004946 assert_vblank_disabled(crtc);
4947 drm_crtc_vblank_on(crtc);
4948
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004949 for_each_encoder_on_crtc(dev, crtc, encoder)
4950 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02004951
4952 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004953 cpt_verify_modeset(dev, intel_crtc->pipe);
Ville Syrjälä37ca8d42015-10-30 19:20:27 +02004954
4955 /* Must wait for vblank to avoid spurious PCH FIFO underruns */
4956 if (intel_crtc->config->has_pch_encoder)
4957 intel_wait_for_vblank(dev, pipe);
4958 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanonid029bca2015-10-15 10:44:46 -03004959
4960 intel_fbc_enable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004961}
4962
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004963/* IPS only exists on ULT machines and is tied to pipe A. */
4964static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4965{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004966 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004967}
4968
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004969static void haswell_crtc_enable(struct drm_crtc *crtc)
4970{
4971 struct drm_device *dev = crtc->dev;
4972 struct drm_i915_private *dev_priv = dev->dev_private;
4973 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4974 struct intel_encoder *encoder;
Maarten Lankhorst99d736a2015-06-01 12:50:09 +02004975 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
4976 struct intel_crtc_state *pipe_config =
4977 to_intel_crtc_state(crtc->state);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004978
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02004979 if (WARN_ON(intel_crtc->active))
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004980 return;
4981
Ville Syrjälä81b088c2015-10-30 19:21:31 +02004982 if (intel_crtc->config->has_pch_encoder)
4983 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4984 false);
4985
Daniel Vetterdf8ad702014-06-25 22:02:03 +03004986 if (intel_crtc_to_shared_dpll(intel_crtc))
4987 intel_enable_shared_dpll(intel_crtc);
4988
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004989 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05304990 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter229fca92014-04-24 23:55:09 +02004991
4992 intel_set_pipe_timings(intel_crtc);
4993
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004994 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4995 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4996 intel_crtc->config->pixel_multiplier - 1);
Clint Taylorebb69c92014-09-30 10:30:22 -07004997 }
4998
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02004999 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetter229fca92014-04-24 23:55:09 +02005000 intel_cpu_transcoder_set_m_n(intel_crtc,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005001 &intel_crtc->config->fdi_m_n, NULL);
Daniel Vetter229fca92014-04-24 23:55:09 +02005002 }
5003
5004 haswell_set_pipeconf(crtc);
5005
5006 intel_set_pipe_csc(crtc);
5007
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005008 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03005009
Daniel Vetter6b698512015-11-28 11:05:39 +01005010 if (intel_crtc->config->has_pch_encoder)
5011 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5012 else
5013 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5014
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305015 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005016 if (encoder->pre_enable)
5017 encoder->pre_enable(encoder);
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305018 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005019
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005020 if (intel_crtc->config->has_pch_encoder)
Imre Deak4fe94672014-06-25 22:01:49 +03005021 dev_priv->display.fdi_link_train(crtc);
Imre Deak4fe94672014-06-25 22:01:49 +03005022
Jani Nikulaa65347b2015-11-27 12:21:46 +02005023 if (!intel_crtc->config->has_dsi_encoder)
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305024 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005025
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005026 if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02005027 skylake_pfit_enable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005028 else
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005029 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005030
5031 /*
5032 * On ILK+ LUT must be loaded before the pipe is running but with
5033 * clocks enabled
5034 */
5035 intel_crtc_load_lut(crtc);
5036
Paulo Zanoni1f544382012-10-24 11:32:00 -02005037 intel_ddi_set_pipe_settings(crtc);
Jani Nikulaa65347b2015-11-27 12:21:46 +02005038 if (!intel_crtc->config->has_dsi_encoder)
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305039 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005040
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03005041 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02005042 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005043
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005044 if (intel_crtc->config->has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02005045 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005046
Jani Nikulaa65347b2015-11-27 12:21:46 +02005047 if (intel_crtc->config->dp_encoder_is_mst)
Dave Airlie0e32b392014-05-02 14:02:48 +10005048 intel_ddi_set_vc_payload_alloc(crtc, true);
5049
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005050 assert_vblank_disabled(crtc);
5051 drm_crtc_vblank_on(crtc);
5052
Jani Nikula8807e552013-08-30 19:40:32 +03005053 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005054 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005055 intel_opregion_notify_encoder(encoder, true);
5056 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005057
Daniel Vetter6b698512015-11-28 11:05:39 +01005058 if (intel_crtc->config->has_pch_encoder) {
5059 intel_wait_for_vblank(dev, pipe);
5060 intel_wait_for_vblank(dev, pipe);
5061 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005062 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5063 true);
Daniel Vetter6b698512015-11-28 11:05:39 +01005064 }
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005065
Paulo Zanonie4916942013-09-20 16:21:19 -03005066 /* If we change the relative order between pipe/planes enabling, we need
5067 * to change the workaround. */
Maarten Lankhorst99d736a2015-06-01 12:50:09 +02005068 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
5069 if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) {
5070 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5071 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5072 }
Paulo Zanonid029bca2015-10-15 10:44:46 -03005073
5074 intel_fbc_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005075}
5076
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005077static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005078{
5079 struct drm_device *dev = crtc->base.dev;
5080 struct drm_i915_private *dev_priv = dev->dev_private;
5081 int pipe = crtc->pipe;
5082
5083 /* To avoid upsetting the power well on haswell only disable the pfit if
5084 * it's in use. The hw state code will make sure we get this right. */
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005085 if (force || crtc->config->pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02005086 I915_WRITE(PF_CTL(pipe), 0);
5087 I915_WRITE(PF_WIN_POS(pipe), 0);
5088 I915_WRITE(PF_WIN_SZ(pipe), 0);
5089 }
5090}
5091
Jesse Barnes6be4a602010-09-10 10:26:01 -07005092static void ironlake_crtc_disable(struct drm_crtc *crtc)
5093{
5094 struct drm_device *dev = crtc->dev;
5095 struct drm_i915_private *dev_priv = dev->dev_private;
5096 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02005097 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005098 int pipe = intel_crtc->pipe;
Jesse Barnes6be4a602010-09-10 10:26:01 -07005099
Ville Syrjälä37ca8d42015-10-30 19:20:27 +02005100 if (intel_crtc->config->has_pch_encoder)
5101 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
5102
Daniel Vetterea9d7582012-07-10 10:42:52 +02005103 for_each_encoder_on_crtc(dev, crtc, encoder)
5104 encoder->disable(encoder);
5105
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005106 drm_crtc_vblank_off(crtc);
5107 assert_vblank_disabled(crtc);
5108
Ville Syrjälä3860b2e2015-11-20 22:09:18 +02005109 /*
5110 * Sometimes spurious CPU pipe underruns happen when the
5111 * pipe is already disabled, but FDI RX/TX is still enabled.
5112 * Happens at least with VGA+HDMI cloning. Suppress them.
5113 */
5114 if (intel_crtc->config->has_pch_encoder)
5115 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5116
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005117 intel_disable_pipe(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005118
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005119 ironlake_pfit_disable(intel_crtc, false);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005120
Ville Syrjälä3860b2e2015-11-20 22:09:18 +02005121 if (intel_crtc->config->has_pch_encoder) {
Ville Syrjälä5a74f702015-05-05 17:17:38 +03005122 ironlake_fdi_disable(crtc);
Ville Syrjälä3860b2e2015-11-20 22:09:18 +02005123 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5124 }
Ville Syrjälä5a74f702015-05-05 17:17:38 +03005125
Daniel Vetterbf49ec82012-09-06 22:15:40 +02005126 for_each_encoder_on_crtc(dev, crtc, encoder)
5127 if (encoder->post_disable)
5128 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005129
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005130 if (intel_crtc->config->has_pch_encoder) {
Daniel Vetterd925c592013-06-05 13:34:04 +02005131 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005132
Daniel Vetterd925c592013-06-05 13:34:04 +02005133 if (HAS_PCH_CPT(dev)) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005134 i915_reg_t reg;
5135 u32 temp;
5136
Daniel Vetterd925c592013-06-05 13:34:04 +02005137 /* disable TRANS_DP_CTL */
5138 reg = TRANS_DP_CTL(pipe);
5139 temp = I915_READ(reg);
5140 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5141 TRANS_DP_PORT_SEL_MASK);
5142 temp |= TRANS_DP_PORT_SEL_NONE;
5143 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005144
Daniel Vetterd925c592013-06-05 13:34:04 +02005145 /* disable DPLL_SEL */
5146 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02005147 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02005148 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005149 }
Daniel Vetterd925c592013-06-05 13:34:04 +02005150
Daniel Vetterd925c592013-06-05 13:34:04 +02005151 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005152 }
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005153
5154 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
Paulo Zanonid029bca2015-10-15 10:44:46 -03005155
5156 intel_fbc_disable_crtc(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07005157}
5158
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005159static void haswell_crtc_disable(struct drm_crtc *crtc)
5160{
5161 struct drm_device *dev = crtc->dev;
5162 struct drm_i915_private *dev_priv = dev->dev_private;
5163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5164 struct intel_encoder *encoder;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005165 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005166
Ville Syrjäläd2d65402015-10-29 21:25:53 +02005167 if (intel_crtc->config->has_pch_encoder)
5168 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5169 false);
5170
Jani Nikula8807e552013-08-30 19:40:32 +03005171 for_each_encoder_on_crtc(dev, crtc, encoder) {
5172 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005173 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03005174 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005175
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01005176 drm_crtc_vblank_off(crtc);
5177 assert_vblank_disabled(crtc);
5178
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03005179 intel_disable_pipe(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005180
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005181 if (intel_crtc->config->dp_encoder_is_mst)
Ville Syrjäläa4bf2142014-08-18 21:27:34 +03005182 intel_ddi_set_vc_payload_alloc(crtc, false);
5183
Jani Nikulaa65347b2015-11-27 12:21:46 +02005184 if (!intel_crtc->config->has_dsi_encoder)
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305185 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005186
Rodrigo Vivi1c132b42015-09-02 15:19:26 -07005187 if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorste435d6e2015-07-13 16:30:15 +02005188 skylake_scaler_disable(intel_crtc);
Jesse Barnesff6d9f52015-01-21 17:19:54 -08005189 else
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +02005190 ironlake_pfit_disable(intel_crtc, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005191
Jani Nikulaa65347b2015-11-27 12:21:46 +02005192 if (!intel_crtc->config->has_dsi_encoder)
Shashank Sharma7d4aefd2015-10-01 22:23:49 +05305193 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005194
Imre Deak97b040a2014-06-25 22:01:50 +03005195 for_each_encoder_on_crtc(dev, crtc, encoder)
5196 if (encoder->post_disable)
5197 encoder->post_disable(encoder);
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005198
Ville Syrjälä92966a32015-12-08 16:05:48 +02005199 if (intel_crtc->config->has_pch_encoder) {
5200 lpt_disable_pch_transcoder(dev_priv);
Ville Syrjälä503a74e2015-12-04 22:22:14 +02005201 lpt_disable_iclkip(dev_priv);
Ville Syrjälä92966a32015-12-08 16:05:48 +02005202 intel_ddi_fdi_disable(crtc);
5203
Ville Syrjälä81b088c2015-10-30 19:21:31 +02005204 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5205 true);
Ville Syrjälä92966a32015-12-08 16:05:48 +02005206 }
Paulo Zanonid029bca2015-10-15 10:44:46 -03005207
5208 intel_fbc_disable_crtc(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02005209}
5210
Jesse Barnes2dd24552013-04-25 12:55:01 -07005211static void i9xx_pfit_enable(struct intel_crtc *crtc)
5212{
5213 struct drm_device *dev = crtc->base.dev;
5214 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005215 struct intel_crtc_state *pipe_config = crtc->config;
Jesse Barnes2dd24552013-04-25 12:55:01 -07005216
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02005217 if (!pipe_config->gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07005218 return;
5219
Daniel Vetterc0b03412013-05-28 12:05:54 +02005220 /*
5221 * The panel fitter should only be adjusted whilst the pipe is disabled,
5222 * according to register description and PRM.
5223 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07005224 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5225 assert_pipe_disabled(dev_priv, crtc->pipe);
5226
Jesse Barnesb074cec2013-04-25 12:55:02 -07005227 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5228 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02005229
5230 /* Border color in case we don't scale up to the full screen. Black by
5231 * default, change to something else for debugging. */
5232 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07005233}
5234
Dave Airlied05410f2014-06-05 13:22:59 +10005235static enum intel_display_power_domain port_to_power_domain(enum port port)
5236{
5237 switch (port) {
5238 case PORT_A:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005239 return POWER_DOMAIN_PORT_DDI_A_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005240 case PORT_B:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005241 return POWER_DOMAIN_PORT_DDI_B_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005242 case PORT_C:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005243 return POWER_DOMAIN_PORT_DDI_C_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005244 case PORT_D:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005245 return POWER_DOMAIN_PORT_DDI_D_LANES;
Xiong Zhangd8e19f92015-08-13 18:00:12 +08005246 case PORT_E:
Patrik Jakobsson6331a702015-11-09 16:48:21 +01005247 return POWER_DOMAIN_PORT_DDI_E_LANES;
Dave Airlied05410f2014-06-05 13:22:59 +10005248 default:
Imre Deakb9fec162015-11-18 15:57:25 +02005249 MISSING_CASE(port);
Dave Airlied05410f2014-06-05 13:22:59 +10005250 return POWER_DOMAIN_PORT_OTHER;
5251 }
5252}
5253
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005254static enum intel_display_power_domain port_to_aux_power_domain(enum port port)
5255{
5256 switch (port) {
5257 case PORT_A:
5258 return POWER_DOMAIN_AUX_A;
5259 case PORT_B:
5260 return POWER_DOMAIN_AUX_B;
5261 case PORT_C:
5262 return POWER_DOMAIN_AUX_C;
5263 case PORT_D:
5264 return POWER_DOMAIN_AUX_D;
5265 case PORT_E:
5266 /* FIXME: Check VBT for actual wiring of PORT E */
5267 return POWER_DOMAIN_AUX_D;
5268 default:
Imre Deakb9fec162015-11-18 15:57:25 +02005269 MISSING_CASE(port);
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005270 return POWER_DOMAIN_AUX_A;
5271 }
5272}
5273
Imre Deak319be8a2014-03-04 19:22:57 +02005274enum intel_display_power_domain
5275intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02005276{
Imre Deak319be8a2014-03-04 19:22:57 +02005277 struct drm_device *dev = intel_encoder->base.dev;
5278 struct intel_digital_port *intel_dig_port;
5279
5280 switch (intel_encoder->type) {
5281 case INTEL_OUTPUT_UNKNOWN:
5282 /* Only DDI platforms should ever use this output type */
5283 WARN_ON_ONCE(!HAS_DDI(dev));
5284 case INTEL_OUTPUT_DISPLAYPORT:
5285 case INTEL_OUTPUT_HDMI:
5286 case INTEL_OUTPUT_EDP:
5287 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlied05410f2014-06-05 13:22:59 +10005288 return port_to_power_domain(intel_dig_port->port);
Dave Airlie0e32b392014-05-02 14:02:48 +10005289 case INTEL_OUTPUT_DP_MST:
5290 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5291 return port_to_power_domain(intel_dig_port->port);
Imre Deak319be8a2014-03-04 19:22:57 +02005292 case INTEL_OUTPUT_ANALOG:
5293 return POWER_DOMAIN_PORT_CRT;
5294 case INTEL_OUTPUT_DSI:
5295 return POWER_DOMAIN_PORT_DSI;
5296 default:
5297 return POWER_DOMAIN_PORT_OTHER;
5298 }
5299}
5300
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005301enum intel_display_power_domain
5302intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder)
5303{
5304 struct drm_device *dev = intel_encoder->base.dev;
5305 struct intel_digital_port *intel_dig_port;
5306
5307 switch (intel_encoder->type) {
5308 case INTEL_OUTPUT_UNKNOWN:
Imre Deak651174a2015-11-18 15:57:24 +02005309 case INTEL_OUTPUT_HDMI:
5310 /*
5311 * Only DDI platforms should ever use these output types.
5312 * We can get here after the HDMI detect code has already set
5313 * the type of the shared encoder. Since we can't be sure
5314 * what's the status of the given connectors, play safe and
5315 * run the DP detection too.
5316 */
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005317 WARN_ON_ONCE(!HAS_DDI(dev));
5318 case INTEL_OUTPUT_DISPLAYPORT:
5319 case INTEL_OUTPUT_EDP:
5320 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
5321 return port_to_aux_power_domain(intel_dig_port->port);
5322 case INTEL_OUTPUT_DP_MST:
5323 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5324 return port_to_aux_power_domain(intel_dig_port->port);
5325 default:
Imre Deakb9fec162015-11-18 15:57:25 +02005326 MISSING_CASE(intel_encoder->type);
Ville Syrjälä25f78f52015-11-16 15:01:04 +01005327 return POWER_DOMAIN_AUX_A;
5328 }
5329}
5330
Imre Deak319be8a2014-03-04 19:22:57 +02005331static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
5332{
5333 struct drm_device *dev = crtc->dev;
5334 struct intel_encoder *intel_encoder;
5335 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5336 enum pipe pipe = intel_crtc->pipe;
Imre Deak77d22dc2014-03-05 16:20:52 +02005337 unsigned long mask;
Ville Syrjälä1a70a7282015-10-29 21:25:50 +02005338 enum transcoder transcoder = intel_crtc->config->cpu_transcoder;
Imre Deak77d22dc2014-03-05 16:20:52 +02005339
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005340 if (!crtc->state->active)
5341 return 0;
5342
Imre Deak77d22dc2014-03-05 16:20:52 +02005343 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5344 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02005345 if (intel_crtc->config->pch_pfit.enabled ||
5346 intel_crtc->config->pch_pfit.force_thru)
Imre Deak77d22dc2014-03-05 16:20:52 +02005347 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5348
Imre Deak319be8a2014-03-04 19:22:57 +02005349 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5350 mask |= BIT(intel_display_port_power_domain(intel_encoder));
5351
Imre Deak77d22dc2014-03-05 16:20:52 +02005352 return mask;
5353}
5354
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005355static unsigned long modeset_get_crtc_power_domains(struct drm_crtc *crtc)
5356{
5357 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5358 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5359 enum intel_display_power_domain domain;
5360 unsigned long domains, new_domains, old_domains;
5361
5362 old_domains = intel_crtc->enabled_power_domains;
5363 intel_crtc->enabled_power_domains = new_domains = get_crtc_power_domains(crtc);
5364
5365 domains = new_domains & ~old_domains;
5366
5367 for_each_power_domain(domain, domains)
5368 intel_display_power_get(dev_priv, domain);
5369
5370 return old_domains & ~new_domains;
5371}
5372
5373static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5374 unsigned long domains)
5375{
5376 enum intel_display_power_domain domain;
5377
5378 for_each_power_domain(domain, domains)
5379 intel_display_power_put(dev_priv, domain);
5380}
5381
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005382static void modeset_update_crtc_power_domains(struct drm_atomic_state *state)
Imre Deak77d22dc2014-03-05 16:20:52 +02005383{
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01005384 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Ander Conselvan de Oliveira679dacd2015-03-20 16:18:15 +02005385 struct drm_device *dev = state->dev;
Imre Deak77d22dc2014-03-05 16:20:52 +02005386 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005387 unsigned long put_domains[I915_MAX_PIPES] = {};
5388 struct drm_crtc_state *crtc_state;
5389 struct drm_crtc *crtc;
5390 int i;
Imre Deak77d22dc2014-03-05 16:20:52 +02005391
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005392 for_each_crtc_in_state(state, crtc, crtc_state, i) {
5393 if (needs_modeset(crtc->state))
5394 put_domains[to_intel_crtc(crtc)->pipe] =
5395 modeset_get_crtc_power_domains(crtc);
Imre Deak77d22dc2014-03-05 16:20:52 +02005396 }
5397
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01005398 if (dev_priv->display.modeset_commit_cdclk &&
5399 intel_state->dev_cdclk != dev_priv->cdclk_freq)
5400 dev_priv->display.modeset_commit_cdclk(state);
Ville Syrjälä50f6e502014-11-06 14:49:12 +02005401
Maarten Lankhorst292b9902015-07-13 16:30:27 +02005402 for (i = 0; i < I915_MAX_PIPES; i++)
5403 if (put_domains[i])
5404 modeset_put_power_domains(dev_priv, put_domains[i]);
Imre Deak77d22dc2014-03-05 16:20:52 +02005405}
5406
Mika Kaholaadafdc62015-08-18 14:36:59 +03005407static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5408{
5409 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5410
5411 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5412 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5413 return max_cdclk_freq;
5414 else if (IS_CHERRYVIEW(dev_priv))
5415 return max_cdclk_freq*95/100;
5416 else if (INTEL_INFO(dev_priv)->gen < 4)
5417 return 2*max_cdclk_freq*90/100;
5418 else
5419 return max_cdclk_freq*90/100;
5420}
5421
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005422static void intel_update_max_cdclk(struct drm_device *dev)
5423{
5424 struct drm_i915_private *dev_priv = dev->dev_private;
5425
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07005426 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005427 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
5428
5429 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
5430 dev_priv->max_cdclk_freq = 675000;
5431 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
5432 dev_priv->max_cdclk_freq = 540000;
5433 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
5434 dev_priv->max_cdclk_freq = 450000;
5435 else
5436 dev_priv->max_cdclk_freq = 337500;
5437 } else if (IS_BROADWELL(dev)) {
5438 /*
5439 * FIXME with extra cooling we can allow
5440 * 540 MHz for ULX and 675 Mhz for ULT.
5441 * How can we know if extra cooling is
5442 * available? PCI ID, VTB, something else?
5443 */
5444 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5445 dev_priv->max_cdclk_freq = 450000;
5446 else if (IS_BDW_ULX(dev))
5447 dev_priv->max_cdclk_freq = 450000;
5448 else if (IS_BDW_ULT(dev))
5449 dev_priv->max_cdclk_freq = 540000;
5450 else
5451 dev_priv->max_cdclk_freq = 675000;
Mika Kahola0904dea2015-06-12 10:11:32 +03005452 } else if (IS_CHERRYVIEW(dev)) {
5453 dev_priv->max_cdclk_freq = 320000;
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005454 } else if (IS_VALLEYVIEW(dev)) {
5455 dev_priv->max_cdclk_freq = 400000;
5456 } else {
5457 /* otherwise assume cdclk is fixed */
5458 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5459 }
5460
Mika Kaholaadafdc62015-08-18 14:36:59 +03005461 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5462
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005463 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5464 dev_priv->max_cdclk_freq);
Mika Kaholaadafdc62015-08-18 14:36:59 +03005465
5466 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5467 dev_priv->max_dotclk_freq);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005468}
5469
5470static void intel_update_cdclk(struct drm_device *dev)
5471{
5472 struct drm_i915_private *dev_priv = dev->dev_private;
5473
5474 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
5475 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5476 dev_priv->cdclk_freq);
5477
5478 /*
5479 * Program the gmbus_freq based on the cdclk frequency.
5480 * BSpec erroneously claims we should aim for 4MHz, but
5481 * in fact 1MHz is the correct frequency.
5482 */
Wayne Boyer666a4532015-12-09 12:29:35 -08005483 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005484 /*
5485 * Program the gmbus_freq based on the cdclk frequency.
5486 * BSpec erroneously claims we should aim for 4MHz, but
5487 * in fact 1MHz is the correct frequency.
5488 */
5489 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
5490 }
5491
5492 if (dev_priv->max_cdclk_freq == 0)
5493 intel_update_max_cdclk(dev);
5494}
5495
Damien Lespiau70d0c572015-06-04 18:21:29 +01005496static void broxton_set_cdclk(struct drm_device *dev, int frequency)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305497{
5498 struct drm_i915_private *dev_priv = dev->dev_private;
5499 uint32_t divider;
5500 uint32_t ratio;
5501 uint32_t current_freq;
5502 int ret;
5503
5504 /* frequency = 19.2MHz * ratio / 2 / div{1,1.5,2,4} */
5505 switch (frequency) {
5506 case 144000:
5507 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
5508 ratio = BXT_DE_PLL_RATIO(60);
5509 break;
5510 case 288000:
5511 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
5512 ratio = BXT_DE_PLL_RATIO(60);
5513 break;
5514 case 384000:
5515 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
5516 ratio = BXT_DE_PLL_RATIO(60);
5517 break;
5518 case 576000:
5519 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5520 ratio = BXT_DE_PLL_RATIO(60);
5521 break;
5522 case 624000:
5523 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5524 ratio = BXT_DE_PLL_RATIO(65);
5525 break;
5526 case 19200:
5527 /*
5528 * Bypass frequency with DE PLL disabled. Init ratio, divider
5529 * to suppress GCC warning.
5530 */
5531 ratio = 0;
5532 divider = 0;
5533 break;
5534 default:
5535 DRM_ERROR("unsupported CDCLK freq %d", frequency);
5536
5537 return;
5538 }
5539
5540 mutex_lock(&dev_priv->rps.hw_lock);
5541 /* Inform power controller of upcoming frequency change */
5542 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5543 0x80000000);
5544 mutex_unlock(&dev_priv->rps.hw_lock);
5545
5546 if (ret) {
5547 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
5548 ret, frequency);
5549 return;
5550 }
5551
5552 current_freq = I915_READ(CDCLK_CTL) & CDCLK_FREQ_DECIMAL_MASK;
5553 /* convert from .1 fixpoint MHz with -1MHz offset to kHz */
5554 current_freq = current_freq * 500 + 1000;
5555
5556 /*
5557 * DE PLL has to be disabled when
5558 * - setting to 19.2MHz (bypass, PLL isn't used)
5559 * - before setting to 624MHz (PLL needs toggling)
5560 * - before setting to any frequency from 624MHz (PLL needs toggling)
5561 */
5562 if (frequency == 19200 || frequency == 624000 ||
5563 current_freq == 624000) {
5564 I915_WRITE(BXT_DE_PLL_ENABLE, ~BXT_DE_PLL_PLL_ENABLE);
5565 /* Timeout 200us */
5566 if (wait_for(!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK),
5567 1))
5568 DRM_ERROR("timout waiting for DE PLL unlock\n");
5569 }
5570
5571 if (frequency != 19200) {
5572 uint32_t val;
5573
5574 val = I915_READ(BXT_DE_PLL_CTL);
5575 val &= ~BXT_DE_PLL_RATIO_MASK;
5576 val |= ratio;
5577 I915_WRITE(BXT_DE_PLL_CTL, val);
5578
5579 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5580 /* Timeout 200us */
5581 if (wait_for(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK, 1))
5582 DRM_ERROR("timeout waiting for DE PLL lock\n");
5583
5584 val = I915_READ(CDCLK_CTL);
5585 val &= ~BXT_CDCLK_CD2X_DIV_SEL_MASK;
5586 val |= divider;
5587 /*
5588 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5589 * enable otherwise.
5590 */
5591 val &= ~BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5592 if (frequency >= 500000)
5593 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5594
5595 val &= ~CDCLK_FREQ_DECIMAL_MASK;
5596 /* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5597 val |= (frequency - 1000) / 500;
5598 I915_WRITE(CDCLK_CTL, val);
5599 }
5600
5601 mutex_lock(&dev_priv->rps.hw_lock);
5602 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5603 DIV_ROUND_UP(frequency, 25000));
5604 mutex_unlock(&dev_priv->rps.hw_lock);
5605
5606 if (ret) {
5607 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
5608 ret, frequency);
5609 return;
5610 }
5611
Damien Lespiaua47871b2015-06-04 18:21:34 +01005612 intel_update_cdclk(dev);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305613}
5614
5615void broxton_init_cdclk(struct drm_device *dev)
5616{
5617 struct drm_i915_private *dev_priv = dev->dev_private;
5618 uint32_t val;
5619
5620 /*
5621 * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT
5622 * or else the reset will hang because there is no PCH to respond.
5623 * Move the handshake programming to initialization sequence.
5624 * Previously was left up to BIOS.
5625 */
5626 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5627 val &= ~RESET_PCH_HANDSHAKE_ENABLE;
5628 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
5629
5630 /* Enable PG1 for cdclk */
5631 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5632
5633 /* check if cd clock is enabled */
5634 if (I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_PLL_ENABLE) {
5635 DRM_DEBUG_KMS("Display already initialized\n");
5636 return;
5637 }
5638
5639 /*
5640 * FIXME:
5641 * - The initial CDCLK needs to be read from VBT.
5642 * Need to make this change after VBT has changes for BXT.
5643 * - check if setting the max (or any) cdclk freq is really necessary
5644 * here, it belongs to modeset time
5645 */
5646 broxton_set_cdclk(dev, 624000);
5647
5648 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005649 POSTING_READ(DBUF_CTL);
5650
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305651 udelay(10);
5652
5653 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5654 DRM_ERROR("DBuf power enable timeout!\n");
5655}
5656
5657void broxton_uninit_cdclk(struct drm_device *dev)
5658{
5659 struct drm_i915_private *dev_priv = dev->dev_private;
5660
5661 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
Ville Syrjälä22e02c02015-05-06 14:28:57 +03005662 POSTING_READ(DBUF_CTL);
5663
Vandana Kannanf8437dd12014-11-24 13:37:39 +05305664 udelay(10);
5665
5666 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5667 DRM_ERROR("DBuf power disable timeout!\n");
5668
5669 /* Set minimum (bypass) frequency, in effect turning off the DE PLL */
5670 broxton_set_cdclk(dev, 19200);
5671
5672 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5673}
5674
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005675static const struct skl_cdclk_entry {
5676 unsigned int freq;
5677 unsigned int vco;
5678} skl_cdclk_frequencies[] = {
5679 { .freq = 308570, .vco = 8640 },
5680 { .freq = 337500, .vco = 8100 },
5681 { .freq = 432000, .vco = 8640 },
5682 { .freq = 450000, .vco = 8100 },
5683 { .freq = 540000, .vco = 8100 },
5684 { .freq = 617140, .vco = 8640 },
5685 { .freq = 675000, .vco = 8100 },
5686};
5687
5688static unsigned int skl_cdclk_decimal(unsigned int freq)
5689{
5690 return (freq - 1000) / 500;
5691}
5692
5693static unsigned int skl_cdclk_get_vco(unsigned int freq)
5694{
5695 unsigned int i;
5696
5697 for (i = 0; i < ARRAY_SIZE(skl_cdclk_frequencies); i++) {
5698 const struct skl_cdclk_entry *e = &skl_cdclk_frequencies[i];
5699
5700 if (e->freq == freq)
5701 return e->vco;
5702 }
5703
5704 return 8100;
5705}
5706
5707static void
5708skl_dpll0_enable(struct drm_i915_private *dev_priv, unsigned int required_vco)
5709{
5710 unsigned int min_freq;
5711 u32 val;
5712
5713 /* select the minimum CDCLK before enabling DPLL 0 */
5714 val = I915_READ(CDCLK_CTL);
5715 val &= ~CDCLK_FREQ_SEL_MASK | ~CDCLK_FREQ_DECIMAL_MASK;
5716 val |= CDCLK_FREQ_337_308;
5717
5718 if (required_vco == 8640)
5719 min_freq = 308570;
5720 else
5721 min_freq = 337500;
5722
5723 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_freq);
5724
5725 I915_WRITE(CDCLK_CTL, val);
5726 POSTING_READ(CDCLK_CTL);
5727
5728 /*
5729 * We always enable DPLL0 with the lowest link rate possible, but still
5730 * taking into account the VCO required to operate the eDP panel at the
5731 * desired frequency. The usual DP link rates operate with a VCO of
5732 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
5733 * The modeset code is responsible for the selection of the exact link
5734 * rate later on, with the constraint of choosing a frequency that
5735 * works with required_vco.
5736 */
5737 val = I915_READ(DPLL_CTRL1);
5738
5739 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
5740 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
5741 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
5742 if (required_vco == 8640)
5743 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
5744 SKL_DPLL0);
5745 else
5746 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
5747 SKL_DPLL0);
5748
5749 I915_WRITE(DPLL_CTRL1, val);
5750 POSTING_READ(DPLL_CTRL1);
5751
5752 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
5753
5754 if (wait_for(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK, 5))
5755 DRM_ERROR("DPLL0 not locked\n");
5756}
5757
5758static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
5759{
5760 int ret;
5761 u32 val;
5762
5763 /* inform PCU we want to change CDCLK */
5764 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
5765 mutex_lock(&dev_priv->rps.hw_lock);
5766 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
5767 mutex_unlock(&dev_priv->rps.hw_lock);
5768
5769 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
5770}
5771
5772static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
5773{
5774 unsigned int i;
5775
5776 for (i = 0; i < 15; i++) {
5777 if (skl_cdclk_pcu_ready(dev_priv))
5778 return true;
5779 udelay(10);
5780 }
5781
5782 return false;
5783}
5784
5785static void skl_set_cdclk(struct drm_i915_private *dev_priv, unsigned int freq)
5786{
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005787 struct drm_device *dev = dev_priv->dev;
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005788 u32 freq_select, pcu_ack;
5789
5790 DRM_DEBUG_DRIVER("Changing CDCLK to %dKHz\n", freq);
5791
5792 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
5793 DRM_ERROR("failed to inform PCU about cdclk change\n");
5794 return;
5795 }
5796
5797 /* set CDCLK_CTL */
5798 switch(freq) {
5799 case 450000:
5800 case 432000:
5801 freq_select = CDCLK_FREQ_450_432;
5802 pcu_ack = 1;
5803 break;
5804 case 540000:
5805 freq_select = CDCLK_FREQ_540;
5806 pcu_ack = 2;
5807 break;
5808 case 308570:
5809 case 337500:
5810 default:
5811 freq_select = CDCLK_FREQ_337_308;
5812 pcu_ack = 0;
5813 break;
5814 case 617140:
5815 case 675000:
5816 freq_select = CDCLK_FREQ_675_617;
5817 pcu_ack = 3;
5818 break;
5819 }
5820
5821 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(freq));
5822 POSTING_READ(CDCLK_CTL);
5823
5824 /* inform PCU of the change */
5825 mutex_lock(&dev_priv->rps.hw_lock);
5826 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
5827 mutex_unlock(&dev_priv->rps.hw_lock);
Damien Lespiau560a7ae2015-06-04 18:21:33 +01005828
5829 intel_update_cdclk(dev);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005830}
5831
5832void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
5833{
5834 /* disable DBUF power */
5835 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
5836 POSTING_READ(DBUF_CTL);
5837
5838 udelay(10);
5839
5840 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5841 DRM_ERROR("DBuf power disable timeout\n");
5842
Imre Deakab96c1ee2015-11-04 19:24:18 +02005843 /* disable DPLL0 */
5844 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
5845 if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1))
5846 DRM_ERROR("Couldn't disable DPLL0\n");
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005847}
5848
5849void skl_init_cdclk(struct drm_i915_private *dev_priv)
5850{
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005851 unsigned int required_vco;
5852
Gary Wang39d9b852015-08-28 16:40:34 +08005853 /* DPLL0 not enabled (happens on early BIOS versions) */
5854 if (!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_ENABLE)) {
5855 /* enable DPLL0 */
5856 required_vco = skl_cdclk_get_vco(dev_priv->skl_boot_cdclk);
5857 skl_dpll0_enable(dev_priv, required_vco);
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005858 }
5859
Damien Lespiau5d96d8a2015-05-21 16:37:48 +01005860 /* set CDCLK to the frequency the BIOS chose */
5861 skl_set_cdclk(dev_priv, dev_priv->skl_boot_cdclk);
5862
5863 /* enable DBUF power */
5864 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
5865 POSTING_READ(DBUF_CTL);
5866
5867 udelay(10);
5868
5869 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5870 DRM_ERROR("DBuf power enable timeout\n");
5871}
5872
Shobhit Kumarc73666f2015-10-20 18:13:12 +05305873int skl_sanitize_cdclk(struct drm_i915_private *dev_priv)
5874{
5875 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
5876 uint32_t cdctl = I915_READ(CDCLK_CTL);
5877 int freq = dev_priv->skl_boot_cdclk;
5878
Shobhit Kumarf1b391a2015-11-05 18:05:32 +05305879 /*
5880 * check if the pre-os intialized the display
5881 * There is SWF18 scratchpad register defined which is set by the
5882 * pre-os which can be used by the OS drivers to check the status
5883 */
5884 if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0)
5885 goto sanitize;
5886
Shobhit Kumarc73666f2015-10-20 18:13:12 +05305887 /* Is PLL enabled and locked ? */
5888 if (!((lcpll1 & LCPLL_PLL_ENABLE) && (lcpll1 & LCPLL_PLL_LOCK)))
5889 goto sanitize;
5890
5891 /* DPLL okay; verify the cdclock
5892 *
5893 * Noticed in some instances that the freq selection is correct but
5894 * decimal part is programmed wrong from BIOS where pre-os does not
5895 * enable display. Verify the same as well.
5896 */
5897 if (cdctl == ((cdctl & CDCLK_FREQ_SEL_MASK) | skl_cdclk_decimal(freq)))
5898 /* All well; nothing to sanitize */
5899 return false;
5900sanitize:
5901 /*
5902 * As of now initialize with max cdclk till
5903 * we get dynamic cdclk support
5904 * */
5905 dev_priv->skl_boot_cdclk = dev_priv->max_cdclk_freq;
5906 skl_init_cdclk(dev_priv);
5907
5908 /* we did have to sanitize */
5909 return true;
5910}
5911
Jesse Barnes30a970c2013-11-04 13:48:12 -08005912/* Adjust CDclk dividers to allow high res or save power if possible */
5913static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5914{
5915 struct drm_i915_private *dev_priv = dev->dev_private;
5916 u32 val, cmd;
5917
Vandana Kannan164dfd22014-11-24 13:37:41 +05305918 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5919 != dev_priv->cdclk_freq);
Imre Deakd60c4472014-03-27 17:45:10 +02005920
Ville Syrjälädfcab172014-06-13 13:37:47 +03005921 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
Jesse Barnes30a970c2013-11-04 13:48:12 -08005922 cmd = 2;
Ville Syrjälädfcab172014-06-13 13:37:47 +03005923 else if (cdclk == 266667)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005924 cmd = 1;
5925 else
5926 cmd = 0;
5927
5928 mutex_lock(&dev_priv->rps.hw_lock);
5929 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5930 val &= ~DSPFREQGUAR_MASK;
5931 val |= (cmd << DSPFREQGUAR_SHIFT);
5932 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5933 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5934 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5935 50)) {
5936 DRM_ERROR("timed out waiting for CDclk change\n");
5937 }
5938 mutex_unlock(&dev_priv->rps.hw_lock);
5939
Ville Syrjälä54433e92015-05-26 20:42:31 +03005940 mutex_lock(&dev_priv->sb_lock);
5941
Ville Syrjälädfcab172014-06-13 13:37:47 +03005942 if (cdclk == 400000) {
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005943 u32 divider;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005944
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03005945 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005946
Jesse Barnes30a970c2013-11-04 13:48:12 -08005947 /* adjust cdclk divider */
5948 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
Vandana Kannan87d5d252015-09-24 23:29:17 +03005949 val &= ~CCK_FREQUENCY_VALUES;
Jesse Barnes30a970c2013-11-04 13:48:12 -08005950 val |= divider;
5951 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
Ville Syrjäläa877e802014-06-13 13:37:52 +03005952
5953 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
Vandana Kannan87d5d252015-09-24 23:29:17 +03005954 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
Ville Syrjäläa877e802014-06-13 13:37:52 +03005955 50))
5956 DRM_ERROR("timed out waiting for CDclk change\n");
Jesse Barnes30a970c2013-11-04 13:48:12 -08005957 }
5958
Jesse Barnes30a970c2013-11-04 13:48:12 -08005959 /* adjust self-refresh exit latency value */
5960 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5961 val &= ~0x7f;
5962
5963 /*
5964 * For high bandwidth configs, we set a higher latency in the bunit
5965 * so that the core display fetch happens in time to avoid underruns.
5966 */
Ville Syrjälädfcab172014-06-13 13:37:47 +03005967 if (cdclk == 400000)
Jesse Barnes30a970c2013-11-04 13:48:12 -08005968 val |= 4500 / 250; /* 4.5 usec */
5969 else
5970 val |= 3000 / 250; /* 3.0 usec */
5971 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
Ville Syrjälä54433e92015-05-26 20:42:31 +03005972
Ville Syrjäläa5805162015-05-26 20:42:30 +03005973 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005974
Ville Syrjäläb6283052015-06-03 15:45:07 +03005975 intel_update_cdclk(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08005976}
5977
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005978static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5979{
5980 struct drm_i915_private *dev_priv = dev->dev_private;
5981 u32 val, cmd;
5982
Vandana Kannan164dfd22014-11-24 13:37:41 +05305983 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5984 != dev_priv->cdclk_freq);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005985
5986 switch (cdclk) {
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005987 case 333333:
5988 case 320000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005989 case 266667:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005990 case 200000:
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005991 break;
5992 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01005993 MISSING_CASE(cdclk);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03005994 return;
5995 }
5996
Ville Syrjälä9d0d3fd2015-03-02 20:07:17 +02005997 /*
5998 * Specs are full of misinformation, but testing on actual
5999 * hardware has shown that we just need to write the desired
6000 * CCK divider into the Punit register.
6001 */
6002 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
6003
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006004 mutex_lock(&dev_priv->rps.hw_lock);
6005 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
6006 val &= ~DSPFREQGUAR_MASK_CHV;
6007 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
6008 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
6009 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
6010 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
6011 50)) {
6012 DRM_ERROR("timed out waiting for CDclk change\n");
6013 }
6014 mutex_unlock(&dev_priv->rps.hw_lock);
6015
Ville Syrjäläb6283052015-06-03 15:45:07 +03006016 intel_update_cdclk(dev);
Ville Syrjälä383c5a62014-06-28 02:03:57 +03006017}
6018
Jesse Barnes30a970c2013-11-04 13:48:12 -08006019static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
6020 int max_pixclk)
6021{
Ville Syrjälä6bcda4f2014-10-07 17:41:22 +03006022 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006023 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03006024
Jesse Barnes30a970c2013-11-04 13:48:12 -08006025 /*
6026 * Really only a few cases to deal with, as only 4 CDclks are supported:
6027 * 200MHz
6028 * 267MHz
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03006029 * 320/333MHz (depends on HPLL freq)
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006030 * 400MHz (VLV only)
6031 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
6032 * of the lower bin and adjust if needed.
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03006033 *
6034 * We seem to get an unstable or solid color picture at 200MHz.
6035 * Not sure what's wrong. For now use 200MHz only when all pipes
6036 * are off.
Jesse Barnes30a970c2013-11-04 13:48:12 -08006037 */
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006038 if (!IS_CHERRYVIEW(dev_priv) &&
6039 max_pixclk > freq_320*limit/100)
Ville Syrjälädfcab172014-06-13 13:37:47 +03006040 return 400000;
Ville Syrjälä6cca3192015-03-02 20:07:16 +02006041 else if (max_pixclk > 266667*limit/100)
Ville Syrjälä29dc7ef2014-06-13 13:37:50 +03006042 return freq_320;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03006043 else if (max_pixclk > 0)
Ville Syrjälädfcab172014-06-13 13:37:47 +03006044 return 266667;
Ville Syrjäläe37c67a2014-06-13 13:37:51 +03006045 else
6046 return 200000;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006047}
6048
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306049static int broxton_calc_cdclk(struct drm_i915_private *dev_priv,
6050 int max_pixclk)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006051{
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306052 /*
6053 * FIXME:
6054 * - remove the guardband, it's not needed on BXT
6055 * - set 19.2MHz bypass frequency if there are no active pipes
6056 */
6057 if (max_pixclk > 576000*9/10)
6058 return 624000;
6059 else if (max_pixclk > 384000*9/10)
6060 return 576000;
6061 else if (max_pixclk > 288000*9/10)
6062 return 384000;
6063 else if (max_pixclk > 144000*9/10)
6064 return 288000;
6065 else
6066 return 144000;
6067}
6068
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03006069/* Compute the max pixel clock for new configuration. Uses atomic state if
6070 * that's non-NULL, look at current state otherwise. */
6071static int intel_mode_max_pixclk(struct drm_device *dev,
6072 struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006073{
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006074 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
6075 struct drm_i915_private *dev_priv = dev->dev_private;
6076 struct drm_crtc *crtc;
6077 struct drm_crtc_state *crtc_state;
6078 unsigned max_pixclk = 0, i;
6079 enum pipe pipe;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006080
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006081 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
6082 sizeof(intel_state->min_pixclk));
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006083
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006084 for_each_crtc_in_state(state, crtc, crtc_state, i) {
6085 int pixclk = 0;
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006086
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006087 if (crtc_state->enable)
6088 pixclk = crtc_state->adjusted_mode.crtc_clock;
6089
6090 intel_state->min_pixclk[i] = pixclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006091 }
6092
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006093 if (!intel_state->active_crtcs)
6094 return 0;
6095
6096 for_each_pipe(dev_priv, pipe)
6097 max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk);
6098
Jesse Barnes30a970c2013-11-04 13:48:12 -08006099 return max_pixclk;
6100}
6101
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006102static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006103{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006104 struct drm_device *dev = state->dev;
6105 struct drm_i915_private *dev_priv = dev->dev_private;
6106 int max_pixclk = intel_mode_max_pixclk(dev, state);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006107 struct intel_atomic_state *intel_state =
6108 to_intel_atomic_state(state);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006109
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006110 if (max_pixclk < 0)
6111 return max_pixclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006112
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006113 intel_state->cdclk = intel_state->dev_cdclk =
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006114 valleyview_calc_cdclk(dev_priv, max_pixclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05306115
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006116 if (!intel_state->active_crtcs)
6117 intel_state->dev_cdclk = valleyview_calc_cdclk(dev_priv, 0);
6118
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006119 return 0;
6120}
Jesse Barnes30a970c2013-11-04 13:48:12 -08006121
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006122static int broxton_modeset_calc_cdclk(struct drm_atomic_state *state)
6123{
6124 struct drm_device *dev = state->dev;
6125 struct drm_i915_private *dev_priv = dev->dev_private;
6126 int max_pixclk = intel_mode_max_pixclk(dev, state);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006127 struct intel_atomic_state *intel_state =
6128 to_intel_atomic_state(state);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006129
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006130 if (max_pixclk < 0)
6131 return max_pixclk;
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006132
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006133 intel_state->cdclk = intel_state->dev_cdclk =
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006134 broxton_calc_cdclk(dev_priv, max_pixclk);
Maarten Lankhorst85a96e72015-06-01 12:49:53 +02006135
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006136 if (!intel_state->active_crtcs)
6137 intel_state->dev_cdclk = broxton_calc_cdclk(dev_priv, 0);
6138
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006139 return 0;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006140}
6141
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006142static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
6143{
6144 unsigned int credits, default_credits;
6145
6146 if (IS_CHERRYVIEW(dev_priv))
6147 default_credits = PFI_CREDIT(12);
6148 else
6149 default_credits = PFI_CREDIT(8);
6150
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03006151 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006152 /* CHV suggested value is 31 or 63 */
6153 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjäläfcc00082015-05-26 20:22:40 +03006154 credits = PFI_CREDIT_63;
Vidya Srinivas1e69cd72015-03-05 21:19:50 +02006155 else
6156 credits = PFI_CREDIT(15);
6157 } else {
6158 credits = default_credits;
6159 }
6160
6161 /*
6162 * WA - write default credits before re-programming
6163 * FIXME: should we also set the resend bit here?
6164 */
6165 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6166 default_credits);
6167
6168 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6169 credits | PFI_CREDIT_RESEND);
6170
6171 /*
6172 * FIXME is this guaranteed to clear
6173 * immediately or should we poll for it?
6174 */
6175 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6176}
6177
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006178static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Jesse Barnes30a970c2013-11-04 13:48:12 -08006179{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03006180 struct drm_device *dev = old_state->dev;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006181 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01006182 struct intel_atomic_state *old_intel_state =
6183 to_intel_atomic_state(old_state);
6184 unsigned req_cdclk = old_intel_state->dev_cdclk;
Jesse Barnes30a970c2013-11-04 13:48:12 -08006185
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006186 /*
6187 * FIXME: We can end up here with all power domains off, yet
6188 * with a CDCLK frequency other than the minimum. To account
6189 * for this take the PIPE-A power domain, which covers the HW
6190 * blocks needed for the following programming. This can be
6191 * removed once it's guaranteed that we get here either with
6192 * the minimum CDCLK set, or the required power domains
6193 * enabled.
6194 */
6195 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
Ander Conselvan de Oliveira304603f2015-04-02 14:47:56 +03006196
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006197 if (IS_CHERRYVIEW(dev))
6198 cherryview_set_cdclk(dev, req_cdclk);
6199 else
6200 valleyview_set_cdclk(dev, req_cdclk);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006201
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006202 vlv_program_pfi_credits(dev_priv);
Imre Deak738c05c2014-11-19 16:25:37 +02006203
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02006204 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
Jesse Barnes30a970c2013-11-04 13:48:12 -08006205}
6206
Jesse Barnes89b667f2013-04-18 14:51:36 -07006207static void valleyview_crtc_enable(struct drm_crtc *crtc)
6208{
6209 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006210 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006211 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6212 struct intel_encoder *encoder;
6213 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006214
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006215 if (WARN_ON(intel_crtc->active))
Jesse Barnes89b667f2013-04-18 14:51:36 -07006216 return;
6217
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006218 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05306219 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006220
6221 intel_set_pipe_timings(intel_crtc);
6222
Ville Syrjäläc14b0482014-10-16 20:52:34 +03006223 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
6224 struct drm_i915_private *dev_priv = dev->dev_private;
6225
6226 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6227 I915_WRITE(CHV_CANVAS(pipe), 0);
6228 }
6229
Daniel Vetter5b18e572014-04-24 23:55:06 +02006230 i9xx_set_pipeconf(intel_crtc);
6231
Jesse Barnes89b667f2013-04-18 14:51:36 -07006232 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07006233
Daniel Vettera72e4c92014-09-30 10:56:47 +02006234 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006235
Jesse Barnes89b667f2013-04-18 14:51:36 -07006236 for_each_encoder_on_crtc(dev, crtc, encoder)
6237 if (encoder->pre_pll_enable)
6238 encoder->pre_pll_enable(encoder);
6239
Jani Nikulaa65347b2015-11-27 12:21:46 +02006240 if (!intel_crtc->config->has_dsi_encoder) {
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006241 if (IS_CHERRYVIEW(dev)) {
6242 chv_prepare_pll(intel_crtc, intel_crtc->config);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006243 chv_enable_pll(intel_crtc, intel_crtc->config);
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006244 } else {
6245 vlv_prepare_pll(intel_crtc, intel_crtc->config);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006246 vlv_enable_pll(intel_crtc, intel_crtc->config);
Ville Syrjäläc0b4c662015-07-08 23:45:52 +03006247 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006248 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07006249
6250 for_each_encoder_on_crtc(dev, crtc, encoder)
6251 if (encoder->pre_enable)
6252 encoder->pre_enable(encoder);
6253
Jesse Barnes2dd24552013-04-25 12:55:01 -07006254 i9xx_pfit_enable(intel_crtc);
6255
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006256 intel_crtc_load_lut(crtc);
6257
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006258 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006259
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006260 assert_vblank_disabled(crtc);
6261 drm_crtc_vblank_on(crtc);
6262
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006263 for_each_encoder_on_crtc(dev, crtc, encoder)
6264 encoder->enable(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07006265}
6266
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006267static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6268{
6269 struct drm_device *dev = crtc->base.dev;
6270 struct drm_i915_private *dev_priv = dev->dev_private;
6271
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006272 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6273 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006274}
6275
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006276static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08006277{
6278 struct drm_device *dev = crtc->dev;
Daniel Vettera72e4c92014-09-30 10:56:47 +02006279 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006280 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006281 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006282 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08006283
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +02006284 if (WARN_ON(intel_crtc->active))
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006285 return;
6286
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02006287 i9xx_set_pll_dividers(intel_crtc);
6288
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006289 if (intel_crtc->config->has_dp_encoder)
Ramalingam Cfe3cd482015-02-13 15:32:59 +05306290 intel_dp_set_m_n(intel_crtc, M1_N1);
Daniel Vetter5b18e572014-04-24 23:55:06 +02006291
6292 intel_set_pipe_timings(intel_crtc);
6293
Daniel Vetter5b18e572014-04-24 23:55:06 +02006294 i9xx_set_pipeconf(intel_crtc);
6295
Chris Wilsonf7abfe82010-09-13 14:19:16 +01006296 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01006297
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006298 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006299 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006300
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02006301 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02006302 if (encoder->pre_enable)
6303 encoder->pre_enable(encoder);
6304
Daniel Vetterf6736a12013-06-05 13:34:30 +02006305 i9xx_enable_pll(intel_crtc);
6306
Jesse Barnes2dd24552013-04-25 12:55:01 -07006307 i9xx_pfit_enable(intel_crtc);
6308
Ville Syrjälä63cbb072013-06-04 13:48:59 +03006309 intel_crtc_load_lut(crtc);
6310
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03006311 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02006312 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02006313
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006314 assert_vblank_disabled(crtc);
6315 drm_crtc_vblank_on(crtc);
6316
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006317 for_each_encoder_on_crtc(dev, crtc, encoder)
6318 encoder->enable(encoder);
Paulo Zanonid029bca2015-10-15 10:44:46 -03006319
6320 intel_fbc_enable(intel_crtc);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006321}
6322
Daniel Vetter87476d62013-04-11 16:29:06 +02006323static void i9xx_pfit_disable(struct intel_crtc *crtc)
6324{
6325 struct drm_device *dev = crtc->base.dev;
6326 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02006327
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02006328 if (!crtc->config->gmch_pfit.control)
Daniel Vetter328d8e82013-05-08 10:36:31 +02006329 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02006330
6331 assert_pipe_disabled(dev_priv, crtc->pipe);
6332
Daniel Vetter328d8e82013-05-08 10:36:31 +02006333 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6334 I915_READ(PFIT_CONTROL));
6335 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02006336}
6337
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006338static void i9xx_crtc_disable(struct drm_crtc *crtc)
6339{
6340 struct drm_device *dev = crtc->dev;
6341 struct drm_i915_private *dev_priv = dev->dev_private;
6342 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006343 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006344 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02006345
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006346 /*
6347 * On gen2 planes are double buffered but the pipe isn't, so we must
6348 * wait for planes to fully turn off before disabling the pipe.
Imre Deak564ed192014-06-13 14:54:21 +03006349 * We also need to wait on all gmch platforms because of the
6350 * self-refresh mode constraint explained above.
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006351 */
Imre Deak564ed192014-06-13 14:54:21 +03006352 intel_wait_for_vblank(dev, pipe);
Ville Syrjälä6304cd92014-04-25 13:30:12 +03006353
Ville Syrjälä4b3a9522014-08-14 22:04:37 +03006354 for_each_encoder_on_crtc(dev, crtc, encoder)
6355 encoder->disable(encoder);
6356
Daniel Vetterf9b61ff2015-01-07 13:54:39 +01006357 drm_crtc_vblank_off(crtc);
6358 assert_vblank_disabled(crtc);
6359
Ville Syrjälä575f7ab2014-08-15 01:21:56 +03006360 intel_disable_pipe(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006361
Daniel Vetter87476d62013-04-11 16:29:06 +02006362 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02006363
Jesse Barnes89b667f2013-04-18 14:51:36 -07006364 for_each_encoder_on_crtc(dev, crtc, encoder)
6365 if (encoder->post_disable)
6366 encoder->post_disable(encoder);
6367
Jani Nikulaa65347b2015-11-27 12:21:46 +02006368 if (!intel_crtc->config->has_dsi_encoder) {
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006369 if (IS_CHERRYVIEW(dev))
6370 chv_disable_pll(dev_priv, pipe);
6371 else if (IS_VALLEYVIEW(dev))
6372 vlv_disable_pll(dev_priv, pipe);
6373 else
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03006374 i9xx_disable_pll(intel_crtc);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03006375 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006376
Ville Syrjäläd6db9952015-07-08 23:45:49 +03006377 for_each_encoder_on_crtc(dev, crtc, encoder)
6378 if (encoder->post_pll_disable)
6379 encoder->post_pll_disable(encoder);
6380
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03006381 if (!IS_GEN2(dev))
Daniel Vettera72e4c92014-09-30 10:56:47 +02006382 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
Paulo Zanonid029bca2015-10-15 10:44:46 -03006383
6384 intel_fbc_disable_crtc(intel_crtc);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07006385}
6386
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006387static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006388{
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006389 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006390 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006391 enum intel_display_power_domain domain;
6392 unsigned long domains;
Daniel Vetter976f8a22012-07-08 22:34:21 +02006393
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006394 if (!intel_crtc->active)
6395 return;
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006396
Maarten Lankhorsta5392052015-06-15 12:33:52 +02006397 if (to_intel_plane_state(crtc->primary->state)->visible) {
Maarten Lankhorstfc32b1f2015-10-19 17:09:23 +02006398 WARN_ON(intel_crtc->unpin_work);
6399
Maarten Lankhorsta5392052015-06-15 12:33:52 +02006400 intel_pre_disable_primary(crtc);
Maarten Lankhorst54a419612015-11-23 10:25:28 +01006401
6402 intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary));
6403 to_intel_plane_state(crtc->primary->state)->visible = false;
Maarten Lankhorsta5392052015-06-15 12:33:52 +02006404 }
6405
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006406 dev_priv->display.crtc_disable(crtc);
Matt Roper37d90782015-09-24 15:53:06 -07006407 intel_crtc->active = false;
6408 intel_update_watermarks(crtc);
Maarten Lankhorst1f7457b2015-07-13 11:55:05 +02006409 intel_disable_shared_dpll(intel_crtc);
Daniel Vetter0e572fe2014-04-24 23:55:42 +02006410
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006411 domains = intel_crtc->enabled_power_domains;
6412 for_each_power_domain(domain, domains)
6413 intel_display_power_put(dev_priv, domain);
6414 intel_crtc->enabled_power_domains = 0;
Maarten Lankhorst565602d2015-12-10 12:33:57 +01006415
6416 dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe);
6417 dev_priv->min_pixclk[intel_crtc->pipe] = 0;
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +02006418}
6419
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006420/*
6421 * turn all crtc's off, but do not adjust state
6422 * This has to be paired with a call to intel_modeset_setup_hw_state.
6423 */
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006424int intel_display_suspend(struct drm_device *dev)
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006425{
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006426 struct drm_mode_config *config = &dev->mode_config;
6427 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
6428 struct drm_atomic_state *state;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006429 struct drm_crtc *crtc;
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006430 unsigned crtc_mask = 0;
6431 int ret = 0;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006432
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006433 if (WARN_ON(!ctx))
6434 return 0;
6435
6436 lockdep_assert_held(&ctx->ww_ctx);
6437 state = drm_atomic_state_alloc(dev);
6438 if (WARN_ON(!state))
6439 return -ENOMEM;
6440
6441 state->acquire_ctx = ctx;
6442 state->allow_modeset = true;
6443
6444 for_each_crtc(dev, crtc) {
6445 struct drm_crtc_state *crtc_state =
6446 drm_atomic_get_crtc_state(state, crtc);
6447
6448 ret = PTR_ERR_OR_ZERO(crtc_state);
6449 if (ret)
6450 goto free;
6451
6452 if (!crtc_state->active)
6453 continue;
6454
6455 crtc_state->active = false;
6456 crtc_mask |= 1 << drm_crtc_index(crtc);
6457 }
6458
6459 if (crtc_mask) {
Maarten Lankhorst74c090b2015-07-13 16:30:30 +02006460 ret = drm_atomic_commit(state);
Maarten Lankhorst70e0bd72015-07-13 16:30:29 +02006461
6462 if (!ret) {
6463 for_each_crtc(dev, crtc)
6464 if (crtc_mask & (1 << drm_crtc_index(crtc)))
6465 crtc->state->active = true;
6466
6467 return ret;
6468 }
6469 }
6470
6471free:
6472 if (ret)
6473 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
6474 drm_atomic_state_free(state);
6475 return ret;
Maarten Lankhorst6b72d482015-06-01 12:49:47 +02006476}
6477
Chris Wilsonea5b2132010-08-04 13:50:23 +01006478void intel_encoder_destroy(struct drm_encoder *encoder)
6479{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006480 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01006481
Chris Wilsonea5b2132010-08-04 13:50:23 +01006482 drm_encoder_cleanup(encoder);
6483 kfree(intel_encoder);
6484}
6485
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006486/* Cross check the actual hw state with our own modeset state tracking (and it's
6487 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02006488static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006489{
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006490 struct drm_crtc *crtc = connector->base.state->crtc;
6491
6492 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6493 connector->base.base.id,
6494 connector->base.name);
6495
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006496 if (connector->get_hw_state(connector)) {
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006497 struct intel_encoder *encoder = connector->encoder;
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006498 struct drm_connector_state *conn_state = connector->base.state;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006499
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006500 I915_STATE_WARN(!crtc,
6501 "connector enabled without attached crtc\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006502
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006503 if (!crtc)
6504 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006505
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006506 I915_STATE_WARN(!crtc->state->active,
6507 "connector is active, but attached crtc isn't\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006508
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006509 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006510 return;
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006511
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006512 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006513 "atomic encoder doesn't match attached encoder\n");
Dave Airlie36cd7442014-05-02 13:44:18 +10006514
Maarten Lankhorste85376c2015-08-27 13:13:31 +02006515 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006516 "attached encoder crtc differs from connector crtc\n");
6517 } else {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02006518 I915_STATE_WARN(crtc && crtc->state->active,
6519 "attached crtc is active, but connector isn't\n");
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +02006520 I915_STATE_WARN(!crtc && connector->base.state->best_encoder,
6521 "best encoder set without crtc!\n");
Daniel Vetter0a91ca22012-07-02 21:54:27 +02006522 }
6523}
6524
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03006525int intel_connector_init(struct intel_connector *connector)
6526{
6527 struct drm_connector_state *connector_state;
6528
6529 connector_state = kzalloc(sizeof *connector_state, GFP_KERNEL);
6530 if (!connector_state)
6531 return -ENOMEM;
6532
6533 connector->base.state = connector_state;
6534 return 0;
6535}
6536
6537struct intel_connector *intel_connector_alloc(void)
6538{
6539 struct intel_connector *connector;
6540
6541 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6542 if (!connector)
6543 return NULL;
6544
6545 if (intel_connector_init(connector) < 0) {
6546 kfree(connector);
6547 return NULL;
6548 }
6549
6550 return connector;
6551}
6552
Daniel Vetterf0947c32012-07-02 13:10:34 +02006553/* Simple connector->get_hw_state implementation for encoders that support only
6554 * one connector and no cloning and hence the encoder state determines the state
6555 * of the connector. */
6556bool intel_connector_get_hw_state(struct intel_connector *connector)
6557{
Daniel Vetter24929352012-07-02 20:28:59 +02006558 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02006559 struct intel_encoder *encoder = connector->encoder;
6560
6561 return encoder->get_hw_state(encoder, &pipe);
6562}
6563
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006564static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006565{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006566 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6567 return crtc_state->fdi_lanes;
Ville Syrjäläd272ddf2015-03-11 18:52:31 +02006568
6569 return 0;
6570}
6571
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006572static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006573 struct intel_crtc_state *pipe_config)
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006574{
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006575 struct drm_atomic_state *state = pipe_config->base.state;
6576 struct intel_crtc *other_crtc;
6577 struct intel_crtc_state *other_crtc_state;
6578
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006579 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6580 pipe_name(pipe), pipe_config->fdi_lanes);
6581 if (pipe_config->fdi_lanes > 4) {
6582 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6583 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006584 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006585 }
6586
Paulo Zanonibafb6552013-11-02 21:07:44 -07006587 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006588 if (pipe_config->fdi_lanes > 2) {
6589 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6590 pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006591 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006592 } else {
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006593 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006594 }
6595 }
6596
6597 if (INTEL_INFO(dev)->num_pipes == 2)
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006598 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006599
6600 /* Ivybridge 3 pipe is really complicated */
6601 switch (pipe) {
6602 case PIPE_A:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006603 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006604 case PIPE_B:
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006605 if (pipe_config->fdi_lanes <= 2)
6606 return 0;
6607
6608 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6609 other_crtc_state =
6610 intel_atomic_get_crtc_state(state, other_crtc);
6611 if (IS_ERR(other_crtc_state))
6612 return PTR_ERR(other_crtc_state);
6613
6614 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006615 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6616 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006617 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006618 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006619 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006620 case PIPE_C:
Ville Syrjälä251cc672015-03-11 18:52:30 +02006621 if (pipe_config->fdi_lanes > 2) {
6622 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6623 pipe_name(pipe), pipe_config->fdi_lanes);
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006624 return -EINVAL;
Ville Syrjälä251cc672015-03-11 18:52:30 +02006625 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006626
6627 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6628 other_crtc_state =
6629 intel_atomic_get_crtc_state(state, other_crtc);
6630 if (IS_ERR(other_crtc_state))
6631 return PTR_ERR(other_crtc_state);
6632
6633 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006634 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006635 return -EINVAL;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006636 }
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006637 return 0;
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006638 default:
6639 BUG();
6640 }
6641}
6642
Daniel Vettere29c22c2013-02-21 00:00:16 +01006643#define RETRY 1
6644static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006645 struct intel_crtc_state *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02006646{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006647 struct drm_device *dev = intel_crtc->base.dev;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03006648 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006649 int lane, link_bw, fdi_dotclock, ret;
6650 bool needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006651
Daniel Vettere29c22c2013-02-21 00:00:16 +01006652retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02006653 /* FDI is a binary signal running at ~2.7GHz, encoding
6654 * each output octet as 10 bits. The actual frequency
6655 * is stored as a divider into a 100MHz clock, and the
6656 * mode pixel clock is stored in units of 1KHz.
6657 * Hence the bw of each lane in terms of the mode signal
6658 * is:
6659 */
6660 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
6661
Damien Lespiau241bfc32013-09-25 16:45:37 +01006662 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006663
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006664 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006665 pipe_config->pipe_bpp);
6666
6667 pipe_config->fdi_lanes = lane;
6668
Daniel Vetter2bd89a02013-06-01 17:16:19 +02006669 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02006670 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006671
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006672 ret = ironlake_check_fdi_lanes(intel_crtc->base.dev,
6673 intel_crtc->pipe, pipe_config);
6674 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01006675 pipe_config->pipe_bpp -= 2*3;
6676 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6677 pipe_config->pipe_bpp);
6678 needs_recompute = true;
6679 pipe_config->bw_constrained = true;
6680
6681 goto retry;
6682 }
6683
6684 if (needs_recompute)
6685 return RETRY;
6686
Ander Conselvan de Oliveira6d293982015-03-30 08:33:12 +03006687 return ret;
Daniel Vetter877d48d2013-04-19 11:24:43 +02006688}
6689
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006690static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
6691 struct intel_crtc_state *pipe_config)
6692{
6693 if (pipe_config->pipe_bpp > 24)
6694 return false;
6695
6696 /* HSW can handle pixel rate up to cdclk? */
6697 if (IS_HASWELL(dev_priv->dev))
6698 return true;
6699
6700 /*
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03006701 * We compare against max which means we must take
6702 * the increased cdclk requirement into account when
6703 * calculating the new cdclk.
6704 *
6705 * Should measure whether using a lower cdclk w/o IPS
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006706 */
6707 return ilk_pipe_pixel_rate(pipe_config) <=
6708 dev_priv->max_cdclk_freq * 95 / 100;
6709}
6710
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006711static void hsw_compute_ips_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006712 struct intel_crtc_state *pipe_config)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006713{
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006714 struct drm_device *dev = crtc->base.dev;
6715 struct drm_i915_private *dev_priv = dev->dev_private;
6716
Jani Nikulad330a952014-01-21 11:24:25 +02006717 pipe_config->ips_enabled = i915.enable_ips &&
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03006718 hsw_crtc_supports_ips(crtc) &&
6719 pipe_config_supports_ips(dev_priv, pipe_config);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006720}
6721
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006722static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc)
6723{
6724 const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6725
6726 /* GDG double wide on either pipe, otherwise pipe A only */
6727 return INTEL_INFO(dev_priv)->gen < 4 &&
6728 (crtc->pipe == PIPE_A || IS_I915G(dev_priv));
6729}
6730
Daniel Vettera43f6e02013-06-07 23:10:32 +02006731static int intel_crtc_compute_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02006732 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08006733{
Daniel Vettera43f6e02013-06-07 23:10:32 +02006734 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira8bd31e62014-10-29 11:32:33 +02006735 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03006736 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01006737
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006738 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006739 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006740 int clock_limit = dev_priv->max_cdclk_freq * 9 / 10;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006741
6742 /*
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006743 * Enable double wide mode when the dot clock
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006744 * is > 90% of the (display) core speed.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006745 */
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006746 if (intel_crtc_supports_double_wide(crtc) &&
6747 adjusted_mode->crtc_clock > clock_limit) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006748 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03006749 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03006750 }
6751
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006752 if (adjusted_mode->crtc_clock > clock_limit) {
6753 DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n",
6754 adjusted_mode->crtc_clock, clock_limit,
6755 yesno(pipe_config->double_wide));
Daniel Vettere29c22c2013-02-21 00:00:16 +01006756 return -EINVAL;
Ville Syrjälä39acb4a2015-10-30 23:39:38 +02006757 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08006758 }
Chris Wilson89749352010-09-12 18:25:19 +01006759
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006760 /*
6761 * Pipe horizontal size must be even in:
6762 * - DVO ganged mode
6763 * - LVDS dual channel mode
6764 * - Double wide pipe
6765 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02006766 if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) &&
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03006767 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6768 pipe_config->pipe_src_w &= ~1;
6769
Damien Lespiau8693a822013-05-03 18:48:11 +01006770 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6771 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03006772 */
6773 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
Ville Syrjäläaad941d2015-09-25 16:38:56 +03006774 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01006775 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03006776
Damien Lespiauf5adf942013-06-24 18:29:34 +01006777 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02006778 hsw_compute_ips_config(crtc, pipe_config);
6779
Daniel Vetter877d48d2013-04-19 11:24:43 +02006780 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02006781 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02006782
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +02006783 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006784}
6785
Ville Syrjälä1652d192015-03-31 14:12:01 +03006786static int skylake_get_display_clock_speed(struct drm_device *dev)
6787{
6788 struct drm_i915_private *dev_priv = to_i915(dev);
6789 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
6790 uint32_t cdctl = I915_READ(CDCLK_CTL);
6791 uint32_t linkrate;
6792
Damien Lespiau414355a2015-06-04 18:21:31 +01006793 if (!(lcpll1 & LCPLL_PLL_ENABLE))
Ville Syrjälä1652d192015-03-31 14:12:01 +03006794 return 24000; /* 24MHz is the cd freq with NSSC ref */
Ville Syrjälä1652d192015-03-31 14:12:01 +03006795
6796 if ((cdctl & CDCLK_FREQ_SEL_MASK) == CDCLK_FREQ_540)
6797 return 540000;
6798
6799 linkrate = (I915_READ(DPLL_CTRL1) &
Damien Lespiau71cd8422015-04-30 16:39:17 +01006800 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) >> 1;
Ville Syrjälä1652d192015-03-31 14:12:01 +03006801
Damien Lespiau71cd8422015-04-30 16:39:17 +01006802 if (linkrate == DPLL_CTRL1_LINK_RATE_2160 ||
6803 linkrate == DPLL_CTRL1_LINK_RATE_1080) {
Ville Syrjälä1652d192015-03-31 14:12:01 +03006804 /* vco 8640 */
6805 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6806 case CDCLK_FREQ_450_432:
6807 return 432000;
6808 case CDCLK_FREQ_337_308:
6809 return 308570;
6810 case CDCLK_FREQ_675_617:
6811 return 617140;
6812 default:
6813 WARN(1, "Unknown cd freq selection\n");
6814 }
6815 } else {
6816 /* vco 8100 */
6817 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6818 case CDCLK_FREQ_450_432:
6819 return 450000;
6820 case CDCLK_FREQ_337_308:
6821 return 337500;
6822 case CDCLK_FREQ_675_617:
6823 return 675000;
6824 default:
6825 WARN(1, "Unknown cd freq selection\n");
6826 }
6827 }
6828
6829 /* error case, do as if DPLL0 isn't enabled */
6830 return 24000;
6831}
6832
Bob Paauweacd3f3d2015-06-23 14:14:26 -07006833static int broxton_get_display_clock_speed(struct drm_device *dev)
6834{
6835 struct drm_i915_private *dev_priv = to_i915(dev);
6836 uint32_t cdctl = I915_READ(CDCLK_CTL);
6837 uint32_t pll_ratio = I915_READ(BXT_DE_PLL_CTL) & BXT_DE_PLL_RATIO_MASK;
6838 uint32_t pll_enab = I915_READ(BXT_DE_PLL_ENABLE);
6839 int cdclk;
6840
6841 if (!(pll_enab & BXT_DE_PLL_PLL_ENABLE))
6842 return 19200;
6843
6844 cdclk = 19200 * pll_ratio / 2;
6845
6846 switch (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) {
6847 case BXT_CDCLK_CD2X_DIV_SEL_1:
6848 return cdclk; /* 576MHz or 624MHz */
6849 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
6850 return cdclk * 2 / 3; /* 384MHz */
6851 case BXT_CDCLK_CD2X_DIV_SEL_2:
6852 return cdclk / 2; /* 288MHz */
6853 case BXT_CDCLK_CD2X_DIV_SEL_4:
6854 return cdclk / 4; /* 144MHz */
6855 }
6856
6857 /* error case, do as if DE PLL isn't enabled */
6858 return 19200;
6859}
6860
Ville Syrjälä1652d192015-03-31 14:12:01 +03006861static int broadwell_get_display_clock_speed(struct drm_device *dev)
6862{
6863 struct drm_i915_private *dev_priv = dev->dev_private;
6864 uint32_t lcpll = I915_READ(LCPLL_CTL);
6865 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6866
6867 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6868 return 800000;
6869 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6870 return 450000;
6871 else if (freq == LCPLL_CLK_FREQ_450)
6872 return 450000;
6873 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6874 return 540000;
6875 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6876 return 337500;
6877 else
6878 return 675000;
6879}
6880
6881static int haswell_get_display_clock_speed(struct drm_device *dev)
6882{
6883 struct drm_i915_private *dev_priv = dev->dev_private;
6884 uint32_t lcpll = I915_READ(LCPLL_CTL);
6885 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6886
6887 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6888 return 800000;
6889 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6890 return 450000;
6891 else if (freq == LCPLL_CLK_FREQ_450)
6892 return 450000;
6893 else if (IS_HSW_ULT(dev))
6894 return 337500;
6895 else
6896 return 540000;
Jesse Barnes79e53942008-11-07 14:24:08 -08006897}
6898
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006899static int valleyview_get_display_clock_speed(struct drm_device *dev)
6900{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03006901 return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk",
6902 CCK_DISPLAY_CLOCK_CONTROL);
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006903}
6904
Ville Syrjäläb37a6432015-03-31 14:11:54 +03006905static int ilk_get_display_clock_speed(struct drm_device *dev)
6906{
6907 return 450000;
6908}
6909
Jesse Barnese70236a2009-09-21 10:42:27 -07006910static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08006911{
Jesse Barnese70236a2009-09-21 10:42:27 -07006912 return 400000;
6913}
Jesse Barnes79e53942008-11-07 14:24:08 -08006914
Jesse Barnese70236a2009-09-21 10:42:27 -07006915static int i915_get_display_clock_speed(struct drm_device *dev)
6916{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006917 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006918}
Jesse Barnes79e53942008-11-07 14:24:08 -08006919
Jesse Barnese70236a2009-09-21 10:42:27 -07006920static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6921{
6922 return 200000;
6923}
Jesse Barnes79e53942008-11-07 14:24:08 -08006924
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006925static int pnv_get_display_clock_speed(struct drm_device *dev)
6926{
6927 u16 gcfgc = 0;
6928
6929 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6930
6931 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6932 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006933 return 266667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006934 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006935 return 333333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006936 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006937 return 444444;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006938 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6939 return 200000;
6940 default:
6941 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6942 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006943 return 133333;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006944 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006945 return 166667;
Daniel Vetter257a7ff2013-07-26 08:35:42 +02006946 }
6947}
6948
Jesse Barnese70236a2009-09-21 10:42:27 -07006949static int i915gm_get_display_clock_speed(struct drm_device *dev)
6950{
6951 u16 gcfgc = 0;
6952
6953 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6954
6955 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Ville Syrjäläe907f172015-03-31 14:09:47 +03006956 return 133333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006957 else {
6958 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6959 case GC_DISPLAY_CLOCK_333_MHZ:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006960 return 333333;
Jesse Barnese70236a2009-09-21 10:42:27 -07006961 default:
6962 case GC_DISPLAY_CLOCK_190_200_MHZ:
6963 return 190000;
6964 }
6965 }
6966}
Jesse Barnes79e53942008-11-07 14:24:08 -08006967
Jesse Barnese70236a2009-09-21 10:42:27 -07006968static int i865_get_display_clock_speed(struct drm_device *dev)
6969{
Ville Syrjäläe907f172015-03-31 14:09:47 +03006970 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07006971}
6972
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006973static int i85x_get_display_clock_speed(struct drm_device *dev)
Jesse Barnese70236a2009-09-21 10:42:27 -07006974{
6975 u16 hpllcc = 0;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006976
Ville Syrjälä65cd2b32015-05-22 11:22:32 +03006977 /*
6978 * 852GM/852GMV only supports 133 MHz and the HPLLCC
6979 * encoding is different :(
6980 * FIXME is this the right way to detect 852GM/852GMV?
6981 */
6982 if (dev->pdev->revision == 0x1)
6983 return 133333;
6984
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006985 pci_bus_read_config_word(dev->pdev->bus,
6986 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
6987
Jesse Barnese70236a2009-09-21 10:42:27 -07006988 /* Assume that the hardware is in the high speed state. This
6989 * should be the default.
6990 */
6991 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
6992 case GC_CLOCK_133_200:
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03006993 case GC_CLOCK_133_200_2:
Jesse Barnese70236a2009-09-21 10:42:27 -07006994 case GC_CLOCK_100_200:
6995 return 200000;
6996 case GC_CLOCK_166_250:
6997 return 250000;
6998 case GC_CLOCK_100_133:
Ville Syrjäläe907f172015-03-31 14:09:47 +03006999 return 133333;
Ville Syrjälä1b1d2712015-05-22 11:22:31 +03007000 case GC_CLOCK_133_266:
7001 case GC_CLOCK_133_266_2:
7002 case GC_CLOCK_166_266:
7003 return 266667;
Jesse Barnese70236a2009-09-21 10:42:27 -07007004 }
7005
7006 /* Shouldn't happen */
7007 return 0;
7008}
7009
7010static int i830_get_display_clock_speed(struct drm_device *dev)
7011{
Ville Syrjäläe907f172015-03-31 14:09:47 +03007012 return 133333;
Jesse Barnes79e53942008-11-07 14:24:08 -08007013}
7014
Ville Syrjälä34edce22015-05-22 11:22:33 +03007015static unsigned int intel_hpll_vco(struct drm_device *dev)
7016{
7017 struct drm_i915_private *dev_priv = dev->dev_private;
7018 static const unsigned int blb_vco[8] = {
7019 [0] = 3200000,
7020 [1] = 4000000,
7021 [2] = 5333333,
7022 [3] = 4800000,
7023 [4] = 6400000,
7024 };
7025 static const unsigned int pnv_vco[8] = {
7026 [0] = 3200000,
7027 [1] = 4000000,
7028 [2] = 5333333,
7029 [3] = 4800000,
7030 [4] = 2666667,
7031 };
7032 static const unsigned int cl_vco[8] = {
7033 [0] = 3200000,
7034 [1] = 4000000,
7035 [2] = 5333333,
7036 [3] = 6400000,
7037 [4] = 3333333,
7038 [5] = 3566667,
7039 [6] = 4266667,
7040 };
7041 static const unsigned int elk_vco[8] = {
7042 [0] = 3200000,
7043 [1] = 4000000,
7044 [2] = 5333333,
7045 [3] = 4800000,
7046 };
7047 static const unsigned int ctg_vco[8] = {
7048 [0] = 3200000,
7049 [1] = 4000000,
7050 [2] = 5333333,
7051 [3] = 6400000,
7052 [4] = 2666667,
7053 [5] = 4266667,
7054 };
7055 const unsigned int *vco_table;
7056 unsigned int vco;
7057 uint8_t tmp = 0;
7058
7059 /* FIXME other chipsets? */
7060 if (IS_GM45(dev))
7061 vco_table = ctg_vco;
7062 else if (IS_G4X(dev))
7063 vco_table = elk_vco;
7064 else if (IS_CRESTLINE(dev))
7065 vco_table = cl_vco;
7066 else if (IS_PINEVIEW(dev))
7067 vco_table = pnv_vco;
7068 else if (IS_G33(dev))
7069 vco_table = blb_vco;
7070 else
7071 return 0;
7072
7073 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
7074
7075 vco = vco_table[tmp & 0x7];
7076 if (vco == 0)
7077 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
7078 else
7079 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
7080
7081 return vco;
7082}
7083
7084static int gm45_get_display_clock_speed(struct drm_device *dev)
7085{
7086 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7087 uint16_t tmp = 0;
7088
7089 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7090
7091 cdclk_sel = (tmp >> 12) & 0x1;
7092
7093 switch (vco) {
7094 case 2666667:
7095 case 4000000:
7096 case 5333333:
7097 return cdclk_sel ? 333333 : 222222;
7098 case 3200000:
7099 return cdclk_sel ? 320000 : 228571;
7100 default:
7101 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
7102 return 222222;
7103 }
7104}
7105
7106static int i965gm_get_display_clock_speed(struct drm_device *dev)
7107{
7108 static const uint8_t div_3200[] = { 16, 10, 8 };
7109 static const uint8_t div_4000[] = { 20, 12, 10 };
7110 static const uint8_t div_5333[] = { 24, 16, 14 };
7111 const uint8_t *div_table;
7112 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7113 uint16_t tmp = 0;
7114
7115 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7116
7117 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
7118
7119 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7120 goto fail;
7121
7122 switch (vco) {
7123 case 3200000:
7124 div_table = div_3200;
7125 break;
7126 case 4000000:
7127 div_table = div_4000;
7128 break;
7129 case 5333333:
7130 div_table = div_5333;
7131 break;
7132 default:
7133 goto fail;
7134 }
7135
7136 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7137
Damien Lespiaucaf4e252015-06-04 16:56:18 +01007138fail:
Ville Syrjälä34edce22015-05-22 11:22:33 +03007139 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
7140 return 200000;
7141}
7142
7143static int g33_get_display_clock_speed(struct drm_device *dev)
7144{
7145 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
7146 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
7147 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
7148 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
7149 const uint8_t *div_table;
7150 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7151 uint16_t tmp = 0;
7152
7153 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7154
7155 cdclk_sel = (tmp >> 4) & 0x7;
7156
7157 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7158 goto fail;
7159
7160 switch (vco) {
7161 case 3200000:
7162 div_table = div_3200;
7163 break;
7164 case 4000000:
7165 div_table = div_4000;
7166 break;
7167 case 4800000:
7168 div_table = div_4800;
7169 break;
7170 case 5333333:
7171 div_table = div_5333;
7172 break;
7173 default:
7174 goto fail;
7175 }
7176
7177 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7178
Damien Lespiaucaf4e252015-06-04 16:56:18 +01007179fail:
Ville Syrjälä34edce22015-05-22 11:22:33 +03007180 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7181 return 190476;
7182}
7183
Zhenyu Wang2c072452009-06-05 15:38:42 +08007184static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007185intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007186{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007187 while (*num > DATA_LINK_M_N_MASK ||
7188 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08007189 *num >>= 1;
7190 *den >>= 1;
7191 }
7192}
7193
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007194static void compute_m_n(unsigned int m, unsigned int n,
7195 uint32_t *ret_m, uint32_t *ret_n)
7196{
7197 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7198 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7199 intel_reduce_m_n_ratio(ret_m, ret_n);
7200}
7201
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007202void
7203intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7204 int pixel_clock, int link_clock,
7205 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08007206{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01007207 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03007208
7209 compute_m_n(bits_per_pixel * pixel_clock,
7210 link_clock * nlanes * 8,
7211 &m_n->gmch_m, &m_n->gmch_n);
7212
7213 compute_m_n(pixel_clock, link_clock,
7214 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08007215}
7216
Chris Wilsona7615032011-01-12 17:04:08 +00007217static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7218{
Jani Nikulad330a952014-01-21 11:24:25 +02007219 if (i915.panel_use_ssc >= 0)
7220 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007221 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07007222 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00007223}
7224
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007225static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
7226 int num_connectors)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007227{
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007228 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007229 struct drm_i915_private *dev_priv = dev->dev_private;
7230 int refclk;
7231
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007232 WARN_ON(!crtc_state->base.state);
7233
Wayne Boyer666a4532015-12-09 12:29:35 -08007234 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev) || IS_BROXTON(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02007235 refclk = 100000;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007236 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007237 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02007238 refclk = dev_priv->vbt.lvds_ssc_freq;
7239 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007240 } else if (!IS_GEN2(dev)) {
7241 refclk = 96000;
7242 } else {
7243 refclk = 48000;
7244 }
7245
7246 return refclk;
7247}
7248
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007249static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007250{
Daniel Vetter7df00d72013-05-21 21:54:55 +02007251 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007252}
Daniel Vetterf47709a2013-03-28 10:42:02 +01007253
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007254static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7255{
7256 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08007257}
7258
Daniel Vetterf47709a2013-03-28 10:42:02 +01007259static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007260 struct intel_crtc_state *crtc_state,
Jesse Barnesa7516a02011-12-15 12:30:37 -08007261 intel_clock_t *reduced_clock)
7262{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007263 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007264 u32 fp, fp2 = 0;
7265
7266 if (IS_PINEVIEW(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007267 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007268 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007269 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007270 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007271 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007272 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02007273 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08007274 }
7275
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007276 crtc_state->dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007277
Daniel Vetterf47709a2013-03-28 10:42:02 +01007278 crtc->lowfreq_avail = false;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007279 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Rodrigo Viviab585de2015-03-24 12:40:09 -07007280 reduced_clock) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007281 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007282 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007283 } else {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007284 crtc_state->dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08007285 }
7286}
7287
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007288static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7289 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07007290{
7291 u32 reg_val;
7292
7293 /*
7294 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7295 * and set it to a reasonable value instead.
7296 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007297 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007298 reg_val &= 0xffffff00;
7299 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007300 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007301
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007302 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007303 reg_val &= 0x8cffffff;
7304 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007305 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007306
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007307 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007308 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007309 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007310
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007311 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007312 reg_val &= 0x00ffffff;
7313 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007314 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007315}
7316
Daniel Vetterb5518422013-05-03 11:49:48 +02007317static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7318 struct intel_link_m_n *m_n)
7319{
7320 struct drm_device *dev = crtc->base.dev;
7321 struct drm_i915_private *dev_priv = dev->dev_private;
7322 int pipe = crtc->pipe;
7323
Daniel Vettere3b95f12013-05-03 11:49:49 +02007324 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7325 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7326 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7327 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007328}
7329
7330static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
Vandana Kannanf769cd22014-08-05 07:51:22 -07007331 struct intel_link_m_n *m_n,
7332 struct intel_link_m_n *m2_n2)
Daniel Vetterb5518422013-05-03 11:49:48 +02007333{
7334 struct drm_device *dev = crtc->base.dev;
7335 struct drm_i915_private *dev_priv = dev->dev_private;
7336 int pipe = crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007337 enum transcoder transcoder = crtc->config->cpu_transcoder;
Daniel Vetterb5518422013-05-03 11:49:48 +02007338
7339 if (INTEL_INFO(dev)->gen >= 5) {
7340 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7341 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7342 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7343 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
Vandana Kannanf769cd22014-08-05 07:51:22 -07007344 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7345 * for gen < 8) and if DRRS is supported (to make sure the
7346 * registers are not unnecessarily accessed).
7347 */
Durgadoss R44395bf2015-02-13 15:33:02 +05307348 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007349 crtc->config->has_drrs) {
Vandana Kannanf769cd22014-08-05 07:51:22 -07007350 I915_WRITE(PIPE_DATA_M2(transcoder),
7351 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7352 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7353 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7354 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7355 }
Daniel Vetterb5518422013-05-03 11:49:48 +02007356 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02007357 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7358 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7359 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7360 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02007361 }
7362}
7363
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307364void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007365{
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307366 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7367
7368 if (m_n == M1_N1) {
7369 dp_m_n = &crtc->config->dp_m_n;
7370 dp_m2_n2 = &crtc->config->dp_m2_n2;
7371 } else if (m_n == M2_N2) {
7372
7373 /*
7374 * M2_N2 registers are not supported. Hence m2_n2 divider value
7375 * needs to be programmed into M1_N1.
7376 */
7377 dp_m_n = &crtc->config->dp_m2_n2;
7378 } else {
7379 DRM_ERROR("Unsupported divider value\n");
7380 return;
7381 }
7382
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007383 if (crtc->config->has_pch_encoder)
7384 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007385 else
Ramalingam Cfe3cd482015-02-13 15:32:59 +05307386 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
Daniel Vetter03afc4a2013-04-02 23:42:31 +02007387}
7388
Daniel Vetter251ac862015-06-18 10:30:24 +02007389static void vlv_compute_dpll(struct intel_crtc *crtc,
7390 struct intel_crtc_state *pipe_config)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007391{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007392 u32 dpll, dpll_md;
7393
7394 /*
7395 * Enable DPIO clock input. We should never disable the reference
7396 * clock for pipe B, since VGA hotplug / manual detection depends
7397 * on it.
7398 */
Ville Syrjälä60bfe442015-06-29 15:25:49 +03007399 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REF_CLK_ENABLE_VLV |
7400 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_REF_CLK_VLV;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007401 /* We should never disable this, set it here for state tracking */
7402 if (crtc->pipe == PIPE_B)
7403 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7404 dpll |= DPLL_VCO_ENABLE;
Ville Syrjäläd288f652014-10-28 13:20:22 +02007405 pipe_config->dpll_hw_state.dpll = dpll;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007406
Ville Syrjäläd288f652014-10-28 13:20:22 +02007407 dpll_md = (pipe_config->pixel_multiplier - 1)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007408 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjäläd288f652014-10-28 13:20:22 +02007409 pipe_config->dpll_hw_state.dpll_md = dpll_md;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007410}
7411
Ville Syrjäläd288f652014-10-28 13:20:22 +02007412static void vlv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007413 const struct intel_crtc_state *pipe_config)
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007414{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007415 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007416 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01007417 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007418 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007419 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007420 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007421
Ville Syrjäläa5805162015-05-26 20:42:30 +03007422 mutex_lock(&dev_priv->sb_lock);
Daniel Vetter09153002012-12-12 14:06:44 +01007423
Ville Syrjäläd288f652014-10-28 13:20:22 +02007424 bestn = pipe_config->dpll.n;
7425 bestm1 = pipe_config->dpll.m1;
7426 bestm2 = pipe_config->dpll.m2;
7427 bestp1 = pipe_config->dpll.p1;
7428 bestp2 = pipe_config->dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007429
Jesse Barnes89b667f2013-04-18 14:51:36 -07007430 /* See eDP HDMI DPIO driver vbios notes doc */
7431
7432 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007433 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08007434 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007435
7436 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007437 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007438
7439 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007440 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007441 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007442 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007443
7444 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007445 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007446
7447 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007448 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7449 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7450 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007451 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07007452
7453 /*
7454 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7455 * but we don't support that).
7456 * Note: don't use the DAC post divider as it seems unstable.
7457 */
7458 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007459 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007460
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007461 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007462 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007463
Jesse Barnes89b667f2013-04-18 14:51:36 -07007464 /* Set HBR and RBR LPF coefficients */
Ville Syrjäläd288f652014-10-28 13:20:22 +02007465 if (pipe_config->port_clock == 162000 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007466 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
7467 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007468 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b01202013-07-05 19:21:38 +03007469 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007470 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007471 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007472 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007473
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02007474 if (pipe_config->has_dp_encoder) {
Jesse Barnes89b667f2013-04-18 14:51:36 -07007475 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007476 if (pipe == PIPE_A)
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 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007480 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007481 0x0df70000);
7482 } else { /* HDMI or VGA */
7483 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02007484 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007485 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007486 0x0df70000);
7487 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007488 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07007489 0x0df40000);
7490 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007491
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007492 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07007493 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007494 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
7495 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Jesse Barnes89b667f2013-04-18 14:51:36 -07007496 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007497 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07007498
Chon Ming Leeab3c7592013-11-07 10:43:30 +08007499 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007500 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07007501}
7502
Daniel Vetter251ac862015-06-18 10:30:24 +02007503static void chv_compute_dpll(struct intel_crtc *crtc,
7504 struct intel_crtc_state *pipe_config)
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007505{
Ville Syrjälä60bfe442015-06-29 15:25:49 +03007506 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
7507 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007508 DPLL_VCO_ENABLE;
7509 if (crtc->pipe != PIPE_A)
Ville Syrjäläd288f652014-10-28 13:20:22 +02007510 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007511
Ville Syrjäläd288f652014-10-28 13:20:22 +02007512 pipe_config->dpll_hw_state.dpll_md =
7513 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007514}
7515
Ville Syrjäläd288f652014-10-28 13:20:22 +02007516static void chv_prepare_pll(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007517 const struct intel_crtc_state *pipe_config)
Ville Syrjälä1ae0d132014-06-28 02:04:00 +03007518{
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007519 struct drm_device *dev = crtc->base.dev;
7520 struct drm_i915_private *dev_priv = dev->dev_private;
7521 int pipe = crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02007522 i915_reg_t dpll_reg = DPLL(crtc->pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007523 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307524 u32 loopfilter, tribuf_calcntr;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007525 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307526 u32 dpio_val;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307527 int vco;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007528
Ville Syrjäläd288f652014-10-28 13:20:22 +02007529 bestn = pipe_config->dpll.n;
7530 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7531 bestm1 = pipe_config->dpll.m1;
7532 bestm2 = pipe_config->dpll.m2 >> 22;
7533 bestp1 = pipe_config->dpll.p1;
7534 bestp2 = pipe_config->dpll.p2;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307535 vco = pipe_config->dpll.vco;
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307536 dpio_val = 0;
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307537 loopfilter = 0;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007538
7539 /*
7540 * Enable Refclk and SSC
7541 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007542 I915_WRITE(dpll_reg,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007543 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
Ville Syrjäläa11b0702014-04-09 13:28:57 +03007544
Ville Syrjäläa5805162015-05-26 20:42:30 +03007545 mutex_lock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007546
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007547 /* p1 and p2 divider */
7548 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7549 5 << DPIO_CHV_S1_DIV_SHIFT |
7550 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7551 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7552 1 << DPIO_CHV_K_DIV_SHIFT);
7553
7554 /* Feedback post-divider - m2 */
7555 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7556
7557 /* Feedback refclk divider - n and m1 */
7558 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7559 DPIO_CHV_M1_DIV_BY_2 |
7560 1 << DPIO_CHV_N_DIV_SHIFT);
7561
7562 /* M2 fraction division */
Ville Syrjälä25a25df2015-07-08 23:45:47 +03007563 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007564
7565 /* M2 fraction division enable */
Vijay Purushothamana945ce7e2015-03-05 19:30:57 +05307566 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7567 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7568 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7569 if (bestm2_frac)
7570 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7571 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007572
Vijay Purushothamande3a0fd2015-03-05 19:32:06 +05307573 /* Program digital lock detect threshold */
7574 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7575 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7576 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7577 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7578 if (!bestm2_frac)
7579 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7580 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7581
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007582 /* Loop filter */
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307583 if (vco == 5400000) {
7584 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7585 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7586 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7587 tribuf_calcntr = 0x9;
7588 } else if (vco <= 6200000) {
7589 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7590 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7591 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7592 tribuf_calcntr = 0x9;
7593 } else if (vco <= 6480000) {
7594 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7595 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7596 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7597 tribuf_calcntr = 0x8;
7598 } else {
7599 /* Not supported. Apply the same limits as in the max case */
7600 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7601 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7602 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7603 tribuf_calcntr = 0;
7604 }
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007605 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7606
Ville Syrjälä968040b2015-03-11 22:52:08 +02007607 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
Vijay Purushothaman9cbe40c2015-03-05 19:33:08 +05307608 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7609 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7610 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7611
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007612 /* AFC Recal */
7613 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7614 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7615 DPIO_AFC_RECAL);
7616
Ville Syrjäläa5805162015-05-26 20:42:30 +03007617 mutex_unlock(&dev_priv->sb_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03007618}
7619
Ville Syrjäläd288f652014-10-28 13:20:22 +02007620/**
7621 * vlv_force_pll_on - forcibly enable just the PLL
7622 * @dev_priv: i915 private structure
7623 * @pipe: pipe PLL to enable
7624 * @dpll: PLL configuration
7625 *
7626 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7627 * in cases where we need the PLL enabled even when @pipe is not going to
7628 * be enabled.
7629 */
7630void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7631 const struct dpll *dpll)
7632{
7633 struct intel_crtc *crtc =
7634 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007635 struct intel_crtc_state pipe_config = {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007636 .base.crtc = &crtc->base,
Ville Syrjäläd288f652014-10-28 13:20:22 +02007637 .pixel_multiplier = 1,
7638 .dpll = *dpll,
7639 };
7640
7641 if (IS_CHERRYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02007642 chv_compute_dpll(crtc, &pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +02007643 chv_prepare_pll(crtc, &pipe_config);
7644 chv_enable_pll(crtc, &pipe_config);
7645 } else {
Daniel Vetter251ac862015-06-18 10:30:24 +02007646 vlv_compute_dpll(crtc, &pipe_config);
Ville Syrjäläd288f652014-10-28 13:20:22 +02007647 vlv_prepare_pll(crtc, &pipe_config);
7648 vlv_enable_pll(crtc, &pipe_config);
7649 }
7650}
7651
7652/**
7653 * vlv_force_pll_off - forcibly disable just the PLL
7654 * @dev_priv: i915 private structure
7655 * @pipe: pipe PLL to disable
7656 *
7657 * Disable the PLL for @pipe. To be used in cases where we need
7658 * the PLL enabled even when @pipe is not going to be enabled.
7659 */
7660void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7661{
7662 if (IS_CHERRYVIEW(dev))
7663 chv_disable_pll(to_i915(dev), pipe);
7664 else
7665 vlv_disable_pll(to_i915(dev), pipe);
7666}
7667
Daniel Vetter251ac862015-06-18 10:30:24 +02007668static void i9xx_compute_dpll(struct intel_crtc *crtc,
7669 struct intel_crtc_state *crtc_state,
7670 intel_clock_t *reduced_clock,
7671 int num_connectors)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007672{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007673 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007674 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007675 u32 dpll;
7676 bool is_sdvo;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007677 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007678
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007679 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307680
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007681 is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7682 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007683
7684 dpll = DPLL_VGA_MODE_DIS;
7685
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007686 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007687 dpll |= DPLLB_MODE_LVDS;
7688 else
7689 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01007690
Daniel Vetteref1b4602013-06-01 17:17:04 +02007691 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007692 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetter198a037f2013-04-19 11:14:37 +02007693 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007694 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02007695
7696 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007697 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02007698
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007699 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02007700 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007701
7702 /* compute bitmask from p1 value */
7703 if (IS_PINEVIEW(dev))
7704 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7705 else {
7706 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7707 if (IS_G4X(dev) && reduced_clock)
7708 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7709 }
7710 switch (clock->p2) {
7711 case 5:
7712 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7713 break;
7714 case 7:
7715 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7716 break;
7717 case 10:
7718 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7719 break;
7720 case 14:
7721 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7722 break;
7723 }
7724 if (INTEL_INFO(dev)->gen >= 4)
7725 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7726
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007727 if (crtc_state->sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007728 dpll |= PLL_REF_INPUT_TVCLKINBC;
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007729 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007730 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7731 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7732 else
7733 dpll |= PLL_REF_INPUT_DREFCLK;
7734
7735 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007736 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02007737
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007738 if (INTEL_INFO(dev)->gen >= 4) {
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007739 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02007740 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007741 crtc_state->dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007742 }
7743}
7744
Daniel Vetter251ac862015-06-18 10:30:24 +02007745static void i8xx_compute_dpll(struct intel_crtc *crtc,
7746 struct intel_crtc_state *crtc_state,
7747 intel_clock_t *reduced_clock,
7748 int num_connectors)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007749{
Daniel Vetterf47709a2013-03-28 10:42:02 +01007750 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007751 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007752 u32 dpll;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007753 struct dpll *clock = &crtc_state->dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007754
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007755 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05307756
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007757 dpll = DPLL_VGA_MODE_DIS;
7758
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007759 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007760 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7761 } else {
7762 if (clock->p1 == 2)
7763 dpll |= PLL_P1_DIVIDE_BY_TWO;
7764 else
7765 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7766 if (clock->p2 == 4)
7767 dpll |= PLL_P2_DIVIDE_BY_4;
7768 }
7769
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007770 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
Daniel Vetter4a33e482013-07-06 12:52:05 +02007771 dpll |= DPLL_DVO_2X_MODE;
7772
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02007773 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007774 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7775 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7776 else
7777 dpll |= PLL_REF_INPUT_DREFCLK;
7778
7779 dpll |= DPLL_VCO_ENABLE;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007780 crtc_state->dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02007781}
7782
Daniel Vetter8a654f32013-06-01 17:16:22 +02007783static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007784{
7785 struct drm_device *dev = intel_crtc->base.dev;
7786 struct drm_i915_private *dev_priv = dev->dev_private;
7787 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007788 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03007789 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007790 uint32_t crtc_vtotal, crtc_vblank_end;
7791 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007792
7793 /* We need to be careful not to changed the adjusted mode, for otherwise
7794 * the hw state checker will get angry at the mismatch. */
7795 crtc_vtotal = adjusted_mode->crtc_vtotal;
7796 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007797
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007798 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007799 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007800 crtc_vtotal -= 1;
7801 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007802
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007803 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjälä609aeac2014-03-28 23:29:30 +02007804 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7805 else
7806 vsyncshift = adjusted_mode->crtc_hsync_start -
7807 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02007808 if (vsyncshift < 0)
7809 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007810 }
7811
7812 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007813 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007814
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007815 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007816 (adjusted_mode->crtc_hdisplay - 1) |
7817 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007818 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007819 (adjusted_mode->crtc_hblank_start - 1) |
7820 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007821 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007822 (adjusted_mode->crtc_hsync_start - 1) |
7823 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7824
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007825 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007826 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007827 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007828 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007829 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02007830 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007831 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007832 (adjusted_mode->crtc_vsync_start - 1) |
7833 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7834
Paulo Zanonib5e508d2012-10-24 11:34:43 -02007835 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7836 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7837 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7838 * bits. */
7839 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7840 (pipe == PIPE_B || pipe == PIPE_C))
7841 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7842
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007843 /* pipesrc controls the size that is scaled from, which should
7844 * always be the user's requested size.
7845 */
7846 I915_WRITE(PIPESRC(pipe),
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007847 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7848 (intel_crtc->config->pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03007849}
7850
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007851static void intel_get_pipe_timings(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007852 struct intel_crtc_state *pipe_config)
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007853{
7854 struct drm_device *dev = crtc->base.dev;
7855 struct drm_i915_private *dev_priv = dev->dev_private;
7856 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7857 uint32_t tmp;
7858
7859 tmp = I915_READ(HTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007860 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7861 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007862 tmp = I915_READ(HBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007863 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7864 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007865 tmp = I915_READ(HSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007866 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7867 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007868
7869 tmp = I915_READ(VTOTAL(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007870 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7871 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007872 tmp = I915_READ(VBLANK(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007873 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7874 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007875 tmp = I915_READ(VSYNC(cpu_transcoder));
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007876 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7877 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007878
7879 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007880 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7881 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7882 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007883 }
7884
7885 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03007886 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7887 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7888
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007889 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7890 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007891}
7892
Daniel Vetterf6a83282014-02-11 15:28:57 -08007893void intel_mode_from_pipe_config(struct drm_display_mode *mode,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02007894 struct intel_crtc_state *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03007895{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007896 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7897 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7898 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7899 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007900
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007901 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7902 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7903 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7904 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03007905
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007906 mode->flags = pipe_config->base.adjusted_mode.flags;
Maarten Lankhorstcd13f5a2015-07-14 14:12:02 +02007907 mode->type = DRM_MODE_TYPE_DRIVER;
Jesse Barnesbabea612013-06-26 18:57:38 +03007908
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02007909 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7910 mode->flags |= pipe_config->base.adjusted_mode.flags;
Maarten Lankhorstcd13f5a2015-07-14 14:12:02 +02007911
7912 mode->hsync = drm_mode_hsync(mode);
7913 mode->vrefresh = drm_mode_vrefresh(mode);
7914 drm_mode_set_name(mode);
Jesse Barnesbabea612013-06-26 18:57:38 +03007915}
7916
Daniel Vetter84b046f2013-02-19 18:48:54 +01007917static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7918{
7919 struct drm_device *dev = intel_crtc->base.dev;
7920 struct drm_i915_private *dev_priv = dev->dev_private;
7921 uint32_t pipeconf;
7922
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007923 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007924
Ville Syrjäläb6b5d042014-08-15 01:22:07 +03007925 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7926 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7927 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
Daniel Vetter67c72a12013-09-24 11:46:14 +02007928
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007929 if (intel_crtc->config->double_wide)
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03007930 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01007931
Daniel Vetterff9ce462013-04-24 14:57:17 +02007932 /* only g4x and later have fancy bpc/dither controls */
Wayne Boyer666a4532015-12-09 12:29:35 -08007933 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007934 /* Bspec claims that we can't use dithering for 30bpp pipes. */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007935 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
Daniel Vetterff9ce462013-04-24 14:57:17 +02007936 pipeconf |= PIPECONF_DITHER_EN |
7937 PIPECONF_DITHER_TYPE_SP;
7938
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007939 switch (intel_crtc->config->pipe_bpp) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02007940 case 18:
7941 pipeconf |= PIPECONF_6BPC;
7942 break;
7943 case 24:
7944 pipeconf |= PIPECONF_8BPC;
7945 break;
7946 case 30:
7947 pipeconf |= PIPECONF_10BPC;
7948 break;
7949 default:
7950 /* Case prevented by intel_choose_pipe_bpp_dither. */
7951 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01007952 }
7953 }
7954
7955 if (HAS_PIPE_CXSR(dev)) {
7956 if (intel_crtc->lowfreq_avail) {
7957 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7958 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7959 } else {
7960 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01007961 }
7962 }
7963
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02007964 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007965 if (INTEL_INFO(dev)->gen < 4 ||
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +03007966 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02007967 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7968 else
7969 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7970 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01007971 pipeconf |= PIPECONF_PROGRESSIVE;
7972
Wayne Boyer666a4532015-12-09 12:29:35 -08007973 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
7974 intel_crtc->config->limited_color_range)
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02007975 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03007976
Daniel Vetter84b046f2013-02-19 18:48:54 +01007977 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7978 POSTING_READ(PIPECONF(intel_crtc->pipe));
7979}
7980
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02007981static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
7982 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08007983{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03007984 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007985 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtc751ce42010-03-25 11:48:48 -07007986 int refclk, num_connectors = 0;
Daniel Vetterc329a4e2015-06-18 10:30:23 +02007987 intel_clock_t clock;
7988 bool ok;
Ma Lingd4906092009-03-18 20:13:27 +08007989 const intel_limit_t *limit;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007990 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03007991 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02007992 struct drm_connector_state *connector_state;
7993 int i;
Jesse Barnes79e53942008-11-07 14:24:08 -08007994
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03007995 memset(&crtc_state->dpll_hw_state, 0,
7996 sizeof(crtc_state->dpll_hw_state));
7997
Jani Nikulaa65347b2015-11-27 12:21:46 +02007998 if (crtc_state->has_dsi_encoder)
Daniel Vetter5b18e572014-04-24 23:55:06 +02007999 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008000
Jani Nikulaa65347b2015-11-27 12:21:46 +02008001 for_each_connector_in_state(state, connector, connector_state, i) {
8002 if (connector_state->crtc == &crtc->base)
8003 num_connectors++;
8004 }
8005
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008006 if (!crtc_state->clock_set) {
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008007 refclk = i9xx_get_refclk(crtc_state, num_connectors);
Jani Nikulaf2335332013-09-13 11:03:09 +03008008
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008009 /*
8010 * Returns a set of divisors for the desired target clock with
8011 * the given refclk, or FALSE. The returned values represent
8012 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
8013 * 2) / p1 / p2.
8014 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008015 limit = intel_limit(crtc_state, refclk);
8016 ok = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008017 crtc_state->port_clock,
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008018 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03008019 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008020 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8021 return -EINVAL;
8022 }
Eric Anholtf564048e2011-03-30 13:01:02 -07008023
Jani Nikulaf2335332013-09-13 11:03:09 +03008024 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008025 crtc_state->dpll.n = clock.n;
8026 crtc_state->dpll.m1 = clock.m1;
8027 crtc_state->dpll.m2 = clock.m2;
8028 crtc_state->dpll.p1 = clock.p1;
8029 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01008030 }
Eric Anholtf564048e2011-03-30 13:01:02 -07008031
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008032 if (IS_GEN2(dev)) {
Daniel Vetterc329a4e2015-06-18 10:30:23 +02008033 i8xx_compute_dpll(crtc, crtc_state, NULL,
Daniel Vetter251ac862015-06-18 10:30:24 +02008034 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03008035 } else if (IS_CHERRYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02008036 chv_compute_dpll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008037 } else if (IS_VALLEYVIEW(dev)) {
Daniel Vetter251ac862015-06-18 10:30:24 +02008038 vlv_compute_dpll(crtc, crtc_state);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008039 } else {
Daniel Vetterc329a4e2015-06-18 10:30:23 +02008040 i9xx_compute_dpll(crtc, crtc_state, NULL,
Daniel Vetter251ac862015-06-18 10:30:24 +02008041 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03008042 }
Eric Anholtf564048e2011-03-30 13:01:02 -07008043
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02008044 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07008045}
8046
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008047static void i9xx_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008048 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008049{
8050 struct drm_device *dev = crtc->base.dev;
8051 struct drm_i915_private *dev_priv = dev->dev_private;
8052 uint32_t tmp;
8053
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02008054 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
8055 return;
8056
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008057 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02008058 if (!(tmp & PFIT_ENABLE))
8059 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008060
Daniel Vetter06922822013-07-11 13:35:40 +02008061 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008062 if (INTEL_INFO(dev)->gen < 4) {
8063 if (crtc->pipe != PIPE_B)
8064 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008065 } else {
8066 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
8067 return;
8068 }
8069
Daniel Vetter06922822013-07-11 13:35:40 +02008070 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008071 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
8072 if (INTEL_INFO(dev)->gen < 5)
8073 pipe_config->gmch_pfit.lvds_border_bits =
8074 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
8075}
8076
Jesse Barnesacbec812013-09-20 11:29:32 -07008077static void vlv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008078 struct intel_crtc_state *pipe_config)
Jesse Barnesacbec812013-09-20 11:29:32 -07008079{
8080 struct drm_device *dev = crtc->base.dev;
8081 struct drm_i915_private *dev_priv = dev->dev_private;
8082 int pipe = pipe_config->cpu_transcoder;
8083 intel_clock_t clock;
8084 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07008085 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07008086
Shobhit Kumarf573de52014-07-30 20:32:37 +05308087 /* In case of MIPI DPLL will not even be used */
8088 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
8089 return;
8090
Ville Syrjäläa5805162015-05-26 20:42:30 +03008091 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08008092 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Ville Syrjäläa5805162015-05-26 20:42:30 +03008093 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnesacbec812013-09-20 11:29:32 -07008094
8095 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
8096 clock.m2 = mdiv & DPIO_M2DIV_MASK;
8097 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
8098 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
8099 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
8100
Imre Deakdccbea32015-06-22 23:35:51 +03008101 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07008102}
8103
Damien Lespiau5724dbd2015-01-20 12:51:52 +00008104static void
8105i9xx_get_initial_plane_config(struct intel_crtc *crtc,
8106 struct intel_initial_plane_config *plane_config)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008107{
8108 struct drm_device *dev = crtc->base.dev;
8109 struct drm_i915_private *dev_priv = dev->dev_private;
8110 u32 val, base, offset;
8111 int pipe = crtc->pipe, plane = crtc->plane;
8112 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00008113 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008114 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00008115 struct intel_framebuffer *intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008116
Damien Lespiau42a7b082015-02-05 19:35:13 +00008117 val = I915_READ(DSPCNTR(plane));
8118 if (!(val & DISPLAY_PLANE_ENABLE))
8119 return;
8120
Damien Lespiaud9806c92015-01-21 14:07:19 +00008121 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00008122 if (!intel_fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008123 DRM_DEBUG_KMS("failed to alloc fb\n");
8124 return;
8125 }
8126
Damien Lespiau1b842c82015-01-21 13:50:54 +00008127 fb = &intel_fb->base;
8128
Daniel Vetter18c52472015-02-10 17:16:09 +00008129 if (INTEL_INFO(dev)->gen >= 4) {
8130 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008131 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00008132 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8133 }
8134 }
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008135
8136 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00008137 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008138 fb->pixel_format = fourcc;
8139 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008140
8141 if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau49af4492015-01-20 12:51:44 +00008142 if (plane_config->tiling)
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008143 offset = I915_READ(DSPTILEOFF(plane));
8144 else
8145 offset = I915_READ(DSPLINOFF(plane));
8146 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8147 } else {
8148 base = I915_READ(DSPADDR(plane));
8149 }
8150 plane_config->base = base;
8151
8152 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008153 fb->width = ((val >> 16) & 0xfff) + 1;
8154 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008155
8156 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008157 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008158
Damien Lespiaub113d5e2015-01-20 12:51:46 +00008159 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00008160 fb->pixel_format,
8161 fb->modifier[0]);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008162
Daniel Vetterf37b5c22015-02-10 23:12:27 +01008163 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008164
Damien Lespiau2844a922015-01-20 12:51:48 +00008165 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8166 pipe_name(pipe), plane, fb->width, fb->height,
8167 fb->bits_per_pixel, base, fb->pitches[0],
8168 plane_config->size);
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008169
Damien Lespiau2d140302015-02-05 17:22:18 +00008170 plane_config->fb = intel_fb;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08008171}
8172
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008173static void chv_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008174 struct intel_crtc_state *pipe_config)
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008175{
8176 struct drm_device *dev = crtc->base.dev;
8177 struct drm_i915_private *dev_priv = dev->dev_private;
8178 int pipe = pipe_config->cpu_transcoder;
8179 enum dpio_channel port = vlv_pipe_to_channel(pipe);
8180 intel_clock_t clock;
Imre Deak0d7b6b12015-07-02 14:29:58 +03008181 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008182 int refclk = 100000;
8183
Ville Syrjäläa5805162015-05-26 20:42:30 +03008184 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008185 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8186 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8187 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8188 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
Imre Deak0d7b6b12015-07-02 14:29:58 +03008189 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
Ville Syrjäläa5805162015-05-26 20:42:30 +03008190 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008191
8192 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
Imre Deak0d7b6b12015-07-02 14:29:58 +03008193 clock.m2 = (pll_dw0 & 0xff) << 22;
8194 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8195 clock.m2 |= pll_dw2 & 0x3fffff;
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008196 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8197 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8198 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8199
Imre Deakdccbea32015-06-22 23:35:51 +03008200 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008201}
8202
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008203static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02008204 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008205{
8206 struct drm_device *dev = crtc->base.dev;
8207 struct drm_i915_private *dev_priv = dev->dev_private;
8208 uint32_t tmp;
8209
Daniel Vetterf458ebb2014-09-30 10:56:39 +02008210 if (!intel_display_power_is_enabled(dev_priv,
8211 POWER_DOMAIN_PIPE(crtc->pipe)))
Imre Deakb5482bd2014-03-05 16:20:55 +02008212 return false;
8213
Daniel Vettere143a212013-07-04 12:01:15 +02008214 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008215 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02008216
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008217 tmp = I915_READ(PIPECONF(crtc->pipe));
8218 if (!(tmp & PIPECONF_ENABLE))
8219 return false;
8220
Wayne Boyer666a4532015-12-09 12:29:35 -08008221 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Ville Syrjälä42571ae2013-09-06 23:29:00 +03008222 switch (tmp & PIPECONF_BPC_MASK) {
8223 case PIPECONF_6BPC:
8224 pipe_config->pipe_bpp = 18;
8225 break;
8226 case PIPECONF_8BPC:
8227 pipe_config->pipe_bpp = 24;
8228 break;
8229 case PIPECONF_10BPC:
8230 pipe_config->pipe_bpp = 30;
8231 break;
8232 default:
8233 break;
8234 }
8235 }
8236
Wayne Boyer666a4532015-12-09 12:29:35 -08008237 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
8238 (tmp & PIPECONF_COLOR_RANGE_SELECT))
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02008239 pipe_config->limited_color_range = true;
8240
Ville Syrjälä282740f2013-09-04 18:30:03 +03008241 if (INTEL_INFO(dev)->gen < 4)
8242 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8243
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008244 intel_get_pipe_timings(crtc, pipe_config);
8245
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008246 i9xx_get_pfit_config(crtc, pipe_config);
8247
Daniel Vetter6c49f242013-06-06 12:45:25 +02008248 if (INTEL_INFO(dev)->gen >= 4) {
8249 tmp = I915_READ(DPLL_MD(crtc->pipe));
8250 pipe_config->pixel_multiplier =
8251 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8252 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008253 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02008254 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
8255 tmp = I915_READ(DPLL(crtc->pipe));
8256 pipe_config->pixel_multiplier =
8257 ((tmp & SDVO_MULTIPLIER_MASK)
8258 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8259 } else {
8260 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8261 * port and will be fixed up in the encoder->get_config
8262 * function. */
8263 pipe_config->pixel_multiplier = 1;
8264 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008265 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
Wayne Boyer666a4532015-12-09 12:29:35 -08008266 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
Ville Syrjälä1c4e0272014-09-05 21:52:42 +03008267 /*
8268 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8269 * on 830. Filter it out here so that we don't
8270 * report errors due to that.
8271 */
8272 if (IS_I830(dev))
8273 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8274
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008275 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8276 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03008277 } else {
8278 /* Mask out read-only status bits. */
8279 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8280 DPLL_PORTC_READY_MASK |
8281 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008282 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02008283
Ville Syrjälä70b23a92014-04-09 13:28:22 +03008284 if (IS_CHERRYVIEW(dev))
8285 chv_crtc_clock_get(crtc, pipe_config);
8286 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07008287 vlv_crtc_clock_get(crtc, pipe_config);
8288 else
8289 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03008290
Ville Syrjälä0f646142015-08-26 19:39:18 +03008291 /*
8292 * Normally the dotclock is filled in by the encoder .get_config()
8293 * but in case the pipe is enabled w/o any ports we need a sane
8294 * default.
8295 */
8296 pipe_config->base.adjusted_mode.crtc_clock =
8297 pipe_config->port_clock / pipe_config->pixel_multiplier;
8298
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008299 return true;
8300}
8301
Paulo Zanonidde86e22012-12-01 12:04:25 -02008302static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07008303{
8304 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008305 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008306 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008307 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008308 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07008309 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07008310 bool has_ck505 = false;
8311 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008312
8313 /* We need to take the global config into account */
Damien Lespiaub2784e12014-08-05 11:29:37 +01008314 for_each_intel_encoder(dev, encoder) {
Keith Packard199e5d72011-09-22 12:01:57 -07008315 switch (encoder->type) {
8316 case INTEL_OUTPUT_LVDS:
8317 has_panel = true;
8318 has_lvds = true;
8319 break;
8320 case INTEL_OUTPUT_EDP:
8321 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03008322 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07008323 has_cpu_edp = true;
8324 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008325 default:
8326 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008327 }
8328 }
8329
Keith Packard99eb6a02011-09-26 14:29:12 -07008330 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008331 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07008332 can_ssc = has_ck505;
8333 } else {
8334 has_ck505 = false;
8335 can_ssc = true;
8336 }
8337
Imre Deak2de69052013-05-08 13:14:04 +03008338 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
8339 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008340
8341 /* Ironlake: try to setup display ref clock before DPLL
8342 * enabling. This is only under driver's control after
8343 * PCH B stepping, previous chipset stepping should be
8344 * ignoring this setting.
8345 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008346 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008347
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008348 /* As we must carefully and slowly disable/enable each source in turn,
8349 * compute the final state we want first and check if we need to
8350 * make any changes at all.
8351 */
8352 final = val;
8353 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07008354 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008355 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07008356 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008357 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8358
8359 final &= ~DREF_SSC_SOURCE_MASK;
8360 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
8361 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008362
Keith Packard199e5d72011-09-22 12:01:57 -07008363 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008364 final |= DREF_SSC_SOURCE_ENABLE;
8365
8366 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8367 final |= DREF_SSC1_ENABLE;
8368
8369 if (has_cpu_edp) {
8370 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8371 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
8372 else
8373 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
8374 } else
8375 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8376 } else {
8377 final |= DREF_SSC_SOURCE_DISABLE;
8378 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8379 }
8380
8381 if (final == val)
8382 return;
8383
8384 /* Always enable nonspread source */
8385 val &= ~DREF_NONSPREAD_SOURCE_MASK;
8386
8387 if (has_ck505)
8388 val |= DREF_NONSPREAD_CK505_ENABLE;
8389 else
8390 val |= DREF_NONSPREAD_SOURCE_ENABLE;
8391
8392 if (has_panel) {
8393 val &= ~DREF_SSC_SOURCE_MASK;
8394 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008395
Keith Packard199e5d72011-09-22 12:01:57 -07008396 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07008397 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07008398 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008399 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02008400 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008401 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008402
8403 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008404 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008405 POSTING_READ(PCH_DREF_CONTROL);
8406 udelay(200);
8407
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008408 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07008409
8410 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07008411 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07008412 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07008413 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008414 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02008415 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008416 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07008417 } else
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 } else {
8424 DRM_DEBUG_KMS("Disabling SSC entirely\n");
8425
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008426 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07008427
8428 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008429 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008430
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008431 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07008432 POSTING_READ(PCH_DREF_CONTROL);
8433 udelay(200);
8434
8435 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008436 val &= ~DREF_SSC_SOURCE_MASK;
8437 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008438
8439 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008440 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07008441
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008442 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008443 POSTING_READ(PCH_DREF_CONTROL);
8444 udelay(200);
8445 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07008446
8447 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07008448}
8449
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008450static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02008451{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008452 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02008453
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008454 tmp = I915_READ(SOUTH_CHICKEN2);
8455 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
8456 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008457
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008458 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
8459 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
8460 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02008461
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008462 tmp = I915_READ(SOUTH_CHICKEN2);
8463 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
8464 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008465
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008466 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
8467 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
8468 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008469}
8470
8471/* WaMPhyProgramming:hsw */
8472static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
8473{
8474 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02008475
8476 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
8477 tmp &= ~(0xFF << 24);
8478 tmp |= (0x12 << 24);
8479 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
8480
Paulo Zanonidde86e22012-12-01 12:04:25 -02008481 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
8482 tmp |= (1 << 11);
8483 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
8484
8485 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
8486 tmp |= (1 << 11);
8487 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
8488
Paulo Zanonidde86e22012-12-01 12:04:25 -02008489 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
8490 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8491 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
8492
8493 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
8494 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8495 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
8496
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008497 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
8498 tmp &= ~(7 << 13);
8499 tmp |= (5 << 13);
8500 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008501
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008502 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8503 tmp &= ~(7 << 13);
8504 tmp |= (5 << 13);
8505 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008506
8507 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8508 tmp &= ~0xFF;
8509 tmp |= 0x1C;
8510 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8511
8512 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8513 tmp &= ~0xFF;
8514 tmp |= 0x1C;
8515 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8516
8517 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8518 tmp &= ~(0xFF << 16);
8519 tmp |= (0x1C << 16);
8520 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8521
8522 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8523 tmp &= ~(0xFF << 16);
8524 tmp |= (0x1C << 16);
8525 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8526
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008527 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8528 tmp |= (1 << 27);
8529 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008530
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008531 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8532 tmp |= (1 << 27);
8533 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008534
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008535 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
8536 tmp &= ~(0xF << 28);
8537 tmp |= (4 << 28);
8538 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008539
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03008540 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8541 tmp &= ~(0xF << 28);
8542 tmp |= (4 << 28);
8543 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008544}
8545
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008546/* Implements 3 different sequences from BSpec chapter "Display iCLK
8547 * Programming" based on the parameters passed:
8548 * - Sequence to enable CLKOUT_DP
8549 * - Sequence to enable CLKOUT_DP without spread
8550 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8551 */
8552static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8553 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008554{
8555 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008556 uint32_t reg, tmp;
8557
8558 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8559 with_spread = true;
Ville Syrjäläc2699522015-08-27 23:55:59 +03008560 if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n"))
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008561 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008562
Ville Syrjäläa5805162015-05-26 20:42:30 +03008563 mutex_lock(&dev_priv->sb_lock);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008564
8565 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8566 tmp &= ~SBI_SSCCTL_DISABLE;
8567 tmp |= SBI_SSCCTL_PATHALT;
8568 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8569
8570 udelay(24);
8571
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008572 if (with_spread) {
8573 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8574 tmp &= ~SBI_SSCCTL_PATHALT;
8575 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03008576
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008577 if (with_fdi) {
8578 lpt_reset_fdi_mphy(dev_priv);
8579 lpt_program_fdi_mphy(dev_priv);
8580 }
8581 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02008582
Ville Syrjäläc2699522015-08-27 23:55:59 +03008583 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03008584 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8585 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8586 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01008587
Ville Syrjäläa5805162015-05-26 20:42:30 +03008588 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02008589}
8590
Paulo Zanoni47701c32013-07-23 11:19:25 -03008591/* Sequence to disable CLKOUT_DP */
8592static void lpt_disable_clkout_dp(struct drm_device *dev)
8593{
8594 struct drm_i915_private *dev_priv = dev->dev_private;
8595 uint32_t reg, tmp;
8596
Ville Syrjäläa5805162015-05-26 20:42:30 +03008597 mutex_lock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008598
Ville Syrjäläc2699522015-08-27 23:55:59 +03008599 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
Paulo Zanoni47701c32013-07-23 11:19:25 -03008600 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8601 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8602 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8603
8604 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8605 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8606 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8607 tmp |= SBI_SSCCTL_PATHALT;
8608 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8609 udelay(32);
8610 }
8611 tmp |= SBI_SSCCTL_DISABLE;
8612 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8613 }
8614
Ville Syrjäläa5805162015-05-26 20:42:30 +03008615 mutex_unlock(&dev_priv->sb_lock);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008616}
8617
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02008618#define BEND_IDX(steps) ((50 + (steps)) / 5)
8619
8620static const uint16_t sscdivintphase[] = {
8621 [BEND_IDX( 50)] = 0x3B23,
8622 [BEND_IDX( 45)] = 0x3B23,
8623 [BEND_IDX( 40)] = 0x3C23,
8624 [BEND_IDX( 35)] = 0x3C23,
8625 [BEND_IDX( 30)] = 0x3D23,
8626 [BEND_IDX( 25)] = 0x3D23,
8627 [BEND_IDX( 20)] = 0x3E23,
8628 [BEND_IDX( 15)] = 0x3E23,
8629 [BEND_IDX( 10)] = 0x3F23,
8630 [BEND_IDX( 5)] = 0x3F23,
8631 [BEND_IDX( 0)] = 0x0025,
8632 [BEND_IDX( -5)] = 0x0025,
8633 [BEND_IDX(-10)] = 0x0125,
8634 [BEND_IDX(-15)] = 0x0125,
8635 [BEND_IDX(-20)] = 0x0225,
8636 [BEND_IDX(-25)] = 0x0225,
8637 [BEND_IDX(-30)] = 0x0325,
8638 [BEND_IDX(-35)] = 0x0325,
8639 [BEND_IDX(-40)] = 0x0425,
8640 [BEND_IDX(-45)] = 0x0425,
8641 [BEND_IDX(-50)] = 0x0525,
8642};
8643
8644/*
8645 * Bend CLKOUT_DP
8646 * steps -50 to 50 inclusive, in steps of 5
8647 * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz)
8648 * change in clock period = -(steps / 10) * 5.787 ps
8649 */
8650static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps)
8651{
8652 uint32_t tmp;
8653 int idx = BEND_IDX(steps);
8654
8655 if (WARN_ON(steps % 5 != 0))
8656 return;
8657
8658 if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase)))
8659 return;
8660
8661 mutex_lock(&dev_priv->sb_lock);
8662
8663 if (steps % 10 != 0)
8664 tmp = 0xAAAAAAAB;
8665 else
8666 tmp = 0x00000000;
8667 intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK);
8668
8669 tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK);
8670 tmp &= 0xffff0000;
8671 tmp |= sscdivintphase[idx];
8672 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK);
8673
8674 mutex_unlock(&dev_priv->sb_lock);
8675}
8676
8677#undef BEND_IDX
8678
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008679static void lpt_init_pch_refclk(struct drm_device *dev)
8680{
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008681 struct intel_encoder *encoder;
8682 bool has_vga = false;
8683
Damien Lespiaub2784e12014-08-05 11:29:37 +01008684 for_each_intel_encoder(dev, encoder) {
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008685 switch (encoder->type) {
8686 case INTEL_OUTPUT_ANALOG:
8687 has_vga = true;
8688 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008689 default:
8690 break;
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008691 }
8692 }
8693
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02008694 if (has_vga) {
8695 lpt_bend_clkout_dp(to_i915(dev), 0);
Paulo Zanoni47701c32013-07-23 11:19:25 -03008696 lpt_enable_clkout_dp(dev, true, true);
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02008697 } else {
Paulo Zanoni47701c32013-07-23 11:19:25 -03008698 lpt_disable_clkout_dp(dev);
Ville Syrjäläf7be2c22015-12-04 22:19:39 +02008699 }
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03008700}
8701
Paulo Zanonidde86e22012-12-01 12:04:25 -02008702/*
8703 * Initialize reference clocks when the driver loads
8704 */
8705void intel_init_pch_refclk(struct drm_device *dev)
8706{
8707 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8708 ironlake_init_pch_refclk(dev);
8709 else if (HAS_PCH_LPT(dev))
8710 lpt_init_pch_refclk(dev);
8711}
8712
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008713static int ironlake_get_refclk(struct intel_crtc_state *crtc_state)
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008714{
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008715 struct drm_device *dev = crtc_state->base.crtc->dev;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008716 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008717 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008718 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008719 struct drm_connector_state *connector_state;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008720 struct intel_encoder *encoder;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008721 int num_connectors = 0, i;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008722 bool is_lvds = false;
8723
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008724 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008725 if (connector_state->crtc != crtc_state->base.crtc)
8726 continue;
8727
8728 encoder = to_intel_encoder(connector_state->best_encoder);
8729
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008730 switch (encoder->type) {
8731 case INTEL_OUTPUT_LVDS:
8732 is_lvds = true;
8733 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008734 default:
8735 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008736 }
8737 num_connectors++;
8738 }
8739
8740 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008741 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008742 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008743 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07008744 }
8745
8746 return 120000;
8747}
8748
Daniel Vetter6ff93602013-04-19 11:24:36 +02008749static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03008750{
8751 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
8752 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8753 int pipe = intel_crtc->pipe;
8754 uint32_t val;
8755
Daniel Vetter78114072013-06-13 00:54:57 +02008756 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03008757
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008758 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03008759 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008760 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008761 break;
8762 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008763 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008764 break;
8765 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008766 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008767 break;
8768 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01008769 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03008770 break;
8771 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03008772 /* Case prevented by intel_choose_pipe_bpp_dither. */
8773 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03008774 }
8775
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008776 if (intel_crtc->config->dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03008777 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8778
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008779 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03008780 val |= PIPECONF_INTERLACED_ILK;
8781 else
8782 val |= PIPECONF_PROGRESSIVE;
8783
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008784 if (intel_crtc->config->limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008785 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02008786
Paulo Zanonic8203562012-09-12 10:06:29 -03008787 I915_WRITE(PIPECONF(pipe), val);
8788 POSTING_READ(PIPECONF(pipe));
8789}
8790
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008791/*
8792 * Set up the pipe CSC unit.
8793 *
8794 * Currently only full range RGB to limited range RGB conversion
8795 * is supported, but eventually this should handle various
8796 * RGB<->YCbCr scenarios as well.
8797 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01008798static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008799{
8800 struct drm_device *dev = crtc->dev;
8801 struct drm_i915_private *dev_priv = dev->dev_private;
8802 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8803 int pipe = intel_crtc->pipe;
8804 uint16_t coeff = 0x7800; /* 1.0 */
8805
8806 /*
8807 * TODO: Check what kind of values actually come out of the pipe
8808 * with these coeff/postoff values and adjust to get the best
8809 * accuracy. Perhaps we even need to take the bpc value into
8810 * consideration.
8811 */
8812
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008813 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008814 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
8815
8816 /*
8817 * GY/GU and RY/RU should be the other way around according
8818 * to BSpec, but reality doesn't agree. Just set them up in
8819 * a way that results in the correct picture.
8820 */
8821 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
8822 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
8823
8824 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
8825 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
8826
8827 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
8828 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
8829
8830 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
8831 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
8832 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
8833
8834 if (INTEL_INFO(dev)->gen > 6) {
8835 uint16_t postoff = 0;
8836
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008837 if (intel_crtc->config->limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02008838 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008839
8840 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
8841 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
8842 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
8843
8844 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
8845 } else {
8846 uint32_t mode = CSC_MODE_YUV_TO_RGB;
8847
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008848 if (intel_crtc->config->limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02008849 mode |= CSC_BLACK_SCREEN_OFFSET;
8850
8851 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
8852 }
8853}
8854
Daniel Vetter6ff93602013-04-19 11:24:36 +02008855static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008856{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008857 struct drm_device *dev = crtc->dev;
8858 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008859 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008860 enum pipe pipe = intel_crtc->pipe;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008861 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008862 uint32_t val;
8863
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008864 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008865
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008866 if (IS_HASWELL(dev) && intel_crtc->config->dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008867 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8868
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008869 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008870 val |= PIPECONF_INTERLACED_ILK;
8871 else
8872 val |= PIPECONF_PROGRESSIVE;
8873
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008874 I915_WRITE(PIPECONF(cpu_transcoder), val);
8875 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02008876
8877 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
8878 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008879
Satheeshakrishna M3cdf122c2014-04-08 15:46:53 +05308880 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008881 val = 0;
8882
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008883 switch (intel_crtc->config->pipe_bpp) {
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008884 case 18:
8885 val |= PIPEMISC_DITHER_6_BPC;
8886 break;
8887 case 24:
8888 val |= PIPEMISC_DITHER_8_BPC;
8889 break;
8890 case 30:
8891 val |= PIPEMISC_DITHER_10_BPC;
8892 break;
8893 case 36:
8894 val |= PIPEMISC_DITHER_12_BPC;
8895 break;
8896 default:
8897 /* Case prevented by pipe_config_set_bpp. */
8898 BUG();
8899 }
8900
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02008901 if (intel_crtc->config->dither)
Paulo Zanoni756f85c2013-11-02 21:07:38 -07008902 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8903
8904 I915_WRITE(PIPEMISC(pipe), val);
8905 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03008906}
8907
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008908static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008909 struct intel_crtc_state *crtc_state,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008910 intel_clock_t *clock,
8911 bool *has_reduced_clock,
8912 intel_clock_t *reduced_clock)
8913{
8914 struct drm_device *dev = crtc->dev;
8915 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008916 int refclk;
8917 const intel_limit_t *limit;
Daniel Vetterc329a4e2015-06-18 10:30:23 +02008918 bool ret;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008919
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008920 refclk = ironlake_get_refclk(crtc_state);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008921
8922 /*
8923 * Returns a set of divisors for the desired target clock with the given
8924 * refclk, or FALSE. The returned values represent the clock equation:
8925 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
8926 */
Ander Conselvan de Oliveiraa93e2552015-03-20 16:18:17 +02008927 limit = intel_limit(crtc_state, refclk);
8928 ret = dev_priv->display.find_dpll(limit, crtc_state,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008929 crtc_state->port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02008930 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008931 if (!ret)
8932 return false;
8933
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03008934 return true;
8935}
8936
Paulo Zanonid4b19312012-11-29 11:29:32 -02008937int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
8938{
8939 /*
8940 * Account for spread spectrum to avoid
8941 * oversubscribing the link. Max center spread
8942 * is 2.5%; use 5% for safety's sake.
8943 */
8944 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02008945 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02008946}
8947
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008948static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02008949{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008950 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03008951}
8952
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008953static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008954 struct intel_crtc_state *crtc_state,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02008955 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02008956 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008957{
8958 struct drm_crtc *crtc = &intel_crtc->base;
8959 struct drm_device *dev = crtc->dev;
8960 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008961 struct drm_atomic_state *state = crtc_state->base.state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008962 struct drm_connector *connector;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008963 struct drm_connector_state *connector_state;
8964 struct intel_encoder *encoder;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008965 uint32_t dpll;
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008966 int factor, num_connectors = 0, i;
Daniel Vetter09ede542013-04-30 14:01:45 +02008967 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008968
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +03008969 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira55bb9992015-03-20 16:18:19 +02008970 if (connector_state->crtc != crtc_state->base.crtc)
8971 continue;
8972
8973 encoder = to_intel_encoder(connector_state->best_encoder);
8974
8975 switch (encoder->type) {
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008976 case INTEL_OUTPUT_LVDS:
8977 is_lvds = true;
8978 break;
8979 case INTEL_OUTPUT_SDVO:
8980 case INTEL_OUTPUT_HDMI:
8981 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008982 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02008983 default:
8984 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03008985 }
8986
8987 num_connectors++;
8988 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008989
Chris Wilsonc1858122010-12-03 21:35:48 +00008990 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07008991 factor = 21;
8992 if (is_lvds) {
8993 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008994 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02008995 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07008996 factor = 25;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02008997 } else if (crtc_state->sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07008998 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00008999
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009000 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02009001 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00009002
Daniel Vetter9a7c7892013-04-04 22:20:34 +02009003 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
9004 *fp2 |= FP_CB_TUNE;
9005
Chris Wilson5eddb702010-09-11 13:48:45 +01009006 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08009007
Eric Anholta07d6782011-03-30 13:01:08 -07009008 if (is_lvds)
9009 dpll |= DPLLB_MODE_LVDS;
9010 else
9011 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02009012
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009013 dpll |= (crtc_state->pixel_multiplier - 1)
Daniel Vetteref1b4602013-06-01 17:17:04 +02009014 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02009015
9016 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02009017 dpll |= DPLL_SDVO_HIGH_SPEED;
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009018 if (crtc_state->has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02009019 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08009020
Eric Anholta07d6782011-03-30 13:01:08 -07009021 /* compute bitmask from p1 value */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009022 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07009023 /* also FPA1 */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009024 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07009025
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009026 switch (crtc_state->dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07009027 case 5:
9028 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
9029 break;
9030 case 7:
9031 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
9032 break;
9033 case 10:
9034 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
9035 break;
9036 case 14:
9037 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
9038 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08009039 }
9040
Daniel Vetterb4c09f32013-04-30 14:01:42 +02009041 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05009042 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08009043 else
9044 dpll |= PLL_REF_INPUT_DREFCLK;
9045
Daniel Vetter959e16d2013-06-05 13:34:21 +02009046 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03009047}
9048
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009049static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
9050 struct intel_crtc_state *crtc_state)
Jesse Barnes79e53942008-11-07 14:24:08 -08009051{
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009052 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08009053 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02009054 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03009055 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01009056 bool is_lvds = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02009057 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08009058
Ander Conselvan de Oliveiradd3cd742015-05-15 13:34:29 +03009059 memset(&crtc_state->dpll_hw_state, 0,
9060 sizeof(crtc_state->dpll_hw_state));
9061
Ville Syrjälä7905df22015-11-25 16:35:30 +02009062 is_lvds = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS);
Jesse Barnes79e53942008-11-07 14:24:08 -08009063
Paulo Zanoni5dc52982012-10-05 12:05:56 -03009064 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
9065 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
9066
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009067 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03009068 &has_reduced_clock, &reduced_clock);
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009069 if (!ok && !crtc_state->clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08009070 DRM_ERROR("Couldn't find PLL settings for mode!\n");
9071 return -EINVAL;
9072 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01009073 /* Compat-code for transition, will disappear. */
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009074 if (!crtc_state->clock_set) {
9075 crtc_state->dpll.n = clock.n;
9076 crtc_state->dpll.m1 = clock.m1;
9077 crtc_state->dpll.m2 = clock.m2;
9078 crtc_state->dpll.p1 = clock.p1;
9079 crtc_state->dpll.p2 = clock.p2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01009080 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009081
Paulo Zanoni5dc52982012-10-05 12:05:56 -03009082 /* 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 +02009083 if (crtc_state->has_pch_encoder) {
9084 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02009085 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02009086 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02009087
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009088 dpll = ironlake_compute_dpll(crtc, crtc_state,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02009089 &fp, &reduced_clock,
9090 has_reduced_clock ? &fp2 : NULL);
9091
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009092 crtc_state->dpll_hw_state.dpll = dpll;
9093 crtc_state->dpll_hw_state.fp0 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02009094 if (has_reduced_clock)
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009095 crtc_state->dpll_hw_state.fp1 = fp2;
Daniel Vetter66e985c2013-06-05 13:34:20 +02009096 else
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009097 crtc_state->dpll_hw_state.fp1 = fp;
Daniel Vetter66e985c2013-06-05 13:34:20 +02009098
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009099 pll = intel_get_shared_dpll(crtc, crtc_state);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009100 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03009101 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009102 pipe_name(crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07009103 return -EINVAL;
9104 }
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +02009105 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009106
Rodrigo Viviab585de2015-03-24 12:40:09 -07009107 if (is_lvds && has_reduced_clock)
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009108 crtc->lowfreq_avail = true;
Daniel Vetterbcd644e2013-06-05 13:34:22 +02009109 else
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009110 crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02009111
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02009112 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009113}
9114
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009115static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
9116 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02009117{
9118 struct drm_device *dev = crtc->base.dev;
9119 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009120 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02009121
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009122 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
9123 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
9124 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
9125 & ~TU_SIZE_MASK;
9126 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
9127 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
9128 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9129}
9130
9131static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
9132 enum transcoder transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009133 struct intel_link_m_n *m_n,
9134 struct intel_link_m_n *m2_n2)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009135{
9136 struct drm_device *dev = crtc->base.dev;
9137 struct drm_i915_private *dev_priv = dev->dev_private;
9138 enum pipe pipe = crtc->pipe;
9139
9140 if (INTEL_INFO(dev)->gen >= 5) {
9141 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
9142 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
9143 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
9144 & ~TU_SIZE_MASK;
9145 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
9146 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
9147 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009148 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
9149 * gen < 8) and if DRRS is supported (to make sure the
9150 * registers are not unnecessarily read).
9151 */
9152 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02009153 crtc->config->has_drrs) {
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009154 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
9155 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
9156 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
9157 & ~TU_SIZE_MASK;
9158 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
9159 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
9160 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9161 }
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009162 } else {
9163 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
9164 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
9165 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
9166 & ~TU_SIZE_MASK;
9167 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
9168 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
9169 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9170 }
9171}
9172
9173void intel_dp_get_m_n(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009174 struct intel_crtc_state *pipe_config)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009175{
Ander Conselvan de Oliveira681a8502015-01-15 14:55:24 +02009176 if (pipe_config->has_pch_encoder)
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009177 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
9178 else
9179 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009180 &pipe_config->dp_m_n,
9181 &pipe_config->dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009182}
9183
Daniel Vetter72419202013-04-04 13:28:53 +02009184static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009185 struct intel_crtc_state *pipe_config)
Daniel Vetter72419202013-04-04 13:28:53 +02009186{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009187 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
Vandana Kannanb95af8b2014-08-05 07:51:23 -07009188 &pipe_config->fdi_m_n, NULL);
Daniel Vetter72419202013-04-04 13:28:53 +02009189}
9190
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009191static void skylake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009192 struct intel_crtc_state *pipe_config)
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009193{
9194 struct drm_device *dev = crtc->base.dev;
9195 struct drm_i915_private *dev_priv = dev->dev_private;
Chandra Kondurua1b22782015-04-07 15:28:45 -07009196 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9197 uint32_t ps_ctrl = 0;
9198 int id = -1;
9199 int i;
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009200
Chandra Kondurua1b22782015-04-07 15:28:45 -07009201 /* find scaler attached to this pipe */
9202 for (i = 0; i < crtc->num_scalers; i++) {
9203 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9204 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9205 id = i;
9206 pipe_config->pch_pfit.enabled = true;
9207 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9208 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9209 break;
9210 }
9211 }
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009212
Chandra Kondurua1b22782015-04-07 15:28:45 -07009213 scaler_state->scaler_id = id;
9214 if (id >= 0) {
9215 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9216 } else {
9217 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
Jesse Barnesbd2e2442014-11-13 17:51:47 +00009218 }
9219}
9220
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009221static void
9222skylake_get_initial_plane_config(struct intel_crtc *crtc,
9223 struct intel_initial_plane_config *plane_config)
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009224{
9225 struct drm_device *dev = crtc->base.dev;
9226 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau40f46282015-02-27 11:15:21 +00009227 u32 val, base, offset, stride_mult, tiling;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009228 int pipe = crtc->pipe;
9229 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009230 unsigned int aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009231 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009232 struct intel_framebuffer *intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009233
Damien Lespiaud9806c92015-01-21 14:07:19 +00009234 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009235 if (!intel_fb) {
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009236 DRM_DEBUG_KMS("failed to alloc fb\n");
9237 return;
9238 }
9239
Damien Lespiau1b842c82015-01-21 13:50:54 +00009240 fb = &intel_fb->base;
9241
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009242 val = I915_READ(PLANE_CTL(pipe, 0));
Damien Lespiau42a7b082015-02-05 19:35:13 +00009243 if (!(val & PLANE_CTL_ENABLE))
9244 goto error;
9245
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009246 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9247 fourcc = skl_format_to_fourcc(pixel_format,
9248 val & PLANE_CTL_ORDER_RGBX,
9249 val & PLANE_CTL_ALPHA_MASK);
9250 fb->pixel_format = fourcc;
9251 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9252
Damien Lespiau40f46282015-02-27 11:15:21 +00009253 tiling = val & PLANE_CTL_TILED_MASK;
9254 switch (tiling) {
9255 case PLANE_CTL_TILED_LINEAR:
9256 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9257 break;
9258 case PLANE_CTL_TILED_X:
9259 plane_config->tiling = I915_TILING_X;
9260 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9261 break;
9262 case PLANE_CTL_TILED_Y:
9263 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9264 break;
9265 case PLANE_CTL_TILED_YF:
9266 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9267 break;
9268 default:
9269 MISSING_CASE(tiling);
9270 goto error;
9271 }
9272
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009273 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9274 plane_config->base = base;
9275
9276 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9277
9278 val = I915_READ(PLANE_SIZE(pipe, 0));
9279 fb->height = ((val >> 16) & 0xfff) + 1;
9280 fb->width = ((val >> 0) & 0x1fff) + 1;
9281
9282 val = I915_READ(PLANE_STRIDE(pipe, 0));
Damien Lespiau40f46282015-02-27 11:15:21 +00009283 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
9284 fb->pixel_format);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009285 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9286
9287 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009288 fb->pixel_format,
9289 fb->modifier[0]);
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009290
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009291 plane_config->size = fb->pitches[0] * aligned_height;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009292
9293 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9294 pipe_name(pipe), fb->width, fb->height,
9295 fb->bits_per_pixel, base, fb->pitches[0],
9296 plane_config->size);
9297
Damien Lespiau2d140302015-02-05 17:22:18 +00009298 plane_config->fb = intel_fb;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +00009299 return;
9300
9301error:
9302 kfree(fb);
9303}
9304
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009305static void ironlake_get_pfit_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009306 struct intel_crtc_state *pipe_config)
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009307{
9308 struct drm_device *dev = crtc->base.dev;
9309 struct drm_i915_private *dev_priv = dev->dev_private;
9310 uint32_t tmp;
9311
9312 tmp = I915_READ(PF_CTL(crtc->pipe));
9313
9314 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009315 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009316 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9317 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02009318
9319 /* We currently do not free assignements of panel fitters on
9320 * ivb/hsw (since we don't use the higher upscaling modes which
9321 * differentiates them) so just WARN about this case for now. */
9322 if (IS_GEN7(dev)) {
9323 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9324 PF_PIPE_SEL_IVB(crtc->pipe));
9325 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009326 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009327}
9328
Damien Lespiau5724dbd2015-01-20 12:51:52 +00009329static void
9330ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9331 struct intel_initial_plane_config *plane_config)
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009332{
9333 struct drm_device *dev = crtc->base.dev;
9334 struct drm_i915_private *dev_priv = dev->dev_private;
9335 u32 val, base, offset;
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009336 int pipe = crtc->pipe;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009337 int fourcc, pixel_format;
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +00009338 unsigned int aligned_height;
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009339 struct drm_framebuffer *fb;
Damien Lespiau1b842c82015-01-21 13:50:54 +00009340 struct intel_framebuffer *intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009341
Damien Lespiau42a7b082015-02-05 19:35:13 +00009342 val = I915_READ(DSPCNTR(pipe));
9343 if (!(val & DISPLAY_PLANE_ENABLE))
9344 return;
9345
Damien Lespiaud9806c92015-01-21 14:07:19 +00009346 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Damien Lespiau1b842c82015-01-21 13:50:54 +00009347 if (!intel_fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009348 DRM_DEBUG_KMS("failed to alloc fb\n");
9349 return;
9350 }
9351
Damien Lespiau1b842c82015-01-21 13:50:54 +00009352 fb = &intel_fb->base;
9353
Daniel Vetter18c52472015-02-10 17:16:09 +00009354 if (INTEL_INFO(dev)->gen >= 4) {
9355 if (val & DISPPLANE_TILED) {
Damien Lespiau49af4492015-01-20 12:51:44 +00009356 plane_config->tiling = I915_TILING_X;
Daniel Vetter18c52472015-02-10 17:16:09 +00009357 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9358 }
9359 }
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009360
9361 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
Damien Lespiaub35d63f2015-01-20 12:51:50 +00009362 fourcc = i9xx_format_to_fourcc(pixel_format);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009363 fb->pixel_format = fourcc;
9364 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009365
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009366 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009367 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009368 offset = I915_READ(DSPOFFSET(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009369 } else {
Damien Lespiau49af4492015-01-20 12:51:44 +00009370 if (plane_config->tiling)
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009371 offset = I915_READ(DSPTILEOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009372 else
Damien Lespiauaeee5a42015-01-20 12:51:47 +00009373 offset = I915_READ(DSPLINOFF(pipe));
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009374 }
9375 plane_config->base = base;
9376
9377 val = I915_READ(PIPESRC(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009378 fb->width = ((val >> 16) & 0xfff) + 1;
9379 fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009380
9381 val = I915_READ(DSPSTRIDE(pipe));
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009382 fb->pitches[0] = val & 0xffffffc0;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009383
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009384 aligned_height = intel_fb_align_height(dev, fb->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +00009385 fb->pixel_format,
9386 fb->modifier[0]);
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009387
Daniel Vetterf37b5c22015-02-10 23:12:27 +01009388 plane_config->size = fb->pitches[0] * aligned_height;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009389
Damien Lespiau2844a922015-01-20 12:51:48 +00009390 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9391 pipe_name(pipe), fb->width, fb->height,
9392 fb->bits_per_pixel, base, fb->pitches[0],
9393 plane_config->size);
Damien Lespiaub113d5e2015-01-20 12:51:46 +00009394
Damien Lespiau2d140302015-02-05 17:22:18 +00009395 plane_config->fb = intel_fb;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08009396}
9397
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009398static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009399 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009400{
9401 struct drm_device *dev = crtc->base.dev;
9402 struct drm_i915_private *dev_priv = dev->dev_private;
9403 uint32_t tmp;
9404
Daniel Vetterf458ebb2014-09-30 10:56:39 +02009405 if (!intel_display_power_is_enabled(dev_priv,
9406 POWER_DOMAIN_PIPE(crtc->pipe)))
Paulo Zanoni930e8c92014-07-04 13:38:34 -03009407 return false;
9408
Daniel Vettere143a212013-07-04 12:01:15 +02009409 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009410 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02009411
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009412 tmp = I915_READ(PIPECONF(crtc->pipe));
9413 if (!(tmp & PIPECONF_ENABLE))
9414 return false;
9415
Ville Syrjälä42571ae2013-09-06 23:29:00 +03009416 switch (tmp & PIPECONF_BPC_MASK) {
9417 case PIPECONF_6BPC:
9418 pipe_config->pipe_bpp = 18;
9419 break;
9420 case PIPECONF_8BPC:
9421 pipe_config->pipe_bpp = 24;
9422 break;
9423 case PIPECONF_10BPC:
9424 pipe_config->pipe_bpp = 30;
9425 break;
9426 case PIPECONF_12BPC:
9427 pipe_config->pipe_bpp = 36;
9428 break;
9429 default:
9430 break;
9431 }
9432
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009433 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9434 pipe_config->limited_color_range = true;
9435
Daniel Vetterab9412b2013-05-03 11:49:46 +02009436 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02009437 struct intel_shared_dpll *pll;
9438
Daniel Vetter88adfff2013-03-28 10:42:01 +01009439 pipe_config->has_pch_encoder = true;
9440
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009441 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9442 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9443 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02009444
9445 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009446
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009447 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02009448 pipe_config->shared_dpll =
9449 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009450 } else {
9451 tmp = I915_READ(PCH_DPLL_SEL);
9452 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
9453 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
9454 else
9455 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
9456 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02009457
9458 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9459
9460 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9461 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009462
9463 tmp = pipe_config->dpll_hw_state.dpll;
9464 pipe_config->pixel_multiplier =
9465 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9466 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03009467
9468 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009469 } else {
9470 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009471 }
9472
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009473 intel_get_pipe_timings(crtc, pipe_config);
9474
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009475 ironlake_get_pfit_config(crtc, pipe_config);
9476
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009477 return true;
9478}
9479
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009480static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9481{
9482 struct drm_device *dev = dev_priv->dev;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009483 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009484
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009485 for_each_intel_crtc(dev, crtc)
Rob Clarke2c719b2014-12-15 13:56:32 -05009486 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009487 pipe_name(crtc->pipe));
9488
Rob Clarke2c719b2014-12-15 13:56:32 -05009489 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
9490 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
Ville Syrjälä01403de2015-09-18 20:03:33 +03009491 I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
9492 I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009493 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
9494 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009495 "CPU PWM1 enabled\n");
Paulo Zanonic5107b82014-07-04 11:50:30 -03009496 if (IS_HASWELL(dev))
Rob Clarke2c719b2014-12-15 13:56:32 -05009497 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
Paulo Zanonic5107b82014-07-04 11:50:30 -03009498 "CPU PWM2 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009499 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009500 "PCH PWM1 enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009501 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009502 "Utility pin enabled\n");
Rob Clarke2c719b2014-12-15 13:56:32 -05009503 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009504
Paulo Zanoni9926ada2014-04-01 19:39:47 -03009505 /*
9506 * In theory we can still leave IRQs enabled, as long as only the HPD
9507 * interrupts remain enabled. We used to check for that, but since it's
9508 * gen-specific and since we only disable LCPLL after we fully disable
9509 * the interrupts, the check below should be enough.
9510 */
Rob Clarke2c719b2014-12-15 13:56:32 -05009511 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009512}
9513
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009514static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
9515{
9516 struct drm_device *dev = dev_priv->dev;
9517
9518 if (IS_HASWELL(dev))
9519 return I915_READ(D_COMP_HSW);
9520 else
9521 return I915_READ(D_COMP_BDW);
9522}
9523
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009524static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
9525{
9526 struct drm_device *dev = dev_priv->dev;
9527
9528 if (IS_HASWELL(dev)) {
9529 mutex_lock(&dev_priv->rps.hw_lock);
9530 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
9531 val))
Paulo Zanonif475dad2014-07-04 11:59:57 -03009532 DRM_ERROR("Failed to write to D_COMP\n");
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009533 mutex_unlock(&dev_priv->rps.hw_lock);
9534 } else {
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009535 I915_WRITE(D_COMP_BDW, val);
9536 POSTING_READ(D_COMP_BDW);
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009537 }
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009538}
9539
9540/*
9541 * This function implements pieces of two sequences from BSpec:
9542 * - Sequence for display software to disable LCPLL
9543 * - Sequence for display software to allow package C8+
9544 * The steps implemented here are just the steps that actually touch the LCPLL
9545 * register. Callers should take care of disabling all the display engine
9546 * functions, doing the mode unset, fixing interrupts, etc.
9547 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009548static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9549 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009550{
9551 uint32_t val;
9552
9553 assert_can_disable_lcpll(dev_priv);
9554
9555 val = I915_READ(LCPLL_CTL);
9556
9557 if (switch_to_fclk) {
9558 val |= LCPLL_CD_SOURCE_FCLK;
9559 I915_WRITE(LCPLL_CTL, val);
9560
9561 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9562 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9563 DRM_ERROR("Switching to FCLK failed\n");
9564
9565 val = I915_READ(LCPLL_CTL);
9566 }
9567
9568 val |= LCPLL_PLL_DISABLE;
9569 I915_WRITE(LCPLL_CTL, val);
9570 POSTING_READ(LCPLL_CTL);
9571
9572 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
9573 DRM_ERROR("LCPLL still locked\n");
9574
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009575 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009576 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009577 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009578 ndelay(100);
9579
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009580 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9581 1))
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009582 DRM_ERROR("D_COMP RCOMP still in progress\n");
9583
9584 if (allow_power_down) {
9585 val = I915_READ(LCPLL_CTL);
9586 val |= LCPLL_POWER_DOWN_ALLOW;
9587 I915_WRITE(LCPLL_CTL, val);
9588 POSTING_READ(LCPLL_CTL);
9589 }
9590}
9591
9592/*
9593 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9594 * source.
9595 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03009596static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009597{
9598 uint32_t val;
9599
9600 val = I915_READ(LCPLL_CTL);
9601
9602 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9603 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9604 return;
9605
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009606 /*
9607 * Make sure we're not on PC8 state before disabling PC8, otherwise
9608 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03009609 */
Mika Kuoppala59bad942015-01-16 11:34:40 +02009610 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Paulo Zanoni215733f2013-08-19 13:18:07 -03009611
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009612 if (val & LCPLL_POWER_DOWN_ALLOW) {
9613 val &= ~LCPLL_POWER_DOWN_ALLOW;
9614 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02009615 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009616 }
9617
Paulo Zanoni9ccd5ae2014-07-04 11:59:58 -03009618 val = hsw_read_dcomp(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009619 val |= D_COMP_COMP_FORCE;
9620 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03009621 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009622
9623 val = I915_READ(LCPLL_CTL);
9624 val &= ~LCPLL_PLL_DISABLE;
9625 I915_WRITE(LCPLL_CTL, val);
9626
9627 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
9628 DRM_ERROR("LCPLL not locked yet\n");
9629
9630 if (val & LCPLL_CD_SOURCE_FCLK) {
9631 val = I915_READ(LCPLL_CTL);
9632 val &= ~LCPLL_CD_SOURCE_FCLK;
9633 I915_WRITE(LCPLL_CTL, val);
9634
9635 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9636 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9637 DRM_ERROR("Switching back to LCPLL failed\n");
9638 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03009639
Mika Kuoppala59bad942015-01-16 11:34:40 +02009640 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ville Syrjäläb6283052015-06-03 15:45:07 +03009641 intel_update_cdclk(dev_priv->dev);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03009642}
9643
Paulo Zanoni765dab672014-03-07 20:08:18 -03009644/*
9645 * Package states C8 and deeper are really deep PC states that can only be
9646 * reached when all the devices on the system allow it, so even if the graphics
9647 * device allows PC8+, it doesn't mean the system will actually get to these
9648 * states. Our driver only allows PC8+ when going into runtime PM.
9649 *
9650 * The requirements for PC8+ are that all the outputs are disabled, the power
9651 * well is disabled and most interrupts are disabled, and these are also
9652 * requirements for runtime PM. When these conditions are met, we manually do
9653 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9654 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9655 * hang the machine.
9656 *
9657 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9658 * the state of some registers, so when we come back from PC8+ we need to
9659 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9660 * need to take care of the registers kept by RC6. Notice that this happens even
9661 * if we don't put the device in PCI D3 state (which is what currently happens
9662 * because of the runtime PM support).
9663 *
9664 * For more, read "Display Sequences for Package C8" on the hardware
9665 * documentation.
9666 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009667void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009668{
Paulo Zanonic67a4702013-08-19 13:18:09 -03009669 struct drm_device *dev = dev_priv->dev;
9670 uint32_t val;
9671
Paulo Zanonic67a4702013-08-19 13:18:09 -03009672 DRM_DEBUG_KMS("Enabling package C8+\n");
9673
Ville Syrjäläc2699522015-08-27 23:55:59 +03009674 if (HAS_PCH_LPT_LP(dev)) {
Paulo Zanonic67a4702013-08-19 13:18:09 -03009675 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9676 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9677 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9678 }
9679
9680 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009681 hsw_disable_lcpll(dev_priv, true, true);
9682}
9683
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03009684void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03009685{
9686 struct drm_device *dev = dev_priv->dev;
9687 uint32_t val;
9688
Paulo Zanonic67a4702013-08-19 13:18:09 -03009689 DRM_DEBUG_KMS("Disabling package C8+\n");
9690
9691 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009692 lpt_init_pch_refclk(dev);
9693
Ville Syrjäläc2699522015-08-27 23:55:59 +03009694 if (HAS_PCH_LPT_LP(dev)) {
Paulo Zanonic67a4702013-08-19 13:18:09 -03009695 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9696 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
9697 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9698 }
9699
9700 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03009701}
9702
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009703static void broxton_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309704{
Ander Conselvan de Oliveiraa821fc42015-04-21 17:13:23 +03009705 struct drm_device *dev = old_state->dev;
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01009706 struct intel_atomic_state *old_intel_state =
9707 to_intel_atomic_state(old_state);
9708 unsigned int req_cdclk = old_intel_state->dev_cdclk;
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309709
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009710 broxton_set_cdclk(dev, req_cdclk);
Vandana Kannanf8437dd12014-11-24 13:37:39 +05309711}
9712
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009713/* compute the max rate for new configuration */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009714static int ilk_max_pixel_rate(struct drm_atomic_state *state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009715{
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009716 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
9717 struct drm_i915_private *dev_priv = state->dev->dev_private;
9718 struct drm_crtc *crtc;
9719 struct drm_crtc_state *cstate;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009720 struct intel_crtc_state *crtc_state;
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009721 unsigned max_pixel_rate = 0, i;
9722 enum pipe pipe;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009723
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009724 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
9725 sizeof(intel_state->min_pixclk));
9726
9727 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009728 int pixel_rate;
9729
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009730 crtc_state = to_intel_crtc_state(cstate);
9731 if (!crtc_state->base.enable) {
9732 intel_state->min_pixclk[i] = 0;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009733 continue;
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009734 }
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009735
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009736 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009737
9738 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009739 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009740 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
9741
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009742 intel_state->min_pixclk[i] = pixel_rate;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009743 }
9744
Maarten Lankhorst565602d2015-12-10 12:33:57 +01009745 if (!intel_state->active_crtcs)
9746 return 0;
9747
9748 for_each_pipe(dev_priv, pipe)
9749 max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate);
9750
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009751 return max_pixel_rate;
9752}
9753
9754static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
9755{
9756 struct drm_i915_private *dev_priv = dev->dev_private;
9757 uint32_t val, data;
9758 int ret;
9759
9760 if (WARN((I915_READ(LCPLL_CTL) &
9761 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
9762 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
9763 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
9764 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
9765 "trying to change cdclk frequency with cdclk not enabled\n"))
9766 return;
9767
9768 mutex_lock(&dev_priv->rps.hw_lock);
9769 ret = sandybridge_pcode_write(dev_priv,
9770 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
9771 mutex_unlock(&dev_priv->rps.hw_lock);
9772 if (ret) {
9773 DRM_ERROR("failed to inform pcode about cdclk change\n");
9774 return;
9775 }
9776
9777 val = I915_READ(LCPLL_CTL);
9778 val |= LCPLL_CD_SOURCE_FCLK;
9779 I915_WRITE(LCPLL_CTL, val);
9780
9781 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9782 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9783 DRM_ERROR("Switching to FCLK failed\n");
9784
9785 val = I915_READ(LCPLL_CTL);
9786 val &= ~LCPLL_CLK_FREQ_MASK;
9787
9788 switch (cdclk) {
9789 case 450000:
9790 val |= LCPLL_CLK_FREQ_450;
9791 data = 0;
9792 break;
9793 case 540000:
9794 val |= LCPLL_CLK_FREQ_54O_BDW;
9795 data = 1;
9796 break;
9797 case 337500:
9798 val |= LCPLL_CLK_FREQ_337_5_BDW;
9799 data = 2;
9800 break;
9801 case 675000:
9802 val |= LCPLL_CLK_FREQ_675_BDW;
9803 data = 3;
9804 break;
9805 default:
9806 WARN(1, "invalid cdclk frequency\n");
9807 return;
9808 }
9809
9810 I915_WRITE(LCPLL_CTL, val);
9811
9812 val = I915_READ(LCPLL_CTL);
9813 val &= ~LCPLL_CD_SOURCE_FCLK;
9814 I915_WRITE(LCPLL_CTL, val);
9815
9816 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9817 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9818 DRM_ERROR("Switching back to LCPLL failed\n");
9819
9820 mutex_lock(&dev_priv->rps.hw_lock);
9821 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
9822 mutex_unlock(&dev_priv->rps.hw_lock);
9823
9824 intel_update_cdclk(dev);
9825
9826 WARN(cdclk != dev_priv->cdclk_freq,
9827 "cdclk requested %d kHz but got %d kHz\n",
9828 cdclk, dev_priv->cdclk_freq);
9829}
9830
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009831static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009832{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009833 struct drm_i915_private *dev_priv = to_i915(state->dev);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01009834 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009835 int max_pixclk = ilk_max_pixel_rate(state);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009836 int cdclk;
9837
9838 /*
9839 * FIXME should also account for plane ratio
9840 * once 64bpp pixel formats are supported.
9841 */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009842 if (max_pixclk > 540000)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009843 cdclk = 675000;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009844 else if (max_pixclk > 450000)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009845 cdclk = 540000;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009846 else if (max_pixclk > 337500)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009847 cdclk = 450000;
9848 else
9849 cdclk = 337500;
9850
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009851 if (cdclk > dev_priv->max_cdclk_freq) {
Maarten Lankhorst63ba5342015-11-24 11:29:03 +01009852 DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9853 cdclk, dev_priv->max_cdclk_freq);
9854 return -EINVAL;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009855 }
9856
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01009857 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
9858 if (!intel_state->active_crtcs)
9859 intel_state->dev_cdclk = 337500;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009860
9861 return 0;
9862}
9863
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009864static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009865{
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009866 struct drm_device *dev = old_state->dev;
Maarten Lankhorst1a617b72015-12-03 14:31:06 +01009867 struct intel_atomic_state *old_intel_state =
9868 to_intel_atomic_state(old_state);
9869 unsigned req_cdclk = old_intel_state->dev_cdclk;
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009870
Maarten Lankhorst27c329e2015-06-15 12:33:56 +02009871 broadwell_set_cdclk(dev, req_cdclk);
Ville Syrjäläb432e5c2015-06-03 15:45:13 +03009872}
9873
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009874static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9875 struct intel_crtc_state *crtc_state)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03009876{
Ander Conselvan de Oliveira190f68c2015-01-15 14:55:23 +02009877 if (!intel_ddi_pll_select(crtc, crtc_state))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03009878 return -EINVAL;
Daniel Vetter716c2e52014-06-25 22:02:02 +03009879
Ander Conselvan de Oliveirac7653192014-10-20 13:46:44 +03009880 crtc->lowfreq_avail = false;
Daniel Vetter644cef32014-04-24 23:55:07 +02009881
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02009882 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009883}
9884
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309885static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9886 enum port port,
9887 struct intel_crtc_state *pipe_config)
9888{
9889 switch (port) {
9890 case PORT_A:
9891 pipe_config->ddi_pll_sel = SKL_DPLL0;
9892 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9893 break;
9894 case PORT_B:
9895 pipe_config->ddi_pll_sel = SKL_DPLL1;
9896 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9897 break;
9898 case PORT_C:
9899 pipe_config->ddi_pll_sel = SKL_DPLL2;
9900 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9901 break;
9902 default:
9903 DRM_ERROR("Incorrect port type\n");
9904 }
9905}
9906
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009907static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9908 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009909 struct intel_crtc_state *pipe_config)
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009910{
Damien Lespiau3148ade2014-11-21 16:14:56 +00009911 u32 temp, dpll_ctl1;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009912
9913 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9914 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9915
9916 switch (pipe_config->ddi_pll_sel) {
Damien Lespiau3148ade2014-11-21 16:14:56 +00009917 case SKL_DPLL0:
9918 /*
9919 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
9920 * of the shared DPLL framework and thus needs to be read out
9921 * separately
9922 */
9923 dpll_ctl1 = I915_READ(DPLL_CTRL1);
9924 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
9925 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009926 case SKL_DPLL1:
9927 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9928 break;
9929 case SKL_DPLL2:
9930 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9931 break;
9932 case SKL_DPLL3:
9933 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9934 break;
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009935 }
9936}
9937
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009938static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9939 enum port port,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009940 struct intel_crtc_state *pipe_config)
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009941{
9942 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9943
9944 switch (pipe_config->ddi_pll_sel) {
9945 case PORT_CLK_SEL_WRPLL1:
9946 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
9947 break;
9948 case PORT_CLK_SEL_WRPLL2:
9949 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
9950 break;
Maarten Lankhorst00490c22015-11-16 14:42:12 +01009951 case PORT_CLK_SEL_SPLL:
9952 pipe_config->shared_dpll = DPLL_ID_SPLL;
Ville Syrjälä79bd23d2015-12-01 23:32:07 +02009953 break;
Damien Lespiau7d2c8172014-07-29 18:06:18 +01009954 }
9955}
9956
Daniel Vetter26804af2014-06-25 22:01:55 +03009957static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02009958 struct intel_crtc_state *pipe_config)
Daniel Vetter26804af2014-06-25 22:01:55 +03009959{
9960 struct drm_device *dev = crtc->base.dev;
9961 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009962 struct intel_shared_dpll *pll;
Daniel Vetter26804af2014-06-25 22:01:55 +03009963 enum port port;
9964 uint32_t tmp;
9965
9966 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
9967
9968 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
9969
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07009970 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009971 skylake_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M3760b592014-08-22 09:49:11 +05309972 else if (IS_BROXTON(dev))
9973 bxt_get_ddi_pll(dev_priv, port, pipe_config);
Satheeshakrishna M96b7dfb2014-11-13 14:55:17 +00009974 else
9975 haswell_get_ddi_pll(dev_priv, port, pipe_config);
Daniel Vetter9cd86932014-06-25 22:01:57 +03009976
Daniel Vetterd452c5b2014-07-04 11:27:39 -03009977 if (pipe_config->shared_dpll >= 0) {
9978 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9979
9980 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9981 &pipe_config->dpll_hw_state));
9982 }
9983
Daniel Vetter26804af2014-06-25 22:01:55 +03009984 /*
9985 * Haswell has only FDI/PCH transcoder A. It is which is connected to
9986 * DDI E. So just check whether this pipe is wired to DDI E and whether
9987 * the PCH transcoder is on.
9988 */
Damien Lespiauca370452013-12-03 13:56:24 +00009989 if (INTEL_INFO(dev)->gen < 9 &&
9990 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter26804af2014-06-25 22:01:55 +03009991 pipe_config->has_pch_encoder = true;
9992
9993 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
9994 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9995 FDI_DP_PORT_WIDTH_SHIFT) + 1;
9996
9997 ironlake_get_fdi_m_n_config(crtc, pipe_config);
9998 }
9999}
10000
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010001static bool haswell_get_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010002 struct intel_crtc_state *pipe_config)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010003{
10004 struct drm_device *dev = crtc->base.dev;
10005 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010006 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010007 uint32_t tmp;
10008
Daniel Vetterf458ebb2014-09-30 10:56:39 +020010009 if (!intel_display_power_is_enabled(dev_priv,
Imre Deakb5482bd2014-03-05 16:20:55 +020010010 POWER_DOMAIN_PIPE(crtc->pipe)))
10011 return false;
10012
Daniel Vettere143a212013-07-04 12:01:15 +020010013 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010014 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
10015
Daniel Vettereccb1402013-05-22 00:50:22 +020010016 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
10017 if (tmp & TRANS_DDI_FUNC_ENABLE) {
10018 enum pipe trans_edp_pipe;
10019 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
10020 default:
10021 WARN(1, "unknown pipe linked to edp transcoder\n");
10022 case TRANS_DDI_EDP_INPUT_A_ONOFF:
10023 case TRANS_DDI_EDP_INPUT_A_ON:
10024 trans_edp_pipe = PIPE_A;
10025 break;
10026 case TRANS_DDI_EDP_INPUT_B_ONOFF:
10027 trans_edp_pipe = PIPE_B;
10028 break;
10029 case TRANS_DDI_EDP_INPUT_C_ONOFF:
10030 trans_edp_pipe = PIPE_C;
10031 break;
10032 }
10033
10034 if (trans_edp_pipe == crtc->pipe)
10035 pipe_config->cpu_transcoder = TRANSCODER_EDP;
10036 }
10037
Daniel Vetterf458ebb2014-09-30 10:56:39 +020010038 if (!intel_display_power_is_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +020010039 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -030010040 return false;
10041
Daniel Vettereccb1402013-05-22 00:50:22 +020010042 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010043 if (!(tmp & PIPECONF_ENABLE))
10044 return false;
10045
Daniel Vetter26804af2014-06-25 22:01:55 +030010046 haswell_get_ddi_port_state(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010047
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010048 intel_get_pipe_timings(crtc, pipe_config);
10049
Chandra Kondurua1b22782015-04-07 15:28:45 -070010050 if (INTEL_INFO(dev)->gen >= 9) {
10051 skl_init_scalers(dev, crtc, pipe_config);
10052 }
10053
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010054 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Chandra Konduruaf99ced2015-05-11 14:35:47 -070010055
10056 if (INTEL_INFO(dev)->gen >= 9) {
10057 pipe_config->scaler_state.scaler_id = -1;
10058 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
10059 }
10060
Jesse Barnesbd2e2442014-11-13 17:51:47 +000010061 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
Rodrigo Vivi1c132b42015-09-02 15:19:26 -070010062 if (INTEL_INFO(dev)->gen >= 9)
Jesse Barnesbd2e2442014-11-13 17:51:47 +000010063 skylake_get_pfit_config(crtc, pipe_config);
Jesse Barnesff6d9f52015-01-21 17:19:54 -080010064 else
Rodrigo Vivi1c132b42015-09-02 15:19:26 -070010065 ironlake_get_pfit_config(crtc, pipe_config);
Jesse Barnesbd2e2442014-11-13 17:51:47 +000010066 }
Daniel Vetter88adfff2013-03-28 10:42:01 +010010067
Jesse Barnese59150d2014-01-07 13:30:45 -080010068 if (IS_HASWELL(dev))
10069 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
10070 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010071
Clint Taylorebb69c92014-09-30 10:30:22 -070010072 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
10073 pipe_config->pixel_multiplier =
10074 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
10075 } else {
10076 pipe_config->pixel_multiplier = 1;
10077 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010078
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010079 return true;
10080}
10081
Ville Syrjälä663f3122015-12-14 13:16:48 +020010082static void i845_update_cursor(struct drm_crtc *crtc, u32 base, bool on)
Chris Wilson560b85b2010-08-07 11:01:38 +010010083{
10084 struct drm_device *dev = crtc->dev;
10085 struct drm_i915_private *dev_priv = dev->dev_private;
10086 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälädc41c152014-08-13 11:57:05 +030010087 uint32_t cntl = 0, size = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +010010088
Ville Syrjälä663f3122015-12-14 13:16:48 +020010089 if (on) {
Matt Roper3dd512f2015-02-27 10:12:00 -080010090 unsigned int width = intel_crtc->base.cursor->state->crtc_w;
10091 unsigned int height = intel_crtc->base.cursor->state->crtc_h;
Ville Syrjälädc41c152014-08-13 11:57:05 +030010092 unsigned int stride = roundup_pow_of_two(width) * 4;
10093
10094 switch (stride) {
10095 default:
10096 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
10097 width, stride);
10098 stride = 256;
10099 /* fallthrough */
10100 case 256:
10101 case 512:
10102 case 1024:
10103 case 2048:
10104 break;
Chris Wilson4b0e3332014-05-30 16:35:26 +030010105 }
10106
Ville Syrjälädc41c152014-08-13 11:57:05 +030010107 cntl |= CURSOR_ENABLE |
10108 CURSOR_GAMMA_ENABLE |
10109 CURSOR_FORMAT_ARGB |
10110 CURSOR_STRIDE(stride);
10111
10112 size = (height << 12) | width;
Chris Wilson4b0e3332014-05-30 16:35:26 +030010113 }
Chris Wilson560b85b2010-08-07 11:01:38 +010010114
Ville Syrjälädc41c152014-08-13 11:57:05 +030010115 if (intel_crtc->cursor_cntl != 0 &&
10116 (intel_crtc->cursor_base != base ||
10117 intel_crtc->cursor_size != size ||
10118 intel_crtc->cursor_cntl != cntl)) {
10119 /* On these chipsets we can only modify the base/size/stride
10120 * whilst the cursor is disabled.
10121 */
Ville Syrjälä0b87c242015-09-22 19:47:51 +030010122 I915_WRITE(CURCNTR(PIPE_A), 0);
10123 POSTING_READ(CURCNTR(PIPE_A));
Ville Syrjälädc41c152014-08-13 11:57:05 +030010124 intel_crtc->cursor_cntl = 0;
10125 }
10126
Ville Syrjälä99d1f382014-09-12 20:53:32 +030010127 if (intel_crtc->cursor_base != base) {
Ville Syrjälä0b87c242015-09-22 19:47:51 +030010128 I915_WRITE(CURBASE(PIPE_A), base);
Ville Syrjälä99d1f382014-09-12 20:53:32 +030010129 intel_crtc->cursor_base = base;
10130 }
Ville Syrjälädc41c152014-08-13 11:57:05 +030010131
10132 if (intel_crtc->cursor_size != size) {
10133 I915_WRITE(CURSIZE, size);
10134 intel_crtc->cursor_size = size;
10135 }
10136
Chris Wilson4b0e3332014-05-30 16:35:26 +030010137 if (intel_crtc->cursor_cntl != cntl) {
Ville Syrjälä0b87c242015-09-22 19:47:51 +030010138 I915_WRITE(CURCNTR(PIPE_A), cntl);
10139 POSTING_READ(CURCNTR(PIPE_A));
Chris Wilson4b0e3332014-05-30 16:35:26 +030010140 intel_crtc->cursor_cntl = cntl;
10141 }
Chris Wilson560b85b2010-08-07 11:01:38 +010010142}
10143
Ville Syrjälä663f3122015-12-14 13:16:48 +020010144static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base, bool on)
Chris Wilson560b85b2010-08-07 11:01:38 +010010145{
10146 struct drm_device *dev = crtc->dev;
10147 struct drm_i915_private *dev_priv = dev->dev_private;
10148 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10149 int pipe = intel_crtc->pipe;
Ville Syrjälä663f3122015-12-14 13:16:48 +020010150 uint32_t cntl = 0;
Chris Wilson560b85b2010-08-07 11:01:38 +010010151
Ville Syrjälä663f3122015-12-14 13:16:48 +020010152 if (on) {
Chris Wilson4b0e3332014-05-30 16:35:26 +030010153 cntl = MCURSOR_GAMMA_ENABLE;
Matt Roper3dd512f2015-02-27 10:12:00 -080010154 switch (intel_crtc->base.cursor->state->crtc_w) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +053010155 case 64:
10156 cntl |= CURSOR_MODE_64_ARGB_AX;
10157 break;
10158 case 128:
10159 cntl |= CURSOR_MODE_128_ARGB_AX;
10160 break;
10161 case 256:
10162 cntl |= CURSOR_MODE_256_ARGB_AX;
10163 break;
10164 default:
Matt Roper3dd512f2015-02-27 10:12:00 -080010165 MISSING_CASE(intel_crtc->base.cursor->state->crtc_w);
Sagar Kamble4726e0b2014-03-10 17:06:23 +053010166 return;
Chris Wilson560b85b2010-08-07 11:01:38 +010010167 }
Chris Wilson4b0e3332014-05-30 16:35:26 +030010168 cntl |= pipe << 28; /* Connect to correct pipe */
Ville Syrjälä47bf17a2014-09-12 20:53:33 +030010169
Bob Paauwefc6f93b2015-08-31 14:03:30 -070010170 if (HAS_DDI(dev))
Ville Syrjälä47bf17a2014-09-12 20:53:33 +030010171 cntl |= CURSOR_PIPE_CSC_ENABLE;
Chris Wilson560b85b2010-08-07 11:01:38 +010010172 }
Chris Wilson4b0e3332014-05-30 16:35:26 +030010173
Matt Roper8e7d6882015-01-21 16:35:41 -080010174 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010175 cntl |= CURSOR_ROTATE_180;
10176
Chris Wilson4b0e3332014-05-30 16:35:26 +030010177 if (intel_crtc->cursor_cntl != cntl) {
10178 I915_WRITE(CURCNTR(pipe), cntl);
10179 POSTING_READ(CURCNTR(pipe));
10180 intel_crtc->cursor_cntl = cntl;
10181 }
10182
Jesse Barnes65a21cd2011-10-12 11:10:21 -070010183 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010184 I915_WRITE(CURBASE(pipe), base);
10185 POSTING_READ(CURBASE(pipe));
Ville Syrjälä99d1f382014-09-12 20:53:32 +030010186
10187 intel_crtc->cursor_base = base;
Jesse Barnes65a21cd2011-10-12 11:10:21 -070010188}
10189
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010190/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +010010191static void intel_crtc_update_cursor(struct drm_crtc *crtc,
10192 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010193{
10194 struct drm_device *dev = crtc->dev;
10195 struct drm_i915_private *dev_priv = dev->dev_private;
10196 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10197 int pipe = intel_crtc->pipe;
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010198 struct drm_plane_state *cursor_state = crtc->cursor->state;
10199 int x = cursor_state->crtc_x;
10200 int y = cursor_state->crtc_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +030010201 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010202
Ville Syrjälä663f3122015-12-14 13:16:48 +020010203 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010204
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010205 if (x >= intel_crtc->config->pipe_src_w)
Ville Syrjälä663f3122015-12-14 13:16:48 +020010206 on = false;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +030010207
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010208 if (y >= intel_crtc->config->pipe_src_h)
Ville Syrjälä663f3122015-12-14 13:16:48 +020010209 on = false;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010210
10211 if (x < 0) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010212 if (x + cursor_state->crtc_w <= 0)
Ville Syrjälä663f3122015-12-14 13:16:48 +020010213 on = false;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010214
10215 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10216 x = -x;
10217 }
10218 pos |= x << CURSOR_X_SHIFT;
10219
10220 if (y < 0) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010221 if (y + cursor_state->crtc_h <= 0)
Ville Syrjälä663f3122015-12-14 13:16:48 +020010222 on = false;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010223
10224 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10225 y = -y;
10226 }
10227 pos |= y << CURSOR_Y_SHIFT;
10228
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010229 I915_WRITE(CURPOS(pipe), pos);
10230
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010231 /* ILK+ do this automagically */
10232 if (HAS_GMCH_DISPLAY(dev) &&
Matt Roper8e7d6882015-01-21 16:35:41 -080010233 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
Maarten Lankhorst9b4101b2015-09-10 16:07:59 +020010234 base += (cursor_state->crtc_h *
10235 cursor_state->crtc_w - 1) * 4;
Ville Syrjälä4398ad42014-10-23 07:41:34 -070010236 }
10237
Ville Syrjälä8ac54662014-08-12 19:39:54 +030010238 if (IS_845G(dev) || IS_I865G(dev))
Ville Syrjälä663f3122015-12-14 13:16:48 +020010239 i845_update_cursor(crtc, base, on);
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030010240 else
Ville Syrjälä663f3122015-12-14 13:16:48 +020010241 i9xx_update_cursor(crtc, base, on);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +010010242}
10243
Ville Syrjälädc41c152014-08-13 11:57:05 +030010244static bool cursor_size_ok(struct drm_device *dev,
10245 uint32_t width, uint32_t height)
10246{
10247 if (width == 0 || height == 0)
10248 return false;
10249
10250 /*
10251 * 845g/865g are special in that they are only limited by
10252 * the width of their cursors, the height is arbitrary up to
10253 * the precision of the register. Everything else requires
10254 * square cursors, limited to a few power-of-two sizes.
10255 */
10256 if (IS_845G(dev) || IS_I865G(dev)) {
10257 if ((width & 63) != 0)
10258 return false;
10259
10260 if (width > (IS_845G(dev) ? 64 : 512))
10261 return false;
10262
10263 if (height > 1023)
10264 return false;
10265 } else {
10266 switch (width | height) {
10267 case 256:
10268 case 128:
10269 if (IS_GEN2(dev))
10270 return false;
10271 case 64:
10272 break;
10273 default:
10274 return false;
10275 }
10276 }
10277
10278 return true;
10279}
10280
Jesse Barnes79e53942008-11-07 14:24:08 -080010281static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +010010282 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -080010283{
James Simmons72034252010-08-03 01:33:19 +010010284 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -080010285 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080010286
James Simmons72034252010-08-03 01:33:19 +010010287 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -080010288 intel_crtc->lut_r[i] = red[i] >> 8;
10289 intel_crtc->lut_g[i] = green[i] >> 8;
10290 intel_crtc->lut_b[i] = blue[i] >> 8;
10291 }
10292
10293 intel_crtc_load_lut(crtc);
10294}
10295
Jesse Barnes79e53942008-11-07 14:24:08 -080010296/* VESA 640x480x72Hz mode to set on the pipe */
10297static struct drm_display_mode load_detect_mode = {
10298 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10299 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10300};
10301
Daniel Vettera8bb6812014-02-10 18:00:39 +010010302struct drm_framebuffer *
10303__intel_framebuffer_create(struct drm_device *dev,
10304 struct drm_mode_fb_cmd2 *mode_cmd,
10305 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +010010306{
10307 struct intel_framebuffer *intel_fb;
10308 int ret;
10309
10310 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
Lukas Wunnerdcb13942015-07-04 11:50:58 +020010311 if (!intel_fb)
Chris Wilsond2dff872011-04-19 08:36:26 +010010312 return ERR_PTR(-ENOMEM);
Chris Wilsond2dff872011-04-19 08:36:26 +010010313
10314 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010315 if (ret)
10316 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +010010317
10318 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010319
Lukas Wunnerdcb13942015-07-04 11:50:58 +020010320err:
10321 kfree(intel_fb);
Daniel Vetterdd4916c2013-10-09 21:23:51 +020010322 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +010010323}
10324
Daniel Vetterb5ea6422014-03-02 21:18:00 +010010325static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +010010326intel_framebuffer_create(struct drm_device *dev,
10327 struct drm_mode_fb_cmd2 *mode_cmd,
10328 struct drm_i915_gem_object *obj)
10329{
10330 struct drm_framebuffer *fb;
10331 int ret;
10332
10333 ret = i915_mutex_lock_interruptible(dev);
10334 if (ret)
10335 return ERR_PTR(ret);
10336 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10337 mutex_unlock(&dev->struct_mutex);
10338
10339 return fb;
10340}
10341
Chris Wilsond2dff872011-04-19 08:36:26 +010010342static u32
10343intel_framebuffer_pitch_for_width(int width, int bpp)
10344{
10345 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10346 return ALIGN(pitch, 64);
10347}
10348
10349static u32
10350intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10351{
10352 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
Fabian Frederick1267a262014-07-01 20:39:41 +020010353 return PAGE_ALIGN(pitch * mode->vdisplay);
Chris Wilsond2dff872011-04-19 08:36:26 +010010354}
10355
10356static struct drm_framebuffer *
10357intel_framebuffer_create_for_mode(struct drm_device *dev,
10358 struct drm_display_mode *mode,
10359 int depth, int bpp)
10360{
Lukas Wunnerdcb13942015-07-04 11:50:58 +020010361 struct drm_framebuffer *fb;
Chris Wilsond2dff872011-04-19 08:36:26 +010010362 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +000010363 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +010010364
10365 obj = i915_gem_alloc_object(dev,
10366 intel_framebuffer_size_for_mode(mode, bpp));
10367 if (obj == NULL)
10368 return ERR_PTR(-ENOMEM);
10369
10370 mode_cmd.width = mode->hdisplay;
10371 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -080010372 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
10373 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +000010374 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +010010375
Lukas Wunnerdcb13942015-07-04 11:50:58 +020010376 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
10377 if (IS_ERR(fb))
10378 drm_gem_object_unreference_unlocked(&obj->base);
10379
10380 return fb;
Chris Wilsond2dff872011-04-19 08:36:26 +010010381}
10382
10383static struct drm_framebuffer *
10384mode_fits_in_fbdev(struct drm_device *dev,
10385 struct drm_display_mode *mode)
10386{
Daniel Vetter06957262015-08-10 13:34:08 +020010387#ifdef CONFIG_DRM_FBDEV_EMULATION
Chris Wilsond2dff872011-04-19 08:36:26 +010010388 struct drm_i915_private *dev_priv = dev->dev_private;
10389 struct drm_i915_gem_object *obj;
10390 struct drm_framebuffer *fb;
10391
Daniel Vetter4c0e5522014-02-14 16:35:54 +010010392 if (!dev_priv->fbdev)
10393 return NULL;
10394
10395 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +010010396 return NULL;
10397
Jesse Barnes8bcd4552014-02-07 12:10:38 -080010398 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +010010399 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +010010400
Jesse Barnes8bcd4552014-02-07 12:10:38 -080010401 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010402 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
10403 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +010010404 return NULL;
10405
Ville Syrjälä01f2c772011-12-20 00:06:49 +020010406 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +010010407 return NULL;
10408
10409 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +020010410#else
10411 return NULL;
10412#endif
Chris Wilsond2dff872011-04-19 08:36:26 +010010413}
10414
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010415static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
10416 struct drm_crtc *crtc,
10417 struct drm_display_mode *mode,
10418 struct drm_framebuffer *fb,
10419 int x, int y)
10420{
10421 struct drm_plane_state *plane_state;
10422 int hdisplay, vdisplay;
10423 int ret;
10424
10425 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
10426 if (IS_ERR(plane_state))
10427 return PTR_ERR(plane_state);
10428
10429 if (mode)
10430 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
10431 else
10432 hdisplay = vdisplay = 0;
10433
10434 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
10435 if (ret)
10436 return ret;
10437 drm_atomic_set_fb_for_plane(plane_state, fb);
10438 plane_state->crtc_x = 0;
10439 plane_state->crtc_y = 0;
10440 plane_state->crtc_w = hdisplay;
10441 plane_state->crtc_h = vdisplay;
10442 plane_state->src_x = x << 16;
10443 plane_state->src_y = y << 16;
10444 plane_state->src_w = hdisplay << 16;
10445 plane_state->src_h = vdisplay << 16;
10446
10447 return 0;
10448}
10449
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010450bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +010010451 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -050010452 struct intel_load_detect_pipe *old,
10453 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080010454{
10455 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010456 struct intel_encoder *intel_encoder =
10457 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -080010458 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +010010459 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -080010460 struct drm_crtc *crtc = NULL;
10461 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +020010462 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -050010463 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010464 struct drm_atomic_state *state = NULL;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010465 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010466 struct intel_crtc_state *crtc_state;
Rob Clark51fd3712013-11-19 12:10:12 -050010467 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -080010468
Chris Wilsond2dff872011-04-19 08:36:26 +010010469 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030010470 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030010471 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010010472
Rob Clark51fd3712013-11-19 12:10:12 -050010473retry:
10474 ret = drm_modeset_lock(&config->connection_mutex, ctx);
10475 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010476 goto fail;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020010477
Jesse Barnes79e53942008-11-07 14:24:08 -080010478 /*
10479 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +010010480 *
Jesse Barnes79e53942008-11-07 14:24:08 -080010481 * - if the connector already has an assigned crtc, use it (but make
10482 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +010010483 *
Jesse Barnes79e53942008-11-07 14:24:08 -080010484 * - try to find the first unused crtc that can drive this connector,
10485 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -080010486 */
10487
10488 /* See if we already have a CRTC for this connector */
10489 if (encoder->crtc) {
10490 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +010010491
Rob Clark51fd3712013-11-19 12:10:12 -050010492 ret = drm_modeset_lock(&crtc->mutex, ctx);
10493 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010494 goto fail;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +010010495 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10496 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010497 goto fail;
Daniel Vetter7b240562012-12-12 00:35:33 +010010498
Daniel Vetter24218aa2012-08-12 19:27:11 +020010499 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +010010500 old->load_detect_temp = false;
10501
10502 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +020010503 if (connector->dpms != DRM_MODE_DPMS_ON)
10504 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +010010505
Chris Wilson71731882011-04-19 23:10:58 +010010506 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -080010507 }
10508
10509 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010510 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -080010511 i++;
10512 if (!(encoder->possible_crtcs & (1 << i)))
10513 continue;
Matt Roper83d65732015-02-25 13:12:16 -080010514 if (possible_crtc->state->enable)
Ville Syrjäläa4592492014-08-11 13:15:36 +030010515 continue;
Ville Syrjäläa4592492014-08-11 13:15:36 +030010516
10517 crtc = possible_crtc;
10518 break;
Jesse Barnes79e53942008-11-07 14:24:08 -080010519 }
10520
10521 /*
10522 * If we didn't find an unused CRTC, don't use any.
10523 */
10524 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +010010525 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010526 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010527 }
10528
Rob Clark51fd3712013-11-19 12:10:12 -050010529 ret = drm_modeset_lock(&crtc->mutex, ctx);
10530 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010531 goto fail;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +010010532 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10533 if (ret)
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010534 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010535
10536 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter24218aa2012-08-12 19:27:11 +020010537 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +010010538 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +010010539 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -080010540
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010541 state = drm_atomic_state_alloc(dev);
10542 if (!state)
10543 return false;
10544
10545 state->acquire_ctx = ctx;
10546
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010547 connector_state = drm_atomic_get_connector_state(state, connector);
10548 if (IS_ERR(connector_state)) {
10549 ret = PTR_ERR(connector_state);
10550 goto fail;
10551 }
10552
10553 connector_state->crtc = crtc;
10554 connector_state->best_encoder = &intel_encoder->base;
10555
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010556 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10557 if (IS_ERR(crtc_state)) {
10558 ret = PTR_ERR(crtc_state);
10559 goto fail;
10560 }
10561
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020010562 crtc_state->base.active = crtc_state->base.enable = true;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010563
Chris Wilson64927112011-04-20 07:25:26 +010010564 if (!mode)
10565 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -080010566
Chris Wilsond2dff872011-04-19 08:36:26 +010010567 /* We need a framebuffer large enough to accommodate all accesses
10568 * that the plane may generate whilst we perform load detection.
10569 * We can not rely on the fbcon either being present (we get called
10570 * during its initialisation to detect all boot displays, or it may
10571 * not even exist) or that it is large enough to satisfy the
10572 * requested mode.
10573 */
Daniel Vetter94352cf2012-07-05 22:51:56 +020010574 fb = mode_fits_in_fbdev(dev, mode);
10575 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +010010576 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020010577 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
10578 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +010010579 } else
10580 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +020010581 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +010010582 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010583 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010584 }
Chris Wilsond2dff872011-04-19 08:36:26 +010010585
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010586 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
10587 if (ret)
10588 goto fail;
10589
Ander Conselvan de Oliveira8c7b5cc2015-04-21 17:13:19 +030010590 drm_mode_copy(&crtc_state->base.mode, mode);
10591
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020010592 if (drm_atomic_commit(state)) {
Chris Wilson64927112011-04-20 07:25:26 +010010593 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +010010594 if (old->release_fb)
10595 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010596 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080010597 }
Daniel Vetter9128b042015-03-03 17:31:21 +010010598 crtc->primary->crtc = crtc;
Chris Wilson71731882011-04-19 23:10:58 +010010599
Jesse Barnes79e53942008-11-07 14:24:08 -080010600 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -070010601 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +010010602 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010603
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020010604fail:
Ander Conselvan de Oliveirae5d958e2015-04-21 17:12:57 +030010605 drm_atomic_state_free(state);
10606 state = NULL;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010607
Rob Clark51fd3712013-11-19 12:10:12 -050010608 if (ret == -EDEADLK) {
10609 drm_modeset_backoff(ctx);
10610 goto retry;
10611 }
10612
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010613 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -080010614}
10615
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010616void intel_release_load_detect_pipe(struct drm_connector *connector,
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020010617 struct intel_load_detect_pipe *old,
10618 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -080010619{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010620 struct drm_device *dev = connector->dev;
Daniel Vetterd2434ab2012-08-12 21:20:10 +020010621 struct intel_encoder *intel_encoder =
10622 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +010010623 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +010010624 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +020010625 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010626 struct drm_atomic_state *state;
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010627 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010628 struct intel_crtc_state *crtc_state;
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010629 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080010630
Chris Wilsond2dff872011-04-19 08:36:26 +010010631 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +030010632 connector->base.id, connector->name,
Jani Nikula8e329a032014-06-03 14:56:21 +030010633 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +010010634
Chris Wilson8261b192011-04-19 23:18:09 +010010635 if (old->load_detect_temp) {
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010636 state = drm_atomic_state_alloc(dev);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010637 if (!state)
10638 goto fail;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020010639
10640 state->acquire_ctx = ctx;
10641
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010642 connector_state = drm_atomic_get_connector_state(state, connector);
10643 if (IS_ERR(connector_state))
10644 goto fail;
10645
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010646 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10647 if (IS_ERR(crtc_state))
10648 goto fail;
10649
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010650 connector_state->best_encoder = NULL;
10651 connector_state->crtc = NULL;
10652
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020010653 crtc_state->base.enable = crtc_state->base.active = false;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030010654
Ander Conselvan de Oliveirad3a40d12015-04-21 17:13:09 +030010655 ret = intel_modeset_setup_plane_state(state, crtc, NULL, NULL,
10656 0, 0);
10657 if (ret)
10658 goto fail;
10659
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020010660 ret = drm_atomic_commit(state);
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030010661 if (ret)
10662 goto fail;
Chris Wilsond2dff872011-04-19 08:36:26 +010010663
Daniel Vetter36206362012-12-10 20:42:17 +010010664 if (old->release_fb) {
10665 drm_framebuffer_unregister_private(old->release_fb);
10666 drm_framebuffer_unreference(old->release_fb);
10667 }
Chris Wilsond2dff872011-04-19 08:36:26 +010010668
Chris Wilson0622a532011-04-21 09:32:11 +010010669 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080010670 }
10671
Eric Anholtc751ce42010-03-25 11:48:48 -070010672 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +020010673 if (old->dpms_mode != DRM_MODE_DPMS_ON)
10674 connector->funcs->dpms(connector, old->dpms_mode);
Ander Conselvan de Oliveira944b0c72015-03-20 16:18:07 +020010675
10676 return;
10677fail:
10678 DRM_DEBUG_KMS("Couldn't release load detect pipe.\n");
10679 drm_atomic_state_free(state);
Jesse Barnes79e53942008-11-07 14:24:08 -080010680}
10681
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010682static int i9xx_pll_refclk(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010683 const struct intel_crtc_state *pipe_config)
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010684{
10685 struct drm_i915_private *dev_priv = dev->dev_private;
10686 u32 dpll = pipe_config->dpll_hw_state.dpll;
10687
10688 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +020010689 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010690 else if (HAS_PCH_SPLIT(dev))
10691 return 120000;
10692 else if (!IS_GEN2(dev))
10693 return 96000;
10694 else
10695 return 48000;
10696}
10697
Jesse Barnes79e53942008-11-07 14:24:08 -080010698/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010699static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010700 struct intel_crtc_state *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -080010701{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010702 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080010703 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010704 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010705 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -080010706 u32 fp;
10707 intel_clock_t clock;
Imre Deakdccbea32015-06-22 23:35:51 +030010708 int port_clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010709 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -080010710
10711 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +030010712 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010713 else
Ville Syrjälä293623f2013-09-13 16:18:46 +030010714 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -080010715
10716 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010717 if (IS_PINEVIEW(dev)) {
10718 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
10719 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +080010720 } else {
10721 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
10722 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
10723 }
10724
Chris Wilsona6c45cf2010-09-17 00:32:17 +010010725 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -050010726 if (IS_PINEVIEW(dev))
10727 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
10728 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +080010729 else
10730 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -080010731 DPLL_FPA01_P1_POST_DIV_SHIFT);
10732
10733 switch (dpll & DPLL_MODE_MASK) {
10734 case DPLLB_MODE_DAC_SERIAL:
10735 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
10736 5 : 10;
10737 break;
10738 case DPLLB_MODE_LVDS:
10739 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
10740 7 : 14;
10741 break;
10742 default:
Zhao Yakui28c97732009-10-09 11:39:41 +080010743 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -080010744 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010745 return;
Jesse Barnes79e53942008-11-07 14:24:08 -080010746 }
10747
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010748 if (IS_PINEVIEW(dev))
Imre Deakdccbea32015-06-22 23:35:51 +030010749 port_clock = pnv_calc_dpll_params(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +020010750 else
Imre Deakdccbea32015-06-22 23:35:51 +030010751 port_clock = i9xx_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010752 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +020010753 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010754 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -080010755
10756 if (is_lvds) {
10757 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10758 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +020010759
10760 if (lvds & LVDS_CLKB_POWER_UP)
10761 clock.p2 = 7;
10762 else
10763 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -080010764 } else {
10765 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10766 clock.p1 = 2;
10767 else {
10768 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10769 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10770 }
10771 if (dpll & PLL_P2_DIVIDE_BY_4)
10772 clock.p2 = 4;
10773 else
10774 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -080010775 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +030010776
Imre Deakdccbea32015-06-22 23:35:51 +030010777 port_clock = i9xx_calc_dpll_params(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080010778 }
10779
Ville Syrjälä18442d02013-09-13 16:00:08 +030010780 /*
10781 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +010010782 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +030010783 * encoder's get_config() function.
10784 */
Imre Deakdccbea32015-06-22 23:35:51 +030010785 pipe_config->port_clock = port_clock;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010786}
10787
Ville Syrjälä6878da02013-09-13 15:59:11 +030010788int intel_dotclock_calculate(int link_freq,
10789 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010790{
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010791 /*
10792 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010793 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010794 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010795 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010796 *
10797 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +030010798 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -080010799 */
10800
Ville Syrjälä6878da02013-09-13 15:59:11 +030010801 if (!m_n->link_n)
10802 return 0;
10803
10804 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10805}
10806
Ville Syrjälä18442d02013-09-13 16:00:08 +030010807static void ironlake_pch_clock_get(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010808 struct intel_crtc_state *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +030010809{
10810 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +030010811
10812 /* read out port_clock from the DPLL */
10813 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +030010814
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010815 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +030010816 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +010010817 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +030010818 * agree once we know their relationship in the encoder's
10819 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010820 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020010821 pipe_config->base.adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +030010822 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
10823 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -080010824}
10825
10826/** Returns the currently programmed mode of the given pipe. */
10827struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10828 struct drm_crtc *crtc)
10829{
Jesse Barnes548f2452011-02-17 10:40:53 -080010830 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010831 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020010832 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010833 struct drm_display_mode *mode;
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020010834 struct intel_crtc_state pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -020010835 int htot = I915_READ(HTOTAL(cpu_transcoder));
10836 int hsync = I915_READ(HSYNC(cpu_transcoder));
10837 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10838 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +030010839 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -080010840
10841 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10842 if (!mode)
10843 return NULL;
10844
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010845 /*
10846 * Construct a pipe_config sufficient for getting the clock info
10847 * back out of crtc_clock_get.
10848 *
10849 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10850 * to use a real value here instead.
10851 */
Ville Syrjälä293623f2013-09-13 16:18:46 +030010852 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010853 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +030010854 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10855 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10856 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +030010857 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
10858
Ville Syrjälä773ae032013-09-23 17:48:20 +030010859 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -080010860 mode->hdisplay = (htot & 0xffff) + 1;
10861 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10862 mode->hsync_start = (hsync & 0xffff) + 1;
10863 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10864 mode->vdisplay = (vtot & 0xffff) + 1;
10865 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10866 mode->vsync_start = (vsync & 0xffff) + 1;
10867 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10868
10869 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -080010870
10871 return mode;
10872}
10873
Chris Wilsonf047e392012-07-21 12:31:41 +010010874void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -070010875{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010876 struct drm_i915_private *dev_priv = dev->dev_private;
10877
Chris Wilsonf62a0072014-02-21 17:55:39 +000010878 if (dev_priv->mm.busy)
10879 return;
10880
Paulo Zanoni43694d62014-03-07 20:08:08 -030010881 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -030010882 i915_update_gfx_val(dev_priv);
Chris Wilson43cf3bf2015-03-18 09:48:22 +000010883 if (INTEL_INFO(dev)->gen >= 6)
10884 gen6_rps_busy(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +000010885 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +010010886}
10887
10888void intel_mark_idle(struct drm_device *dev)
10889{
Paulo Zanonic67a4702013-08-19 13:18:09 -030010890 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +000010891
Chris Wilsonf62a0072014-02-21 17:55:39 +000010892 if (!dev_priv->mm.busy)
10893 return;
10894
10895 dev_priv->mm.busy = false;
10896
Damien Lespiau3d13ef22014-02-07 19:12:47 +000010897 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +010010898 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -030010899
Paulo Zanoni43694d62014-03-07 20:08:08 -030010900 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +010010901}
10902
Jesse Barnes79e53942008-11-07 14:24:08 -080010903static void intel_crtc_destroy(struct drm_crtc *crtc)
10904{
10905 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010906 struct drm_device *dev = crtc->dev;
10907 struct intel_unpin_work *work;
Daniel Vetter67e77c52010-08-20 22:26:30 +020010908
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010909 spin_lock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010910 work = intel_crtc->unpin_work;
10911 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020010912 spin_unlock_irq(&dev->event_lock);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010913
10914 if (work) {
10915 cancel_work_sync(&work->work);
10916 kfree(work);
10917 }
Jesse Barnes79e53942008-11-07 14:24:08 -080010918
10919 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +020010920
Jesse Barnes79e53942008-11-07 14:24:08 -080010921 kfree(intel_crtc);
10922}
10923
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010924static void intel_unpin_work_fn(struct work_struct *__work)
10925{
10926 struct intel_unpin_work *work =
10927 container_of(__work, struct intel_unpin_work, work);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010928 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
10929 struct drm_device *dev = crtc->base.dev;
10930 struct drm_plane *primary = crtc->base.primary;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010931
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010932 mutex_lock(&dev->struct_mutex);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010933 intel_unpin_fb_obj(work->old_fb, primary->state);
Chris Wilson05394f32010-11-08 19:18:58 +000010934 drm_gem_object_unreference(&work->pending_flip_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +000010935
John Harrisonf06cc1b2014-11-24 18:49:37 +000010936 if (work->flip_queued_req)
John Harrison146d84f2014-12-05 13:49:33 +000010937 i915_gem_request_assign(&work->flip_queued_req, NULL);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010938 mutex_unlock(&dev->struct_mutex);
10939
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010940 intel_frontbuffer_flip_complete(dev, to_intel_plane(primary)->frontbuffer_bit);
Chris Wilson89ed88b2015-02-16 14:31:49 +000010941 drm_framebuffer_unreference(work->old_fb);
Daniel Vetterf99d7062014-06-19 16:01:59 +020010942
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030010943 BUG_ON(atomic_read(&crtc->unpin_work_count) == 0);
10944 atomic_dec(&crtc->unpin_work_count);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000010945
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010946 kfree(work);
10947}
10948
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010949static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +010010950 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010951{
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010952 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10953 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010954 unsigned long flags;
10955
10956 /* Ignore early vblank irqs */
10957 if (intel_crtc == NULL)
10958 return;
10959
Daniel Vetterf3260382014-09-15 14:55:23 +020010960 /*
10961 * This is called both by irq handlers and the reset code (to complete
10962 * lost pageflips) so needs the full irqsave spinlocks.
10963 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010964 spin_lock_irqsave(&dev->event_lock, flags);
10965 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +000010966
10967 /* Ensure we don't miss a work->pending update ... */
10968 smp_rmb();
10969
10970 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010971 spin_unlock_irqrestore(&dev->event_lock, flags);
10972 return;
10973 }
10974
Chris Wilsond6bbafa2014-09-05 07:13:24 +010010975 page_flip_completed(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +010010976
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010977 spin_unlock_irqrestore(&dev->event_lock, flags);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050010978}
10979
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010980void intel_finish_page_flip(struct drm_device *dev, int pipe)
10981{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010982 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010983 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10984
Mario Kleiner49b14a52010-12-09 07:00:07 +010010985 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010986}
10987
10988void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
10989{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010990 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010991 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
10992
Mario Kleiner49b14a52010-12-09 07:00:07 +010010993 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -070010994}
10995
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030010996/* Is 'a' after or equal to 'b'? */
10997static bool g4x_flip_count_after_eq(u32 a, u32 b)
10998{
10999 return !((a - b) & 0x80000000);
11000}
11001
11002static bool page_flip_finished(struct intel_crtc *crtc)
11003{
11004 struct drm_device *dev = crtc->base.dev;
11005 struct drm_i915_private *dev_priv = dev->dev_private;
11006
Ville Syrjäläbdfa7542014-05-27 21:33:09 +030011007 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
11008 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
11009 return true;
11010
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011011 /*
11012 * The relevant registers doen't exist on pre-ctg.
11013 * As the flip done interrupt doesn't trigger for mmio
11014 * flips on gmch platforms, a flip count check isn't
11015 * really needed there. But since ctg has the registers,
11016 * include it in the check anyway.
11017 */
11018 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
11019 return true;
11020
11021 /*
11022 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
11023 * used the same base address. In that case the mmio flip might
11024 * have completed, but the CS hasn't even executed the flip yet.
11025 *
11026 * A flip count check isn't enough as the CS might have updated
11027 * the base address just after start of vblank, but before we
11028 * managed to process the interrupt. This means we'd complete the
11029 * CS flip too soon.
11030 *
11031 * Combining both checks should get us a good enough result. It may
11032 * still happen that the CS flip has been executed, but has not
11033 * yet actually completed. But in case the base address is the same
11034 * anyway, we don't really care.
11035 */
11036 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
11037 crtc->unpin_work->gtt_offset &&
Ville Syrjäläfd8f507c2015-09-18 20:03:42 +030011038 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_G4X(crtc->pipe)),
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011039 crtc->unpin_work->flip_count);
11040}
11041
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011042void intel_prepare_page_flip(struct drm_device *dev, int plane)
11043{
Jani Nikulafbee40d2014-03-31 14:27:18 +030011044 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011045 struct intel_crtc *intel_crtc =
11046 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
11047 unsigned long flags;
11048
Daniel Vetterf3260382014-09-15 14:55:23 +020011049
11050 /*
11051 * This is called both by irq handlers and the reset code (to complete
11052 * lost pageflips) so needs the full irqsave spinlocks.
11053 *
11054 * NB: An MMIO update of the plane base pointer will also
Chris Wilsone7d841c2012-12-03 11:36:30 +000011055 * generate a page-flip completion irq, i.e. every modeset
11056 * is also accompanied by a spurious intel_prepare_page_flip().
11057 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011058 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011059 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +000011060 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011061 spin_unlock_irqrestore(&dev->event_lock, flags);
11062}
11063
Chris Wilson60426392015-10-10 10:44:32 +010011064static inline void intel_mark_page_flip_active(struct intel_unpin_work *work)
Chris Wilsone7d841c2012-12-03 11:36:30 +000011065{
11066 /* Ensure that the work item is consistent when activating it ... */
11067 smp_wmb();
Chris Wilson60426392015-10-10 10:44:32 +010011068 atomic_set(&work->pending, INTEL_FLIP_PENDING);
Chris Wilsone7d841c2012-12-03 11:36:30 +000011069 /* and that it is marked active as soon as the irq could fire. */
11070 smp_wmb();
11071}
11072
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011073static int intel_gen2_queue_flip(struct drm_device *dev,
11074 struct drm_crtc *crtc,
11075 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011076 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011077 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011078 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011079{
John Harrison6258fbe2015-05-29 17:43:48 +010011080 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011081 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011082 u32 flip_mask;
11083 int ret;
11084
John Harrison5fb9de12015-05-29 17:44:07 +010011085 ret = intel_ring_begin(req, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011086 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011087 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011088
11089 /* Can't queue multiple flips, so wait for the previous
11090 * one to finish before executing the next.
11091 */
11092 if (intel_crtc->plane)
11093 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11094 else
11095 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011096 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11097 intel_ring_emit(ring, MI_NOOP);
11098 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11099 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11100 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011101 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020011102 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +000011103
Chris Wilson60426392015-10-10 10:44:32 +010011104 intel_mark_page_flip_active(intel_crtc->unpin_work);
Chris Wilson83d40922012-04-17 19:35:53 +010011105 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011106}
11107
11108static int intel_gen3_queue_flip(struct drm_device *dev,
11109 struct drm_crtc *crtc,
11110 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011111 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011112 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011113 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011114{
John Harrison6258fbe2015-05-29 17:43:48 +010011115 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011116 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011117 u32 flip_mask;
11118 int ret;
11119
John Harrison5fb9de12015-05-29 17:44:07 +010011120 ret = intel_ring_begin(req, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011121 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011122 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011123
11124 if (intel_crtc->plane)
11125 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11126 else
11127 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011128 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11129 intel_ring_emit(ring, MI_NOOP);
11130 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
11131 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11132 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011133 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +020011134 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011135
Chris Wilson60426392015-10-10 10:44:32 +010011136 intel_mark_page_flip_active(intel_crtc->unpin_work);
Chris Wilson83d40922012-04-17 19:35:53 +010011137 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011138}
11139
11140static int intel_gen4_queue_flip(struct drm_device *dev,
11141 struct drm_crtc *crtc,
11142 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011143 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011144 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011145 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011146{
John Harrison6258fbe2015-05-29 17:43:48 +010011147 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011148 struct drm_i915_private *dev_priv = dev->dev_private;
11149 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11150 uint32_t pf, pipesrc;
11151 int ret;
11152
John Harrison5fb9de12015-05-29 17:44:07 +010011153 ret = intel_ring_begin(req, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011154 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011155 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011156
11157 /* i965+ uses the linear or tiled offsets from the
11158 * Display Registers (which do not change across a page-flip)
11159 * so we need only reprogram the base address.
11160 */
Daniel Vetter6d90c952012-04-26 23:28:05 +020011161 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11162 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11163 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011164 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +020011165 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011166
11167 /* XXX Enabling the panel-fitter across page-flip is so far
11168 * untested on non-native modes, so ignore it for now.
11169 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
11170 */
11171 pf = 0;
11172 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011173 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000011174
Chris Wilson60426392015-10-10 10:44:32 +010011175 intel_mark_page_flip_active(intel_crtc->unpin_work);
Chris Wilson83d40922012-04-17 19:35:53 +010011176 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011177}
11178
11179static int intel_gen6_queue_flip(struct drm_device *dev,
11180 struct drm_crtc *crtc,
11181 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011182 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011183 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011184 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011185{
John Harrison6258fbe2015-05-29 17:43:48 +010011186 struct intel_engine_cs *ring = req->ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011187 struct drm_i915_private *dev_priv = dev->dev_private;
11188 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11189 uint32_t pf, pipesrc;
11190 int ret;
11191
John Harrison5fb9de12015-05-29 17:44:07 +010011192 ret = intel_ring_begin(req, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011193 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011194 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011195
Daniel Vetter6d90c952012-04-26 23:28:05 +020011196 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11197 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11198 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011199 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011200
Chris Wilson99d9acd2012-04-17 20:37:00 +010011201 /* Contrary to the suggestions in the documentation,
11202 * "Enable Panel Fitter" does not seem to be required when page
11203 * flipping with a non-native mode, and worse causes a normal
11204 * modeset to fail.
11205 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
11206 */
11207 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011208 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +020011209 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +000011210
Chris Wilson60426392015-10-10 10:44:32 +010011211 intel_mark_page_flip_active(intel_crtc->unpin_work);
Chris Wilson83d40922012-04-17 19:35:53 +010011212 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011213}
11214
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011215static int intel_gen7_queue_flip(struct drm_device *dev,
11216 struct drm_crtc *crtc,
11217 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011218 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011219 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011220 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011221{
John Harrison6258fbe2015-05-29 17:43:48 +010011222 struct intel_engine_cs *ring = req->ring;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011223 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011224 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +010011225 int len, ret;
11226
Robin Schroereba905b2014-05-18 02:24:50 +020011227 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011228 case PLANE_A:
11229 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11230 break;
11231 case PLANE_B:
11232 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11233 break;
11234 case PLANE_C:
11235 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11236 break;
11237 default:
11238 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011239 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011240 }
11241
Chris Wilsonffe74d72013-08-26 20:58:12 +010011242 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +010011243 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +010011244 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +010011245 /*
11246 * On Gen 8, SRM is now taking an extra dword to accommodate
11247 * 48bits addresses, and we need a NOOP for the batch size to
11248 * stay even.
11249 */
11250 if (IS_GEN8(dev))
11251 len += 2;
11252 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010011253
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011254 /*
11255 * BSpec MI_DISPLAY_FLIP for IVB:
11256 * "The full packet must be contained within the same cache line."
11257 *
11258 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11259 * cacheline, if we ever start emitting more commands before
11260 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11261 * then do the cacheline alignment, and finally emit the
11262 * MI_DISPLAY_FLIP.
11263 */
John Harrisonbba09b12015-05-29 17:44:06 +010011264 ret = intel_ring_cacheline_align(req);
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011265 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011266 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +020011267
John Harrison5fb9de12015-05-29 17:44:07 +010011268 ret = intel_ring_begin(req, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011269 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011270 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011271
Chris Wilsonffe74d72013-08-26 20:58:12 +010011272 /* Unmask the flip-done completion message. Note that the bspec says that
11273 * we should do this for both the BCS and RCS, and that we must not unmask
11274 * more than one flip event at any time (or ensure that one flip message
11275 * can be sent by waiting for flip-done prior to queueing new flips).
11276 * Experimentation says that BCS works despite DERRMR masking all
11277 * flip-done completion events and that unmasking all planes at once
11278 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11279 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11280 */
11281 if (ring->id == RCS) {
11282 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
Ville Syrjäläf92a9162015-11-04 23:20:07 +020011283 intel_ring_emit_reg(ring, DERRMR);
Chris Wilsonffe74d72013-08-26 20:58:12 +010011284 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
11285 DERRMR_PIPEB_PRI_FLIP_DONE |
11286 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +010011287 if (IS_GEN8(dev))
Arun Siluveryf1afe242015-08-04 16:22:20 +010011288 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8 |
Damien Lespiauf4768282014-04-07 20:24:34 +010011289 MI_SRM_LRM_GLOBAL_GTT);
11290 else
Arun Siluveryf1afe242015-08-04 16:22:20 +010011291 intel_ring_emit(ring, MI_STORE_REGISTER_MEM |
Damien Lespiauf4768282014-04-07 20:24:34 +010011292 MI_SRM_LRM_GLOBAL_GTT);
Ville Syrjäläf92a9162015-11-04 23:20:07 +020011293 intel_ring_emit_reg(ring, DERRMR);
Chris Wilsonffe74d72013-08-26 20:58:12 +010011294 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +010011295 if (IS_GEN8(dev)) {
11296 intel_ring_emit(ring, 0);
11297 intel_ring_emit(ring, MI_NOOP);
11298 }
Chris Wilsonffe74d72013-08-26 20:58:12 +010011299 }
11300
Daniel Vettercb05d8d2012-05-23 14:02:00 +020011301 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +020011302 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011303 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011304 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +000011305
Chris Wilson60426392015-10-10 10:44:32 +010011306 intel_mark_page_flip_active(intel_crtc->unpin_work);
Chris Wilson83d40922012-04-17 19:35:53 +010011307 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011308}
11309
Sourab Gupta84c33a62014-06-02 16:47:17 +053011310static bool use_mmio_flip(struct intel_engine_cs *ring,
11311 struct drm_i915_gem_object *obj)
11312{
11313 /*
11314 * This is not being used for older platforms, because
11315 * non-availability of flip done interrupt forces us to use
11316 * CS flips. Older platforms derive flip done using some clever
11317 * tricks involving the flip_pending status bits and vblank irqs.
11318 * So using MMIO flips there would disrupt this mechanism.
11319 */
11320
Chris Wilson8e09bf82014-07-08 10:40:30 +010011321 if (ring == NULL)
11322 return true;
11323
Sourab Gupta84c33a62014-06-02 16:47:17 +053011324 if (INTEL_INFO(ring->dev)->gen < 5)
11325 return false;
11326
11327 if (i915.use_mmio_flip < 0)
11328 return false;
11329 else if (i915.use_mmio_flip > 0)
11330 return true;
Oscar Mateo14bf9932014-07-24 17:04:34 +010011331 else if (i915.enable_execlists)
11332 return true;
Alex Goinsfd8e0582015-11-25 18:43:38 -080011333 else if (obj->base.dma_buf &&
11334 !reservation_object_test_signaled_rcu(obj->base.dma_buf->resv,
11335 false))
11336 return true;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011337 else
Chris Wilsonb4716182015-04-27 13:41:17 +010011338 return ring != i915_gem_request_get_ring(obj->last_write_req);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011339}
11340
Chris Wilson60426392015-10-10 10:44:32 +010011341static void skl_do_mmio_flip(struct intel_crtc *intel_crtc,
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011342 unsigned int rotation,
Chris Wilson60426392015-10-10 10:44:32 +010011343 struct intel_unpin_work *work)
Damien Lespiauff944562014-11-20 14:58:16 +000011344{
11345 struct drm_device *dev = intel_crtc->base.dev;
11346 struct drm_i915_private *dev_priv = dev->dev_private;
11347 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
Damien Lespiauff944562014-11-20 14:58:16 +000011348 const enum pipe pipe = intel_crtc->pipe;
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011349 u32 ctl, stride, tile_height;
Damien Lespiauff944562014-11-20 14:58:16 +000011350
11351 ctl = I915_READ(PLANE_CTL(pipe, 0));
11352 ctl &= ~PLANE_CTL_TILED_MASK;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011353 switch (fb->modifier[0]) {
11354 case DRM_FORMAT_MOD_NONE:
11355 break;
11356 case I915_FORMAT_MOD_X_TILED:
Damien Lespiauff944562014-11-20 14:58:16 +000011357 ctl |= PLANE_CTL_TILED_X;
Tvrtko Ursulin2ebef632015-04-20 16:22:48 +010011358 break;
11359 case I915_FORMAT_MOD_Y_TILED:
11360 ctl |= PLANE_CTL_TILED_Y;
11361 break;
11362 case I915_FORMAT_MOD_Yf_TILED:
11363 ctl |= PLANE_CTL_TILED_YF;
11364 break;
11365 default:
11366 MISSING_CASE(fb->modifier[0]);
11367 }
Damien Lespiauff944562014-11-20 14:58:16 +000011368
11369 /*
11370 * The stride is either expressed as a multiple of 64 bytes chunks for
11371 * linear buffers or in number of tiles for tiled buffers.
11372 */
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011373 if (intel_rotation_90_or_270(rotation)) {
11374 /* stride = Surface height in tiles */
11375 tile_height = intel_tile_height(dev, fb->pixel_format,
11376 fb->modifier[0], 0);
11377 stride = DIV_ROUND_UP(fb->height, tile_height);
11378 } else {
11379 stride = fb->pitches[0] /
11380 intel_fb_stride_alignment(dev, fb->modifier[0],
11381 fb->pixel_format);
11382 }
Damien Lespiauff944562014-11-20 14:58:16 +000011383
11384 /*
11385 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
11386 * PLANE_SURF updates, the update is then guaranteed to be atomic.
11387 */
11388 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
11389 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
11390
Chris Wilson60426392015-10-10 10:44:32 +010011391 I915_WRITE(PLANE_SURF(pipe, 0), work->gtt_offset);
Damien Lespiauff944562014-11-20 14:58:16 +000011392 POSTING_READ(PLANE_SURF(pipe, 0));
11393}
11394
Chris Wilson60426392015-10-10 10:44:32 +010011395static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc,
11396 struct intel_unpin_work *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011397{
11398 struct drm_device *dev = intel_crtc->base.dev;
11399 struct drm_i915_private *dev_priv = dev->dev_private;
11400 struct intel_framebuffer *intel_fb =
11401 to_intel_framebuffer(intel_crtc->base.primary->fb);
11402 struct drm_i915_gem_object *obj = intel_fb->obj;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020011403 i915_reg_t reg = DSPCNTR(intel_crtc->plane);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011404 u32 dspcntr;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011405
Sourab Gupta84c33a62014-06-02 16:47:17 +053011406 dspcntr = I915_READ(reg);
11407
Damien Lespiauc5d97472014-10-25 00:11:11 +010011408 if (obj->tiling_mode != I915_TILING_NONE)
11409 dspcntr |= DISPPLANE_TILED;
11410 else
11411 dspcntr &= ~DISPPLANE_TILED;
11412
Sourab Gupta84c33a62014-06-02 16:47:17 +053011413 I915_WRITE(reg, dspcntr);
11414
Chris Wilson60426392015-10-10 10:44:32 +010011415 I915_WRITE(DSPSURF(intel_crtc->plane), work->gtt_offset);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011416 POSTING_READ(DSPSURF(intel_crtc->plane));
Damien Lespiauff944562014-11-20 14:58:16 +000011417}
11418
11419/*
11420 * XXX: This is the temporary way to update the plane registers until we get
11421 * around to using the usual plane update functions for MMIO flips
11422 */
Chris Wilson60426392015-10-10 10:44:32 +010011423static void intel_do_mmio_flip(struct intel_mmio_flip *mmio_flip)
Damien Lespiauff944562014-11-20 14:58:16 +000011424{
Chris Wilson60426392015-10-10 10:44:32 +010011425 struct intel_crtc *crtc = mmio_flip->crtc;
11426 struct intel_unpin_work *work;
Damien Lespiauff944562014-11-20 14:58:16 +000011427
Chris Wilson60426392015-10-10 10:44:32 +010011428 spin_lock_irq(&crtc->base.dev->event_lock);
11429 work = crtc->unpin_work;
11430 spin_unlock_irq(&crtc->base.dev->event_lock);
11431 if (work == NULL)
11432 return;
Damien Lespiauff944562014-11-20 14:58:16 +000011433
Chris Wilson60426392015-10-10 10:44:32 +010011434 intel_mark_page_flip_active(work);
Damien Lespiauff944562014-11-20 14:58:16 +000011435
Chris Wilson60426392015-10-10 10:44:32 +010011436 intel_pipe_update_start(crtc);
11437
11438 if (INTEL_INFO(mmio_flip->i915)->gen >= 9)
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011439 skl_do_mmio_flip(crtc, mmio_flip->rotation, work);
Damien Lespiauff944562014-11-20 14:58:16 +000011440 else
11441 /* use_mmio_flip() retricts MMIO flips to ilk+ */
Chris Wilson60426392015-10-10 10:44:32 +010011442 ilk_do_mmio_flip(crtc, work);
Damien Lespiauff944562014-11-20 14:58:16 +000011443
Chris Wilson60426392015-10-10 10:44:32 +010011444 intel_pipe_update_end(crtc);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011445}
11446
Ander Conselvan de Oliveira9362c7c2014-10-28 15:10:14 +020011447static void intel_mmio_flip_work_func(struct work_struct *work)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011448{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011449 struct intel_mmio_flip *mmio_flip =
11450 container_of(work, struct intel_mmio_flip, work);
Alex Goinsfd8e0582015-11-25 18:43:38 -080011451 struct intel_framebuffer *intel_fb =
11452 to_intel_framebuffer(mmio_flip->crtc->base.primary->fb);
11453 struct drm_i915_gem_object *obj = intel_fb->obj;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011454
Chris Wilson60426392015-10-10 10:44:32 +010011455 if (mmio_flip->req) {
Daniel Vettereed29a52015-05-21 14:21:25 +020011456 WARN_ON(__i915_wait_request(mmio_flip->req,
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011457 mmio_flip->crtc->reset_counter,
Chris Wilsonbcafc4e2015-04-27 13:41:21 +010011458 false, NULL,
11459 &mmio_flip->i915->rps.mmioflips));
Chris Wilson60426392015-10-10 10:44:32 +010011460 i915_gem_request_unreference__unlocked(mmio_flip->req);
11461 }
Sourab Gupta84c33a62014-06-02 16:47:17 +053011462
Alex Goinsfd8e0582015-11-25 18:43:38 -080011463 /* For framebuffer backed by dmabuf, wait for fence */
11464 if (obj->base.dma_buf)
11465 WARN_ON(reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv,
11466 false, false,
11467 MAX_SCHEDULE_TIMEOUT) < 0);
11468
Chris Wilson60426392015-10-10 10:44:32 +010011469 intel_do_mmio_flip(mmio_flip);
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011470 kfree(mmio_flip);
Sourab Gupta84c33a62014-06-02 16:47:17 +053011471}
11472
11473static int intel_queue_mmio_flip(struct drm_device *dev,
11474 struct drm_crtc *crtc,
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011475 struct drm_i915_gem_object *obj)
Sourab Gupta84c33a62014-06-02 16:47:17 +053011476{
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011477 struct intel_mmio_flip *mmio_flip;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011478
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011479 mmio_flip = kmalloc(sizeof(*mmio_flip), GFP_KERNEL);
11480 if (mmio_flip == NULL)
11481 return -ENOMEM;
Sourab Gupta84c33a62014-06-02 16:47:17 +053011482
Chris Wilsonbcafc4e2015-04-27 13:41:21 +010011483 mmio_flip->i915 = to_i915(dev);
Daniel Vettereed29a52015-05-21 14:21:25 +020011484 mmio_flip->req = i915_gem_request_reference(obj->last_write_req);
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011485 mmio_flip->crtc = to_intel_crtc(crtc);
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011486 mmio_flip->rotation = crtc->primary->state->rotation;
Chris Wilsonb2cfe0a2015-04-27 13:41:16 +010011487
11488 INIT_WORK(&mmio_flip->work, intel_mmio_flip_work_func);
11489 schedule_work(&mmio_flip->work);
Ander Conselvan de Oliveira536f5b52014-11-06 11:03:40 +020011490
Sourab Gupta84c33a62014-06-02 16:47:17 +053011491 return 0;
11492}
11493
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011494static int intel_default_queue_flip(struct drm_device *dev,
11495 struct drm_crtc *crtc,
11496 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011497 struct drm_i915_gem_object *obj,
John Harrison6258fbe2015-05-29 17:43:48 +010011498 struct drm_i915_gem_request *req,
Keith Packarded8d1972013-07-22 18:49:58 -070011499 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011500{
11501 return -ENODEV;
11502}
11503
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011504static bool __intel_pageflip_stall_check(struct drm_device *dev,
11505 struct drm_crtc *crtc)
11506{
11507 struct drm_i915_private *dev_priv = dev->dev_private;
11508 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11509 struct intel_unpin_work *work = intel_crtc->unpin_work;
11510 u32 addr;
11511
11512 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
11513 return true;
11514
Chris Wilson908565c2015-08-12 13:08:22 +010011515 if (atomic_read(&work->pending) < INTEL_FLIP_PENDING)
11516 return false;
11517
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011518 if (!work->enable_stall_check)
11519 return false;
11520
11521 if (work->flip_ready_vblank == 0) {
Daniel Vetter3a8a9462014-11-26 14:39:48 +010011522 if (work->flip_queued_req &&
11523 !i915_gem_request_completed(work->flip_queued_req, true))
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011524 return false;
11525
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011526 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011527 }
11528
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011529 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011530 return false;
11531
11532 /* Potential stall - if we see that the flip has happened,
11533 * assume a missed interrupt. */
11534 if (INTEL_INFO(dev)->gen >= 4)
11535 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
11536 else
11537 addr = I915_READ(DSPADDR(intel_crtc->plane));
11538
11539 /* There is a potential issue here with a false positive after a flip
11540 * to the same address. We could address this by checking for a
11541 * non-incrementing frame counter.
11542 */
11543 return addr == work->gtt_offset;
11544}
11545
11546void intel_check_page_flip(struct drm_device *dev, int pipe)
11547{
11548 struct drm_i915_private *dev_priv = dev->dev_private;
11549 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11550 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011551 struct intel_unpin_work *work;
Daniel Vetterf3260382014-09-15 14:55:23 +020011552
Dave Gordon6c51d462015-03-06 15:34:26 +000011553 WARN_ON(!in_interrupt());
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011554
11555 if (crtc == NULL)
11556 return;
11557
Daniel Vetterf3260382014-09-15 14:55:23 +020011558 spin_lock(&dev->event_lock);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011559 work = intel_crtc->unpin_work;
11560 if (work != NULL && __intel_pageflip_stall_check(dev, crtc)) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011561 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
Chris Wilson6ad790c2015-04-07 16:20:31 +010011562 work->flip_queued_vblank, drm_vblank_count(dev, pipe));
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011563 page_flip_completed(intel_crtc);
Chris Wilson6ad790c2015-04-07 16:20:31 +010011564 work = NULL;
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011565 }
Chris Wilson6ad790c2015-04-07 16:20:31 +010011566 if (work != NULL &&
11567 drm_vblank_count(dev, pipe) - work->flip_queued_vblank > 1)
11568 intel_queue_rps_boost_for_request(dev, work->flip_queued_req);
Daniel Vetterf3260382014-09-15 14:55:23 +020011569 spin_unlock(&dev->event_lock);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011570}
11571
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011572static int intel_crtc_page_flip(struct drm_crtc *crtc,
11573 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -070011574 struct drm_pending_vblank_event *event,
11575 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011576{
11577 struct drm_device *dev = crtc->dev;
11578 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -070011579 struct drm_framebuffer *old_fb = crtc->primary->fb;
Matt Roper2ff8fde2014-07-08 07:50:07 -070011580 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011581 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gustavo Padovan455a6802014-12-01 15:40:11 -080011582 struct drm_plane *primary = crtc->primary;
Daniel Vettera071fa02014-06-18 23:28:09 +020011583 enum pipe pipe = intel_crtc->pipe;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011584 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +010011585 struct intel_engine_cs *ring;
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011586 bool mmio_flip;
John Harrison91af1272015-06-18 13:14:56 +010011587 struct drm_i915_gem_request *request = NULL;
Chris Wilson52e68632010-08-08 10:15:59 +010011588 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011589
Matt Roper2ff8fde2014-07-08 07:50:07 -070011590 /*
11591 * drm_mode_page_flip_ioctl() should already catch this, but double
11592 * check to be safe. In the future we may enable pageflipping from
11593 * a disabled primary plane.
11594 */
11595 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
11596 return -EBUSY;
11597
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011598 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -070011599 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011600 return -EINVAL;
11601
11602 /*
11603 * TILEOFF/LINOFF registers can't be changed via MI display flips.
11604 * Note that pitch changes could also affect these register.
11605 */
11606 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -070011607 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
11608 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +030011609 return -EINVAL;
11610
Chris Wilsonf900db42014-02-20 09:26:13 +000011611 if (i915_terminally_wedged(&dev_priv->gpu_error))
11612 goto out_hang;
11613
Daniel Vetterb14c5672013-09-19 12:18:32 +020011614 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011615 if (work == NULL)
11616 return -ENOMEM;
11617
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011618 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011619 work->crtc = crtc;
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011620 work->old_fb = old_fb;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011621 INIT_WORK(&work->work, intel_unpin_work_fn);
11622
Daniel Vetter87b6b102014-05-15 15:33:46 +020011623 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011624 if (ret)
11625 goto free_work;
11626
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011627 /* We borrow the event spin lock for protecting unpin_work */
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011628 spin_lock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011629 if (intel_crtc->unpin_work) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011630 /* Before declaring the flip queue wedged, check if
11631 * the hardware completed the operation behind our backs.
11632 */
11633 if (__intel_pageflip_stall_check(dev, crtc)) {
11634 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
11635 page_flip_completed(intel_crtc);
11636 } else {
11637 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011638 spin_unlock_irq(&dev->event_lock);
Chris Wilson468f0b42010-05-27 13:18:13 +010011639
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011640 drm_crtc_vblank_put(crtc);
11641 kfree(work);
11642 return -EBUSY;
11643 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011644 }
11645 intel_crtc->unpin_work = work;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011646 spin_unlock_irq(&dev->event_lock);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011647
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011648 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
11649 flush_workqueue(dev_priv->wq);
11650
Jesse Barnes75dfca82010-02-10 15:09:44 -080011651 /* Reference the objects for the scheduled work. */
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011652 drm_framebuffer_reference(work->old_fb);
Chris Wilson05394f32010-11-08 19:18:58 +000011653 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011654
Matt Roperf4510a22014-04-01 15:22:40 -070011655 crtc->primary->fb = fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011656 update_state_fb(crtc->primary);
Matt Roper1ed1f962015-01-30 16:22:36 -080011657
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011658 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011659
Chris Wilson89ed88b2015-02-16 14:31:49 +000011660 ret = i915_mutex_lock_interruptible(dev);
11661 if (ret)
11662 goto cleanup;
11663
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011664 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +020011665 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +010011666
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011667 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
Ville Syrjäläfd8f507c2015-09-18 20:03:42 +030011668 work->flip_count = I915_READ(PIPE_FLIPCOUNT_G4X(pipe)) + 1;
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +030011669
Wayne Boyer666a4532015-12-09 12:29:35 -080011670 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011671 ring = &dev_priv->ring[BCS];
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011672 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
Chris Wilson8e09bf82014-07-08 10:40:30 +010011673 /* vlv: DISPLAY_FLIP fails to change tiling */
11674 ring = NULL;
Chris Wilson48bf5b22014-12-27 09:48:28 +000011675 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Chris Wilson2a92d5b2014-07-08 10:40:29 +010011676 ring = &dev_priv->ring[BCS];
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011677 } else if (INTEL_INFO(dev)->gen >= 7) {
Chris Wilsonb4716182015-04-27 13:41:17 +010011678 ring = i915_gem_request_get_ring(obj->last_write_req);
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011679 if (ring == NULL || ring->id != RCS)
11680 ring = &dev_priv->ring[BCS];
11681 } else {
11682 ring = &dev_priv->ring[RCS];
11683 }
11684
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011685 mmio_flip = use_mmio_flip(ring, obj);
11686
11687 /* When using CS flips, we want to emit semaphores between rings.
11688 * However, when using mmio flips we will create a task to do the
11689 * synchronisation, so all we want here is to pin the framebuffer
11690 * into the display plane and skip any waits.
11691 */
Maarten Lankhorst7580d772015-08-18 13:40:06 +020011692 if (!mmio_flip) {
11693 ret = i915_gem_object_sync(obj, ring, &request);
11694 if (ret)
11695 goto cleanup_pending;
11696 }
11697
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011698 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb,
Maarten Lankhorst7580d772015-08-18 13:40:06 +020011699 crtc->primary->state);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011700 if (ret)
11701 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011702
Tvrtko Ursulindedf2782015-09-21 10:45:35 +010011703 work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary),
11704 obj, 0);
11705 work->gtt_offset += intel_crtc->dspaddr_offset;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011706
Chris Wilsoncf5d8a42015-04-07 16:20:26 +010011707 if (mmio_flip) {
Tvrtko Ursulin86efe242015-10-20 16:20:21 +010011708 ret = intel_queue_mmio_flip(dev, crtc, obj);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011709 if (ret)
11710 goto cleanup_unpin;
11711
John Harrisonf06cc1b2014-11-24 18:49:37 +000011712 i915_gem_request_assign(&work->flip_queued_req,
11713 obj->last_write_req);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011714 } else {
John Harrison6258fbe2015-05-29 17:43:48 +010011715 if (!request) {
11716 ret = i915_gem_request_alloc(ring, ring->default_context, &request);
11717 if (ret)
11718 goto cleanup_unpin;
11719 }
11720
11721 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request,
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011722 page_flip_flags);
11723 if (ret)
11724 goto cleanup_unpin;
11725
John Harrison6258fbe2015-05-29 17:43:48 +010011726 i915_gem_request_assign(&work->flip_queued_req, request);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011727 }
11728
John Harrison91af1272015-06-18 13:14:56 +010011729 if (request)
John Harrison75289872015-05-29 17:43:49 +010011730 i915_add_request_no_flush(request);
John Harrison91af1272015-06-18 13:14:56 +010011731
Daniel Vetter1e3feef2015-02-13 21:03:45 +010011732 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
Chris Wilsond6bbafa2014-09-05 07:13:24 +010011733 work->enable_stall_check = true;
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011734
Tvrtko Ursulinab8d6672015-02-02 15:44:15 +000011735 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011736 to_intel_plane(primary)->frontbuffer_bit);
Paulo Zanonic80ac852015-07-02 19:25:13 -030011737 mutex_unlock(&dev->struct_mutex);
Daniel Vettera071fa02014-06-18 23:28:09 +020011738
Paulo Zanonid029bca2015-10-15 10:44:46 -030011739 intel_fbc_deactivate(intel_crtc);
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011740 intel_frontbuffer_flip_prepare(dev,
11741 to_intel_plane(primary)->frontbuffer_bit);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011742
Jesse Barnese5510fa2010-07-01 16:48:37 -070011743 trace_i915_flip_request(intel_crtc->plane, obj);
11744
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011745 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +010011746
Ville Syrjälä4fa62c82014-04-15 21:41:38 +030011747cleanup_unpin:
Tvrtko Ursulin82bc3b22015-03-23 11:10:34 +000011748 intel_unpin_fb_obj(fb, crtc->primary->state);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011749cleanup_pending:
John Harrison91af1272015-06-18 13:14:56 +010011750 if (request)
11751 i915_gem_request_cancel(request);
Chris Wilsonb4a98e52012-11-01 09:26:26 +000011752 atomic_dec(&intel_crtc->unpin_work_count);
Chris Wilson89ed88b2015-02-16 14:31:49 +000011753 mutex_unlock(&dev->struct_mutex);
11754cleanup:
Matt Roperf4510a22014-04-01 15:22:40 -070011755 crtc->primary->fb = old_fb;
Matt Roperafd65eb2015-02-03 13:10:04 -080011756 update_state_fb(crtc->primary);
Chris Wilson96b099f2010-06-07 14:03:04 +010011757
Chris Wilson89ed88b2015-02-16 14:31:49 +000011758 drm_gem_object_unreference_unlocked(&obj->base);
11759 drm_framebuffer_unreference(work->old_fb);
11760
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011761 spin_lock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011762 intel_crtc->unpin_work = NULL;
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011763 spin_unlock_irq(&dev->event_lock);
Chris Wilson96b099f2010-06-07 14:03:04 +010011764
Daniel Vetter87b6b102014-05-15 15:33:46 +020011765 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -070011766free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +010011767 kfree(work);
11768
Chris Wilsonf900db42014-02-20 09:26:13 +000011769 if (ret == -EIO) {
Maarten Lankhorst02e0efb2015-06-12 11:15:40 +020011770 struct drm_atomic_state *state;
11771 struct drm_plane_state *plane_state;
11772
Chris Wilsonf900db42014-02-20 09:26:13 +000011773out_hang:
Maarten Lankhorst02e0efb2015-06-12 11:15:40 +020011774 state = drm_atomic_state_alloc(dev);
11775 if (!state)
11776 return -ENOMEM;
11777 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
11778
11779retry:
11780 plane_state = drm_atomic_get_plane_state(state, primary);
11781 ret = PTR_ERR_OR_ZERO(plane_state);
11782 if (!ret) {
11783 drm_atomic_set_fb_for_plane(plane_state, fb);
11784
11785 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
11786 if (!ret)
11787 ret = drm_atomic_commit(state);
11788 }
11789
11790 if (ret == -EDEADLK) {
11791 drm_modeset_backoff(state->acquire_ctx);
11792 drm_atomic_state_clear(state);
11793 goto retry;
11794 }
11795
11796 if (ret)
11797 drm_atomic_state_free(state);
11798
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011799 if (ret == 0 && event) {
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011800 spin_lock_irq(&dev->event_lock);
Daniel Vettera071fa02014-06-18 23:28:09 +020011801 drm_send_vblank_event(dev, pipe, event);
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020011802 spin_unlock_irq(&dev->event_lock);
Chris Wilsonf0d3dad2014-09-07 16:51:12 +010011803 }
Chris Wilsonf900db42014-02-20 09:26:13 +000011804 }
Chris Wilson96b099f2010-06-07 14:03:04 +010011805 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -050011806}
11807
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011808
11809/**
11810 * intel_wm_need_update - Check whether watermarks need updating
11811 * @plane: drm plane
11812 * @state: new plane state
11813 *
11814 * Check current plane state versus the new one to determine whether
11815 * watermarks need to be recalculated.
11816 *
11817 * Returns true or false.
11818 */
11819static bool intel_wm_need_update(struct drm_plane *plane,
11820 struct drm_plane_state *state)
11821{
Matt Roperd21fbe82015-09-24 15:53:12 -070011822 struct intel_plane_state *new = to_intel_plane_state(state);
11823 struct intel_plane_state *cur = to_intel_plane_state(plane->state);
11824
11825 /* Update watermarks on tiling or size changes. */
Maarten Lankhorst92826fc2015-12-03 13:49:13 +010011826 if (new->visible != cur->visible)
11827 return true;
11828
11829 if (!cur->base.fb || !new->base.fb)
11830 return false;
11831
11832 if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] ||
11833 cur->base.rotation != new->base.rotation ||
Matt Roperd21fbe82015-09-24 15:53:12 -070011834 drm_rect_width(&new->src) != drm_rect_width(&cur->src) ||
11835 drm_rect_height(&new->src) != drm_rect_height(&cur->src) ||
11836 drm_rect_width(&new->dst) != drm_rect_width(&cur->dst) ||
11837 drm_rect_height(&new->dst) != drm_rect_height(&cur->dst))
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011838 return true;
11839
11840 return false;
11841}
11842
Matt Roperd21fbe82015-09-24 15:53:12 -070011843static bool needs_scaling(struct intel_plane_state *state)
11844{
11845 int src_w = drm_rect_width(&state->src) >> 16;
11846 int src_h = drm_rect_height(&state->src) >> 16;
11847 int dst_w = drm_rect_width(&state->dst);
11848 int dst_h = drm_rect_height(&state->dst);
11849
11850 return (src_w != dst_w || src_h != dst_h);
11851}
11852
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011853int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
11854 struct drm_plane_state *plane_state)
11855{
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +010011856 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state);
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011857 struct drm_crtc *crtc = crtc_state->crtc;
11858 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11859 struct drm_plane *plane = plane_state->plane;
11860 struct drm_device *dev = crtc->dev;
11861 struct drm_i915_private *dev_priv = dev->dev_private;
11862 struct intel_plane_state *old_plane_state =
11863 to_intel_plane_state(plane->state);
11864 int idx = intel_crtc->base.base.id, ret;
11865 int i = drm_plane_index(plane);
11866 bool mode_changed = needs_modeset(crtc_state);
11867 bool was_crtc_enabled = crtc->state->active;
11868 bool is_crtc_enabled = crtc_state->active;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011869 bool turn_off, turn_on, visible, was_visible;
11870 struct drm_framebuffer *fb = plane_state->fb;
11871
11872 if (crtc_state && INTEL_INFO(dev)->gen >= 9 &&
11873 plane->type != DRM_PLANE_TYPE_CURSOR) {
11874 ret = skl_update_scaler_plane(
11875 to_intel_crtc_state(crtc_state),
11876 to_intel_plane_state(plane_state));
11877 if (ret)
11878 return ret;
11879 }
11880
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011881 was_visible = old_plane_state->visible;
11882 visible = to_intel_plane_state(plane_state)->visible;
11883
11884 if (!was_crtc_enabled && WARN_ON(was_visible))
11885 was_visible = false;
11886
Maarten Lankhorst35c08f42015-12-03 14:31:07 +010011887 /*
11888 * Visibility is calculated as if the crtc was on, but
11889 * after scaler setup everything depends on it being off
11890 * when the crtc isn't active.
11891 */
11892 if (!is_crtc_enabled)
11893 to_intel_plane_state(plane_state)->visible = visible = false;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011894
11895 if (!was_visible && !visible)
11896 return 0;
11897
11898 turn_off = was_visible && (!visible || mode_changed);
11899 turn_on = visible && (!was_visible || mode_changed);
11900
11901 DRM_DEBUG_ATOMIC("[CRTC:%i] has [PLANE:%i] with fb %i\n", idx,
11902 plane->base.id, fb ? fb->base.id : -1);
11903
11904 DRM_DEBUG_ATOMIC("[PLANE:%i] visible %i -> %i, off %i, on %i, ms %i\n",
11905 plane->base.id, was_visible, visible,
11906 turn_off, turn_on, mode_changed);
11907
Maarten Lankhorst92826fc2015-12-03 13:49:13 +010011908 if (turn_on || turn_off) {
11909 pipe_config->wm_changed = true;
11910
Ville Syrjälä852eb002015-06-24 22:00:07 +030011911 /* must disable cxsr around plane enable/disable */
11912 if (plane->type != DRM_PLANE_TYPE_CURSOR) {
11913 if (is_crtc_enabled)
11914 intel_crtc->atomic.wait_vblank = true;
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +010011915 pipe_config->disable_cxsr = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +030011916 }
11917 } else if (intel_wm_need_update(plane, plane_state)) {
Maarten Lankhorst92826fc2015-12-03 13:49:13 +010011918 pipe_config->wm_changed = true;
Ville Syrjälä852eb002015-06-24 22:00:07 +030011919 }
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011920
Rodrigo Vivi8be6ca82015-08-24 16:38:23 -070011921 if (visible || was_visible)
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030011922 intel_crtc->atomic.fb_bits |=
11923 to_intel_plane(plane)->frontbuffer_bit;
11924
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011925 switch (plane->type) {
11926 case DRM_PLANE_TYPE_PRIMARY:
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011927 intel_crtc->atomic.pre_disable_primary = turn_off;
11928 intel_crtc->atomic.post_enable_primary = turn_on;
11929
Rodrigo Vivi066cf552015-06-26 13:55:54 -070011930 if (turn_off) {
11931 /*
11932 * FIXME: Actually if we will still have any other
11933 * plane enabled on the pipe we could let IPS enabled
11934 * still, but for now lets consider that when we make
11935 * primary invisible by setting DSPCNTR to 0 on
11936 * update_primary_plane function IPS needs to be
11937 * disable.
11938 */
11939 intel_crtc->atomic.disable_ips = true;
11940
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011941 intel_crtc->atomic.disable_fbc = true;
Rodrigo Vivi066cf552015-06-26 13:55:54 -070011942 }
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011943
11944 /*
11945 * FBC does not work on some platforms for rotated
11946 * planes, so disable it when rotation is not 0 and
11947 * update it when rotation is set back to 0.
11948 *
11949 * FIXME: This is redundant with the fbc update done in
11950 * the primary plane enable function except that that
11951 * one is done too late. We eventually need to unify
11952 * this.
11953 */
11954
11955 if (visible &&
11956 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11957 dev_priv->fbc.crtc == intel_crtc &&
11958 plane_state->rotation != BIT(DRM_ROTATE_0))
11959 intel_crtc->atomic.disable_fbc = true;
11960
11961 /*
11962 * BDW signals flip done immediately if the plane
11963 * is disabled, even if the plane enable is already
11964 * armed to occur at the next vblank :(
11965 */
11966 if (turn_on && IS_BROADWELL(dev))
11967 intel_crtc->atomic.wait_vblank = true;
11968
11969 intel_crtc->atomic.update_fbc |= visible || mode_changed;
11970 break;
11971 case DRM_PLANE_TYPE_CURSOR:
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011972 break;
11973 case DRM_PLANE_TYPE_OVERLAY:
Matt Roperd21fbe82015-09-24 15:53:12 -070011974 /*
11975 * WaCxSRDisabledForSpriteScaling:ivb
11976 *
11977 * cstate->update_wm was already set above, so this flag will
11978 * take effect when we commit and program watermarks.
11979 */
11980 if (IS_IVYBRIDGE(dev) &&
11981 needs_scaling(to_intel_plane_state(plane_state)) &&
11982 !needs_scaling(old_plane_state)) {
11983 to_intel_crtc_state(crtc_state)->disable_lp_wm = true;
11984 } else if (turn_off && !mode_changed) {
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011985 intel_crtc->atomic.wait_vblank = true;
11986 intel_crtc->atomic.update_sprite_watermarks |=
11987 1 << i;
11988 }
Matt Roperd21fbe82015-09-24 15:53:12 -070011989
11990 break;
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020011991 }
11992 return 0;
11993}
11994
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020011995static bool encoders_cloneable(const struct intel_encoder *a,
11996 const struct intel_encoder *b)
11997{
11998 /* masks could be asymmetric, so check both ways */
11999 return a == b || (a->cloneable & (1 << b->type) &&
12000 b->cloneable & (1 << a->type));
12001}
12002
12003static bool check_single_encoder_cloning(struct drm_atomic_state *state,
12004 struct intel_crtc *crtc,
12005 struct intel_encoder *encoder)
12006{
12007 struct intel_encoder *source_encoder;
12008 struct drm_connector *connector;
12009 struct drm_connector_state *connector_state;
12010 int i;
12011
12012 for_each_connector_in_state(state, connector, connector_state, i) {
12013 if (connector_state->crtc != &crtc->base)
12014 continue;
12015
12016 source_encoder =
12017 to_intel_encoder(connector_state->best_encoder);
12018 if (!encoders_cloneable(encoder, source_encoder))
12019 return false;
12020 }
12021
12022 return true;
12023}
12024
12025static bool check_encoder_cloning(struct drm_atomic_state *state,
12026 struct intel_crtc *crtc)
12027{
12028 struct intel_encoder *encoder;
12029 struct drm_connector *connector;
12030 struct drm_connector_state *connector_state;
12031 int i;
12032
12033 for_each_connector_in_state(state, connector, connector_state, i) {
12034 if (connector_state->crtc != &crtc->base)
12035 continue;
12036
12037 encoder = to_intel_encoder(connector_state->best_encoder);
12038 if (!check_single_encoder_cloning(state, crtc, encoder))
12039 return false;
12040 }
12041
12042 return true;
12043}
12044
12045static int intel_crtc_atomic_check(struct drm_crtc *crtc,
12046 struct drm_crtc_state *crtc_state)
12047{
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +020012048 struct drm_device *dev = crtc->dev;
Maarten Lankhorstad421372015-06-15 12:33:42 +020012049 struct drm_i915_private *dev_priv = dev->dev_private;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012050 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +020012051 struct intel_crtc_state *pipe_config =
12052 to_intel_crtc_state(crtc_state);
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012053 struct drm_atomic_state *state = crtc_state->state;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012054 int ret;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012055 bool mode_changed = needs_modeset(crtc_state);
12056
12057 if (mode_changed && !check_encoder_cloning(state, intel_crtc)) {
12058 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
12059 return -EINVAL;
12060 }
12061
Ville Syrjälä852eb002015-06-24 22:00:07 +030012062 if (mode_changed && !crtc_state->active)
Maarten Lankhorst92826fc2015-12-03 13:49:13 +010012063 pipe_config->wm_changed = true;
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +020012064
Maarten Lankhorstad421372015-06-15 12:33:42 +020012065 if (mode_changed && crtc_state->enable &&
12066 dev_priv->display.crtc_compute_clock &&
12067 !WARN_ON(pipe_config->shared_dpll != DPLL_ID_PRIVATE)) {
12068 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
12069 pipe_config);
12070 if (ret)
12071 return ret;
12072 }
12073
Maarten Lankhorste435d6e2015-07-13 16:30:15 +020012074 ret = 0;
Matt Roper86c8bbb2015-09-24 15:53:16 -070012075 if (dev_priv->display.compute_pipe_wm) {
12076 ret = dev_priv->display.compute_pipe_wm(intel_crtc, state);
12077 if (ret)
12078 return ret;
12079 }
12080
Maarten Lankhorste435d6e2015-07-13 16:30:15 +020012081 if (INTEL_INFO(dev)->gen >= 9) {
12082 if (mode_changed)
12083 ret = skl_update_scaler_crtc(pipe_config);
12084
12085 if (!ret)
12086 ret = intel_atomic_setup_scalers(dev, intel_crtc,
12087 pipe_config);
12088 }
12089
12090 return ret;
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012091}
12092
Jani Nikula65b38e02015-04-13 11:26:56 +030012093static const struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010012094 .mode_set_base_atomic = intel_pipe_set_base_atomic,
12095 .load_lut = intel_crtc_load_lut,
Matt Roperea2c67b2014-12-23 10:41:52 -080012096 .atomic_begin = intel_begin_crtc_commit,
12097 .atomic_flush = intel_finish_crtc_commit,
Maarten Lankhorst6d3a1ce2015-06-15 12:33:40 +020012098 .atomic_check = intel_crtc_atomic_check,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010012099};
12100
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020012101static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
12102{
12103 struct intel_connector *connector;
12104
12105 for_each_intel_connector(dev, connector) {
12106 if (connector->base.encoder) {
12107 connector->base.state->best_encoder =
12108 connector->base.encoder;
12109 connector->base.state->crtc =
12110 connector->base.encoder->crtc;
12111 } else {
12112 connector->base.state->best_encoder = NULL;
12113 connector->base.state->crtc = NULL;
12114 }
12115 }
12116}
12117
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012118static void
Robin Schroereba905b2014-05-18 02:24:50 +020012119connected_sink_compute_bpp(struct intel_connector *connector,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012120 struct intel_crtc_state *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012121{
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012122 int bpp = pipe_config->pipe_bpp;
12123
12124 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
12125 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030012126 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012127
12128 /* Don't use an invalid EDID bpc value */
12129 if (connector->base.display_info.bpc &&
12130 connector->base.display_info.bpc * 3 < bpp) {
12131 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
12132 bpp, connector->base.display_info.bpc*3);
12133 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
12134 }
12135
12136 /* Clamp bpp to 8 on screens without EDID 1.4 */
12137 if (connector->base.display_info.bpc == 0 && bpp > 24) {
12138 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
12139 bpp);
12140 pipe_config->pipe_bpp = 24;
12141 }
12142}
12143
12144static int
12145compute_baseline_pipe_bpp(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012146 struct intel_crtc_state *pipe_config)
Daniel Vetter050f7ae2013-06-02 13:26:23 +020012147{
12148 struct drm_device *dev = crtc->base.dev;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012149 struct drm_atomic_state *state;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012150 struct drm_connector *connector;
12151 struct drm_connector_state *connector_state;
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012152 int bpp, i;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012153
Wayne Boyer666a4532015-12-09 12:29:35 -080012154 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)))
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012155 bpp = 10*3;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012156 else if (INTEL_INFO(dev)->gen >= 5)
12157 bpp = 12*3;
12158 else
12159 bpp = 8*3;
12160
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012161
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012162 pipe_config->pipe_bpp = bpp;
12163
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012164 state = pipe_config->base.state;
12165
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012166 /* Clamp display bpp to EDID value */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012167 for_each_connector_in_state(state, connector, connector_state, i) {
12168 if (connector_state->crtc != &crtc->base)
Ander Conselvan de Oliveira14860172015-03-20 16:18:09 +020012169 continue;
12170
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012171 connected_sink_compute_bpp(to_intel_connector(connector),
12172 pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012173 }
12174
12175 return bpp;
12176}
12177
Daniel Vetter644db712013-09-19 14:53:58 +020012178static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
12179{
12180 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
12181 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +010012182 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +020012183 mode->crtc_hdisplay, mode->crtc_hsync_start,
12184 mode->crtc_hsync_end, mode->crtc_htotal,
12185 mode->crtc_vdisplay, mode->crtc_vsync_start,
12186 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
12187}
12188
Daniel Vetterc0b03412013-05-28 12:05:54 +020012189static void intel_dump_pipe_config(struct intel_crtc *crtc,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012190 struct intel_crtc_state *pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020012191 const char *context)
12192{
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012193 struct drm_device *dev = crtc->base.dev;
12194 struct drm_plane *plane;
12195 struct intel_plane *intel_plane;
12196 struct intel_plane_state *state;
12197 struct drm_framebuffer *fb;
12198
12199 DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id,
12200 context, pipe_config, pipe_name(crtc->pipe));
Daniel Vetterc0b03412013-05-28 12:05:54 +020012201
12202 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
12203 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
12204 pipe_config->pipe_bpp, pipe_config->dither);
12205 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
12206 pipe_config->has_pch_encoder,
12207 pipe_config->fdi_lanes,
12208 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
12209 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
12210 pipe_config->fdi_m_n.tu);
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012211 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 +030012212 pipe_config->has_dp_encoder,
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012213 pipe_config->lane_count,
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012214 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
12215 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
12216 pipe_config->dp_m_n.tu);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012217
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012218 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 -070012219 pipe_config->has_dp_encoder,
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012220 pipe_config->lane_count,
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012221 pipe_config->dp_m2_n2.gmch_m,
12222 pipe_config->dp_m2_n2.gmch_n,
12223 pipe_config->dp_m2_n2.link_m,
12224 pipe_config->dp_m2_n2.link_n,
12225 pipe_config->dp_m2_n2.tu);
12226
Daniel Vetter55072d12014-11-20 16:10:28 +010012227 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
12228 pipe_config->has_audio,
12229 pipe_config->has_infoframe);
12230
Daniel Vetterc0b03412013-05-28 12:05:54 +020012231 DRM_DEBUG_KMS("requested mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012232 drm_mode_debug_printmodeline(&pipe_config->base.mode);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012233 DRM_DEBUG_KMS("adjusted mode:\n");
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012234 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
12235 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +030012236 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +030012237 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
12238 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Tvrtko Ursulin0ec463d2015-05-13 16:51:08 +010012239 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
12240 crtc->num_scalers,
12241 pipe_config->scaler_state.scaler_users,
12242 pipe_config->scaler_state.scaler_id);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012243 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
12244 pipe_config->gmch_pfit.control,
12245 pipe_config->gmch_pfit.pgm_ratios,
12246 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +010012247 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +020012248 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +010012249 pipe_config->pch_pfit.size,
12250 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -030012251 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +030012252 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012253
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012254 if (IS_BROXTON(dev)) {
Imre Deak05712c12015-06-18 17:25:54 +030012255 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012256 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
Imre Deakc8453332015-06-18 17:25:55 +030012257 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012258 pipe_config->ddi_pll_sel,
12259 pipe_config->dpll_hw_state.ebb0,
Imre Deak05712c12015-06-18 17:25:54 +030012260 pipe_config->dpll_hw_state.ebb4,
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012261 pipe_config->dpll_hw_state.pll0,
12262 pipe_config->dpll_hw_state.pll1,
12263 pipe_config->dpll_hw_state.pll2,
12264 pipe_config->dpll_hw_state.pll3,
12265 pipe_config->dpll_hw_state.pll6,
12266 pipe_config->dpll_hw_state.pll8,
Imre Deak05712c12015-06-18 17:25:54 +030012267 pipe_config->dpll_hw_state.pll9,
Imre Deakc8453332015-06-18 17:25:55 +030012268 pipe_config->dpll_hw_state.pll10,
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012269 pipe_config->dpll_hw_state.pcsdw12);
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070012270 } else if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012271 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: "
12272 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
12273 pipe_config->ddi_pll_sel,
12274 pipe_config->dpll_hw_state.ctrl1,
12275 pipe_config->dpll_hw_state.cfgcr1,
12276 pipe_config->dpll_hw_state.cfgcr2);
12277 } else if (HAS_DDI(dev)) {
Maarten Lankhorst00490c22015-11-16 14:42:12 +010012278 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: wrpll: 0x%x spll: 0x%x\n",
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012279 pipe_config->ddi_pll_sel,
Maarten Lankhorst00490c22015-11-16 14:42:12 +010012280 pipe_config->dpll_hw_state.wrpll,
12281 pipe_config->dpll_hw_state.spll);
Tvrtko Ursulin415ff0f2015-05-14 13:38:31 +010012282 } else {
12283 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
12284 "fp0: 0x%x, fp1: 0x%x\n",
12285 pipe_config->dpll_hw_state.dpll,
12286 pipe_config->dpll_hw_state.dpll_md,
12287 pipe_config->dpll_hw_state.fp0,
12288 pipe_config->dpll_hw_state.fp1);
12289 }
12290
Chandra Konduru6a60cd82015-04-07 15:28:40 -070012291 DRM_DEBUG_KMS("planes on this crtc\n");
12292 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
12293 intel_plane = to_intel_plane(plane);
12294 if (intel_plane->pipe != crtc->pipe)
12295 continue;
12296
12297 state = to_intel_plane_state(plane->state);
12298 fb = state->base.fb;
12299 if (!fb) {
12300 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d "
12301 "disabled, scaler_id = %d\n",
12302 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12303 plane->base.id, intel_plane->pipe,
12304 (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1,
12305 drm_plane_index(plane), state->scaler_id);
12306 continue;
12307 }
12308
12309 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled",
12310 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12311 plane->base.id, intel_plane->pipe,
12312 crtc->base.primary == plane ? 0 : intel_plane->plane + 1,
12313 drm_plane_index(plane));
12314 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x",
12315 fb->base.id, fb->width, fb->height, fb->pixel_format);
12316 DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n",
12317 state->scaler_id,
12318 state->src.x1 >> 16, state->src.y1 >> 16,
12319 drm_rect_width(&state->src) >> 16,
12320 drm_rect_height(&state->src) >> 16,
12321 state->dst.x1, state->dst.y1,
12322 drm_rect_width(&state->dst), drm_rect_height(&state->dst));
12323 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020012324}
12325
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012326static bool check_digital_port_conflicts(struct drm_atomic_state *state)
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012327{
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012328 struct drm_device *dev = state->dev;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012329 struct drm_connector *connector;
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012330 unsigned int used_ports = 0;
12331
12332 /*
12333 * Walk the connector list instead of the encoder
12334 * list to detect the problem on ddi platforms
12335 * where there's just one encoder per digital port.
12336 */
Ville Syrjälä0bff4852015-12-10 18:22:31 +020012337 drm_for_each_connector(connector, dev) {
12338 struct drm_connector_state *connector_state;
12339 struct intel_encoder *encoder;
12340
12341 connector_state = drm_atomic_get_existing_connector_state(state, connector);
12342 if (!connector_state)
12343 connector_state = connector->state;
12344
Ander Conselvan de Oliveira5448a002015-04-02 14:47:59 +030012345 if (!connector_state->best_encoder)
12346 continue;
12347
12348 encoder = to_intel_encoder(connector_state->best_encoder);
12349
12350 WARN_ON(!connector_state->crtc);
Ville Syrjälä00f0b372014-12-02 14:10:46 +020012351
12352 switch (encoder->type) {
12353 unsigned int port_mask;
12354 case INTEL_OUTPUT_UNKNOWN:
12355 if (WARN_ON(!HAS_DDI(dev)))
12356 break;
12357 case INTEL_OUTPUT_DISPLAYPORT:
12358 case INTEL_OUTPUT_HDMI:
12359 case INTEL_OUTPUT_EDP:
12360 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
12361
12362 /* the same port mustn't appear more than once */
12363 if (used_ports & port_mask)
12364 return false;
12365
12366 used_ports |= port_mask;
12367 default:
12368 break;
12369 }
12370 }
12371
12372 return true;
12373}
12374
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012375static void
12376clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12377{
12378 struct drm_crtc_state tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012379 struct intel_crtc_scaler_state scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012380 struct intel_dpll_hw_state dpll_hw_state;
12381 enum intel_dpll_id shared_dpll;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012382 uint32_t ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012383 bool force_thru;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012384
Ander Conselvan de Oliveira7546a382015-05-20 09:03:27 +030012385 /* FIXME: before the switch to atomic started, a new pipe_config was
12386 * kzalloc'd. Code that depends on any field being zero should be
12387 * fixed, so that the crtc_state can be safely duplicated. For now,
12388 * only fields that are know to not cause problems are preserved. */
12389
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012390 tmp_state = crtc_state->base;
Chandra Konduru663a3642015-04-07 15:28:41 -070012391 scaler_state = crtc_state->scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012392 shared_dpll = crtc_state->shared_dpll;
12393 dpll_hw_state = crtc_state->dpll_hw_state;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012394 ddi_pll_sel = crtc_state->ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012395 force_thru = crtc_state->pch_pfit.force_thru;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012396
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012397 memset(crtc_state, 0, sizeof *crtc_state);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012398
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012399 crtc_state->base = tmp_state;
Chandra Konduru663a3642015-04-07 15:28:41 -070012400 crtc_state->scaler_state = scaler_state;
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030012401 crtc_state->shared_dpll = shared_dpll;
12402 crtc_state->dpll_hw_state = dpll_hw_state;
Ander Conselvan de Oliveira8504c742015-05-15 11:51:50 +030012403 crtc_state->ddi_pll_sel = ddi_pll_sel;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +020012404 crtc_state->pch_pfit.force_thru = force_thru;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012405}
12406
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012407static int
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012408intel_modeset_pipe_config(struct drm_crtc *crtc,
Maarten Lankhorstb3592832015-06-15 12:33:38 +020012409 struct intel_crtc_state *pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +020012410{
Maarten Lankhorstb3592832015-06-15 12:33:38 +020012411 struct drm_atomic_state *state = pipe_config->base.state;
Daniel Vetter7758a112012-07-08 19:40:39 +020012412 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012413 struct drm_connector *connector;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012414 struct drm_connector_state *connector_state;
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012415 int base_bpp, ret = -EINVAL;
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012416 int i;
Daniel Vettere29c22c2013-02-21 00:00:16 +010012417 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +020012418
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020012419 clear_intel_crtc_state(pipe_config);
Daniel Vetter7758a112012-07-08 19:40:39 +020012420
Daniel Vettere143a212013-07-04 12:01:15 +020012421 pipe_config->cpu_transcoder =
12422 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010012423
Imre Deak2960bc92013-07-30 13:36:32 +030012424 /*
12425 * Sanitize sync polarity flags based on requested ones. If neither
12426 * positive or negative polarity is requested, treat this as meaning
12427 * negative polarity.
12428 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012429 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012430 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012431 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012432
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012433 if (!(pipe_config->base.adjusted_mode.flags &
Imre Deak2960bc92013-07-30 13:36:32 +030012434 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012435 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
Imre Deak2960bc92013-07-30 13:36:32 +030012436
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012437 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
12438 pipe_config);
12439 if (base_bpp < 0)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012440 goto fail;
12441
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012442 /*
12443 * Determine the real pipe dimensions. Note that stereo modes can
12444 * increase the actual pipe size due to the frame doubling and
12445 * insertion of additional space for blanks between the frame. This
12446 * is stored in the crtc timings. We use the requested mode to do this
12447 * computation to clearly distinguish it from the adjusted mode, which
12448 * can be changed by the connectors in the below retry loop.
12449 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012450 drm_crtc_get_hv_timing(&pipe_config->base.mode,
Gustavo Padovanecb7e162014-12-01 15:40:09 -080012451 &pipe_config->pipe_src_w,
12452 &pipe_config->pipe_src_h);
Ville Syrjäläe41a56b2013-10-01 22:52:14 +030012453
Daniel Vettere29c22c2013-02-21 00:00:16 +010012454encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +020012455 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +020012456 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +020012457 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +020012458
Daniel Vetter135c81b2013-07-21 21:37:09 +020012459 /* Fill in default crtc timings, allow encoders to overwrite them. */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012460 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
12461 CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +020012462
Daniel Vetter7758a112012-07-08 19:40:39 +020012463 /* Pass our mode to the connectors and the CRTC to give them a chance to
12464 * adjust it according to limitations or connector properties, and also
12465 * a chance to reject the mode entirely.
12466 */
Ander Conselvan de Oliveirada3ced2982015-04-21 17:12:59 +030012467 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira0b901872015-03-20 16:18:08 +020012468 if (connector_state->crtc != crtc)
12469 continue;
12470
12471 encoder = to_intel_encoder(connector_state->best_encoder);
12472
Daniel Vetterefea6e82013-07-21 21:36:59 +020012473 if (!(encoder->compute_config(encoder, pipe_config))) {
12474 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +020012475 goto fail;
12476 }
12477 }
12478
Daniel Vetterff9a6752013-06-01 17:16:21 +020012479 /* Set default port clock if not overwritten by the encoder. Needs to be
12480 * done afterwards in case the encoder adjusts the mode. */
12481 if (!pipe_config->port_clock)
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012482 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
Damien Lespiau241bfc32013-09-25 16:45:37 +010012483 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +020012484
Daniel Vettera43f6e02013-06-07 23:10:32 +020012485 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +010012486 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +020012487 DRM_DEBUG_KMS("CRTC fixup failed\n");
12488 goto fail;
12489 }
Daniel Vettere29c22c2013-02-21 00:00:16 +010012490
12491 if (ret == RETRY) {
12492 if (WARN(!retry, "loop in pipe configuration computation\n")) {
12493 ret = -EINVAL;
12494 goto fail;
12495 }
12496
12497 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
12498 retry = false;
12499 goto encoder_retry;
12500 }
12501
Daniel Vettere8fa4272015-08-12 11:43:34 +020012502 /* Dithering seems to not pass-through bits correctly when it should, so
12503 * only enable it on 6bpc panels. */
12504 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
Daniel Vetter62f0ace2015-08-26 18:57:26 +020012505 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
Daniel Vetterd328c9d2015-04-10 16:22:37 +020012506 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010012507
Daniel Vetter7758a112012-07-08 19:40:39 +020012508fail:
Ander Conselvan de Oliveira548ee152015-04-21 17:13:02 +030012509 return ret;
Daniel Vetter7758a112012-07-08 19:40:39 +020012510}
12511
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012512static void
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020012513intel_modeset_update_crtc_state(struct drm_atomic_state *state)
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012514{
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030012515 struct drm_crtc *crtc;
12516 struct drm_crtc_state *crtc_state;
Maarten Lankhorst8a75d152015-07-13 16:30:14 +020012517 int i;
Daniel Vetterea9d7582012-07-10 10:42:52 +020012518
Ville Syrjälä76688512014-01-10 11:28:06 +020012519 /* Double check state. */
Maarten Lankhorst8a75d152015-07-13 16:30:14 +020012520 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst3cb480b2015-06-01 12:49:49 +020012521 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
Maarten Lankhorstfc467a222015-06-01 12:50:07 +020012522
12523 /* Update hwmode for vblank functions */
12524 if (crtc->state->active)
12525 crtc->hwmode = crtc->state->adjusted_mode;
12526 else
12527 crtc->hwmode.crtc_clock = 0;
Maarten Lankhorst61067a52015-09-23 16:29:36 +020012528
12529 /*
12530 * Update legacy state to satisfy fbc code. This can
12531 * be removed when fbc uses the atomic state.
12532 */
12533 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
12534 struct drm_plane_state *plane_state = crtc->primary->state;
12535
12536 crtc->primary->fb = plane_state->fb;
12537 crtc->x = plane_state->src_x >> 16;
12538 crtc->y = plane_state->src_y >> 16;
12539 }
Daniel Vetterea9d7582012-07-10 10:42:52 +020012540 }
Daniel Vetterea9d7582012-07-10 10:42:52 +020012541}
12542
Ville Syrjälä3bd26262013-09-06 23:29:02 +030012543static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +030012544{
Ville Syrjälä3bd26262013-09-06 23:29:02 +030012545 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +030012546
12547 if (clock1 == clock2)
12548 return true;
12549
12550 if (!clock1 || !clock2)
12551 return false;
12552
12553 diff = abs(clock1 - clock2);
12554
12555 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
12556 return true;
12557
12558 return false;
12559}
12560
Daniel Vetter25c5b262012-07-08 22:08:04 +020012561#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
12562 list_for_each_entry((intel_crtc), \
12563 &(dev)->mode_config.crtc_list, \
12564 base.head) \
Jani Nikula95150bd2015-11-24 21:21:56 +020012565 for_each_if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +020012566
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012567static bool
12568intel_compare_m_n(unsigned int m, unsigned int n,
12569 unsigned int m2, unsigned int n2,
12570 bool exact)
12571{
12572 if (m == m2 && n == n2)
12573 return true;
12574
12575 if (exact || !m || !n || !m2 || !n2)
12576 return false;
12577
12578 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
12579
Maarten Lankhorst31d10b52016-01-06 13:54:43 +010012580 if (n > n2) {
12581 while (n > n2) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012582 m2 <<= 1;
12583 n2 <<= 1;
12584 }
Maarten Lankhorst31d10b52016-01-06 13:54:43 +010012585 } else if (n < n2) {
12586 while (n < n2) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012587 m <<= 1;
12588 n <<= 1;
12589 }
12590 }
12591
Maarten Lankhorst31d10b52016-01-06 13:54:43 +010012592 if (n != n2)
12593 return false;
12594
12595 return intel_fuzzy_clock_check(m, m2);
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012596}
12597
12598static bool
12599intel_compare_link_m_n(const struct intel_link_m_n *m_n,
12600 struct intel_link_m_n *m2_n2,
12601 bool adjust)
12602{
12603 if (m_n->tu == m2_n2->tu &&
12604 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
12605 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
12606 intel_compare_m_n(m_n->link_m, m_n->link_n,
12607 m2_n2->link_m, m2_n2->link_n, !adjust)) {
12608 if (adjust)
12609 *m2_n2 = *m_n;
12610
12611 return true;
12612 }
12613
12614 return false;
12615}
12616
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012617static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020012618intel_pipe_config_compare(struct drm_device *dev,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020012619 struct intel_crtc_state *current_config,
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012620 struct intel_crtc_state *pipe_config,
12621 bool adjust)
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012622{
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012623 bool ret = true;
12624
12625#define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
12626 do { \
12627 if (!adjust) \
12628 DRM_ERROR(fmt, ##__VA_ARGS__); \
12629 else \
12630 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
12631 } while (0)
12632
Daniel Vetter66e985c2013-06-05 13:34:20 +020012633#define PIPE_CONF_CHECK_X(name) \
12634 if (current_config->name != pipe_config->name) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012635 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Daniel Vetter66e985c2013-06-05 13:34:20 +020012636 "(expected 0x%08x, found 0x%08x)\n", \
12637 current_config->name, \
12638 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012639 ret = false; \
Daniel Vetter66e985c2013-06-05 13:34:20 +020012640 }
12641
Daniel Vetter08a24032013-04-19 11:25:34 +020012642#define PIPE_CONF_CHECK_I(name) \
12643 if (current_config->name != pipe_config->name) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012644 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Daniel Vetter08a24032013-04-19 11:25:34 +020012645 "(expected %i, found %i)\n", \
12646 current_config->name, \
12647 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012648 ret = false; \
12649 }
12650
12651#define PIPE_CONF_CHECK_M_N(name) \
12652 if (!intel_compare_link_m_n(&current_config->name, \
12653 &pipe_config->name,\
12654 adjust)) { \
12655 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12656 "(expected tu %i gmch %i/%i link %i/%i, " \
12657 "found tu %i, gmch %i/%i link %i/%i)\n", \
12658 current_config->name.tu, \
12659 current_config->name.gmch_m, \
12660 current_config->name.gmch_n, \
12661 current_config->name.link_m, \
12662 current_config->name.link_n, \
12663 pipe_config->name.tu, \
12664 pipe_config->name.gmch_m, \
12665 pipe_config->name.gmch_n, \
12666 pipe_config->name.link_m, \
12667 pipe_config->name.link_n); \
12668 ret = false; \
12669 }
12670
12671#define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
12672 if (!intel_compare_link_m_n(&current_config->name, \
12673 &pipe_config->name, adjust) && \
12674 !intel_compare_link_m_n(&current_config->alt_name, \
12675 &pipe_config->name, adjust)) { \
12676 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12677 "(expected tu %i gmch %i/%i link %i/%i, " \
12678 "or tu %i gmch %i/%i link %i/%i, " \
12679 "found tu %i, gmch %i/%i link %i/%i)\n", \
12680 current_config->name.tu, \
12681 current_config->name.gmch_m, \
12682 current_config->name.gmch_n, \
12683 current_config->name.link_m, \
12684 current_config->name.link_n, \
12685 current_config->alt_name.tu, \
12686 current_config->alt_name.gmch_m, \
12687 current_config->alt_name.gmch_n, \
12688 current_config->alt_name.link_m, \
12689 current_config->alt_name.link_n, \
12690 pipe_config->name.tu, \
12691 pipe_config->name.gmch_m, \
12692 pipe_config->name.gmch_n, \
12693 pipe_config->name.link_m, \
12694 pipe_config->name.link_n); \
12695 ret = false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +010012696 }
12697
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012698/* This is required for BDW+ where there is only one set of registers for
12699 * switching between high and low RR.
12700 * This macro can be used whenever a comparison has to be made between one
12701 * hw state and multiple sw state variables.
12702 */
12703#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
12704 if ((current_config->name != pipe_config->name) && \
12705 (current_config->alt_name != pipe_config->name)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012706 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012707 "(expected %i or %i, found %i)\n", \
12708 current_config->name, \
12709 current_config->alt_name, \
12710 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012711 ret = false; \
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012712 }
12713
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012714#define PIPE_CONF_CHECK_FLAGS(name, mask) \
12715 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012716 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012717 "(expected %i, found %i)\n", \
12718 current_config->name & (mask), \
12719 pipe_config->name & (mask)); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012720 ret = false; \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012721 }
12722
Ville Syrjälä5e550652013-09-06 23:29:07 +030012723#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
12724 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012725 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
Ville Syrjälä5e550652013-09-06 23:29:07 +030012726 "(expected %i, found %i)\n", \
12727 current_config->name, \
12728 pipe_config->name); \
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012729 ret = false; \
Ville Syrjälä5e550652013-09-06 23:29:07 +030012730 }
12731
Daniel Vetterbb760062013-06-06 14:55:52 +020012732#define PIPE_CONF_QUIRK(quirk) \
12733 ((current_config->quirks | pipe_config->quirks) & (quirk))
12734
Daniel Vettereccb1402013-05-22 00:50:22 +020012735 PIPE_CONF_CHECK_I(cpu_transcoder);
12736
Daniel Vetter08a24032013-04-19 11:25:34 +020012737 PIPE_CONF_CHECK_I(has_pch_encoder);
12738 PIPE_CONF_CHECK_I(fdi_lanes);
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012739 PIPE_CONF_CHECK_M_N(fdi_m_n);
Daniel Vetter08a24032013-04-19 11:25:34 +020012740
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012741 PIPE_CONF_CHECK_I(has_dp_encoder);
Ville Syrjälä90a6b7b2015-07-06 16:39:15 +030012742 PIPE_CONF_CHECK_I(lane_count);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012743
12744 if (INTEL_INFO(dev)->gen < 8) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012745 PIPE_CONF_CHECK_M_N(dp_m_n);
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012746
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012747 if (current_config->has_drrs)
12748 PIPE_CONF_CHECK_M_N(dp_m2_n2);
12749 } else
12750 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +030012751
Jani Nikulaa65347b2015-11-27 12:21:46 +020012752 PIPE_CONF_CHECK_I(has_dsi_encoder);
12753
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012754 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
12755 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
12756 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
12757 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
12758 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
12759 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012760
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012761 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
12762 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
12763 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
12764 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
12765 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
12766 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012767
Daniel Vetterc93f54c2013-06-27 19:47:19 +020012768 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b52014-04-24 23:54:47 +020012769 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020012770 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
Wayne Boyer666a4532015-12-09 12:29:35 -080012771 IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Daniel Vetterb5a9fa02014-04-24 23:54:49 +020012772 PIPE_CONF_CHECK_I(limited_color_range);
Jesse Barnese43823e2014-11-05 14:26:08 -080012773 PIPE_CONF_CHECK_I(has_infoframe);
Daniel Vetter6c49f242013-06-06 12:45:25 +020012774
Daniel Vetter9ed109a2014-04-24 23:54:52 +020012775 PIPE_CONF_CHECK_I(has_audio);
12776
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012777 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012778 DRM_MODE_FLAG_INTERLACE);
12779
Daniel Vetterbb760062013-06-06 14:55:52 +020012780 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012781 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012782 DRM_MODE_FLAG_PHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012783 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012784 DRM_MODE_FLAG_NHSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012785 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012786 DRM_MODE_FLAG_PVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012787 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
Daniel Vetterbb760062013-06-06 14:55:52 +020012788 DRM_MODE_FLAG_NVSYNC);
12789 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -070012790
Ville Syrjälä333b8ca2015-09-03 21:50:16 +030012791 PIPE_CONF_CHECK_X(gmch_pfit.control);
Daniel Vettere2ff2d42015-07-15 14:15:50 +020012792 /* pfit ratios are autocomputed by the hw on gen4+ */
12793 if (INTEL_INFO(dev)->gen < 4)
12794 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
Ville Syrjälä333b8ca2015-09-03 21:50:16 +030012795 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
Daniel Vetter99535992014-04-13 12:00:33 +020012796
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020012797 if (!adjust) {
12798 PIPE_CONF_CHECK_I(pipe_src_w);
12799 PIPE_CONF_CHECK_I(pipe_src_h);
12800
12801 PIPE_CONF_CHECK_I(pch_pfit.enabled);
12802 if (current_config->pch_pfit.enabled) {
12803 PIPE_CONF_CHECK_X(pch_pfit.pos);
12804 PIPE_CONF_CHECK_X(pch_pfit.size);
12805 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020012806
Maarten Lankhorst7aefe2b2015-09-14 11:30:10 +020012807 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
12808 }
Chandra Kondurua1b22782015-04-07 15:28:45 -070012809
Jesse Barnese59150d2014-01-07 13:30:45 -080012810 /* BDW+ don't expose a synchronous way to read the state */
12811 if (IS_HASWELL(dev))
12812 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030012813
Ville Syrjälä282740f2013-09-04 18:30:03 +030012814 PIPE_CONF_CHECK_I(double_wide);
12815
Daniel Vetter26804af2014-06-25 22:01:55 +030012816 PIPE_CONF_CHECK_X(ddi_pll_sel);
12817
Daniel Vetterc0d43d62013-06-07 23:11:08 +020012818 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012819 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020012820 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020012821 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
12822 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterd452c5b2014-07-04 11:27:39 -030012823 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
Maarten Lankhorst00490c22015-11-16 14:42:12 +010012824 PIPE_CONF_CHECK_X(dpll_hw_state.spll);
Damien Lespiau3f4cd192014-11-13 14:55:21 +000012825 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
12826 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
12827 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020012828
Ville Syrjälä42571ae2013-09-06 23:29:00 +030012829 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
12830 PIPE_CONF_CHECK_I(pipe_bpp);
12831
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020012832 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
Jesse Barnesa9a7e982014-01-20 14:18:04 -080012833 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030012834
Daniel Vetter66e985c2013-06-05 13:34:20 +020012835#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020012836#undef PIPE_CONF_CHECK_I
Vandana Kannanb95af8b2014-08-05 07:51:23 -070012837#undef PIPE_CONF_CHECK_I_ALT
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020012838#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030012839#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020012840#undef PIPE_CONF_QUIRK
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012841#undef INTEL_ERR_OR_DBG_KMS
Daniel Vetter627eb5a2013-04-29 19:33:42 +020012842
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012843 return ret;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012844}
12845
Damien Lespiau08db6652014-11-04 17:06:52 +000012846static void check_wm_state(struct drm_device *dev)
12847{
12848 struct drm_i915_private *dev_priv = dev->dev_private;
12849 struct skl_ddb_allocation hw_ddb, *sw_ddb;
12850 struct intel_crtc *intel_crtc;
12851 int plane;
12852
12853 if (INTEL_INFO(dev)->gen < 9)
12854 return;
12855
12856 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
12857 sw_ddb = &dev_priv->wm.skl_hw.ddb;
12858
12859 for_each_intel_crtc(dev, intel_crtc) {
12860 struct skl_ddb_entry *hw_entry, *sw_entry;
12861 const enum pipe pipe = intel_crtc->pipe;
12862
12863 if (!intel_crtc->active)
12864 continue;
12865
12866 /* planes */
Damien Lespiaudd740782015-02-28 14:54:08 +000012867 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau08db6652014-11-04 17:06:52 +000012868 hw_entry = &hw_ddb.plane[pipe][plane];
12869 sw_entry = &sw_ddb->plane[pipe][plane];
12870
12871 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12872 continue;
12873
12874 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
12875 "(expected (%u,%u), found (%u,%u))\n",
12876 pipe_name(pipe), plane + 1,
12877 sw_entry->start, sw_entry->end,
12878 hw_entry->start, hw_entry->end);
12879 }
12880
12881 /* cursor */
Matt Roper4969d332015-09-24 15:53:10 -070012882 hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR];
12883 sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR];
Damien Lespiau08db6652014-11-04 17:06:52 +000012884
12885 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12886 continue;
12887
12888 DRM_ERROR("mismatch in DDB state pipe %c cursor "
12889 "(expected (%u,%u), found (%u,%u))\n",
12890 pipe_name(pipe),
12891 sw_entry->start, sw_entry->end,
12892 hw_entry->start, hw_entry->end);
12893 }
12894}
12895
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012896static void
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012897check_connector_state(struct drm_device *dev,
12898 struct drm_atomic_state *old_state)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012899{
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012900 struct drm_connector_state *old_conn_state;
12901 struct drm_connector *connector;
12902 int i;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012903
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012904 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
12905 struct drm_encoder *encoder = connector->encoder;
12906 struct drm_connector_state *state = connector->state;
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012907
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012908 /* This also checks the encoder/connector hw state with the
12909 * ->get_hw_state callbacks. */
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012910 intel_connector_check_state(to_intel_connector(connector));
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012911
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012912 I915_STATE_WARN(state->best_encoder != encoder,
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020012913 "connector's atomic encoder doesn't match legacy encoder\n");
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012914 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012915}
12916
12917static void
12918check_encoder_state(struct drm_device *dev)
12919{
12920 struct intel_encoder *encoder;
12921 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012922
Damien Lespiaub2784e12014-08-05 11:29:37 +010012923 for_each_intel_encoder(dev, encoder) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012924 bool enabled = false;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012925 enum pipe pipe;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012926
12927 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
12928 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030012929 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012930
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020012931 for_each_intel_connector(dev, connector) {
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012932 if (connector->base.state->best_encoder != &encoder->base)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012933 continue;
12934 enabled = true;
Maarten Lankhorstad3c5582015-07-13 16:30:26 +020012935
12936 I915_STATE_WARN(connector->base.state->crtc !=
12937 encoder->base.crtc,
12938 "connector's crtc doesn't match encoder crtc\n");
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012939 }
Dave Airlie0e32b392014-05-02 14:02:48 +100012940
Rob Clarke2c719b2014-12-15 13:56:32 -050012941 I915_STATE_WARN(!!encoder->base.crtc != enabled,
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012942 "encoder's enabled state mismatch "
12943 "(expected %i, found %i)\n",
12944 !!encoder->base.crtc, enabled);
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012945
12946 if (!encoder->base.crtc) {
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012947 bool active;
12948
12949 active = encoder->get_hw_state(encoder, &pipe);
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012950 I915_STATE_WARN(active,
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012951 "encoder detached but still enabled on pipe %c.\n",
12952 pipe_name(pipe));
Maarten Lankhorst7c60d192015-08-05 12:37:04 +020012953 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012954 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012955}
12956
12957static void
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012958check_crtc_state(struct drm_device *dev, struct drm_atomic_state *old_state)
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012959{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012960 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020012961 struct intel_encoder *encoder;
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012962 struct drm_crtc_state *old_crtc_state;
12963 struct drm_crtc *crtc;
12964 int i;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012965
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012966 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
12967 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12968 struct intel_crtc_state *pipe_config, *sw_config;
Maarten Lankhorst7b89b8d2015-08-05 12:37:03 +020012969 bool active;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012970
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020012971 if (!needs_modeset(crtc->state) &&
12972 !to_intel_crtc_state(crtc->state)->update_pipe)
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020012973 continue;
12974
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020012975 __drm_atomic_helper_crtc_destroy_state(crtc, old_crtc_state);
12976 pipe_config = to_intel_crtc_state(old_crtc_state);
12977 memset(pipe_config, 0, sizeof(*pipe_config));
12978 pipe_config->base.crtc = crtc;
12979 pipe_config->base.state = old_state;
12980
12981 DRM_DEBUG_KMS("[CRTC:%d]\n",
12982 crtc->base.id);
12983
12984 active = dev_priv->display.get_pipe_config(intel_crtc,
12985 pipe_config);
12986
12987 /* hw state is inconsistent with the pipe quirk */
12988 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
12989 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
12990 active = crtc->state->active;
12991
12992 I915_STATE_WARN(crtc->state->active != active,
12993 "crtc active state doesn't match with hw state "
12994 "(expected %i, found %i)\n", crtc->state->active, active);
12995
12996 I915_STATE_WARN(intel_crtc->active != crtc->state->active,
12997 "transitional active state does not match atomic hw state "
12998 "(expected %i, found %i)\n", crtc->state->active, intel_crtc->active);
12999
13000 for_each_encoder_on_crtc(dev, crtc, encoder) {
13001 enum pipe pipe;
13002
13003 active = encoder->get_hw_state(encoder, &pipe);
13004 I915_STATE_WARN(active != crtc->state->active,
13005 "[ENCODER:%i] active %i with crtc active %i\n",
13006 encoder->base.base.id, active, crtc->state->active);
13007
13008 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
13009 "Encoder connected to wrong pipe %c\n",
13010 pipe_name(pipe));
13011
13012 if (active)
13013 encoder->get_config(encoder, pipe_config);
13014 }
13015
13016 if (!crtc->state->active)
13017 continue;
13018
13019 sw_config = to_intel_crtc_state(crtc->state);
13020 if (!intel_pipe_config_compare(dev, sw_config,
13021 pipe_config, false)) {
Rob Clarke2c719b2014-12-15 13:56:32 -050013022 I915_STATE_WARN(1, "pipe state doesn't match!\n");
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013023 intel_dump_pipe_config(intel_crtc, pipe_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020013024 "[hw state]");
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013025 intel_dump_pipe_config(intel_crtc, sw_config,
Daniel Vetterc0b03412013-05-28 12:05:54 +020013026 "[sw state]");
13027 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020013028 }
13029}
13030
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013031static void
13032check_shared_dpll_state(struct drm_device *dev)
13033{
Jani Nikulafbee40d2014-03-31 14:27:18 +030013034 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013035 struct intel_crtc *crtc;
13036 struct intel_dpll_hw_state dpll_hw_state;
13037 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020013038
13039 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13040 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13041 int enabled_crtcs = 0, active_crtcs = 0;
13042 bool active;
13043
13044 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
13045
13046 DRM_DEBUG_KMS("%s\n", pll->name);
13047
13048 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
13049
Rob Clarke2c719b2014-12-15 13:56:32 -050013050 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
Daniel Vetter53589012013-06-05 13:34:16 +020013051 "more active pll users than references: %i vs %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013052 pll->active, hweight32(pll->config.crtc_mask));
Rob Clarke2c719b2014-12-15 13:56:32 -050013053 I915_STATE_WARN(pll->active && !pll->on,
Daniel Vetter53589012013-06-05 13:34:16 +020013054 "pll in active use but not on in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050013055 I915_STATE_WARN(pll->on && !pll->active,
Daniel Vetter35c95372013-07-17 06:55:04 +020013056 "pll in on but not on in use in sw tracking\n");
Rob Clarke2c719b2014-12-15 13:56:32 -050013057 I915_STATE_WARN(pll->on != active,
Daniel Vetter53589012013-06-05 13:34:16 +020013058 "pll on state mismatch (expected %i, found %i)\n",
13059 pll->on, active);
13060
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013061 for_each_intel_crtc(dev, crtc) {
Matt Roper83d65732015-02-25 13:12:16 -080013062 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
Daniel Vetter53589012013-06-05 13:34:16 +020013063 enabled_crtcs++;
13064 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
13065 active_crtcs++;
13066 }
Rob Clarke2c719b2014-12-15 13:56:32 -050013067 I915_STATE_WARN(pll->active != active_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020013068 "pll active crtcs mismatch (expected %i, found %i)\n",
13069 pll->active, active_crtcs);
Rob Clarke2c719b2014-12-15 13:56:32 -050013070 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
Daniel Vetter53589012013-06-05 13:34:16 +020013071 "pll enabled crtcs mismatch (expected %i, found %i)\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013072 hweight32(pll->config.crtc_mask), enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020013073
Rob Clarke2c719b2014-12-15 13:56:32 -050013074 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
Daniel Vetter66e985c2013-06-05 13:34:20 +020013075 sizeof(dpll_hw_state)),
13076 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020013077 }
Daniel Vettere2e1ed42012-07-08 21:14:38 +020013078}
13079
Maarten Lankhorstee165b12015-08-05 12:37:00 +020013080static void
13081intel_modeset_check_state(struct drm_device *dev,
13082 struct drm_atomic_state *old_state)
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013083{
Damien Lespiau08db6652014-11-04 17:06:52 +000013084 check_wm_state(dev);
Maarten Lankhorst35dd3c62015-08-06 13:49:22 +020013085 check_connector_state(dev, old_state);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013086 check_encoder_state(dev);
Maarten Lankhorst4d20cd82015-08-05 12:37:05 +020013087 check_crtc_state(dev, old_state);
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020013088 check_shared_dpll_state(dev);
13089}
13090
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +020013091void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
Ville Syrjälä18442d02013-09-13 16:00:08 +030013092 int dotclock)
13093{
13094 /*
13095 * FDI already provided one idea for the dotclock.
13096 * Yell if the encoder disagrees.
13097 */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013098 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030013099 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +020013100 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030013101}
13102
Ville Syrjälä80715b22014-05-15 20:23:23 +030013103static void update_scanline_offset(struct intel_crtc *crtc)
13104{
13105 struct drm_device *dev = crtc->base.dev;
13106
13107 /*
13108 * The scanline counter increments at the leading edge of hsync.
13109 *
13110 * On most platforms it starts counting from vtotal-1 on the
13111 * first active line. That means the scanline counter value is
13112 * always one less than what we would expect. Ie. just after
13113 * start of vblank, which also occurs at start of hsync (on the
13114 * last active line), the scanline counter will read vblank_start-1.
13115 *
13116 * On gen2 the scanline counter starts counting from 1 instead
13117 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
13118 * to keep the value positive), instead of adding one.
13119 *
13120 * On HSW+ the behaviour of the scanline counter depends on the output
13121 * type. For DP ports it behaves like most other platforms, but on HDMI
13122 * there's an extra 1 line difference. So we need to add two instead of
13123 * one to the value.
13124 */
13125 if (IS_GEN2(dev)) {
Ville Syrjälä124abe02015-09-08 13:40:45 +030013126 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
Ville Syrjälä80715b22014-05-15 20:23:23 +030013127 int vtotal;
13128
Ville Syrjälä124abe02015-09-08 13:40:45 +030013129 vtotal = adjusted_mode->crtc_vtotal;
13130 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
Ville Syrjälä80715b22014-05-15 20:23:23 +030013131 vtotal /= 2;
13132
13133 crtc->scanline_offset = vtotal - 1;
13134 } else if (HAS_DDI(dev) &&
Ander Conselvan de Oliveira409ee762014-10-20 13:46:45 +030013135 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
Ville Syrjälä80715b22014-05-15 20:23:23 +030013136 crtc->scanline_offset = 2;
13137 } else
13138 crtc->scanline_offset = 1;
13139}
13140
Maarten Lankhorstad421372015-06-15 12:33:42 +020013141static void intel_modeset_clear_plls(struct drm_atomic_state *state)
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013142{
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030013143 struct drm_device *dev = state->dev;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013144 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstad421372015-06-15 12:33:42 +020013145 struct intel_shared_dpll_config *shared_dpll = NULL;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013146 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013147 struct intel_crtc_state *intel_crtc_state;
13148 struct drm_crtc *crtc;
13149 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013150 int i;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013151
13152 if (!dev_priv->display.crtc_compute_clock)
Maarten Lankhorstad421372015-06-15 12:33:42 +020013153 return;
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013154
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013155 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstad421372015-06-15 12:33:42 +020013156 int dpll;
13157
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013158 intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira4978cc92015-04-21 17:13:21 +030013159 intel_crtc_state = to_intel_crtc_state(crtc_state);
Maarten Lankhorstad421372015-06-15 12:33:42 +020013160 dpll = intel_crtc_state->shared_dpll;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013161
Maarten Lankhorstad421372015-06-15 12:33:42 +020013162 if (!needs_modeset(crtc_state) || dpll == DPLL_ID_PRIVATE)
Ander Conselvan de Oliveira225da592015-04-02 14:47:57 +030013163 continue;
13164
Maarten Lankhorstad421372015-06-15 12:33:42 +020013165 intel_crtc_state->shared_dpll = DPLL_ID_PRIVATE;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013166
Maarten Lankhorstad421372015-06-15 12:33:42 +020013167 if (!shared_dpll)
13168 shared_dpll = intel_atomic_get_shared_dpll_state(state);
13169
13170 shared_dpll[dpll].crtc_mask &= ~(1 << intel_crtc->pipe);
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013171 }
Ander Conselvan de Oliveiraed6739e2015-01-29 16:55:08 +020013172}
13173
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020013174/*
13175 * This implements the workaround described in the "notes" section of the mode
13176 * set sequence documentation. When going from no pipes or single pipe to
13177 * multiple pipes, and planes are enabled after the pipe, we need to wait at
13178 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
13179 */
13180static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
13181{
13182 struct drm_crtc_state *crtc_state;
13183 struct intel_crtc *intel_crtc;
13184 struct drm_crtc *crtc;
13185 struct intel_crtc_state *first_crtc_state = NULL;
13186 struct intel_crtc_state *other_crtc_state = NULL;
13187 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
13188 int i;
13189
13190 /* look at all crtc's that are going to be enabled in during modeset */
13191 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13192 intel_crtc = to_intel_crtc(crtc);
13193
13194 if (!crtc_state->active || !needs_modeset(crtc_state))
13195 continue;
13196
13197 if (first_crtc_state) {
13198 other_crtc_state = to_intel_crtc_state(crtc_state);
13199 break;
13200 } else {
13201 first_crtc_state = to_intel_crtc_state(crtc_state);
13202 first_pipe = intel_crtc->pipe;
13203 }
13204 }
13205
13206 /* No workaround needed? */
13207 if (!first_crtc_state)
13208 return 0;
13209
13210 /* w/a possibly needed, check how many crtc's are already enabled. */
13211 for_each_intel_crtc(state->dev, intel_crtc) {
13212 struct intel_crtc_state *pipe_config;
13213
13214 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
13215 if (IS_ERR(pipe_config))
13216 return PTR_ERR(pipe_config);
13217
13218 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
13219
13220 if (!pipe_config->base.active ||
13221 needs_modeset(&pipe_config->base))
13222 continue;
13223
13224 /* 2 or more enabled crtcs means no need for w/a */
13225 if (enabled_pipe != INVALID_PIPE)
13226 return 0;
13227
13228 enabled_pipe = intel_crtc->pipe;
13229 }
13230
13231 if (enabled_pipe != INVALID_PIPE)
13232 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
13233 else if (other_crtc_state)
13234 other_crtc_state->hsw_workaround_pipe = first_pipe;
13235
13236 return 0;
13237}
13238
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013239static int intel_modeset_all_pipes(struct drm_atomic_state *state)
13240{
13241 struct drm_crtc *crtc;
13242 struct drm_crtc_state *crtc_state;
13243 int ret = 0;
13244
13245 /* add all active pipes to the state */
13246 for_each_crtc(state->dev, crtc) {
13247 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13248 if (IS_ERR(crtc_state))
13249 return PTR_ERR(crtc_state);
13250
13251 if (!crtc_state->active || needs_modeset(crtc_state))
13252 continue;
13253
13254 crtc_state->mode_changed = true;
13255
13256 ret = drm_atomic_add_affected_connectors(state, crtc);
13257 if (ret)
13258 break;
13259
13260 ret = drm_atomic_add_affected_planes(state, crtc);
13261 if (ret)
13262 break;
13263 }
13264
13265 return ret;
13266}
13267
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013268static int intel_modeset_checks(struct drm_atomic_state *state)
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013269{
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013270 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
13271 struct drm_i915_private *dev_priv = state->dev->dev_private;
13272 struct drm_crtc *crtc;
13273 struct drm_crtc_state *crtc_state;
13274 int ret = 0, i;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013275
Maarten Lankhorstb3592832015-06-15 12:33:38 +020013276 if (!check_digital_port_conflicts(state)) {
13277 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
13278 return -EINVAL;
13279 }
13280
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013281 intel_state->modeset = true;
13282 intel_state->active_crtcs = dev_priv->active_crtcs;
13283
13284 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13285 if (crtc_state->active)
13286 intel_state->active_crtcs |= 1 << i;
13287 else
13288 intel_state->active_crtcs &= ~(1 << i);
13289 }
13290
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013291 /*
13292 * See if the config requires any additional preparation, e.g.
13293 * to adjust global state with pipes off. We need to do this
13294 * here so we can get the modeset_pipe updated config for the new
13295 * mode set on this crtc. For other crtcs we need to use the
13296 * adjusted_mode bits in the crtc directly.
13297 */
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013298 if (dev_priv->display.modeset_calc_cdclk) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013299 ret = dev_priv->display.modeset_calc_cdclk(state);
13300
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010013301 if (!ret && intel_state->dev_cdclk != dev_priv->cdclk_freq)
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013302 ret = intel_modeset_all_pipes(state);
13303
13304 if (ret < 0)
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013305 return ret;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013306 } else
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010013307 to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013308
Maarten Lankhorstad421372015-06-15 12:33:42 +020013309 intel_modeset_clear_plls(state);
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013310
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013311 if (IS_HASWELL(dev_priv))
Maarten Lankhorstad421372015-06-15 12:33:42 +020013312 return haswell_mode_set_planes_workaround(state);
Maarten Lankhorst99d736a2015-06-01 12:50:09 +020013313
Maarten Lankhorstad421372015-06-15 12:33:42 +020013314 return 0;
Ander Conselvan de Oliveira054518d2015-04-21 17:13:06 +030013315}
13316
Matt Roperaa363132015-09-24 15:53:18 -070013317/*
13318 * Handle calculation of various watermark data at the end of the atomic check
13319 * phase. The code here should be run after the per-crtc and per-plane 'check'
13320 * handlers to ensure that all derived state has been updated.
13321 */
13322static void calc_watermark_data(struct drm_atomic_state *state)
13323{
13324 struct drm_device *dev = state->dev;
13325 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
13326 struct drm_crtc *crtc;
13327 struct drm_crtc_state *cstate;
13328 struct drm_plane *plane;
13329 struct drm_plane_state *pstate;
13330
13331 /*
13332 * Calculate watermark configuration details now that derived
13333 * plane/crtc state is all properly updated.
13334 */
13335 drm_for_each_crtc(crtc, dev) {
13336 cstate = drm_atomic_get_existing_crtc_state(state, crtc) ?:
13337 crtc->state;
13338
13339 if (cstate->active)
13340 intel_state->wm_config.num_pipes_active++;
13341 }
13342 drm_for_each_legacy_plane(plane, dev) {
13343 pstate = drm_atomic_get_existing_plane_state(state, plane) ?:
13344 plane->state;
13345
13346 if (!to_intel_plane_state(pstate)->visible)
13347 continue;
13348
13349 intel_state->wm_config.sprites_enabled = true;
13350 if (pstate->crtc_w != pstate->src_w >> 16 ||
13351 pstate->crtc_h != pstate->src_h >> 16)
13352 intel_state->wm_config.sprites_scaled = true;
13353 }
13354}
13355
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013356/**
13357 * intel_atomic_check - validate state object
13358 * @dev: drm device
13359 * @state: state to validate
13360 */
13361static int intel_atomic_check(struct drm_device *dev,
13362 struct drm_atomic_state *state)
Daniel Vettera6778b32012-07-02 09:56:42 +020013363{
Matt Roperaa363132015-09-24 15:53:18 -070013364 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013365 struct drm_crtc *crtc;
13366 struct drm_crtc_state *crtc_state;
13367 int ret, i;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013368 bool any_ms = false;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013369
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013370 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vettera6778b32012-07-02 09:56:42 +020013371 if (ret)
13372 return ret;
13373
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013374 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013375 struct intel_crtc_state *pipe_config =
13376 to_intel_crtc_state(crtc_state);
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013377
Maarten Lankhorstba8af3e2015-11-16 12:49:14 +010013378 memset(&to_intel_crtc(crtc)->atomic, 0,
13379 sizeof(struct intel_crtc_atomic_commit));
13380
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013381 /* Catch I915_MODE_FLAG_INHERITED */
13382 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
13383 crtc_state->mode_changed = true;
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013384
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013385 if (!crtc_state->enable) {
13386 if (needs_modeset(crtc_state))
13387 any_ms = true;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013388 continue;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013389 }
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013390
Daniel Vetter26495482015-07-15 14:15:52 +020013391 if (!needs_modeset(crtc_state))
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013392 continue;
13393
Daniel Vetter26495482015-07-15 14:15:52 +020013394 /* FIXME: For only active_changed we shouldn't need to do any
13395 * state recomputation at all. */
13396
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013397 ret = drm_atomic_add_affected_connectors(state, crtc);
13398 if (ret)
13399 return ret;
Maarten Lankhorstb3592832015-06-15 12:33:38 +020013400
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013401 ret = intel_modeset_pipe_config(crtc, pipe_config);
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013402 if (ret)
13403 return ret;
13404
Jani Nikula73831232015-11-19 10:26:30 +020013405 if (i915.fastboot &&
13406 intel_pipe_config_compare(state->dev,
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013407 to_intel_crtc_state(crtc->state),
Daniel Vetter1ed51de2015-07-15 14:15:51 +020013408 pipe_config, true)) {
Daniel Vetter26495482015-07-15 14:15:52 +020013409 crtc_state->mode_changed = false;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013410 to_intel_crtc_state(crtc_state)->update_pipe = true;
Daniel Vetter26495482015-07-15 14:15:52 +020013411 }
13412
13413 if (needs_modeset(crtc_state)) {
13414 any_ms = true;
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013415
Maarten Lankhorstcfb23ed2015-07-14 12:17:40 +020013416 ret = drm_atomic_add_affected_planes(state, crtc);
13417 if (ret)
13418 return ret;
13419 }
13420
Daniel Vetter26495482015-07-15 14:15:52 +020013421 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
13422 needs_modeset(crtc_state) ?
13423 "[modeset]" : "[fastset]");
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013424 }
13425
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013426 if (any_ms) {
13427 ret = intel_modeset_checks(state);
13428
13429 if (ret)
13430 return ret;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013431 } else
Matt Roperaa363132015-09-24 15:53:18 -070013432 intel_state->cdclk = to_i915(state->dev)->cdclk_freq;
Ander Conselvan de Oliveirac347a672015-06-01 12:50:02 +020013433
Matt Roperaa363132015-09-24 15:53:18 -070013434 ret = drm_atomic_helper_check_planes(state->dev, state);
13435 if (ret)
13436 return ret;
13437
13438 calc_watermark_data(state);
13439
13440 return 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020013441}
13442
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013443static int intel_atomic_prepare_commit(struct drm_device *dev,
13444 struct drm_atomic_state *state,
13445 bool async)
13446{
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013447 struct drm_i915_private *dev_priv = dev->dev_private;
13448 struct drm_plane_state *plane_state;
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013449 struct drm_crtc_state *crtc_state;
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013450 struct drm_plane *plane;
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013451 struct drm_crtc *crtc;
13452 int i, ret;
13453
13454 if (async) {
13455 DRM_DEBUG_KMS("i915 does not yet support async commit\n");
13456 return -EINVAL;
13457 }
13458
13459 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13460 ret = intel_crtc_wait_for_pending_flips(crtc);
13461 if (ret)
13462 return ret;
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013463
13464 if (atomic_read(&to_intel_crtc(crtc)->unpin_work_count) >= 2)
13465 flush_workqueue(dev_priv->wq);
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013466 }
13467
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013468 ret = mutex_lock_interruptible(&dev->struct_mutex);
13469 if (ret)
13470 return ret;
13471
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013472 ret = drm_atomic_helper_prepare_planes(dev, state);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013473 if (!ret && !async && !i915_reset_in_progress(&dev_priv->gpu_error)) {
13474 u32 reset_counter;
13475
13476 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
13477 mutex_unlock(&dev->struct_mutex);
13478
13479 for_each_plane_in_state(state, plane, plane_state, i) {
13480 struct intel_plane_state *intel_plane_state =
13481 to_intel_plane_state(plane_state);
13482
13483 if (!intel_plane_state->wait_req)
13484 continue;
13485
13486 ret = __i915_wait_request(intel_plane_state->wait_req,
13487 reset_counter, true,
13488 NULL, NULL);
13489
13490 /* Swallow -EIO errors to allow updates during hw lockup. */
13491 if (ret == -EIO)
13492 ret = 0;
13493
13494 if (ret)
13495 break;
13496 }
13497
13498 if (!ret)
13499 return 0;
13500
13501 mutex_lock(&dev->struct_mutex);
13502 drm_atomic_helper_cleanup_planes(dev, state);
13503 }
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013504
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013505 mutex_unlock(&dev->struct_mutex);
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013506 return ret;
13507}
13508
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013509/**
13510 * intel_atomic_commit - commit validated state object
13511 * @dev: DRM device
13512 * @state: the top-level driver state object
13513 * @async: asynchronous commit
13514 *
13515 * This function commits a top-level state object that has been validated
13516 * with drm_atomic_helper_check().
13517 *
13518 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
13519 * we can only handle plane-related operations and do not yet support
13520 * asynchronous commit.
13521 *
13522 * RETURNS
13523 * Zero for success or -errno.
13524 */
13525static int intel_atomic_commit(struct drm_device *dev,
13526 struct drm_atomic_state *state,
13527 bool async)
Daniel Vettera6778b32012-07-02 09:56:42 +020013528{
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013529 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Jani Nikulafbee40d2014-03-31 14:27:18 +030013530 struct drm_i915_private *dev_priv = dev->dev_private;
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013531 struct drm_crtc_state *crtc_state;
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013532 struct drm_crtc *crtc;
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013533 int ret = 0, i;
13534 bool hw_check = intel_state->modeset;
Daniel Vettera6778b32012-07-02 09:56:42 +020013535
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013536 ret = intel_atomic_prepare_commit(dev, state, async);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013537 if (ret) {
13538 DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret);
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030013539 return ret;
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013540 }
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030013541
Maarten Lankhorst1c5e19f2015-06-01 12:50:06 +020013542 drm_atomic_helper_swap_state(dev, state);
Matt Roperaa363132015-09-24 15:53:18 -070013543 dev_priv->wm.config = to_intel_atomic_state(state)->wm_config;
Maarten Lankhorst1c5e19f2015-06-01 12:50:06 +020013544
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013545 if (intel_state->modeset) {
13546 memcpy(dev_priv->min_pixclk, intel_state->min_pixclk,
13547 sizeof(intel_state->min_pixclk));
13548 dev_priv->active_crtcs = intel_state->active_crtcs;
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010013549 dev_priv->atomic_cdclk_freq = intel_state->cdclk;
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013550 }
13551
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013552 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013553 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13554
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013555 if (!needs_modeset(crtc->state))
13556 continue;
13557
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013558 intel_pre_plane_update(intel_crtc);
Daniel Vetter460da9162013-03-27 00:44:51 +010013559
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013560 if (crtc_state->active) {
13561 intel_crtc_disable_planes(crtc, crtc_state->plane_mask);
13562 dev_priv->display.crtc_disable(crtc);
Maarten Lankhorsteddfcbc2015-06-15 12:33:53 +020013563 intel_crtc->active = false;
13564 intel_disable_shared_dpll(intel_crtc);
Ville Syrjälä9bbc8258a2015-11-20 22:09:20 +020013565
13566 /*
13567 * Underruns don't always raise
13568 * interrupts, so check manually.
13569 */
13570 intel_check_cpu_fifo_underruns(dev_priv);
13571 intel_check_pch_fifo_underruns(dev_priv);
Maarten Lankhorstb9001112015-11-19 16:07:16 +010013572
13573 if (!crtc->state->active)
13574 intel_update_watermarks(crtc);
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013575 }
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010013576 }
Daniel Vetter7758a112012-07-08 19:40:39 +020013577
Daniel Vetterea9d7582012-07-10 10:42:52 +020013578 /* Only after disabling all output pipelines that will be changed can we
13579 * update the the output configuration. */
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013580 intel_modeset_update_crtc_state(state);
Daniel Vetterea9d7582012-07-10 10:42:52 +020013581
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013582 if (intel_state->modeset) {
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013583 intel_shared_dpll_commit(state);
13584
13585 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
Maarten Lankhorst61333b62015-06-15 12:33:50 +020013586 modeset_update_crtc_power_domains(state);
Maarten Lankhorst4740b0f2015-08-05 12:37:10 +020013587 }
Daniel Vetter47fab732012-10-26 10:58:18 +020013588
Daniel Vettera6778b32012-07-02 09:56:42 +020013589 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ander Conselvan de Oliveira0a9ab302015-04-21 17:13:04 +030013590 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013591 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13592 bool modeset = needs_modeset(crtc->state);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013593 bool update_pipe = !modeset &&
13594 to_intel_crtc_state(crtc->state)->update_pipe;
13595 unsigned long put_domains = 0;
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013596
Patrik Jakobsson9f836f92015-11-16 16:20:01 +010013597 if (modeset)
13598 intel_display_power_get(dev_priv, POWER_DOMAIN_MODESET);
13599
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013600 if (modeset && crtc->state->active) {
Maarten Lankhorsta5392052015-06-15 12:33:52 +020013601 update_scanline_offset(to_intel_crtc(crtc));
13602 dev_priv->display.crtc_enable(crtc);
13603 }
13604
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013605 if (update_pipe) {
13606 put_domains = modeset_get_crtc_power_domains(crtc);
13607
13608 /* make sure intel_modeset_check_state runs */
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013609 hw_check = true;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013610 }
13611
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013612 if (!modeset)
13613 intel_pre_plane_update(intel_crtc);
13614
Maarten Lankhorst6173ee22015-09-23 16:29:39 +020013615 if (crtc->state->active &&
13616 (crtc->state->planes_changed || update_pipe))
Maarten Lankhorst62852622015-09-23 16:29:38 +020013617 drm_atomic_helper_commit_planes_on_crtc(crtc_state);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020013618
13619 if (put_domains)
13620 modeset_put_power_domains(dev_priv, put_domains);
13621
Maarten Lankhorstf6ac4b22015-07-13 16:30:31 +020013622 intel_post_plane_update(intel_crtc);
Patrik Jakobsson9f836f92015-11-16 16:20:01 +010013623
13624 if (modeset)
13625 intel_display_power_put(dev_priv, POWER_DOMAIN_MODESET);
Ville Syrjälä80715b22014-05-15 20:23:23 +030013626 }
Daniel Vettera6778b32012-07-02 09:56:42 +020013627
Daniel Vettera6778b32012-07-02 09:56:42 +020013628 /* FIXME: add subpixel order */
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013629
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013630 drm_atomic_helper_wait_for_vblanks(dev, state);
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013631
13632 mutex_lock(&dev->struct_mutex);
Ander Conselvan de Oliveirad4afb8c2015-04-21 17:13:22 +030013633 drm_atomic_helper_cleanup_planes(dev, state);
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013634 mutex_unlock(&dev->struct_mutex);
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013635
Maarten Lankhorst565602d2015-12-10 12:33:57 +010013636 if (hw_check)
Maarten Lankhorstee165b12015-08-05 12:37:00 +020013637 intel_modeset_check_state(dev, state);
13638
13639 drm_atomic_state_free(state);
Jesse Barnes7f27126e2014-11-05 14:26:06 -080013640
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013641 return 0;
Daniel Vetterf30da182013-04-11 20:22:50 +020013642}
13643
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013644void intel_crtc_restore_mode(struct drm_crtc *crtc)
13645{
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013646 struct drm_device *dev = crtc->dev;
13647 struct drm_atomic_state *state;
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013648 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013649 int ret;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013650
13651 state = drm_atomic_state_alloc(dev);
13652 if (!state) {
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013653 DRM_DEBUG_KMS("[CRTC:%d] crtc restore failed, out of memory",
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013654 crtc->base.id);
13655 return;
13656 }
13657
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013658 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013659
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013660retry:
13661 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13662 ret = PTR_ERR_OR_ZERO(crtc_state);
13663 if (!ret) {
13664 if (!crtc_state->active)
13665 goto out;
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013666
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013667 crtc_state->mode_changed = true;
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013668 ret = drm_atomic_commit(state);
Ander Conselvan de Oliveira83a57152015-03-20 16:18:03 +020013669 }
13670
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013671 if (ret == -EDEADLK) {
13672 drm_atomic_state_clear(state);
13673 drm_modeset_backoff(state->acquire_ctx);
13674 goto retry;
Ander Conselvan de Oliveira4be07312015-04-21 17:13:01 +030013675 }
13676
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013677 if (ret)
Maarten Lankhorste694eb02015-07-14 16:19:12 +020013678out:
Ander Conselvan de Oliveira2bfb4622015-04-21 17:13:20 +030013679 drm_atomic_state_free(state);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000013680}
13681
Daniel Vetter25c5b262012-07-08 22:08:04 +020013682#undef for_each_intel_crtc_masked
13683
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013684static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013685 .gamma_set = intel_crtc_gamma_set,
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020013686 .set_config = drm_atomic_helper_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013687 .destroy = intel_crtc_destroy,
13688 .page_flip = intel_crtc_page_flip,
Matt Roper13568372015-01-21 16:35:47 -080013689 .atomic_duplicate_state = intel_crtc_duplicate_state,
13690 .atomic_destroy_state = intel_crtc_destroy_state,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010013691};
13692
Daniel Vetter53589012013-06-05 13:34:16 +020013693static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
13694 struct intel_shared_dpll *pll,
13695 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013696{
Daniel Vetter53589012013-06-05 13:34:16 +020013697 uint32_t val;
13698
Daniel Vetterf458ebb2014-09-30 10:56:39 +020013699 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030013700 return false;
13701
Daniel Vetter53589012013-06-05 13:34:16 +020013702 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020013703 hw_state->dpll = val;
13704 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
13705 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020013706
13707 return val & DPLL_VCO_ENABLE;
13708}
13709
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013710static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
13711 struct intel_shared_dpll *pll)
13712{
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013713 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
13714 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013715}
13716
Daniel Vettere7b903d2013-06-05 13:34:14 +020013717static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
13718 struct intel_shared_dpll *pll)
13719{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013720 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020013721 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020013722
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013723 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013724
13725 /* Wait for the clocks to stabilize. */
13726 POSTING_READ(PCH_DPLL(pll->id));
13727 udelay(150);
13728
13729 /* The pixel multiplier can only be updated once the
13730 * DPLL is enabled and the clocks are stable.
13731 *
13732 * So write it again.
13733 */
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020013734 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013735 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013736 udelay(200);
13737}
13738
13739static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
13740 struct intel_shared_dpll *pll)
13741{
13742 struct drm_device *dev = dev_priv->dev;
13743 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013744
13745 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010013746 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020013747 if (intel_crtc_to_shared_dpll(crtc) == pll)
13748 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
13749 }
13750
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013751 I915_WRITE(PCH_DPLL(pll->id), 0);
13752 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020013753 udelay(200);
13754}
13755
Daniel Vetter46edb022013-06-05 13:34:12 +020013756static char *ibx_pch_dpll_names[] = {
13757 "PCH DPLL A",
13758 "PCH DPLL B",
13759};
13760
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013761static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013762{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013763 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013764 int i;
13765
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013766 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013767
Daniel Vettere72f9fb2013-06-05 13:34:06 +020013768 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020013769 dev_priv->shared_dplls[i].id = i;
13770 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020013771 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020013772 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
13773 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020013774 dev_priv->shared_dplls[i].get_hw_state =
13775 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010013776 }
13777}
13778
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013779static void intel_shared_dpll_init(struct drm_device *dev)
13780{
Daniel Vettere7b903d2013-06-05 13:34:14 +020013781 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013782
Daniel Vetter9cd86932014-06-25 22:01:57 +030013783 if (HAS_DDI(dev))
13784 intel_ddi_pll_init(dev);
13785 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013786 ibx_pch_dpll_init(dev);
13787 else
13788 dev_priv->num_shared_dpll = 0;
13789
13790 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020013791}
13792
Matt Roper6beb8c232014-12-01 15:40:14 -080013793/**
13794 * intel_prepare_plane_fb - Prepare fb for usage on plane
13795 * @plane: drm plane to prepare for
13796 * @fb: framebuffer to prepare for presentation
13797 *
13798 * Prepares a framebuffer for usage on a display plane. Generally this
13799 * involves pinning the underlying object and updating the frontbuffer tracking
13800 * bits. Some older platforms need special physical address handling for
13801 * cursor planes.
13802 *
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013803 * Must be called with struct_mutex held.
13804 *
Matt Roper6beb8c232014-12-01 15:40:14 -080013805 * Returns 0 on success, negative error code on failure.
13806 */
13807int
13808intel_prepare_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013809 const struct drm_plane_state *new_state)
Matt Roper465c1202014-05-29 08:06:54 -070013810{
13811 struct drm_device *dev = plane->dev;
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013812 struct drm_framebuffer *fb = new_state->fb;
Matt Roper6beb8c232014-12-01 15:40:14 -080013813 struct intel_plane *intel_plane = to_intel_plane(plane);
Matt Roper6beb8c232014-12-01 15:40:14 -080013814 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013815 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb);
Matt Roper6beb8c232014-12-01 15:40:14 -080013816 int ret = 0;
Matt Roper465c1202014-05-29 08:06:54 -070013817
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013818 if (!obj && !old_obj)
Matt Roper465c1202014-05-29 08:06:54 -070013819 return 0;
13820
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013821 if (old_obj) {
13822 struct drm_crtc_state *crtc_state =
13823 drm_atomic_get_existing_crtc_state(new_state->state, plane->state->crtc);
13824
13825 /* Big Hammer, we also need to ensure that any pending
13826 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
13827 * current scanout is retired before unpinning the old
13828 * framebuffer. Note that we rely on userspace rendering
13829 * into the buffer attached to the pipe they are waiting
13830 * on. If not, userspace generates a GPU hang with IPEHR
13831 * point to the MI_WAIT_FOR_EVENT.
13832 *
13833 * This should only fail upon a hung GPU, in which case we
13834 * can safely continue.
13835 */
13836 if (needs_modeset(crtc_state))
13837 ret = i915_gem_object_wait_rendering(old_obj, true);
13838
13839 /* Swallow -EIO errors to allow updates during hw lockup. */
13840 if (ret && ret != -EIO)
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013841 return ret;
Maarten Lankhorst5008e872015-08-18 13:40:05 +020013842 }
13843
Alex Goins3c28ff22015-11-25 18:43:39 -080013844 /* For framebuffer backed by dmabuf, wait for fence */
13845 if (obj && obj->base.dma_buf) {
13846 ret = reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv,
13847 false, true,
13848 MAX_SCHEDULE_TIMEOUT);
13849 if (ret == -ERESTARTSYS)
13850 return ret;
13851
13852 WARN_ON(ret < 0);
13853 }
13854
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013855 if (!obj) {
13856 ret = 0;
13857 } else if (plane->type == DRM_PLANE_TYPE_CURSOR &&
Matt Roper6beb8c232014-12-01 15:40:14 -080013858 INTEL_INFO(dev)->cursor_needs_physical) {
13859 int align = IS_I830(dev) ? 16 * 1024 : 256;
13860 ret = i915_gem_object_attach_phys(obj, align);
13861 if (ret)
13862 DRM_DEBUG_KMS("failed to attach phys object\n");
13863 } else {
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013864 ret = intel_pin_and_fence_fb_obj(plane, fb, new_state);
Matt Roper6beb8c232014-12-01 15:40:14 -080013865 }
13866
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013867 if (ret == 0) {
13868 if (obj) {
13869 struct intel_plane_state *plane_state =
13870 to_intel_plane_state(new_state);
13871
13872 i915_gem_request_assign(&plane_state->wait_req,
13873 obj->last_write_req);
13874 }
13875
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030013876 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013877 }
Matt Roper6beb8c232014-12-01 15:40:14 -080013878
Matt Roper6beb8c232014-12-01 15:40:14 -080013879 return ret;
13880}
13881
Matt Roper38f3ce32014-12-02 07:45:25 -080013882/**
13883 * intel_cleanup_plane_fb - Cleans up an fb after plane use
13884 * @plane: drm plane to clean up for
13885 * @fb: old framebuffer that was on plane
13886 *
13887 * Cleans up a framebuffer that has just been removed from a plane.
Maarten Lankhorstf9356752015-08-18 13:40:05 +020013888 *
13889 * Must be called with struct_mutex held.
Matt Roper38f3ce32014-12-02 07:45:25 -080013890 */
13891void
13892intel_cleanup_plane_fb(struct drm_plane *plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +000013893 const struct drm_plane_state *old_state)
Matt Roper38f3ce32014-12-02 07:45:25 -080013894{
13895 struct drm_device *dev = plane->dev;
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013896 struct intel_plane *intel_plane = to_intel_plane(plane);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013897 struct intel_plane_state *old_intel_state;
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013898 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb);
13899 struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb);
Matt Roper38f3ce32014-12-02 07:45:25 -080013900
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013901 old_intel_state = to_intel_plane_state(old_state);
13902
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013903 if (!obj && !old_obj)
Matt Roper38f3ce32014-12-02 07:45:25 -080013904 return;
13905
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013906 if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR ||
13907 !INTEL_INFO(dev)->cursor_needs_physical))
Maarten Lankhorst844f9112015-09-02 10:42:40 +020013908 intel_unpin_fb_obj(old_state->fb, old_state);
Maarten Lankhorst1ee49392015-09-23 13:27:08 +020013909
13910 /* prepare_fb aborted? */
13911 if ((old_obj && (old_obj->frontbuffer_bits & intel_plane->frontbuffer_bit)) ||
13912 (obj && !(obj->frontbuffer_bits & intel_plane->frontbuffer_bit)))
13913 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
Maarten Lankhorst7580d772015-08-18 13:40:06 +020013914
13915 i915_gem_request_assign(&old_intel_state->wait_req, NULL);
13916
Matt Roper465c1202014-05-29 08:06:54 -070013917}
13918
Chandra Konduru6156a452015-04-27 13:48:39 -070013919int
13920skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
13921{
13922 int max_scale;
13923 struct drm_device *dev;
13924 struct drm_i915_private *dev_priv;
13925 int crtc_clock, cdclk;
13926
Maarten Lankhorstbf8a0af2015-11-24 11:29:02 +010013927 if (!intel_crtc || !crtc_state->base.enable)
Chandra Konduru6156a452015-04-27 13:48:39 -070013928 return DRM_PLANE_HELPER_NO_SCALING;
13929
13930 dev = intel_crtc->base.dev;
13931 dev_priv = dev->dev_private;
13932 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020013933 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
Chandra Konduru6156a452015-04-27 13:48:39 -070013934
Tvrtko Ursulin54bf1ce2015-10-20 17:17:07 +010013935 if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock))
Chandra Konduru6156a452015-04-27 13:48:39 -070013936 return DRM_PLANE_HELPER_NO_SCALING;
13937
13938 /*
13939 * skl max scale is lower of:
13940 * close to 3 but not 3, -1 is for that purpose
13941 * or
13942 * cdclk/crtc_clock
13943 */
13944 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
13945
13946 return max_scale;
13947}
13948
Matt Roper465c1202014-05-29 08:06:54 -070013949static int
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013950intel_check_primary_plane(struct drm_plane *plane,
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013951 struct intel_crtc_state *crtc_state,
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013952 struct intel_plane_state *state)
Matt Roper465c1202014-05-29 08:06:54 -070013953{
Matt Roper2b875c22014-12-01 15:40:13 -080013954 struct drm_crtc *crtc = state->base.crtc;
13955 struct drm_framebuffer *fb = state->base.fb;
Chandra Konduru6156a452015-04-27 13:48:39 -070013956 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013957 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
13958 bool can_position = false;
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013959
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013960 /* use scaler when colorkey is not required */
13961 if (INTEL_INFO(plane->dev)->gen >= 9 &&
Maarten Lankhorst818ed962015-06-15 12:33:54 +020013962 state->ckey.flags == I915_SET_COLORKEY_NONE) {
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013963 min_scale = 1;
13964 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
Sonika Jindald8106362015-04-10 14:37:28 +053013965 can_position = true;
Chandra Konduru6156a452015-04-27 13:48:39 -070013966 }
Sonika Jindald8106362015-04-10 14:37:28 +053013967
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020013968 return drm_plane_helper_check_update(plane, crtc, fb, &state->src,
13969 &state->dst, &state->clip,
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020013970 min_scale, max_scale,
13971 can_position, true,
13972 &state->visible);
Matt Roper465c1202014-05-29 08:06:54 -070013973}
13974
Gustavo Padovan14af2932014-10-24 14:51:31 +010013975static void
Gustavo Padovan3c692a42014-09-05 17:04:49 -030013976intel_commit_primary_plane(struct drm_plane *plane,
13977 struct intel_plane_state *state)
13978{
Matt Roper2b875c22014-12-01 15:40:13 -080013979 struct drm_crtc *crtc = state->base.crtc;
13980 struct drm_framebuffer *fb = state->base.fb;
13981 struct drm_device *dev = plane->dev;
Sonika Jindal48404c12014-08-22 14:06:04 +053013982 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Ropercf4c7c12014-12-04 10:27:42 -080013983
Matt Roperea2c67b2014-12-23 10:41:52 -080013984 crtc = crtc ? crtc : plane->crtc;
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013985
Maarten Lankhorstd4b08632015-09-10 16:07:56 +020013986 dev_priv->display.update_primary_plane(crtc, fb,
13987 state->src.x1 >> 16,
13988 state->src.y1 >> 16);
Matt Roper32b7eee2014-12-24 07:59:06 -080013989}
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030013990
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013991static void
13992intel_disable_primary_plane(struct drm_plane *plane,
Maarten Lankhorst7fabf5e2015-06-15 12:33:47 +020013993 struct drm_crtc *crtc)
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013994{
13995 struct drm_device *dev = plane->dev;
13996 struct drm_i915_private *dev_priv = dev->dev_private;
13997
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030013998 dev_priv->display.update_primary_plane(crtc, NULL, 0, 0);
13999}
14000
Maarten Lankhorst613d2b22015-07-21 13:28:58 +020014001static void intel_begin_crtc_commit(struct drm_crtc *crtc,
14002 struct drm_crtc_state *old_crtc_state)
Matt Roper32b7eee2014-12-24 07:59:06 -080014003{
14004 struct drm_device *dev = crtc->dev;
Matt Roper32b7eee2014-12-24 07:59:06 -080014005 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020014006 struct intel_crtc_state *old_intel_state =
14007 to_intel_crtc_state(old_crtc_state);
14008 bool modeset = needs_modeset(crtc->state);
Gustavo Padovanccc759dc2014-09-24 14:20:22 -030014009
Matt Roperc34c9ee2014-12-23 10:41:50 -080014010 /* Perform vblank evasion around commit operation */
Maarten Lankhorst62852622015-09-23 16:29:38 +020014011 intel_pipe_update_start(intel_crtc);
Maarten Lankhorst05832362015-06-15 12:33:48 +020014012
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020014013 if (modeset)
14014 return;
14015
14016 if (to_intel_crtc_state(crtc->state)->update_pipe)
14017 intel_update_pipe_config(intel_crtc, old_intel_state);
14018 else if (INTEL_INFO(dev)->gen >= 9)
Maarten Lankhorst05832362015-06-15 12:33:48 +020014019 skl_detach_scalers(intel_crtc);
Matt Roper32b7eee2014-12-24 07:59:06 -080014020}
14021
Maarten Lankhorst613d2b22015-07-21 13:28:58 +020014022static void intel_finish_crtc_commit(struct drm_crtc *crtc,
14023 struct drm_crtc_state *old_crtc_state)
Matt Roper32b7eee2014-12-24 07:59:06 -080014024{
Matt Roper32b7eee2014-12-24 07:59:06 -080014025 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper32b7eee2014-12-24 07:59:06 -080014026
Maarten Lankhorst62852622015-09-23 16:29:38 +020014027 intel_pipe_update_end(intel_crtc);
Gustavo Padovan3c692a42014-09-05 17:04:49 -030014028}
14029
Matt Ropercf4c7c12014-12-04 10:27:42 -080014030/**
Matt Roper4a3b8762014-12-23 10:41:51 -080014031 * intel_plane_destroy - destroy a plane
14032 * @plane: plane to destroy
Matt Ropercf4c7c12014-12-04 10:27:42 -080014033 *
Matt Roper4a3b8762014-12-23 10:41:51 -080014034 * Common destruction function for all types of planes (primary, cursor,
14035 * sprite).
Matt Ropercf4c7c12014-12-04 10:27:42 -080014036 */
Matt Roper4a3b8762014-12-23 10:41:51 -080014037void intel_plane_destroy(struct drm_plane *plane)
Matt Roper465c1202014-05-29 08:06:54 -070014038{
14039 struct intel_plane *intel_plane = to_intel_plane(plane);
14040 drm_plane_cleanup(plane);
14041 kfree(intel_plane);
14042}
14043
Matt Roper65a3fea2015-01-21 16:35:42 -080014044const struct drm_plane_funcs intel_plane_funcs = {
Matt Roper70a101f2015-04-08 18:56:53 -070014045 .update_plane = drm_atomic_helper_update_plane,
14046 .disable_plane = drm_atomic_helper_disable_plane,
Matt Roper3d7d6512014-06-10 08:28:13 -070014047 .destroy = intel_plane_destroy,
Matt Roperc196e1d2015-01-21 16:35:48 -080014048 .set_property = drm_atomic_helper_plane_set_property,
Matt Ropera98b3432015-01-21 16:35:43 -080014049 .atomic_get_property = intel_plane_atomic_get_property,
14050 .atomic_set_property = intel_plane_atomic_set_property,
Matt Roperea2c67b2014-12-23 10:41:52 -080014051 .atomic_duplicate_state = intel_plane_duplicate_state,
14052 .atomic_destroy_state = intel_plane_destroy_state,
14053
Matt Roper465c1202014-05-29 08:06:54 -070014054};
14055
14056static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
14057 int pipe)
14058{
14059 struct intel_plane *primary;
Matt Roper8e7d6882015-01-21 16:35:41 -080014060 struct intel_plane_state *state;
Matt Roper465c1202014-05-29 08:06:54 -070014061 const uint32_t *intel_primary_formats;
Thierry Reding45e37432015-08-12 16:54:28 +020014062 unsigned int num_formats;
Matt Roper465c1202014-05-29 08:06:54 -070014063
14064 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
14065 if (primary == NULL)
14066 return NULL;
14067
Matt Roper8e7d6882015-01-21 16:35:41 -080014068 state = intel_create_plane_state(&primary->base);
14069 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080014070 kfree(primary);
14071 return NULL;
14072 }
Matt Roper8e7d6882015-01-21 16:35:41 -080014073 primary->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080014074
Matt Roper465c1202014-05-29 08:06:54 -070014075 primary->can_scale = false;
14076 primary->max_downscale = 1;
Chandra Konduru6156a452015-04-27 13:48:39 -070014077 if (INTEL_INFO(dev)->gen >= 9) {
14078 primary->can_scale = true;
Chandra Konduruaf99ced2015-05-11 14:35:47 -070014079 state->scaler_id = -1;
Chandra Konduru6156a452015-04-27 13:48:39 -070014080 }
Matt Roper465c1202014-05-29 08:06:54 -070014081 primary->pipe = pipe;
14082 primary->plane = pipe;
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030014083 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
Matt Roperc59cb172014-12-01 15:40:16 -080014084 primary->check_plane = intel_check_primary_plane;
14085 primary->commit_plane = intel_commit_primary_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030014086 primary->disable_plane = intel_disable_primary_plane;
Matt Roper465c1202014-05-29 08:06:54 -070014087 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
14088 primary->plane = !pipe;
14089
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014090 if (INTEL_INFO(dev)->gen >= 9) {
14091 intel_primary_formats = skl_primary_formats;
14092 num_formats = ARRAY_SIZE(skl_primary_formats);
14093 } else if (INTEL_INFO(dev)->gen >= 4) {
Damien Lespiau568db4f2015-05-12 16:13:18 +010014094 intel_primary_formats = i965_primary_formats;
14095 num_formats = ARRAY_SIZE(i965_primary_formats);
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014096 } else {
14097 intel_primary_formats = i8xx_primary_formats;
14098 num_formats = ARRAY_SIZE(i8xx_primary_formats);
Matt Roper465c1202014-05-29 08:06:54 -070014099 }
14100
14101 drm_universal_plane_init(dev, &primary->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080014102 &intel_plane_funcs,
Matt Roper465c1202014-05-29 08:06:54 -070014103 intel_primary_formats, num_formats,
14104 DRM_PLANE_TYPE_PRIMARY);
Sonika Jindal48404c12014-08-22 14:06:04 +053014105
Sonika Jindal3b7a5112015-04-10 14:37:29 +053014106 if (INTEL_INFO(dev)->gen >= 4)
14107 intel_create_rotation_property(dev, primary);
Sonika Jindal48404c12014-08-22 14:06:04 +053014108
Matt Roperea2c67b2014-12-23 10:41:52 -080014109 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
14110
Matt Roper465c1202014-05-29 08:06:54 -070014111 return &primary->base;
14112}
14113
Sonika Jindal3b7a5112015-04-10 14:37:29 +053014114void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
14115{
14116 if (!dev->mode_config.rotation_property) {
14117 unsigned long flags = BIT(DRM_ROTATE_0) |
14118 BIT(DRM_ROTATE_180);
14119
14120 if (INTEL_INFO(dev)->gen >= 9)
14121 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
14122
14123 dev->mode_config.rotation_property =
14124 drm_mode_create_rotation_property(dev, flags);
14125 }
14126 if (dev->mode_config.rotation_property)
14127 drm_object_attach_property(&plane->base.base,
14128 dev->mode_config.rotation_property,
14129 plane->base.state->rotation);
14130}
14131
Matt Roper3d7d6512014-06-10 08:28:13 -070014132static int
Gustavo Padovan852e7872014-09-05 17:22:31 -030014133intel_check_cursor_plane(struct drm_plane *plane,
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020014134 struct intel_crtc_state *crtc_state,
Gustavo Padovan852e7872014-09-05 17:22:31 -030014135 struct intel_plane_state *state)
Matt Roper3d7d6512014-06-10 08:28:13 -070014136{
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020014137 struct drm_crtc *crtc = crtc_state->base.crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080014138 struct drm_framebuffer *fb = state->base.fb;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014139 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
Ville Syrjäläb29ec922015-12-18 19:24:39 +020014140 enum pipe pipe = to_intel_plane(plane)->pipe;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014141 unsigned stride;
14142 int ret;
Gustavo Padovan852e7872014-09-05 17:22:31 -030014143
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020014144 ret = drm_plane_helper_check_update(plane, crtc, fb, &state->src,
14145 &state->dst, &state->clip,
Gustavo Padovan852e7872014-09-05 17:22:31 -030014146 DRM_PLANE_HELPER_NO_SCALING,
14147 DRM_PLANE_HELPER_NO_SCALING,
14148 true, true, &state->visible);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014149 if (ret)
14150 return ret;
14151
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014152 /* if we want to turn off the cursor ignore width and height */
14153 if (!obj)
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020014154 return 0;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014155
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014156 /* Check for which cursor types we support */
Maarten Lankhorst061e4b82015-06-15 12:33:46 +020014157 if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) {
Matt Roperea2c67b2014-12-23 10:41:52 -080014158 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
14159 state->base.crtc_w, state->base.crtc_h);
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014160 return -EINVAL;
14161 }
14162
Matt Roperea2c67b2014-12-23 10:41:52 -080014163 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
14164 if (obj->base.size < stride * state->base.crtc_h) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014165 DRM_DEBUG_KMS("buffer is too small\n");
14166 return -ENOMEM;
14167 }
14168
Ville Syrjälä3a656b52015-03-09 21:08:37 +020014169 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014170 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020014171 return -EINVAL;
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014172 }
Gustavo Padovan757f9a32014-09-24 14:20:24 -030014173
Ville Syrjäläb29ec922015-12-18 19:24:39 +020014174 /*
14175 * There's something wrong with the cursor on CHV pipe C.
14176 * If it straddles the left edge of the screen then
14177 * moving it away from the edge or disabling it often
14178 * results in a pipe underrun, and often that can lead to
14179 * dead pipe (constant underrun reported, and it scans
14180 * out just a solid color). To recover from that, the
14181 * display power well must be turned off and on again.
14182 * Refuse the put the cursor into that compromised position.
14183 */
14184 if (IS_CHERRYVIEW(plane->dev) && pipe == PIPE_C &&
14185 state->visible && state->base.crtc_x < 0) {
14186 DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n");
14187 return -EINVAL;
14188 }
14189
Maarten Lankhorstda20eab2015-06-15 12:33:44 +020014190 return 0;
Gustavo Padovan852e7872014-09-05 17:22:31 -030014191}
14192
Matt Roperf4a2cf22014-12-01 15:40:12 -080014193static void
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030014194intel_disable_cursor_plane(struct drm_plane *plane,
Maarten Lankhorst7fabf5e2015-06-15 12:33:47 +020014195 struct drm_crtc *crtc)
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030014196{
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030014197 intel_crtc_update_cursor(crtc, false);
14198}
14199
14200static void
Gustavo Padovan852e7872014-09-05 17:22:31 -030014201intel_commit_cursor_plane(struct drm_plane *plane,
14202 struct intel_plane_state *state)
14203{
Matt Roper2b875c22014-12-01 15:40:13 -080014204 struct drm_crtc *crtc = state->base.crtc;
Matt Roperea2c67b2014-12-23 10:41:52 -080014205 struct drm_device *dev = plane->dev;
14206 struct intel_crtc *intel_crtc;
Matt Roper2b875c22014-12-01 15:40:13 -080014207 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
Gustavo Padovana912f122014-12-01 15:40:10 -080014208 uint32_t addr;
Matt Roper3d7d6512014-06-10 08:28:13 -070014209
Matt Roperea2c67b2014-12-23 10:41:52 -080014210 crtc = crtc ? crtc : plane->crtc;
14211 intel_crtc = to_intel_crtc(crtc);
Sonika Jindala919db92014-10-23 07:41:33 -070014212
Matt Roperf4a2cf22014-12-01 15:40:12 -080014213 if (!obj)
Gustavo Padovana912f122014-12-01 15:40:10 -080014214 addr = 0;
Matt Roperf4a2cf22014-12-01 15:40:12 -080014215 else if (!INTEL_INFO(dev)->cursor_needs_physical)
Gustavo Padovana912f122014-12-01 15:40:10 -080014216 addr = i915_gem_obj_ggtt_offset(obj);
Matt Roperf4a2cf22014-12-01 15:40:12 -080014217 else
Gustavo Padovana912f122014-12-01 15:40:10 -080014218 addr = obj->phys_handle->busaddr;
Gustavo Padovana912f122014-12-01 15:40:10 -080014219
Gustavo Padovana912f122014-12-01 15:40:10 -080014220 intel_crtc->cursor_addr = addr;
Gustavo Padovana912f122014-12-01 15:40:10 -080014221
Maarten Lankhorst62852622015-09-23 16:29:38 +020014222 intel_crtc_update_cursor(crtc, state->visible);
Matt Roper3d7d6512014-06-10 08:28:13 -070014223}
Gustavo Padovan852e7872014-09-05 17:22:31 -030014224
Matt Roper3d7d6512014-06-10 08:28:13 -070014225static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
14226 int pipe)
14227{
14228 struct intel_plane *cursor;
Matt Roper8e7d6882015-01-21 16:35:41 -080014229 struct intel_plane_state *state;
Matt Roper3d7d6512014-06-10 08:28:13 -070014230
14231 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
14232 if (cursor == NULL)
14233 return NULL;
14234
Matt Roper8e7d6882015-01-21 16:35:41 -080014235 state = intel_create_plane_state(&cursor->base);
14236 if (!state) {
Matt Roperea2c67b2014-12-23 10:41:52 -080014237 kfree(cursor);
14238 return NULL;
14239 }
Matt Roper8e7d6882015-01-21 16:35:41 -080014240 cursor->base.state = &state->base;
Matt Roperea2c67b2014-12-23 10:41:52 -080014241
Matt Roper3d7d6512014-06-10 08:28:13 -070014242 cursor->can_scale = false;
14243 cursor->max_downscale = 1;
14244 cursor->pipe = pipe;
14245 cursor->plane = pipe;
Ville Syrjäläa9ff8712015-06-24 21:59:34 +030014246 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
Matt Roperc59cb172014-12-01 15:40:16 -080014247 cursor->check_plane = intel_check_cursor_plane;
14248 cursor->commit_plane = intel_commit_cursor_plane;
Maarten Lankhorsta8ad0d82015-04-21 17:12:51 +030014249 cursor->disable_plane = intel_disable_cursor_plane;
Matt Roper3d7d6512014-06-10 08:28:13 -070014250
14251 drm_universal_plane_init(dev, &cursor->base, 0,
Matt Roper65a3fea2015-01-21 16:35:42 -080014252 &intel_plane_funcs,
Matt Roper3d7d6512014-06-10 08:28:13 -070014253 intel_cursor_formats,
14254 ARRAY_SIZE(intel_cursor_formats),
14255 DRM_PLANE_TYPE_CURSOR);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070014256
14257 if (INTEL_INFO(dev)->gen >= 4) {
14258 if (!dev->mode_config.rotation_property)
14259 dev->mode_config.rotation_property =
14260 drm_mode_create_rotation_property(dev,
14261 BIT(DRM_ROTATE_0) |
14262 BIT(DRM_ROTATE_180));
14263 if (dev->mode_config.rotation_property)
14264 drm_object_attach_property(&cursor->base.base,
14265 dev->mode_config.rotation_property,
Matt Roper8e7d6882015-01-21 16:35:41 -080014266 state->base.rotation);
Ville Syrjälä4398ad42014-10-23 07:41:34 -070014267 }
14268
Chandra Konduruaf99ced2015-05-11 14:35:47 -070014269 if (INTEL_INFO(dev)->gen >=9)
14270 state->scaler_id = -1;
14271
Matt Roperea2c67b2014-12-23 10:41:52 -080014272 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
14273
Matt Roper3d7d6512014-06-10 08:28:13 -070014274 return &cursor->base;
14275}
14276
Chandra Konduru549e2bf2015-04-07 15:28:38 -070014277static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
14278 struct intel_crtc_state *crtc_state)
14279{
14280 int i;
14281 struct intel_scaler *intel_scaler;
14282 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
14283
14284 for (i = 0; i < intel_crtc->num_scalers; i++) {
14285 intel_scaler = &scaler_state->scalers[i];
14286 intel_scaler->in_use = 0;
Chandra Konduru549e2bf2015-04-07 15:28:38 -070014287 intel_scaler->mode = PS_SCALER_MODE_DYN;
14288 }
14289
14290 scaler_state->scaler_id = -1;
14291}
14292
Hannes Ederb358d0a2008-12-18 21:18:47 +010014293static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080014294{
Jani Nikulafbee40d2014-03-31 14:27:18 +030014295 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080014296 struct intel_crtc *intel_crtc;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014297 struct intel_crtc_state *crtc_state = NULL;
Matt Roper3d7d6512014-06-10 08:28:13 -070014298 struct drm_plane *primary = NULL;
14299 struct drm_plane *cursor = NULL;
Matt Roper465c1202014-05-29 08:06:54 -070014300 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080014301
Daniel Vetter955382f2013-09-19 14:05:45 +020014302 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080014303 if (intel_crtc == NULL)
14304 return;
14305
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014306 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
14307 if (!crtc_state)
14308 goto fail;
Ander Conselvan de Oliveira550acef2015-04-21 17:13:24 +030014309 intel_crtc->config = crtc_state;
14310 intel_crtc->base.state = &crtc_state->base;
Matt Roper07878242015-02-25 11:43:26 -080014311 crtc_state->base.crtc = &intel_crtc->base;
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014312
Chandra Konduru549e2bf2015-04-07 15:28:38 -070014313 /* initialize shared scalers */
14314 if (INTEL_INFO(dev)->gen >= 9) {
14315 if (pipe == PIPE_C)
14316 intel_crtc->num_scalers = 1;
14317 else
14318 intel_crtc->num_scalers = SKL_NUM_SCALERS;
14319
14320 skl_init_scalers(dev, intel_crtc, crtc_state);
14321 }
14322
Matt Roper465c1202014-05-29 08:06:54 -070014323 primary = intel_primary_plane_create(dev, pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070014324 if (!primary)
14325 goto fail;
14326
14327 cursor = intel_cursor_plane_create(dev, pipe);
14328 if (!cursor)
14329 goto fail;
14330
Matt Roper465c1202014-05-29 08:06:54 -070014331 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
Matt Roper3d7d6512014-06-10 08:28:13 -070014332 cursor, &intel_crtc_funcs);
14333 if (ret)
14334 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -080014335
14336 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080014337 for (i = 0; i < 256; i++) {
14338 intel_crtc->lut_r[i] = i;
14339 intel_crtc->lut_g[i] = i;
14340 intel_crtc->lut_b[i] = i;
14341 }
14342
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020014343 /*
14344 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
Daniel Vetter8c0f92e2014-06-16 02:08:26 +020014345 * is hooked to pipe B. Hence we want plane A feeding pipe B.
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020014346 */
Jesse Barnes80824002009-09-10 15:28:06 -070014347 intel_crtc->pipe = pipe;
14348 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010014349 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080014350 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010014351 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070014352 }
14353
Chris Wilson4b0e3332014-05-30 16:35:26 +030014354 intel_crtc->cursor_base = ~0;
14355 intel_crtc->cursor_cntl = ~0;
Ville Syrjälädc41c152014-08-13 11:57:05 +030014356 intel_crtc->cursor_size = ~0;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030014357
Ville Syrjälä852eb002015-06-24 22:00:07 +030014358 intel_crtc->wm.cxsr_allowed = true;
14359
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080014360 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
14361 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
14362 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
14363 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
14364
Jesse Barnes79e53942008-11-07 14:24:08 -080014365 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020014366
14367 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Matt Roper3d7d6512014-06-10 08:28:13 -070014368 return;
14369
14370fail:
14371 if (primary)
14372 drm_plane_cleanup(primary);
14373 if (cursor)
14374 drm_plane_cleanup(cursor);
Ander Conselvan de Oliveiraf5de6e02015-01-15 14:55:26 +020014375 kfree(crtc_state);
Matt Roper3d7d6512014-06-10 08:28:13 -070014376 kfree(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -080014377}
14378
Jesse Barnes752aa882013-10-31 18:55:49 +020014379enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
14380{
14381 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020014382 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020014383
Rob Clark51fd3712013-11-19 12:10:12 -050014384 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020014385
Ville Syrjäläd3babd32014-11-07 11:16:01 +020014386 if (!encoder || WARN_ON(!encoder->crtc))
Jesse Barnes752aa882013-10-31 18:55:49 +020014387 return INVALID_PIPE;
14388
14389 return to_intel_crtc(encoder->crtc)->pipe;
14390}
14391
Carl Worth08d7b3d2009-04-29 14:43:54 -070014392int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000014393 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070014394{
Carl Worth08d7b3d2009-04-29 14:43:54 -070014395 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Rob Clark7707e652014-07-17 23:30:04 -040014396 struct drm_crtc *drmmode_crtc;
Daniel Vetterc05422d2009-08-11 16:05:30 +020014397 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014398
Rob Clark7707e652014-07-17 23:30:04 -040014399 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
Carl Worth08d7b3d2009-04-29 14:43:54 -070014400
Rob Clark7707e652014-07-17 23:30:04 -040014401 if (!drmmode_crtc) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070014402 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030014403 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014404 }
14405
Rob Clark7707e652014-07-17 23:30:04 -040014406 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetterc05422d2009-08-11 16:05:30 +020014407 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014408
Daniel Vetterc05422d2009-08-11 16:05:30 +020014409 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070014410}
14411
Daniel Vetter66a92782012-07-12 20:08:18 +020014412static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080014413{
Daniel Vetter66a92782012-07-12 20:08:18 +020014414 struct drm_device *dev = encoder->base.dev;
14415 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080014416 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080014417 int entry = 0;
14418
Damien Lespiaub2784e12014-08-05 11:29:37 +010014419 for_each_intel_encoder(dev, source_encoder) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020014420 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020014421 index_mask |= (1 << entry);
14422
Jesse Barnes79e53942008-11-07 14:24:08 -080014423 entry++;
14424 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010014425
Jesse Barnes79e53942008-11-07 14:24:08 -080014426 return index_mask;
14427}
14428
Chris Wilson4d302442010-12-14 19:21:29 +000014429static bool has_edp_a(struct drm_device *dev)
14430{
14431 struct drm_i915_private *dev_priv = dev->dev_private;
14432
14433 if (!IS_MOBILE(dev))
14434 return false;
14435
14436 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
14437 return false;
14438
Damien Lespiaue3589902014-02-07 19:12:50 +000014439 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000014440 return false;
14441
14442 return true;
14443}
14444
Jesse Barnes84b4e042014-06-25 08:24:29 -070014445static bool intel_crt_present(struct drm_device *dev)
14446{
14447 struct drm_i915_private *dev_priv = dev->dev_private;
14448
Damien Lespiau884497e2013-12-03 13:56:23 +000014449 if (INTEL_INFO(dev)->gen >= 9)
14450 return false;
14451
Damien Lespiaucf404ce2014-10-01 20:04:15 +010014452 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
Jesse Barnes84b4e042014-06-25 08:24:29 -070014453 return false;
14454
14455 if (IS_CHERRYVIEW(dev))
14456 return false;
14457
Ville Syrjälä65e472e2015-12-01 23:28:55 +020014458 if (HAS_PCH_LPT_H(dev) && I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED)
14459 return false;
14460
Ville Syrjälä70ac54d2015-12-01 23:29:56 +020014461 /* DDI E can't be used if DDI A requires 4 lanes */
14462 if (HAS_DDI(dev) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)
14463 return false;
14464
Ville Syrjäläe4abb732015-12-01 23:31:33 +020014465 if (!dev_priv->vbt.int_crt_support)
Jesse Barnes84b4e042014-06-25 08:24:29 -070014466 return false;
14467
14468 return true;
14469}
14470
Jesse Barnes79e53942008-11-07 14:24:08 -080014471static void intel_setup_outputs(struct drm_device *dev)
14472{
Eric Anholt725e30a2009-01-22 13:01:02 -080014473 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010014474 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014475 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080014476
Daniel Vetterc9093352013-06-06 22:22:47 +020014477 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014478
Jesse Barnes84b4e042014-06-25 08:24:29 -070014479 if (intel_crt_present(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020014480 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014481
Vandana Kannanc776eb22014-08-19 12:05:01 +053014482 if (IS_BROXTON(dev)) {
14483 /*
14484 * FIXME: Broxton doesn't support port detection via the
14485 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
14486 * detect the ports.
14487 */
14488 intel_ddi_init(dev, PORT_A);
14489 intel_ddi_init(dev, PORT_B);
14490 intel_ddi_init(dev, PORT_C);
14491 } else if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014492 int found;
14493
Jesse Barnesde31fac2015-03-06 15:53:32 -080014494 /*
14495 * Haswell uses DDI functions to detect digital outputs.
14496 * On SKL pre-D0 the strap isn't connected, so we assume
14497 * it's there.
14498 */
Ville Syrjälä77179402015-09-18 20:03:35 +030014499 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
Jesse Barnesde31fac2015-03-06 15:53:32 -080014500 /* WaIgnoreDDIAStrap: skl */
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070014501 if (found || IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014502 intel_ddi_init(dev, PORT_A);
14503
14504 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
14505 * register */
14506 found = I915_READ(SFUSE_STRAP);
14507
14508 if (found & SFUSE_STRAP_DDIB_DETECTED)
14509 intel_ddi_init(dev, PORT_B);
14510 if (found & SFUSE_STRAP_DDIC_DETECTED)
14511 intel_ddi_init(dev, PORT_C);
14512 if (found & SFUSE_STRAP_DDID_DETECTED)
14513 intel_ddi_init(dev, PORT_D);
Rodrigo Vivi2800e4c2015-08-07 17:35:21 -070014514 /*
14515 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
14516 */
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070014517 if ((IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) &&
Rodrigo Vivi2800e4c2015-08-07 17:35:21 -070014518 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
14519 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
14520 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
14521 intel_ddi_init(dev, PORT_E);
14522
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030014523 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014524 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020014525 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020014526
14527 if (has_edp_a(dev))
14528 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040014529
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014530 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080014531 /* PCH SDVOB multiplex with HDMIB */
Ville Syrjälä2a5c0832015-11-06 21:29:59 +020014532 found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014533 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014534 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014535 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014536 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014537 }
14538
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014539 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014540 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014541
Paulo Zanonidc0fa712013-02-19 16:21:46 -030014542 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030014543 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080014544
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014545 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014546 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080014547
Daniel Vetter270b3042012-10-27 15:52:05 +020014548 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014549 intel_dp_init(dev, PCH_DP_D, PORT_D);
Wayne Boyer666a4532015-12-09 12:29:35 -080014550 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014551 /*
14552 * The DP_DETECTED bit is the latched state of the DDC
14553 * SDA pin at boot. However since eDP doesn't require DDC
14554 * (no way to plug in a DP->HDMI dongle) the DDC pins for
14555 * eDP ports may have been muxed to an alternate function.
14556 * Thus we can't rely on the DP_DETECTED bit alone to detect
14557 * eDP ports. Consult the VBT as well as DP_DETECTED to
14558 * detect eDP ports.
14559 */
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014560 if (I915_READ(VLV_HDMIB) & SDVO_DETECTED &&
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014561 !intel_dp_is_edp(dev, PORT_B))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014562 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
14563 if (I915_READ(VLV_DP_B) & DP_DETECTED ||
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014564 intel_dp_is_edp(dev, PORT_B))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014565 intel_dp_init(dev, VLV_DP_B, PORT_B);
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030014566
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014567 if (I915_READ(VLV_HDMIC) & SDVO_DETECTED &&
Ville Syrjäläd2182a62015-01-09 14:21:14 +020014568 !intel_dp_is_edp(dev, PORT_C))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014569 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
14570 if (I915_READ(VLV_DP_C) & DP_DETECTED ||
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014571 intel_dp_is_edp(dev, PORT_C))
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014572 intel_dp_init(dev, VLV_DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +053014573
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014574 if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläe17ac6d2014-10-09 19:37:15 +030014575 /* eDP not supported on port D, so don't check VBT */
Ville Syrjäläe66eb812015-09-18 20:03:34 +030014576 if (I915_READ(CHV_HDMID) & SDVO_DETECTED)
14577 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
14578 if (I915_READ(CHV_DP_D) & DP_DETECTED)
14579 intel_dp_init(dev, CHV_DP_D, PORT_D);
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030014580 }
14581
Jani Nikula3cfca972013-08-27 15:12:26 +030014582 intel_dsi_init(dev);
Daniel Vetter09da55d2015-07-07 11:44:32 +020014583 } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014584 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080014585
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 SDVOB\n");
Ville Syrjälä2a5c0832015-11-06 21:29:59 +020014588 found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B);
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014589 if (!found && IS_G4X(dev)) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014590 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014591 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014592 }
Ma Ling27185ae2009-08-24 13:50:23 +080014593
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014594 if (!found && IS_G4X(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014595 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080014596 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014597
14598 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040014599
Paulo Zanonie2debe92013-02-18 19:00:27 -030014600 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014601 DRM_DEBUG_KMS("probing SDVOC\n");
Ville Syrjälä2a5c0832015-11-06 21:29:59 +020014602 found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014603 }
Ma Ling27185ae2009-08-24 13:50:23 +080014604
Paulo Zanonie2debe92013-02-18 19:00:27 -030014605 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080014606
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014607 if (IS_G4X(dev)) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014608 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030014609 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080014610 }
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014611 if (IS_G4X(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014612 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080014613 }
Ma Ling27185ae2009-08-24 13:50:23 +080014614
Daniel Vetter3fec3d22015-07-07 09:10:07 +020014615 if (IS_G4X(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030014616 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030014617 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070014618 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014619 intel_dvo_init(dev);
14620
Zhenyu Wang103a1962009-11-27 11:44:36 +080014621 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080014622 intel_tv_init(dev);
14623
Rodrigo Vivi0bc12bc2014-11-14 08:52:28 -080014624 intel_psr_init(dev);
Rodrigo Vivi7c8f8a72014-06-13 05:10:03 -070014625
Damien Lespiaub2784e12014-08-05 11:29:37 +010014626 for_each_intel_encoder(dev, encoder) {
Chris Wilson4ef69c72010-09-09 15:14:28 +010014627 encoder->base.possible_crtcs = encoder->crtc_mask;
14628 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020014629 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080014630 }
Chris Wilson47356eb2011-01-11 17:06:04 +000014631
Paulo Zanonidde86e22012-12-01 12:04:25 -020014632 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020014633
14634 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080014635}
14636
14637static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
14638{
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014639 struct drm_device *dev = fb->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -080014640 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080014641
Daniel Vetteref2d6332014-02-10 18:00:38 +010014642 drm_framebuffer_cleanup(fb);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014643 mutex_lock(&dev->struct_mutex);
Daniel Vetteref2d6332014-02-10 18:00:38 +010014644 WARN_ON(!intel_fb->obj->framebuffer_references--);
Ville Syrjälä60a5ca02014-06-13 11:10:53 +030014645 drm_gem_object_unreference(&intel_fb->obj->base);
14646 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080014647 kfree(intel_fb);
14648}
14649
14650static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000014651 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080014652 unsigned int *handle)
14653{
14654 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000014655 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080014656
Chris Wilsoncc917ab2015-10-13 14:22:26 +010014657 if (obj->userptr.mm) {
14658 DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n");
14659 return -EINVAL;
14660 }
14661
Chris Wilson05394f32010-11-08 19:18:58 +000014662 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080014663}
14664
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014665static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
14666 struct drm_file *file,
14667 unsigned flags, unsigned color,
14668 struct drm_clip_rect *clips,
14669 unsigned num_clips)
14670{
14671 struct drm_device *dev = fb->dev;
14672 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
14673 struct drm_i915_gem_object *obj = intel_fb->obj;
14674
14675 mutex_lock(&dev->struct_mutex);
Paulo Zanoni74b4ea12015-07-14 16:29:14 -030014676 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014677 mutex_unlock(&dev->struct_mutex);
14678
14679 return 0;
14680}
14681
Jesse Barnes79e53942008-11-07 14:24:08 -080014682static const struct drm_framebuffer_funcs intel_fb_funcs = {
14683 .destroy = intel_user_framebuffer_destroy,
14684 .create_handle = intel_user_framebuffer_create_handle,
Rodrigo Vivi86c98582015-07-08 16:22:45 -070014685 .dirty = intel_user_framebuffer_dirty,
Jesse Barnes79e53942008-11-07 14:24:08 -080014686};
14687
Damien Lespiaub3218032015-02-27 11:15:18 +000014688static
14689u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
14690 uint32_t pixel_format)
14691{
14692 u32 gen = INTEL_INFO(dev)->gen;
14693
14694 if (gen >= 9) {
14695 /* "The stride in bytes must not exceed the of the size of 8K
14696 * pixels and 32K bytes."
14697 */
14698 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
Wayne Boyer666a4532015-12-09 12:29:35 -080014699 } else if (gen >= 5 && !IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
Damien Lespiaub3218032015-02-27 11:15:18 +000014700 return 32*1024;
14701 } else if (gen >= 4) {
14702 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14703 return 16*1024;
14704 else
14705 return 32*1024;
14706 } else if (gen >= 3) {
14707 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14708 return 8*1024;
14709 else
14710 return 16*1024;
14711 } else {
14712 /* XXX DSPC is limited to 4k tiled */
14713 return 8*1024;
14714 }
14715}
14716
Daniel Vetterb5ea6422014-03-02 21:18:00 +010014717static int intel_framebuffer_init(struct drm_device *dev,
14718 struct intel_framebuffer *intel_fb,
14719 struct drm_mode_fb_cmd2 *mode_cmd,
14720 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080014721{
Tvrtko Ursulin6761dd32015-03-23 11:10:32 +000014722 unsigned int aligned_height;
Jesse Barnes79e53942008-11-07 14:24:08 -080014723 int ret;
Damien Lespiaub3218032015-02-27 11:15:18 +000014724 u32 pitch_limit, stride_alignment;
Jesse Barnes79e53942008-11-07 14:24:08 -080014725
Daniel Vetterdd4916c2013-10-09 21:23:51 +020014726 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
14727
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014728 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
14729 /* Enforce that fb modifier and tiling mode match, but only for
14730 * X-tiled. This is needed for FBC. */
14731 if (!!(obj->tiling_mode == I915_TILING_X) !=
14732 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
14733 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
14734 return -EINVAL;
14735 }
14736 } else {
14737 if (obj->tiling_mode == I915_TILING_X)
14738 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
14739 else if (obj->tiling_mode == I915_TILING_Y) {
14740 DRM_DEBUG("No Y tiling for legacy addfb\n");
14741 return -EINVAL;
14742 }
14743 }
14744
Tvrtko Ursulin9a8f0a12015-02-27 11:15:24 +000014745 /* Passed in modifier sanity checking. */
14746 switch (mode_cmd->modifier[0]) {
14747 case I915_FORMAT_MOD_Y_TILED:
14748 case I915_FORMAT_MOD_Yf_TILED:
14749 if (INTEL_INFO(dev)->gen < 9) {
14750 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
14751 mode_cmd->modifier[0]);
14752 return -EINVAL;
14753 }
14754 case DRM_FORMAT_MOD_NONE:
14755 case I915_FORMAT_MOD_X_TILED:
14756 break;
14757 default:
Jesse Barnesc0f40422015-03-23 12:43:50 -070014758 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
14759 mode_cmd->modifier[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010014760 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014761 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014762
Damien Lespiaub3218032015-02-27 11:15:18 +000014763 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
14764 mode_cmd->pixel_format);
14765 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
14766 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
14767 mode_cmd->pitches[0], stride_alignment);
Chris Wilson57cd6502010-08-08 12:34:44 +010014768 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014769 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014770
Damien Lespiaub3218032015-02-27 11:15:18 +000014771 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
14772 mode_cmd->pixel_format);
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014773 if (mode_cmd->pitches[0] > pitch_limit) {
Damien Lespiaub3218032015-02-27 11:15:18 +000014774 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
14775 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014776 "tiled" : "linear",
Chris Wilsona35cdaa2013-06-25 17:26:45 +010014777 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014778 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014779 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014780
Daniel Vetter2a80ead2015-02-10 17:16:06 +000014781 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014782 mode_cmd->pitches[0] != obj->stride) {
14783 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
14784 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014785 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014786 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020014787
Ville Syrjälä57779d02012-10-31 17:50:14 +020014788 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014789 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020014790 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014791 case DRM_FORMAT_RGB565:
14792 case DRM_FORMAT_XRGB8888:
14793 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014794 break;
14795 case DRM_FORMAT_XRGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014796 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014797 DRM_DEBUG("unsupported pixel format: %s\n",
14798 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014799 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014800 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020014801 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +020014802 case DRM_FORMAT_ABGR8888:
Wayne Boyer666a4532015-12-09 12:29:35 -080014803 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
14804 INTEL_INFO(dev)->gen < 9) {
Damien Lespiau6c0fd452015-05-19 12:29:16 +010014805 DRM_DEBUG("unsupported pixel format: %s\n",
14806 drm_get_format_name(mode_cmd->pixel_format));
14807 return -EINVAL;
14808 }
14809 break;
14810 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020014811 case DRM_FORMAT_XRGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020014812 case DRM_FORMAT_XBGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014813 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014814 DRM_DEBUG("unsupported pixel format: %s\n",
14815 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014816 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014817 }
Jesse Barnesb5626742011-06-24 12:19:27 -070014818 break;
Damien Lespiau75312082015-05-15 19:06:01 +010014819 case DRM_FORMAT_ABGR2101010:
Wayne Boyer666a4532015-12-09 12:29:35 -080014820 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
Damien Lespiau75312082015-05-15 19:06:01 +010014821 DRM_DEBUG("unsupported pixel format: %s\n",
14822 drm_get_format_name(mode_cmd->pixel_format));
14823 return -EINVAL;
14824 }
14825 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020014826 case DRM_FORMAT_YUYV:
14827 case DRM_FORMAT_UYVY:
14828 case DRM_FORMAT_YVYU:
14829 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014830 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014831 DRM_DEBUG("unsupported pixel format: %s\n",
14832 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020014833 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000014834 }
Chris Wilson57cd6502010-08-08 12:34:44 +010014835 break;
14836 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000014837 DRM_DEBUG("unsupported pixel format: %s\n",
14838 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010014839 return -EINVAL;
14840 }
14841
Ville Syrjälä90f9a332012-10-31 17:50:19 +020014842 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
14843 if (mode_cmd->offsets[0] != 0)
14844 return -EINVAL;
14845
Damien Lespiauec2c9812015-01-20 12:51:45 +000014846 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
Daniel Vetter091df6c2015-02-10 17:16:10 +000014847 mode_cmd->pixel_format,
14848 mode_cmd->modifier[0]);
Daniel Vetter53155c02013-10-09 21:55:33 +020014849 /* FIXME drm helper for size checks (especially planar formats)? */
14850 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
14851 return -EINVAL;
14852
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014853 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
14854 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020014855 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010014856
Jesse Barnes79e53942008-11-07 14:24:08 -080014857 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
14858 if (ret) {
14859 DRM_ERROR("framebuffer init failed %d\n", ret);
14860 return ret;
14861 }
14862
Jesse Barnes79e53942008-11-07 14:24:08 -080014863 return 0;
14864}
14865
Jesse Barnes79e53942008-11-07 14:24:08 -080014866static struct drm_framebuffer *
14867intel_user_framebuffer_create(struct drm_device *dev,
14868 struct drm_file *filp,
Ville Syrjälä1eb834512015-11-11 19:11:29 +020014869 const struct drm_mode_fb_cmd2 *user_mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080014870{
Lukas Wunnerdcb13942015-07-04 11:50:58 +020014871 struct drm_framebuffer *fb;
Chris Wilson05394f32010-11-08 19:18:58 +000014872 struct drm_i915_gem_object *obj;
Ville Syrjälä76dc3762015-11-11 19:11:28 +020014873 struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd;
Jesse Barnes79e53942008-11-07 14:24:08 -080014874
Jesse Barnes308e5bc2011-11-14 14:51:28 -080014875 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
Ville Syrjälä76dc3762015-11-11 19:11:28 +020014876 mode_cmd.handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000014877 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010014878 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080014879
Daniel Vetter92907cb2015-11-23 09:04:05 +010014880 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
Lukas Wunnerdcb13942015-07-04 11:50:58 +020014881 if (IS_ERR(fb))
14882 drm_gem_object_unreference_unlocked(&obj->base);
14883
14884 return fb;
Jesse Barnes79e53942008-11-07 14:24:08 -080014885}
14886
Daniel Vetter06957262015-08-10 13:34:08 +020014887#ifndef CONFIG_DRM_FBDEV_EMULATION
Daniel Vetter0632fef2013-10-08 17:44:49 +020014888static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020014889{
14890}
14891#endif
14892
Jesse Barnes79e53942008-11-07 14:24:08 -080014893static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080014894 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020014895 .output_poll_changed = intel_fbdev_output_poll_changed,
Matt Roper5ee67f12015-01-21 16:35:44 -080014896 .atomic_check = intel_atomic_check,
14897 .atomic_commit = intel_atomic_commit,
Maarten Lankhorstde419ab2015-06-04 10:21:28 +020014898 .atomic_state_alloc = intel_atomic_state_alloc,
14899 .atomic_state_clear = intel_atomic_state_clear,
Jesse Barnes79e53942008-11-07 14:24:08 -080014900};
14901
Jesse Barnese70236a2009-09-21 10:42:27 -070014902/* Set up chip specific display functions */
14903static void intel_init_display(struct drm_device *dev)
14904{
14905 struct drm_i915_private *dev_priv = dev->dev_private;
14906
Daniel Vetteree9300b2013-06-03 22:40:22 +020014907 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
14908 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030014909 else if (IS_CHERRYVIEW(dev))
14910 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020014911 else if (IS_VALLEYVIEW(dev))
14912 dev_priv->display.find_dpll = vlv_find_best_dpll;
14913 else if (IS_PINEVIEW(dev))
14914 dev_priv->display.find_dpll = pnv_find_best_dpll;
14915 else
14916 dev_priv->display.find_dpll = i9xx_find_best_dpll;
14917
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014918 if (INTEL_INFO(dev)->gen >= 9) {
14919 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014920 dev_priv->display.get_initial_plane_config =
14921 skylake_get_initial_plane_config;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014922 dev_priv->display.crtc_compute_clock =
14923 haswell_crtc_compute_clock;
14924 dev_priv->display.crtc_enable = haswell_crtc_enable;
14925 dev_priv->display.crtc_disable = haswell_crtc_disable;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014926 dev_priv->display.update_primary_plane =
14927 skylake_update_primary_plane;
14928 } else if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014929 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014930 dev_priv->display.get_initial_plane_config =
14931 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira797d0252014-10-29 11:32:34 +020014932 dev_priv->display.crtc_compute_clock =
14933 haswell_crtc_compute_clock;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020014934 dev_priv->display.crtc_enable = haswell_crtc_enable;
14935 dev_priv->display.crtc_disable = haswell_crtc_disable;
Damien Lespiaubc8d7df2015-01-20 12:51:51 +000014936 dev_priv->display.update_primary_plane =
14937 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030014938 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014939 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014940 dev_priv->display.get_initial_plane_config =
14941 ironlake_get_initial_plane_config;
Ander Conselvan de Oliveira3fb37702014-10-29 11:32:35 +020014942 dev_priv->display.crtc_compute_clock =
14943 ironlake_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014944 dev_priv->display.crtc_enable = ironlake_crtc_enable;
14945 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014946 dev_priv->display.update_primary_plane =
14947 ironlake_update_primary_plane;
Wayne Boyer666a4532015-12-09 12:29:35 -080014948 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Jesse Barnes89b667f2013-04-18 14:51:36 -070014949 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014950 dev_priv->display.get_initial_plane_config =
14951 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014952 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Jesse Barnes89b667f2013-04-18 14:51:36 -070014953 dev_priv->display.crtc_enable = valleyview_crtc_enable;
14954 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014955 dev_priv->display.update_primary_plane =
14956 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014957 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010014958 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Damien Lespiau5724dbd2015-01-20 12:51:52 +000014959 dev_priv->display.get_initial_plane_config =
14960 i9xx_get_initial_plane_config;
Ander Conselvan de Oliveirad6dfee72014-10-29 11:32:36 +020014961 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
Daniel Vetter76e5a892012-06-29 22:39:33 +020014962 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14963 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Matt Roper262ca2b2014-03-18 17:22:55 -070014964 dev_priv->display.update_primary_plane =
14965 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070014966 }
Jesse Barnese70236a2009-09-21 10:42:27 -070014967
Jesse Barnese70236a2009-09-21 10:42:27 -070014968 /* Returns the core display clock speed */
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070014969 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
Ville Syrjälä1652d192015-03-31 14:12:01 +030014970 dev_priv->display.get_display_clock_speed =
14971 skylake_get_display_clock_speed;
Bob Paauweacd3f3d2015-06-23 14:14:26 -070014972 else if (IS_BROXTON(dev))
14973 dev_priv->display.get_display_clock_speed =
14974 broxton_get_display_clock_speed;
Ville Syrjälä1652d192015-03-31 14:12:01 +030014975 else if (IS_BROADWELL(dev))
14976 dev_priv->display.get_display_clock_speed =
14977 broadwell_get_display_clock_speed;
14978 else if (IS_HASWELL(dev))
14979 dev_priv->display.get_display_clock_speed =
14980 haswell_get_display_clock_speed;
Wayne Boyer666a4532015-12-09 12:29:35 -080014981 else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070014982 dev_priv->display.get_display_clock_speed =
14983 valleyview_get_display_clock_speed;
Ville Syrjäläb37a6432015-03-31 14:11:54 +030014984 else if (IS_GEN5(dev))
14985 dev_priv->display.get_display_clock_speed =
14986 ilk_get_display_clock_speed;
Ville Syrjäläa7c66cd2015-03-31 14:11:56 +030014987 else if (IS_I945G(dev) || IS_BROADWATER(dev) ||
Ville Syrjälä34edce22015-05-22 11:22:33 +030014988 IS_GEN6(dev) || IS_IVYBRIDGE(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070014989 dev_priv->display.get_display_clock_speed =
14990 i945_get_display_clock_speed;
Ville Syrjälä34edce22015-05-22 11:22:33 +030014991 else if (IS_GM45(dev))
14992 dev_priv->display.get_display_clock_speed =
14993 gm45_get_display_clock_speed;
14994 else if (IS_CRESTLINE(dev))
14995 dev_priv->display.get_display_clock_speed =
14996 i965gm_get_display_clock_speed;
14997 else if (IS_PINEVIEW(dev))
14998 dev_priv->display.get_display_clock_speed =
14999 pnv_get_display_clock_speed;
15000 else if (IS_G33(dev) || IS_G4X(dev))
15001 dev_priv->display.get_display_clock_speed =
15002 g33_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070015003 else if (IS_I915G(dev))
15004 dev_priv->display.get_display_clock_speed =
15005 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020015006 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070015007 dev_priv->display.get_display_clock_speed =
15008 i9xx_misc_get_display_clock_speed;
15009 else if (IS_I915GM(dev))
15010 dev_priv->display.get_display_clock_speed =
15011 i915gm_get_display_clock_speed;
15012 else if (IS_I865G(dev))
15013 dev_priv->display.get_display_clock_speed =
15014 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020015015 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070015016 dev_priv->display.get_display_clock_speed =
Ville Syrjälä1b1d2712015-05-22 11:22:31 +030015017 i85x_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030015018 else { /* 830 */
15019 WARN(!IS_I830(dev), "Unknown platform. Assuming 133 MHz CDCLK\n");
Jesse Barnese70236a2009-09-21 10:42:27 -070015020 dev_priv->display.get_display_clock_speed =
15021 i830_get_display_clock_speed;
Ville Syrjälä623e01e2015-05-22 11:22:34 +030015022 }
Jesse Barnese70236a2009-09-21 10:42:27 -070015023
Jani Nikula7c10a2b2014-10-27 16:26:43 +020015024 if (IS_GEN5(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015025 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015026 } else if (IS_GEN6(dev)) {
15027 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015028 } else if (IS_IVYBRIDGE(dev)) {
15029 /* FIXME: detect B0+ stepping and use auto training */
15030 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Paulo Zanoni059b2fe2014-09-02 16:53:57 -030015031 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Sonika Jindal3bb11b52014-08-11 09:06:39 +053015032 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020015033 if (IS_BROADWELL(dev)) {
15034 dev_priv->display.modeset_commit_cdclk =
15035 broadwell_modeset_commit_cdclk;
15036 dev_priv->display.modeset_calc_cdclk =
15037 broadwell_modeset_calc_cdclk;
15038 }
Wayne Boyer666a4532015-12-09 12:29:35 -080015039 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020015040 dev_priv->display.modeset_commit_cdclk =
15041 valleyview_modeset_commit_cdclk;
15042 dev_priv->display.modeset_calc_cdclk =
15043 valleyview_modeset_calc_cdclk;
Vandana Kannanf8437dd12014-11-24 13:37:39 +053015044 } else if (IS_BROXTON(dev)) {
Maarten Lankhorst27c329e2015-06-15 12:33:56 +020015045 dev_priv->display.modeset_commit_cdclk =
15046 broxton_modeset_commit_cdclk;
15047 dev_priv->display.modeset_calc_cdclk =
15048 broxton_modeset_calc_cdclk;
Jesse Barnese70236a2009-09-21 10:42:27 -070015049 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070015050
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070015051 switch (INTEL_INFO(dev)->gen) {
15052 case 2:
15053 dev_priv->display.queue_flip = intel_gen2_queue_flip;
15054 break;
15055
15056 case 3:
15057 dev_priv->display.queue_flip = intel_gen3_queue_flip;
15058 break;
15059
15060 case 4:
15061 case 5:
15062 dev_priv->display.queue_flip = intel_gen4_queue_flip;
15063 break;
15064
15065 case 6:
15066 dev_priv->display.queue_flip = intel_gen6_queue_flip;
15067 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070015068 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070015069 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070015070 dev_priv->display.queue_flip = intel_gen7_queue_flip;
15071 break;
Damien Lespiau830c81d2014-11-13 17:51:46 +000015072 case 9:
Tvrtko Ursulinba343e02015-02-10 17:16:12 +000015073 /* Drop through - unsupported since execlist only. */
15074 default:
15075 /* Default just returns -ENODEV to indicate unsupported */
15076 dev_priv->display.queue_flip = intel_default_queue_flip;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070015077 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020015078
Ville Syrjäläe39b9992014-09-04 14:53:14 +030015079 mutex_init(&dev_priv->pps_mutex);
Jesse Barnese70236a2009-09-21 10:42:27 -070015080}
15081
Jesse Barnesb690e962010-07-19 13:53:12 -070015082/*
15083 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
15084 * resume, or other times. This quirk makes sure that's the case for
15085 * affected systems.
15086 */
Akshay Joshi0206e352011-08-16 15:34:10 -040015087static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070015088{
15089 struct drm_i915_private *dev_priv = dev->dev_private;
15090
15091 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020015092 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070015093}
15094
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030015095static void quirk_pipeb_force(struct drm_device *dev)
15096{
15097 struct drm_i915_private *dev_priv = dev->dev_private;
15098
15099 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
15100 DRM_INFO("applying pipe b force quirk\n");
15101}
15102
Keith Packard435793d2011-07-12 14:56:22 -070015103/*
15104 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
15105 */
15106static void quirk_ssc_force_disable(struct drm_device *dev)
15107{
15108 struct drm_i915_private *dev_priv = dev->dev_private;
15109 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020015110 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070015111}
15112
Carsten Emde4dca20e2012-03-15 15:56:26 +010015113/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010015114 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
15115 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010015116 */
15117static void quirk_invert_brightness(struct drm_device *dev)
15118{
15119 struct drm_i915_private *dev_priv = dev->dev_private;
15120 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020015121 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070015122}
15123
Scot Doyle9c72cc62014-07-03 23:27:50 +000015124/* Some VBT's incorrectly indicate no backlight is present */
15125static void quirk_backlight_present(struct drm_device *dev)
15126{
15127 struct drm_i915_private *dev_priv = dev->dev_private;
15128 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
15129 DRM_INFO("applying backlight present quirk\n");
15130}
15131
Jesse Barnesb690e962010-07-19 13:53:12 -070015132struct intel_quirk {
15133 int device;
15134 int subsystem_vendor;
15135 int subsystem_device;
15136 void (*hook)(struct drm_device *dev);
15137};
15138
Egbert Eich5f85f172012-10-14 15:46:38 +020015139/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
15140struct intel_dmi_quirk {
15141 void (*hook)(struct drm_device *dev);
15142 const struct dmi_system_id (*dmi_id_list)[];
15143};
15144
15145static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
15146{
15147 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
15148 return 1;
15149}
15150
15151static const struct intel_dmi_quirk intel_dmi_quirks[] = {
15152 {
15153 .dmi_id_list = &(const struct dmi_system_id[]) {
15154 {
15155 .callback = intel_dmi_reverse_brightness,
15156 .ident = "NCR Corporation",
15157 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
15158 DMI_MATCH(DMI_PRODUCT_NAME, ""),
15159 },
15160 },
15161 { } /* terminating entry */
15162 },
15163 .hook = quirk_invert_brightness,
15164 },
15165};
15166
Ben Widawskyc43b5632012-04-16 14:07:40 -070015167static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070015168 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
15169 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
15170
Jesse Barnesb690e962010-07-19 13:53:12 -070015171 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
15172 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
15173
Ville Syrjälä5f080c02014-08-15 01:22:06 +030015174 /* 830 needs to leave pipe A & dpll A up */
15175 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
15176
Ville Syrjäläb6b5d042014-08-15 01:22:07 +030015177 /* 830 needs to leave pipe B & dpll B up */
15178 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
15179
Keith Packard435793d2011-07-12 14:56:22 -070015180 /* Lenovo U160 cannot use SSC on LVDS */
15181 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020015182
15183 /* Sony Vaio Y cannot use SSC on LVDS */
15184 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010015185
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010015186 /* Acer Aspire 5734Z must invert backlight brightness */
15187 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
15188
15189 /* Acer/eMachines G725 */
15190 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
15191
15192 /* Acer/eMachines e725 */
15193 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
15194
15195 /* Acer/Packard Bell NCL20 */
15196 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
15197
15198 /* Acer Aspire 4736Z */
15199 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020015200
15201 /* Acer Aspire 5336 */
15202 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Scot Doyle2e93a1a2014-07-03 23:27:51 +000015203
15204 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
15205 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
Scot Doyled4967d82014-07-03 23:27:52 +000015206
Scot Doyledfb3d47b2014-08-21 16:08:02 +000015207 /* Acer C720 Chromebook (Core i3 4005U) */
15208 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
15209
jens steinb2a96012014-10-28 20:25:53 +010015210 /* Apple Macbook 2,1 (Core 2 T7400) */
15211 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
15212
Jani Nikula1b9448b02015-11-05 11:49:59 +020015213 /* Apple Macbook 4,1 */
15214 { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present },
15215
Scot Doyled4967d82014-07-03 23:27:52 +000015216 /* Toshiba CB35 Chromebook (Celeron 2955U) */
15217 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
Scot Doyle724cb062014-07-11 22:16:30 +000015218
15219 /* HP Chromebook 14 (Celeron 2955U) */
15220 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
Jani Nikulacf6f0af2015-02-19 10:53:39 +020015221
15222 /* Dell Chromebook 11 */
15223 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
Jani Nikula9be64ee2015-10-30 14:50:24 +020015224
15225 /* Dell Chromebook 11 (2015 version) */
15226 { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present },
Jesse Barnesb690e962010-07-19 13:53:12 -070015227};
15228
15229static void intel_init_quirks(struct drm_device *dev)
15230{
15231 struct pci_dev *d = dev->pdev;
15232 int i;
15233
15234 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
15235 struct intel_quirk *q = &intel_quirks[i];
15236
15237 if (d->device == q->device &&
15238 (d->subsystem_vendor == q->subsystem_vendor ||
15239 q->subsystem_vendor == PCI_ANY_ID) &&
15240 (d->subsystem_device == q->subsystem_device ||
15241 q->subsystem_device == PCI_ANY_ID))
15242 q->hook(dev);
15243 }
Egbert Eich5f85f172012-10-14 15:46:38 +020015244 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
15245 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
15246 intel_dmi_quirks[i].hook(dev);
15247 }
Jesse Barnesb690e962010-07-19 13:53:12 -070015248}
15249
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015250/* Disable the VGA plane that we never use */
15251static void i915_disable_vga(struct drm_device *dev)
15252{
15253 struct drm_i915_private *dev_priv = dev->dev_private;
15254 u8 sr1;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020015255 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015256
Ville Syrjälä2b37c612014-01-22 21:32:38 +020015257 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015258 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070015259 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015260 sr1 = inb(VGA_SR_DATA);
15261 outb(sr1 | 1<<5, VGA_SR_DATA);
15262 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
15263 udelay(300);
15264
Ville Syrjälä01f5a622014-12-16 18:38:37 +020015265 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015266 POSTING_READ(vga_reg);
15267}
15268
Daniel Vetterf8175862012-04-10 15:50:11 +020015269void intel_modeset_init_hw(struct drm_device *dev)
15270{
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010015271 struct drm_i915_private *dev_priv = dev->dev_private;
15272
Ville Syrjäläb6283052015-06-03 15:45:07 +030015273 intel_update_cdclk(dev);
Maarten Lankhorst1a617b72015-12-03 14:31:06 +010015274
15275 dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq;
15276
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030015277 intel_prepare_ddi(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020015278 intel_init_clock_gating(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +020015279 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020015280}
15281
Matt Roperd93c0372015-12-03 11:37:41 -080015282/*
15283 * Calculate what we think the watermarks should be for the state we've read
15284 * out of the hardware and then immediately program those watermarks so that
15285 * we ensure the hardware settings match our internal state.
15286 *
15287 * We can calculate what we think WM's should be by creating a duplicate of the
15288 * current state (which was constructed during hardware readout) and running it
15289 * through the atomic check code to calculate new watermark values in the
15290 * state object.
15291 */
15292static void sanitize_watermarks(struct drm_device *dev)
15293{
15294 struct drm_i915_private *dev_priv = to_i915(dev);
15295 struct drm_atomic_state *state;
15296 struct drm_crtc *crtc;
15297 struct drm_crtc_state *cstate;
15298 struct drm_modeset_acquire_ctx ctx;
15299 int ret;
15300 int i;
15301
15302 /* Only supported on platforms that use atomic watermark design */
15303 if (!dev_priv->display.program_watermarks)
15304 return;
15305
15306 /*
15307 * We need to hold connection_mutex before calling duplicate_state so
15308 * that the connector loop is protected.
15309 */
15310 drm_modeset_acquire_init(&ctx, 0);
15311retry:
15312 ret = drm_modeset_lock(&dev->mode_config.connection_mutex, &ctx);
15313 if (ret == -EDEADLK) {
15314 drm_modeset_backoff(&ctx);
15315 goto retry;
15316 } else if (WARN_ON(ret)) {
15317 return;
15318 }
15319
15320 state = drm_atomic_helper_duplicate_state(dev, &ctx);
15321 if (WARN_ON(IS_ERR(state)))
15322 return;
15323
15324 ret = intel_atomic_check(dev, state);
15325 if (ret) {
15326 /*
15327 * If we fail here, it means that the hardware appears to be
15328 * programmed in a way that shouldn't be possible, given our
15329 * understanding of watermark requirements. This might mean a
15330 * mistake in the hardware readout code or a mistake in the
15331 * watermark calculations for a given platform. Raise a WARN
15332 * so that this is noticeable.
15333 *
15334 * If this actually happens, we'll have to just leave the
15335 * BIOS-programmed watermarks untouched and hope for the best.
15336 */
15337 WARN(true, "Could not determine valid watermarks for inherited state\n");
15338 return;
15339 }
15340
15341 /* Write calculated watermark values back */
15342 to_i915(dev)->wm.config = to_intel_atomic_state(state)->wm_config;
15343 for_each_crtc_in_state(state, crtc, cstate, i) {
15344 struct intel_crtc_state *cs = to_intel_crtc_state(cstate);
15345
15346 dev_priv->display.program_watermarks(cs);
15347 }
15348
15349 drm_atomic_state_free(state);
15350 drm_modeset_drop_locks(&ctx);
15351 drm_modeset_acquire_fini(&ctx);
15352}
15353
Jesse Barnes79e53942008-11-07 14:24:08 -080015354void intel_modeset_init(struct drm_device *dev)
15355{
Jesse Barnes652c3932009-08-17 13:31:43 -070015356 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000015357 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000015358 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080015359 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080015360
15361 drm_mode_config_init(dev);
15362
15363 dev->mode_config.min_width = 0;
15364 dev->mode_config.min_height = 0;
15365
Dave Airlie019d96c2011-09-29 16:20:42 +010015366 dev->mode_config.preferred_depth = 24;
15367 dev->mode_config.prefer_shadow = 1;
15368
Tvrtko Ursulin25bab382015-02-10 17:16:16 +000015369 dev->mode_config.allow_fb_modifiers = true;
15370
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020015371 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080015372
Jesse Barnesb690e962010-07-19 13:53:12 -070015373 intel_init_quirks(dev);
15374
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030015375 intel_init_pm(dev);
15376
Ben Widawskye3c74752013-04-05 13:12:39 -070015377 if (INTEL_INFO(dev)->num_pipes == 0)
15378 return;
15379
Lukas Wunner69f92f62015-07-15 13:57:35 +020015380 /*
15381 * There may be no VBT; and if the BIOS enabled SSC we can
15382 * just keep using it to avoid unnecessary flicker. Whereas if the
15383 * BIOS isn't using it, don't assume it will work even if the VBT
15384 * indicates as much.
15385 */
15386 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
15387 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
15388 DREF_SSC1_ENABLE);
15389
15390 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
15391 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
15392 bios_lvds_use_ssc ? "en" : "dis",
15393 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
15394 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
15395 }
15396 }
15397
Jesse Barnese70236a2009-09-21 10:42:27 -070015398 intel_init_display(dev);
Jani Nikula7c10a2b2014-10-27 16:26:43 +020015399 intel_init_audio(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070015400
Chris Wilsona6c45cf2010-09-17 00:32:17 +010015401 if (IS_GEN2(dev)) {
15402 dev->mode_config.max_width = 2048;
15403 dev->mode_config.max_height = 2048;
15404 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070015405 dev->mode_config.max_width = 4096;
15406 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080015407 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010015408 dev->mode_config.max_width = 8192;
15409 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080015410 }
Damien Lespiau068be562014-03-28 14:17:49 +000015411
Ville Syrjälädc41c152014-08-13 11:57:05 +030015412 if (IS_845G(dev) || IS_I865G(dev)) {
15413 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
15414 dev->mode_config.cursor_height = 1023;
15415 } else if (IS_GEN2(dev)) {
Damien Lespiau068be562014-03-28 14:17:49 +000015416 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
15417 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
15418 } else {
15419 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
15420 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
15421 }
15422
Ben Widawsky5d4545a2013-01-17 12:45:15 -080015423 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080015424
Zhao Yakui28c97732009-10-09 11:39:41 +080015425 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070015426 INTEL_INFO(dev)->num_pipes,
15427 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080015428
Damien Lespiau055e3932014-08-18 13:49:10 +010015429 for_each_pipe(dev_priv, pipe) {
Damien Lespiau8cc87b72014-03-03 17:31:44 +000015430 intel_crtc_init(dev, pipe);
Damien Lespiau3bdcfc02015-02-28 14:54:09 +000015431 for_each_sprite(dev_priv, pipe, sprite) {
Damien Lespiau1fe47782014-03-03 17:31:47 +000015432 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070015433 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030015434 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000015435 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070015436 }
Jesse Barnes79e53942008-11-07 14:24:08 -080015437 }
15438
Ville Syrjäläbfa7df02015-09-24 23:29:18 +030015439 intel_update_czclk(dev_priv);
15440 intel_update_cdclk(dev);
15441
Daniel Vettere72f9fb2013-06-05 13:34:06 +020015442 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010015443
Jesse Barnes9cce37f2010-08-13 15:11:26 -070015444 /* Just disable it once at startup */
15445 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080015446 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000015447
Daniel Vetter6e9f7982014-05-29 23:54:47 +020015448 drm_modeset_lock_all(dev);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015449 intel_modeset_setup_hw_state(dev);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020015450 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080015451
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015452 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorsteeebeac2015-07-14 12:33:29 +020015453 struct intel_initial_plane_config plane_config = {};
15454
Jesse Barnes46f297f2014-03-07 08:57:48 -080015455 if (!crtc->active)
15456 continue;
15457
Jesse Barnes46f297f2014-03-07 08:57:48 -080015458 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080015459 * Note that reserving the BIOS fb up front prevents us
15460 * from stuffing other stolen allocations like the ring
15461 * on top. This prevents some ugliness at boot time, and
15462 * can even allow for smooth boot transitions if the BIOS
15463 * fb is large enough for the active pipe configuration.
15464 */
Maarten Lankhorsteeebeac2015-07-14 12:33:29 +020015465 dev_priv->display.get_initial_plane_config(crtc,
15466 &plane_config);
15467
15468 /*
15469 * If the fb is shared between multiple heads, we'll
15470 * just get the first one.
15471 */
15472 intel_find_initial_plane_obj(crtc, &plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080015473 }
Matt Roperd93c0372015-12-03 11:37:41 -080015474
15475 /*
15476 * Make sure hardware watermarks really match the state we read out.
15477 * Note that we need to do this after reconstructing the BIOS fb's
15478 * since the watermark calculation done here will use pstate->fb.
15479 */
15480 sanitize_watermarks(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010015481}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080015482
Daniel Vetter7fad7982012-07-04 17:51:47 +020015483static void intel_enable_pipe_a(struct drm_device *dev)
15484{
15485 struct intel_connector *connector;
15486 struct drm_connector *crt = NULL;
15487 struct intel_load_detect_pipe load_detect_temp;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030015488 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020015489
15490 /* We can't just switch on the pipe A, we need to set things up with a
15491 * proper mode and output configuration. As a gross hack, enable pipe A
15492 * by enabling the load detect pipe once. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015493 for_each_intel_connector(dev, connector) {
Daniel Vetter7fad7982012-07-04 17:51:47 +020015494 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
15495 crt = &connector->base;
15496 break;
15497 }
15498 }
15499
15500 if (!crt)
15501 return;
15502
Ville Syrjälä208bf9f2014-08-11 13:15:35 +030015503 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
Ander Conselvan de Oliveira49172fe2015-03-20 16:18:02 +020015504 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
Daniel Vetter7fad7982012-07-04 17:51:47 +020015505}
15506
Daniel Vetterfa555832012-10-10 23:14:00 +020015507static bool
15508intel_check_plane_mapping(struct intel_crtc *crtc)
15509{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070015510 struct drm_device *dev = crtc->base.dev;
15511 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä649636e2015-09-22 19:50:01 +030015512 u32 val;
Daniel Vetterfa555832012-10-10 23:14:00 +020015513
Ben Widawsky7eb552a2013-03-13 14:05:41 -070015514 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020015515 return true;
15516
Ville Syrjälä649636e2015-09-22 19:50:01 +030015517 val = I915_READ(DSPCNTR(!crtc->plane));
Daniel Vetterfa555832012-10-10 23:14:00 +020015518
15519 if ((val & DISPLAY_PLANE_ENABLE) &&
15520 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
15521 return false;
15522
15523 return true;
15524}
15525
Ville Syrjälä02e93c32015-08-26 19:39:19 +030015526static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
15527{
15528 struct drm_device *dev = crtc->base.dev;
15529 struct intel_encoder *encoder;
15530
15531 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
15532 return true;
15533
15534 return false;
15535}
15536
Daniel Vetter24929352012-07-02 20:28:59 +020015537static void intel_sanitize_crtc(struct intel_crtc *crtc)
15538{
15539 struct drm_device *dev = crtc->base.dev;
15540 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020015541 i915_reg_t reg = PIPECONF(crtc->config->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020015542
Daniel Vetter24929352012-07-02 20:28:59 +020015543 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter24929352012-07-02 20:28:59 +020015544 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
15545
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030015546 /* restore vblank interrupts to correct state */
Daniel Vetter96256042015-02-13 21:03:42 +010015547 drm_crtc_vblank_reset(&crtc->base);
Ville Syrjäläd297e102014-08-06 14:50:01 +030015548 if (crtc->active) {
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015549 struct intel_plane *plane;
15550
Daniel Vetter96256042015-02-13 21:03:42 +010015551 drm_crtc_vblank_on(&crtc->base);
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015552
15553 /* Disable everything but the primary plane */
15554 for_each_intel_plane_on_crtc(dev, crtc, plane) {
15555 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
15556 continue;
15557
15558 plane->disable_plane(&plane->base, &crtc->base);
15559 }
Daniel Vetter96256042015-02-13 21:03:42 +010015560 }
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030015561
Daniel Vetter24929352012-07-02 20:28:59 +020015562 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020015563 * disable the crtc (and hence change the state) if it is wrong. Note
15564 * that gen4+ has a fixed plane -> pipe mapping. */
15565 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020015566 bool plane;
15567
Daniel Vetter24929352012-07-02 20:28:59 +020015568 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
15569 crtc->base.base.id);
15570
15571 /* Pipe has the wrong plane attached and the plane is active.
15572 * Temporarily change the plane mapping and disable everything
15573 * ... */
15574 plane = crtc->plane;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030015575 to_intel_plane_state(crtc->base.primary->state)->visible = true;
Daniel Vetter24929352012-07-02 20:28:59 +020015576 crtc->plane = !plane;
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015577 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020015578 crtc->plane = plane;
Daniel Vetter24929352012-07-02 20:28:59 +020015579 }
Daniel Vetter24929352012-07-02 20:28:59 +020015580
Daniel Vetter7fad7982012-07-04 17:51:47 +020015581 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
15582 crtc->pipe == PIPE_A && !crtc->active) {
15583 /* BIOS forgot to enable pipe A, this mostly happens after
15584 * resume. Force-enable the pipe to fix this, the update_dpms
15585 * call below we restore the pipe to the right state, but leave
15586 * the required bits on. */
15587 intel_enable_pipe_a(dev);
15588 }
15589
Daniel Vetter24929352012-07-02 20:28:59 +020015590 /* Adjust the state of the output pipe according to whether we
15591 * have active connectors/encoders. */
Ville Syrjälä02e93c32015-08-26 19:39:19 +030015592 if (!intel_crtc_has_encoders(crtc))
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015593 intel_crtc_disable_noatomic(&crtc->base);
Daniel Vetter24929352012-07-02 20:28:59 +020015594
Maarten Lankhorst53d9f4e2015-06-01 12:49:52 +020015595 if (crtc->active != crtc->base.state->active) {
Ville Syrjälä02e93c32015-08-26 19:39:19 +030015596 struct intel_encoder *encoder;
Daniel Vetter24929352012-07-02 20:28:59 +020015597
15598 /* This can happen either due to bugs in the get_hw_state
Maarten Lankhorstb17d48e2015-06-12 11:15:39 +020015599 * functions or because of calls to intel_crtc_disable_noatomic,
15600 * or because the pipe is force-enabled due to the
Daniel Vetter24929352012-07-02 20:28:59 +020015601 * pipe A quirk. */
15602 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
15603 crtc->base.base.id,
Matt Roper83d65732015-02-25 13:12:16 -080015604 crtc->base.state->enable ? "enabled" : "disabled",
Daniel Vetter24929352012-07-02 20:28:59 +020015605 crtc->active ? "enabled" : "disabled");
15606
Maarten Lankhorst4be40c92015-07-14 13:45:32 +020015607 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, NULL) < 0);
Maarten Lankhorst49d6fa22015-05-11 10:45:15 +020015608 crtc->base.state->active = crtc->active;
Daniel Vetter24929352012-07-02 20:28:59 +020015609 crtc->base.enabled = crtc->active;
15610
15611 /* Because we only establish the connector -> encoder ->
15612 * crtc links if something is active, this means the
15613 * crtc is now deactivated. Break the links. connector
15614 * -> encoder links are only establish when things are
15615 * actually up, hence no need to break them. */
15616 WARN_ON(crtc->active);
15617
Maarten Lankhorst2d406bb2015-08-05 12:37:09 +020015618 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Daniel Vetter24929352012-07-02 20:28:59 +020015619 encoder->base.crtc = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015620 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020015621
Ville Syrjäläa3ed6aa2014-09-03 14:09:52 +030015622 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010015623 /*
15624 * We start out with underrun reporting disabled to avoid races.
15625 * For correct bookkeeping mark this on active crtcs.
15626 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020015627 * Also on gmch platforms we dont have any hardware bits to
15628 * disable the underrun reporting. Which means we need to start
15629 * out with underrun reporting disabled also on inactive pipes,
15630 * since otherwise we'll complain about the garbage we read when
15631 * e.g. coming up after runtime pm.
15632 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010015633 * No protection against concurrent access is required - at
15634 * worst a fifo underrun happens which also sets this to false.
15635 */
15636 crtc->cpu_fifo_underrun_disabled = true;
15637 crtc->pch_fifo_underrun_disabled = true;
15638 }
Daniel Vetter24929352012-07-02 20:28:59 +020015639}
15640
15641static void intel_sanitize_encoder(struct intel_encoder *encoder)
15642{
15643 struct intel_connector *connector;
15644 struct drm_device *dev = encoder->base.dev;
Maarten Lankhorst873ffe62015-08-05 12:37:07 +020015645 bool active = false;
Daniel Vetter24929352012-07-02 20:28:59 +020015646
15647 /* We need to check both for a crtc link (meaning that the
15648 * encoder is active and trying to read from a pipe) and the
15649 * pipe itself being active. */
15650 bool has_active_crtc = encoder->base.crtc &&
15651 to_intel_crtc(encoder->base.crtc)->active;
15652
Maarten Lankhorst873ffe62015-08-05 12:37:07 +020015653 for_each_intel_connector(dev, connector) {
15654 if (connector->base.encoder != &encoder->base)
15655 continue;
15656
15657 active = true;
15658 break;
15659 }
15660
15661 if (active && !has_active_crtc) {
Daniel Vetter24929352012-07-02 20:28:59 +020015662 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
15663 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015664 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020015665
15666 /* Connector is active, but has no active pipe. This is
15667 * fallout from our resume register restoring. Disable
15668 * the encoder manually again. */
15669 if (encoder->base.crtc) {
15670 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
15671 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015672 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020015673 encoder->disable(encoder);
Ville Syrjäläa62d1492014-06-28 02:04:01 +030015674 if (encoder->post_disable)
15675 encoder->post_disable(encoder);
Daniel Vetter24929352012-07-02 20:28:59 +020015676 }
Egbert Eich7f1950f2014-04-25 10:56:22 +020015677 encoder->base.crtc = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015678
15679 /* Inconsistent output/port/pipe state happens presumably due to
15680 * a bug in one of the get_hw_state functions. Or someplace else
15681 * in our code, like the register restore mess on resume. Clamp
15682 * things to off as a safer default. */
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015683 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020015684 if (connector->encoder != encoder)
15685 continue;
Egbert Eich7f1950f2014-04-25 10:56:22 +020015686 connector->base.dpms = DRM_MODE_DPMS_OFF;
15687 connector->base.encoder = NULL;
Daniel Vetter24929352012-07-02 20:28:59 +020015688 }
15689 }
15690 /* Enabled encoders without active connectors will be fixed in
15691 * the crtc fixup. */
15692}
15693
Imre Deak04098752014-02-18 00:02:16 +020015694void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015695{
15696 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020015697 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015698
Imre Deak04098752014-02-18 00:02:16 +020015699 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
15700 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
15701 i915_disable_vga(dev);
15702 }
15703}
15704
15705void i915_redisable_vga(struct drm_device *dev)
15706{
15707 struct drm_i915_private *dev_priv = dev->dev_private;
15708
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030015709 /* This function can be called both from intel_modeset_setup_hw_state or
15710 * at a very early point in our resume sequence, where the power well
15711 * structures are not yet restored. Since this function is at a very
15712 * paranoid "someone might have enabled VGA while we were not looking"
15713 * level, just check if the power well is enabled instead of trying to
15714 * follow the "don't touch the power well if we don't need it" policy
15715 * the rest of the driver uses. */
Daniel Vetterf458ebb2014-09-30 10:56:39 +020015716 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030015717 return;
15718
Imre Deak04098752014-02-18 00:02:16 +020015719 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010015720}
15721
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015722static bool primary_get_hw_state(struct intel_plane *plane)
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015723{
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015724 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015725
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015726 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015727}
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015728
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015729/* FIXME read out full plane state for all planes */
15730static void readout_plane_state(struct intel_crtc *crtc)
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015731{
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015732 struct drm_plane *primary = crtc->base.primary;
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015733 struct intel_plane_state *plane_state =
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015734 to_intel_plane_state(primary->state);
Maarten Lankhorstd032ffa2015-06-15 12:33:51 +020015735
Matt Roper19b8d382015-09-24 15:53:17 -070015736 plane_state->visible = crtc->active &&
Maarten Lankhorstb26d3ea2015-09-23 16:11:41 +020015737 primary_get_hw_state(to_intel_plane(primary));
15738
15739 if (plane_state->visible)
15740 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
Ville Syrjälä98ec7732014-04-30 17:43:01 +030015741}
15742
Daniel Vetter30e984d2013-06-05 13:34:17 +020015743static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020015744{
15745 struct drm_i915_private *dev_priv = dev->dev_private;
15746 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020015747 struct intel_crtc *crtc;
15748 struct intel_encoder *encoder;
15749 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020015750 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020015751
Maarten Lankhorst565602d2015-12-10 12:33:57 +010015752 dev_priv->active_crtcs = 0;
15753
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015754 for_each_intel_crtc(dev, crtc) {
Maarten Lankhorst565602d2015-12-10 12:33:57 +010015755 struct intel_crtc_state *crtc_state = crtc->config;
15756 int pixclk = 0;
Daniel Vetter3b117c82013-04-17 20:15:07 +020015757
Maarten Lankhorst565602d2015-12-10 12:33:57 +010015758 __drm_atomic_helper_crtc_destroy_state(&crtc->base, &crtc_state->base);
15759 memset(crtc_state, 0, sizeof(*crtc_state));
15760 crtc_state->base.crtc = &crtc->base;
Daniel Vetter24929352012-07-02 20:28:59 +020015761
Maarten Lankhorst565602d2015-12-10 12:33:57 +010015762 crtc_state->base.active = crtc_state->base.enable =
15763 dev_priv->display.get_pipe_config(crtc, crtc_state);
15764
15765 crtc->base.enabled = crtc_state->base.enable;
15766 crtc->active = crtc_state->base.active;
15767
15768 if (crtc_state->base.active) {
15769 dev_priv->active_crtcs |= 1 << crtc->pipe;
15770
15771 if (IS_BROADWELL(dev_priv)) {
15772 pixclk = ilk_pipe_pixel_rate(crtc_state);
15773
15774 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
15775 if (crtc_state->ips_enabled)
15776 pixclk = DIV_ROUND_UP(pixclk * 100, 95);
15777 } else if (IS_VALLEYVIEW(dev_priv) ||
15778 IS_CHERRYVIEW(dev_priv) ||
15779 IS_BROXTON(dev_priv))
15780 pixclk = crtc_state->base.adjusted_mode.crtc_clock;
15781 else
15782 WARN_ON(dev_priv->display.modeset_calc_cdclk);
15783 }
15784
15785 dev_priv->min_pixclk[crtc->pipe] = pixclk;
Maarten Lankhorstb70709a2015-04-21 17:12:53 +030015786
Ville Syrjäläf9cd7b82015-09-10 18:59:08 +030015787 readout_plane_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020015788
15789 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
15790 crtc->base.base.id,
15791 crtc->active ? "enabled" : "disabled");
15792 }
15793
Daniel Vetter53589012013-06-05 13:34:16 +020015794 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15795 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15796
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015797 pll->on = pll->get_hw_state(dev_priv, pll,
15798 &pll->config.hw_state);
Daniel Vetter53589012013-06-05 13:34:16 +020015799 pll->active = 0;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015800 pll->config.crtc_mask = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010015801 for_each_intel_crtc(dev, crtc) {
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015802 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
Daniel Vetter53589012013-06-05 13:34:16 +020015803 pll->active++;
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015804 pll->config.crtc_mask |= 1 << crtc->pipe;
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015805 }
Daniel Vetter53589012013-06-05 13:34:16 +020015806 }
Daniel Vetter53589012013-06-05 13:34:16 +020015807
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +020015808 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015809 pll->name, pll->config.crtc_mask, pll->on);
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015810
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +020015811 if (pll->config.crtc_mask)
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -030015812 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
Daniel Vetter53589012013-06-05 13:34:16 +020015813 }
15814
Damien Lespiaub2784e12014-08-05 11:29:37 +010015815 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015816 pipe = 0;
15817
15818 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070015819 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15820 encoder->base.crtc = &crtc->base;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015821 encoder->get_config(encoder, crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020015822 } else {
15823 encoder->base.crtc = NULL;
15824 }
15825
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015826 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020015827 encoder->base.base.id,
Jani Nikula8e329a032014-06-03 14:56:21 +030015828 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020015829 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010015830 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020015831 }
15832
Ander Conselvan de Oliveira3a3371f2015-03-03 15:21:56 +020015833 for_each_intel_connector(dev, connector) {
Daniel Vetter24929352012-07-02 20:28:59 +020015834 if (connector->get_hw_state(connector)) {
15835 connector->base.dpms = DRM_MODE_DPMS_ON;
Daniel Vetter24929352012-07-02 20:28:59 +020015836 connector->base.encoder = &connector->encoder->base;
15837 } else {
15838 connector->base.dpms = DRM_MODE_DPMS_OFF;
15839 connector->base.encoder = NULL;
15840 }
15841 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
15842 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030015843 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020015844 connector->base.encoder ? "enabled" : "disabled");
15845 }
Ville Syrjälä7f4c6282015-09-10 18:59:07 +030015846
15847 for_each_intel_crtc(dev, crtc) {
15848 crtc->base.hwmode = crtc->config->base.adjusted_mode;
15849
15850 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
15851 if (crtc->base.state->active) {
15852 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
15853 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
15854 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
15855
15856 /*
15857 * The initial mode needs to be set in order to keep
15858 * the atomic core happy. It wants a valid mode if the
15859 * crtc's enabled, so we do the above call.
15860 *
15861 * At this point some state updated by the connectors
15862 * in their ->detect() callback has not run yet, so
15863 * no recalculation can be done yet.
15864 *
15865 * Even if we could do a recalculation and modeset
15866 * right now it would cause a double modeset if
15867 * fbdev or userspace chooses a different initial mode.
15868 *
15869 * If that happens, someone indicated they wanted a
15870 * mode change, which means it's safe to do a full
15871 * recalculation.
15872 */
15873 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
Ville Syrjälä9eca68322015-09-10 18:59:10 +030015874
15875 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
15876 update_scanline_offset(crtc);
Ville Syrjälä7f4c6282015-09-10 18:59:07 +030015877 }
15878 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020015879}
15880
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015881/* Scan out the current hw modeset state,
15882 * and sanitizes it to the current state
15883 */
15884static void
15885intel_modeset_setup_hw_state(struct drm_device *dev)
Daniel Vetter30e984d2013-06-05 13:34:17 +020015886{
15887 struct drm_i915_private *dev_priv = dev->dev_private;
15888 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015889 struct intel_crtc *crtc;
15890 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020015891 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020015892
15893 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020015894
15895 /* HW state is read out, now we need to sanitize this mess. */
Damien Lespiaub2784e12014-08-05 11:29:37 +010015896 for_each_intel_encoder(dev, encoder) {
Daniel Vetter24929352012-07-02 20:28:59 +020015897 intel_sanitize_encoder(encoder);
15898 }
15899
Damien Lespiau055e3932014-08-18 13:49:10 +010015900 for_each_pipe(dev_priv, pipe) {
Daniel Vetter24929352012-07-02 20:28:59 +020015901 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15902 intel_sanitize_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +020015903 intel_dump_pipe_config(crtc, crtc->config,
15904 "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020015905 }
Daniel Vetter9a935852012-07-05 22:34:27 +020015906
Ander Conselvan de Oliveirad29b2f92015-03-20 16:18:05 +020015907 intel_modeset_update_connector_atomic_state(dev);
15908
Daniel Vetter35c95372013-07-17 06:55:04 +020015909 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15910 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15911
15912 if (!pll->on || pll->active)
15913 continue;
15914
15915 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
15916
15917 pll->disable(dev_priv, pll);
15918 pll->on = false;
15919 }
15920
Wayne Boyer666a4532015-12-09 12:29:35 -080015921 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Ville Syrjälä6eb1a682015-06-24 22:00:03 +030015922 vlv_wm_get_hw_state(dev);
15923 else if (IS_GEN9(dev))
Pradeep Bhat30789992014-11-04 17:06:45 +000015924 skl_wm_get_hw_state(dev);
15925 else if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030015926 ilk_wm_get_hw_state(dev);
Maarten Lankhorst292b9902015-07-13 16:30:27 +020015927
15928 for_each_intel_crtc(dev, crtc) {
15929 unsigned long put_domains;
15930
15931 put_domains = modeset_get_crtc_power_domains(&crtc->base);
15932 if (WARN_ON(put_domains))
15933 modeset_put_power_domains(dev_priv, put_domains);
15934 }
15935 intel_display_set_init_power(dev_priv, false);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015936}
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030015937
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015938void intel_display_resume(struct drm_device *dev)
15939{
15940 struct drm_atomic_state *state = drm_atomic_state_alloc(dev);
15941 struct intel_connector *conn;
15942 struct intel_plane *plane;
15943 struct drm_crtc *crtc;
15944 int ret;
Daniel Vetterf30da182013-04-11 20:22:50 +020015945
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015946 if (!state)
15947 return;
15948
15949 state->acquire_ctx = dev->mode_config.acquire_ctx;
15950
15951 /* preserve complete old state, including dpll */
15952 intel_atomic_get_shared_dpll_state(state);
15953
15954 for_each_crtc(dev, crtc) {
15955 struct drm_crtc_state *crtc_state =
15956 drm_atomic_get_crtc_state(state, crtc);
15957
15958 ret = PTR_ERR_OR_ZERO(crtc_state);
15959 if (ret)
15960 goto err;
15961
15962 /* force a restore */
15963 crtc_state->mode_changed = true;
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010015964 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020015965
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015966 for_each_intel_plane(dev, plane) {
15967 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(state, &plane->base));
15968 if (ret)
15969 goto err;
15970 }
15971
15972 for_each_intel_connector(dev, conn) {
15973 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(state, &conn->base));
15974 if (ret)
15975 goto err;
15976 }
15977
15978 intel_modeset_setup_hw_state(dev);
15979
15980 i915_redisable_vga(dev);
Maarten Lankhorst74c090b2015-07-13 16:30:30 +020015981 ret = drm_atomic_commit(state);
Maarten Lankhorst043e9bd2015-07-13 16:30:25 +020015982 if (!ret)
15983 return;
15984
15985err:
15986 DRM_ERROR("Restoring old state failed with %i\n", ret);
15987 drm_atomic_state_free(state);
Chris Wilson2c7111d2011-03-29 10:40:27 +010015988}
15989
15990void intel_modeset_gem_init(struct drm_device *dev)
15991{
Jesse Barnes484b41d2014-03-07 08:57:55 -080015992 struct drm_crtc *c;
Matt Roper2ff8fde2014-07-08 07:50:07 -070015993 struct drm_i915_gem_object *obj;
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010015994 int ret;
Jesse Barnes484b41d2014-03-07 08:57:55 -080015995
Imre Deakae484342014-03-31 15:10:44 +030015996 mutex_lock(&dev->struct_mutex);
15997 intel_init_gt_powersave(dev);
15998 mutex_unlock(&dev->struct_mutex);
15999
Chris Wilson1833b132012-05-09 11:56:28 +010016000 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020016001
16002 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080016003
16004 /*
16005 * Make sure any fbs we allocated at startup are properly
16006 * pinned & fenced. When we do the allocation it's too early
16007 * for this.
16008 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010016009 for_each_crtc(dev, c) {
Matt Roper2ff8fde2014-07-08 07:50:07 -070016010 obj = intel_fb_obj(c->primary->fb);
16011 if (obj == NULL)
Jesse Barnes484b41d2014-03-07 08:57:55 -080016012 continue;
16013
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010016014 mutex_lock(&dev->struct_mutex);
16015 ret = intel_pin_and_fence_fb_obj(c->primary,
16016 c->primary->fb,
Maarten Lankhorst7580d772015-08-18 13:40:06 +020016017 c->primary->state);
Tvrtko Ursuline0d61492015-04-13 16:03:03 +010016018 mutex_unlock(&dev->struct_mutex);
16019 if (ret) {
Jesse Barnes484b41d2014-03-07 08:57:55 -080016020 DRM_ERROR("failed to pin boot fb on pipe %d\n",
16021 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100016022 drm_framebuffer_unreference(c->primary->fb);
16023 c->primary->fb = NULL;
Maarten Lankhorst36750f22015-06-01 12:49:54 +020016024 c->primary->crtc = c->primary->state->crtc = NULL;
Matt Roperafd65eb2015-02-03 13:10:04 -080016025 update_state_fb(c->primary);
Maarten Lankhorst36750f22015-06-01 12:49:54 +020016026 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
Jesse Barnes484b41d2014-03-07 08:57:55 -080016027 }
16028 }
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020016029
16030 intel_backlight_register(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080016031}
16032
Imre Deak4932e2c2014-02-11 17:12:48 +020016033void intel_connector_unregister(struct intel_connector *intel_connector)
16034{
16035 struct drm_connector *connector = &intel_connector->base;
16036
16037 intel_panel_destroy_backlight(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +010016038 drm_connector_unregister(connector);
Imre Deak4932e2c2014-02-11 17:12:48 +020016039}
16040
Jesse Barnes79e53942008-11-07 14:24:08 -080016041void intel_modeset_cleanup(struct drm_device *dev)
16042{
Jesse Barnes652c3932009-08-17 13:31:43 -070016043 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikula19c80542015-12-16 12:48:16 +020016044 struct intel_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070016045
Imre Deak2eb52522014-11-19 15:30:05 +020016046 intel_disable_gt_powersave(dev);
16047
Ville Syrjälä0962c3c2014-11-07 15:19:46 +020016048 intel_backlight_unregister(dev);
16049
Daniel Vetterfd0c0642013-04-24 11:13:35 +020016050 /*
16051 * Interrupts and polling as the first thing to avoid creating havoc.
Imre Deak2eb52522014-11-19 15:30:05 +020016052 * Too much stuff here (turning of connectors, ...) would
Daniel Vetterfd0c0642013-04-24 11:13:35 +020016053 * experience fancy races otherwise.
16054 */
Daniel Vetter2aeb7d32014-09-30 10:56:43 +020016055 intel_irq_uninstall(dev_priv);
Jesse Barneseb21b922014-06-20 11:57:33 -070016056
Daniel Vetterfd0c0642013-04-24 11:13:35 +020016057 /*
16058 * Due to the hpd irq storm handling the hotplug work can re-arm the
16059 * poll handlers. Hence disable polling after hpd handling is shut down.
16060 */
Keith Packardf87ea762010-10-03 19:36:26 -070016061 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020016062
Jesse Barnes723bfd72010-10-07 16:01:13 -070016063 intel_unregister_dsm_handler();
16064
Paulo Zanoni7733b492015-07-07 15:26:04 -030016065 intel_fbc_disable(dev_priv);
Kristian Høgsberg69341a52009-11-11 12:19:17 -050016066
Chris Wilson1630fe72011-07-08 12:22:42 +010016067 /* flush any delayed tasks or pending work */
16068 flush_scheduled_work();
16069
Jani Nikuladb31af1d2013-11-08 16:48:53 +020016070 /* destroy the backlight and sysfs files before encoders/connectors */
Jani Nikula19c80542015-12-16 12:48:16 +020016071 for_each_intel_connector(dev, connector)
16072 connector->unregister(connector);
Paulo Zanonid9255d52013-09-26 20:05:59 -030016073
Jesse Barnes79e53942008-11-07 14:24:08 -080016074 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010016075
16076 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030016077
16078 mutex_lock(&dev->struct_mutex);
16079 intel_cleanup_gt_powersave(dev);
16080 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080016081}
16082
Dave Airlie28d52042009-09-21 14:33:58 +100016083/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080016084 * Return which encoder is currently attached for connector.
16085 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010016086struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080016087{
Chris Wilsondf0e9242010-09-09 16:20:55 +010016088 return &intel_attached_encoder(connector)->base;
16089}
Jesse Barnes79e53942008-11-07 14:24:08 -080016090
Chris Wilsondf0e9242010-09-09 16:20:55 +010016091void intel_connector_attach_encoder(struct intel_connector *connector,
16092 struct intel_encoder *encoder)
16093{
16094 connector->encoder = encoder;
16095 drm_mode_connector_attach_encoder(&connector->base,
16096 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080016097}
Dave Airlie28d52042009-09-21 14:33:58 +100016098
16099/*
16100 * set vga decode state - true == enable VGA decode
16101 */
16102int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
16103{
16104 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000016105 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100016106 u16 gmch_ctrl;
16107
Chris Wilson75fa0412014-02-07 18:37:02 -020016108 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
16109 DRM_ERROR("failed to read control word\n");
16110 return -EIO;
16111 }
16112
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020016113 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
16114 return 0;
16115
Dave Airlie28d52042009-09-21 14:33:58 +100016116 if (state)
16117 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
16118 else
16119 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020016120
16121 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
16122 DRM_ERROR("failed to write control word\n");
16123 return -EIO;
16124 }
16125
Dave Airlie28d52042009-09-21 14:33:58 +100016126 return 0;
16127}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016128
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016129struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030016130
16131 u32 power_well_driver;
16132
Chris Wilson63b66e52013-08-08 15:12:06 +020016133 int num_transcoders;
16134
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016135 struct intel_cursor_error_state {
16136 u32 control;
16137 u32 position;
16138 u32 base;
16139 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010016140 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016141
16142 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020016143 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016144 u32 source;
Imre Deakf301b1e12014-04-18 15:55:04 +030016145 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010016146 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016147
16148 struct intel_plane_error_state {
16149 u32 control;
16150 u32 stride;
16151 u32 size;
16152 u32 pos;
16153 u32 addr;
16154 u32 surface;
16155 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010016156 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020016157
16158 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020016159 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020016160 enum transcoder cpu_transcoder;
16161
16162 u32 conf;
16163
16164 u32 htotal;
16165 u32 hblank;
16166 u32 hsync;
16167 u32 vtotal;
16168 u32 vblank;
16169 u32 vsync;
16170 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016171};
16172
16173struct intel_display_error_state *
16174intel_display_capture_error_state(struct drm_device *dev)
16175{
Jani Nikulafbee40d2014-03-31 14:27:18 +030016176 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016177 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020016178 int transcoders[] = {
16179 TRANSCODER_A,
16180 TRANSCODER_B,
16181 TRANSCODER_C,
16182 TRANSCODER_EDP,
16183 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016184 int i;
16185
Chris Wilson63b66e52013-08-08 15:12:06 +020016186 if (INTEL_INFO(dev)->num_pipes == 0)
16187 return NULL;
16188
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020016189 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016190 if (error == NULL)
16191 return NULL;
16192
Imre Deak190be112013-11-25 17:15:31 +020016193 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030016194 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
16195
Damien Lespiau055e3932014-08-18 13:49:10 +010016196 for_each_pipe(dev_priv, i) {
Imre Deakddf9c532013-11-27 22:02:02 +020016197 error->pipe[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020016198 __intel_display_power_is_enabled(dev_priv,
16199 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020016200 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020016201 continue;
16202
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030016203 error->cursor[i].control = I915_READ(CURCNTR(i));
16204 error->cursor[i].position = I915_READ(CURPOS(i));
16205 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016206
16207 error->plane[i].control = I915_READ(DSPCNTR(i));
16208 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030016209 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030016210 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030016211 error->plane[i].pos = I915_READ(DSPPOS(i));
16212 }
Paulo Zanonica291362013-03-06 20:03:14 -030016213 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
16214 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016215 if (INTEL_INFO(dev)->gen >= 4) {
16216 error->plane[i].surface = I915_READ(DSPSURF(i));
16217 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
16218 }
16219
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016220 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e12014-04-18 15:55:04 +030016221
Sonika Jindal3abfce72014-07-21 15:23:43 +053016222 if (HAS_GMCH_DISPLAY(dev))
Imre Deakf301b1e12014-04-18 15:55:04 +030016223 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020016224 }
16225
16226 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
16227 if (HAS_DDI(dev_priv->dev))
16228 error->num_transcoders++; /* Account for eDP. */
16229
16230 for (i = 0; i < error->num_transcoders; i++) {
16231 enum transcoder cpu_transcoder = transcoders[i];
16232
Imre Deakddf9c532013-11-27 22:02:02 +020016233 error->transcoder[i].power_domain_on =
Daniel Vetterf458ebb2014-09-30 10:56:39 +020016234 __intel_display_power_is_enabled(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020016235 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020016236 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020016237 continue;
16238
Chris Wilson63b66e52013-08-08 15:12:06 +020016239 error->transcoder[i].cpu_transcoder = cpu_transcoder;
16240
16241 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
16242 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
16243 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
16244 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
16245 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
16246 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
16247 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016248 }
16249
16250 return error;
16251}
16252
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016253#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
16254
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016255void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016256intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016257 struct drm_device *dev,
16258 struct intel_display_error_state *error)
16259{
Damien Lespiau055e3932014-08-18 13:49:10 +010016260 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016261 int i;
16262
Chris Wilson63b66e52013-08-08 15:12:06 +020016263 if (!error)
16264 return;
16265
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016266 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020016267 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016268 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030016269 error->power_well_driver);
Damien Lespiau055e3932014-08-18 13:49:10 +010016270 for_each_pipe(dev_priv, i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016271 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020016272 err_printf(m, " Power: %s\n",
16273 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016274 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e12014-04-18 15:55:04 +030016275 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016276
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016277 err_printf(m, "Plane [%d]:\n", i);
16278 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
16279 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030016280 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016281 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
16282 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030016283 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030016284 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016285 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016286 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016287 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
16288 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016289 }
16290
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030016291 err_printf(m, "Cursor [%d]:\n", i);
16292 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
16293 err_printf(m, " POS: %08x\n", error->cursor[i].position);
16294 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016295 }
Chris Wilson63b66e52013-08-08 15:12:06 +020016296
16297 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010016298 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020016299 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020016300 err_printf(m, " Power: %s\n",
16301 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020016302 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
16303 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
16304 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
16305 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
16306 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
16307 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
16308 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
16309 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000016310}
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030016311
16312void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
16313{
16314 struct intel_crtc *crtc;
16315
16316 for_each_intel_crtc(dev, crtc) {
16317 struct intel_unpin_work *work;
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030016318
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020016319 spin_lock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030016320
16321 work = crtc->unpin_work;
16322
16323 if (work && work->event &&
16324 work->event->base.file_priv == file) {
16325 kfree(work->event);
16326 work->event = NULL;
16327 }
16328
Daniel Vetter5e2d7af2014-09-15 14:55:22 +020016329 spin_unlock_irq(&dev->event_lock);
Ville Syrjäläe2fcdaa2014-08-06 14:02:51 +030016330 }
16331}